diff --git a/lib/AmsConfiguration/src/AmsConfiguration.cpp b/lib/AmsConfiguration/src/AmsConfiguration.cpp index 15ab749c..36707be3 100644 --- a/lib/AmsConfiguration/src/AmsConfiguration.cpp +++ b/lib/AmsConfiguration/src/AmsConfiguration.cpp @@ -1268,6 +1268,7 @@ void AmsConfiguration::print(Print* debugger) debugger->printf_P(PSTR("Baud: %i\r\n"), meter.baud); debugger->printf_P(PSTR("Parity: %i\r\n"), meter.parity); debugger->printf_P(PSTR("Invert serial: %s\r\n"), meter.invert ? "Yes" : "No"); + debugger->printf_P(PSTR("Buffer size: %i\r\n"), meter.bufferSize * 64); debugger->printf_P(PSTR("Distribution system: %i\r\n"), meter.distributionSystem); debugger->printf_P(PSTR("Main fuse: %i\r\n"), meter.mainFuse); debugger->printf_P(PSTR("Production Capacity: %i\r\n"), meter.productionCapacity); diff --git a/lib/EntsoePriceApi/include/EntsoeApi.h b/lib/EntsoePriceApi/include/EntsoeApi.h index f8f3ff9e..80a5902c 100644 --- a/lib/EntsoePriceApi/include/EntsoeApi.h +++ b/lib/EntsoePriceApi/include/EntsoeApi.h @@ -26,6 +26,7 @@ public: char* getToken(); char* getCurrency(); char* getArea(); + char* getSource(); float getValueForHour(int8_t); float getValueForHour(time_t, int8_t); @@ -34,7 +35,7 @@ public: private: RemoteDebug* debugger; EntsoeConfig* config = NULL; - HTTPClient http; + HTTPClient* http = NULL; uint8_t currentDay = 0, currentHour = 0; uint8_t tomorrowFetchMinute = 15; // How many minutes over 13:00 should it fetch prices diff --git a/lib/EntsoePriceApi/include/PricesContainer.h b/lib/EntsoePriceApi/include/PricesContainer.h index dd623664..dea3050f 100644 --- a/lib/EntsoePriceApi/include/PricesContainer.h +++ b/lib/EntsoePriceApi/include/PricesContainer.h @@ -4,5 +4,6 @@ struct PricesContainer { char currency[4]; char measurementUnit[4]; int32_t points[25]; + char source[4]; }; #endif diff --git a/lib/EntsoePriceApi/src/EntsoeA44Parser.cpp b/lib/EntsoePriceApi/src/EntsoeA44Parser.cpp index 6f2cdcf4..51bda13e 100644 --- a/lib/EntsoePriceApi/src/EntsoeA44Parser.cpp +++ b/lib/EntsoePriceApi/src/EntsoeA44Parser.cpp @@ -108,8 +108,11 @@ size_t EntsoeA44Parser::write(uint8_t byte) { } void EntsoeA44Parser::get(PricesContainer* container) { + memset(container, 0, sizeof(*container)); + strcpy(container->currency, currency); strcpy(container->measurementUnit, measurementUnit); + strcpy(container->source, "EOE"); for(uint8_t i = 0; i < 25; i++) { container->points[i] = points[i] == ENTSOE_NO_VALUE ? ENTSOE_NO_VALUE : points[i] * 10000; diff --git a/lib/EntsoePriceApi/src/EntsoeApi.cpp b/lib/EntsoePriceApi/src/EntsoeApi.cpp index 0809e114..03acd606 100644 --- a/lib/EntsoePriceApi/src/EntsoeApi.cpp +++ b/lib/EntsoePriceApi/src/EntsoeApi.cpp @@ -34,11 +34,14 @@ void EntsoeApi::setup(EntsoeConfig& config) { if(tomorrow != NULL) delete tomorrow; today = tomorrow = NULL; - http.setFollowRedirects(HTTPC_STRICT_FOLLOW_REDIRECTS); - http.setReuse(false); - http.setTimeout(60000); - http.setUserAgent("ams2mqtt/" + String(FirmwareVersion::VersionString)); - http.useHTTP10(true); + if(http != NULL) { + delete http; + } + http = new HTTPClient(); + http->setFollowRedirects(HTTPC_STRICT_FOLLOW_REDIRECTS); + http->setReuse(false); + http->setTimeout(60000); + http->setUserAgent("ams2mqtt/" + String(FirmwareVersion::VersionString)); #if defined(AMS2MQTT_PRICE_KEY) key = new uint8_t[16] AMS2MQTT_PRICE_KEY; @@ -67,6 +70,21 @@ char* EntsoeApi::getArea() { return this->config->area; } +char* EntsoeApi::getSource() { + if(this->today != NULL && this->tomorrow != NULL) { + if(strcmp(this->today->source, this->tomorrow->source) == 0) { + return this->today->source; + } else { + return "MIX"; + } + } else if(today != NULL) { + return this->today->source; + } else if(tomorrow != NULL) { + return this->tomorrow->source; + } + return ""; +} + float EntsoeApi::getValueForHour(int8_t hour) { time_t cur = time(nullptr); return getValueForHour(cur, hour); @@ -209,7 +227,7 @@ bool EntsoeApi::loop() { bool EntsoeApi::retrieve(const char* url, Stream* doc) { #if defined(ESP32) - if(http.begin(url)) { + if(http->begin(url)) { if(debugger->isActive(RemoteDebug::DEBUG)) debugger->printf_P(PSTR("Connection established\n")); #if defined(ESP32) @@ -218,7 +236,7 @@ bool EntsoeApi::retrieve(const char* url, Stream* doc) { ESP.wdtFeed(); #endif - int status = http.GET(); + int status = http->GET(); #if defined(ESP32) esp_task_wdt_reset(); @@ -228,8 +246,8 @@ bool EntsoeApi::retrieve(const char* url, Stream* doc) { if(status == HTTP_CODE_OK) { if(debugger->isActive(RemoteDebug::DEBUG)) debugger->printf_P(PSTR("Receiving data\n")); - http.writeToStream(doc); - http.end(); + http->writeToStream(doc); + http->end(); lastError = 0; nextFetchDelayMinutes = 1; return true; @@ -238,15 +256,15 @@ bool EntsoeApi::retrieve(const char* url, Stream* doc) { if(status == 429) { nextFetchDelayMinutes = 15; } else if(status == 404) { - nextFetchDelayMinutes = 60; + nextFetchDelayMinutes = 10; } else { - nextFetchDelayMinutes = 30; + nextFetchDelayMinutes = 2; } if(debugger->isActive(RemoteDebug::ERROR)) debugger->printf_P(PSTR("(EntsoeApi) Communication error, returned status: %d\n"), status); - if(debugger->isActive(RemoteDebug::ERROR)) debugger->printf(http.errorToString(status).c_str()); - if(debugger->isActive(RemoteDebug::DEBUG)) debugger->printf(http.getString().c_str()); + if(debugger->isActive(RemoteDebug::ERROR)) debugger->printf(http->errorToString(status).c_str()); + if(debugger->isActive(RemoteDebug::DEBUG)) debugger->printf(http->getString().c_str()); - http.end(); + http->end(); return false; } } else { @@ -349,11 +367,11 @@ PricesContainer* EntsoeApi::fetchPrices(time_t t) { #if defined(ESP8266) WiFiClient client; client.setTimeout(5000); - if(http.begin(client, buf)) { + if(http->begin(client, buf)) { #elif defined(ESP32) - if(http.begin(buf)) { + if(http->begin(buf)) { #endif - int status = http.GET(); + int status = http->GET(); #if defined(ESP32) esp_task_wdt_reset(); @@ -363,8 +381,8 @@ PricesContainer* EntsoeApi::fetchPrices(time_t t) { if(status == HTTP_CODE_OK) { if(debugger->isActive(RemoteDebug::DEBUG)) debugger->printf_P(PSTR("Receiving data\n")); - data = http.getString(); - http.end(); + data = http->getString(); + http->end(); uint8_t* content = (uint8_t*) (data.c_str()); if(debugger->isActive(RemoteDebug::DEBUG)) { @@ -403,15 +421,18 @@ PricesContainer* EntsoeApi::fetchPrices(time_t t) { if(status == 429) { nextFetchDelayMinutes = 60; } else if(status == 404) { - nextFetchDelayMinutes = 180; + nextFetchDelayMinutes = 15; } else { - nextFetchDelayMinutes = 30; + nextFetchDelayMinutes = 5; } if(debugger->isActive(RemoteDebug::ERROR)) debugger->printf_P(PSTR("(EntsoeApi) Communication error, returned status: %d\n"), status); - if(debugger->isActive(RemoteDebug::ERROR)) debugger->printf(http.errorToString(status).c_str()); - if(debugger->isActive(RemoteDebug::DEBUG)) debugger->printf(http.getString().c_str()); + if(debugger->isActive(RemoteDebug::ERROR)) { + debugger->printf(http->errorToString(status).c_str()); + debugger->println(); + } + if(debugger->isActive(RemoteDebug::DEBUG)) debugger->printf(http->getString().c_str()); - http.end(); + http->end(); } } } diff --git a/lib/SvelteUi/app/dist/index.js b/lib/SvelteUi/app/dist/index.js index 67704703..adbbdb48 100644 --- a/lib/SvelteUi/app/dist/index.js +++ b/lib/SvelteUi/app/dist/index.js @@ -1,14 +1,14 @@ -(function(){const e=document.createElement("link").relList;if(e&&e.supports&&e.supports("modulepreload"))return;for(const i of document.querySelectorAll('link[rel="modulepreload"]'))n(i);new MutationObserver(i=>{for(const o of i)if(o.type==="childList")for(const a of o.addedNodes)a.tagName==="LINK"&&a.rel==="modulepreload"&&n(a)}).observe(document,{childList:!0,subtree:!0});function l(i){const o={};return i.integrity&&(o.integrity=i.integrity),i.referrerPolicy&&(o.referrerPolicy=i.referrerPolicy),i.crossOrigin==="use-credentials"?o.credentials="include":i.crossOrigin==="anonymous"?o.credentials="omit":o.credentials="same-origin",o}function n(i){if(i.ep)return;i.ep=!0;const o=l(i);fetch(i.href,o)}})();function fe(){}function xt(t,e){for(const l in e)t[l]=e[l];return t}function ic(t){return t()}function Ba(){return Object.create(null)}function ze(t){t.forEach(ic)}function _o(t){return typeof t=="function"}function Ae(t,e){return t!=t?e==e:t!==e||t&&typeof t=="object"||typeof t=="function"}let bs;function to(t,e){return bs||(bs=document.createElement("a")),bs.href=e,t===bs.href}function l0(t){return Object.keys(t).length===0}function vo(t,...e){if(t==null)return fe;const l=t.subscribe(...e);return l.unsubscribe?()=>l.unsubscribe():l}function fi(t){let e;return vo(t,l=>e=l)(),e}function ul(t,e,l){t.$$.on_destroy.push(vo(e,l))}function ho(t,e,l,n){if(t){const i=sc(t,e,l,n);return t[0](i)}}function sc(t,e,l,n){return t[1]&&n?xt(l.ctx.slice(),t[1](n(e))):l.ctx}function bo(t,e,l,n){if(t[2]&&n){const i=t[2](n(l));if(e.dirty===void 0)return i;if(typeof i=="object"){const o=[],a=Math.max(e.dirty.length,i.length);for(let u=0;u32){const e=[],l=t.ctx.length/32;for(let n=0;nt.removeEventListener(e,l,n)}function As(t){return function(e){return e.preventDefault(),t.call(this,e)}}function r(t,e,l){l==null?t.removeAttribute(e):t.getAttribute(e)!==l&&t.setAttribute(e,l)}const i0=["width","height"];function ci(t,e){const l=Object.getOwnPropertyDescriptors(t.__proto__);for(const n in e)e[n]==null?t.removeAttribute(n):n==="style"?t.style.cssText=e[n]:n==="__value"?t.value=t[n]=e[n]:l[n]&&l[n].set&&i0.indexOf(n)===-1?t[n]=e[n]:r(t,n,e[n])}function he(t){return t===""?null:+t}function s0(t){return Array.from(t.childNodes)}function Z(t,e){e=""+e,t.data!==e&&(t.data=e)}function o0(t,e){e=""+e,t.wholeText!==e&&(t.data=e)}function r0(t,e,l){~n0.indexOf(l)?o0(t,e):Z(t,e)}function te(t,e){t.value=e??""}function oc(t,e,l,n){l==null?t.style.removeProperty(e):t.style.setProperty(e,l,n?"important":"")}function qe(t,e,l){for(let n=0;n{a.source===n.contentWindow&&e()})):(n.src="about:blank",n.onload=()=>{o=ee(n.contentWindow,"resize",e),e()}),s(t,n),()=>{(i||o&&n.contentWindow)&&o(),C(n)}}function f0(t,e,{bubbles:l=!1,cancelable:n=!1}={}){const i=document.createEvent("CustomEvent");return i.initCustomEvent(t,l,n,e),i}function Ua(t,e){return new t(e)}let Ni;function Ti(t){Ni=t}function Ai(){if(!Ni)throw new Error("Function called outside component initialization");return Ni}function rc(t){Ai().$$.on_mount.push(t)}function c0(t){Ai().$$.on_destroy.push(t)}function m0(){const t=Ai();return(e,l,{cancelable:n=!1}={})=>{const i=t.$$.callbacks[e];if(i){const o=f0(e,l,{cancelable:n});return i.slice().forEach(a=>{a.call(t,o)}),!o.defaultPrevented}return!0}}function Si(t,e){return Ai().$$.context.set(t,e),e}function Bl(t){return Ai().$$.context.get(t)}const oi=[],$s=[];let ri=[];const ja=[],ac=Promise.resolve();let lo=!1;function uc(){lo||(lo=!0,ac.then(fc))}function p0(){return uc(),ac}function et(t){ri.push(t)}const Qs=new Set;let ii=0;function fc(){if(ii!==0)return;const t=Ni;do{try{for(;iit.indexOf(n)===-1?e.push(n):l.push(n)),l.forEach(n=>n()),ri=e}const ys=new Set;let un;function De(){un={r:0,c:[],p:un}}function Ie(){un.r||ze(un.c),un=un.p}function D(t,e){t&&t.i&&(ys.delete(t),t.i(e))}function q(t,e,l,n){if(t&&t.o){if(ys.has(t))return;ys.add(t),un.c.push(()=>{ys.delete(t),n&&(l&&t.d(1),n())}),t.o(e)}else n&&n()}function cc(t,e){const l={},n={},i={$$scope:1};let o=t.length;for(;o--;){const a=t[o],u=e[o];if(u){for(const c in a)c in u||(n[c]=1);for(const c in u)i[c]||(l[c]=u[c],i[c]=1);t[o]=u}else for(const c in a)i[c]=1}for(const a in n)a in l||(l[a]=void 0);return l}function Ha(t){return typeof t=="object"&&t!==null?t:{}}function ie(t){t&&t.c()}function le(t,e,l,n){const{fragment:i,after_update:o}=t.$$;i&&i.m(e,l),n||et(()=>{const a=t.$$.on_mount.map(ic).filter(_o);t.$$.on_destroy?t.$$.on_destroy.push(...a):ze(a),t.$$.on_mount=[]}),o.forEach(et)}function ne(t,e){const l=t.$$;l.fragment!==null&&(d0(l.after_update),ze(l.on_destroy),l.fragment&&l.fragment.d(e),l.on_destroy=l.fragment=null,l.ctx=[])}function v0(t,e){t.$$.dirty[0]===-1&&(oi.push(t),uc(),t.$$.dirty.fill(0)),t.$$.dirty[e/31|0]|=1<{const d=v.length?v[0]:b;return f.ctx&&i(f.ctx[_],f.ctx[_]=d)&&(!f.skip_bound&&f.bound[_]&&f.bound[_](d),p&&v0(t,_)),b}):[],f.update(),p=!0,ze(f.before_update),f.fragment=n?n(f.ctx):!1,e.target){if(e.hydrate){const _=s0(e.target);f.fragment&&f.fragment.l(_),_.forEach(C)}else f.fragment&&f.fragment.c();e.intro&&D(t.$$.fragment),le(t,e.target,e.anchor,e.customElement),fc()}Ti(c)}class Ee{$destroy(){ne(this,1),this.$destroy=fe}$on(e,l){if(!_o(l))return fe;const n=this.$$.callbacks[e]||(this.$$.callbacks[e]=[]);return n.push(l),()=>{const i=n.indexOf(l);i!==-1&&n.splice(i,1)}}$set(e){this.$$set&&!l0(e)&&(this.$$.skip_bound=!0,this.$$set(e),this.$$.skip_bound=!1)}}const Wa=t=>typeof t>"u",mc=t=>typeof t=="function",pc=t=>typeof t=="number";function h0(t){return!t.defaultPrevented&&t.button===0&&!(t.metaKey||t.altKey||t.ctrlKey||t.shiftKey)}function _c(){let t=0;return()=>t++}function b0(){return Math.random().toString(36).substring(2)}const Ul=typeof window>"u";function dc(t,e,l){return t.addEventListener(e,l),()=>t.removeEventListener(e,l)}const vc=(t,e)=>t?{}:{style:e},no=t=>({"aria-hidden":"true",...vc(t,"display:none;")}),si=[];function hc(t,e){return{subscribe:at(t,e).subscribe}}function at(t,e=fe){let l;const n=new Set;function i(u){if(Ae(t,u)&&(t=u,l)){const c=!si.length;for(const f of n)f[1](),si.push(f,t);if(c){for(let f=0;f{n.delete(f),n.size===0&&l&&(l(),l=null)}}return{set:i,update:o,subscribe:a}}function g0(t,e,l){const n=!Array.isArray(t),i=n?[t]:t,o=e.length<2;return hc(l,a=>{let u=!1;const c=[];let f=0,p=fe;const _=()=>{if(f)return;p();const v=e(n?c[0]:c,a);o?a(v):p=_o(v)?v:fe},b=i.map((v,d)=>vo(v,k=>{c[d]=k,f&=~(1<{f|=1<`@@svnav-ctx__${t}`,io=Pi("LOCATION"),mi=Pi("ROUTER"),bc=Pi("ROUTE"),k0=Pi("ROUTE_PARAMS"),w0=Pi("FOCUS_ELEM"),gc=/^:(.+)/,Ci=(t,e,l)=>t.substr(e,l),so=(t,e)=>Ci(t,0,e.length)===e,y0=t=>t==="",C0=t=>gc.test(t),kc=t=>t[0]==="*",M0=t=>t.replace(/\*.*$/,""),wc=t=>t.replace(/(^\/+|\/+$)/g,"");function ml(t,e=!1){const l=wc(t).split("/");return e?l.filter(Boolean):l}const Xs=(t,e)=>t+(e?`?${e}`:""),wo=t=>`/${wc(t)}`;function Ei(...t){const e=n=>ml(n,!0).join("/"),l=t.map(e).join("/");return wo(l)}const yo=1,Ps=2,_n=3,$0=4,yc=5,T0=6,Cc=7,S0=8,N0=9,Mc=10,$c=11,A0={[yo]:"Link",[Ps]:"Route",[_n]:"Router",[$0]:"useFocus",[yc]:"useLocation",[T0]:"useMatch",[Cc]:"useNavigate",[S0]:"useParams",[N0]:"useResolvable",[Mc]:"useResolve",[$c]:"navigate"},Co=t=>A0[t];function P0(t,e){let l;return t===Ps?l=e.path?`path="${e.path}"`:"default":t===yo?l=`to="${e.to}"`:t===_n&&(l=`basepath="${e.basepath||""}"`),`<${Co(t)} ${l||""} />`}function E0(t,e,l,n){const i=l&&P0(n||t,l),o=i?` +(function(){const e=document.createElement("link").relList;if(e&&e.supports&&e.supports("modulepreload"))return;for(const i of document.querySelectorAll('link[rel="modulepreload"]'))n(i);new MutationObserver(i=>{for(const o of i)if(o.type==="childList")for(const a of o.addedNodes)a.tagName==="LINK"&&a.rel==="modulepreload"&&n(a)}).observe(document,{childList:!0,subtree:!0});function l(i){const o={};return i.integrity&&(o.integrity=i.integrity),i.referrerPolicy&&(o.referrerPolicy=i.referrerPolicy),i.crossOrigin==="use-credentials"?o.credentials="include":i.crossOrigin==="anonymous"?o.credentials="omit":o.credentials="same-origin",o}function n(i){if(i.ep)return;i.ep=!0;const o=l(i);fetch(i.href,o)}})();function fe(){}function xt(t,e){for(const l in e)t[l]=e[l];return t}function oc(t){return t()}function Ua(){return Object.create(null)}function ze(t){t.forEach(oc)}function vo(t){return typeof t=="function"}function Ae(t,e){return t!=t?e==e:t!==e||t&&typeof t=="object"||typeof t=="function"}let gs;function lo(t,e){return gs||(gs=document.createElement("a")),gs.href=e,t===gs.href}function i0(t){return Object.keys(t).length===0}function ho(t,...e){if(t==null)return fe;const l=t.subscribe(...e);return l.unsubscribe?()=>l.unsubscribe():l}function fi(t){let e;return ho(t,l=>e=l)(),e}function ul(t,e,l){t.$$.on_destroy.push(ho(e,l))}function bo(t,e,l,n){if(t){const i=rc(t,e,l,n);return t[0](i)}}function rc(t,e,l,n){return t[1]&&n?xt(l.ctx.slice(),t[1](n(e))):l.ctx}function go(t,e,l,n){if(t[2]&&n){const i=t[2](n(l));if(e.dirty===void 0)return i;if(typeof i=="object"){const o=[],a=Math.max(e.dirty.length,i.length);for(let u=0;u32){const e=[],l=t.ctx.length/32;for(let n=0;nt.removeEventListener(e,l,n)}function Ps(t){return function(e){return e.preventDefault(),t.call(this,e)}}function r(t,e,l){l==null?t.removeAttribute(e):t.getAttribute(e)!==l&&t.setAttribute(e,l)}const o0=["width","height"];function ci(t,e){const l=Object.getOwnPropertyDescriptors(t.__proto__);for(const n in e)e[n]==null?t.removeAttribute(n):n==="style"?t.style.cssText=e[n]:n==="__value"?t.value=t[n]=e[n]:l[n]&&l[n].set&&o0.indexOf(n)===-1?t[n]=e[n]:r(t,n,e[n])}function he(t){return t===""?null:+t}function r0(t){return Array.from(t.childNodes)}function X(t,e){e=""+e,t.data!==e&&(t.data=e)}function a0(t,e){e=""+e,t.wholeText!==e&&(t.data=e)}function u0(t,e,l){~s0.indexOf(l)?a0(t,e):X(t,e)}function te(t,e){t.value=e??""}function ac(t,e,l,n){l==null?t.style.removeProperty(e):t.style.setProperty(e,l,n?"important":"")}function qe(t,e,l){for(let n=0;n{a.source===n.contentWindow&&e()})):(n.src="about:blank",n.onload=()=>{o=ee(n.contentWindow,"resize",e),e()}),s(t,n),()=>{(i||o&&n.contentWindow)&&o(),C(n)}}function m0(t,e,{bubbles:l=!1,cancelable:n=!1}={}){const i=document.createEvent("CustomEvent");return i.initCustomEvent(t,l,n,e),i}function ja(t,e){return new t(e)}let Ni;function Si(t){Ni=t}function Ai(){if(!Ni)throw new Error("Function called outside component initialization");return Ni}function uc(t){Ai().$$.on_mount.push(t)}function p0(t){Ai().$$.on_destroy.push(t)}function _0(){const t=Ai();return(e,l,{cancelable:n=!1}={})=>{const i=t.$$.callbacks[e];if(i){const o=m0(e,l,{cancelable:n});return i.slice().forEach(a=>{a.call(t,o)}),!o.defaultPrevented}return!0}}function Ti(t,e){return Ai().$$.context.set(t,e),e}function Bl(t){return Ai().$$.context.get(t)}const oi=[],Ss=[];let ri=[];const Ha=[],fc=Promise.resolve();let no=!1;function cc(){no||(no=!0,fc.then(mc))}function d0(){return cc(),fc}function et(t){ri.push(t)}const Xs=new Set;let ii=0;function mc(){if(ii!==0)return;const t=Ni;do{try{for(;iit.indexOf(n)===-1?e.push(n):l.push(n)),l.forEach(n=>n()),ri=e}const Cs=new Set;let un;function De(){un={r:0,c:[],p:un}}function Ie(){un.r||ze(un.c),un=un.p}function D(t,e){t&&t.i&&(Cs.delete(t),t.i(e))}function q(t,e,l,n){if(t&&t.o){if(Cs.has(t))return;Cs.add(t),un.c.push(()=>{Cs.delete(t),n&&(l&&t.d(1),n())}),t.o(e)}else n&&n()}function pc(t,e){const l={},n={},i={$$scope:1};let o=t.length;for(;o--;){const a=t[o],u=e[o];if(u){for(const c in a)c in u||(n[c]=1);for(const c in u)i[c]||(l[c]=u[c],i[c]=1);t[o]=u}else for(const c in a)i[c]=1}for(const a in n)a in l||(l[a]=void 0);return l}function Wa(t){return typeof t=="object"&&t!==null?t:{}}function ie(t){t&&t.c()}function le(t,e,l,n){const{fragment:i,after_update:o}=t.$$;i&&i.m(e,l),n||et(()=>{const a=t.$$.on_mount.map(oc).filter(vo);t.$$.on_destroy?t.$$.on_destroy.push(...a):ze(a),t.$$.on_mount=[]}),o.forEach(et)}function ne(t,e){const l=t.$$;l.fragment!==null&&(h0(l.after_update),ze(l.on_destroy),l.fragment&&l.fragment.d(e),l.on_destroy=l.fragment=null,l.ctx=[])}function b0(t,e){t.$$.dirty[0]===-1&&(oi.push(t),cc(),t.$$.dirty.fill(0)),t.$$.dirty[e/31|0]|=1<{const d=v.length?v[0]:b;return f.ctx&&i(f.ctx[_],f.ctx[_]=d)&&(!f.skip_bound&&f.bound[_]&&f.bound[_](d),p&&b0(t,_)),b}):[],f.update(),p=!0,ze(f.before_update),f.fragment=n?n(f.ctx):!1,e.target){if(e.hydrate){const _=r0(e.target);f.fragment&&f.fragment.l(_),_.forEach(C)}else f.fragment&&f.fragment.c();e.intro&&D(t.$$.fragment),le(t,e.target,e.anchor,e.customElement),mc()}Si(c)}class Ee{$destroy(){ne(this,1),this.$destroy=fe}$on(e,l){if(!vo(l))return fe;const n=this.$$.callbacks[e]||(this.$$.callbacks[e]=[]);return n.push(l),()=>{const i=n.indexOf(l);i!==-1&&n.splice(i,1)}}$set(e){this.$$set&&!i0(e)&&(this.$$.skip_bound=!0,this.$$set(e),this.$$.skip_bound=!1)}}const za=t=>typeof t>"u",_c=t=>typeof t=="function",dc=t=>typeof t=="number";function g0(t){return!t.defaultPrevented&&t.button===0&&!(t.metaKey||t.altKey||t.ctrlKey||t.shiftKey)}function vc(){let t=0;return()=>t++}function k0(){return Math.random().toString(36).substring(2)}const Ul=typeof window>"u";function hc(t,e,l){return t.addEventListener(e,l),()=>t.removeEventListener(e,l)}const bc=(t,e)=>t?{}:{style:e},io=t=>({"aria-hidden":"true",...bc(t,"display:none;")}),si=[];function gc(t,e){return{subscribe:at(t,e).subscribe}}function at(t,e=fe){let l;const n=new Set;function i(u){if(Ae(t,u)&&(t=u,l)){const c=!si.length;for(const f of n)f[1](),si.push(f,t);if(c){for(let f=0;f{n.delete(f),n.size===0&&l&&(l(),l=null)}}return{set:i,update:o,subscribe:a}}function w0(t,e,l){const n=!Array.isArray(t),i=n?[t]:t,o=e.length<2;return gc(l,a=>{let u=!1;const c=[];let f=0,p=fe;const _=()=>{if(f)return;p();const v=e(n?c[0]:c,a);o?a(v):p=vo(v)?v:fe},b=i.map((v,d)=>ho(v,k=>{c[d]=k,f&=~(1<{f|=1<`@@svnav-ctx__${t}`,so=Pi("LOCATION"),mi=Pi("ROUTER"),kc=Pi("ROUTE"),y0=Pi("ROUTE_PARAMS"),C0=Pi("FOCUS_ELEM"),wc=/^:(.+)/,Ci=(t,e,l)=>t.substr(e,l),oo=(t,e)=>Ci(t,0,e.length)===e,M0=t=>t==="",$0=t=>wc.test(t),yc=t=>t[0]==="*",S0=t=>t.replace(/\*.*$/,""),Cc=t=>t.replace(/(^\/+|\/+$)/g,"");function ml(t,e=!1){const l=Cc(t).split("/");return e?l.filter(Boolean):l}const Zs=(t,e)=>t+(e?`?${e}`:""),yo=t=>`/${Cc(t)}`;function Ei(...t){const e=n=>ml(n,!0).join("/"),l=t.map(e).join("/");return yo(l)}const Co=1,Es=2,_n=3,T0=4,Mc=5,N0=6,$c=7,A0=8,P0=9,Sc=10,Tc=11,E0={[Co]:"Link",[Es]:"Route",[_n]:"Router",[T0]:"useFocus",[Mc]:"useLocation",[N0]:"useMatch",[$c]:"useNavigate",[A0]:"useParams",[P0]:"useResolvable",[Sc]:"useResolve",[Tc]:"navigate"},Mo=t=>E0[t];function D0(t,e){let l;return t===Es?l=e.path?`path="${e.path}"`:"default":t===Co?l=`to="${e.to}"`:t===_n&&(l=`basepath="${e.basepath||""}"`),`<${Mo(t)} ${l||""} />`}function I0(t,e,l,n){const i=l&&D0(n||t,l),o=i?` -Occurred in: ${i}`:"",a=Co(t),u=mc(e)?e(a):e;return`<${a}> ${u}${o}`}const Tc=t=>(...e)=>t(E0(...e)),Sc=Tc(t=>{throw new Error(t)}),Ts=Tc(console.warn),za=4,D0=3,I0=2,O0=1,R0=1;function L0(t,e){const l=t.default?0:ml(t.fullPath).reduce((n,i)=>{let o=n;return o+=za,y0(i)?o+=R0:C0(i)?o+=I0:kc(i)?o-=za+O0:o+=D0,o},0);return{route:t,score:l,index:e}}function F0(t){return t.map(L0).sort((e,l)=>e.scorel.score?-1:e.index-l.index)}function Nc(t,e){let l,n;const[i]=e.split("?"),o=ml(i),a=o[0]==="",u=F0(t);for(let c=0,f=u.length;c({...p,params:b,uri:S});if(p.default){n=v(e);continue}const d=ml(p.fullPath),k=Math.max(o.length,d.length);let A=0;for(;A{f===".."?c.pop():f!=="."&&c.push(f)}),Xs(`/${c.join("/")}`,n)}function Ga(t,e){const{pathname:l,hash:n="",search:i="",state:o}=t,a=ml(e,!0),u=ml(l,!0);for(;a.length;)a[0]!==u[0]&&Sc(_n,`Invalid state: All locations must begin with the basepath "${e}", found "${l}"`),a.shift(),u.shift();return{pathname:Ei(...u),hash:n,search:i,state:o}}const Va=t=>t.length===1?"":t,Mo=t=>{const e=t.indexOf("?"),l=t.indexOf("#"),n=e!==-1,i=l!==-1,o=i?Va(Ci(t,l)):"",a=i?Ci(t,0,l):t,u=n?Va(Ci(a,e)):"";return{pathname:(n?Ci(a,0,e):a)||"/",search:u,hash:o}},B0=t=>{const{pathname:e,search:l,hash:n}=t;return e+l+n};function U0(t,e,l){return Ei(l,q0(t,e))}function j0(t,e){const l=wo(M0(t)),n=ml(l,!0),i=ml(e,!0).slice(0,n.length),o=Ac({fullPath:l},Ei(...i));return o&&o.uri}const Zs="POP",H0="PUSH",W0="REPLACE";function Js(t){return{...t.location,pathname:encodeURI(decodeURI(t.location.pathname)),state:t.history.state,_key:t.history.state&&t.history.state._key||"initial"}}function z0(t){let e=[],l=Js(t),n=Zs;const i=(o=e)=>o.forEach(a=>a({location:l,action:n}));return{get location(){return l},listen(o){e.push(o);const a=()=>{l=Js(t),n=Zs,i([o])};i([o]);const u=dc(t,"popstate",a);return()=>{u(),e=e.filter(c=>c!==o)}},navigate(o,a){const{state:u={},replace:c=!1}=a||{};if(n=c?W0:H0,pc(o))a&&Ts($c,"Navigation options (state or replace) are not supported, when passing a number as the first argument to navigate. They are ignored."),n=Zs,t.history.go(o);else{const f={...u,_key:b0()};try{t.history[c?"replaceState":"pushState"](f,"",o)}catch{t.location[c?"replace":"assign"](o)}}l=Js(t),i()}}}function xs(t,e){return{...Mo(e),state:t}}function G0(t="/"){let e=0,l=[xs(null,t)];return{get entries(){return l},get location(){return l[e]},addEventListener(){},removeEventListener(){},history:{get state(){return l[e].state},pushState(n,i,o){e++,l=l.slice(0,e),l.push(xs(n,o))},replaceState(n,i,o){l[e]=xs(n,o)},go(n){const i=e+n;i<0||i>l.length-1||(e=i)}}}}const V0=!!(!Ul&&window.document&&window.document.createElement),K0=!Ul&&window.location.origin==="null",Pc=z0(V0&&!K0?window:G0()),{navigate:ai}=Pc;let $l=null,Ec=!0;function Y0(t,e){const l=document.querySelectorAll("[data-svnav-router]");for(let n=0;n$l.level||t.level===$l.level&&Y0(t.routerId,$l.routerId))&&($l=t)}function X0(){$l=null}function Z0(){Ec=!1}function Ka(t){if(!t)return!1;const e="tabindex";try{if(!t.hasAttribute(e)){t.setAttribute(e,"-1");let l;l=dc(t,"blur",()=>{t.removeAttribute(e),l()})}return t.focus(),document.activeElement===t}catch{return!1}}function J0(t,e){return Number(t.dataset.svnavRouteEnd)===e}function x0(t){return/^H[1-6]$/i.test(t.tagName)}function Ya(t,e=document){return e.querySelector(t)}function e1(t){let l=Ya(`[data-svnav-route-start="${t}"]`).nextElementSibling;for(;!J0(l,t);){if(x0(l))return l;const n=Ya("h1,h2,h3,h4,h5,h6",l);if(n)return n;l=l.nextElementSibling}return null}function t1(t){Promise.resolve(fi(t.focusElement)).then(e=>{const l=e||e1(t.id);l||Ts(_n,`Could not find an element to focus. You should always render a header for accessibility reasons, or set a custom focus element via the "useFocus" hook. If you don't want this Route or Router to manage focus, pass "primary={false}" to it.`,t,Ps),!Ka(l)&&Ka(document.documentElement)})}const l1=(t,e,l)=>(n,i)=>p0().then(()=>{if(!$l||Ec){Z0();return}if(n&&t1($l.route),t.announcements&&i){const{path:o,fullPath:a,meta:u,params:c,uri:f}=$l.route,p=t.createAnnouncement({path:o,fullPath:a,meta:u,params:c,uri:f},fi(l));Promise.resolve(p).then(_=>{e.set(_)})}X0()}),n1="position:fixed;top:-1px;left:0;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;";function i1(t){let e,l,n=[{role:"status"},{"aria-atomic":"true"},{"aria-live":"polite"},{"data-svnav-announcer":""},vc(t[6],n1)],i={};for(let o=0;o`Navigated to ${ue.uri}`,announcements:!0,...d},S=p,T=wo(p),E=Bl(io),B=Bl(mi),P=!E,R=o1(),L=v&&!(B&&!B.manageFocus),F=at("");ul(t,F,ue=>l(0,u=ue));const x=B?B.disableInlineStyles:k,j=at([]);ul(t,j,ue=>l(20,a=ue));const z=at(null);ul(t,z,ue=>l(18,i=ue));let G=!1;const V=P?0:B.level+1,U=P?at((()=>Ga(Ul?Mo(_):b.location,T))()):E;ul(t,U,ue=>l(17,n=ue));const K=at(n);ul(t,K,ue=>l(19,o=ue));const H=l1(A,F,U),Y=ue=>we=>we.filter(me=>me.id!==ue);function X(ue){if(Ul){if(G)return;const we=Ac(ue,n.pathname);if(we)return G=!0,we}else j.update(we=>{const me=Y(ue.id)(we);return me.push(ue),me})}function re(ue){j.update(Y(ue))}return!P&&p!==Qa&&Ts(_n,'Only top-level Routers can have a "basepath" prop. It is ignored.',{basepath:p}),P&&(rc(()=>b.listen(we=>{const me=Ga(we.location,T);K.set(n),U.set(me)})),Si(io,U)),Si(mi,{activeRoute:z,registerRoute:X,unregisterRoute:re,manageFocus:L,level:V,id:R,history:P?b:B.history,basepath:P?T:B.basepath,disableInlineStyles:x}),t.$$set=ue=>{"basepath"in ue&&l(11,p=ue.basepath),"url"in ue&&l(12,_=ue.url),"history"in ue&&l(13,b=ue.history),"primary"in ue&&l(14,v=ue.primary),"a11y"in ue&&l(15,d=ue.a11y),"disableInlineStyles"in ue&&l(16,k=ue.disableInlineStyles),"$$scope"in ue&&l(21,f=ue.$$scope)},t.$$.update=()=>{if(t.$$.dirty[0]&2048&&p!==S&&Ts(_n,'You cannot change the "basepath" prop. It is ignored.'),t.$$.dirty[0]&1179648){const ue=Nc(a,n.pathname);z.set(ue)}if(t.$$.dirty[0]&655360&&P){const ue=!!n.hash,we=!ue&&L,me=!ue||n.pathname!==o.pathname;H(we,me)}t.$$.dirty[0]&262144&&L&&i&&i.primary&&Q0({level:V,routerId:R,route:i})},[u,A,P,R,L,F,x,j,z,U,K,p,_,b,v,d,k,n,i,o,a,f,c]}class a1 extends Ee{constructor(e){super(),Pe(this,e,r1,s1,Ae,{basepath:11,url:12,history:13,primary:14,a11y:15,disableInlineStyles:16},null,[-1,-1])}}const Dc=a1;function Di(t,e,l=mi,n=_n){Bl(l)||Sc(t,o=>`You cannot use ${o} outside of a ${Co(n)}.`,e)}const u1=t=>{const{subscribe:e}=Bl(t);return{subscribe:e}};function Ic(){return Di(yc),u1(io)}function Oc(){const{history:t}=Bl(mi);return t}function Rc(){const t=Bl(bc);return t?g0(t,e=>e.base):at("/")}function Lc(){Di(Mc);const t=Rc(),{basepath:e}=Bl(mi);return n=>U0(n,fi(t),e)}function f1(){Di(Cc);const t=Lc(),{navigate:e}=Oc();return(n,i)=>{const o=pc(n)?n:t(n);return e(o,i)}}const c1=t=>({params:t&16,location:t&8}),Xa=t=>({params:Ul?fi(t[10]):t[4],location:t[3],navigate:t[11]});function Za(t){let e,l;return e=new Dc({props:{primary:t[1],$$slots:{default:[_1]},$$scope:{ctx:t}}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p(n,i){const o={};i&2&&(o.primary=n[1]),i&528409&&(o.$$scope={dirty:i,ctx:n}),e.$set(o)},i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function m1(t){let e;const l=t[18].default,n=ho(l,t,t[19],Xa);return{c(){n&&n.c()},m(i,o){n&&n.m(i,o),e=!0},p(i,o){n&&n.p&&(!e||o&524312)&&go(n,l,i,i[19],e?bo(l,i[19],o,c1):ko(i[19]),Xa)},i(i){e||(D(n,i),e=!0)},o(i){q(n,i),e=!1},d(i){n&&n.d(i)}}}function p1(t){let e,l,n;const i=[{location:t[3]},{navigate:t[11]},Ul?fi(t[10]):t[4],t[12]];var o=t[0];function a(u){let c={};for(let f=0;f{ne(p,1)}),Ie()}o?(e=Ua(o,a()),ie(e.$$.fragment),D(e.$$.fragment,1),le(e,l.parentNode,l)):e=null}else o&&e.$set(f)},i(u){n||(e&&D(e.$$.fragment,u),n=!0)},o(u){e&&q(e.$$.fragment,u),n=!1},d(u){u&&C(l),e&&ne(e,u)}}}function _1(t){let e,l,n,i;const o=[p1,m1],a=[];function u(c,f){return c[0]!==null?0:1}return e=u(t),l=a[e]=o[e](t),{c(){l.c(),n=Ge()},m(c,f){a[e].m(c,f),M(c,n,f),i=!0},p(c,f){let p=e;e=u(c),e===p?a[e].p(c,f):(De(),q(a[p],1,1,()=>{a[p]=null}),Ie(),l=a[e],l?l.p(c,f):(l=a[e]=o[e](c),l.c()),D(l,1),l.m(n.parentNode,n))},i(c){i||(D(l),i=!0)},o(c){q(l),i=!1},d(c){a[e].d(c),c&&C(n)}}}function d1(t){let e,l,n,i,o,a=[no(t[7]),{"data-svnav-route-start":t[5]}],u={};for(let _=0;_{c=null}),Ie())},i(_){o||(D(c),o=!0)},o(_){q(c),o=!1},d(_){_&&C(e),_&&C(l),c&&c.d(_),_&&C(n),_&&C(i)}}}const v1=_c();function h1(t,e,l){let n;const i=["path","component","meta","primary"];let o=Ms(e,i),a,u,c,f,{$$slots:p={},$$scope:_}=e,{path:b=""}=e,{component:v=null}=e,{meta:d={}}=e,{primary:k=!0}=e;Di(Ps,e);const A=v1(),{registerRoute:S,unregisterRoute:T,activeRoute:E,disableInlineStyles:B}=Bl(mi);ul(t,E,G=>l(16,a=G));const P=Rc();ul(t,P,G=>l(17,c=G));const R=Ic();ul(t,R,G=>l(3,u=G));const L=at(null);let F;const x=at(),j=at({});ul(t,j,G=>l(4,f=G)),Si(bc,x),Si(k0,j),Si(w0,L);const z=f1();return Ul||c0(()=>T(A)),t.$$set=G=>{l(24,e=xt(xt({},e),Cs(G))),l(12,o=Ms(e,i)),"path"in G&&l(13,b=G.path),"component"in G&&l(0,v=G.component),"meta"in G&&l(14,d=G.meta),"primary"in G&&l(1,k=G.primary),"$$scope"in G&&l(19,_=G.$$scope)},t.$$.update=()=>{if(t.$$.dirty&155658){const G=b==="",V=Ei(c,b),W={id:A,path:b,meta:d,default:G,fullPath:G?"":V,base:G?c:j0(V,u.pathname),primary:k,focusElement:L};x.set(W),l(15,F=S(W))}if(t.$$.dirty&98304&&l(2,n=!!(F||a&&a.id===A)),t.$$.dirty&98308&&n){const{params:G}=F||a;j.set(G)}},e=Cs(e),[v,k,n,u,f,A,E,B,P,R,j,z,o,b,d,F,a,c,p,_]}class b1 extends Ee{constructor(e){super(),Pe(this,e,h1,d1,Ae,{path:13,component:0,meta:14,primary:1})}}const Ml=b1;function g1(t){let e,l,n,i;const o=t[13].default,a=ho(o,t,t[12],null);let u=[{href:t[0]},t[2],t[1]],c={};for(let f=0;fl(11,_=L));const E=m0(),B=Lc(),{navigate:P}=Oc();function R(L){E("click",L),h0(L)&&(L.preventDefault(),P(n,{state:A,replace:a||k}))}return t.$$set=L=>{l(19,e=xt(xt({},e),Cs(L))),l(18,p=Ms(e,f)),"to"in L&&l(5,d=L.to),"replace"in L&&l(6,k=L.replace),"state"in L&&l(7,A=L.state),"getProps"in L&&l(8,S=L.getProps),"$$scope"in L&&l(12,v=L.$$scope)},t.$$.update=()=>{t.$$.dirty&2080&&l(0,n=B(d,_)),t.$$.dirty&2049&&l(10,i=so(_.pathname,n)),t.$$.dirty&2049&&l(9,o=n===_.pathname),t.$$.dirty&2049&&(a=Mo(n)===B0(_)),t.$$.dirty&512&&l(2,u=o?{"aria-current":"page"}:{}),l(1,c=(()=>{if(mc(S)){const L=S({location:_,href:n,isPartiallyCurrent:i,isCurrent:o});return{...p,...L}}return p})())},e=Cs(e),[n,c,u,T,R,d,k,A,S,o,i,_,v,b]}class w1 extends Ee{constructor(e){super(),Pe(this,e,k1,g1,Ae,{to:5,replace:6,state:7,getProps:8})}}const el=w1;let oo=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function ql(t){return t===1?"green":t===2?"yellow":t===3?"red":"gray"}function y1(t){return t>218&&t<242?"#32d900":t>212&&t<248?"#b1d900":t>208&&t<252?"#ffb800":"#d90000"}function Fc(t){return t>90?"#d90000":t>85?"#e32100":t>80?"#ffb800":t>75?"#dcd800":"#32d900"}function C1(t){return t>75?"#32d900":t>50?"#77d900":t>25?"#94d900":"#dcd800"}function Ss(t){switch(t){case 1:return"Aidon";case 2:return"Kaifa";case 3:return"Kamstrup";case 8:return"Iskra";case 9:return"Landis+Gyr";case 10:return"Sagemcom";default:return"Unknown"}}function Le(t){for(t=t.toString();t.length<2;)t="0"+t;return t}function be(t,e){switch(e){case 5:switch(t){case"esp8266":return"Pow-K (GPIO12)";case"esp32s2":return"Pow-K+"}case 7:switch(t){case"esp8266":return"Pow-U (GPIO12)";case"esp32s2":return"Pow-U+"}case 6:return"Pow-P1";case 51:return"Wemos S2 mini";case 50:return"Generic ESP32-S2";case 201:return"Wemos LOLIN D32";case 202:return"Adafruit HUZZAH32";case 203:return"DevKitC";case 200:return"Generic ESP32";case 2:return"HAN Reader 2.0 by Max Spencer";case 0:return"Custom hardware by Roar Fredriksen";case 1:return"Kamstrup module by Egil Opsahl";case 8:return"µHAN mosquito by dbeinder";case 3:return"Pow-K (UART0)";case 4:return"Pow-U (UART0)";case 101:return"Wemos D1 mini";case 100:return"Generic ESP8266";case 70:return"Generic ESP32-C3";case 71:return"ESP32-C3-DevKitM-1"}}function Ja(t){switch(t){case-1:return"Parse error";case-2:return"Incomplete data received";case-3:return"Payload boundry flag missing";case-4:return"Header checksum error";case-5:return"Footer checksum error";case-9:return"Unknown data received, check meter config";case-41:return"Frame length not equal";case-51:return"Authentication failed";case-52:return"Decryption failed";case-53:return"Encryption key invalid";case 90:return"No HAN data received for at least 30s";case 91:return"Serial break";case 92:return"Serial buffer full";case 93:return"Serial FIFO overflow";case 94:return"Serial frame error";case 95:return"Serial parity error";case 96:return"RX error";case 98:return"Exception in code, debugging necessary";case 99:return"Autodetection failed"}return t<0?"Unspecified error "+t:""}function xa(t){switch(t){case-3:return"Connection failed";case-4:return"Network timeout";case-10:return"Connection denied";case-11:return"Failed to subscribe";case-13:return"Connection lost"}return t<0?"Unspecified error "+t:""}function eu(t){switch(t){case 401:case 403:return"Unauthorized, check API key";case 404:return"Price unavailable, not found";case 425:return"Server says its too early";case 429:return"Exceeded API rate limit";case 500:return"Internal server error";case-2:return"Incomplete data received";case-3:return"Invalid data, tag missing";case-51:return"Authentication failed";case-52:return"Decryption failed";case-53:return"Encryption key invalid"}return t<0?"Unspecified error "+t:""}function ui(t){switch(t){case 2:case 4:case 7:return!0}return!1}function Ve(t,e){return t==1||t==2&&e}function qt(t){return"https://github.com/UtilitechAS/amsreader-firmware/wiki/"+t}function ge(t,e){return isNaN(t)?"-":(isNaN(e)&&(e=t<10?1:0),t.toFixed(e))}function fl(t,e){return t.setTime(t.getTime()+e*36e5),t}function tu(t){if(t.chip=="esp8266")switch(t.boot_reason){case 0:return"Normal";case 1:return"WDT reset";case 2:return"Exception reset";case 3:return"Soft WDT reset";case 4:return"Software restart";case 5:return"Deep sleep";case 6:return"External reset";default:return"Unknown (8266)"}else switch(t.boot_reason){case 1:return"Vbat power on reset";case 3:return"Software reset";case 4:return"WDT reset";case 5:return"Deep sleep";case 6:return"SLC reset";case 7:return"Timer Group0 WDT reset";case 8:return"Timer Group1 WDT reset";case 9:return"RTC WDT reset";case 10:return"Instrusion test reset CPU";case 11:return"Time Group reset CPU";case 12:return"Software reset CPU";case 13:return"RTC WTD reset CPU";case 14:return"PRO CPU";case 15:return"Brownout";case 16:return"RTC reset";default:return"Unknown"}}async function jl(t,e={}){const{timeout:l=8e3}=e,n=new AbortController,i=setTimeout(()=>n.abort(),l),o=await fetch(t,{...e,signal:n.signal});return clearTimeout(i),o}let al={version:"",chip:"",mac:null,apmac:null,vndcfg:null,usrcfg:null,fwconsent:null,booting:!1,upgrading:!1,ui:{},security:0,boot_reason:0,upgrade:{x:-1,e:0,f:null,t:null},trying:null};const Bt=at(al);async function $o(){al=await(await jl("/sysinfo.json?t="+Math.floor(Date.now()/1e3))).json(),Bt.set(al)}let ks=0,lu=-127,nu=null,M1={};const $1=hc(M1,t=>{let e;async function l(){jl("/data.json").then(n=>n.json()).then(n=>{t(n),lu!=n.t&&(lu=n.t,setTimeout(Hc,2e3)),nu==null&&n.pe&&n.p!=null&&(nu=n.p,Bc()),al.upgrading?window.location.reload():(!al||!al.chip||al.booting||ks>1&&!ui(al.board))&&($o(),fn&&clearTimeout(fn),fn=setTimeout(So,2e3),cn&&clearTimeout(cn),cn=setTimeout(No,3e3));let i=5e3;if(ui(al.board)&&n.v>2.5){let o=3.3-Math.min(3.3,n.v);o>0&&(i=Math.max(o,.1)*10*5e3)}i>5e3&&console.log("Scheduling next data fetch in "+i+"ms"),e&&clearTimeout(e),e=setTimeout(l,i),ks=0}).catch(n=>{ks++,ks>3?(t({em:3,hm:0,wm:0,mm:0}),e=setTimeout(l,15e3)):e=setTimeout(l,ui(al.board)?1e4:5e3)})}return l(),function(){clearTimeout(e)}});let ro={},Mi;const To=at(ro);async function qc(){let t=!1;To.update(e=>{for(var l=0;l<36;l++){if(e[Le(l)]==null){t=l<12;break}e[Le(l)]=e[Le(l+1)]}return e}),t?Bc():Mi=setTimeout(qc,(60-new Date().getMinutes())*6e4)}async function Bc(){Mi&&(clearTimeout(Mi),Mi=0),ro=await(await jl("/energyprice.json")).json(),To.set(ro),Mi=setTimeout(qc,(60-new Date().getMinutes())*6e4)}let ao={},fn;async function So(){fn&&(clearTimeout(fn),fn=0),ao=await(await jl("/dayplot.json")).json(),Uc.set(ao),fn=setTimeout(So,(60-new Date().getMinutes())*6e4+20)}const Uc=at(ao,t=>(So(),function(){}));let uo={},cn;async function No(){cn&&(clearTimeout(cn),cn=0),uo=await(await jl("/monthplot.json")).json(),jc.set(uo),cn=setTimeout(No,(24-new Date().getHours())*36e5+40)}const jc=at(uo,t=>(No(),function(){}));let fo={};async function Hc(){fo=await(await jl("/temperature.json")).json(),Wc.set(fo)}const Wc=at(fo,t=>(Hc(),function(){}));let co={},ws;async function zc(){ws&&(clearTimeout(ws),ws=0),co=await(await jl("/tariff.json")).json(),Gc.set(co),ws=setTimeout(zc,(60-new Date().getMinutes())*6e4+30)}const Gc=at(co,t=>function(){});let mo=[];const Ao=at(mo);async function T1(){mo=await(await jl("https://api.github.com/repos/UtilitechAS/amsreader-firmware/releases")).json(),Ao.set(mo)}function Ns(t){return"WARNING: "+t+" must be connected to an external power supply during firmware upgrade. Failure to do so may cause power-down during upload resulting in non-functioning unit."}async function Vc(t){await(await fetch("/upgrade?expected_version="+t,{method:"POST"})).json()}function Kc(t,e){if(/^v\d{1,2}\.\d{1,2}\.\d{1,2}$/.test(t)){let l=t.substring(1).split("."),n=parseInt(l[0]),i=parseInt(l[1]),o=parseInt(l[2]),a=[...e];a.reverse();let u,c,f;for(let p=0;po&&(u=_):k==i+1&&(c=_);else if(d==n+1)if(f){let S=f.tag_name.substring(1).split(".");parseInt(S[0]);let T=parseInt(S[1]);parseInt(S[2]),k==T&&(f=_)}else f=_}return c||f||u||!1}else return e[0]}const S1="/github.svg";function iu(t){let e,l;function n(a,u){return a[1]>1?O1:a[1]>0?I1:a[2]>1?D1:a[2]>0?E1:a[3]>1?P1:a[3]>0?A1:N1}let i=n(t),o=i(t);return{c(){e=$(`Up - `),o.c(),l=Ge()},m(a,u){M(a,e,u),o.m(a,u),M(a,l,u)},p(a,u){i===(i=n(a))&&o?o.p(a,u):(o.d(1),o=i(a),o&&(o.c(),o.m(l.parentNode,l)))},d(a){a&&C(e),o.d(a),a&&C(l)}}}function N1(t){let e,l;return{c(){e=$(t[0]),l=$(" seconds")},m(n,i){M(n,e,i),M(n,l,i)},p(n,i){i&1&&Z(e,n[0])},d(n){n&&C(e),n&&C(l)}}}function A1(t){let e,l;return{c(){e=$(t[3]),l=$(" minute")},m(n,i){M(n,e,i),M(n,l,i)},p(n,i){i&8&&Z(e,n[3])},d(n){n&&C(e),n&&C(l)}}}function P1(t){let e,l;return{c(){e=$(t[3]),l=$(" minutes")},m(n,i){M(n,e,i),M(n,l,i)},p(n,i){i&8&&Z(e,n[3])},d(n){n&&C(e),n&&C(l)}}}function E1(t){let e,l;return{c(){e=$(t[2]),l=$(" hour")},m(n,i){M(n,e,i),M(n,l,i)},p(n,i){i&4&&Z(e,n[2])},d(n){n&&C(e),n&&C(l)}}}function D1(t){let e,l;return{c(){e=$(t[2]),l=$(" hours")},m(n,i){M(n,e,i),M(n,l,i)},p(n,i){i&4&&Z(e,n[2])},d(n){n&&C(e),n&&C(l)}}}function I1(t){let e,l;return{c(){e=$(t[1]),l=$(" day")},m(n,i){M(n,e,i),M(n,l,i)},p(n,i){i&2&&Z(e,n[1])},d(n){n&&C(e),n&&C(l)}}}function O1(t){let e,l;return{c(){e=$(t[1]),l=$(" days")},m(n,i){M(n,e,i),M(n,l,i)},p(n,i){i&2&&Z(e,n[1])},d(n){n&&C(e),n&&C(l)}}}function R1(t){let e,l=t[0]&&iu(t);return{c(){l&&l.c(),e=Ge()},m(n,i){l&&l.m(n,i),M(n,e,i)},p(n,[i]){n[0]?l?l.p(n,i):(l=iu(n),l.c(),l.m(e.parentNode,e)):l&&(l.d(1),l=null)},i:fe,o:fe,d(n){l&&l.d(n),n&&C(e)}}}function L1(t,e,l){let{epoch:n}=e,i=0,o=0,a=0;return t.$$set=u=>{"epoch"in u&&l(0,n=u.epoch)},t.$$.update=()=>{t.$$.dirty&1&&(l(1,i=Math.floor(n/86400)),l(2,o=Math.floor(n/3600)),l(3,a=Math.floor(n/60)))},[n,i,o,a]}class F1 extends Ee{constructor(e){super(),Pe(this,e,L1,R1,Ae,{epoch:0})}}function q1(t){let e,l,n;return{c(){e=m("span"),l=$(t[2]),r(e,"title",t[1]),r(e,"class",n="bd-"+t[0])},m(i,o){M(i,e,o),s(e,l)},p(i,[o]){o&4&&Z(l,i[2]),o&2&&r(e,"title",i[1]),o&1&&n!==(n="bd-"+i[0])&&r(e,"class",n)},i:fe,o:fe,d(i){i&&C(e)}}}function B1(t,e,l){let{color:n}=e,{title:i}=e,{text:o}=e;return t.$$set=a=>{"color"in a&&l(0,n=a.color),"title"in a&&l(1,i=a.title),"text"in a&&l(2,o=a.text)},[n,i,o]}class mn extends Ee{constructor(e){super(),Pe(this,e,B1,q1,Ae,{color:0,title:1,text:2})}}function U1(t){let e,l=`${Le(t[0].getDate())}.${Le(t[0].getMonth()+1)}.${t[0].getFullYear()} ${Le(t[0].getHours())}:${Le(t[0].getMinutes())}`,n;return{c(){e=m("span"),n=$(l),r(e,"class",t[1])},m(i,o){M(i,e,o),s(e,n)},p(i,o){o&1&&l!==(l=`${Le(i[0].getDate())}.${Le(i[0].getMonth()+1)}.${i[0].getFullYear()} ${Le(i[0].getHours())}:${Le(i[0].getMinutes())}`)&&Z(n,l),o&2&&r(e,"class",i[1])},d(i){i&&C(e)}}}function j1(t){let e=`${Le(t[0].getDate())}. ${oo[t[0].getMonth()]} ${Le(t[0].getHours())}:${Le(t[0].getMinutes())}`,l;return{c(){l=$(e)},m(n,i){M(n,l,i)},p(n,i){i&1&&e!==(e=`${Le(n[0].getDate())}. ${oo[n[0].getMonth()]} ${Le(n[0].getHours())}:${Le(n[0].getMinutes())}`)&&Z(l,e)},d(n){n&&C(l)}}}function H1(t){let e;function l(o,a){return o[2]?j1:U1}let n=l(t),i=n(t);return{c(){i.c(),e=Ge()},m(o,a){i.m(o,a),M(o,e,a)},p(o,[a]){n===(n=l(o))&&i?i.p(o,a):(i.d(1),i=n(o),i&&(i.c(),i.m(e.parentNode,e)))},i:fe,o:fe,d(o){i.d(o),o&&C(e)}}}function W1(t,e,l){let{timestamp:n}=e,{fullTimeColor:i}=e,{offset:o}=e,a;return t.$$set=u=>{"timestamp"in u&&l(0,n=u.timestamp),"fullTimeColor"in u&&l(1,i=u.fullTimeColor),"offset"in u&&l(3,o=u.offset)},t.$$.update=()=>{t.$$.dirty&9&&(l(2,a=Math.abs(new Date().getTime()-n.getTime())<3e5),isNaN(o)||fl(n,o-(24+n.getHours()-n.getUTCHours())%24))},[n,i,a,o]}class Yc extends Ee{constructor(e){super(),Pe(this,e,W1,H1,Ae,{timestamp:0,fullTimeColor:1,offset:3})}}function z1(t){let e,l,n;return{c(){e=Fe("svg"),l=Fe("path"),n=Fe("path"),r(l,"stroke-linecap","round"),r(l,"stroke-linejoin","round"),r(l,"d","M10.343 3.94c.09-.542.56-.94 1.11-.94h1.093c.55 0 1.02.398 1.11.94l.149.894c.07.424.384.764.78.93.398.164.855.142 1.205-.108l.737-.527a1.125 1.125 0 011.45.12l.773.774c.39.389.44 1.002.12 1.45l-.527.737c-.25.35-.272.806-.107 1.204.165.397.505.71.93.78l.893.15c.543.09.94.56.94 1.109v1.094c0 .55-.397 1.02-.94 1.11l-.893.149c-.425.07-.765.383-.93.78-.165.398-.143.854.107 1.204l.527.738c.32.447.269 1.06-.12 1.45l-.774.773a1.125 1.125 0 01-1.449.12l-.738-.527c-.35-.25-.806-.272-1.203-.107-.397.165-.71.505-.781.929l-.149.894c-.09.542-.56.94-1.11.94h-1.094c-.55 0-1.019-.398-1.11-.94l-.148-.894c-.071-.424-.384-.764-.781-.93-.398-.164-.854-.142-1.204.108l-.738.527c-.447.32-1.06.269-1.45-.12l-.773-.774a1.125 1.125 0 01-.12-1.45l.527-.737c.25-.35.273-.806.108-1.204-.165-.397-.505-.71-.93-.78l-.894-.15c-.542-.09-.94-.56-.94-1.109v-1.094c0-.55.398-1.02.94-1.11l.894-.149c.424-.07.765-.383.93-.78.165-.398.143-.854-.107-1.204l-.527-.738a1.125 1.125 0 01.12-1.45l.773-.773a1.125 1.125 0 011.45-.12l.737.527c.35.25.807.272 1.204.107.397-.165.71-.505.78-.929l.15-.894z"),r(n,"stroke-linecap","round"),r(n,"stroke-linejoin","round"),r(n,"d","M15 12a3 3 0 11-6 0 3 3 0 016 0z"),r(e,"xmlns","http://www.w3.org/2000/svg"),r(e,"fill","none"),r(e,"viewBox","0 0 24 24"),r(e,"stroke-width","1.5"),r(e,"stroke","currentColor"),r(e,"class","w-6 h-6")},m(i,o){M(i,e,o),s(e,l),s(e,n)},p:fe,i:fe,o:fe,d(i){i&&C(e)}}}class G1 extends Ee{constructor(e){super(),Pe(this,e,null,z1,Ae,{})}}function V1(t){let e,l;return{c(){e=Fe("svg"),l=Fe("path"),r(l,"stroke-linecap","round"),r(l,"stroke-linejoin","round"),r(l,"d","M11.25 11.25l.041-.02a.75.75 0 011.063.852l-.708 2.836a.75.75 0 001.063.853l.041-.021M21 12a9 9 0 11-18 0 9 9 0 0118 0zm-9-3.75h.008v.008H12V8.25z"),r(e,"xmlns","http://www.w3.org/2000/svg"),r(e,"fill","none"),r(e,"viewBox","0 0 24 24"),r(e,"stroke-width","1.5"),r(e,"stroke","currentColor"),r(e,"class","w-6 h-6")},m(n,i){M(n,e,i),s(e,l)},p:fe,i:fe,o:fe,d(n){n&&C(e)}}}class K1 extends Ee{constructor(e){super(),Pe(this,e,null,V1,Ae,{})}}function Y1(t){let e,l;return{c(){e=Fe("svg"),l=Fe("path"),r(l,"stroke-linecap","round"),r(l,"stroke-linejoin","round"),r(l,"d","M9.879 7.519c1.171-1.025 3.071-1.025 4.242 0 1.172 1.025 1.172 2.687 0 3.712-.203.179-.43.326-.67.442-.745.361-1.45.999-1.45 1.827v.75M21 12a9 9 0 11-18 0 9 9 0 0118 0zm-9 5.25h.008v.008H12v-.008z"),r(e,"xmlns","http://www.w3.org/2000/svg"),r(e,"fill","none"),r(e,"viewBox","0 0 24 24"),r(e,"stroke-width","1.5"),r(e,"stroke","currentColor"),r(e,"class","w-6 h-6")},m(n,i){M(n,e,i),s(e,l)},p:fe,i:fe,o:fe,d(n){n&&C(e)}}}class Ft extends Ee{constructor(e){super(),Pe(this,e,null,Y1,Ae,{})}}function Q1(t){let e,l;return{c(){e=Fe("svg"),l=Fe("path"),r(l,"stroke-linecap","round"),r(l,"stroke-linejoin","round"),r(l,"d","M9 8.25H7.5a2.25 2.25 0 00-2.25 2.25v9a2.25 2.25 0 002.25 2.25h9a2.25 2.25 0 002.25-2.25v-9a2.25 2.25 0 00-2.25-2.25H15M9 12l3 3m0 0l3-3m-3 3V2.25"),r(e,"xmlns","http://www.w3.org/2000/svg"),r(e,"fill","none"),r(e,"viewBox","0 0 24 24"),r(e,"stroke-width","1.5"),r(e,"stroke","currentColor"),r(e,"class","w-6 h-6")},m(n,i){M(n,e,i),s(e,l)},p:fe,i:fe,o:fe,d(n){n&&C(e)}}}class Qc extends Ee{constructor(e){super(),Pe(this,e,null,Q1,Ae,{})}}function X1(t){let e,l,n=t[1].version+"",i;return{c(){e=$("AMS reader "),l=m("span"),i=$(n)},m(o,a){M(o,e,a),M(o,l,a),s(l,i)},p(o,a){a&2&&n!==(n=o[1].version+"")&&Z(i,n)},d(o){o&&C(e),o&&C(l)}}}function su(t){let e,l=(t[0].t>-50?t[0].t.toFixed(1):"-")+"",n,i;return{c(){e=m("div"),n=$(l),i=$("°C"),r(e,"class","flex-none my-auto")},m(o,a){M(o,e,a),s(e,n),s(e,i)},p(o,a){a&1&&l!==(l=(o[0].t>-50?o[0].t.toFixed(1):"-")+"")&&Z(n,l)},d(o){o&&C(e)}}}function ou(t){let e,l="HAN: "+Ja(t[0].he),n;return{c(){e=m("div"),n=$(l),r(e,"class","bd-red")},m(i,o){M(i,e,o),s(e,n)},p(i,o){o&1&&l!==(l="HAN: "+Ja(i[0].he))&&Z(n,l)},d(i){i&&C(e)}}}function ru(t){let e,l="MQTT: "+xa(t[0].me),n;return{c(){e=m("div"),n=$(l),r(e,"class","bd-red")},m(i,o){M(i,e,o),s(e,n)},p(i,o){o&1&&l!==(l="MQTT: "+xa(i[0].me))&&Z(n,l)},d(i){i&&C(e)}}}function au(t){let e,l="PriceAPI: "+eu(t[0].ee),n;return{c(){e=m("div"),n=$(l),r(e,"class","bd-red")},m(i,o){M(i,e,o),s(e,n)},p(i,o){o&1&&l!==(l="PriceAPI: "+eu(i[0].ee))&&Z(n,l)},d(i){i&&C(e)}}}function uu(t){let e,l,n,i,o,a;return l=new el({props:{to:"/configuration",$$slots:{default:[Z1]},$$scope:{ctx:t}}}),o=new el({props:{to:"/status",$$slots:{default:[J1]},$$scope:{ctx:t}}}),{c(){e=m("div"),ie(l.$$.fragment),n=h(),i=m("div"),ie(o.$$.fragment),r(e,"class","flex-none px-1 mt-1"),r(e,"title","Configuration"),r(i,"class","flex-none px-1 mt-1"),r(i,"title","Device information")},m(u,c){M(u,e,c),le(l,e,null),M(u,n,c),M(u,i,c),le(o,i,null),a=!0},i(u){a||(D(l.$$.fragment,u),D(o.$$.fragment,u),a=!0)},o(u){q(l.$$.fragment,u),q(o.$$.fragment,u),a=!1},d(u){u&&C(e),ne(l),u&&C(n),u&&C(i),ne(o)}}}function Z1(t){let e,l;return e=new G1({}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function J1(t){let e,l;return e=new K1({}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function fu(t){let e,l,n,i,o;const a=[em,x1],u=[];function c(f,p){return f[1].security==0||f[0].a?0:1}return l=c(t),n=u[l]=a[l](t),{c(){e=m("div"),n.c(),r(e,"class","flex-none mr-3 text-yellow-500"),r(e,"title",i="New version: "+t[2].tag_name)},m(f,p){M(f,e,p),u[l].m(e,null),o=!0},p(f,p){let _=l;l=c(f),l===_?u[l].p(f,p):(De(),q(u[_],1,1,()=>{u[_]=null}),Ie(),n=u[l],n?n.p(f,p):(n=u[l]=a[l](f),n.c()),D(n,1),n.m(e,null)),(!o||p&4&&i!==(i="New version: "+f[2].tag_name))&&r(e,"title",i)},i(f){o||(D(n),o=!0)},o(f){q(n),o=!1},d(f){f&&C(e),u[l].d()}}}function x1(t){let e,l,n=t[2].tag_name+"",i;return{c(){e=m("span"),l=$("New version: "),i=$(n)},m(o,a){M(o,e,a),s(e,l),s(e,i)},p(o,a){a&4&&n!==(n=o[2].tag_name+"")&&Z(i,n)},i:fe,o:fe,d(o){o&&C(e)}}}function em(t){let e,l,n,i=t[2].tag_name+"",o,a,u,c,f,p;return u=new Qc({}),{c(){e=m("button"),l=m("span"),n=$("New version: "),o=$(i),a=h(),ie(u.$$.fragment),r(l,"class","mt-1"),r(e,"class","flex")},m(_,b){M(_,e,b),s(e,l),s(l,n),s(l,o),s(e,a),le(u,e,null),c=!0,f||(p=ee(e,"click",t[3]),f=!0)},p(_,b){(!c||b&4)&&i!==(i=_[2].tag_name+"")&&Z(o,i)},i(_){c||(D(u.$$.fragment,_),c=!0)},o(_){q(u.$$.fragment,_),c=!1},d(_){_&&C(e),ne(u),f=!1,p()}}}function tm(t){let e,l,n,i,o,a,u,c,f,p,_,b,v=(t[0].m?(t[0].m/1e3).toFixed(1):"-")+"",d,k,A,S,T,E,B,P,R,L,F,x,j,z,G,V,W,U,K,H,Y,X,re,ue,we,me,Se,je,Oe,He;i=new el({props:{to:"/",$$slots:{default:[X1]},$$scope:{ctx:t}}}),c=new F1({props:{epoch:t[0].u}});let ye=t[0].t>-50&&su(t);T=new mn({props:{title:"ESP",text:t[1].booting?"Booting":t[0].v>2?t[0].v.toFixed(2)+"V":"ESP",color:ql(t[1].booting?2:t[0].em)}}),B=new mn({props:{title:"HAN",text:"HAN",color:ql(t[1].booting?9:t[0].hm)}}),R=new mn({props:{title:"WiFi",text:t[0].r?t[0].r.toFixed(0)+"dBm":"WiFi",color:ql(t[1].booting?9:t[0].wm)}}),F=new mn({props:{title:"MQTT",text:"MQTT",color:ql(t[1].booting?9:t[0].mm)}});let Ne=(t[0].he<0||t[0].he>0)&&ou(t),Re=t[0].me<0&&ru(t),$e=(t[0].ee>0||t[0].ee<0)&&au(t);re=new Yc({props:{timestamp:t[0].c?new Date(t[0].c*1e3):new Date(0),offset:t[1].clock_offset,fullTimeColor:"text-red-500"}});let y=t[1].vndcfg&&t[1].usrcfg&&uu(t);je=new Ft({});let g=t[1].fwconsent===1&&t[2]&&fu(t);return{c(){e=m("nav"),l=m("div"),n=m("div"),ie(i.$$.fragment),o=h(),a=m("div"),u=m("div"),ie(c.$$.fragment),f=h(),ye&&ye.c(),p=h(),_=m("div"),b=$("Free mem: "),d=$(v),k=$("kb"),A=h(),S=m("div"),ie(T.$$.fragment),E=h(),ie(B.$$.fragment),P=h(),ie(R.$$.fragment),L=h(),ie(F.$$.fragment),x=h(),Ne&&Ne.c(),j=h(),Re&&Re.c(),z=h(),$e&&$e.c(),G=h(),V=m("div"),W=m("div"),U=m("a"),K=m("img"),Y=h(),X=m("div"),ie(re.$$.fragment),ue=h(),y&&y.c(),we=h(),me=m("div"),Se=m("a"),ie(je.$$.fragment),Oe=h(),g&&g.c(),r(n,"class","flex text-lg text-gray-100 p-2"),r(u,"class","flex-none my-auto"),r(_,"class","flex-none my-auto"),r(a,"class","flex-none my-auto p-2 flex space-x-4"),r(S,"class","flex-auto flex-wrap my-auto justify-center p-2"),r(K,"class","gh-logo"),to(K.src,H=S1)||r(K,"src",H),r(K,"alt","GitHub repo"),r(U,"class","float-right"),r(U,"href","https://github.com/UtilitechAS/amsreader-firmware"),r(U,"target","_blank"),r(U,"rel","noreferrer"),r(U,"aria-label","GitHub"),r(W,"class","flex-none"),r(X,"class","flex-none my-auto px-2"),r(Se,"href",qt("")),r(Se,"target","_blank"),r(Se,"rel","noreferrer"),r(me,"class","flex-none px-1 mt-1"),r(me,"title","Documentation"),r(V,"class","flex-auto p-2 flex flex-row-reverse flex-wrap"),r(l,"class","flex flex-wrap space-x-4 text-sm text-gray-300"),r(e,"class","bg-violet-600 p-1 rounded-md mx-2")},m(w,N){M(w,e,N),s(e,l),s(l,n),le(i,n,null),s(l,o),s(l,a),s(a,u),le(c,u,null),s(a,f),ye&&ye.m(a,null),s(a,p),s(a,_),s(_,b),s(_,d),s(_,k),s(l,A),s(l,S),le(T,S,null),s(S,E),le(B,S,null),s(S,P),le(R,S,null),s(S,L),le(F,S,null),s(l,x),Ne&&Ne.m(l,null),s(l,j),Re&&Re.m(l,null),s(l,z),$e&&$e.m(l,null),s(l,G),s(l,V),s(V,W),s(W,U),s(U,K),s(V,Y),s(V,X),le(re,X,null),s(V,ue),y&&y.m(V,null),s(V,we),s(V,me),s(me,Se),le(je,Se,null),s(V,Oe),g&&g.m(V,null),He=!0},p(w,[N]){const I={};N&18&&(I.$$scope={dirty:N,ctx:w}),i.$set(I);const Q={};N&1&&(Q.epoch=w[0].u),c.$set(Q),w[0].t>-50?ye?ye.p(w,N):(ye=su(w),ye.c(),ye.m(a,p)):ye&&(ye.d(1),ye=null),(!He||N&1)&&v!==(v=(w[0].m?(w[0].m/1e3).toFixed(1):"-")+"")&&Z(d,v);const J={};N&3&&(J.text=w[1].booting?"Booting":w[0].v>2?w[0].v.toFixed(2)+"V":"ESP"),N&3&&(J.color=ql(w[1].booting?2:w[0].em)),T.$set(J);const se={};N&3&&(se.color=ql(w[1].booting?9:w[0].hm)),B.$set(se);const ce={};N&1&&(ce.text=w[0].r?w[0].r.toFixed(0)+"dBm":"WiFi"),N&3&&(ce.color=ql(w[1].booting?9:w[0].wm)),R.$set(ce);const ve={};N&3&&(ve.color=ql(w[1].booting?9:w[0].mm)),F.$set(ve),w[0].he<0||w[0].he>0?Ne?Ne.p(w,N):(Ne=ou(w),Ne.c(),Ne.m(l,j)):Ne&&(Ne.d(1),Ne=null),w[0].me<0?Re?Re.p(w,N):(Re=ru(w),Re.c(),Re.m(l,z)):Re&&(Re.d(1),Re=null),w[0].ee>0||w[0].ee<0?$e?$e.p(w,N):($e=au(w),$e.c(),$e.m(l,G)):$e&&($e.d(1),$e=null);const Te={};N&1&&(Te.timestamp=w[0].c?new Date(w[0].c*1e3):new Date(0)),N&2&&(Te.offset=w[1].clock_offset),re.$set(Te),w[1].vndcfg&&w[1].usrcfg?y?N&2&&D(y,1):(y=uu(w),y.c(),D(y,1),y.m(V,we)):y&&(De(),q(y,1,1,()=>{y=null}),Ie()),w[1].fwconsent===1&&w[2]?g?(g.p(w,N),N&6&&D(g,1)):(g=fu(w),g.c(),D(g,1),g.m(V,null)):g&&(De(),q(g,1,1,()=>{g=null}),Ie())},i(w){He||(D(i.$$.fragment,w),D(c.$$.fragment,w),D(T.$$.fragment,w),D(B.$$.fragment,w),D(R.$$.fragment,w),D(F.$$.fragment,w),D(re.$$.fragment,w),D(y),D(je.$$.fragment,w),D(g),He=!0)},o(w){q(i.$$.fragment,w),q(c.$$.fragment,w),q(T.$$.fragment,w),q(B.$$.fragment,w),q(R.$$.fragment,w),q(F.$$.fragment,w),q(re.$$.fragment,w),q(y),q(je.$$.fragment,w),q(g),He=!1},d(w){w&&C(e),ne(i),ne(c),ye&&ye.d(),ne(T),ne(B),ne(R),ne(F),Ne&&Ne.d(),Re&&Re.d(),$e&&$e.d(),ne(re),y&&y.d(),ne(je),g&&g.d()}}}function lm(t,e,l){let{data:n={}}=e,i={},o={};function a(){confirm("Do you want to upgrade this device to "+o.tag_name+"?")&&(!ui(i.board)||confirm(Ns(be(i.chip,i.board))))&&(Bt.update(u=>(u.upgrading=!0,u)),Vc(o.tag_name))}return Bt.subscribe(u=>{l(1,i=u),u.fwconsent===1&&T1()}),Ao.subscribe(u=>{l(2,o=Kc(i.version,u))}),t.$$set=u=>{"data"in u&&l(0,n=u.data)},[n,i,o,a]}class nm extends Ee{constructor(e){super(),Pe(this,e,lm,tm,Ae,{data:0})}}function im(t){let e,l,n,i;return{c(){e=Fe("svg"),l=Fe("path"),n=Fe("path"),r(l,"d",eo(150,150,115,210,510)),r(l,"stroke","#eee"),r(l,"fill","none"),r(l,"stroke-width","55"),r(n,"d",i=eo(150,150,115,210,210+300*t[0]/100)),r(n,"stroke",t[1]),r(n,"fill","none"),r(n,"stroke-width","55"),r(e,"viewBox","0 0 300 300"),r(e,"xmlns","http://www.w3.org/2000/svg"),r(e,"height","100%")},m(o,a){M(o,e,a),s(e,l),s(e,n)},p(o,[a]){a&1&&i!==(i=eo(150,150,115,210,210+300*o[0]/100))&&r(n,"d",i),a&2&&r(n,"stroke",o[1])},i:fe,o:fe,d(o){o&&C(e)}}}function cu(t,e,l,n){var i=(n-90)*Math.PI/180;return{x:t+l*Math.cos(i),y:e+l*Math.sin(i)}}function eo(t,e,l,n,i){var o=cu(t,e,l,i),a=cu(t,e,l,n),u=i-n<=180?"0":"1",c=["M",o.x,o.y,"A",l,l,0,u,0,a.x,a.y].join(" ");return c}function sm(t,e,l){let{pct:n=0}=e,{color:i="red"}=e;return t.$$set=o=>{"pct"in o&&l(0,n=o.pct),"color"in o&&l(1,i=o.color)},[n,i]}class om extends Ee{constructor(e){super(),Pe(this,e,sm,im,Ae,{pct:0,color:1})}}function mu(t){let e,l,n,i,o,a,u,c;return{c(){e=m("br"),l=h(),n=m("span"),i=$(t[3]),o=h(),a=m("span"),u=$(t[4]),c=$("/kWh"),r(n,"class","pl-sub"),r(a,"class","pl-snt")},m(f,p){M(f,e,p),M(f,l,p),M(f,n,p),s(n,i),M(f,o,p),M(f,a,p),s(a,u),s(a,c)},p(f,p){p&8&&Z(i,f[3]),p&16&&Z(u,f[4])},d(f){f&&C(e),f&&C(l),f&&C(n),f&&C(o),f&&C(a)}}}function rm(t){let e,l,n,i,o,a,u,c,f,p,_,b,v,d,k,A;l=new om({props:{pct:t[6],color:t[5](t[6])}});let S=t[3]&&mu(t);return{c(){e=m("div"),ie(l.$$.fragment),n=h(),i=m("span"),o=m("span"),a=$(t[2]),u=h(),c=m("br"),f=h(),p=m("span"),_=$(t[0]),b=h(),v=m("span"),d=$(t[1]),k=h(),S&&S.c(),r(o,"class","pl-lab"),r(p,"class","pl-val"),r(v,"class","pl-unt"),r(i,"class","pl-ov"),r(e,"class","pl-root")},m(T,E){M(T,e,E),le(l,e,null),s(e,n),s(e,i),s(i,o),s(o,a),s(i,u),s(i,c),s(i,f),s(i,p),s(p,_),s(i,b),s(i,v),s(v,d),s(i,k),S&&S.m(i,null),A=!0},p(T,[E]){const B={};E&64&&(B.pct=T[6]),E&96&&(B.color=T[5](T[6])),l.$set(B),(!A||E&4)&&Z(a,T[2]),(!A||E&1)&&Z(_,T[0]),(!A||E&2)&&Z(d,T[1]),T[3]?S?S.p(T,E):(S=mu(T),S.c(),S.m(i,null)):S&&(S.d(1),S=null)},i(T){A||(D(l.$$.fragment,T),A=!0)},o(T){q(l.$$.fragment,T),A=!1},d(T){T&&C(e),ne(l),S&&S.d()}}}function am(t,e,l){let{val:n}=e,{max:i}=e,{unit:o}=e,{label:a}=e,{sub:u=""}=e,{subunit:c=""}=e,{colorFn:f}=e,p=0;return t.$$set=_=>{"val"in _&&l(0,n=_.val),"max"in _&&l(7,i=_.max),"unit"in _&&l(1,o=_.unit),"label"in _&&l(2,a=_.label),"sub"in _&&l(3,u=_.sub),"subunit"in _&&l(4,c=_.subunit),"colorFn"in _&&l(5,f=_.colorFn)},t.$$.update=()=>{t.$$.dirty&129&&l(6,p=Math.min(n,i)/i*100)},[n,o,a,u,c,f,p,i]}class Xc extends Ee{constructor(e){super(),Pe(this,e,am,rm,Ae,{val:0,max:7,unit:1,label:2,sub:3,subunit:4,colorFn:5})}}function pu(t,e,l){const n=t.slice();return n[9]=e[l],n[11]=l,n}function _u(t,e,l){const n=t.slice();return n[9]=e[l],n[11]=l,n}function du(t,e,l){const n=t.slice();return n[13]=e[l],n}function vu(t){let e,l,n,i,o,a=t[0].title&&hu(t),u=t[0].y.ticks,c=[];for(let v=0;v20||t[11]%2==0)&&wu(t);return{c(){e=Fe("g"),n&&n.c(),r(e,"class","tick"),r(e,"transform",l="translate("+t[5](t[11])+","+t[4]+")")},m(i,o){M(i,e,o),n&&n.m(e,null)},p(i,o){i[3]>20||i[11]%2==0?n?n.p(i,o):(n=wu(i),n.c(),n.m(e,null)):n&&(n.d(1),n=null),o&48&&l!==(l="translate("+i[5](i[11])+","+i[4]+")")&&r(e,"transform",l)},d(i){i&&C(e),n&&n.d()}}}function wu(t){let e,l=t[9].label+"",n,i;return{c(){e=Fe("text"),n=$(l),r(e,"x",i=t[3]/2),r(e,"y","-4")},m(o,a){M(o,e,a),s(e,n)},p(o,a){a&1&&l!==(l=o[9].label+"")&&Z(n,l),a&8&&i!==(i=o[3]/2)&&r(e,"x",i)},d(o){o&&C(e)}}}function yu(t){let e=!isNaN(t[5](t[11])),l,n=e&&ku(t);return{c(){n&&n.c(),l=Ge()},m(i,o){n&&n.m(i,o),M(i,l,o)},p(i,o){o&32&&(e=!isNaN(i[5](i[11]))),e?n?n.p(i,o):(n=ku(i),n.c(),n.m(l.parentNode,l)):n&&(n.d(1),n=null)},d(i){n&&n.d(i),i&&C(l)}}}function Cu(t){let e,l,n=t[9].value!==void 0&&Mu(t),i=t[9].value2>1e-4&&Su(t);return{c(){e=Fe("g"),n&&n.c(),l=Fe("g"),i&&i.c()},m(o,a){M(o,e,a),n&&n.m(e,null),M(o,l,a),i&&i.m(l,null)},p(o,a){o[9].value!==void 0?n?n.p(o,a):(n=Mu(o),n.c(),n.m(e,null)):n&&(n.d(1),n=null),o[9].value2>1e-4?i?i.p(o,a):(i=Su(o),i.c(),i.m(l,null)):i&&(i.d(1),i=null)},d(o){o&&C(e),n&&n.d(),o&&C(l),i&&i.d()}}}function Mu(t){let e,l,n,i,o,a,u,c=t[3]>15&&$u(t);return{c(){e=Fe("rect"),c&&c.c(),u=Ge(),r(e,"x",l=t[5](t[11])+2),r(e,"y",n=t[6](t[9].value)),r(e,"width",i=t[3]-4),r(e,"height",o=t[6](t[0].y.min)-t[6](Math.min(t[0].y.min,0)+t[9].value)),r(e,"fill",a=t[9].color)},m(f,p){M(f,e,p),c&&c.m(f,p),M(f,u,p)},p(f,p){p&32&&l!==(l=f[5](f[11])+2)&&r(e,"x",l),p&65&&n!==(n=f[6](f[9].value))&&r(e,"y",n),p&8&&i!==(i=f[3]-4)&&r(e,"width",i),p&65&&o!==(o=f[6](f[0].y.min)-f[6](Math.min(f[0].y.min,0)+f[9].value))&&r(e,"height",o),p&1&&a!==(a=f[9].color)&&r(e,"fill",a),f[3]>15?c?c.p(f,p):(c=$u(f),c.c(),c.m(u.parentNode,u)):c&&(c.d(1),c=null)},d(f){f&&C(e),c&&c.d(f),f&&C(u)}}}function $u(t){let e,l=t[9].label+"",n,i,o,a,u,c,f=t[9].title&&Tu(t);return{c(){e=Fe("text"),n=$(l),f&&f.c(),c=Ge(),r(e,"width",i=t[3]-4),r(e,"dominant-baseline","middle"),r(e,"text-anchor",o=t[3]t[6](0)-t[7]?t[9].color:"white"),r(e,"transform",u="translate("+(t[5](t[11])+t[3]/2)+" "+(t[6](t[9].value)>t[6](0)-t[7]?t[6](t[9].value)-t[7]:t[6](t[9].value)+10)+") rotate("+(t[3]p[6](0)-p[7]?p[9].color:"white")&&r(e,"fill",a),_&233&&u!==(u="translate("+(p[5](p[11])+p[3]/2)+" "+(p[6](p[9].value)>p[6](0)-p[7]?p[6](p[9].value)-p[7]:p[6](p[9].value)+10)+") rotate("+(p[3]15&&Nu(t);return{c(){e=Fe("rect"),c&&c.c(),u=Ge(),r(e,"x",l=t[5](t[11])+2),r(e,"y",n=t[6](0)),r(e,"width",i=t[3]-4),r(e,"height",o=t[6](t[0].y.min)-t[6](t[0].y.min+t[9].value2)),r(e,"fill",a=t[9].color2?t[9].color2:t[9].color)},m(f,p){M(f,e,p),c&&c.m(f,p),M(f,u,p)},p(f,p){p&32&&l!==(l=f[5](f[11])+2)&&r(e,"x",l),p&64&&n!==(n=f[6](0))&&r(e,"y",n),p&8&&i!==(i=f[3]-4)&&r(e,"width",i),p&65&&o!==(o=f[6](f[0].y.min)-f[6](f[0].y.min+f[9].value2))&&r(e,"height",o),p&1&&a!==(a=f[9].color2?f[9].color2:f[9].color)&&r(e,"fill",a),f[3]>15?c?c.p(f,p):(c=Nu(f),c.c(),c.m(u.parentNode,u)):c&&(c.d(1),c=null)},d(f){f&&C(e),c&&c.d(f),f&&C(u)}}}function Nu(t){let e,l=t[9].label2+"",n,i,o,a,u,c=t[9].title2&&Au(t);return{c(){e=Fe("text"),n=$(l),c&&c.c(),u=Ge(),r(e,"width",i=t[3]-4),r(e,"dominant-baseline","middle"),r(e,"text-anchor","middle"),r(e,"fill",o=t[6](-t[9].value2)t[8].call(e))},m(i,o){M(i,e,o),n&&n.m(e,null),l=u0(e,t[8].bind(e))},p(i,[o]){i[0].x.ticks&&i[0].points&&i[4]?n?n.p(i,o):(n=vu(i),n.c(),n.m(e,null)):n&&(n.d(1),n=null)},i:fe,o:fe,d(i){i&&C(e),n&&n.d(),l()}}}let pn=30;function fm(t,e,l){let{config:n}=e,i,o,a,u,c,f,p;function _(){i=this.clientWidth,o=this.clientHeight,l(1,i),l(2,o)}return t.$$set=b=>{"config"in b&&l(0,n=b.config)},t.$$.update=()=>{if(t.$$.dirty&31){l(4,f=o-(n.title?20:0));let b=i-(n.padding.left+n.padding.right);l(3,a=b/n.points.length),l(7,p=an.y.max?k=n.padding.bottom:df||k<0?0:k})}},[n,i,o,a,f,u,c,p,_]}class dn extends Ee{constructor(e){super(),Pe(this,e,fm,um,Ae,{config:0})}}function cm(t){let e,l;return e=new dn({props:{config:t[0]}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p(n,[i]){const o={};i&1&&(o.config=n[0]),e.$set(o)},i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function mm(t,e,l){let{u1:n}=e,{u2:i}=e,{u3:o}=e,{ds:a}=e,u={};function c(f){return{label:ge(f)+"V",title:f.toFixed(1)+" V",value:isNaN(f)?0:f,color:y1(f||0)}}return t.$$set=f=>{"u1"in f&&l(1,n=f.u1),"u2"in f&&l(2,i=f.u2),"u3"in f&&l(3,o=f.u3),"ds"in f&&l(4,a=f.ds)},t.$$.update=()=>{if(t.$$.dirty&30){let f=[],p=[];n>0&&(f.push({label:a===1?"L1-L2":"L1"}),p.push(c(n))),i>0&&(f.push({label:a===1?"L1-L3":"L2"}),p.push(c(i))),o>0&&(f.push({label:a===1?"L2-L3":"L3"}),p.push(c(o))),l(0,u={padding:{top:20,right:15,bottom:20,left:35},y:{min:200,max:260,ticks:[{value:207,label:"-10%"},{value:230,label:"230v"},{value:253,label:"+10%"}]},x:{ticks:f},points:p})}},[u,n,i,o,a]}class pm extends Ee{constructor(e){super(),Pe(this,e,mm,cm,Ae,{u1:1,u2:2,u3:3,ds:4})}}function _m(t){let e,l;return e=new dn({props:{config:t[0]}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p(n,[i]){const o={};i&1&&(o.config=n[0]),e.$set(o)},i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function dm(t,e,l){let{u1:n}=e,{u2:i}=e,{u3:o}=e,{i1:a}=e,{i2:u}=e,{i3:c}=e,{max:f}=e,p={};function _(b){return{label:ge(b)+"A",title:b.toFixed(1)+" A",value:isNaN(b)?0:b,color:Fc(b?b/f*100:0)}}return t.$$set=b=>{"u1"in b&&l(1,n=b.u1),"u2"in b&&l(2,i=b.u2),"u3"in b&&l(3,o=b.u3),"i1"in b&&l(4,a=b.i1),"i2"in b&&l(5,u=b.i2),"i3"in b&&l(6,c=b.i3),"max"in b&&l(7,f=b.max)},t.$$.update=()=>{if(t.$$.dirty&254){let b=[],v=[];n>0&&(b.push({label:"L1"}),v.push(_(a))),i>0&&(b.push({label:"L2"}),v.push(_(u))),o>0&&(b.push({label:"L3"}),v.push(_(c))),l(0,p={padding:{top:20,right:15,bottom:20,left:35},y:{min:0,max:f,ticks:[{value:0,label:"0%"},{value:f/4,label:"25%"},{value:f/2,label:"50%"},{value:f/4*3,label:"75%"},{value:f,label:"100%"}]},x:{ticks:b},points:v})}},[p,n,i,o,a,u,c,f]}class vm extends Ee{constructor(e){super(),Pe(this,e,dm,_m,Ae,{u1:1,u2:2,u3:3,i1:4,i2:5,i3:6,max:7})}}function hm(t){let e,l,n,i,o,a,u,c=(typeof t[0]<"u"?t[0].toFixed(0):"-")+"",f,p,_,b,v,d,k=(typeof t[1]<"u"?t[1].toFixed(0):"-")+"",A,S,T,E,B,P,R,L=(typeof t[2]<"u"?t[2].toFixed(1):"-")+"",F,x,j,z,G,V,W=(typeof t[3]<"u"?t[3].toFixed(1):"-")+"",U,K;return{c(){e=m("div"),l=m("strong"),l.textContent="Reactive",n=h(),i=m("div"),o=m("div"),o.textContent="Instant in",a=h(),u=m("div"),f=$(c),p=$(" VAr"),_=h(),b=m("div"),b.textContent="Instant out",v=h(),d=m("div"),A=$(k),S=$(" VAr"),T=h(),E=m("div"),B=m("div"),B.textContent="Total in",P=h(),R=m("div"),F=$(L),x=$(" kVArh"),j=h(),z=m("div"),z.textContent="Total out",G=h(),V=m("div"),U=$(W),K=$(" kVArh"),r(u,"class","text-right"),r(d,"class","text-right"),r(i,"class","grid grid-cols-2 mt-4"),r(R,"class","text-right"),r(V,"class","text-right"),r(E,"class","grid grid-cols-2 mt-4"),r(e,"class","mx-2 text-sm")},m(H,Y){M(H,e,Y),s(e,l),s(e,n),s(e,i),s(i,o),s(i,a),s(i,u),s(u,f),s(u,p),s(i,_),s(i,b),s(i,v),s(i,d),s(d,A),s(d,S),s(e,T),s(e,E),s(E,B),s(E,P),s(E,R),s(R,F),s(R,x),s(E,j),s(E,z),s(E,G),s(E,V),s(V,U),s(V,K)},p(H,[Y]){Y&1&&c!==(c=(typeof H[0]<"u"?H[0].toFixed(0):"-")+"")&&Z(f,c),Y&2&&k!==(k=(typeof H[1]<"u"?H[1].toFixed(0):"-")+"")&&Z(A,k),Y&4&&L!==(L=(typeof H[2]<"u"?H[2].toFixed(1):"-")+"")&&Z(F,L),Y&8&&W!==(W=(typeof H[3]<"u"?H[3].toFixed(1):"-")+"")&&Z(U,W)},i:fe,o:fe,d(H){H&&C(e)}}}function bm(t,e,l){let{importInstant:n}=e,{exportInstant:i}=e,{importTotal:o}=e,{exportTotal:a}=e;return t.$$set=u=>{"importInstant"in u&&l(0,n=u.importInstant),"exportInstant"in u&&l(1,i=u.exportInstant),"importTotal"in u&&l(2,o=u.importTotal),"exportTotal"in u&&l(3,a=u.exportTotal)},[n,i,o,a]}class gm extends Ee{constructor(e){super(),Pe(this,e,bm,hm,Ae,{importInstant:0,exportInstant:1,importTotal:2,exportTotal:3})}}function Eu(t){let e;function l(o,a){return o[3]?wm:km}let n=l(t),i=n(t);return{c(){i.c(),e=Ge()},m(o,a){i.m(o,a),M(o,e,a)},p(o,a){n===(n=l(o))&&i?i.p(o,a):(i.d(1),i=n(o),i&&(i.c(),i.m(e.parentNode,e)))},d(o){i.d(o),o&&C(e)}}}function km(t){let e,l,n,i,o,a,u=ge(t[1].h.u,2)+"",c,f,p,_,b,v,d=ge(t[1].d.u,1)+"",k,A,S,T,E,B,P=ge(t[1].m.u)+"",R,L,F,x,j,z,G=ge(t[0].last_month.u)+"",V,W,U,K,H=t[4]&&Du(t);return{c(){e=m("strong"),e.textContent="Consumption",l=h(),n=m("div"),i=m("div"),i.textContent="Hour",o=h(),a=m("div"),c=$(u),f=$(" kWh"),p=h(),_=m("div"),_.textContent="Day",b=h(),v=m("div"),k=$(d),A=$(" kWh"),S=h(),T=m("div"),T.textContent="Month",E=h(),B=m("div"),R=$(P),L=$(" kWh"),F=h(),x=m("div"),x.textContent="Last month",j=h(),z=m("div"),V=$(G),W=$(" kWh"),U=h(),H&&H.c(),K=Ge(),r(a,"class","text-right"),r(v,"class","text-right"),r(B,"class","text-right"),r(z,"class","text-right"),r(n,"class","grid grid-cols-2 mb-3")},m(Y,X){M(Y,e,X),M(Y,l,X),M(Y,n,X),s(n,i),s(n,o),s(n,a),s(a,c),s(a,f),s(n,p),s(n,_),s(n,b),s(n,v),s(v,k),s(v,A),s(n,S),s(n,T),s(n,E),s(n,B),s(B,R),s(B,L),s(n,F),s(n,x),s(n,j),s(n,z),s(z,V),s(z,W),M(Y,U,X),H&&H.m(Y,X),M(Y,K,X)},p(Y,X){X&2&&u!==(u=ge(Y[1].h.u,2)+"")&&Z(c,u),X&2&&d!==(d=ge(Y[1].d.u,1)+"")&&Z(k,d),X&2&&P!==(P=ge(Y[1].m.u)+"")&&Z(R,P),X&1&&G!==(G=ge(Y[0].last_month.u)+"")&&Z(V,G),Y[4]?H?H.p(Y,X):(H=Du(Y),H.c(),H.m(K.parentNode,K)):H&&(H.d(1),H=null)},d(Y){Y&&C(e),Y&&C(l),Y&&C(n),Y&&C(U),H&&H.d(Y),Y&&C(K)}}}function wm(t){let e,l,n,i,o,a,u=ge(t[1].h.u,2)+"",c,f,p,_,b,v,d,k=ge(t[1].d.u,1)+"",A,S,T,E,B,P,R,L=ge(t[1].m.u)+"",F,x,j,z,G,V,W,U=ge(t[0].last_month.u)+"",K,H,Y,X,re,ue,we,me,Se,je,Oe,He=ge(t[1].h.p,2)+"",ye,Ne,Re,$e,y,g,w,N=ge(t[1].d.p,1)+"",I,Q,J,se,ce,ve,Te,oe=ge(t[1].m.p)+"",pe,Be,_e,Ce,vt,Hl,tl,ct=ge(t[0].last_month.p)+"",Tl,pl,Ut,ht,Ye=t[4]&&Iu(t),Qe=t[4]&&Ou(t),Xe=t[4]&&Ru(t),Ue=t[4]&&Lu(t),Ze=t[4]&&Fu(t),We=t[4]&&qu(t),Je=t[4]&&Bu(t),xe=t[4]&&Uu(t);return{c(){e=m("strong"),e.textContent="Import",l=h(),n=m("div"),i=m("div"),i.textContent="Hour",o=h(),a=m("div"),c=$(u),f=$(" kWh"),p=h(),Ye&&Ye.c(),_=h(),b=m("div"),b.textContent="Day",v=h(),d=m("div"),A=$(k),S=$(" kWh"),T=h(),Qe&&Qe.c(),E=h(),B=m("div"),B.textContent="Month",P=h(),R=m("div"),F=$(L),x=$(" kWh"),j=h(),Xe&&Xe.c(),z=h(),G=m("div"),G.textContent="Last mo.",V=h(),W=m("div"),K=$(U),H=$(" kWh"),Y=h(),Ue&&Ue.c(),re=h(),ue=m("strong"),ue.textContent="Export",we=h(),me=m("div"),Se=m("div"),Se.textContent="Hour",je=h(),Oe=m("div"),ye=$(He),Ne=$(" kWh"),Re=h(),Ze&&Ze.c(),$e=h(),y=m("div"),y.textContent="Day",g=h(),w=m("div"),I=$(N),Q=$(" kWh"),J=h(),We&&We.c(),se=h(),ce=m("div"),ce.textContent="Month",ve=h(),Te=m("div"),pe=$(oe),Be=$(" kWh"),_e=h(),Je&&Je.c(),Ce=h(),vt=m("div"),vt.textContent="Last mo.",Hl=h(),tl=m("div"),Tl=$(ct),pl=$(" kWh"),Ut=h(),xe&&xe.c(),r(a,"class","text-right"),r(d,"class","text-right"),r(R,"class","text-right"),r(W,"class","text-right"),r(n,"class",X="grid grid-cols-"+t[5]+" mb-3"),r(Oe,"class","text-right"),r(w,"class","text-right"),r(Te,"class","text-right"),r(tl,"class","text-right"),r(me,"class",ht="grid grid-cols-"+t[5])},m(de,Me){M(de,e,Me),M(de,l,Me),M(de,n,Me),s(n,i),s(n,o),s(n,a),s(a,c),s(a,f),s(n,p),Ye&&Ye.m(n,null),s(n,_),s(n,b),s(n,v),s(n,d),s(d,A),s(d,S),s(n,T),Qe&&Qe.m(n,null),s(n,E),s(n,B),s(n,P),s(n,R),s(R,F),s(R,x),s(n,j),Xe&&Xe.m(n,null),s(n,z),s(n,G),s(n,V),s(n,W),s(W,K),s(W,H),s(n,Y),Ue&&Ue.m(n,null),M(de,re,Me),M(de,ue,Me),M(de,we,Me),M(de,me,Me),s(me,Se),s(me,je),s(me,Oe),s(Oe,ye),s(Oe,Ne),s(me,Re),Ze&&Ze.m(me,null),s(me,$e),s(me,y),s(me,g),s(me,w),s(w,I),s(w,Q),s(me,J),We&&We.m(me,null),s(me,se),s(me,ce),s(me,ve),s(me,Te),s(Te,pe),s(Te,Be),s(me,_e),Je&&Je.m(me,null),s(me,Ce),s(me,vt),s(me,Hl),s(me,tl),s(tl,Tl),s(tl,pl),s(me,Ut),xe&&xe.m(me,null)},p(de,Me){Me&2&&u!==(u=ge(de[1].h.u,2)+"")&&Z(c,u),de[4]?Ye?Ye.p(de,Me):(Ye=Iu(de),Ye.c(),Ye.m(n,_)):Ye&&(Ye.d(1),Ye=null),Me&2&&k!==(k=ge(de[1].d.u,1)+"")&&Z(A,k),de[4]?Qe?Qe.p(de,Me):(Qe=Ou(de),Qe.c(),Qe.m(n,E)):Qe&&(Qe.d(1),Qe=null),Me&2&&L!==(L=ge(de[1].m.u)+"")&&Z(F,L),de[4]?Xe?Xe.p(de,Me):(Xe=Ru(de),Xe.c(),Xe.m(n,z)):Xe&&(Xe.d(1),Xe=null),Me&1&&U!==(U=ge(de[0].last_month.u)+"")&&Z(K,U),de[4]?Ue?Ue.p(de,Me):(Ue=Lu(de),Ue.c(),Ue.m(n,null)):Ue&&(Ue.d(1),Ue=null),Me&32&&X!==(X="grid grid-cols-"+de[5]+" mb-3")&&r(n,"class",X),Me&2&&He!==(He=ge(de[1].h.p,2)+"")&&Z(ye,He),de[4]?Ze?Ze.p(de,Me):(Ze=Fu(de),Ze.c(),Ze.m(me,$e)):Ze&&(Ze.d(1),Ze=null),Me&2&&N!==(N=ge(de[1].d.p,1)+"")&&Z(I,N),de[4]?We?We.p(de,Me):(We=qu(de),We.c(),We.m(me,se)):We&&(We.d(1),We=null),Me&2&&oe!==(oe=ge(de[1].m.p)+"")&&Z(pe,oe),de[4]?Je?Je.p(de,Me):(Je=Bu(de),Je.c(),Je.m(me,Ce)):Je&&(Je.d(1),Je=null),Me&1&&ct!==(ct=ge(de[0].last_month.p)+"")&&Z(Tl,ct),de[4]?xe?xe.p(de,Me):(xe=Uu(de),xe.c(),xe.m(me,null)):xe&&(xe.d(1),xe=null),Me&32&&ht!==(ht="grid grid-cols-"+de[5])&&r(me,"class",ht)},d(de){de&&C(e),de&&C(l),de&&C(n),Ye&&Ye.d(),Qe&&Qe.d(),Xe&&Xe.d(),Ue&&Ue.d(),de&&C(re),de&&C(ue),de&&C(we),de&&C(me),Ze&&Ze.d(),We&&We.d(),Je&&Je.d(),xe&&xe.d()}}}function Du(t){let e,l,n,i,o,a,u=ge(t[1].h.c,2)+"",c,f,p,_,b,v,d,k=ge(t[1].d.c,1)+"",A,S,T,E,B,P,R,L=ge(t[1].m.c)+"",F,x,j,z,G,V,W,U=ge(t[0].last_month.c)+"",K,H,Y;return{c(){e=m("strong"),e.textContent="Cost",l=h(),n=m("div"),i=m("div"),i.textContent="Hour",o=h(),a=m("div"),c=$(u),f=h(),p=$(t[2]),_=h(),b=m("div"),b.textContent="Day",v=h(),d=m("div"),A=$(k),S=h(),T=$(t[2]),E=h(),B=m("div"),B.textContent="Month",P=h(),R=m("div"),F=$(L),x=h(),j=$(t[2]),z=h(),G=m("div"),G.textContent="Last month",V=h(),W=m("div"),K=$(U),H=h(),Y=$(t[2]),r(a,"class","text-right"),r(d,"class","text-right"),r(R,"class","text-right"),r(W,"class","text-right"),r(n,"class","grid grid-cols-2")},m(X,re){M(X,e,re),M(X,l,re),M(X,n,re),s(n,i),s(n,o),s(n,a),s(a,c),s(a,f),s(a,p),s(n,_),s(n,b),s(n,v),s(n,d),s(d,A),s(d,S),s(d,T),s(n,E),s(n,B),s(n,P),s(n,R),s(R,F),s(R,x),s(R,j),s(n,z),s(n,G),s(n,V),s(n,W),s(W,K),s(W,H),s(W,Y)},p(X,re){re&2&&u!==(u=ge(X[1].h.c,2)+"")&&Z(c,u),re&4&&Z(p,X[2]),re&2&&k!==(k=ge(X[1].d.c,1)+"")&&Z(A,k),re&4&&Z(T,X[2]),re&2&&L!==(L=ge(X[1].m.c)+"")&&Z(F,L),re&4&&Z(j,X[2]),re&1&&U!==(U=ge(X[0].last_month.c)+"")&&Z(K,U),re&4&&Z(Y,X[2])},d(X){X&&C(e),X&&C(l),X&&C(n)}}}function Iu(t){let e,l=ge(t[1].h.c,2)+"",n,i,o;return{c(){e=m("div"),n=$(l),i=h(),o=$(t[2]),r(e,"class","text-right")},m(a,u){M(a,e,u),s(e,n),s(e,i),s(e,o)},p(a,u){u&2&&l!==(l=ge(a[1].h.c,2)+"")&&Z(n,l),u&4&&Z(o,a[2])},d(a){a&&C(e)}}}function Ou(t){let e,l=ge(t[1].d.c,1)+"",n,i,o;return{c(){e=m("div"),n=$(l),i=h(),o=$(t[2]),r(e,"class","text-right")},m(a,u){M(a,e,u),s(e,n),s(e,i),s(e,o)},p(a,u){u&2&&l!==(l=ge(a[1].d.c,1)+"")&&Z(n,l),u&4&&Z(o,a[2])},d(a){a&&C(e)}}}function Ru(t){let e,l=ge(t[1].m.c)+"",n,i,o;return{c(){e=m("div"),n=$(l),i=h(),o=$(t[2]),r(e,"class","text-right")},m(a,u){M(a,e,u),s(e,n),s(e,i),s(e,o)},p(a,u){u&2&&l!==(l=ge(a[1].m.c)+"")&&Z(n,l),u&4&&Z(o,a[2])},d(a){a&&C(e)}}}function Lu(t){let e,l=ge(t[0].last_month.c)+"",n,i,o;return{c(){e=m("div"),n=$(l),i=h(),o=$(t[2]),r(e,"class","text-right")},m(a,u){M(a,e,u),s(e,n),s(e,i),s(e,o)},p(a,u){u&1&&l!==(l=ge(a[0].last_month.c)+"")&&Z(n,l),u&4&&Z(o,a[2])},d(a){a&&C(e)}}}function Fu(t){let e,l=ge(t[1].h.i,2)+"",n,i,o;return{c(){e=m("div"),n=$(l),i=h(),o=$(t[2]),r(e,"class","text-right")},m(a,u){M(a,e,u),s(e,n),s(e,i),s(e,o)},p(a,u){u&2&&l!==(l=ge(a[1].h.i,2)+"")&&Z(n,l),u&4&&Z(o,a[2])},d(a){a&&C(e)}}}function qu(t){let e,l=ge(t[1].d.i,1)+"",n,i,o;return{c(){e=m("div"),n=$(l),i=h(),o=$(t[2]),r(e,"class","text-right")},m(a,u){M(a,e,u),s(e,n),s(e,i),s(e,o)},p(a,u){u&2&&l!==(l=ge(a[1].d.i,1)+"")&&Z(n,l),u&4&&Z(o,a[2])},d(a){a&&C(e)}}}function Bu(t){let e,l=ge(t[1].m.i)+"",n,i,o;return{c(){e=m("div"),n=$(l),i=h(),o=$(t[2]),r(e,"class","text-right")},m(a,u){M(a,e,u),s(e,n),s(e,i),s(e,o)},p(a,u){u&2&&l!==(l=ge(a[1].m.i)+"")&&Z(n,l),u&4&&Z(o,a[2])},d(a){a&&C(e)}}}function Uu(t){let e,l=ge(t[0].last_month.i)+"",n,i,o;return{c(){e=m("div"),n=$(l),i=h(),o=$(t[2]),r(e,"class","text-right")},m(a,u){M(a,e,u),s(e,n),s(e,i),s(e,o)},p(a,u){u&1&&l!==(l=ge(a[0].last_month.i)+"")&&Z(n,l),u&4&&Z(o,a[2])},d(a){a&&C(e)}}}function ym(t){let e,l,n,i,o,a,u=t[1]&&Eu(t);return{c(){e=m("div"),l=m("strong"),l.textContent="Real time calculation",n=h(),i=m("br"),o=m("br"),a=h(),u&&u.c(),r(e,"class","mx-2 text-sm")},m(c,f){M(c,e,f),s(e,l),s(e,n),s(e,i),s(e,o),s(e,a),u&&u.m(e,null)},p(c,[f]){c[1]?u?u.p(c,f):(u=Eu(c),u.c(),u.m(e,null)):u&&(u.d(1),u=null)},i:fe,o:fe,d(c){c&&C(e),u&&u.d()}}}function Cm(t,e,l){let{sysinfo:n}=e,{data:i}=e,{currency:o}=e,{hasExport:a}=e,u=!1,c=3;return t.$$set=f=>{"sysinfo"in f&&l(0,n=f.sysinfo),"data"in f&&l(1,i=f.data),"currency"in f&&l(2,o=f.currency),"hasExport"in f&&l(3,a=f.hasExport)},t.$$.update=()=>{t.$$.dirty&18&&(l(4,u=i&&i.h&&(Math.abs(i.h.c)>.01||Math.abs(i.d.c)>.01||Math.abs(i.m.c)>.01||Math.abs(i.h.i)>.01||Math.abs(i.d.i)>.01||Math.abs(i.m.i)>.01)),l(5,c=u?3:2))},[n,i,o,a,u,c]}class Mm extends Ee{constructor(e){super(),Pe(this,e,Cm,ym,Ae,{sysinfo:0,data:1,currency:2,hasExport:3})}}function $m(t){let e,l,n,i;return n=new dn({props:{config:t[0]}}),{c(){e=m("a"),e.textContent="Provided by ENTSO-E",l=h(),ie(n.$$.fragment),r(e,"href","https://transparency.entsoe.eu/"),r(e,"target","_blank"),r(e,"class","text-xs float-right z-40")},m(o,a){M(o,e,a),M(o,l,a),le(n,o,a),i=!0},p(o,[a]){const u={};a&1&&(u.config=o[0]),n.$set(u)},i(o){i||(D(n.$$.fragment,o),i=!0)},o(o){q(n.$$.fragment,o),i=!1},d(o){o&&C(e),o&&C(l),ne(n,o)}}}function Tm(t,e,l){let{json:n}=e,{sysinfo:i}=e,o={},a,u;return t.$$set=c=>{"json"in c&&l(1,n=c.json),"sysinfo"in c&&l(2,i=c.sysinfo)},t.$$.update=()=>{if(t.$$.dirty&30){let c=n.currency,f=new Date().getUTCHours(),p=0,_=0,b=0,v=[],d=[],k=[];l(4,u=l(3,a=0));let A=new Date;for(fl(A,i.clock_offset-(24+A.getHours()-A.getUTCHours())%24),p=f;p<24&&(_=n[Le(b++)],_!=null);p++)d.push({label:Le(A.getHours())}),k.push(_*100),l(4,u=Math.min(u,_*100)),l(3,a=Math.max(a,_*100)),fl(A,1);for(p=0;p<24&&(_=n[Le(b++)],_!=null);p++)d.push({label:Le(A.getHours())}),k.push(_*100),l(4,u=Math.min(u,_*100)),l(3,a=Math.max(a,_*100)),fl(A,1);if(u>-100&&a<100){switch(c){case"NOK":case"SEK":case"DKK":c="øre";break;case"EUR":c="cent";break;default:c=c+"/100"}for(l(4,u*=100),l(3,a*=100),p=0;p=0?P.toFixed(R):"",title:P>=0?P.toFixed(2)+" "+c:"",value:_>=0?Math.abs(_):0,label2:P<0?P.toFixed(R):"",title2:P<0?P.toFixed(2)+" "+c:"",value2:_<0?Math.abs(_):0,color:"#7c3aed"})}let T=Math.max(a,Math.abs(u));if(u<0){l(4,u=Math.min(T/4*-1,u));let P=Math.ceil(Math.abs(u)/T*4),R=u/P;for(p=1;p{"json"in c&&l(1,n=c.json),"sysinfo"in c&&l(2,i=c.sysinfo)},t.$$.update=()=>{if(t.$$.dirty&30){let c=0,f=[],p=[],_=[];l(4,u=l(3,a=0));let b=fl(new Date,-24),v=new Date().getUTCHours();for(fl(b,i.clock_offset-(24+b.getHours()-b.getUTCHours())%24),c=v;c<24;c++){let S=n["i"+Le(c)],T=n["e"+Le(c)];S===void 0&&(S=0),T===void 0&&(T=0),p.push({label:Le(b.getHours())}),_.push({label:S.toFixed(1),title:S.toFixed(2)+" kWh",value:S*10,label2:T.toFixed(1),title2:T.toFixed(2)+" kWh",value2:T*10,color:"#7c3aed",color2:"#37829E"}),l(4,u=Math.max(u,T*10)),l(3,a=Math.max(a,S*10)),fl(b,1)}for(c=0;c{"json"in c&&l(1,n=c.json),"sysinfo"in c&&l(2,i=c.sysinfo)},t.$$.update=()=>{if(t.$$.dirty&30){let c=0,f=[],p=[],_=[];l(4,u=l(3,a=0));let b=new Date,v=new Date;for(fl(b,i.clock_offset-(24+b.getHours()-b.getUTCHours())%24),fl(v,i.clock_offset-(24+v.getHours()-v.getUTCHours())%24),v.setDate(0),c=b.getDate();c<=v.getDate();c++){let S=n["i"+Le(c)],T=n["e"+Le(c)];S===void 0&&(S=0),T===void 0&&(T=0),p.push({label:Le(c)}),_.push({label:S.toFixed(S<10?1:0),title:S.toFixed(2)+" kWh",value:S,label2:T.toFixed(T<10?1:0),title2:T.toFixed(2)+" kWh",value2:T,color:"#7c3aed",color2:"#37829E"}),l(4,u=Math.max(u,T)),l(3,a=Math.max(a,S))}for(c=1;c{"json"in u&&l(1,n=u.json)},t.$$.update=()=>{if(t.$$.dirty&14){let u=0,c=0,f=[],p=[],_=[];n.s&&n.s.forEach((d,k)=>{var A=d.n?d.n:d.a;c=d.v,c==-127&&(c=0),p.push({label:A.slice(-4)}),_.push({label:c.toFixed(1),value:c,color:"#7c3aed"}),l(3,a=Math.min(a,c)),l(2,o=Math.max(o,c))}),l(2,o=Math.ceil(o)),l(3,a=Math.floor(a));let b=o;a<0&&(b+=Math.abs(a));let v=b/4;for(u=0;u<5;u++)c=a+v*u,f.push({value:c,label:c.toFixed(1)});l(0,i={title:"Temperature sensors (°C)",height:226,width:1520,padding:{top:20,right:15,bottom:20,left:35},y:{min:a,max:o,ticks:f},x:{ticks:p},points:_})}},[i,n,o,a]}class Lm extends Ee{constructor(e){super(),Pe(this,e,Rm,Om,Ae,{json:1})}}function Fm(t){let e,l;return e=new dn({props:{config:t[0]}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p(n,[i]){const o={};i&1&&(o.config=n[0]),e.$set(o)},i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}let qm=0;function Bm(t,e,l){let n={},i=0,o;return Gc.subscribe(a=>{l(2,o=a)}),zc(),t.$$.update=()=>{if(t.$$.dirty&6){let a=0,u=[],c=[],f=[];if(u.push({value:0,label:0}),o&&o.p)for(a=0;a0?Le(p.d)+"."+oo[new Date().getMonth()]:"-"}),l(1,i=Math.max(i,p.v))}if(o&&o.t){for(a=0;a=i)break;u.push({value:p,label:p})}u.push({label:o.m.toFixed(1),align:"right",color:"green",value:o.m})}o&&o.c&&(u.push({label:o.c.toFixed(0),color:"orange",value:o.c}),l(1,i=Math.max(i,o.c))),l(1,i=Math.ceil(i)),l(0,n={title:"Tariff peaks",padding:{top:20,right:35,bottom:20,left:35},y:{min:qm,max:i,ticks:u},x:{ticks:c},points:f})}},[n,i,o]}class Um extends Ee{constructor(e){super(),Pe(this,e,Bm,Fm,Ae,{})}}function ju(t){let e,l,n,i,o,a,u=(t[0].mt?Ss(t[0].mt):"-")+"",c,f,p,_=(t[0].ic?t[0].ic.toFixed(1):"-")+"",b,v,d;return i=new Xc({props:{val:t[0].i?t[0].i:0,max:t[0].im?t[0].im:15e3,unit:"W",label:"Import",sub:t[0].p,subunit:t[0].pc,colorFn:Fc}}),{c(){e=m("div"),l=m("div"),n=m("div"),ie(i.$$.fragment),o=h(),a=m("div"),c=$(u),f=h(),p=m("div"),b=$(_),v=$(" kWh"),r(n,"class","col-span-2"),r(p,"class","text-right"),r(l,"class","grid grid-cols-2"),r(e,"class","cnt")},m(k,A){M(k,e,A),s(e,l),s(l,n),le(i,n,null),s(l,o),s(l,a),s(a,c),s(l,f),s(l,p),s(p,b),s(p,v),d=!0},p(k,A){const S={};A&1&&(S.val=k[0].i?k[0].i:0),A&1&&(S.max=k[0].im?k[0].im:15e3),A&1&&(S.sub=k[0].p),A&1&&(S.subunit=k[0].pc),i.$set(S),(!d||A&1)&&u!==(u=(k[0].mt?Ss(k[0].mt):"-")+"")&&Z(c,u),(!d||A&1)&&_!==(_=(k[0].ic?k[0].ic.toFixed(1):"-")+"")&&Z(b,_)},i(k){d||(D(i.$$.fragment,k),d=!0)},o(k){q(i.$$.fragment,k),d=!1},d(k){k&&C(e),ne(i)}}}function Hu(t){let e,l,n,i,o,a,u,c,f=(t[0].ec?t[0].ec.toFixed(1):"-")+"",p,_,b;return i=new Xc({props:{val:t[0].e?t[0].e:0,max:t[0].om?t[0].om*1e3:1e4,unit:"W",label:"Export",colorFn:C1}}),{c(){e=m("div"),l=m("div"),n=m("div"),ie(i.$$.fragment),o=h(),a=m("div"),u=h(),c=m("div"),p=$(f),_=$(" kWh"),r(n,"class","col-span-2"),r(c,"class","text-right"),r(l,"class","grid grid-cols-2"),r(e,"class","cnt")},m(v,d){M(v,e,d),s(e,l),s(l,n),le(i,n,null),s(l,o),s(l,a),s(l,u),s(l,c),s(c,p),s(c,_),b=!0},p(v,d){const k={};d&1&&(k.val=v[0].e?v[0].e:0),d&1&&(k.max=v[0].om?v[0].om*1e3:1e4),i.$set(k),(!b||d&1)&&f!==(f=(v[0].ec?v[0].ec.toFixed(1):"-")+"")&&Z(p,f)},i(v){b||(D(i.$$.fragment,v),b=!0)},o(v){q(i.$$.fragment,v),b=!1},d(v){v&&C(e),ne(i)}}}function Wu(t){let e,l,n;return l=new pm({props:{u1:t[0].u1,u2:t[0].u2,u3:t[0].u3,ds:t[0].ds}}),{c(){e=m("div"),ie(l.$$.fragment),r(e,"class","cnt")},m(i,o){M(i,e,o),le(l,e,null),n=!0},p(i,o){const a={};o&1&&(a.u1=i[0].u1),o&1&&(a.u2=i[0].u2),o&1&&(a.u3=i[0].u3),o&1&&(a.ds=i[0].ds),l.$set(a)},i(i){n||(D(l.$$.fragment,i),n=!0)},o(i){q(l.$$.fragment,i),n=!1},d(i){i&&C(e),ne(l)}}}function zu(t){let e,l,n;return l=new vm({props:{u1:t[0].u1,u2:t[0].u2,u3:t[0].u3,i1:t[0].i1,i2:t[0].i2,i3:t[0].i3,max:t[0].mf?t[0].mf:32}}),{c(){e=m("div"),ie(l.$$.fragment),r(e,"class","cnt")},m(i,o){M(i,e,o),le(l,e,null),n=!0},p(i,o){const a={};o&1&&(a.u1=i[0].u1),o&1&&(a.u2=i[0].u2),o&1&&(a.u3=i[0].u3),o&1&&(a.i1=i[0].i1),o&1&&(a.i2=i[0].i2),o&1&&(a.i3=i[0].i3),o&1&&(a.max=i[0].mf?i[0].mf:32),l.$set(a)},i(i){n||(D(l.$$.fragment,i),n=!0)},o(i){q(l.$$.fragment,i),n=!1},d(i){i&&C(e),ne(l)}}}function Gu(t){let e,l,n;return l=new gm({props:{importInstant:t[0].ri,exportInstant:t[0].re,importTotal:t[0].ric,exportTotal:t[0].rec}}),{c(){e=m("div"),ie(l.$$.fragment),r(e,"class","cnt")},m(i,o){M(i,e,o),le(l,e,null),n=!0},p(i,o){const a={};o&1&&(a.importInstant=i[0].ri),o&1&&(a.exportInstant=i[0].re),o&1&&(a.importTotal=i[0].ric),o&1&&(a.exportTotal=i[0].rec),l.$set(a)},i(i){n||(D(l.$$.fragment,i),n=!0)},o(i){q(l.$$.fragment,i),n=!1},d(i){i&&C(e),ne(l)}}}function Vu(t){let e,l,n;return l=new Mm({props:{sysinfo:t[1],data:t[0].ea,currency:t[0].pc,hasExport:t[0].om>0||t[0].e>0}}),{c(){e=m("div"),ie(l.$$.fragment),r(e,"class","cnt")},m(i,o){M(i,e,o),le(l,e,null),n=!0},p(i,o){const a={};o&2&&(a.sysinfo=i[1]),o&1&&(a.data=i[0].ea),o&1&&(a.currency=i[0].pc),o&1&&(a.hasExport=i[0].om>0||i[0].e>0),l.$set(a)},i(i){n||(D(l.$$.fragment,i),n=!0)},o(i){q(l.$$.fragment,i),n=!1},d(i){i&&C(e),ne(l)}}}function Ku(t){let e,l,n;return l=new Um({}),{c(){e=m("div"),ie(l.$$.fragment),r(e,"class","cnt h-64")},m(i,o){M(i,e,o),le(l,e,null),n=!0},i(i){n||(D(l.$$.fragment,i),n=!0)},o(i){q(l.$$.fragment,i),n=!1},d(i){i&&C(e),ne(l)}}}function Yu(t){let e,l,n;return l=new Sm({props:{json:t[2],sysinfo:t[1]}}),{c(){e=m("div"),ie(l.$$.fragment),r(e,"class","cnt gwf")},m(i,o){M(i,e,o),le(l,e,null),n=!0},p(i,o){const a={};o&4&&(a.json=i[2]),o&2&&(a.sysinfo=i[1]),l.$set(a)},i(i){n||(D(l.$$.fragment,i),n=!0)},o(i){q(l.$$.fragment,i),n=!1},d(i){i&&C(e),ne(l)}}}function Qu(t){let e,l,n;return l=new Pm({props:{json:t[3],sysinfo:t[1]}}),{c(){e=m("div"),ie(l.$$.fragment),r(e,"class","cnt gwf")},m(i,o){M(i,e,o),le(l,e,null),n=!0},p(i,o){const a={};o&8&&(a.json=i[3]),o&2&&(a.sysinfo=i[1]),l.$set(a)},i(i){n||(D(l.$$.fragment,i),n=!0)},o(i){q(l.$$.fragment,i),n=!1},d(i){i&&C(e),ne(l)}}}function Xu(t){let e,l,n;return l=new Im({props:{json:t[4],sysinfo:t[1]}}),{c(){e=m("div"),ie(l.$$.fragment),r(e,"class","cnt gwf")},m(i,o){M(i,e,o),le(l,e,null),n=!0},p(i,o){const a={};o&16&&(a.json=i[4]),o&2&&(a.sysinfo=i[1]),l.$set(a)},i(i){n||(D(l.$$.fragment,i),n=!0)},o(i){q(l.$$.fragment,i),n=!1},d(i){i&&C(e),ne(l)}}}function Zu(t){let e,l,n;return l=new Lm({props:{json:t[5]}}),{c(){e=m("div"),ie(l.$$.fragment),r(e,"class","cnt gwf")},m(i,o){M(i,e,o),le(l,e,null),n=!0},p(i,o){const a={};o&32&&(a.json=i[5]),l.$set(a)},i(i){n||(D(l.$$.fragment,i),n=!0)},o(i){q(l.$$.fragment,i),n=!1},d(i){i&&C(e),ne(l)}}}function jm(t){let e,l=Ve(t[1].ui.i,t[0].i),n,i=Ve(t[1].ui.e,t[0].om||t[0].e>0),o,a=Ve(t[1].ui.v,t[0].u1>100||t[0].u2>100||t[0].u3>100),u,c=Ve(t[1].ui.a,t[0].i1>.01||t[0].i2>.01||t[0].i3>.01),f,p=Ve(t[1].ui.r,t[0].ri>0||t[0].re>0||t[0].ric>0||t[0].rec>0),_,b=Ve(t[1].ui.c,t[0].ea),v,d=Ve(t[1].ui.t,t[0].pr&&(t[0].pr.startsWith("10YNO")||t[0].pr=="10Y1001A1001A48H")),k,A=Ve(t[1].ui.p,t[0].pe&&!Number.isNaN(t[0].p)),S,T=Ve(t[1].ui.d,t[3]),E,B=Ve(t[1].ui.m,t[4]),P,R=Ve(t[1].ui.s,t[0].t&&t[0].t!=-127&&t[5].c>1),L,F=l&&ju(t),x=i&&Hu(t),j=a&&Wu(t),z=c&&zu(t),G=p&&Gu(t),V=b&&Vu(t),W=d&&Ku(),U=A&&Yu(t),K=T&&Qu(t),H=B&&Xu(t),Y=R&&Zu(t);return{c(){e=m("div"),F&&F.c(),n=h(),x&&x.c(),o=h(),j&&j.c(),u=h(),z&&z.c(),f=h(),G&&G.c(),_=h(),V&&V.c(),v=h(),W&&W.c(),k=h(),U&&U.c(),S=h(),K&&K.c(),E=h(),H&&H.c(),P=h(),Y&&Y.c(),r(e,"class","grid 2xl:grid-cols-6 xl:grid-cols-5 lg:grid-cols-4 md:grid-cols-3 sm:grid-cols-2")},m(X,re){M(X,e,re),F&&F.m(e,null),s(e,n),x&&x.m(e,null),s(e,o),j&&j.m(e,null),s(e,u),z&&z.m(e,null),s(e,f),G&&G.m(e,null),s(e,_),V&&V.m(e,null),s(e,v),W&&W.m(e,null),s(e,k),U&&U.m(e,null),s(e,S),K&&K.m(e,null),s(e,E),H&&H.m(e,null),s(e,P),Y&&Y.m(e,null),L=!0},p(X,[re]){re&3&&(l=Ve(X[1].ui.i,X[0].i)),l?F?(F.p(X,re),re&3&&D(F,1)):(F=ju(X),F.c(),D(F,1),F.m(e,n)):F&&(De(),q(F,1,1,()=>{F=null}),Ie()),re&3&&(i=Ve(X[1].ui.e,X[0].om||X[0].e>0)),i?x?(x.p(X,re),re&3&&D(x,1)):(x=Hu(X),x.c(),D(x,1),x.m(e,o)):x&&(De(),q(x,1,1,()=>{x=null}),Ie()),re&3&&(a=Ve(X[1].ui.v,X[0].u1>100||X[0].u2>100||X[0].u3>100)),a?j?(j.p(X,re),re&3&&D(j,1)):(j=Wu(X),j.c(),D(j,1),j.m(e,u)):j&&(De(),q(j,1,1,()=>{j=null}),Ie()),re&3&&(c=Ve(X[1].ui.a,X[0].i1>.01||X[0].i2>.01||X[0].i3>.01)),c?z?(z.p(X,re),re&3&&D(z,1)):(z=zu(X),z.c(),D(z,1),z.m(e,f)):z&&(De(),q(z,1,1,()=>{z=null}),Ie()),re&3&&(p=Ve(X[1].ui.r,X[0].ri>0||X[0].re>0||X[0].ric>0||X[0].rec>0)),p?G?(G.p(X,re),re&3&&D(G,1)):(G=Gu(X),G.c(),D(G,1),G.m(e,_)):G&&(De(),q(G,1,1,()=>{G=null}),Ie()),re&3&&(b=Ve(X[1].ui.c,X[0].ea)),b?V?(V.p(X,re),re&3&&D(V,1)):(V=Vu(X),V.c(),D(V,1),V.m(e,v)):V&&(De(),q(V,1,1,()=>{V=null}),Ie()),re&3&&(d=Ve(X[1].ui.t,X[0].pr&&(X[0].pr.startsWith("10YNO")||X[0].pr=="10Y1001A1001A48H"))),d?W?re&3&&D(W,1):(W=Ku(),W.c(),D(W,1),W.m(e,k)):W&&(De(),q(W,1,1,()=>{W=null}),Ie()),re&3&&(A=Ve(X[1].ui.p,X[0].pe&&!Number.isNaN(X[0].p))),A?U?(U.p(X,re),re&3&&D(U,1)):(U=Yu(X),U.c(),D(U,1),U.m(e,S)):U&&(De(),q(U,1,1,()=>{U=null}),Ie()),re&10&&(T=Ve(X[1].ui.d,X[3])),T?K?(K.p(X,re),re&10&&D(K,1)):(K=Qu(X),K.c(),D(K,1),K.m(e,E)):K&&(De(),q(K,1,1,()=>{K=null}),Ie()),re&18&&(B=Ve(X[1].ui.m,X[4])),B?H?(H.p(X,re),re&18&&D(H,1)):(H=Xu(X),H.c(),D(H,1),H.m(e,P)):H&&(De(),q(H,1,1,()=>{H=null}),Ie()),re&35&&(R=Ve(X[1].ui.s,X[0].t&&X[0].t!=-127&&X[5].c>1)),R?Y?(Y.p(X,re),re&35&&D(Y,1)):(Y=Zu(X),Y.c(),D(Y,1),Y.m(e,null)):Y&&(De(),q(Y,1,1,()=>{Y=null}),Ie())},i(X){L||(D(F),D(x),D(j),D(z),D(G),D(V),D(W),D(U),D(K),D(H),D(Y),L=!0)},o(X){q(F),q(x),q(j),q(z),q(G),q(V),q(W),q(U),q(K),q(H),q(Y),L=!1},d(X){X&&C(e),F&&F.d(),x&&x.d(),j&&j.d(),z&&z.d(),G&&G.d(),V&&V.d(),W&&W.d(),U&&U.d(),K&&K.d(),H&&H.d(),Y&&Y.d()}}}function Hm(t,e,l){let{data:n={}}=e,{sysinfo:i={}}=e,o={},a={},u={},c={};return To.subscribe(f=>{l(2,o=f)}),Uc.subscribe(f=>{l(3,a=f)}),jc.subscribe(f=>{l(4,u=f)}),Wc.subscribe(f=>{l(5,c=f)}),t.$$set=f=>{"data"in f&&l(0,n=f.data),"sysinfo"in f&&l(1,i=f.sysinfo)},[n,i,o,a,u,c]}class Wm extends Ee{constructor(e){super(),Pe(this,e,Hm,jm,Ae,{data:0,sysinfo:1})}}let po={};const $i=at(po);async function zm(){po=await(await fetch("/configuration.json")).json(),$i.set(po)}function Ju(t,e,l){const n=t.slice();return n[2]=e[l],n[4]=l,n}function Gm(t){let e;return{c(){e=m("option"),e.textContent="UART0",e.__value=3,e.value=e.__value},m(l,n){M(l,e,n)},d(l){l&&C(e)}}}function Vm(t){let e;return{c(){e=m("option"),e.textContent="UART0",e.__value=20,e.value=e.__value},m(l,n){M(l,e,n)},d(l){l&&C(e)}}}function xu(t){let e;return{c(){e=m("option"),e.textContent="UART2",e.__value=113,e.value=e.__value},m(l,n){M(l,e,n)},d(l){l&&C(e)}}}function ef(t){let e,l,n;return{c(){e=m("option"),e.textContent="UART1",l=h(),n=m("option"),n.textContent="UART2",e.__value=9,e.value=e.__value,n.__value=16,n.value=n.__value},m(i,o){M(i,e,o),M(i,l,o),M(i,n,o)},d(i){i&&C(e),i&&C(l),i&&C(n)}}}function tf(t){let e;return{c(){e=m("option"),e.textContent="UART1",e.__value=18,e.value=e.__value},m(l,n){M(l,e,n)},d(l){l&&C(e)}}}function lf(t){let e,l,n;return{c(){e=m("option"),l=$("GPIO"),n=$(t[4]),e.__value=t[4],e.value=e.__value},m(i,o){M(i,e,o),s(e,l),s(e,n)},d(i){i&&C(e)}}}function nf(t){let e,l=t[4]>3&&!(t[0]=="esp32"&&(t[4]==9||t[4]==16))&&!(t[0]=="esp32s2"&&t[4]==18)&&!(t[0]=="esp8266"&&(t[4]==3||t[4]==113))&&lf(t);return{c(){l&&l.c(),e=Ge()},m(n,i){l&&l.m(n,i),M(n,e,i)},p(n,i){n[4]>3&&!(n[0]=="esp32"&&(n[4]==9||n[4]==16))&&!(n[0]=="esp32s2"&&n[4]==18)&&!(n[0]=="esp8266"&&(n[4]==3||n[4]==113))?l||(l=lf(n),l.c(),l.m(e.parentNode,e)):l&&(l.d(1),l=null)},d(n){l&&l.d(n),n&&C(e)}}}function Km(t){let e,l,n,i,o;function a(d,k){return d[0]=="esp32c3"?Vm:Gm}let u=a(t),c=u(t),f=t[0]=="esp8266"&&xu(),p=(t[0]=="esp32"||t[0]=="esp32solo")&&ef(),_=t[0]=="esp32s2"&&tf(),b={length:t[1]+1},v=[];for(let d=0;d{"chip"in o&&l(0,n=o.chip)},t.$$.update=()=>{if(t.$$.dirty&1)switch(n){case"esp8266":l(1,i=16);break;case"esp32s2":l(1,i=44);break;case"esp32c3":l(1,i=19);break}},[n,i]}class Zc extends Ee{constructor(e){super(),Pe(this,e,Ym,Km,Ae,{chip:0})}}function sf(t){let e,l,n=t[1]&&of(t);return{c(){e=m("div"),l=m("div"),n&&n.c(),r(l,"class","fixed inset-0 bg-gray-500 bg-opacity-50 flex items-center justify-center"),r(e,"class","z-50"),r(e,"aria-modal","true")},m(i,o){M(i,e,o),s(e,l),n&&n.m(l,null)},p(i,o){i[1]?n?n.p(i,o):(n=of(i),n.c(),n.m(l,null)):n&&(n.d(1),n=null)},d(i){i&&C(e),n&&n.d()}}}function of(t){let e,l;return{c(){e=m("div"),l=$(t[1]),r(e,"class","bg-white m-2 p-3 rounded-md shadow-lg pb-4 text-gray-700 w-96")},m(n,i){M(n,e,i),s(e,l)},p(n,i){i&2&&Z(l,n[1])},d(n){n&&C(e)}}}function Qm(t){let e,l=t[0]&&sf(t);return{c(){l&&l.c(),e=Ge()},m(n,i){l&&l.m(n,i),M(n,e,i)},p(n,[i]){n[0]?l?l.p(n,i):(l=sf(n),l.c(),l.m(e.parentNode,e)):l&&(l.d(1),l=null)},i:fe,o:fe,d(n){l&&l.d(n),n&&C(e)}}}function Xm(t,e,l){let{active:n}=e,{message:i}=e;return t.$$set=o=>{"active"in o&&l(0,n=o.active),"message"in o&&l(1,i=o.message)},[n,i]}class Dt extends Ee{constructor(e){super(),Pe(this,e,Xm,Qm,Ae,{active:0,message:1})}}function rf(t,e,l){const n=t.slice();return n[1]=e[l],n}function af(t){let e,l,n=t[1]+"",i;return{c(){e=m("option"),l=$("Europe/"),i=$(n),e.__value="Europe/"+t[1],e.value=e.__value},m(o,a){M(o,e,a),s(e,l),s(e,i)},p:fe,d(o){o&&C(e)}}}function Zm(t){let e,l,n,i=t[0],o=[];for(let a=0;a>1&1,N=0;N0;g--)N[g]=N[g]?N[g-1]^P.EXPONENT[F._modN(P.LOG[N[g]]+y)]:N[g-1];N[0]=P.EXPONENT[F._modN(P.LOG[N[0]]+y)]}for(y=0;y<=w;y++)N[y]=P.LOG[N[y]]},_checkBadness:function(){var y,g,w,N,I,Q=0,J=this._badness,se=this.buffer,ce=this.width;for(I=0;Ice*ce;)oe-=ce*ce,Te++;for(Q+=Te*F.N4,N=0;N=J-2&&(y=J-2,I>9&&y--);var se=y;if(I>9){for(Q[se+2]=0,Q[se+3]=0;se--;)g=Q[se],Q[se+3]|=255&g<<4,Q[se+2]=g>>4;Q[2]|=255&y<<4,Q[1]=y>>4,Q[0]=64|y>>12}else{for(Q[se+1]=0,Q[se+2]=0;se--;)g=Q[se],Q[se+2]|=255&g<<4,Q[se+1]=g>>4;Q[1]|=255&y<<4,Q[0]=64|y>>4}for(se=y+3-(I<10);se=5&&(w+=F.N1+N[g]-5);for(g=3;gy||N[g-3]*3>=N[g]*4||N[g+3]*3>=N[g]*4)&&(w+=F.N3);return w},_finish:function(){this._stringBuffer=this.buffer.slice();var y,g,w=0,N=3e4;for(g=0;g<8&&(this._applyMask(g),y=this._checkBadness(),y>=1)N&1&&(I[Q-1-g+Q*8]=1,g<6?I[8+Q*g]=1:I[8+Q*(g+1)]=1);for(g=0;g<7;g++,N>>=1)N&1&&(I[8+Q*(Q-7+g)]=1,g?I[6-g+Q*8]=1:I[7+Q*8]=1)},_interleaveBlocks:function(){var y,g,w=this._dataBlock,N=this._ecc,I=this._eccBlock,Q=0,J=this._calculateMaxLength(),se=this._neccBlock1,ce=this._neccBlock2,ve=this._stringBuffer;for(y=0;y1)for(y=S.BLOCK[N],w=I-7;;){for(g=I-7;g>y-3&&(this._addAlignment(g,w),!(g6)for(y=L.BLOCK[Q-7],g=17,w=0;w<6;w++)for(N=0;N<3;N++,g--)1&(g>11?Q>>g-12:y>>g)?(I[5-w+J*(2-N+J-11)]=1,I[2-N+J-11+J*(5-w)]=1):(this._setMask(5-w,2-N+J-11),this._setMask(2-N+J-11,5-w))},_isMasked:function(y,g){var w=F._getMaskBit(y,g);return this._mask[w]===1},_pack:function(){var y,g,w,N=1,I=1,Q=this.width,J=Q-1,se=Q-1,ce=(this._dataBlock+this._eccBlock)*(this._neccBlock1+this._neccBlock2)+this._neccBlock2;for(g=0;gg&&(w=y,y=g,g=w),w=g,w+=g*g,w>>=1,w+=y,w},_modN:function(y){for(;y>=255;)y-=255,y=(y>>8)+(y&255);return y},N1:3,N2:3,N3:40,N4:10}),x=F,j=v.extend({draw:function(){this.element.src=this.qrious.toDataURL()},reset:function(){this.element.src=""},resize:function(){var y=this.element;y.width=y.height=this.qrious.size}}),z=j,G=_.extend(function(y,g,w,N){this.name=y,this.modifiable=!!g,this.defaultValue=w,this._valueTransformer=N},{transform:function(y){var g=this._valueTransformer;return typeof g=="function"?g(y,this):y}}),V=G,W=_.extend(null,{abs:function(y){return y!=null?Math.abs(y):null},hasOwn:function(y,g){return Object.prototype.hasOwnProperty.call(y,g)},noop:function(){},toUpperCase:function(y){return y!=null?y.toUpperCase():null}}),U=W,K=_.extend(function(y){this.options={},y.forEach(function(g){this.options[g.name]=g},this)},{exists:function(y){return this.options[y]!=null},get:function(y,g){return K._get(this.options[y],g)},getAll:function(y){var g,w=this.options,N={};for(g in w)U.hasOwn(w,g)&&(N[g]=K._get(w[g],y));return N},init:function(y,g,w){typeof w!="function"&&(w=U.noop);var N,I;for(N in this.options)U.hasOwn(this.options,N)&&(I=this.options[N],K._set(I,I.defaultValue,g),K._createAccessor(I,g,w));this._setAll(y,g,!0)},set:function(y,g,w){return this._set(y,g,w)},setAll:function(y,g){return this._setAll(y,g)},_set:function(y,g,w,N){var I=this.options[y];if(!I)throw new Error("Invalid option: "+y);if(!I.modifiable&&!N)throw new Error("Option cannot be modified: "+y);return K._set(I,g,w)},_setAll:function(y,g,w){if(!y)return!1;var N,I=!1;for(N in y)U.hasOwn(y,N)&&this._set(N,y[N],g,w)&&(I=!0);return I}},{_createAccessor:function(y,g,w){var N={get:function(){return K._get(y,g)}};y.modifiable&&(N.set=function(I){K._set(y,I,g)&&w(I,y)}),Object.defineProperty(g,y.name,N)},_get:function(y,g){return g["_"+y.name]},_set:function(y,g,w){var N="_"+y.name,I=w[N],Q=y.transform(g??y.defaultValue);return w[N]=Q,Q!==I}}),H=K,Y=_.extend(function(){this._services={}},{getService:function(y){var g=this._services[y];if(!g)throw new Error("Service is not being managed with name: "+y);return g},setService:function(y,g){if(this._services[y])throw new Error("Service is already managed with name: "+y);g&&(this._services[y]=g)}}),X=Y,re=new H([new V("background",!0,"white"),new V("backgroundAlpha",!0,1,U.abs),new V("element"),new V("foreground",!0,"black"),new V("foregroundAlpha",!0,1,U.abs),new V("level",!0,"L",U.toUpperCase),new V("mime",!0,"image/png"),new V("padding",!0,null,U.abs),new V("size",!0,100,U.abs),new V("value",!0,"")]),ue=new X,we=_.extend(function(y){re.init(y,this,this.update.bind(this));var g=re.get("element",this),w=ue.getService("element"),N=g&&w.isCanvas(g)?g:w.createCanvas(),I=g&&w.isImage(g)?g:w.createImage();this._canvasRenderer=new k(this,N,!0),this._imageRenderer=new z(this,I,I===g),this.update()},{get:function(){return re.getAll(this)},set:function(y){re.setAll(y,this)&&this.update()},toDataURL:function(y){return this.canvas.toDataURL(y||this.mime)},update:function(){var y=new x({level:this.level,value:this.value});this._canvasRenderer.render(y),this._imageRenderer.render(y)}},{use:function(y){ue.setService(y.getName(),y)}});Object.defineProperties(we.prototype,{canvas:{get:function(){return this._canvasRenderer.getElement()}},image:{get:function(){return this._imageRenderer.getElement()}}});var me=we,Se=me,je=_.extend({getName:function(){}}),Oe=je,He=Oe.extend({createCanvas:function(){},createImage:function(){},getName:function(){return"element"},isCanvas:function(y){},isImage:function(y){}}),ye=He,Ne=ye.extend({createCanvas:function(){return document.createElement("canvas")},createImage:function(){return document.createElement("img")},isCanvas:function(y){return y instanceof HTMLCanvasElement},isImage:function(y){return y instanceof HTMLImageElement}}),Re=Ne;Se.use(new Re);var $e=Se;return $e})})(xc);var ip=xc.exports;const sp=np(ip);function op(t){let e,l;return{c(){e=m("img"),to(e.src,l=t[2])||r(e,"src",l),r(e,"alt",t[0]),r(e,"class",t[1])},m(n,i){M(n,e,i)},p(n,[i]){i&4&&!to(e.src,l=n[2])&&r(e,"src",l),i&1&&r(e,"alt",n[0]),i&2&&r(e,"class",n[1])},i:fe,o:fe,d(n){n&&C(e)}}}function rp(t,e,l){const n=new sp;let{errorCorrection:i="L"}=e,{background:o="#fff"}=e,{color:a="#000"}=e,{size:u="200"}=e,{value:c=""}=e,{padding:f=0}=e,{className:p="qrcode"}=e,_="";function b(){n.set({background:o,foreground:a,level:i,padding:f,size:u,value:c}),l(2,_=n.toDataURL("image/jpeg"))}return rc(()=>{b()}),t.$$set=v=>{"errorCorrection"in v&&l(3,i=v.errorCorrection),"background"in v&&l(4,o=v.background),"color"in v&&l(5,a=v.color),"size"in v&&l(6,u=v.size),"value"in v&&l(0,c=v.value),"padding"in v&&l(7,f=v.padding),"className"in v&&l(1,p=v.className)},t.$$.update=()=>{t.$$.dirty&1&&c&&b()},[c,p,_,i,o,a,u,f]}class ap extends Ee{constructor(e){super(),Pe(this,e,rp,op,Ae,{errorCorrection:3,background:4,color:5,size:6,value:0,padding:7,className:1})}}function uf(t,e,l){const n=t.slice();return n[96]=e[l],n[97]=e,n[98]=l,n}function ff(t,e,l){const n=t.slice();return n[99]=e[l],n[100]=e,n[101]=l,n}function up(t,e,l){const n=t.slice();return n[102]=e[l],n}function fp(t,e,l){const n=t.slice();return n[105]=e[l],n}function cp(t){let e,l;return{c(){e=m("option"),l=$(t[105]),e.__value=t[105],e.value=e.__value},m(n,i){M(n,e,i),s(e,l)},p:fe,d(n){n&&C(e)}}}function cf(t){let e,l,n,i;return{c(){e=m("br"),l=m("input"),r(l,"name","pt"),r(l,"type","text"),r(l,"class","in-s"),r(l,"placeholder","ENTSO-E API key, optional, read docs")},m(o,a){M(o,e,a),M(o,l,a),te(l,t[3].p.t),n||(i=ee(l,"input",t[22]),n=!0)},p(o,a){a[0]&8&&l.value!==o[3].p.t&&te(l,o[3].p.t)},d(o){o&&C(e),o&&C(l),n=!1,i()}}}function mf(t){let e,l,n,i,o,a,u,c,f,p,_,b,v;return{c(){e=m("div"),l=$("Username"),n=m("br"),i=h(),o=m("input"),a=h(),u=m("div"),c=$("Password"),f=m("br"),p=h(),_=m("input"),r(o,"name","gu"),r(o,"type","text"),r(o,"class","in-s"),r(e,"class","my-1"),r(_,"name","gp"),r(_,"type","password"),r(_,"class","in-s"),r(u,"class","my-1")},m(d,k){M(d,e,k),s(e,l),s(e,n),s(e,i),s(e,o),te(o,t[3].g.u),M(d,a,k),M(d,u,k),s(u,c),s(u,f),s(u,p),s(u,_),te(_,t[3].g.p),b||(v=[ee(o,"input",t[24]),ee(_,"input",t[25])],b=!0)},p(d,k){k[0]&8&&o.value!==d[3].g.u&&te(o,d[3].g.u),k[0]&8&&_.value!==d[3].g.p&&te(_,d[3].g.p)},d(d){d&&C(e),d&&C(a),d&&C(u),b=!1,ze(v)}}}function mp(t){let e,l=t[102]*100+"",n;return{c(){e=m("option"),n=$(l),e.__value=t[102]*100,e.value=e.__value},m(i,o){M(i,e,o),s(e,n)},p:fe,d(i){i&&C(e)}}}function pf(t){let e,l,n,i;return{c(){e=m("br"),l=m("input"),r(l,"name","mek"),r(l,"type","text"),r(l,"class","in-s")},m(o,a){M(o,e,a),M(o,l,a),te(l,t[3].m.e.k),n||(i=ee(l,"input",t[34]),n=!0)},p(o,a){a[0]&8&&l.value!==o[3].m.e.k&&te(l,o[3].m.e.k)},d(o){o&&C(e),o&&C(l),n=!1,i()}}}function _f(t){let e,l,n,i,o,a,u;return{c(){e=m("div"),l=$("Authentication key"),n=m("br"),i=h(),o=m("input"),r(o,"name","mea"),r(o,"type","text"),r(o,"class","in-s"),r(e,"class","my-1")},m(c,f){M(c,e,f),s(e,l),s(e,n),s(e,i),s(e,o),te(o,t[3].m.e.a),a||(u=ee(o,"input",t[35]),a=!0)},p(c,f){f[0]&8&&o.value!==c[3].m.e.a&&te(o,c[3].m.e.a)},d(c){c&&C(e),a=!1,u()}}}function df(t){let e,l,n,i,o,a,u,c,f,p,_,b,v,d,k,A,S,T,E,B,P,R,L,F,x,j;return{c(){e=m("div"),l=m("div"),n=$("Watt"),i=m("br"),o=h(),a=m("input"),u=h(),c=m("div"),f=$("Volt"),p=m("br"),_=h(),b=m("input"),v=h(),d=m("div"),k=$("Amp"),A=m("br"),S=h(),T=m("input"),E=h(),B=m("div"),P=$("kWh"),R=m("br"),L=h(),F=m("input"),r(a,"name","mmw"),r(a,"type","number"),r(a,"min","0.00"),r(a,"max","1000"),r(a,"step","0.001"),r(a,"class","in-f tr w-full"),r(l,"class","w-1/4"),r(b,"name","mmv"),r(b,"type","number"),r(b,"min","0.00"),r(b,"max","1000"),r(b,"step","0.001"),r(b,"class","in-m tr w-full"),r(c,"class","w-1/4"),r(T,"name","mma"),r(T,"type","number"),r(T,"min","0.00"),r(T,"max","1000"),r(T,"step","0.001"),r(T,"class","in-m tr w-full"),r(d,"class","w-1/4"),r(F,"name","mmc"),r(F,"type","number"),r(F,"min","0.00"),r(F,"max","1000"),r(F,"step","0.001"),r(F,"class","in-l tr w-full"),r(B,"class","w-1/4"),r(e,"class","flex my-1")},m(z,G){M(z,e,G),s(e,l),s(l,n),s(l,i),s(l,o),s(l,a),te(a,t[3].m.m.w),s(e,u),s(e,c),s(c,f),s(c,p),s(c,_),s(c,b),te(b,t[3].m.m.v),s(e,v),s(e,d),s(d,k),s(d,A),s(d,S),s(d,T),te(T,t[3].m.m.a),s(e,E),s(e,B),s(B,P),s(B,R),s(B,L),s(B,F),te(F,t[3].m.m.c),x||(j=[ee(a,"input",t[37]),ee(b,"input",t[38]),ee(T,"input",t[39]),ee(F,"input",t[40])],x=!0)},p(z,G){G[0]&8&&he(a.value)!==z[3].m.m.w&&te(a,z[3].m.m.w),G[0]&8&&he(b.value)!==z[3].m.m.v&&te(b,z[3].m.m.v),G[0]&8&&he(T.value)!==z[3].m.m.a&&te(T,z[3].m.m.a),G[0]&8&&he(F.value)!==z[3].m.m.c&&te(F,z[3].m.m.c)},d(z){z&&C(e),x=!1,ze(j)}}}function vf(t){let e,l,n,i,o,a,u,c,f,p,_,b,v,d,k,A;return{c(){e=m("div"),l=$("Gateway"),n=m("br"),i=h(),o=m("input"),a=h(),u=m("div"),c=$("DNS"),f=m("br"),p=h(),_=m("div"),b=m("input"),v=h(),d=m("input"),r(o,"name","ng"),r(o,"type","text"),r(o,"class","in-s"),r(e,"class","my-1"),r(b,"name","nd1"),r(b,"type","text"),r(b,"class","in-f w-full"),r(d,"name","nd2"),r(d,"type","text"),r(d,"class","in-l w-full"),r(_,"class","flex"),r(u,"class","my-1")},m(S,T){M(S,e,T),s(e,l),s(e,n),s(e,i),s(e,o),te(o,t[3].n.g),M(S,a,T),M(S,u,T),s(u,c),s(u,f),s(u,p),s(u,_),s(_,b),te(b,t[3].n.d1),s(_,v),s(_,d),te(d,t[3].n.d2),k||(A=[ee(o,"input",t[50]),ee(b,"input",t[51]),ee(d,"input",t[52])],k=!0)},p(S,T){T[0]&8&&o.value!==S[3].n.g&&te(o,S[3].n.g),T[0]&8&&b.value!==S[3].n.d1&&te(b,S[3].n.d1),T[0]&8&&d.value!==S[3].n.d2&&te(d,S[3].n.d2)},d(S){S&&C(e),S&&C(a),S&&C(u),k=!1,ze(A)}}}function hf(t){let e,l,n,i,o;return{c(){e=m("label"),l=m("input"),n=$(" SSL"),r(l,"type","checkbox"),r(l,"name","qs"),l.__value="true",l.value=l.__value,r(l,"class","rounded mb-1"),r(e,"class","float-right mr-3")},m(a,u){M(a,e,u),s(e,l),l.checked=t[3].q.s.e,s(e,n),i||(o=[ee(l,"change",t[56]),ee(l,"change",t[14])],i=!0)},p(a,u){u[0]&8&&(l.checked=a[3].q.s.e)},d(a){a&&C(e),i=!1,ze(o)}}}function bf(t){let e,l,n,i,o,a,u,c,f,p,_,b,v;const d=[_p,pp],k=[];function A(L,F){return L[3].q.s.c?0:1}n=A(t),i=k[n]=d[n](t);const S=[bp,hp],T=[];function E(L,F){return L[3].q.s.r?0:1}u=E(t),c=T[u]=S[u](t);const B=[yp,wp],P=[];function R(L,F){return L[3].q.s.k?0:1}return _=R(t),b=P[_]=B[_](t),{c(){e=m("div"),l=m("span"),i.c(),o=h(),a=m("span"),c.c(),f=h(),p=m("span"),b.c(),r(l,"class","flex pr-2"),r(a,"class","flex pr-2"),r(p,"class","flex pr-2"),r(e,"class","my-1 flex")},m(L,F){M(L,e,F),s(e,l),k[n].m(l,null),s(e,o),s(e,a),T[u].m(a,null),s(e,f),s(e,p),P[_].m(p,null),v=!0},p(L,F){let x=n;n=A(L),n===x?k[n].p(L,F):(De(),q(k[x],1,1,()=>{k[x]=null}),Ie(),i=k[n],i?i.p(L,F):(i=k[n]=d[n](L),i.c()),D(i,1),i.m(l,null));let j=u;u=E(L),u===j?T[u].p(L,F):(De(),q(T[j],1,1,()=>{T[j]=null}),Ie(),c=T[u],c?c.p(L,F):(c=T[u]=S[u](L),c.c()),D(c,1),c.m(a,null));let z=_;_=R(L),_===z?P[_].p(L,F):(De(),q(P[z],1,1,()=>{P[z]=null}),Ie(),b=P[_],b?b.p(L,F):(b=P[_]=B[_](L),b.c()),D(b,1),b.m(p,null))},i(L){v||(D(i),D(c),D(b),v=!0)},o(L){q(i),q(c),q(b),v=!1},d(L){L&&C(e),k[n].d(),T[u].d(),P[_].d()}}}function pp(t){let e,l;return e=new el({props:{to:"/mqtt-ca",$$slots:{default:[dp]},$$scope:{ctx:t}}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p(n,i){const o={};i[3]&32768&&(o.$$scope={dirty:i,ctx:n}),e.$set(o)},i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function _p(t){let e,l,n,i,o,a,u,c;return l=new el({props:{to:"/mqtt-ca",$$slots:{default:[vp]},$$scope:{ctx:t}}}),o=new Po({}),{c(){e=m("span"),ie(l.$$.fragment),n=h(),i=m("span"),ie(o.$$.fragment),r(e,"class","rounded-l-md bg-green-500 text-green-100 text-xs font-semibold px-2.5 py-1"),r(i,"class","rounded-r-md bg-red-500 text-red-100 text-xs px-2.5 py-1")},m(f,p){M(f,e,p),le(l,e,null),M(f,n,p),M(f,i,p),le(o,i,null),a=!0,u||(c=[ee(i,"click",t[11]),ee(i,"keypress",t[11])],u=!0)},p(f,p){const _={};p[3]&32768&&(_.$$scope={dirty:p,ctx:f}),l.$set(_)},i(f){a||(D(l.$$.fragment,f),D(o.$$.fragment,f),a=!0)},o(f){q(l.$$.fragment,f),q(o.$$.fragment,f),a=!1},d(f){f&&C(e),ne(l),f&&C(n),f&&C(i),ne(o),u=!1,ze(c)}}}function dp(t){let e,l;return e=new mn({props:{color:"blue",text:"Upload CA",title:"Click here to upload CA"}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p:fe,i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function vp(t){let e;return{c(){e=$("CA OK")},m(l,n){M(l,e,n)},d(l){l&&C(e)}}}function hp(t){let e,l;return e=new el({props:{to:"/mqtt-cert",$$slots:{default:[gp]},$$scope:{ctx:t}}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p(n,i){const o={};i[3]&32768&&(o.$$scope={dirty:i,ctx:n}),e.$set(o)},i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function bp(t){let e,l,n,i,o,a,u,c;return l=new el({props:{to:"/mqtt-cert",$$slots:{default:[kp]},$$scope:{ctx:t}}}),o=new Po({}),{c(){e=m("span"),ie(l.$$.fragment),n=h(),i=m("span"),ie(o.$$.fragment),r(e,"class","rounded-l-md bg-green-500 text-green-100 text-xs font-semibold px-2.5 py-1"),r(i,"class","rounded-r-md bg-red-500 text-red-100 text-xs px-2.5 py-1")},m(f,p){M(f,e,p),le(l,e,null),M(f,n,p),M(f,i,p),le(o,i,null),a=!0,u||(c=[ee(i,"click",t[12]),ee(i,"keypress",t[12])],u=!0)},p(f,p){const _={};p[3]&32768&&(_.$$scope={dirty:p,ctx:f}),l.$set(_)},i(f){a||(D(l.$$.fragment,f),D(o.$$.fragment,f),a=!0)},o(f){q(l.$$.fragment,f),q(o.$$.fragment,f),a=!1},d(f){f&&C(e),ne(l),f&&C(n),f&&C(i),ne(o),u=!1,ze(c)}}}function gp(t){let e,l;return e=new mn({props:{color:"blue",text:"Upload cert",title:"Click here to upload certificate"}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p:fe,i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function kp(t){let e;return{c(){e=$("Cert OK")},m(l,n){M(l,e,n)},d(l){l&&C(e)}}}function wp(t){let e,l;return e=new el({props:{to:"/mqtt-key",$$slots:{default:[Cp]},$$scope:{ctx:t}}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p(n,i){const o={};i[3]&32768&&(o.$$scope={dirty:i,ctx:n}),e.$set(o)},i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function yp(t){let e,l,n,i,o,a,u,c;return l=new el({props:{to:"/mqtt-key",$$slots:{default:[Mp]},$$scope:{ctx:t}}}),o=new Po({}),{c(){e=m("span"),ie(l.$$.fragment),n=h(),i=m("span"),ie(o.$$.fragment),r(e,"class","rounded-l-md bg-green-500 text-green-100 text-xs font-semibold px-2.5 py-1"),r(i,"class","rounded-r-md bg-red-500 text-red-100 text-xs px-2.5 py-1")},m(f,p){M(f,e,p),le(l,e,null),M(f,n,p),M(f,i,p),le(o,i,null),a=!0,u||(c=[ee(i,"click",t[13]),ee(i,"keypress",t[13])],u=!0)},p(f,p){const _={};p[3]&32768&&(_.$$scope={dirty:p,ctx:f}),l.$set(_)},i(f){a||(D(l.$$.fragment,f),D(o.$$.fragment,f),a=!0)},o(f){q(l.$$.fragment,f),q(o.$$.fragment,f),a=!1},d(f){f&&C(e),ne(l),f&&C(n),f&&C(i),ne(o),u=!1,ze(c)}}}function Cp(t){let e,l;return e=new mn({props:{color:"blue",text:"Upload key",title:"Click here to upload key"}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p:fe,i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function Mp(t){let e;return{c(){e=$("Key OK")},m(l,n){M(l,e,n)},d(l){l&&C(e)}}}function gf(t){let e,l,n,i,o,a,u,c,f,p,_,b,v,d,k,A,S,T,E,B,P,R,L,F,x,j,z,G,V,W,U,K;return o=new Ft({}),{c(){e=m("div"),l=m("strong"),l.textContent="Domoticz",n=h(),i=m("a"),ie(o.$$.fragment),a=h(),u=m("input"),c=h(),f=m("div"),p=m("div"),_=$("Electricity IDX"),b=m("br"),v=h(),d=m("input"),k=h(),A=m("div"),S=$("Current IDX"),T=m("br"),E=h(),B=m("input"),P=h(),R=m("div"),L=$(`Voltage IDX: L1, L2 & L3 - `),F=m("div"),x=m("input"),j=h(),z=m("input"),G=h(),V=m("input"),r(l,"class","text-sm"),r(i,"href",qt("MQTT-configuration#domoticz")),r(i,"target","_blank"),r(i,"class","float-right"),r(u,"type","hidden"),r(u,"name","o"),u.value="true",r(d,"name","oe"),r(d,"type","text"),r(d,"class","in-f tr w-full"),r(p,"class","w-1/2"),r(B,"name","oc"),r(B,"type","text"),r(B,"class","in-l tr w-full"),r(A,"class","w-1/2"),r(f,"class","my-1 flex"),r(x,"name","ou1"),r(x,"type","text"),r(x,"class","in-f tr w-1/3"),r(z,"name","ou2"),r(z,"type","text"),r(z,"class","in-m tr w-1/3"),r(V,"name","ou3"),r(V,"type","text"),r(V,"class","in-l tr w-1/3"),r(F,"class","flex"),r(R,"class","my-1"),r(e,"class","cnt")},m(H,Y){M(H,e,Y),s(e,l),s(e,n),s(e,i),le(o,i,null),s(e,a),s(e,u),s(e,c),s(e,f),s(f,p),s(p,_),s(p,b),s(p,v),s(p,d),te(d,t[3].o.e),s(f,k),s(f,A),s(A,S),s(A,T),s(A,E),s(A,B),te(B,t[3].o.c),s(e,P),s(e,R),s(R,L),s(R,F),s(F,x),te(x,t[3].o.u1),s(F,j),s(F,z),te(z,t[3].o.u2),s(F,G),s(F,V),te(V,t[3].o.u3),W=!0,U||(K=[ee(d,"input",t[64]),ee(B,"input",t[65]),ee(x,"input",t[66]),ee(z,"input",t[67]),ee(V,"input",t[68])],U=!0)},p(H,Y){Y[0]&8&&d.value!==H[3].o.e&&te(d,H[3].o.e),Y[0]&8&&B.value!==H[3].o.c&&te(B,H[3].o.c),Y[0]&8&&x.value!==H[3].o.u1&&te(x,H[3].o.u1),Y[0]&8&&z.value!==H[3].o.u2&&te(z,H[3].o.u2),Y[0]&8&&V.value!==H[3].o.u3&&te(V,H[3].o.u3)},i(H){W||(D(o.$$.fragment,H),W=!0)},o(H){q(o.$$.fragment,H),W=!1},d(H){H&&C(e),ne(o),U=!1,ze(K)}}}function kf(t){let e,l,n,i,o,a,u,c,f,p,_,b,v,d,k,A,S,T,E,B,P,R,L,F,x,j,z,G,V;return o=new Ft({}),{c(){e=m("div"),l=m("strong"),l.textContent="Home-Assistant",n=h(),i=m("a"),ie(o.$$.fragment),a=h(),u=m("input"),c=h(),f=m("div"),p=$("Discovery topic prefix"),_=m("br"),b=h(),v=m("input"),d=h(),k=m("div"),A=$("Hostname for URL"),S=m("br"),T=h(),E=m("input"),P=h(),R=m("div"),L=$("Name tag"),F=m("br"),x=h(),j=m("input"),r(l,"class","text-sm"),r(i,"href",qt("MQTT-configuration#home-assistant")),r(i,"target","_blank"),r(i,"class","float-right"),r(u,"type","hidden"),r(u,"name","h"),u.value="true",r(v,"name","ht"),r(v,"type","text"),r(v,"class","in-s"),r(v,"placeholder","homeassistant"),r(f,"class","my-1"),r(E,"name","hh"),r(E,"type","text"),r(E,"class","in-s"),r(E,"placeholder",B=t[3].g.h+".local"),r(k,"class","my-1"),r(j,"name","hn"),r(j,"type","text"),r(j,"class","in-s"),r(R,"class","my-1"),r(e,"class","cnt")},m(W,U){M(W,e,U),s(e,l),s(e,n),s(e,i),le(o,i,null),s(e,a),s(e,u),s(e,c),s(e,f),s(f,p),s(f,_),s(f,b),s(f,v),te(v,t[3].h.t),s(e,d),s(e,k),s(k,A),s(k,S),s(k,T),s(k,E),te(E,t[3].h.h),s(e,P),s(e,R),s(R,L),s(R,F),s(R,x),s(R,j),te(j,t[3].h.n),z=!0,G||(V=[ee(v,"input",t[69]),ee(E,"input",t[70]),ee(j,"input",t[71])],G=!0)},p(W,U){U[0]&8&&v.value!==W[3].h.t&&te(v,W[3].h.t),(!z||U[0]&8&&B!==(B=W[3].g.h+".local"))&&r(E,"placeholder",B),U[0]&8&&E.value!==W[3].h.h&&te(E,W[3].h.h),U[0]&8&&j.value!==W[3].h.n&&te(j,W[3].h.n)},i(W){z||(D(o.$$.fragment,W),z=!0)},o(W){q(o.$$.fragment,W),z=!1},d(W){W&&C(e),ne(o),G=!1,ze(V)}}}function wf(t){let e,l,n,i,o,a,u,c,f,p,_,b,v,d=t[3].c.es&&yf(t);return{c(){e=m("div"),l=m("input"),n=h(),i=m("strong"),i.textContent="Cloud connections",o=h(),a=m("div"),u=m("label"),c=m("input"),f=$(" Energy Speedometer"),p=h(),d&&d.c(),r(l,"type","hidden"),r(l,"name","c"),l.value="true",r(i,"class","text-sm"),r(c,"type","checkbox"),r(c,"class","rounded mb-1"),r(c,"name","ces"),c.__value="true",c.value=c.__value,r(a,"class","my-1"),r(e,"class","cnt")},m(k,A){M(k,e,A),s(e,l),s(e,n),s(e,i),s(e,o),s(e,a),s(a,u),s(u,c),c.checked=t[3].c.es,s(u,f),s(a,p),d&&d.m(a,null),_=!0,b||(v=ee(c,"change",t[72]),b=!0)},p(k,A){A[0]&8&&(c.checked=k[3].c.es),k[3].c.es?d?(d.p(k,A),A[0]&8&&D(d,1)):(d=yf(k),d.c(),D(d,1),d.m(a,null)):d&&(De(),q(d,1,1,()=>{d=null}),Ie())},i(k){_||(D(d),_=!0)},o(k){q(d),_=!1},d(k){k&&C(e),d&&d.d(),b=!1,v()}}}function yf(t){let e,l,n=t[0].mac+"",i,o,a,u,c=(t[0].meter.id?t[0].meter.id:"missing, required")+"",f,p,_,b,v=t[0].mac&&t[0].meter.id&&Cf(t);return{c(){e=m("div"),l=$("MAC: "),i=$(n),o=h(),a=m("div"),u=$("Meter ID: "),f=$(c),p=h(),v&&v.c(),_=Ge(),r(e,"class","pl-5"),r(a,"class","pl-5")},m(d,k){M(d,e,k),s(e,l),s(e,i),M(d,o,k),M(d,a,k),s(a,u),s(a,f),M(d,p,k),v&&v.m(d,k),M(d,_,k),b=!0},p(d,k){(!b||k[0]&1)&&n!==(n=d[0].mac+"")&&Z(i,n),(!b||k[0]&1)&&c!==(c=(d[0].meter.id?d[0].meter.id:"missing, required")+"")&&Z(f,c),d[0].mac&&d[0].meter.id?v?(v.p(d,k),k[0]&1&&D(v,1)):(v=Cf(d),v.c(),D(v,1),v.m(_.parentNode,_)):v&&(De(),q(v,1,1,()=>{v=null}),Ie())},i(d){b||(D(v),b=!0)},o(d){q(v),b=!1},d(d){d&&C(e),d&&C(o),d&&C(a),d&&C(p),v&&v.d(d),d&&C(_)}}}function Cf(t){let e,l,n;return l=new ap({props:{value:'{"mac":"'+t[0].mac+'","meter":"'+t[0].meter.id+'"}'}}),{c(){e=m("div"),ie(l.$$.fragment),r(e,"class","pl-2")},m(i,o){M(i,e,o),le(l,e,null),n=!0},p(i,o){const a={};o[0]&1&&(a.value='{"mac":"'+i[0].mac+'","meter":"'+i[0].meter.id+'"}'),l.$set(a)},i(i){n||(D(l.$$.fragment,i),n=!0)},o(i){q(l.$$.fragment,i),n=!1},d(i){i&&C(e),ne(l)}}}function Mf(t){let e,l,n,i,o,a,u,c,f,p,_,b,v,d,k,A,S,T,E;o=new Ft({});let B={length:9},P=[];for(let R=0;R20&&Nf(t),p=t[0].chip=="esp8266"&&Ef(t);return{c(){e=m("div"),l=m("strong"),l.textContent="Hardware",n=h(),i=m("a"),ie(o.$$.fragment),a=h(),f&&f.c(),u=h(),p&&p.c(),r(l,"class","text-sm"),r(i,"href",qt("GPIO-configuration")),r(i,"target","_blank"),r(i,"class","float-right"),r(e,"class","cnt")},m(_,b){M(_,e,b),s(e,l),s(e,n),s(e,i),le(o,i,null),s(e,a),f&&f.m(e,null),s(e,u),p&&p.m(e,null),c=!0},p(_,b){_[0].board>20?f?(f.p(_,b),b[0]&1&&D(f,1)):(f=Nf(_),f.c(),D(f,1),f.m(e,u)):f&&(De(),q(f,1,1,()=>{f=null}),Ie()),_[0].chip=="esp8266"?p?p.p(_,b):(p=Ef(_),p.c(),p.m(e,null)):p&&(p.d(1),p=null)},i(_){c||(D(o.$$.fragment,_),D(f),c=!0)},o(_){q(o.$$.fragment,_),q(f),c=!1},d(_){_&&C(e),ne(o),f&&f.d(),p&&p.d()}}}function Nf(t){let e,l,n,i,o,a,u,c,f,p,_,b,v,d,k,A,S,T,E,B,P,R,L,F,x,j,z,G,V,W,U,K,H,Y,X,re,ue,we,me,Se,je,Oe,He,ye,Ne,Re,$e,y,g,w,N,I,Q,J,se,ce,ve,Te,oe;b=new Zc({props:{chip:t[0].chip}});let pe=t[0].chip!="esp8266"&&Af(t),Be=t[3].i.v.p>0&&Pf(t);return{c(){e=m("input"),l=h(),n=m("div"),i=m("div"),o=$("HAN"),a=m("label"),u=m("input"),c=$(" pullup"),f=m("br"),p=h(),_=m("select"),ie(b.$$.fragment),v=h(),d=m("div"),k=$("AP button"),A=m("br"),S=h(),T=m("input"),E=h(),B=m("div"),P=$("LED"),R=m("label"),L=m("input"),F=$(" inv"),x=m("br"),j=h(),z=m("div"),G=m("input"),V=h(),W=m("div"),U=$("RGB"),K=m("label"),H=m("input"),Y=$(" inverted"),X=m("br"),re=h(),ue=m("div"),we=m("input"),me=h(),Se=m("input"),je=h(),Oe=m("input"),He=h(),ye=m("div"),Ne=$("Temperature"),Re=m("br"),$e=h(),y=m("input"),g=h(),w=m("div"),N=$("Analog temp"),I=m("br"),Q=h(),J=m("input"),se=h(),pe&&pe.c(),ce=h(),Be&&Be.c(),r(e,"type","hidden"),r(e,"name","i"),e.value="true",r(u,"name","ihu"),u.__value="true",u.value=u.__value,r(u,"type","checkbox"),r(u,"class","rounded mb-1"),r(a,"class","ml-2"),r(_,"name","ihp"),r(_,"class","in-f w-full"),t[3].i.h.p===void 0&&et(()=>t[77].call(_)),r(i,"class","w-1/3"),r(T,"name","ia"),r(T,"type","number"),r(T,"min","0"),r(T,"max",t[6]),r(T,"class","in-m tr w-full"),r(d,"class","w-1/3"),r(L,"name","ili"),L.__value="true",L.value=L.__value,r(L,"type","checkbox"),r(L,"class","rounded mb-1"),r(R,"class","ml-4"),r(G,"name","ilp"),r(G,"type","number"),r(G,"min","0"),r(G,"max",t[6]),r(G,"class","in-l tr w-full"),r(z,"class","flex"),r(B,"class","w-1/3"),r(H,"name","iri"),H.__value="true",H.value=H.__value,r(H,"type","checkbox"),r(H,"class","rounded mb-1"),r(K,"class","ml-4"),r(we,"name","irr"),r(we,"type","number"),r(we,"min","0"),r(we,"max",t[6]),r(we,"class","in-f tr w-1/3"),r(Se,"name","irg"),r(Se,"type","number"),r(Se,"min","0"),r(Se,"max",t[6]),r(Se,"class","in-m tr w-1/3"),r(Oe,"name","irb"),r(Oe,"type","number"),r(Oe,"min","0"),r(Oe,"max",t[6]),r(Oe,"class","in-l tr w-1/3"),r(ue,"class","flex"),r(W,"class","w-full"),r(y,"name","itd"),r(y,"type","number"),r(y,"min","0"),r(y,"max",t[6]),r(y,"class","in-f tr w-full"),r(ye,"class","my-1 w-1/3"),r(J,"name","ita"),r(J,"type","number"),r(J,"min","0"),r(J,"max",t[6]),r(J,"class","in-l tr w-full"),r(w,"class","my-1 pr-1 w-1/3"),r(n,"class","flex flex-wrap")},m(_e,Ce){M(_e,e,Ce),M(_e,l,Ce),M(_e,n,Ce),s(n,i),s(i,o),s(i,a),s(a,u),u.checked=t[3].i.h.u,s(a,c),s(i,f),s(i,p),s(i,_),le(b,_,null),qe(_,t[3].i.h.p,!0),s(n,v),s(n,d),s(d,k),s(d,A),s(d,S),s(d,T),te(T,t[3].i.a),s(n,E),s(n,B),s(B,P),s(B,R),s(R,L),L.checked=t[3].i.l.i,s(R,F),s(B,x),s(B,j),s(B,z),s(z,G),te(G,t[3].i.l.p),s(n,V),s(n,W),s(W,U),s(W,K),s(K,H),H.checked=t[3].i.r.i,s(K,Y),s(W,X),s(W,re),s(W,ue),s(ue,we),te(we,t[3].i.r.r),s(ue,me),s(ue,Se),te(Se,t[3].i.r.g),s(ue,je),s(ue,Oe),te(Oe,t[3].i.r.b),s(n,He),s(n,ye),s(ye,Ne),s(ye,Re),s(ye,$e),s(ye,y),te(y,t[3].i.t.d),s(n,g),s(n,w),s(w,N),s(w,I),s(w,Q),s(w,J),te(J,t[3].i.t.a),s(n,se),pe&&pe.m(n,null),s(n,ce),Be&&Be.m(n,null),ve=!0,Te||(oe=[ee(u,"change",t[76]),ee(_,"change",t[77]),ee(T,"input",t[78]),ee(L,"change",t[79]),ee(G,"input",t[80]),ee(H,"change",t[81]),ee(we,"input",t[82]),ee(Se,"input",t[83]),ee(Oe,"input",t[84]),ee(y,"input",t[85]),ee(J,"input",t[86])],Te=!0)},p(_e,Ce){Ce[0]&8&&(u.checked=_e[3].i.h.u);const vt={};Ce[0]&1&&(vt.chip=_e[0].chip),b.$set(vt),Ce[0]&8&&qe(_,_e[3].i.h.p),(!ve||Ce[0]&64)&&r(T,"max",_e[6]),Ce[0]&8&&he(T.value)!==_e[3].i.a&&te(T,_e[3].i.a),Ce[0]&8&&(L.checked=_e[3].i.l.i),(!ve||Ce[0]&64)&&r(G,"max",_e[6]),Ce[0]&8&&he(G.value)!==_e[3].i.l.p&&te(G,_e[3].i.l.p),Ce[0]&8&&(H.checked=_e[3].i.r.i),(!ve||Ce[0]&64)&&r(we,"max",_e[6]),Ce[0]&8&&he(we.value)!==_e[3].i.r.r&&te(we,_e[3].i.r.r),(!ve||Ce[0]&64)&&r(Se,"max",_e[6]),Ce[0]&8&&he(Se.value)!==_e[3].i.r.g&&te(Se,_e[3].i.r.g),(!ve||Ce[0]&64)&&r(Oe,"max",_e[6]),Ce[0]&8&&he(Oe.value)!==_e[3].i.r.b&&te(Oe,_e[3].i.r.b),(!ve||Ce[0]&64)&&r(y,"max",_e[6]),Ce[0]&8&&he(y.value)!==_e[3].i.t.d&&te(y,_e[3].i.t.d),(!ve||Ce[0]&64)&&r(J,"max",_e[6]),Ce[0]&8&&he(J.value)!==_e[3].i.t.a&&te(J,_e[3].i.t.a),_e[0].chip!="esp8266"?pe?pe.p(_e,Ce):(pe=Af(_e),pe.c(),pe.m(n,ce)):pe&&(pe.d(1),pe=null),_e[3].i.v.p>0?Be?Be.p(_e,Ce):(Be=Pf(_e),Be.c(),Be.m(n,null)):Be&&(Be.d(1),Be=null)},i(_e){ve||(D(b.$$.fragment,_e),ve=!0)},o(_e){q(b.$$.fragment,_e),ve=!1},d(_e){_e&&C(e),_e&&C(l),_e&&C(n),ne(b),pe&&pe.d(),Be&&Be.d(),Te=!1,ze(oe)}}}function Af(t){let e,l,n,i,o,a,u;return{c(){e=m("div"),l=$("Vcc"),n=m("br"),i=h(),o=m("input"),r(o,"name","ivp"),r(o,"type","number"),r(o,"min","0"),r(o,"max",t[6]),r(o,"class","in-s tr w-full"),r(e,"class","my-1 pl-1 w-1/3")},m(c,f){M(c,e,f),s(e,l),s(e,n),s(e,i),s(e,o),te(o,t[3].i.v.p),a||(u=ee(o,"input",t[87]),a=!0)},p(c,f){f[0]&64&&r(o,"max",c[6]),f[0]&8&&he(o.value)!==c[3].i.v.p&&te(o,c[3].i.v.p)},d(c){c&&C(e),a=!1,u()}}}function Pf(t){let e,l,n,i,o,a,u,c,f,p;return{c(){e=m("div"),l=$("Voltage divider"),n=m("br"),i=h(),o=m("div"),a=m("input"),u=h(),c=m("input"),r(a,"name","ivdv"),r(a,"type","number"),r(a,"min","0"),r(a,"max","65535"),r(a,"class","in-f tr w-full"),r(a,"placeholder","VCC"),r(c,"name","ivdg"),r(c,"type","number"),r(c,"min","0"),r(c,"max","65535"),r(c,"class","in-l tr w-full"),r(c,"placeholder","GND"),r(o,"class","flex"),r(e,"class","my-1")},m(_,b){M(_,e,b),s(e,l),s(e,n),s(e,i),s(e,o),s(o,a),te(a,t[3].i.v.d.v),s(o,u),s(o,c),te(c,t[3].i.v.d.g),f||(p=[ee(a,"input",t[88]),ee(c,"input",t[89])],f=!0)},p(_,b){b[0]&8&&he(a.value)!==_[3].i.v.d.v&&te(a,_[3].i.v.d.v),b[0]&8&&he(c.value)!==_[3].i.v.d.g&&te(c,_[3].i.v.d.g)},d(_){_&&C(e),f=!1,ze(p)}}}function Ef(t){let e,l,n,i,o,a,u,c,f,p,_,b,v,d,k,A,S,T=(t[0].board==2||t[0].board==100)&&Df(t);return{c(){e=m("input"),l=h(),n=m("div"),i=m("div"),o=$("Vcc offset"),a=m("br"),u=h(),c=m("input"),f=h(),p=m("div"),_=$("Multiplier"),b=m("br"),v=h(),d=m("input"),k=h(),T&&T.c(),r(e,"type","hidden"),r(e,"name","iv"),e.value="true",r(c,"name","ivo"),r(c,"type","number"),r(c,"min","0.0"),r(c,"max","3.5"),r(c,"step","0.01"),r(c,"class","in-f tr w-full"),r(i,"class","w-1/3"),r(d,"name","ivm"),r(d,"type","number"),r(d,"min","0.1"),r(d,"max","10"),r(d,"step","0.01"),r(d,"class","in-l tr w-full"),r(p,"class","w-1/3 pr-1"),r(n,"class","my-1 flex flex-wrap")},m(E,B){M(E,e,B),M(E,l,B),M(E,n,B),s(n,i),s(i,o),s(i,a),s(i,u),s(i,c),te(c,t[3].i.v.o),s(n,f),s(n,p),s(p,_),s(p,b),s(p,v),s(p,d),te(d,t[3].i.v.m),s(n,k),T&&T.m(n,null),A||(S=[ee(c,"input",t[90]),ee(d,"input",t[91])],A=!0)},p(E,B){B[0]&8&&he(c.value)!==E[3].i.v.o&&te(c,E[3].i.v.o),B[0]&8&&he(d.value)!==E[3].i.v.m&&te(d,E[3].i.v.m),E[0].board==2||E[0].board==100?T?T.p(E,B):(T=Df(E),T.c(),T.m(n,null)):T&&(T.d(1),T=null)},d(E){E&&C(e),E&&C(l),E&&C(n),T&&T.d(),A=!1,ze(S)}}}function Df(t){let e,l,n,i,o,a,u;return{c(){e=m("div"),l=$("Boot limit"),n=m("br"),i=h(),o=m("input"),r(o,"name","ivb"),r(o,"type","number"),r(o,"min","2.5"),r(o,"max","3.5"),r(o,"step","0.1"),r(o,"class","in-s tr w-full"),r(e,"class","w-1/3 pl-1")},m(c,f){M(c,e,f),s(e,l),s(e,n),s(e,i),s(e,o),te(o,t[3].i.v.b),a||(u=ee(o,"input",t[92]),a=!0)},p(c,f){f[0]&8&&he(o.value)!==c[3].i.v.b&&te(o,c[3].i.v.b)},d(c){c&&C(e),a=!1,u()}}}function If(t){let e,l,n,i,o,a,u,c,f,p,_,b,v,d,k,A,S=t[3].d.t&&Of();return{c(){e=m("div"),e.textContent="Debug can cause sudden reboots. Do not leave on!",l=h(),n=m("div"),i=m("label"),o=m("input"),a=$(" Enable telnet"),u=h(),S&&S.c(),c=h(),f=m("div"),p=m("select"),_=m("option"),_.textContent="Verbose",b=m("option"),b.textContent="Debug",v=m("option"),v.textContent="Info",d=m("option"),d.textContent="Warning",r(e,"class","bd-red"),r(o,"type","checkbox"),r(o,"name","dt"),o.__value="true",o.value=o.__value,r(o,"class","rounded mb-1"),r(n,"class","my-1"),_.__value=1,_.value=_.__value,b.__value=2,b.value=b.__value,v.__value=3,v.value=v.__value,d.__value=4,d.value=d.__value,r(p,"name","dl"),r(p,"class","in-s"),t[3].d.l===void 0&&et(()=>t[95].call(p)),r(f,"class","my-1")},m(T,E){M(T,e,E),M(T,l,E),M(T,n,E),s(n,i),s(i,o),o.checked=t[3].d.t,s(i,a),M(T,u,E),S&&S.m(T,E),M(T,c,E),M(T,f,E),s(f,p),s(p,_),s(p,b),s(p,v),s(p,d),qe(p,t[3].d.l,!0),k||(A=[ee(o,"change",t[94]),ee(p,"change",t[95])],k=!0)},p(T,E){E[0]&8&&(o.checked=T[3].d.t),T[3].d.t?S||(S=Of(),S.c(),S.m(c.parentNode,c)):S&&(S.d(1),S=null),E[0]&8&&qe(p,T[3].d.l)},d(T){T&&C(e),T&&C(l),T&&C(n),T&&C(u),S&&S.d(T),T&&C(c),T&&C(f),k=!1,ze(A)}}}function Of(t){let e;return{c(){e=m("div"),e.textContent="Telnet is unsafe and should be off when not in use",r(e,"class","bd-red")},m(l,n){M(l,e,n)},d(l){l&&C(e)}}}function $p(t){let e,l,n,i,o,a,u,c,f,p,_,b,v,d,k,A,S,T,E,B,P,R,L,F,x,j,z,G,V,W,U,K,H,Y,X,re,ue,we,me,Se,je,Oe,He,ye,Ne,Re,$e,y,g,w,N,I,Q,J,se,ce,ve,Te,oe,pe,Be,_e,Ce,vt,Hl,tl,ct,Tl,pl,Ut,ht,Ye,Qe,Xe,Ue,Ze,We,Je,xe,de,Me,Ii,_l,vn,St,Oi,Ri,Li,dl,Fi,qi,Bi,Nt,Sl,Nl,Al,Ui,ji,ke,mt,Wl,zl,Pl,El,Gl,Hi,ll,Wi,Do,Es,Io,pi,jt,Oo,Ro,Dl,nl,Il,Lo,zi,Fo,pt,Ol,qo,Gi,hn,bn,gn,kn,Vi,Bo,It,Uo,Vl,jo,Ho,Wo,il,wn,yn,zo,Cn,Kl,Go,Vo,Ko,Mn,Ht,Yo,Ki,Qo,Yl,Xo,Zo,Jo,$n,Wt,xo,Yi,er,Ds,tr,Ql,Qi,zt,lr,nr,ir,Is,Xi,Gt,sr,or,rr,tt,Zi,ar,Tn,Sn,ur,_i,fr,Xl,cr,mr,pr,vl,_r,Zl,dr,vr,hr,hl,br,Nn,Jl,gr,kr,wr,Ot,An,Pn,En,Dn,yr,xl,Cr,Mr,$r,In,Rt,Tr,Ji,Sr,xi,es,Vt,Nr,Ar,ts,ls,Kt,Pr,Er,ut,ns,Dr,On,Rn,Ir,en,Or,Rr,Lr,Rl,sl,Ln,Fn,Fr,At,is,ss,qr,Pt,qn,os,rs,Br,Os,as,us,Yt,Ur,jr,di,Hr,Ll,Wr,vi,Qt,zr,Gr,Vr,fs,bl,Kr,Ke,cs,Yr,Bn,Un,Qr,hi,Xr,ol,Zr,Rs,Jr,xr,jn,gl,ea,Xt,ta,Ls,tn,la,na,ia,kl,sa,ln,oa,ra,aa,wl,ua,Hn,Wn,fa,ca,ma,yl,pa,zn,_a,da,va,bt,Gn,Vn,Kn,Yn,Qn,Xn,ha,nn,ba,ga,ka,Cl,wa,Fs,qs,Bs,Us=t[3].p.r.startsWith("10YNO")||t[3].p.r=="10Y1001A1001A48H",js,rl,ms,ya,Zn,Jn,Ca,bi,Ma,gi,$a,Hs,Et,ps,Ta,xn,ei,Sa,ki,Na,_s,ds,Zt,Aa,Pa,Ea,Fl,Ws,ti,Da,vs,li,Ia,hs,zs,sn,Gs,on,Vs,rn,Ks,an,Jt,Ys,Oa;u=new Ft({}),F=new xm({});let e0=["NOK","SEK","DKK","EUR"],wi=[];for(let O=0;O<4;O+=1)wi[O]=cp(fp(t,e0,O));let gt=t[3].p.e&&t[0].chip!="esp8266"&&cf(t),kt=t[3].g.s>0&&mf(t);Pl=new Ft({});let t0=[24,48,96,192,384,576,1152],yi=[];for(let O=0;O<7;O+=1)yi[O]=mp(up(t,t0,O));let wt=t[3].m.e.e&&pf(t),yt=t[3].m.e.e&&_f(t),Ct=t[3].m.m.e&&df(t);Sn=new Ft({}),Rn=new Ft({}),qn=new Jc({});let Mt=t[3].n.m=="static"&&vf(t);Un=new Ft({});let $t=t[0].chip!="esp8266"&&hf(t),lt=t[3].q.s.e&&bf(t),nt=t[3].q.m==3&&gf(t),it=t[3].q.m==4&&kf(t),st=t[3].c.es!=null&&wf(t),ot=Us&&Mf(t);Jn=new Ft({});let ni=t[7],_t=[];for(let O=0;O20||t[0].chip=="esp8266")&&Sf(t);ei=new Ft({});let Tt=t[3].d.s&&If(t);return sn=new Dt({props:{active:t[1],message:"Loading configuration"}}),on=new Dt({props:{active:t[2],message:"Saving configuration"}}),rn=new Dt({props:{active:t[4],message:"Performing factory reset"}}),an=new Dt({props:{active:t[5],message:"Device have been factory reset and switched to AP mode"}}),{c(){e=m("form"),l=m("div"),n=m("div"),i=m("strong"),i.textContent="General",o=h(),a=m("a"),ie(u.$$.fragment),c=h(),f=m("input"),p=h(),_=m("div"),b=m("div"),v=m("div"),d=$("Hostname"),k=m("br"),A=h(),S=m("input"),T=h(),E=m("div"),B=$("Time zone"),P=m("br"),R=h(),L=m("select"),ie(F.$$.fragment),x=h(),j=m("input"),z=h(),G=m("div"),V=m("div"),W=m("div"),U=$("Price region"),K=m("br"),H=h(),Y=m("select"),X=m("optgroup"),re=m("option"),re.textContent="NO1",ue=m("option"),ue.textContent="NO2",we=m("option"),we.textContent="NO3",me=m("option"),me.textContent="NO4",Se=m("option"),Se.textContent="NO5",je=m("optgroup"),Oe=m("option"),Oe.textContent="SE1",He=m("option"),He.textContent="SE2",ye=m("option"),ye.textContent="SE3",Ne=m("option"),Ne.textContent="SE4",Re=m("optgroup"),$e=m("option"),$e.textContent="DK1",y=m("option"),y.textContent="DK2",g=m("option"),g.textContent="Austria",w=m("option"),w.textContent="Belgium",N=m("option"),N.textContent="Czech Republic",I=m("option"),I.textContent="Estonia",Q=m("option"),Q.textContent="Finland",J=m("option"),J.textContent="France",se=m("option"),se.textContent="Germany",ce=m("option"),ce.textContent="Great Britain",ve=m("option"),ve.textContent="Latvia",Te=m("option"),Te.textContent="Lithuania",oe=m("option"),oe.textContent="Netherland",pe=m("option"),pe.textContent="Poland",Be=m("option"),Be.textContent="Switzerland",_e=h(),Ce=m("div"),vt=$("Currency"),Hl=m("br"),tl=h(),ct=m("select");for(let O=0;O<4;O+=1)wi[O].c();Tl=h(),pl=m("div"),Ut=m("div"),ht=m("div"),Ye=$("Fixed price"),Qe=m("br"),Xe=h(),Ue=m("input"),Ze=h(),We=m("div"),Je=$("Multiplier"),xe=m("br"),de=h(),Me=m("input"),Ii=h(),_l=m("div"),vn=m("label"),St=m("input"),Oi=$(" Enable price fetch from remote server"),Ri=h(),gt&>.c(),Li=h(),dl=m("div"),Fi=$("Security"),qi=m("br"),Bi=h(),Nt=m("select"),Sl=m("option"),Sl.textContent="None",Nl=m("option"),Nl.textContent="Only configuration",Al=m("option"),Al.textContent="Everything",Ui=h(),kt&&kt.c(),ji=h(),ke=m("div"),mt=m("strong"),mt.textContent="Meter",Wl=h(),zl=m("a"),ie(Pl.$$.fragment),El=h(),Gl=m("input"),Hi=h(),ll=m("div"),Wi=m("span"),Wi.textContent="Buffer size",Do=h(),Es=m("span"),Es.textContent="Serial conf.",Io=h(),pi=m("label"),jt=m("input"),Oo=$(" inverted"),Ro=h(),Dl=m("div"),nl=m("select"),Il=m("option"),Lo=$("Autodetect");for(let O=0;O<7;O+=1)yi[O].c();Fo=h(),pt=m("select"),Ol=m("option"),qo=$("-"),hn=m("option"),hn.textContent="7N1",bn=m("option"),bn.textContent="8N1",gn=m("option"),gn.textContent="7E1",kn=m("option"),kn.textContent="8E1",Bo=h(),It=m("input"),Uo=h(),Vl=m("div"),jo=$("Voltage"),Ho=m("br"),Wo=h(),il=m("select"),wn=m("option"),wn.textContent="400V (TN)",yn=m("option"),yn.textContent="230V (IT/TT)",zo=h(),Cn=m("div"),Kl=m("div"),Go=$("Main fuse"),Vo=m("br"),Ko=h(),Mn=m("label"),Ht=m("input"),Yo=h(),Ki=m("span"),Ki.textContent="A",Qo=h(),Yl=m("div"),Xo=$("Production"),Zo=m("br"),Jo=h(),$n=m("label"),Wt=m("input"),xo=h(),Yi=m("span"),Yi.textContent="kWp",er=h(),Ds=m("div"),tr=h(),Ql=m("div"),Qi=m("label"),zt=m("input"),lr=$(" Meter is encrypted"),nr=h(),wt&&wt.c(),ir=h(),yt&&yt.c(),Is=h(),Xi=m("label"),Gt=m("input"),sr=$(" Multipliers"),or=h(),Ct&&Ct.c(),rr=h(),tt=m("div"),Zi=m("strong"),Zi.textContent="WiFi",ar=h(),Tn=m("a"),ie(Sn.$$.fragment),ur=h(),_i=m("input"),fr=h(),Xl=m("div"),cr=$("SSID"),mr=m("br"),pr=h(),vl=m("input"),_r=h(),Zl=m("div"),dr=$("Password"),vr=m("br"),hr=h(),hl=m("input"),br=h(),Nn=m("div"),Jl=m("div"),gr=$("Power saving"),kr=m("br"),wr=h(),Ot=m("select"),An=m("option"),An.textContent="Default",Pn=m("option"),Pn.textContent="Off",En=m("option"),En.textContent="Minimum",Dn=m("option"),Dn.textContent="Maximum",yr=h(),xl=m("div"),Cr=$("Power"),Mr=m("br"),$r=h(),In=m("div"),Rt=m("input"),Tr=h(),Ji=m("span"),Ji.textContent="dBm",Sr=h(),xi=m("div"),es=m("label"),Vt=m("input"),Nr=$(" Auto reboot on connection problem"),Ar=h(),ts=m("div"),ls=m("label"),Kt=m("input"),Pr=$(" Allow 802.11b legacy rates"),Er=h(),ut=m("div"),ns=m("strong"),ns.textContent="Network",Dr=h(),On=m("a"),ie(Rn.$$.fragment),Ir=h(),en=m("div"),Or=$("IP"),Rr=m("br"),Lr=h(),Rl=m("div"),sl=m("select"),Ln=m("option"),Ln.textContent="DHCP",Fn=m("option"),Fn.textContent="Static",Fr=h(),At=m("input"),qr=h(),Pt=m("select"),ie(qn.$$.fragment),Br=h(),Mt&&Mt.c(),Os=h(),as=m("div"),us=m("label"),Yt=m("input"),Ur=$(" enable mDNS"),jr=h(),di=m("input"),Hr=h(),Ll=m("div"),Wr=$("NTP "),vi=m("label"),Qt=m("input"),zr=$(" obtain from DHCP"),Gr=m("br"),Vr=h(),fs=m("div"),bl=m("input"),Kr=h(),Ke=m("div"),cs=m("strong"),cs.textContent="MQTT",Yr=h(),Bn=m("a"),ie(Un.$$.fragment),Qr=h(),hi=m("input"),Xr=h(),ol=m("div"),Zr=$(`Server - `),$t&&$t.c(),Rs=h(),Jr=m("br"),xr=h(),jn=m("div"),gl=m("input"),ea=h(),Xt=m("input"),ta=h(),lt&<.c(),Ls=h(),tn=m("div"),la=$("Username"),na=m("br"),ia=h(),kl=m("input"),sa=h(),ln=m("div"),oa=$("Password"),ra=m("br"),aa=h(),wl=m("input"),ua=h(),Hn=m("div"),Wn=m("div"),fa=$("Client ID"),ca=m("br"),ma=h(),yl=m("input"),pa=h(),zn=m("div"),_a=$("Payload"),da=m("br"),va=h(),bt=m("select"),Gn=m("option"),Gn.textContent="JSON",Vn=m("option"),Vn.textContent="Raw (minimal)",Kn=m("option"),Kn.textContent="Raw (full)",Yn=m("option"),Yn.textContent="Domoticz",Qn=m("option"),Qn.textContent="HomeAssistant",Xn=m("option"),Xn.textContent="HEX dump",ha=h(),nn=m("div"),ba=$("Publish topic"),ga=m("br"),ka=h(),Cl=m("input"),wa=h(),nt&&nt.c(),Fs=h(),it&&it.c(),qs=h(),st&&st.c(),Bs=h(),ot&&ot.c(),js=h(),rl=m("div"),ms=m("strong"),ms.textContent="User interface",ya=h(),Zn=m("a"),ie(Jn.$$.fragment),Ca=h(),bi=m("input"),Ma=h(),gi=m("div");for(let O=0;O<_t.length;O+=1)_t[O].c();$a=h(),rt&&rt.c(),Hs=h(),Et=m("div"),ps=m("strong"),ps.textContent="Debugging",Ta=h(),xn=m("a"),ie(ei.$$.fragment),Sa=h(),ki=m("input"),Na=h(),_s=m("div"),ds=m("label"),Zt=m("input"),Aa=$(" Enable debugging"),Pa=h(),Tt&&Tt.c(),Ea=h(),Fl=m("div"),Ws=m("div"),ti=m("button"),ti.textContent="Factory reset",Da=h(),vs=m("div"),li=m("button"),li.textContent="Reboot",Ia=h(),hs=m("div"),hs.innerHTML='',zs=h(),ie(sn.$$.fragment),Gs=h(),ie(on.$$.fragment),Vs=h(),ie(rn.$$.fragment),Ks=h(),ie(an.$$.fragment),r(i,"class","text-sm"),r(a,"href",qt("General-configuration")),r(a,"target","_blank"),r(a,"class","float-right"),r(f,"type","hidden"),r(f,"name","g"),f.value="true",r(S,"name","gh"),r(S,"type","text"),r(S,"class","in-f w-full"),r(S,"pattern","[A-Za-z0-9-]+"),r(L,"name","gt"),r(L,"class","in-l w-full"),t[3].g.t===void 0&&et(()=>t[16].call(L)),r(b,"class","flex"),r(_,"class","my-1"),r(j,"type","hidden"),r(j,"name","p"),j.value="true",re.__value="10YNO-1--------2",re.value=re.__value,ue.__value="10YNO-2--------T",ue.value=ue.__value,we.__value="10YNO-3--------J",we.value=we.__value,me.__value="10YNO-4--------9",me.value=me.__value,Se.__value="10Y1001A1001A48H",Se.value=Se.__value,r(X,"label","Norway"),Oe.__value="10Y1001A1001A44P",Oe.value=Oe.__value,He.__value="10Y1001A1001A45N",He.value=He.__value,ye.__value="10Y1001A1001A46L",ye.value=ye.__value,Ne.__value="10Y1001A1001A47J",Ne.value=Ne.__value,r(je,"label","Sweden"),$e.__value="10YDK-1--------W",$e.value=$e.__value,y.__value="10YDK-2--------M",y.value=y.__value,r(Re,"label","Denmark"),g.__value="10YAT-APG------L",g.value=g.__value,w.__value="10YBE----------2",w.value=w.__value,N.__value="10YCZ-CEPS-----N",N.value=N.__value,I.__value="10Y1001A1001A39I",I.value=I.__value,Q.__value="10YFI-1--------U",Q.value=Q.__value,J.__value="10YFR-RTE------C",J.value=J.__value,se.__value="10Y1001A1001A83F",se.value=se.__value,ce.__value="10YGB----------A",ce.value=ce.__value,ve.__value="10YLV-1001A00074",ve.value=ve.__value,Te.__value="10YLT-1001A0008Q",Te.value=Te.__value,oe.__value="10YNL----------L",oe.value=oe.__value,pe.__value="10YPL-AREA-----S",pe.value=pe.__value,Be.__value="10YCH-SWISSGRIDZ",Be.value=Be.__value,r(Y,"name","pr"),r(Y,"class","in-f w-full"),t[3].p.r===void 0&&et(()=>t[17].call(Y)),r(W,"class","w-full"),r(ct,"name","pc"),r(ct,"class","in-l"),t[3].p.c===void 0&&et(()=>t[18].call(ct)),r(V,"class","flex"),r(G,"class","my-1"),r(Ue,"name","pf"),r(Ue,"type","number"),r(Ue,"min","0.001"),r(Ue,"max","65"),r(Ue,"step","0.001"),r(Ue,"class","in-f tr w-full"),r(ht,"class","w-1/2"),r(Me,"name","pm"),r(Me,"type","number"),r(Me,"min","0.001"),r(Me,"max","1000"),r(Me,"step","0.001"),r(Me,"class","in-l tr w-full"),r(We,"class","w-1/2"),r(Ut,"class","flex"),r(pl,"class","my-1"),r(St,"type","checkbox"),r(St,"name","pe"),St.__value="true",St.value=St.__value,r(St,"class","rounded mb-1"),r(_l,"class","my-1"),Sl.__value=0,Sl.value=Sl.__value,Nl.__value=1,Nl.value=Nl.__value,Al.__value=2,Al.value=Al.__value,r(Nt,"name","gs"),r(Nt,"class","in-s"),t[3].g.s===void 0&&et(()=>t[23].call(Nt)),r(dl,"class","my-1"),r(n,"class","cnt"),r(mt,"class","text-sm"),r(zl,"href",qt("Meter-configuration")),r(zl,"target","_blank"),r(zl,"class","float-right"),r(Gl,"type","hidden"),r(Gl,"name","m"),Gl.value="true",r(Wi,"class","float-right"),r(jt,"name","mi"),jt.__value="true",jt.value=jt.__value,r(jt,"type","checkbox"),r(jt,"class","rounded mb-1"),r(pi,"class","mt-2 ml-3 whitespace-nowrap"),Il.__value=0,Il.value=Il.__value,Il.disabled=zi=t[3].m.b!=0,r(nl,"name","mb"),r(nl,"class","in-f tr w-1/2"),t[3].m.b===void 0&&et(()=>t[27].call(nl)),Ol.__value=0,Ol.value=Ol.__value,Ol.disabled=Gi=t[3].m.b!=0,hn.__value=2,hn.value=hn.__value,bn.__value=3,bn.value=bn.__value,gn.__value=10,gn.value=gn.__value,kn.__value=11,kn.value=kn.__value,r(pt,"name","mp"),r(pt,"class","in-m"),pt.disabled=Vi=t[3].m.b==0,t[3].m.p===void 0&&et(()=>t[28].call(pt)),r(It,"name","ms"),r(It,"type","number"),r(It,"min",64),r(It,"max",4096),r(It,"step",64),r(It,"class","in-l tr w-1/2"),r(Dl,"class","flex w-full"),r(ll,"class","my-1"),wn.__value=2,wn.value=wn.__value,yn.__value=1,yn.value=yn.__value,r(il,"name","md"),r(il,"class","in-s"),t[3].m.d===void 0&&et(()=>t[30].call(il)),r(Vl,"class","my-1"),r(Ht,"name","mf"),r(Ht,"type","number"),r(Ht,"min","5"),r(Ht,"max","65535"),r(Ht,"class","in-f tr w-full"),r(Ki,"class","in-post"),r(Mn,"class","flex"),r(Kl,"class","mx-1"),r(Wt,"name","mr"),r(Wt,"type","number"),r(Wt,"min","0"),r(Wt,"max","65535"),r(Wt,"class","in-f tr w-full"),r(Yi,"class","in-post"),r($n,"class","flex"),r(Yl,"class","mx-1"),r(Cn,"class","my-1 flex"),r(Ds,"class","my-1"),r(zt,"type","checkbox"),r(zt,"name","me"),zt.__value="true",zt.value=zt.__value,r(zt,"class","rounded mb-1"),r(Ql,"class","my-1"),r(Gt,"type","checkbox"),r(Gt,"name","mm"),Gt.__value="true",Gt.value=Gt.__value,r(Gt,"class","rounded mb-1"),r(ke,"class","cnt"),r(Zi,"class","text-sm"),r(Tn,"href",qt("WiFi-configuration")),r(Tn,"target","_blank"),r(Tn,"class","float-right"),r(_i,"type","hidden"),r(_i,"name","w"),_i.value="true",r(vl,"name","ws"),r(vl,"type","text"),r(vl,"class","in-s"),r(Xl,"class","my-1"),r(hl,"name","wp"),r(hl,"type","password"),r(hl,"class","in-s"),r(Zl,"class","my-1"),An.__value=255,An.value=An.__value,Pn.__value=0,Pn.value=Pn.__value,En.__value=1,En.value=En.__value,Dn.__value=2,Dn.value=Dn.__value,r(Ot,"name","wz"),r(Ot,"class","in-s"),t[3].w.z===void 0&&et(()=>t[43].call(Ot)),r(Jl,"class","w-1/2"),r(Rt,"name","ww"),r(Rt,"type","number"),r(Rt,"min","0"),r(Rt,"max","20.5"),r(Rt,"step","0.5"),r(Rt,"class","in-f tr w-full"),r(Ji,"class","in-post"),r(In,"class","flex"),r(xl,"class","ml-2 w-1/2"),r(Nn,"class","my-1 flex"),r(Vt,"type","checkbox"),r(Vt,"name","wa"),Vt.__value="true",Vt.value=Vt.__value,r(Vt,"class","rounded mb-1"),r(xi,"class","my-3"),r(Kt,"type","checkbox"),r(Kt,"name","wb"),Kt.__value="true",Kt.value=Kt.__value,r(Kt,"class","rounded mb-1"),r(ts,"class","my-3"),r(tt,"class","cnt"),r(ns,"class","text-sm"),r(On,"href",qt("Network-configuration")),r(On,"target","_blank"),r(On,"class","float-right"),Ln.__value="dhcp",Ln.value=Ln.__value,Fn.__value="static",Fn.value=Fn.__value,r(sl,"name","nm"),r(sl,"class","in-f"),t[3].n.m===void 0&&et(()=>t[47].call(sl)),r(At,"name","ni"),r(At,"type","text"),r(At,"class","in-m w-full"),At.disabled=is=t[3].n.m=="dhcp",At.required=ss=t[3].n.m=="static",r(Pt,"name","ns"),r(Pt,"class","in-l"),Pt.disabled=os=t[3].n.m=="dhcp",Pt.required=rs=t[3].n.m=="static",t[3].n.s===void 0&&et(()=>t[49].call(Pt)),r(Rl,"class","flex"),r(en,"class","my-1"),r(Yt,"name","nd"),Yt.__value="true",Yt.value=Yt.__value,r(Yt,"type","checkbox"),r(Yt,"class","rounded mb-1"),r(as,"class","my-1"),r(di,"type","hidden"),r(di,"name","ntp"),di.value="true",r(Qt,"name","ntpd"),Qt.__value="true",Qt.value=Qt.__value,r(Qt,"type","checkbox"),r(Qt,"class","rounded mb-1"),r(vi,"class","ml-4"),r(bl,"name","ntph"),r(bl,"type","text"),r(bl,"class","in-s"),r(fs,"class","flex"),r(Ll,"class","my-1"),r(ut,"class","cnt"),r(cs,"class","text-sm"),r(Bn,"href",qt("MQTT-configuration")),r(Bn,"target","_blank"),r(Bn,"class","float-right"),r(hi,"type","hidden"),r(hi,"name","q"),hi.value="true",r(gl,"name","qh"),r(gl,"type","text"),r(gl,"class","in-f w-3/4"),r(Xt,"name","qp"),r(Xt,"type","number"),r(Xt,"min","1024"),r(Xt,"max","65535"),r(Xt,"class","in-l tr w-1/4"),r(jn,"class","flex"),r(ol,"class","my-1"),r(kl,"name","qu"),r(kl,"type","text"),r(kl,"class","in-s"),r(tn,"class","my-1"),r(wl,"name","qa"),r(wl,"type","password"),r(wl,"class","in-s"),r(ln,"class","my-1"),r(yl,"name","qc"),r(yl,"type","text"),r(yl,"class","in-f w-full"),Gn.__value=0,Gn.value=Gn.__value,Vn.__value=1,Vn.value=Vn.__value,Kn.__value=2,Kn.value=Kn.__value,Yn.__value=3,Yn.value=Yn.__value,Qn.__value=4,Qn.value=Qn.__value,Xn.__value=255,Xn.value=Xn.__value,r(bt,"name","qm"),r(bt,"class","in-l"),t[3].q.m===void 0&&et(()=>t[62].call(bt)),r(Hn,"class","my-1 flex"),r(Cl,"name","qb"),r(Cl,"type","text"),r(Cl,"class","in-s"),r(nn,"class","my-1"),r(Ke,"class","cnt"),r(ms,"class","text-sm"),r(Zn,"href",qt("User-interface")),r(Zn,"target","_blank"),r(Zn,"class","float-right"),r(bi,"type","hidden"),r(bi,"name","u"),bi.value="true",r(gi,"class","flex flex-wrap"),r(rl,"class","cnt"),r(ps,"class","text-sm"),r(xn,"href","https://amsleser.no/blog/post/24-telnet-debug"),r(xn,"target","_blank"),r(xn,"class","float-right"),r(ki,"type","hidden"),r(ki,"name","d"),ki.value="true",r(Zt,"type","checkbox"),r(Zt,"name","ds"),Zt.__value="true",Zt.value=Zt.__value,r(Zt,"class","rounded mb-1"),r(_s,"class","mt-3"),r(Et,"class","cnt"),r(l,"class","grid xl:grid-cols-4 lg:grid-cols-2 md:grid-cols-2"),r(ti,"type","button"),r(ti,"class","py-2 px-4 rounded bg-red-500 text-white ml-2"),r(li,"type","button"),r(li,"class","py-2 px-4 rounded bg-yellow-500 text-white"),r(vs,"class","text-center"),r(hs,"class","text-right"),r(Fl,"class","grid grid-cols-3"),r(e,"autocomplete","off")},m(O,ae){M(O,e,ae),s(e,l),s(l,n),s(n,i),s(n,o),s(n,a),le(u,a,null),s(n,c),s(n,f),s(n,p),s(n,_),s(_,b),s(b,v),s(v,d),s(v,k),s(v,A),s(v,S),te(S,t[3].g.h),s(b,T),s(b,E),s(E,B),s(E,P),s(E,R),s(E,L),le(F,L,null),qe(L,t[3].g.t,!0),s(n,x),s(n,j),s(n,z),s(n,G),s(G,V),s(V,W),s(W,U),s(W,K),s(W,H),s(W,Y),s(Y,X),s(X,re),s(X,ue),s(X,we),s(X,me),s(X,Se),s(Y,je),s(je,Oe),s(je,He),s(je,ye),s(je,Ne),s(Y,Re),s(Re,$e),s(Re,y),s(Y,g),s(Y,w),s(Y,N),s(Y,I),s(Y,Q),s(Y,J),s(Y,se),s(Y,ce),s(Y,ve),s(Y,Te),s(Y,oe),s(Y,pe),s(Y,Be),qe(Y,t[3].p.r,!0),s(V,_e),s(V,Ce),s(Ce,vt),s(Ce,Hl),s(Ce,tl),s(Ce,ct);for(let ft=0;ft<4;ft+=1)wi[ft]&&wi[ft].m(ct,null);qe(ct,t[3].p.c,!0),s(n,Tl),s(n,pl),s(pl,Ut),s(Ut,ht),s(ht,Ye),s(ht,Qe),s(ht,Xe),s(ht,Ue),te(Ue,t[3].p.f),s(Ut,Ze),s(Ut,We),s(We,Je),s(We,xe),s(We,de),s(We,Me),te(Me,t[3].p.m),s(n,Ii),s(n,_l),s(_l,vn),s(vn,St),St.checked=t[3].p.e,s(vn,Oi),s(_l,Ri),gt&>.m(_l,null),s(n,Li),s(n,dl),s(dl,Fi),s(dl,qi),s(dl,Bi),s(dl,Nt),s(Nt,Sl),s(Nt,Nl),s(Nt,Al),qe(Nt,t[3].g.s,!0),s(n,Ui),kt&&kt.m(n,null),s(l,ji),s(l,ke),s(ke,mt),s(ke,Wl),s(ke,zl),le(Pl,zl,null),s(ke,El),s(ke,Gl),s(ke,Hi),s(ke,ll),s(ll,Wi),s(ll,Do),s(ll,Es),s(ll,Io),s(ll,pi),s(pi,jt),jt.checked=t[3].m.i,s(pi,Oo),s(ll,Ro),s(ll,Dl),s(Dl,nl),s(nl,Il),s(Il,Lo);for(let ft=0;ft<7;ft+=1)yi[ft]&&yi[ft].m(nl,null);qe(nl,t[3].m.b,!0),s(Dl,Fo),s(Dl,pt),s(pt,Ol),s(Ol,qo),s(pt,hn),s(pt,bn),s(pt,gn),s(pt,kn),qe(pt,t[3].m.p,!0),s(Dl,Bo),s(Dl,It),te(It,t[3].m.s),s(ke,Uo),s(ke,Vl),s(Vl,jo),s(Vl,Ho),s(Vl,Wo),s(Vl,il),s(il,wn),s(il,yn),qe(il,t[3].m.d,!0),s(ke,zo),s(ke,Cn),s(Cn,Kl),s(Kl,Go),s(Kl,Vo),s(Kl,Ko),s(Kl,Mn),s(Mn,Ht),te(Ht,t[3].m.f),s(Mn,Yo),s(Mn,Ki),s(Cn,Qo),s(Cn,Yl),s(Yl,Xo),s(Yl,Zo),s(Yl,Jo),s(Yl,$n),s($n,Wt),te(Wt,t[3].m.r),s($n,xo),s($n,Yi),s(ke,er),s(ke,Ds),s(ke,tr),s(ke,Ql),s(Ql,Qi),s(Qi,zt),zt.checked=t[3].m.e.e,s(Qi,lr),s(Ql,nr),wt&&wt.m(Ql,null),s(ke,ir),yt&&yt.m(ke,null),s(ke,Is),s(ke,Xi),s(Xi,Gt),Gt.checked=t[3].m.m.e,s(Xi,sr),s(ke,or),Ct&&Ct.m(ke,null),s(l,rr),s(l,tt),s(tt,Zi),s(tt,ar),s(tt,Tn),le(Sn,Tn,null),s(tt,ur),s(tt,_i),s(tt,fr),s(tt,Xl),s(Xl,cr),s(Xl,mr),s(Xl,pr),s(Xl,vl),te(vl,t[3].w.s),s(tt,_r),s(tt,Zl),s(Zl,dr),s(Zl,vr),s(Zl,hr),s(Zl,hl),te(hl,t[3].w.p),s(tt,br),s(tt,Nn),s(Nn,Jl),s(Jl,gr),s(Jl,kr),s(Jl,wr),s(Jl,Ot),s(Ot,An),s(Ot,Pn),s(Ot,En),s(Ot,Dn),qe(Ot,t[3].w.z,!0),s(Nn,yr),s(Nn,xl),s(xl,Cr),s(xl,Mr),s(xl,$r),s(xl,In),s(In,Rt),te(Rt,t[3].w.w),s(In,Tr),s(In,Ji),s(tt,Sr),s(tt,xi),s(xi,es),s(es,Vt),Vt.checked=t[3].w.a,s(es,Nr),s(tt,Ar),s(tt,ts),s(ts,ls),s(ls,Kt),Kt.checked=t[3].w.b,s(ls,Pr),s(l,Er),s(l,ut),s(ut,ns),s(ut,Dr),s(ut,On),le(Rn,On,null),s(ut,Ir),s(ut,en),s(en,Or),s(en,Rr),s(en,Lr),s(en,Rl),s(Rl,sl),s(sl,Ln),s(sl,Fn),qe(sl,t[3].n.m,!0),s(Rl,Fr),s(Rl,At),te(At,t[3].n.i),s(Rl,qr),s(Rl,Pt),le(qn,Pt,null),qe(Pt,t[3].n.s,!0),s(ut,Br),Mt&&Mt.m(ut,null),s(ut,Os),s(ut,as),s(as,us),s(us,Yt),Yt.checked=t[3].n.d,s(us,Ur),s(ut,jr),s(ut,di),s(ut,Hr),s(ut,Ll),s(Ll,Wr),s(Ll,vi),s(vi,Qt),Qt.checked=t[3].n.h,s(vi,zr),s(Ll,Gr),s(Ll,Vr),s(Ll,fs),s(fs,bl),te(bl,t[3].n.n1),s(l,Kr),s(l,Ke),s(Ke,cs),s(Ke,Yr),s(Ke,Bn),le(Un,Bn,null),s(Ke,Qr),s(Ke,hi),s(Ke,Xr),s(Ke,ol),s(ol,Zr),$t&&$t.m(ol,null),s(ol,Rs),s(ol,Jr),s(ol,xr),s(ol,jn),s(jn,gl),te(gl,t[3].q.h),s(jn,ea),s(jn,Xt),te(Xt,t[3].q.p),s(Ke,ta),lt&<.m(Ke,null),s(Ke,Ls),s(Ke,tn),s(tn,la),s(tn,na),s(tn,ia),s(tn,kl),te(kl,t[3].q.u),s(Ke,sa),s(Ke,ln),s(ln,oa),s(ln,ra),s(ln,aa),s(ln,wl),te(wl,t[3].q.a),s(Ke,ua),s(Ke,Hn),s(Hn,Wn),s(Wn,fa),s(Wn,ca),s(Wn,ma),s(Wn,yl),te(yl,t[3].q.c),s(Hn,pa),s(Hn,zn),s(zn,_a),s(zn,da),s(zn,va),s(zn,bt),s(bt,Gn),s(bt,Vn),s(bt,Kn),s(bt,Yn),s(bt,Qn),s(bt,Xn),qe(bt,t[3].q.m,!0),s(Ke,ha),s(Ke,nn),s(nn,ba),s(nn,ga),s(nn,ka),s(nn,Cl),te(Cl,t[3].q.b),s(l,wa),nt&&nt.m(l,null),s(l,Fs),it&&it.m(l,null),s(l,qs),st&&st.m(l,null),s(l,Bs),ot&&ot.m(l,null),s(l,js),s(l,rl),s(rl,ms),s(rl,ya),s(rl,Zn),le(Jn,Zn,null),s(rl,Ca),s(rl,bi),s(rl,Ma),s(rl,gi);for(let ft=0;ft<_t.length;ft+=1)_t[ft]&&_t[ft].m(gi,null);s(l,$a),rt&&rt.m(l,null),s(l,Hs),s(l,Et),s(Et,ps),s(Et,Ta),s(Et,xn),le(ei,xn,null),s(Et,Sa),s(Et,ki),s(Et,Na),s(Et,_s),s(_s,ds),s(ds,Zt),Zt.checked=t[3].d.s,s(ds,Aa),s(Et,Pa),Tt&&Tt.m(Et,null),s(e,Ea),s(e,Fl),s(Fl,Ws),s(Ws,ti),s(Fl,Da),s(Fl,vs),s(vs,li),s(Fl,Ia),s(Fl,hs),M(O,zs,ae),le(sn,O,ae),M(O,Gs,ae),le(on,O,ae),M(O,Vs,ae),le(rn,O,ae),M(O,Ks,ae),le(an,O,ae),Jt=!0,Ys||(Oa=[ee(S,"input",t[15]),ee(L,"change",t[16]),ee(Y,"change",t[17]),ee(ct,"change",t[18]),ee(Ue,"input",t[19]),ee(Me,"input",t[20]),ee(St,"change",t[21]),ee(Nt,"change",t[23]),ee(jt,"change",t[26]),ee(nl,"change",t[27]),ee(pt,"change",t[28]),ee(It,"input",t[29]),ee(il,"change",t[30]),ee(Ht,"input",t[31]),ee(Wt,"input",t[32]),ee(zt,"change",t[33]),ee(Gt,"change",t[36]),ee(vl,"input",t[41]),ee(hl,"input",t[42]),ee(Ot,"change",t[43]),ee(Rt,"input",t[44]),ee(Vt,"change",t[45]),ee(Kt,"change",t[46]),ee(sl,"change",t[47]),ee(At,"input",t[48]),ee(Pt,"change",t[49]),ee(Yt,"change",t[53]),ee(Qt,"change",t[54]),ee(bl,"input",t[55]),ee(gl,"input",t[57]),ee(Xt,"input",t[58]),ee(kl,"input",t[59]),ee(wl,"input",t[60]),ee(yl,"input",t[61]),ee(bt,"change",t[62]),ee(Cl,"input",t[63]),ee(Zt,"change",t[93]),ee(ti,"click",t[8]),ee(li,"click",t[10]),ee(e,"submit",As(t[9]))],Ys=!0)},p(O,ae){if(ae[0]&8&&S.value!==O[3].g.h&&te(S,O[3].g.h),ae[0]&8&&qe(L,O[3].g.t),ae[0]&8&&qe(Y,O[3].p.r),ae[0]&8&&qe(ct,O[3].p.c),ae[0]&8&&he(Ue.value)!==O[3].p.f&&te(Ue,O[3].p.f),ae[0]&8&&he(Me.value)!==O[3].p.m&&te(Me,O[3].p.m),ae[0]&8&&(St.checked=O[3].p.e),O[3].p.e&&O[0].chip!="esp8266"?gt?gt.p(O,ae):(gt=cf(O),gt.c(),gt.m(_l,null)):gt&&(gt.d(1),gt=null),ae[0]&8&&qe(Nt,O[3].g.s),O[3].g.s>0?kt?kt.p(O,ae):(kt=mf(O),kt.c(),kt.m(n,null)):kt&&(kt.d(1),kt=null),ae[0]&8&&(jt.checked=O[3].m.i),(!Jt||ae[0]&8&&zi!==(zi=O[3].m.b!=0))&&(Il.disabled=zi),ae[0]&8&&qe(nl,O[3].m.b),(!Jt||ae[0]&8&&Gi!==(Gi=O[3].m.b!=0))&&(Ol.disabled=Gi),(!Jt||ae[0]&8&&Vi!==(Vi=O[3].m.b==0))&&(pt.disabled=Vi),ae[0]&8&&qe(pt,O[3].m.p),ae[0]&8&&he(It.value)!==O[3].m.s&&te(It,O[3].m.s),ae[0]&8&&qe(il,O[3].m.d),ae[0]&8&&he(Ht.value)!==O[3].m.f&&te(Ht,O[3].m.f),ae[0]&8&&he(Wt.value)!==O[3].m.r&&te(Wt,O[3].m.r),ae[0]&8&&(zt.checked=O[3].m.e.e),O[3].m.e.e?wt?wt.p(O,ae):(wt=pf(O),wt.c(),wt.m(Ql,null)):wt&&(wt.d(1),wt=null),O[3].m.e.e?yt?yt.p(O,ae):(yt=_f(O),yt.c(),yt.m(ke,Is)):yt&&(yt.d(1),yt=null),ae[0]&8&&(Gt.checked=O[3].m.m.e),O[3].m.m.e?Ct?Ct.p(O,ae):(Ct=df(O),Ct.c(),Ct.m(ke,null)):Ct&&(Ct.d(1),Ct=null),ae[0]&8&&vl.value!==O[3].w.s&&te(vl,O[3].w.s),ae[0]&8&&hl.value!==O[3].w.p&&te(hl,O[3].w.p),ae[0]&8&&qe(Ot,O[3].w.z),ae[0]&8&&he(Rt.value)!==O[3].w.w&&te(Rt,O[3].w.w),ae[0]&8&&(Vt.checked=O[3].w.a),ae[0]&8&&(Kt.checked=O[3].w.b),ae[0]&8&&qe(sl,O[3].n.m),(!Jt||ae[0]&8&&is!==(is=O[3].n.m=="dhcp"))&&(At.disabled=is),(!Jt||ae[0]&8&&ss!==(ss=O[3].n.m=="static"))&&(At.required=ss),ae[0]&8&&At.value!==O[3].n.i&&te(At,O[3].n.i),(!Jt||ae[0]&8&&os!==(os=O[3].n.m=="dhcp"))&&(Pt.disabled=os),(!Jt||ae[0]&8&&rs!==(rs=O[3].n.m=="static"))&&(Pt.required=rs),ae[0]&8&&qe(Pt,O[3].n.s),O[3].n.m=="static"?Mt?Mt.p(O,ae):(Mt=vf(O),Mt.c(),Mt.m(ut,Os)):Mt&&(Mt.d(1),Mt=null),ae[0]&8&&(Yt.checked=O[3].n.d),ae[0]&8&&(Qt.checked=O[3].n.h),ae[0]&8&&bl.value!==O[3].n.n1&&te(bl,O[3].n.n1),O[0].chip!="esp8266"?$t?$t.p(O,ae):($t=hf(O),$t.c(),$t.m(ol,Rs)):$t&&($t.d(1),$t=null),ae[0]&8&&gl.value!==O[3].q.h&&te(gl,O[3].q.h),ae[0]&8&&he(Xt.value)!==O[3].q.p&&te(Xt,O[3].q.p),O[3].q.s.e?lt?(lt.p(O,ae),ae[0]&8&&D(lt,1)):(lt=bf(O),lt.c(),D(lt,1),lt.m(Ke,Ls)):lt&&(De(),q(lt,1,1,()=>{lt=null}),Ie()),ae[0]&8&&kl.value!==O[3].q.u&&te(kl,O[3].q.u),ae[0]&8&&wl.value!==O[3].q.a&&te(wl,O[3].q.a),ae[0]&8&&yl.value!==O[3].q.c&&te(yl,O[3].q.c),ae[0]&8&&qe(bt,O[3].q.m),ae[0]&8&&Cl.value!==O[3].q.b&&te(Cl,O[3].q.b),O[3].q.m==3?nt?(nt.p(O,ae),ae[0]&8&&D(nt,1)):(nt=gf(O),nt.c(),D(nt,1),nt.m(l,Fs)):nt&&(De(),q(nt,1,1,()=>{nt=null}),Ie()),O[3].q.m==4?it?(it.p(O,ae),ae[0]&8&&D(it,1)):(it=kf(O),it.c(),D(it,1),it.m(l,qs)):it&&(De(),q(it,1,1,()=>{it=null}),Ie()),O[3].c.es!=null?st?(st.p(O,ae),ae[0]&8&&D(st,1)):(st=wf(O),st.c(),D(st,1),st.m(l,Bs)):st&&(De(),q(st,1,1,()=>{st=null}),Ie()),ae[0]&8&&(Us=O[3].p.r.startsWith("10YNO")||O[3].p.r=="10Y1001A1001A48H"),Us?ot?(ot.p(O,ae),ae[0]&8&&D(ot,1)):(ot=Mf(O),ot.c(),D(ot,1),ot.m(l,js)):ot&&(De(),q(ot,1,1,()=>{ot=null}),Ie()),ae[0]&136){ni=O[7];let Lt;for(Lt=0;Lt20||O[0].chip=="esp8266"?rt?(rt.p(O,ae),ae[0]&1&&D(rt,1)):(rt=Sf(O),rt.c(),D(rt,1),rt.m(l,Hs)):rt&&(De(),q(rt,1,1,()=>{rt=null}),Ie()),ae[0]&8&&(Zt.checked=O[3].d.s),O[3].d.s?Tt?Tt.p(O,ae):(Tt=If(O),Tt.c(),Tt.m(Et,null)):Tt&&(Tt.d(1),Tt=null);const ft={};ae[0]&2&&(ft.active=O[1]),sn.$set(ft);const Ra={};ae[0]&4&&(Ra.active=O[2]),on.$set(Ra);const La={};ae[0]&16&&(La.active=O[4]),rn.$set(La);const Fa={};ae[0]&32&&(Fa.active=O[5]),an.$set(Fa)},i(O){Jt||(D(u.$$.fragment,O),D(F.$$.fragment,O),D(Pl.$$.fragment,O),D(Sn.$$.fragment,O),D(Rn.$$.fragment,O),D(qn.$$.fragment,O),D(Un.$$.fragment,O),D(lt),D(nt),D(it),D(st),D(ot),D(Jn.$$.fragment,O),D(rt),D(ei.$$.fragment,O),D(sn.$$.fragment,O),D(on.$$.fragment,O),D(rn.$$.fragment,O),D(an.$$.fragment,O),Jt=!0)},o(O){q(u.$$.fragment,O),q(F.$$.fragment,O),q(Pl.$$.fragment,O),q(Sn.$$.fragment,O),q(Rn.$$.fragment,O),q(qn.$$.fragment,O),q(Un.$$.fragment,O),q(lt),q(nt),q(it),q(st),q(ot),q(Jn.$$.fragment,O),q(rt),q(ei.$$.fragment,O),q(sn.$$.fragment,O),q(on.$$.fragment,O),q(rn.$$.fragment,O),q(an.$$.fragment,O),Jt=!1},d(O){O&&C(e),ne(u),ne(F),cl(wi,O),gt&>.d(),kt&&kt.d(),ne(Pl),cl(yi,O),wt&&wt.d(),yt&&yt.d(),Ct&&Ct.d(),ne(Sn),ne(Rn),ne(qn),Mt&&Mt.d(),ne(Un),$t&&$t.d(),lt&<.d(),nt&&nt.d(),it&&it.d(),st&&st.d(),ot&&ot.d(),ne(Jn),cl(_t,O),rt&&rt.d(),ne(ei),Tt&&Tt.d(),O&&C(zs),ne(sn,O),O&&C(Gs),ne(on,O),O&&C(Vs),ne(rn,O),O&&C(Ks),ne(an,O),Ys=!1,ze(Oa)}}}async function Tp(){await(await fetch("/reboot",{method:"POST"})).json()}function Sp(t,e,l){let{sysinfo:n={}}=e,i=[{name:"Import gauge",key:"i"},{name:"Export gauge",key:"e"},{name:"Voltage",key:"v"},{name:"Amperage",key:"a"},{name:"Reactive",key:"r"},{name:"Realtime",key:"c"},{name:"Peaks",key:"t"},{name:"Price",key:"p"},{name:"Day plot",key:"d"},{name:"Month plot",key:"m"},{name:"Temperature plot",key:"s"}],o=!0,a=!1,u={g:{t:"",h:"",s:0,u:"",p:""},m:{b:2400,p:11,i:!1,d:0,f:0,r:0,e:{e:!1,k:"",a:""},m:{e:!1,w:!1,v:!1,a:!1,c:!1}},w:{s:"",p:"",w:0,z:255,a:!0,b:!0},n:{m:"",i:"",s:"",g:"",d1:"",d2:"",d:!1,n1:"",n2:"",h:!1},q:{h:"",p:1883,u:"",a:"",b:"",s:{e:!1,c:!1,r:!0,k:!1}},o:{e:"",c:"",u1:"",u2:"",u3:""},t:{t:[0,0,0,0,0,0,0,0,0,0],h:1},p:{e:!1,t:"",r:"",c:"",m:1,f:null},d:{s:!1,t:!1,l:5},u:{i:0,e:0,v:0,a:0,r:0,c:0,t:0,p:0,d:0,m:0,s:0},i:{h:{p:null,u:!0},a:null,l:{p:null,i:!1},r:{r:null,g:null,b:null,i:!1},t:{d:null,a:null},v:{p:null,d:{v:null,g:null},o:null,m:null,b:null}},h:{t:"",h:"",n:""},c:{es:null}};$i.subscribe(ke=>{ke.version&&(l(3,u=ke),l(1,o=!1))}),zm();let c=!1,f=!1;async function p(){if(confirm("Are you sure you want to factory reset the device?")){l(4,c=!0);const ke=new URLSearchParams;ke.append("perform","true");let Wl=await(await fetch("/reset",{method:"POST",body:ke})).json();l(4,c=!1),l(5,f=Wl.success)}}async function _(ke){l(2,a=!0);const mt=new FormData(ke.target),Wl=new URLSearchParams;for(let El of mt){const[Gl,Hi]=El;Wl.append(Gl,Hi)}let Pl=await(await fetch("/save",{method:"POST",body:Wl})).json();Bt.update(El=>(El.booting=Pl.reboot,El.ui=u.u,El)),l(2,a=!1),ai("/")}const b=function(){confirm("Are you sure you want to reboot the device?")&&(Bt.update(ke=>(ke.booting=!0,ke)),Tp())};async function v(){confirm("Are you sure you want to delete CA?")&&(await(await fetch("/mqtt-ca",{method:"POST"})).text(),$i.update(mt=>(mt.q.s.c=!1,mt)))}async function d(){confirm("Are you sure you want to delete cert?")&&(await(await fetch("/mqtt-cert",{method:"POST"})).text(),$i.update(mt=>(mt.q.s.r=!1,mt)))}async function k(){confirm("Are you sure you want to delete key?")&&(await(await fetch("/mqtt-key",{method:"POST"})).text(),$i.update(mt=>(mt.q.s.k=!1,mt)))}const A=function(){u.q.s.e?u.q.p==1883&&l(3,u.q.p=8883,u):u.q.p==8883&&l(3,u.q.p=1883,u)};let S=44;function T(){u.g.h=this.value,l(3,u)}function E(){u.g.t=dt(this),l(3,u)}function B(){u.p.r=dt(this),l(3,u)}function P(){u.p.c=dt(this),l(3,u)}function R(){u.p.f=he(this.value),l(3,u)}function L(){u.p.m=he(this.value),l(3,u)}function F(){u.p.e=this.checked,l(3,u)}function x(){u.p.t=this.value,l(3,u)}function j(){u.g.s=dt(this),l(3,u)}function z(){u.g.u=this.value,l(3,u)}function G(){u.g.p=this.value,l(3,u)}function V(){u.m.i=this.checked,l(3,u)}function W(){u.m.b=dt(this),l(3,u)}function U(){u.m.p=dt(this),l(3,u)}function K(){u.m.s=he(this.value),l(3,u)}function H(){u.m.d=dt(this),l(3,u)}function Y(){u.m.f=he(this.value),l(3,u)}function X(){u.m.r=he(this.value),l(3,u)}function re(){u.m.e.e=this.checked,l(3,u)}function ue(){u.m.e.k=this.value,l(3,u)}function we(){u.m.e.a=this.value,l(3,u)}function me(){u.m.m.e=this.checked,l(3,u)}function Se(){u.m.m.w=he(this.value),l(3,u)}function je(){u.m.m.v=he(this.value),l(3,u)}function Oe(){u.m.m.a=he(this.value),l(3,u)}function He(){u.m.m.c=he(this.value),l(3,u)}function ye(){u.w.s=this.value,l(3,u)}function Ne(){u.w.p=this.value,l(3,u)}function Re(){u.w.z=dt(this),l(3,u)}function $e(){u.w.w=he(this.value),l(3,u)}function y(){u.w.a=this.checked,l(3,u)}function g(){u.w.b=this.checked,l(3,u)}function w(){u.n.m=dt(this),l(3,u)}function N(){u.n.i=this.value,l(3,u)}function I(){u.n.s=dt(this),l(3,u)}function Q(){u.n.g=this.value,l(3,u)}function J(){u.n.d1=this.value,l(3,u)}function se(){u.n.d2=this.value,l(3,u)}function ce(){u.n.d=this.checked,l(3,u)}function ve(){u.n.h=this.checked,l(3,u)}function Te(){u.n.n1=this.value,l(3,u)}function oe(){u.q.s.e=this.checked,l(3,u)}function pe(){u.q.h=this.value,l(3,u)}function Be(){u.q.p=he(this.value),l(3,u)}function _e(){u.q.u=this.value,l(3,u)}function Ce(){u.q.a=this.value,l(3,u)}function vt(){u.q.c=this.value,l(3,u)}function Hl(){u.q.m=dt(this),l(3,u)}function tl(){u.q.b=this.value,l(3,u)}function ct(){u.o.e=this.value,l(3,u)}function Tl(){u.o.c=this.value,l(3,u)}function pl(){u.o.u1=this.value,l(3,u)}function Ut(){u.o.u2=this.value,l(3,u)}function ht(){u.o.u3=this.value,l(3,u)}function Ye(){u.h.t=this.value,l(3,u)}function Qe(){u.h.h=this.value,l(3,u)}function Xe(){u.h.n=this.value,l(3,u)}function Ue(){u.c.es=this.checked,l(3,u)}function Ze(ke){u.t.t[ke]=he(this.value),l(3,u)}function We(){u.t.h=he(this.value),l(3,u)}function Je(ke){u.u[ke.key]=dt(this),l(3,u)}function xe(){u.i.h.u=this.checked,l(3,u)}function de(){u.i.h.p=dt(this),l(3,u)}function Me(){u.i.a=he(this.value),l(3,u)}function Ii(){u.i.l.i=this.checked,l(3,u)}function _l(){u.i.l.p=he(this.value),l(3,u)}function vn(){u.i.r.i=this.checked,l(3,u)}function St(){u.i.r.r=he(this.value),l(3,u)}function Oi(){u.i.r.g=he(this.value),l(3,u)}function Ri(){u.i.r.b=he(this.value),l(3,u)}function Li(){u.i.t.d=he(this.value),l(3,u)}function dl(){u.i.t.a=he(this.value),l(3,u)}function Fi(){u.i.v.p=he(this.value),l(3,u)}function qi(){u.i.v.d.v=he(this.value),l(3,u)}function Bi(){u.i.v.d.g=he(this.value),l(3,u)}function Nt(){u.i.v.o=he(this.value),l(3,u)}function Sl(){u.i.v.m=he(this.value),l(3,u)}function Nl(){u.i.v.b=he(this.value),l(3,u)}function Al(){u.d.s=this.checked,l(3,u)}function Ui(){u.d.t=this.checked,l(3,u)}function ji(){u.d.l=dt(this),l(3,u)}return t.$$set=ke=>{"sysinfo"in ke&&l(0,n=ke.sysinfo)},t.$$.update=()=>{t.$$.dirty[0]&1&&l(6,S=n.chip=="esp8266"?16:n.chip=="esp32s2"?44:39)},[n,o,a,u,c,f,S,i,p,_,b,v,d,k,A,T,E,B,P,R,L,F,x,j,z,G,V,W,U,K,H,Y,X,re,ue,we,me,Se,je,Oe,He,ye,Ne,Re,$e,y,g,w,N,I,Q,J,se,ce,ve,Te,oe,pe,Be,_e,Ce,vt,Hl,tl,ct,Tl,pl,Ut,ht,Ye,Qe,Xe,Ue,Ze,We,Je,xe,de,Me,Ii,_l,vn,St,Oi,Ri,Li,dl,Fi,qi,Bi,Nt,Sl,Nl,Al,Ui,ji]}class Np extends Ee{constructor(e){super(),Pe(this,e,Sp,$p,Ae,{sysinfo:0},null,[-1,-1,-1,-1])}}function Rf(t,e,l){const n=t.slice();return n[20]=e[l],n}function Ap(t){let e=be(t[1].chip,t[1].board)+"",l;return{c(){l=$(e)},m(n,i){M(n,l,i)},p(n,i){i&2&&e!==(e=be(n[1].chip,n[1].board)+"")&&Z(l,e)},d(n){n&&C(l)}}}function Lf(t){let e,l,n=t[1].apmac+"",i,o,a,u,c,f,p,_,b,v=tu(t[1])+"",d,k,A=t[1].boot_reason+"",S,T,E=t[1].ex_cause+"",B,P,R;const L=[Ep,Pp],F=[];function x(j,z){return j[0].u>0?0:1}return c=x(t),f=F[c]=L[c](t),{c(){e=m("div"),l=$("AP MAC: "),i=$(n),o=h(),a=m("div"),u=$(`Last boot: - `),f.c(),p=h(),_=m("div"),b=$("Reason: "),d=$(v),k=$(" ("),S=$(A),T=$("/"),B=$(E),P=$(")"),r(e,"class","my-2"),r(a,"class","my-2"),r(_,"class","my-2")},m(j,z){M(j,e,z),s(e,l),s(e,i),M(j,o,z),M(j,a,z),s(a,u),F[c].m(a,null),M(j,p,z),M(j,_,z),s(_,b),s(_,d),s(_,k),s(_,S),s(_,T),s(_,B),s(_,P),R=!0},p(j,z){(!R||z&2)&&n!==(n=j[1].apmac+"")&&Z(i,n);let G=c;c=x(j),c===G?F[c].p(j,z):(De(),q(F[G],1,1,()=>{F[G]=null}),Ie(),f=F[c],f?f.p(j,z):(f=F[c]=L[c](j),f.c()),D(f,1),f.m(a,null)),(!R||z&2)&&v!==(v=tu(j[1])+"")&&Z(d,v),(!R||z&2)&&A!==(A=j[1].boot_reason+"")&&Z(S,A),(!R||z&2)&&E!==(E=j[1].ex_cause+"")&&Z(B,E)},i(j){R||(D(f),R=!0)},o(j){q(f),R=!1},d(j){j&&C(e),j&&C(o),j&&C(a),F[c].d(),j&&C(p),j&&C(_)}}}function Pp(t){let e;return{c(){e=$("-")},m(l,n){M(l,e,n)},p:fe,i:fe,o:fe,d(l){l&&C(e)}}}function Ep(t){let e,l;return e=new Yc({props:{timestamp:new Date(new Date().getTime()-t[0].u*1e3),fullTimeColor:""}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p(n,i){const o={};i&1&&(o.timestamp=new Date(new Date().getTime()-n[0].u*1e3)),e.$set(o)},i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function Dp(t){let e;return{c(){e=m("span"),e.textContent="Update consents",r(e,"class","btn-pri-sm")},m(l,n){M(l,e,n)},p:fe,d(l){l&&C(e)}}}function Ff(t){let e,l,n,i,o,a=Ss(t[1].meter.mfg)+"",u,c,f,p,_=(t[1].meter.model?t[1].meter.model:"unknown")+"",b,v,d,k,A=(t[1].meter.id?t[1].meter.id:"unknown")+"",S;return{c(){e=m("div"),l=m("strong"),l.textContent="Meter",n=h(),i=m("div"),o=$("Manufacturer: "),u=$(a),c=h(),f=m("div"),p=$("Model: "),b=$(_),v=h(),d=m("div"),k=$("ID: "),S=$(A),r(l,"class","text-sm"),r(i,"class","my-2"),r(f,"class","my-2"),r(d,"class","my-2"),r(e,"class","cnt")},m(T,E){M(T,e,E),s(e,l),s(e,n),s(e,i),s(i,o),s(i,u),s(e,c),s(e,f),s(f,p),s(f,b),s(e,v),s(e,d),s(d,k),s(d,S)},p(T,E){E&2&&a!==(a=Ss(T[1].meter.mfg)+"")&&Z(u,a),E&2&&_!==(_=(T[1].meter.model?T[1].meter.model:"unknown")+"")&&Z(b,_),E&2&&A!==(A=(T[1].meter.id?T[1].meter.id:"unknown")+"")&&Z(S,A)},d(T){T&&C(e)}}}function qf(t){let e,l,n,i,o,a=t[1].net.ip+"",u,c,f,p,_=t[1].net.mask+"",b,v,d,k,A=t[1].net.gw+"",S,T,E,B,P=t[1].net.dns1+"",R,L,F=t[1].net.dns2&&Bf(t);return{c(){e=m("div"),l=m("strong"),l.textContent="Network",n=h(),i=m("div"),o=$("IP: "),u=$(a),c=h(),f=m("div"),p=$("Mask: "),b=$(_),v=h(),d=m("div"),k=$("Gateway: "),S=$(A),T=h(),E=m("div"),B=$("DNS: "),R=$(P),L=h(),F&&F.c(),r(l,"class","text-sm"),r(i,"class","my-2"),r(f,"class","my-2"),r(d,"class","my-2"),r(E,"class","my-2"),r(e,"class","cnt")},m(x,j){M(x,e,j),s(e,l),s(e,n),s(e,i),s(i,o),s(i,u),s(e,c),s(e,f),s(f,p),s(f,b),s(e,v),s(e,d),s(d,k),s(d,S),s(e,T),s(e,E),s(E,B),s(E,R),s(E,L),F&&F.m(E,null)},p(x,j){j&2&&a!==(a=x[1].net.ip+"")&&Z(u,a),j&2&&_!==(_=x[1].net.mask+"")&&Z(b,_),j&2&&A!==(A=x[1].net.gw+"")&&Z(S,A),j&2&&P!==(P=x[1].net.dns1+"")&&Z(R,P),x[1].net.dns2?F?F.p(x,j):(F=Bf(x),F.c(),F.m(E,null)):F&&(F.d(1),F=null)},d(x){x&&C(e),F&&F.d()}}}function Bf(t){let e,l=t[1].net.dns2+"",n;return{c(){e=$("/ "),n=$(l)},m(i,o){M(i,e,o),M(i,n,o)},p(i,o){o&2&&l!==(l=i[1].net.dns2+"")&&Z(n,l)},d(i){i&&C(e),i&&C(n)}}}function Uf(t){let e,l,n,i=t[1].upgrade.t+"",o,a,u=t[1].version+"",c,f,p=t[1].upgrade.x+"",_,b,v=t[1].upgrade.e+"",d,k;return{c(){e=m("div"),l=m("div"),n=$("Previous upgrade attempt ("),o=$(i),a=$(") does not match current version ("),c=$(u),f=$(") ["),_=$(p),b=$("/"),d=$(v),k=$("]"),r(l,"class","bd-yellow"),r(e,"class","my-2")},m(A,S){M(A,e,S),s(e,l),s(l,n),s(l,o),s(l,a),s(l,c),s(l,f),s(l,_),s(l,b),s(l,d),s(l,k)},p(A,S){S&2&&i!==(i=A[1].upgrade.t+"")&&Z(o,i),S&2&&u!==(u=A[1].version+"")&&Z(c,u),S&2&&p!==(p=A[1].upgrade.x+"")&&Z(_,p),S&2&&v!==(v=A[1].upgrade.e+"")&&Z(d,v)},d(A){A&&C(e)}}}function jf(t){let e,l,n,i=t[2].tag_name+"",o,a,u,c,f,p,_=(t[1].security==0||t[0].a)&&t[1].fwconsent===1&&t[2]&&t[2].tag_name!=t[1].version&&Hf(t),b=t[1].fwconsent===2&&Wf();return{c(){e=m("div"),l=$(`Latest version: - `),n=m("a"),o=$(i),u=h(),_&&_.c(),c=h(),b&&b.c(),f=Ge(),r(n,"href",a=t[2].html_url),r(n,"class","ml-2 text-blue-600 hover:text-blue-800"),r(n,"target","_blank"),r(n,"rel","noreferrer"),r(e,"class","my-2 flex")},m(v,d){M(v,e,d),s(e,l),s(e,n),s(n,o),s(e,u),_&&_.m(e,null),M(v,c,d),b&&b.m(v,d),M(v,f,d),p=!0},p(v,d){(!p||d&4)&&i!==(i=v[2].tag_name+"")&&Z(o,i),(!p||d&4&&a!==(a=v[2].html_url))&&r(n,"href",a),(v[1].security==0||v[0].a)&&v[1].fwconsent===1&&v[2]&&v[2].tag_name!=v[1].version?_?(_.p(v,d),d&7&&D(_,1)):(_=Hf(v),_.c(),D(_,1),_.m(e,null)):_&&(De(),q(_,1,1,()=>{_=null}),Ie()),v[1].fwconsent===2?b||(b=Wf(),b.c(),b.m(f.parentNode,f)):b&&(b.d(1),b=null)},i(v){p||(D(_),p=!0)},o(v){q(_),p=!1},d(v){v&&C(e),_&&_.d(),v&&C(c),b&&b.d(v),v&&C(f)}}}function Hf(t){let e,l,n,i,o,a;return n=new Qc({}),{c(){e=m("div"),l=m("button"),ie(n.$$.fragment),r(e,"class","flex-none ml-2 text-green-500"),r(e,"title","Install this version")},m(u,c){M(u,e,c),s(e,l),le(n,l,null),i=!0,o||(a=ee(l,"click",t[10]),o=!0)},p:fe,i(u){i||(D(n.$$.fragment,u),i=!0)},o(u){q(n.$$.fragment,u),i=!1},d(u){u&&C(e),ne(n),o=!1,a()}}}function Wf(t){let e;return{c(){e=m("div"),e.innerHTML='
You have disabled one-click firmware upgrade, link to self-upgrade is disabled
',r(e,"class","my-2")},m(l,n){M(l,e,n)},d(l){l&&C(e)}}}function zf(t){let e,l=Ns(be(t[1].chip,t[1].board))+"",n;return{c(){e=m("div"),n=$(l),r(e,"class","bd-red")},m(i,o){M(i,e,o),s(e,n)},p(i,o){o&2&&l!==(l=Ns(be(i[1].chip,i[1].board))+"")&&Z(n,l)},d(i){i&&C(e)}}}function Gf(t){let e,l,n,i,o,a;function u(p,_){return p[4].length==0?Op:Ip}let c=u(t),f=c(t);return{c(){e=m("div"),l=m("form"),n=m("input"),i=h(),f.c(),oc(n,"display","none"),r(n,"name","file"),r(n,"type","file"),r(n,"accept",".bin"),r(l,"action","/firmware"),r(l,"enctype","multipart/form-data"),r(l,"method","post"),r(l,"autocomplete","off"),r(e,"class","my-2 flex")},m(p,_){M(p,e,_),s(e,l),s(l,n),t[12](n),s(l,i),f.m(l,null),o||(a=[ee(n,"change",t[13]),ee(l,"submit",t[15])],o=!0)},p(p,_){c===(c=u(p))&&f?f.p(p,_):(f.d(1),f=c(p),f&&(f.c(),f.m(l,null)))},d(p){p&&C(e),t[12](null),f.d(),o=!1,ze(a)}}}function Ip(t){let e=t[4][0].name+"",l,n,i;return{c(){l=$(e),n=h(),i=m("button"),i.textContent="Upload",r(i,"type","submit"),r(i,"class","btn-pri-sm float-right")},m(o,a){M(o,l,a),M(o,n,a),M(o,i,a)},p(o,a){a&16&&e!==(e=o[4][0].name+"")&&Z(l,e)},d(o){o&&C(l),o&&C(n),o&&C(i)}}}function Op(t){let e,l,n;return{c(){e=m("button"),e.textContent="Select firmware file for upgrade",r(e,"type","button"),r(e,"class","btn-pri-sm float-right")},m(i,o){M(i,e,o),l||(n=ee(e,"click",t[14]),l=!0)},p:fe,d(i){i&&C(e),l=!1,n()}}}function Vf(t){let e,l,n,i,o,a,u,c,f,p,_,b,v,d,k=t[9],A=[];for(let P=0;P Include Secrets
(SSID, PSK, passwords and tokens)',c=h(),S&&S.c(),f=h(),p=m("form"),_=m("input"),b=h(),B.c(),r(l,"class","text-sm"),r(u,"class","my-1 mx-3 col-span-2"),r(o,"class","grid grid-cols-2"),r(i,"method","get"),r(i,"action","/configfile.cfg"),r(i,"autocomplete","off"),oc(_,"display","none"),r(_,"name","file"),r(_,"type","file"),r(_,"accept",".cfg"),r(p,"action","/configfile"),r(p,"enctype","multipart/form-data"),r(p,"method","post"),r(p,"autocomplete","off"),r(e,"class","cnt")},m(P,R){M(P,e,R),s(e,l),s(e,n),s(e,i),s(i,o);for(let L=0;L{N=null}),Ie());const _e={};pe&8388608&&(_e.$$scope={dirty:pe,ctx:oe}),x.$set(_e),oe[1].meter?I?I.p(oe,pe):(I=Ff(oe),I.c(),I.m(e,V)):I&&(I.d(1),I=null),oe[1].net?Q?Q.p(oe,pe):(Q=qf(oe),Q.c(),Q.m(e,W)):Q&&(Q.d(1),Q=null),(!y||pe&2)&&re!==(re=oe[1].version+"")&&Z(ue,re),oe[1].upgrade.t&&oe[1].upgrade.t!=oe[1].version?J?J.p(oe,pe):(J=Uf(oe),J.c(),J.m(U,me)):J&&(J.d(1),J=null),oe[2]?se?(se.p(oe,pe),pe&4&&D(se,1)):(se=jf(oe),se.c(),D(se,1),se.m(U,Se)):se&&(De(),q(se,1,1,()=>{se=null}),Ie()),pe&3&&(je=(oe[1].security==0||oe[0].a)&&ui(oe[1].board)),je?ce?ce.p(oe,pe):(ce=zf(oe),ce.c(),ce.m(U,Oe)):ce&&(ce.d(1),ce=null),oe[1].security==0||oe[0].a?ve?ve.p(oe,pe):(ve=Gf(oe),ve.c(),ve.m(U,null)):ve&&(ve.d(1),ve=null),oe[1].security==0||oe[0].a?Te?Te.p(oe,pe):(Te=Vf(oe),Te.c(),Te.m(e,null)):Te&&(Te.d(1),Te=null);const Ce={};pe&32&&(Ce.active=oe[5]),Ne.$set(Ce);const vt={};pe&256&&(vt.active=oe[8]),$e.$set(vt)},i(oe){y||(D(A.$$.fragment,oe),D(N),D(x.$$.fragment,oe),D(se),D(Ne.$$.fragment,oe),D($e.$$.fragment,oe),y=!0)},o(oe){q(A.$$.fragment,oe),q(N),q(x.$$.fragment,oe),q(se),q(Ne.$$.fragment,oe),q($e.$$.fragment,oe),y=!1},d(oe){oe&&C(e),ne(A),N&&N.d(),ne(x),I&&I.d(),Q&&Q.d(),J&&J.d(),se&&se.d(),ce&&ce.d(),ve&&ve.d(),Te&&Te.d(),oe&&C(ye),ne(Ne,oe),oe&&C(Re),ne($e,oe),g=!1,w()}}}async function qp(){await(await fetch("/reboot",{method:"POST"})).json()}function Bp(t,e,l){let{data:n}=e,{sysinfo:i}=e,o=[{name:"WiFi",key:"iw"},{name:"MQTT",key:"im"},{name:"Web",key:"ie"},{name:"Meter",key:"it"},{name:"Thresholds",key:"ih"},{name:"GPIO",key:"ig"},{name:"NTP",key:"in"},{name:"Price API",key:"is"}],a={};Ao.subscribe(L=>{l(2,a=Kc(i.version,L)),a||l(2,a=L[0])});function u(){confirm("Do you want to upgrade this device to "+a.tag_name+"?")&&(i.board!=2&&i.board!=4&&i.board!=7||confirm(Ns(be(i.chip,i.board))))&&(Bt.update(L=>(L.upgrading=!0,L)),Vc(a.tag_name))}const c=function(){confirm("Are you sure you want to reboot the device?")&&(Bt.update(L=>(L.booting=!0,L)),qp())};let f,p=[],_=!1,b,v=[],d=!1;$o();function k(L){$s[L?"unshift":"push"](()=>{f=L,l(3,f)})}function A(){p=this.files,l(4,p)}const S=()=>{f.click()},T=()=>l(5,_=!0);function E(L){$s[L?"unshift":"push"](()=>{b=L,l(6,b)})}function B(){v=this.files,l(7,v)}const P=()=>{b.click()},R=()=>l(8,d=!0);return t.$$set=L=>{"data"in L&&l(0,n=L.data),"sysinfo"in L&&l(1,i=L.sysinfo)},[n,i,a,f,p,_,b,v,d,o,u,c,k,A,S,T,E,B,P,R]}class Up extends Ee{constructor(e){super(),Pe(this,e,Bp,Fp,Ae,{data:0,sysinfo:1})}}function Qf(t){let e,l,n=be(t[0],7)+"",i,o,a=be(t[0],5)+"",u,c,f=be(t[0],4)+"",p,_,b=be(t[0],3)+"",v,d,k,A,S=be(t[0],2)+"",T,E,B=be(t[0],1)+"",P,R,L=be(t[0],0)+"",F,x,j,z,G=be(t[0],101)+"",V,W,U=be(t[0],100)+"",K;return{c(){e=m("optgroup"),l=m("option"),i=$(n),o=m("option"),u=$(a),c=m("option"),p=$(f),_=m("option"),v=$(b),d=h(),k=m("optgroup"),A=m("option"),T=$(S),E=m("option"),P=$(B),R=m("option"),F=$(L),x=h(),j=m("optgroup"),z=m("option"),V=$(G),W=m("option"),K=$(U),l.__value=7,l.value=l.__value,o.__value=5,o.value=o.__value,c.__value=4,c.value=c.__value,_.__value=3,_.value=_.__value,r(e,"label","amsleser.no"),A.__value=2,A.value=A.__value,E.__value=1,E.value=E.__value,R.__value=0,R.value=R.__value,r(k,"label","Custom hardware"),z.__value=101,z.value=z.__value,W.__value=100,W.value=W.__value,r(j,"label","Generic hardware")},m(H,Y){M(H,e,Y),s(e,l),s(l,i),s(e,o),s(o,u),s(e,c),s(c,p),s(e,_),s(_,v),M(H,d,Y),M(H,k,Y),s(k,A),s(A,T),s(k,E),s(E,P),s(k,R),s(R,F),M(H,x,Y),M(H,j,Y),s(j,z),s(z,V),s(j,W),s(W,K)},p(H,Y){Y&1&&n!==(n=be(H[0],7)+"")&&Z(i,n),Y&1&&a!==(a=be(H[0],5)+"")&&Z(u,a),Y&1&&f!==(f=be(H[0],4)+"")&&Z(p,f),Y&1&&b!==(b=be(H[0],3)+"")&&Z(v,b),Y&1&&S!==(S=be(H[0],2)+"")&&Z(T,S),Y&1&&B!==(B=be(H[0],1)+"")&&Z(P,B),Y&1&&L!==(L=be(H[0],0)+"")&&Z(F,L),Y&1&&G!==(G=be(H[0],101)+"")&&Z(V,G),Y&1&&U!==(U=be(H[0],100)+"")&&Z(K,U)},d(H){H&&C(e),H&&C(d),H&&C(k),H&&C(x),H&&C(j)}}}function Xf(t){let e,l,n=be(t[0],201)+"",i,o,a=be(t[0],202)+"",u,c,f=be(t[0],203)+"",p,_,b=be(t[0],200)+"",v;return{c(){e=m("optgroup"),l=m("option"),i=$(n),o=m("option"),u=$(a),c=m("option"),p=$(f),_=m("option"),v=$(b),l.__value=201,l.value=l.__value,o.__value=202,o.value=o.__value,c.__value=203,c.value=c.__value,_.__value=200,_.value=_.__value,r(e,"label","Generic hardware")},m(d,k){M(d,e,k),s(e,l),s(l,i),s(e,o),s(o,u),s(e,c),s(c,p),s(e,_),s(_,v)},p(d,k){k&1&&n!==(n=be(d[0],201)+"")&&Z(i,n),k&1&&a!==(a=be(d[0],202)+"")&&Z(u,a),k&1&&f!==(f=be(d[0],203)+"")&&Z(p,f),k&1&&b!==(b=be(d[0],200)+"")&&Z(v,b)},d(d){d&&C(e)}}}function Zf(t){let e,l,n=be(t[0],7)+"",i,o,a=be(t[0],6)+"",u,c,f=be(t[0],5)+"",p,_,b,v,d=be(t[0],51)+"",k,A,S=be(t[0],50)+"",T;return{c(){e=m("optgroup"),l=m("option"),i=$(n),o=m("option"),u=$(a),c=m("option"),p=$(f),_=h(),b=m("optgroup"),v=m("option"),k=$(d),A=m("option"),T=$(S),l.__value=7,l.value=l.__value,o.__value=6,o.value=o.__value,c.__value=5,c.value=c.__value,r(e,"label","amsleser.no"),v.__value=51,v.value=v.__value,A.__value=50,A.value=A.__value,r(b,"label","Generic hardware")},m(E,B){M(E,e,B),s(e,l),s(l,i),s(e,o),s(o,u),s(e,c),s(c,p),M(E,_,B),M(E,b,B),s(b,v),s(v,k),s(b,A),s(A,T)},p(E,B){B&1&&n!==(n=be(E[0],7)+"")&&Z(i,n),B&1&&a!==(a=be(E[0],6)+"")&&Z(u,a),B&1&&f!==(f=be(E[0],5)+"")&&Z(p,f),B&1&&d!==(d=be(E[0],51)+"")&&Z(k,d),B&1&&S!==(S=be(E[0],50)+"")&&Z(T,S)},d(E){E&&C(e),E&&C(_),E&&C(b)}}}function Jf(t){let e,l,n=be(t[0],8)+"",i,o,a,u,c=be(t[0],71)+"",f,p,_=be(t[0],70)+"",b;return{c(){e=m("optgroup"),l=m("option"),i=$(n),o=h(),a=m("optgroup"),u=m("option"),f=$(c),p=m("option"),b=$(_),l.__value=8,l.value=l.__value,r(e,"label","Custom hardware"),u.__value=71,u.value=u.__value,p.__value=70,p.value=p.__value,r(a,"label","Generic hardware")},m(v,d){M(v,e,d),s(e,l),s(l,i),M(v,o,d),M(v,a,d),s(a,u),s(u,f),s(a,p),s(p,b)},p(v,d){d&1&&n!==(n=be(v[0],8)+"")&&Z(i,n),d&1&&c!==(c=be(v[0],71)+"")&&Z(f,c),d&1&&_!==(_=be(v[0],70)+"")&&Z(b,_)},d(v){v&&C(e),v&&C(o),v&&C(a)}}}function xf(t){let e,l,n=be(t[0],200)+"",i;return{c(){e=m("optgroup"),l=m("option"),i=$(n),l.__value=200,l.value=l.__value,r(e,"label","Generic hardware")},m(o,a){M(o,e,a),s(e,l),s(l,i)},p(o,a){a&1&&n!==(n=be(o[0],200)+"")&&Z(i,n)},d(o){o&&C(e)}}}function jp(t){let e,l,n,i,o,a,u,c=t[0]=="esp8266"&&Qf(t),f=t[0]=="esp32"&&Xf(t),p=t[0]=="esp32s2"&&Zf(t),_=t[0]=="esp32c3"&&Jf(t),b=t[0]=="esp32solo"&&xf(t);return{c(){e=m("option"),l=h(),c&&c.c(),n=h(),f&&f.c(),i=h(),p&&p.c(),o=h(),_&&_.c(),a=h(),b&&b.c(),u=Ge(),e.__value=-1,e.value=e.__value},m(v,d){M(v,e,d),M(v,l,d),c&&c.m(v,d),M(v,n,d),f&&f.m(v,d),M(v,i,d),p&&p.m(v,d),M(v,o,d),_&&_.m(v,d),M(v,a,d),b&&b.m(v,d),M(v,u,d)},p(v,[d]){v[0]=="esp8266"?c?c.p(v,d):(c=Qf(v),c.c(),c.m(n.parentNode,n)):c&&(c.d(1),c=null),v[0]=="esp32"?f?f.p(v,d):(f=Xf(v),f.c(),f.m(i.parentNode,i)):f&&(f.d(1),f=null),v[0]=="esp32s2"?p?p.p(v,d):(p=Zf(v),p.c(),p.m(o.parentNode,o)):p&&(p.d(1),p=null),v[0]=="esp32c3"?_?_.p(v,d):(_=Jf(v),_.c(),_.m(a.parentNode,a)):_&&(_.d(1),_=null),v[0]=="esp32solo"?b?b.p(v,d):(b=xf(v),b.c(),b.m(u.parentNode,u)):b&&(b.d(1),b=null)},i:fe,o:fe,d(v){v&&C(e),v&&C(l),c&&c.d(v),v&&C(n),f&&f.d(v),v&&C(i),p&&p.d(v),v&&C(o),_&&_.d(v),v&&C(a),b&&b.d(v),v&&C(u)}}}function Hp(t,e,l){let{chip:n}=e;return t.$$set=i=>{"chip"in i&&l(0,n=i.chip)},[n]}class Wp extends Ee{constructor(e){super(),Pe(this,e,Hp,jp,Ae,{chip:0})}}function ec(t){let e;return{c(){e=m("div"),e.textContent="WARNING: Changing this configuration will affect basic configuration of your device. Only make changes here if instructed by vendor",r(e,"class","bd-red")},m(l,n){M(l,e,n)},d(l){l&&C(e)}}}function tc(t){let e,l,n,i,o,a,u;return a=new Zc({props:{chip:t[0].chip}}),{c(){e=m("div"),l=$("HAN GPIO"),n=m("br"),i=h(),o=m("select"),ie(a.$$.fragment),r(o,"name","vh"),r(o,"class","in-s"),r(e,"class","my-3")},m(c,f){M(c,e,f),s(e,l),s(e,n),s(e,i),s(e,o),le(a,o,null),u=!0},p(c,f){const p={};f&1&&(p.chip=c[0].chip),a.$set(p)},i(c){u||(D(a.$$.fragment,c),u=!0)},o(c){q(a.$$.fragment,c),u=!1},d(c){c&&C(e),ne(a)}}}function zp(t){let e,l,n,i,o,a,u,c,f,p,_,b,v,d,k,A,S,T,E,B,P,R,L,F,x,j,z,G,V,W=t[0].usrcfg&&ec();d=new Wp({props:{chip:t[0].chip}});let U=t[0].board&&t[0].board>20&&tc(t);return j=new Dt({props:{active:t[1],message:"Saving device configuration"}}),{c(){e=m("div"),l=m("div"),n=m("form"),i=m("input"),o=h(),a=m("strong"),a.textContent="Initial configuration",u=h(),W&&W.c(),c=h(),f=m("div"),p=$("Board type"),_=m("br"),b=h(),v=m("select"),ie(d.$$.fragment),k=h(),U&&U.c(),A=h(),S=m("div"),T=m("label"),E=m("input"),B=$(" Clear all other configuration"),P=h(),R=m("div"),R.innerHTML='',L=h(),F=m("span"),F.textContent=" ",x=h(),ie(j.$$.fragment),r(i,"type","hidden"),r(i,"name","v"),i.value="true",r(a,"class","text-sm"),r(v,"name","vb"),r(v,"class","in-s"),t[0].board===void 0&&et(()=>t[4].call(v)),r(f,"class","my-3"),r(E,"type","checkbox"),r(E,"name","vr"),E.__value="true",E.value=E.__value,r(E,"class","rounded mb-1"),r(S,"class","my-3"),r(R,"class","my-3"),r(F,"class","clear-both"),r(n,"autocomplete","off"),r(l,"class","cnt"),r(e,"class","grid xl:grid-cols-4 lg:grid-cols-3 md:grid-cols-2")},m(K,H){M(K,e,H),s(e,l),s(l,n),s(n,i),s(n,o),s(n,a),s(n,u),W&&W.m(n,null),s(n,c),s(n,f),s(f,p),s(f,_),s(f,b),s(f,v),le(d,v,null),qe(v,t[0].board,!0),s(n,k),U&&U.m(n,null),s(n,A),s(n,S),s(S,T),s(T,E),E.checked=t[2],s(T,B),s(n,P),s(n,R),s(n,L),s(n,F),M(K,x,H),le(j,K,H),z=!0,G||(V=[ee(v,"change",t[4]),ee(E,"change",t[5]),ee(n,"submit",As(t[3]))],G=!0)},p(K,[H]){K[0].usrcfg?W||(W=ec(),W.c(),W.m(n,c)):W&&(W.d(1),W=null);const Y={};H&1&&(Y.chip=K[0].chip),d.$set(Y),H&1&&qe(v,K[0].board),K[0].board&&K[0].board>20?U?(U.p(K,H),H&1&&D(U,1)):(U=tc(K),U.c(),D(U,1),U.m(n,A)):U&&(De(),q(U,1,1,()=>{U=null}),Ie()),H&4&&(E.checked=K[2]);const X={};H&2&&(X.active=K[1]),j.$set(X)},i(K){z||(D(d.$$.fragment,K),D(U),D(j.$$.fragment,K),z=!0)},o(K){q(d.$$.fragment,K),q(U),q(j.$$.fragment,K),z=!1},d(K){K&&C(e),W&&W.d(),ne(d),U&&U.d(),K&&C(x),ne(j,K),G=!1,ze(V)}}}function Gp(t,e,l){let{sysinfo:n={}}=e,i=!1;async function o(f){l(1,i=!0);const p=new FormData(f.target),_=new URLSearchParams;for(let d of p){const[k,A]=d;_.append(k,A)}let v=await(await fetch("/save",{method:"POST",body:_})).json();l(1,i=!1),Bt.update(d=>(d.vndcfg=v.success,d.booting=v.reboot,d)),ai(n.usrcfg?"/":"/setup")}let a=!1;function u(){n.board=dt(this),l(0,n)}function c(){a=this.checked,l(2,a),l(0,n)}return t.$$set=f=>{"sysinfo"in f&&l(0,n=f.sysinfo)},t.$$.update=()=>{t.$$.dirty&1&&l(2,a=!n.usrcfg)},[n,i,a,o,u,c]}class Vp extends Ee{constructor(e){super(),Pe(this,e,Gp,zp,Ae,{sysinfo:0})}}function lc(t){let e,l,n,i,o,a,u,c;return u=new Jc({}),{c(){e=m("br"),l=h(),n=m("div"),i=m("input"),o=h(),a=m("select"),ie(u.$$.fragment),r(i,"name","si"),r(i,"type","text"),r(i,"class","in-f w-full"),i.required=t[1],r(a,"name","su"),r(a,"class","in-l"),a.required=t[1],r(n,"class","flex")},m(f,p){M(f,e,p),M(f,l,p),M(f,n,p),s(n,i),s(n,o),s(n,a),le(u,a,null),c=!0},p(f,p){(!c||p&2)&&(i.required=f[1]),(!c||p&2)&&(a.required=f[1])},i(f){c||(D(u.$$.fragment,f),c=!0)},o(f){q(u.$$.fragment,f),c=!1},d(f){f&&C(e),f&&C(l),f&&C(n),ne(u)}}}function nc(t){let e;return{c(){e=m("div"),e.innerHTML=`
Gateway
+Occurred in: ${i}`:"",a=Mo(t),u=_c(e)?e(a):e;return`<${a}> ${u}${o}`}const Nc=t=>(...e)=>t(I0(...e)),Ac=Nc(t=>{throw new Error(t)}),Ts=Nc(console.warn),Ga=4,O0=3,R0=2,L0=1,F0=1;function q0(t,e){const l=t.default?0:ml(t.fullPath).reduce((n,i)=>{let o=n;return o+=Ga,M0(i)?o+=F0:$0(i)?o+=R0:yc(i)?o-=Ga+L0:o+=O0,o},0);return{route:t,score:l,index:e}}function B0(t){return t.map(q0).sort((e,l)=>e.scorel.score?-1:e.index-l.index)}function Pc(t,e){let l,n;const[i]=e.split("?"),o=ml(i),a=o[0]==="",u=B0(t);for(let c=0,f=u.length;c({...p,params:b,uri:T});if(p.default){n=v(e);continue}const d=ml(p.fullPath),k=Math.max(o.length,d.length);let A=0;for(;A{f===".."?c.pop():f!=="."&&c.push(f)}),Zs(`/${c.join("/")}`,n)}function Va(t,e){const{pathname:l,hash:n="",search:i="",state:o}=t,a=ml(e,!0),u=ml(l,!0);for(;a.length;)a[0]!==u[0]&&Ac(_n,`Invalid state: All locations must begin with the basepath "${e}", found "${l}"`),a.shift(),u.shift();return{pathname:Ei(...u),hash:n,search:i,state:o}}const Ka=t=>t.length===1?"":t,$o=t=>{const e=t.indexOf("?"),l=t.indexOf("#"),n=e!==-1,i=l!==-1,o=i?Ka(Ci(t,l)):"",a=i?Ci(t,0,l):t,u=n?Ka(Ci(a,e)):"";return{pathname:(n?Ci(a,0,e):a)||"/",search:u,hash:o}},j0=t=>{const{pathname:e,search:l,hash:n}=t;return e+l+n};function H0(t,e,l){return Ei(l,U0(t,e))}function W0(t,e){const l=yo(S0(t)),n=ml(l,!0),i=ml(e,!0).slice(0,n.length),o=Ec({fullPath:l},Ei(...i));return o&&o.uri}const Js="POP",z0="PUSH",G0="REPLACE";function xs(t){return{...t.location,pathname:encodeURI(decodeURI(t.location.pathname)),state:t.history.state,_key:t.history.state&&t.history.state._key||"initial"}}function V0(t){let e=[],l=xs(t),n=Js;const i=(o=e)=>o.forEach(a=>a({location:l,action:n}));return{get location(){return l},listen(o){e.push(o);const a=()=>{l=xs(t),n=Js,i([o])};i([o]);const u=hc(t,"popstate",a);return()=>{u(),e=e.filter(c=>c!==o)}},navigate(o,a){const{state:u={},replace:c=!1}=a||{};if(n=c?G0:z0,dc(o))a&&Ts(Tc,"Navigation options (state or replace) are not supported, when passing a number as the first argument to navigate. They are ignored."),n=Js,t.history.go(o);else{const f={...u,_key:k0()};try{t.history[c?"replaceState":"pushState"](f,"",o)}catch{t.location[c?"replace":"assign"](o)}}l=xs(t),i()}}}function eo(t,e){return{...$o(e),state:t}}function K0(t="/"){let e=0,l=[eo(null,t)];return{get entries(){return l},get location(){return l[e]},addEventListener(){},removeEventListener(){},history:{get state(){return l[e].state},pushState(n,i,o){e++,l=l.slice(0,e),l.push(eo(n,o))},replaceState(n,i,o){l[e]=eo(n,o)},go(n){const i=e+n;i<0||i>l.length-1||(e=i)}}}}const Y0=!!(!Ul&&window.document&&window.document.createElement),Q0=!Ul&&window.location.origin==="null",Dc=V0(Y0&&!Q0?window:K0()),{navigate:ai}=Dc;let $l=null,Ic=!0;function X0(t,e){const l=document.querySelectorAll("[data-svnav-router]");for(let n=0;n$l.level||t.level===$l.level&&X0(t.routerId,$l.routerId))&&($l=t)}function J0(){$l=null}function x0(){Ic=!1}function Ya(t){if(!t)return!1;const e="tabindex";try{if(!t.hasAttribute(e)){t.setAttribute(e,"-1");let l;l=hc(t,"blur",()=>{t.removeAttribute(e),l()})}return t.focus(),document.activeElement===t}catch{return!1}}function e1(t,e){return Number(t.dataset.svnavRouteEnd)===e}function t1(t){return/^H[1-6]$/i.test(t.tagName)}function Qa(t,e=document){return e.querySelector(t)}function l1(t){let l=Qa(`[data-svnav-route-start="${t}"]`).nextElementSibling;for(;!e1(l,t);){if(t1(l))return l;const n=Qa("h1,h2,h3,h4,h5,h6",l);if(n)return n;l=l.nextElementSibling}return null}function n1(t){Promise.resolve(fi(t.focusElement)).then(e=>{const l=e||l1(t.id);l||Ts(_n,`Could not find an element to focus. You should always render a header for accessibility reasons, or set a custom focus element via the "useFocus" hook. If you don't want this Route or Router to manage focus, pass "primary={false}" to it.`,t,Es),!Ya(l)&&Ya(document.documentElement)})}const i1=(t,e,l)=>(n,i)=>d0().then(()=>{if(!$l||Ic){x0();return}if(n&&n1($l.route),t.announcements&&i){const{path:o,fullPath:a,meta:u,params:c,uri:f}=$l.route,p=t.createAnnouncement({path:o,fullPath:a,meta:u,params:c,uri:f},fi(l));Promise.resolve(p).then(_=>{e.set(_)})}J0()}),s1="position:fixed;top:-1px;left:0;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;";function o1(t){let e,l,n=[{role:"status"},{"aria-atomic":"true"},{"aria-live":"polite"},{"data-svnav-announcer":""},bc(t[6],s1)],i={};for(let o=0;o`Navigated to ${ue.uri}`,announcements:!0,...d},T=p,S=yo(p),E=Bl(so),B=Bl(mi),P=!E,R=a1(),L=v&&!(B&&!B.manageFocus),F=at("");ul(t,F,ue=>l(0,u=ue));const x=B?B.disableInlineStyles:k,j=at([]);ul(t,j,ue=>l(20,a=ue));const z=at(null);ul(t,z,ue=>l(18,i=ue));let G=!1;const V=P?0:B.level+1,U=P?at((()=>Va(Ul?$o(_):b.location,S))()):E;ul(t,U,ue=>l(17,n=ue));const K=at(n);ul(t,K,ue=>l(19,o=ue));const H=i1(A,F,U),Y=ue=>we=>we.filter(me=>me.id!==ue);function Z(ue){if(Ul){if(G)return;const we=Ec(ue,n.pathname);if(we)return G=!0,we}else j.update(we=>{const me=Y(ue.id)(we);return me.push(ue),me})}function re(ue){j.update(Y(ue))}return!P&&p!==Xa&&Ts(_n,'Only top-level Routers can have a "basepath" prop. It is ignored.',{basepath:p}),P&&(uc(()=>b.listen(we=>{const me=Va(we.location,S);K.set(n),U.set(me)})),Ti(so,U)),Ti(mi,{activeRoute:z,registerRoute:Z,unregisterRoute:re,manageFocus:L,level:V,id:R,history:P?b:B.history,basepath:P?S:B.basepath,disableInlineStyles:x}),t.$$set=ue=>{"basepath"in ue&&l(11,p=ue.basepath),"url"in ue&&l(12,_=ue.url),"history"in ue&&l(13,b=ue.history),"primary"in ue&&l(14,v=ue.primary),"a11y"in ue&&l(15,d=ue.a11y),"disableInlineStyles"in ue&&l(16,k=ue.disableInlineStyles),"$$scope"in ue&&l(21,f=ue.$$scope)},t.$$.update=()=>{if(t.$$.dirty[0]&2048&&p!==T&&Ts(_n,'You cannot change the "basepath" prop. It is ignored.'),t.$$.dirty[0]&1179648){const ue=Pc(a,n.pathname);z.set(ue)}if(t.$$.dirty[0]&655360&&P){const ue=!!n.hash,we=!ue&&L,me=!ue||n.pathname!==o.pathname;H(we,me)}t.$$.dirty[0]&262144&&L&&i&&i.primary&&Z0({level:V,routerId:R,route:i})},[u,A,P,R,L,F,x,j,z,U,K,p,_,b,v,d,k,n,i,o,a,f,c]}class f1 extends Ee{constructor(e){super(),Pe(this,e,u1,r1,Ae,{basepath:11,url:12,history:13,primary:14,a11y:15,disableInlineStyles:16},null,[-1,-1])}}const Oc=f1;function Di(t,e,l=mi,n=_n){Bl(l)||Ac(t,o=>`You cannot use ${o} outside of a ${Mo(n)}.`,e)}const c1=t=>{const{subscribe:e}=Bl(t);return{subscribe:e}};function Rc(){return Di(Mc),c1(so)}function Lc(){const{history:t}=Bl(mi);return t}function Fc(){const t=Bl(kc);return t?w0(t,e=>e.base):at("/")}function qc(){Di(Sc);const t=Fc(),{basepath:e}=Bl(mi);return n=>H0(n,fi(t),e)}function m1(){Di($c);const t=qc(),{navigate:e}=Lc();return(n,i)=>{const o=dc(n)?n:t(n);return e(o,i)}}const p1=t=>({params:t&16,location:t&8}),Za=t=>({params:Ul?fi(t[10]):t[4],location:t[3],navigate:t[11]});function Ja(t){let e,l;return e=new Oc({props:{primary:t[1],$$slots:{default:[v1]},$$scope:{ctx:t}}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p(n,i){const o={};i&2&&(o.primary=n[1]),i&528409&&(o.$$scope={dirty:i,ctx:n}),e.$set(o)},i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function _1(t){let e;const l=t[18].default,n=bo(l,t,t[19],Za);return{c(){n&&n.c()},m(i,o){n&&n.m(i,o),e=!0},p(i,o){n&&n.p&&(!e||o&524312)&&ko(n,l,i,i[19],e?go(l,i[19],o,p1):wo(i[19]),Za)},i(i){e||(D(n,i),e=!0)},o(i){q(n,i),e=!1},d(i){n&&n.d(i)}}}function d1(t){let e,l,n;const i=[{location:t[3]},{navigate:t[11]},Ul?fi(t[10]):t[4],t[12]];var o=t[0];function a(u){let c={};for(let f=0;f{ne(p,1)}),Ie()}o?(e=ja(o,a()),ie(e.$$.fragment),D(e.$$.fragment,1),le(e,l.parentNode,l)):e=null}else o&&e.$set(f)},i(u){n||(e&&D(e.$$.fragment,u),n=!0)},o(u){e&&q(e.$$.fragment,u),n=!1},d(u){u&&C(l),e&&ne(e,u)}}}function v1(t){let e,l,n,i;const o=[d1,_1],a=[];function u(c,f){return c[0]!==null?0:1}return e=u(t),l=a[e]=o[e](t),{c(){l.c(),n=Ge()},m(c,f){a[e].m(c,f),M(c,n,f),i=!0},p(c,f){let p=e;e=u(c),e===p?a[e].p(c,f):(De(),q(a[p],1,1,()=>{a[p]=null}),Ie(),l=a[e],l?l.p(c,f):(l=a[e]=o[e](c),l.c()),D(l,1),l.m(n.parentNode,n))},i(c){i||(D(l),i=!0)},o(c){q(l),i=!1},d(c){a[e].d(c),c&&C(n)}}}function h1(t){let e,l,n,i,o,a=[io(t[7]),{"data-svnav-route-start":t[5]}],u={};for(let _=0;_{c=null}),Ie())},i(_){o||(D(c),o=!0)},o(_){q(c),o=!1},d(_){_&&C(e),_&&C(l),c&&c.d(_),_&&C(n),_&&C(i)}}}const b1=vc();function g1(t,e,l){let n;const i=["path","component","meta","primary"];let o=$s(e,i),a,u,c,f,{$$slots:p={},$$scope:_}=e,{path:b=""}=e,{component:v=null}=e,{meta:d={}}=e,{primary:k=!0}=e;Di(Es,e);const A=b1(),{registerRoute:T,unregisterRoute:S,activeRoute:E,disableInlineStyles:B}=Bl(mi);ul(t,E,G=>l(16,a=G));const P=Fc();ul(t,P,G=>l(17,c=G));const R=Rc();ul(t,R,G=>l(3,u=G));const L=at(null);let F;const x=at(),j=at({});ul(t,j,G=>l(4,f=G)),Ti(kc,x),Ti(y0,j),Ti(C0,L);const z=m1();return Ul||p0(()=>S(A)),t.$$set=G=>{l(24,e=xt(xt({},e),Ms(G))),l(12,o=$s(e,i)),"path"in G&&l(13,b=G.path),"component"in G&&l(0,v=G.component),"meta"in G&&l(14,d=G.meta),"primary"in G&&l(1,k=G.primary),"$$scope"in G&&l(19,_=G.$$scope)},t.$$.update=()=>{if(t.$$.dirty&155658){const G=b==="",V=Ei(c,b),W={id:A,path:b,meta:d,default:G,fullPath:G?"":V,base:G?c:W0(V,u.pathname),primary:k,focusElement:L};x.set(W),l(15,F=T(W))}if(t.$$.dirty&98304&&l(2,n=!!(F||a&&a.id===A)),t.$$.dirty&98308&&n){const{params:G}=F||a;j.set(G)}},e=Ms(e),[v,k,n,u,f,A,E,B,P,R,j,z,o,b,d,F,a,c,p,_]}class k1 extends Ee{constructor(e){super(),Pe(this,e,g1,h1,Ae,{path:13,component:0,meta:14,primary:1})}}const Ml=k1;function w1(t){let e,l,n,i;const o=t[13].default,a=bo(o,t,t[12],null);let u=[{href:t[0]},t[2],t[1]],c={};for(let f=0;fl(11,_=L));const E=_0(),B=qc(),{navigate:P}=Lc();function R(L){E("click",L),g0(L)&&(L.preventDefault(),P(n,{state:A,replace:a||k}))}return t.$$set=L=>{l(19,e=xt(xt({},e),Ms(L))),l(18,p=$s(e,f)),"to"in L&&l(5,d=L.to),"replace"in L&&l(6,k=L.replace),"state"in L&&l(7,A=L.state),"getProps"in L&&l(8,T=L.getProps),"$$scope"in L&&l(12,v=L.$$scope)},t.$$.update=()=>{t.$$.dirty&2080&&l(0,n=B(d,_)),t.$$.dirty&2049&&l(10,i=oo(_.pathname,n)),t.$$.dirty&2049&&l(9,o=n===_.pathname),t.$$.dirty&2049&&(a=$o(n)===j0(_)),t.$$.dirty&512&&l(2,u=o?{"aria-current":"page"}:{}),l(1,c=(()=>{if(_c(T)){const L=T({location:_,href:n,isPartiallyCurrent:i,isCurrent:o});return{...p,...L}}return p})())},e=Ms(e),[n,c,u,S,R,d,k,A,T,o,i,_,v,b]}class C1 extends Ee{constructor(e){super(),Pe(this,e,y1,w1,Ae,{to:5,replace:6,state:7,getProps:8})}}const el=C1;let ro=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function ql(t){return t===1?"green":t===2?"yellow":t===3?"red":"gray"}function M1(t){return t>218&&t<242?"#32d900":t>212&&t<248?"#b1d900":t>208&&t<252?"#ffb800":"#d90000"}function Bc(t){return t>90?"#d90000":t>85?"#e32100":t>80?"#ffb800":t>75?"#dcd800":"#32d900"}function $1(t){return t>75?"#32d900":t>50?"#77d900":t>25?"#94d900":"#dcd800"}function Ns(t){switch(t){case 1:return"Aidon";case 2:return"Kaifa";case 3:return"Kamstrup";case 8:return"Iskra";case 9:return"Landis+Gyr";case 10:return"Sagemcom";default:return"Unknown"}}function Le(t){for(t=t.toString();t.length<2;)t="0"+t;return t}function be(t,e){switch(e){case 5:switch(t){case"esp8266":return"Pow-K (GPIO12)";case"esp32s2":return"Pow-K+"}case 7:switch(t){case"esp8266":return"Pow-U (GPIO12)";case"esp32s2":return"Pow-U+"}case 6:return"Pow-P1";case 51:return"Wemos S2 mini";case 50:return"Generic ESP32-S2";case 201:return"Wemos LOLIN D32";case 202:return"Adafruit HUZZAH32";case 203:return"DevKitC";case 200:return"Generic ESP32";case 2:return"HAN Reader 2.0 by Max Spencer";case 0:return"Custom hardware by Roar Fredriksen";case 1:return"Kamstrup module by Egil Opsahl";case 8:return"µHAN mosquito by dbeinder";case 3:return"Pow-K (UART0)";case 4:return"Pow-U (UART0)";case 101:return"Wemos D1 mini";case 100:return"Generic ESP8266";case 70:return"Generic ESP32-C3";case 71:return"ESP32-C3-DevKitM-1"}}function xa(t){switch(t){case-1:return"Parse error";case-2:return"Incomplete data received";case-3:return"Payload boundry flag missing";case-4:return"Header checksum error";case-5:return"Footer checksum error";case-9:return"Unknown data received, check meter config";case-41:return"Frame length not equal";case-51:return"Authentication failed";case-52:return"Decryption failed";case-53:return"Encryption key invalid";case 90:return"No HAN data received for at least 30s";case 91:return"Serial break";case 92:return"Serial buffer full";case 93:return"Serial FIFO overflow";case 94:return"Serial frame error";case 95:return"Serial parity error";case 96:return"RX error";case 98:return"Exception in code, debugging necessary";case 99:return"Autodetection failed"}return t<0?"Unspecified error "+t:""}function eu(t){switch(t){case-3:return"Connection failed";case-4:return"Network timeout";case-10:return"Connection denied";case-11:return"Failed to subscribe";case-13:return"Connection lost"}return t<0?"Unspecified error "+t:""}function tu(t){switch(t){case 400:return"Unrecognized data in request";case 401:case 403:return"Unauthorized, check API key";case 404:return"Price unavailable, not found";case 425:return"Server says its too early";case 429:return"Exceeded API rate limit";case 500:return"Internal server error";case-1:return"Connection error";case-2:return"Incomplete data received";case-3:return"Invalid data, tag missing";case-51:return"Authentication failed";case-52:return"Decryption failed";case-53:return"Encryption key invalid"}return t<0?"Unspecified error "+t:""}function ui(t){switch(t){case 2:case 4:case 7:return!0}return!1}function Ve(t,e){return t==1||t==2&&e}function Bt(t){return"https://github.com/UtilitechAS/amsreader-firmware/wiki/"+t}function ge(t,e){return isNaN(t)?"-":(isNaN(e)&&(e=t<10?1:0),t.toFixed(e))}function fl(t,e){return t.setTime(t.getTime()+e*36e5),t}function lu(t){if(t.chip=="esp8266")switch(t.boot_reason){case 0:return"Normal";case 1:return"WDT reset";case 2:return"Exception reset";case 3:return"Soft WDT reset";case 4:return"Software restart";case 5:return"Deep sleep";case 6:return"External reset";default:return"Unknown (8266)"}else switch(t.boot_reason){case 1:return"Vbat power on reset";case 3:return"Software reset";case 4:return"WDT reset";case 5:return"Deep sleep";case 6:return"SLC reset";case 7:return"Timer Group0 WDT reset";case 8:return"Timer Group1 WDT reset";case 9:return"RTC WDT reset";case 10:return"Instrusion test reset CPU";case 11:return"Time Group reset CPU";case 12:return"Software reset CPU";case 13:return"RTC WTD reset CPU";case 14:return"PRO CPU";case 15:return"Brownout";case 16:return"RTC reset";default:return"Unknown"}}function nu(t){return t=="EOE"?"ENTSO-E":t=="HKS"?"hvakosterstrommen.no":t=="EDS"?"Energy Data Service":t=="MIX"?"Mixed sources":"Unknown ("+t+")"}async function jl(t,e={}){const{timeout:l=8e3}=e,n=new AbortController,i=setTimeout(()=>n.abort(),l),o=await fetch(t,{...e,signal:n.signal});return clearTimeout(i),o}let al={version:"",chip:"",mac:null,apmac:null,vndcfg:null,usrcfg:null,fwconsent:null,booting:!1,upgrading:!1,ui:{},security:0,boot_reason:0,upgrade:{x:-1,e:0,f:null,t:null},trying:null};const Ut=at(al);async function So(){al=await(await jl("/sysinfo.json?t="+Math.floor(Date.now()/1e3))).json(),Ut.set(al)}let ws=0,iu=-127,su=null,S1={};const T1=gc(S1,t=>{let e;async function l(){jl("/data.json").then(n=>n.json()).then(n=>{t(n),iu!=n.t&&(iu=n.t,setTimeout(zc,2e3)),su==null&&n.pe&&n.p!=null&&(su=n.p,jc()),al.upgrading?window.location.reload():(!al||!al.chip||al.booting||ws>1&&!ui(al.board))&&(So(),fn&&clearTimeout(fn),fn=setTimeout(No,2e3),cn&&clearTimeout(cn),cn=setTimeout(Ao,3e3));let i=5e3;if(ui(al.board)&&n.v>2.5){let o=3.3-Math.min(3.3,n.v);o>0&&(i=Math.max(o,.1)*10*5e3)}i>5e3&&console.log("Scheduling next data fetch in "+i+"ms"),e&&clearTimeout(e),e=setTimeout(l,i),ws=0}).catch(n=>{ws++,ws>3?(t({em:3,hm:0,wm:0,mm:0}),e=setTimeout(l,15e3)):e=setTimeout(l,ui(al.board)?1e4:5e3)})}return l(),function(){clearTimeout(e)}});let ao={},Mi;const To=at(ao);async function Uc(){let t=!1;To.update(e=>{for(var l=0;l<36;l++){if(e[Le(l)]==null){t=l<12;break}e[Le(l)]=e[Le(l+1)]}return e}),t?jc():Mi=setTimeout(Uc,(60-new Date().getMinutes())*6e4)}async function jc(){Mi&&(clearTimeout(Mi),Mi=0),ao=await(await jl("/energyprice.json")).json(),To.set(ao),Mi=setTimeout(Uc,(60-new Date().getMinutes())*6e4)}let uo={},fn;async function No(){fn&&(clearTimeout(fn),fn=0),uo=await(await jl("/dayplot.json")).json(),Hc.set(uo),fn=setTimeout(No,(60-new Date().getMinutes())*6e4+20)}const Hc=at(uo,t=>(No(),function(){}));let fo={},cn;async function Ao(){cn&&(clearTimeout(cn),cn=0),fo=await(await jl("/monthplot.json")).json(),Wc.set(fo),cn=setTimeout(Ao,(24-new Date().getHours())*36e5+40)}const Wc=at(fo,t=>(Ao(),function(){}));let co={};async function zc(){co=await(await jl("/temperature.json")).json(),Gc.set(co)}const Gc=at(co,t=>(zc(),function(){}));let mo={},ys;async function Vc(){ys&&(clearTimeout(ys),ys=0),mo=await(await jl("/tariff.json")).json(),Kc.set(mo),ys=setTimeout(Vc,(60-new Date().getMinutes())*6e4+30)}const Kc=at(mo,t=>function(){});let po=[];const Po=at(po);async function N1(){po=await(await jl("https://api.github.com/repos/UtilitechAS/amsreader-firmware/releases")).json(),Po.set(po)}function As(t){return"WARNING: "+t+" must be connected to an external power supply during firmware upgrade. Failure to do so may cause power-down during upload resulting in non-functioning unit."}async function Yc(t){await(await fetch("/upgrade?expected_version="+t,{method:"POST"})).json()}function Qc(t,e){if(/^v\d{1,2}\.\d{1,2}\.\d{1,2}$/.test(t)){let l=t.substring(1).split("."),n=parseInt(l[0]),i=parseInt(l[1]),o=parseInt(l[2]),a=[...e];a.reverse();let u,c,f;for(let p=0;po&&(u=_):k==i+1&&(c=_);else if(d==n+1)if(f){let T=f.tag_name.substring(1).split(".");parseInt(T[0]);let S=parseInt(T[1]);parseInt(T[2]),k==S&&(f=_)}else f=_}return c||f||u||!1}else return e[0]}const A1="/github.svg";function ou(t){let e,l;function n(a,u){return a[1]>1?L1:a[1]>0?R1:a[2]>1?O1:a[2]>0?I1:a[3]>1?D1:a[3]>0?E1:P1}let i=n(t),o=i(t);return{c(){e=$(`Up + `),o.c(),l=Ge()},m(a,u){M(a,e,u),o.m(a,u),M(a,l,u)},p(a,u){i===(i=n(a))&&o?o.p(a,u):(o.d(1),o=i(a),o&&(o.c(),o.m(l.parentNode,l)))},d(a){a&&C(e),o.d(a),a&&C(l)}}}function P1(t){let e,l;return{c(){e=$(t[0]),l=$(" seconds")},m(n,i){M(n,e,i),M(n,l,i)},p(n,i){i&1&&X(e,n[0])},d(n){n&&C(e),n&&C(l)}}}function E1(t){let e,l;return{c(){e=$(t[3]),l=$(" minute")},m(n,i){M(n,e,i),M(n,l,i)},p(n,i){i&8&&X(e,n[3])},d(n){n&&C(e),n&&C(l)}}}function D1(t){let e,l;return{c(){e=$(t[3]),l=$(" minutes")},m(n,i){M(n,e,i),M(n,l,i)},p(n,i){i&8&&X(e,n[3])},d(n){n&&C(e),n&&C(l)}}}function I1(t){let e,l;return{c(){e=$(t[2]),l=$(" hour")},m(n,i){M(n,e,i),M(n,l,i)},p(n,i){i&4&&X(e,n[2])},d(n){n&&C(e),n&&C(l)}}}function O1(t){let e,l;return{c(){e=$(t[2]),l=$(" hours")},m(n,i){M(n,e,i),M(n,l,i)},p(n,i){i&4&&X(e,n[2])},d(n){n&&C(e),n&&C(l)}}}function R1(t){let e,l;return{c(){e=$(t[1]),l=$(" day")},m(n,i){M(n,e,i),M(n,l,i)},p(n,i){i&2&&X(e,n[1])},d(n){n&&C(e),n&&C(l)}}}function L1(t){let e,l;return{c(){e=$(t[1]),l=$(" days")},m(n,i){M(n,e,i),M(n,l,i)},p(n,i){i&2&&X(e,n[1])},d(n){n&&C(e),n&&C(l)}}}function F1(t){let e,l=t[0]&&ou(t);return{c(){l&&l.c(),e=Ge()},m(n,i){l&&l.m(n,i),M(n,e,i)},p(n,[i]){n[0]?l?l.p(n,i):(l=ou(n),l.c(),l.m(e.parentNode,e)):l&&(l.d(1),l=null)},i:fe,o:fe,d(n){l&&l.d(n),n&&C(e)}}}function q1(t,e,l){let{epoch:n}=e,i=0,o=0,a=0;return t.$$set=u=>{"epoch"in u&&l(0,n=u.epoch)},t.$$.update=()=>{t.$$.dirty&1&&(l(1,i=Math.floor(n/86400)),l(2,o=Math.floor(n/3600)),l(3,a=Math.floor(n/60)))},[n,i,o,a]}class B1 extends Ee{constructor(e){super(),Pe(this,e,q1,F1,Ae,{epoch:0})}}function U1(t){let e,l,n;return{c(){e=m("span"),l=$(t[2]),r(e,"title",t[1]),r(e,"class",n="bd-"+t[0])},m(i,o){M(i,e,o),s(e,l)},p(i,[o]){o&4&&X(l,i[2]),o&2&&r(e,"title",i[1]),o&1&&n!==(n="bd-"+i[0])&&r(e,"class",n)},i:fe,o:fe,d(i){i&&C(e)}}}function j1(t,e,l){let{color:n}=e,{title:i}=e,{text:o}=e;return t.$$set=a=>{"color"in a&&l(0,n=a.color),"title"in a&&l(1,i=a.title),"text"in a&&l(2,o=a.text)},[n,i,o]}class mn extends Ee{constructor(e){super(),Pe(this,e,j1,U1,Ae,{color:0,title:1,text:2})}}function H1(t){let e,l=`${Le(t[0].getDate())}.${Le(t[0].getMonth()+1)}.${t[0].getFullYear()} ${Le(t[0].getHours())}:${Le(t[0].getMinutes())}`,n;return{c(){e=m("span"),n=$(l),r(e,"class",t[1])},m(i,o){M(i,e,o),s(e,n)},p(i,o){o&1&&l!==(l=`${Le(i[0].getDate())}.${Le(i[0].getMonth()+1)}.${i[0].getFullYear()} ${Le(i[0].getHours())}:${Le(i[0].getMinutes())}`)&&X(n,l),o&2&&r(e,"class",i[1])},d(i){i&&C(e)}}}function W1(t){let e=`${Le(t[0].getDate())}. ${ro[t[0].getMonth()]} ${Le(t[0].getHours())}:${Le(t[0].getMinutes())}`,l;return{c(){l=$(e)},m(n,i){M(n,l,i)},p(n,i){i&1&&e!==(e=`${Le(n[0].getDate())}. ${ro[n[0].getMonth()]} ${Le(n[0].getHours())}:${Le(n[0].getMinutes())}`)&&X(l,e)},d(n){n&&C(l)}}}function z1(t){let e;function l(o,a){return o[2]?W1:H1}let n=l(t),i=n(t);return{c(){i.c(),e=Ge()},m(o,a){i.m(o,a),M(o,e,a)},p(o,[a]){n===(n=l(o))&&i?i.p(o,a):(i.d(1),i=n(o),i&&(i.c(),i.m(e.parentNode,e)))},i:fe,o:fe,d(o){i.d(o),o&&C(e)}}}function G1(t,e,l){let{timestamp:n}=e,{fullTimeColor:i}=e,{offset:o}=e,a;return t.$$set=u=>{"timestamp"in u&&l(0,n=u.timestamp),"fullTimeColor"in u&&l(1,i=u.fullTimeColor),"offset"in u&&l(3,o=u.offset)},t.$$.update=()=>{t.$$.dirty&9&&(l(2,a=Math.abs(new Date().getTime()-n.getTime())<3e5),isNaN(o)||fl(n,o-(24+n.getHours()-n.getUTCHours())%24))},[n,i,a,o]}class Xc extends Ee{constructor(e){super(),Pe(this,e,G1,z1,Ae,{timestamp:0,fullTimeColor:1,offset:3})}}function V1(t){let e,l,n;return{c(){e=Fe("svg"),l=Fe("path"),n=Fe("path"),r(l,"stroke-linecap","round"),r(l,"stroke-linejoin","round"),r(l,"d","M10.343 3.94c.09-.542.56-.94 1.11-.94h1.093c.55 0 1.02.398 1.11.94l.149.894c.07.424.384.764.78.93.398.164.855.142 1.205-.108l.737-.527a1.125 1.125 0 011.45.12l.773.774c.39.389.44 1.002.12 1.45l-.527.737c-.25.35-.272.806-.107 1.204.165.397.505.71.93.78l.893.15c.543.09.94.56.94 1.109v1.094c0 .55-.397 1.02-.94 1.11l-.893.149c-.425.07-.765.383-.93.78-.165.398-.143.854.107 1.204l.527.738c.32.447.269 1.06-.12 1.45l-.774.773a1.125 1.125 0 01-1.449.12l-.738-.527c-.35-.25-.806-.272-1.203-.107-.397.165-.71.505-.781.929l-.149.894c-.09.542-.56.94-1.11.94h-1.094c-.55 0-1.019-.398-1.11-.94l-.148-.894c-.071-.424-.384-.764-.781-.93-.398-.164-.854-.142-1.204.108l-.738.527c-.447.32-1.06.269-1.45-.12l-.773-.774a1.125 1.125 0 01-.12-1.45l.527-.737c.25-.35.273-.806.108-1.204-.165-.397-.505-.71-.93-.78l-.894-.15c-.542-.09-.94-.56-.94-1.109v-1.094c0-.55.398-1.02.94-1.11l.894-.149c.424-.07.765-.383.93-.78.165-.398.143-.854-.107-1.204l-.527-.738a1.125 1.125 0 01.12-1.45l.773-.773a1.125 1.125 0 011.45-.12l.737.527c.35.25.807.272 1.204.107.397-.165.71-.505.78-.929l.15-.894z"),r(n,"stroke-linecap","round"),r(n,"stroke-linejoin","round"),r(n,"d","M15 12a3 3 0 11-6 0 3 3 0 016 0z"),r(e,"xmlns","http://www.w3.org/2000/svg"),r(e,"fill","none"),r(e,"viewBox","0 0 24 24"),r(e,"stroke-width","1.5"),r(e,"stroke","currentColor"),r(e,"class","w-6 h-6")},m(i,o){M(i,e,o),s(e,l),s(e,n)},p:fe,i:fe,o:fe,d(i){i&&C(e)}}}class K1 extends Ee{constructor(e){super(),Pe(this,e,null,V1,Ae,{})}}function Y1(t){let e,l;return{c(){e=Fe("svg"),l=Fe("path"),r(l,"stroke-linecap","round"),r(l,"stroke-linejoin","round"),r(l,"d","M11.25 11.25l.041-.02a.75.75 0 011.063.852l-.708 2.836a.75.75 0 001.063.853l.041-.021M21 12a9 9 0 11-18 0 9 9 0 0118 0zm-9-3.75h.008v.008H12V8.25z"),r(e,"xmlns","http://www.w3.org/2000/svg"),r(e,"fill","none"),r(e,"viewBox","0 0 24 24"),r(e,"stroke-width","1.5"),r(e,"stroke","currentColor"),r(e,"class","w-6 h-6")},m(n,i){M(n,e,i),s(e,l)},p:fe,i:fe,o:fe,d(n){n&&C(e)}}}class Q1 extends Ee{constructor(e){super(),Pe(this,e,null,Y1,Ae,{})}}function X1(t){let e,l;return{c(){e=Fe("svg"),l=Fe("path"),r(l,"stroke-linecap","round"),r(l,"stroke-linejoin","round"),r(l,"d","M9.879 7.519c1.171-1.025 3.071-1.025 4.242 0 1.172 1.025 1.172 2.687 0 3.712-.203.179-.43.326-.67.442-.745.361-1.45.999-1.45 1.827v.75M21 12a9 9 0 11-18 0 9 9 0 0118 0zm-9 5.25h.008v.008H12v-.008z"),r(e,"xmlns","http://www.w3.org/2000/svg"),r(e,"fill","none"),r(e,"viewBox","0 0 24 24"),r(e,"stroke-width","1.5"),r(e,"stroke","currentColor"),r(e,"class","w-6 h-6")},m(n,i){M(n,e,i),s(e,l)},p:fe,i:fe,o:fe,d(n){n&&C(e)}}}class qt extends Ee{constructor(e){super(),Pe(this,e,null,X1,Ae,{})}}function Z1(t){let e,l;return{c(){e=Fe("svg"),l=Fe("path"),r(l,"stroke-linecap","round"),r(l,"stroke-linejoin","round"),r(l,"d","M9 8.25H7.5a2.25 2.25 0 00-2.25 2.25v9a2.25 2.25 0 002.25 2.25h9a2.25 2.25 0 002.25-2.25v-9a2.25 2.25 0 00-2.25-2.25H15M9 12l3 3m0 0l3-3m-3 3V2.25"),r(e,"xmlns","http://www.w3.org/2000/svg"),r(e,"fill","none"),r(e,"viewBox","0 0 24 24"),r(e,"stroke-width","1.5"),r(e,"stroke","currentColor"),r(e,"class","w-6 h-6")},m(n,i){M(n,e,i),s(e,l)},p:fe,i:fe,o:fe,d(n){n&&C(e)}}}class Zc extends Ee{constructor(e){super(),Pe(this,e,null,Z1,Ae,{})}}function J1(t){let e,l,n=t[1].version+"",i;return{c(){e=$("AMS reader "),l=m("span"),i=$(n)},m(o,a){M(o,e,a),M(o,l,a),s(l,i)},p(o,a){a&2&&n!==(n=o[1].version+"")&&X(i,n)},d(o){o&&C(e),o&&C(l)}}}function ru(t){let e,l=(t[0].t>-50?t[0].t.toFixed(1):"-")+"",n,i;return{c(){e=m("div"),n=$(l),i=$("°C"),r(e,"class","flex-none my-auto")},m(o,a){M(o,e,a),s(e,n),s(e,i)},p(o,a){a&1&&l!==(l=(o[0].t>-50?o[0].t.toFixed(1):"-")+"")&&X(n,l)},d(o){o&&C(e)}}}function au(t){let e,l="HAN: "+xa(t[0].he),n;return{c(){e=m("div"),n=$(l),r(e,"class","bd-red")},m(i,o){M(i,e,o),s(e,n)},p(i,o){o&1&&l!==(l="HAN: "+xa(i[0].he))&&X(n,l)},d(i){i&&C(e)}}}function uu(t){let e,l="MQTT: "+eu(t[0].me),n;return{c(){e=m("div"),n=$(l),r(e,"class","bd-red")},m(i,o){M(i,e,o),s(e,n)},p(i,o){o&1&&l!==(l="MQTT: "+eu(i[0].me))&&X(n,l)},d(i){i&&C(e)}}}function fu(t){let e,l="PriceAPI: "+tu(t[0].ee),n;return{c(){e=m("div"),n=$(l),r(e,"class","bd-red")},m(i,o){M(i,e,o),s(e,n)},p(i,o){o&1&&l!==(l="PriceAPI: "+tu(i[0].ee))&&X(n,l)},d(i){i&&C(e)}}}function cu(t){let e,l,n,i,o,a;return l=new el({props:{to:"/configuration",$$slots:{default:[x1]},$$scope:{ctx:t}}}),o=new el({props:{to:"/status",$$slots:{default:[em]},$$scope:{ctx:t}}}),{c(){e=m("div"),ie(l.$$.fragment),n=h(),i=m("div"),ie(o.$$.fragment),r(e,"class","flex-none px-1 mt-1"),r(e,"title","Configuration"),r(i,"class","flex-none px-1 mt-1"),r(i,"title","Device information")},m(u,c){M(u,e,c),le(l,e,null),M(u,n,c),M(u,i,c),le(o,i,null),a=!0},i(u){a||(D(l.$$.fragment,u),D(o.$$.fragment,u),a=!0)},o(u){q(l.$$.fragment,u),q(o.$$.fragment,u),a=!1},d(u){u&&C(e),ne(l),u&&C(n),u&&C(i),ne(o)}}}function x1(t){let e,l;return e=new K1({}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function em(t){let e,l;return e=new Q1({}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function mu(t){let e,l,n,i,o;const a=[lm,tm],u=[];function c(f,p){return f[1].security==0||f[0].a?0:1}return l=c(t),n=u[l]=a[l](t),{c(){e=m("div"),n.c(),r(e,"class","flex-none mr-3 text-yellow-500"),r(e,"title",i="New version: "+t[2].tag_name)},m(f,p){M(f,e,p),u[l].m(e,null),o=!0},p(f,p){let _=l;l=c(f),l===_?u[l].p(f,p):(De(),q(u[_],1,1,()=>{u[_]=null}),Ie(),n=u[l],n?n.p(f,p):(n=u[l]=a[l](f),n.c()),D(n,1),n.m(e,null)),(!o||p&4&&i!==(i="New version: "+f[2].tag_name))&&r(e,"title",i)},i(f){o||(D(n),o=!0)},o(f){q(n),o=!1},d(f){f&&C(e),u[l].d()}}}function tm(t){let e,l,n=t[2].tag_name+"",i;return{c(){e=m("span"),l=$("New version: "),i=$(n)},m(o,a){M(o,e,a),s(e,l),s(e,i)},p(o,a){a&4&&n!==(n=o[2].tag_name+"")&&X(i,n)},i:fe,o:fe,d(o){o&&C(e)}}}function lm(t){let e,l,n,i=t[2].tag_name+"",o,a,u,c,f,p;return u=new Zc({}),{c(){e=m("button"),l=m("span"),n=$("New version: "),o=$(i),a=h(),ie(u.$$.fragment),r(l,"class","mt-1"),r(e,"class","flex")},m(_,b){M(_,e,b),s(e,l),s(l,n),s(l,o),s(e,a),le(u,e,null),c=!0,f||(p=ee(e,"click",t[3]),f=!0)},p(_,b){(!c||b&4)&&i!==(i=_[2].tag_name+"")&&X(o,i)},i(_){c||(D(u.$$.fragment,_),c=!0)},o(_){q(u.$$.fragment,_),c=!1},d(_){_&&C(e),ne(u),f=!1,p()}}}function nm(t){let e,l,n,i,o,a,u,c,f,p,_,b,v=(t[0].m?(t[0].m/1e3).toFixed(1):"-")+"",d,k,A,T,S,E,B,P,R,L,F,x,j,z,G,V,W,U,K,H,Y,Z,re,ue,we,me,Te,je,Oe,He;i=new el({props:{to:"/",$$slots:{default:[J1]},$$scope:{ctx:t}}}),c=new B1({props:{epoch:t[0].u}});let ye=t[0].t>-50&&ru(t);S=new mn({props:{title:"ESP",text:t[1].booting?"Booting":t[0].v>2?t[0].v.toFixed(2)+"V":"ESP",color:ql(t[1].booting?2:t[0].em)}}),B=new mn({props:{title:"HAN",text:"HAN",color:ql(t[1].booting?9:t[0].hm)}}),R=new mn({props:{title:"WiFi",text:t[0].r?t[0].r.toFixed(0)+"dBm":"WiFi",color:ql(t[1].booting?9:t[0].wm)}}),F=new mn({props:{title:"MQTT",text:"MQTT",color:ql(t[1].booting?9:t[0].mm)}});let Ne=(t[0].he<0||t[0].he>0)&&au(t),Re=t[0].me<0&&uu(t),$e=(t[0].ee>0||t[0].ee<0)&&fu(t);re=new Xc({props:{timestamp:t[0].c?new Date(t[0].c*1e3):new Date(0),offset:t[1].clock_offset,fullTimeColor:"text-red-500"}});let y=t[1].vndcfg&&t[1].usrcfg&&cu(t);je=new qt({});let g=t[1].fwconsent===1&&t[2]&&mu(t);return{c(){e=m("nav"),l=m("div"),n=m("div"),ie(i.$$.fragment),o=h(),a=m("div"),u=m("div"),ie(c.$$.fragment),f=h(),ye&&ye.c(),p=h(),_=m("div"),b=$("Free mem: "),d=$(v),k=$("kb"),A=h(),T=m("div"),ie(S.$$.fragment),E=h(),ie(B.$$.fragment),P=h(),ie(R.$$.fragment),L=h(),ie(F.$$.fragment),x=h(),Ne&&Ne.c(),j=h(),Re&&Re.c(),z=h(),$e&&$e.c(),G=h(),V=m("div"),W=m("div"),U=m("a"),K=m("img"),Y=h(),Z=m("div"),ie(re.$$.fragment),ue=h(),y&&y.c(),we=h(),me=m("div"),Te=m("a"),ie(je.$$.fragment),Oe=h(),g&&g.c(),r(n,"class","flex text-lg text-gray-100 p-2"),r(u,"class","flex-none my-auto"),r(_,"class","flex-none my-auto"),r(a,"class","flex-none my-auto p-2 flex space-x-4"),r(T,"class","flex-auto flex-wrap my-auto justify-center p-2"),r(K,"class","gh-logo"),lo(K.src,H=A1)||r(K,"src",H),r(K,"alt","GitHub repo"),r(U,"class","float-right"),r(U,"href","https://github.com/UtilitechAS/amsreader-firmware"),r(U,"target","_blank"),r(U,"rel","noreferrer"),r(U,"aria-label","GitHub"),r(W,"class","flex-none"),r(Z,"class","flex-none my-auto px-2"),r(Te,"href",Bt("")),r(Te,"target","_blank"),r(Te,"rel","noreferrer"),r(me,"class","flex-none px-1 mt-1"),r(me,"title","Documentation"),r(V,"class","flex-auto p-2 flex flex-row-reverse flex-wrap"),r(l,"class","flex flex-wrap space-x-4 text-sm text-gray-300"),r(e,"class","bg-violet-600 p-1 rounded-md mx-2")},m(w,N){M(w,e,N),s(e,l),s(l,n),le(i,n,null),s(l,o),s(l,a),s(a,u),le(c,u,null),s(a,f),ye&&ye.m(a,null),s(a,p),s(a,_),s(_,b),s(_,d),s(_,k),s(l,A),s(l,T),le(S,T,null),s(T,E),le(B,T,null),s(T,P),le(R,T,null),s(T,L),le(F,T,null),s(l,x),Ne&&Ne.m(l,null),s(l,j),Re&&Re.m(l,null),s(l,z),$e&&$e.m(l,null),s(l,G),s(l,V),s(V,W),s(W,U),s(U,K),s(V,Y),s(V,Z),le(re,Z,null),s(V,ue),y&&y.m(V,null),s(V,we),s(V,me),s(me,Te),le(je,Te,null),s(V,Oe),g&&g.m(V,null),He=!0},p(w,[N]){const I={};N&18&&(I.$$scope={dirty:N,ctx:w}),i.$set(I);const Q={};N&1&&(Q.epoch=w[0].u),c.$set(Q),w[0].t>-50?ye?ye.p(w,N):(ye=ru(w),ye.c(),ye.m(a,p)):ye&&(ye.d(1),ye=null),(!He||N&1)&&v!==(v=(w[0].m?(w[0].m/1e3).toFixed(1):"-")+"")&&X(d,v);const J={};N&3&&(J.text=w[1].booting?"Booting":w[0].v>2?w[0].v.toFixed(2)+"V":"ESP"),N&3&&(J.color=ql(w[1].booting?2:w[0].em)),S.$set(J);const se={};N&3&&(se.color=ql(w[1].booting?9:w[0].hm)),B.$set(se);const ce={};N&1&&(ce.text=w[0].r?w[0].r.toFixed(0)+"dBm":"WiFi"),N&3&&(ce.color=ql(w[1].booting?9:w[0].wm)),R.$set(ce);const ve={};N&3&&(ve.color=ql(w[1].booting?9:w[0].mm)),F.$set(ve),w[0].he<0||w[0].he>0?Ne?Ne.p(w,N):(Ne=au(w),Ne.c(),Ne.m(l,j)):Ne&&(Ne.d(1),Ne=null),w[0].me<0?Re?Re.p(w,N):(Re=uu(w),Re.c(),Re.m(l,z)):Re&&(Re.d(1),Re=null),w[0].ee>0||w[0].ee<0?$e?$e.p(w,N):($e=fu(w),$e.c(),$e.m(l,G)):$e&&($e.d(1),$e=null);const Se={};N&1&&(Se.timestamp=w[0].c?new Date(w[0].c*1e3):new Date(0)),N&2&&(Se.offset=w[1].clock_offset),re.$set(Se),w[1].vndcfg&&w[1].usrcfg?y?N&2&&D(y,1):(y=cu(w),y.c(),D(y,1),y.m(V,we)):y&&(De(),q(y,1,1,()=>{y=null}),Ie()),w[1].fwconsent===1&&w[2]?g?(g.p(w,N),N&6&&D(g,1)):(g=mu(w),g.c(),D(g,1),g.m(V,null)):g&&(De(),q(g,1,1,()=>{g=null}),Ie())},i(w){He||(D(i.$$.fragment,w),D(c.$$.fragment,w),D(S.$$.fragment,w),D(B.$$.fragment,w),D(R.$$.fragment,w),D(F.$$.fragment,w),D(re.$$.fragment,w),D(y),D(je.$$.fragment,w),D(g),He=!0)},o(w){q(i.$$.fragment,w),q(c.$$.fragment,w),q(S.$$.fragment,w),q(B.$$.fragment,w),q(R.$$.fragment,w),q(F.$$.fragment,w),q(re.$$.fragment,w),q(y),q(je.$$.fragment,w),q(g),He=!1},d(w){w&&C(e),ne(i),ne(c),ye&&ye.d(),ne(S),ne(B),ne(R),ne(F),Ne&&Ne.d(),Re&&Re.d(),$e&&$e.d(),ne(re),y&&y.d(),ne(je),g&&g.d()}}}function im(t,e,l){let{data:n={}}=e,i={},o={};function a(){confirm("Do you want to upgrade this device to "+o.tag_name+"?")&&(!ui(i.board)||confirm(As(be(i.chip,i.board))))&&(Ut.update(u=>(u.upgrading=!0,u)),Yc(o.tag_name))}return Ut.subscribe(u=>{l(1,i=u),u.fwconsent===1&&N1()}),Po.subscribe(u=>{l(2,o=Qc(i.version,u))}),t.$$set=u=>{"data"in u&&l(0,n=u.data)},[n,i,o,a]}class sm extends Ee{constructor(e){super(),Pe(this,e,im,nm,Ae,{data:0})}}function om(t){let e,l,n,i;return{c(){e=Fe("svg"),l=Fe("path"),n=Fe("path"),r(l,"d",to(150,150,115,210,510)),r(l,"stroke","#eee"),r(l,"fill","none"),r(l,"stroke-width","55"),r(n,"d",i=to(150,150,115,210,210+300*t[0]/100)),r(n,"stroke",t[1]),r(n,"fill","none"),r(n,"stroke-width","55"),r(e,"viewBox","0 0 300 300"),r(e,"xmlns","http://www.w3.org/2000/svg"),r(e,"height","100%")},m(o,a){M(o,e,a),s(e,l),s(e,n)},p(o,[a]){a&1&&i!==(i=to(150,150,115,210,210+300*o[0]/100))&&r(n,"d",i),a&2&&r(n,"stroke",o[1])},i:fe,o:fe,d(o){o&&C(e)}}}function pu(t,e,l,n){var i=(n-90)*Math.PI/180;return{x:t+l*Math.cos(i),y:e+l*Math.sin(i)}}function to(t,e,l,n,i){var o=pu(t,e,l,i),a=pu(t,e,l,n),u=i-n<=180?"0":"1",c=["M",o.x,o.y,"A",l,l,0,u,0,a.x,a.y].join(" ");return c}function rm(t,e,l){let{pct:n=0}=e,{color:i="red"}=e;return t.$$set=o=>{"pct"in o&&l(0,n=o.pct),"color"in o&&l(1,i=o.color)},[n,i]}class am extends Ee{constructor(e){super(),Pe(this,e,rm,om,Ae,{pct:0,color:1})}}function _u(t){let e,l,n,i,o,a,u,c;return{c(){e=m("br"),l=h(),n=m("span"),i=$(t[3]),o=h(),a=m("span"),u=$(t[4]),c=$("/kWh"),r(n,"class","pl-sub"),r(a,"class","pl-snt")},m(f,p){M(f,e,p),M(f,l,p),M(f,n,p),s(n,i),M(f,o,p),M(f,a,p),s(a,u),s(a,c)},p(f,p){p&8&&X(i,f[3]),p&16&&X(u,f[4])},d(f){f&&C(e),f&&C(l),f&&C(n),f&&C(o),f&&C(a)}}}function um(t){let e,l,n,i,o,a,u,c,f,p,_,b,v,d,k,A;l=new am({props:{pct:t[6],color:t[5](t[6])}});let T=t[3]&&_u(t);return{c(){e=m("div"),ie(l.$$.fragment),n=h(),i=m("span"),o=m("span"),a=$(t[2]),u=h(),c=m("br"),f=h(),p=m("span"),_=$(t[0]),b=h(),v=m("span"),d=$(t[1]),k=h(),T&&T.c(),r(o,"class","pl-lab"),r(p,"class","pl-val"),r(v,"class","pl-unt"),r(i,"class","pl-ov"),r(e,"class","pl-root")},m(S,E){M(S,e,E),le(l,e,null),s(e,n),s(e,i),s(i,o),s(o,a),s(i,u),s(i,c),s(i,f),s(i,p),s(p,_),s(i,b),s(i,v),s(v,d),s(i,k),T&&T.m(i,null),A=!0},p(S,[E]){const B={};E&64&&(B.pct=S[6]),E&96&&(B.color=S[5](S[6])),l.$set(B),(!A||E&4)&&X(a,S[2]),(!A||E&1)&&X(_,S[0]),(!A||E&2)&&X(d,S[1]),S[3]?T?T.p(S,E):(T=_u(S),T.c(),T.m(i,null)):T&&(T.d(1),T=null)},i(S){A||(D(l.$$.fragment,S),A=!0)},o(S){q(l.$$.fragment,S),A=!1},d(S){S&&C(e),ne(l),T&&T.d()}}}function fm(t,e,l){let{val:n}=e,{max:i}=e,{unit:o}=e,{label:a}=e,{sub:u=""}=e,{subunit:c=""}=e,{colorFn:f}=e,p=0;return t.$$set=_=>{"val"in _&&l(0,n=_.val),"max"in _&&l(7,i=_.max),"unit"in _&&l(1,o=_.unit),"label"in _&&l(2,a=_.label),"sub"in _&&l(3,u=_.sub),"subunit"in _&&l(4,c=_.subunit),"colorFn"in _&&l(5,f=_.colorFn)},t.$$.update=()=>{t.$$.dirty&129&&l(6,p=Math.min(n,i)/i*100)},[n,o,a,u,c,f,p,i]}class Jc extends Ee{constructor(e){super(),Pe(this,e,fm,um,Ae,{val:0,max:7,unit:1,label:2,sub:3,subunit:4,colorFn:5})}}function du(t,e,l){const n=t.slice();return n[9]=e[l],n[11]=l,n}function vu(t,e,l){const n=t.slice();return n[9]=e[l],n[11]=l,n}function hu(t,e,l){const n=t.slice();return n[13]=e[l],n}function bu(t){let e,l,n,i,o,a=t[0].title&&gu(t),u=t[0].y.ticks,c=[];for(let v=0;v20||t[11]%2==0)&&Cu(t);return{c(){e=Fe("g"),n&&n.c(),r(e,"class","tick"),r(e,"transform",l="translate("+t[5](t[11])+","+t[4]+")")},m(i,o){M(i,e,o),n&&n.m(e,null)},p(i,o){i[3]>20||i[11]%2==0?n?n.p(i,o):(n=Cu(i),n.c(),n.m(e,null)):n&&(n.d(1),n=null),o&48&&l!==(l="translate("+i[5](i[11])+","+i[4]+")")&&r(e,"transform",l)},d(i){i&&C(e),n&&n.d()}}}function Cu(t){let e,l=t[9].label+"",n,i;return{c(){e=Fe("text"),n=$(l),r(e,"x",i=t[3]/2),r(e,"y","-4")},m(o,a){M(o,e,a),s(e,n)},p(o,a){a&1&&l!==(l=o[9].label+"")&&X(n,l),a&8&&i!==(i=o[3]/2)&&r(e,"x",i)},d(o){o&&C(e)}}}function Mu(t){let e=!isNaN(t[5](t[11])),l,n=e&&yu(t);return{c(){n&&n.c(),l=Ge()},m(i,o){n&&n.m(i,o),M(i,l,o)},p(i,o){o&32&&(e=!isNaN(i[5](i[11]))),e?n?n.p(i,o):(n=yu(i),n.c(),n.m(l.parentNode,l)):n&&(n.d(1),n=null)},d(i){n&&n.d(i),i&&C(l)}}}function $u(t){let e,l,n=t[9].value!==void 0&&Su(t),i=t[9].value2>1e-4&&Au(t);return{c(){e=Fe("g"),n&&n.c(),l=Fe("g"),i&&i.c()},m(o,a){M(o,e,a),n&&n.m(e,null),M(o,l,a),i&&i.m(l,null)},p(o,a){o[9].value!==void 0?n?n.p(o,a):(n=Su(o),n.c(),n.m(e,null)):n&&(n.d(1),n=null),o[9].value2>1e-4?i?i.p(o,a):(i=Au(o),i.c(),i.m(l,null)):i&&(i.d(1),i=null)},d(o){o&&C(e),n&&n.d(),o&&C(l),i&&i.d()}}}function Su(t){let e,l,n,i,o,a,u,c=t[3]>15&&Tu(t);return{c(){e=Fe("rect"),c&&c.c(),u=Ge(),r(e,"x",l=t[5](t[11])+2),r(e,"y",n=t[6](t[9].value)),r(e,"width",i=t[3]-4),r(e,"height",o=t[6](t[0].y.min)-t[6](Math.min(t[0].y.min,0)+t[9].value)),r(e,"fill",a=t[9].color)},m(f,p){M(f,e,p),c&&c.m(f,p),M(f,u,p)},p(f,p){p&32&&l!==(l=f[5](f[11])+2)&&r(e,"x",l),p&65&&n!==(n=f[6](f[9].value))&&r(e,"y",n),p&8&&i!==(i=f[3]-4)&&r(e,"width",i),p&65&&o!==(o=f[6](f[0].y.min)-f[6](Math.min(f[0].y.min,0)+f[9].value))&&r(e,"height",o),p&1&&a!==(a=f[9].color)&&r(e,"fill",a),f[3]>15?c?c.p(f,p):(c=Tu(f),c.c(),c.m(u.parentNode,u)):c&&(c.d(1),c=null)},d(f){f&&C(e),c&&c.d(f),f&&C(u)}}}function Tu(t){let e,l=t[9].label+"",n,i,o,a,u,c,f=t[9].title&&Nu(t);return{c(){e=Fe("text"),n=$(l),f&&f.c(),c=Ge(),r(e,"width",i=t[3]-4),r(e,"dominant-baseline","middle"),r(e,"text-anchor",o=t[3]t[6](0)-t[7]?t[9].color:"white"),r(e,"transform",u="translate("+(t[5](t[11])+t[3]/2)+" "+(t[6](t[9].value)>t[6](0)-t[7]?t[6](t[9].value)-t[7]:t[6](t[9].value)+10)+") rotate("+(t[3]p[6](0)-p[7]?p[9].color:"white")&&r(e,"fill",a),_&233&&u!==(u="translate("+(p[5](p[11])+p[3]/2)+" "+(p[6](p[9].value)>p[6](0)-p[7]?p[6](p[9].value)-p[7]:p[6](p[9].value)+10)+") rotate("+(p[3]15&&Pu(t);return{c(){e=Fe("rect"),c&&c.c(),u=Ge(),r(e,"x",l=t[5](t[11])+2),r(e,"y",n=t[6](0)),r(e,"width",i=t[3]-4),r(e,"height",o=t[6](t[0].y.min)-t[6](t[0].y.min+t[9].value2)),r(e,"fill",a=t[9].color2?t[9].color2:t[9].color)},m(f,p){M(f,e,p),c&&c.m(f,p),M(f,u,p)},p(f,p){p&32&&l!==(l=f[5](f[11])+2)&&r(e,"x",l),p&64&&n!==(n=f[6](0))&&r(e,"y",n),p&8&&i!==(i=f[3]-4)&&r(e,"width",i),p&65&&o!==(o=f[6](f[0].y.min)-f[6](f[0].y.min+f[9].value2))&&r(e,"height",o),p&1&&a!==(a=f[9].color2?f[9].color2:f[9].color)&&r(e,"fill",a),f[3]>15?c?c.p(f,p):(c=Pu(f),c.c(),c.m(u.parentNode,u)):c&&(c.d(1),c=null)},d(f){f&&C(e),c&&c.d(f),f&&C(u)}}}function Pu(t){let e,l=t[9].label2+"",n,i,o,a,u,c=t[9].title2&&Eu(t);return{c(){e=Fe("text"),n=$(l),c&&c.c(),u=Ge(),r(e,"width",i=t[3]-4),r(e,"dominant-baseline","middle"),r(e,"text-anchor","middle"),r(e,"fill",o=t[6](-t[9].value2)t[8].call(e))},m(i,o){M(i,e,o),n&&n.m(e,null),l=c0(e,t[8].bind(e))},p(i,[o]){i[0].x.ticks&&i[0].points&&i[4]?n?n.p(i,o):(n=bu(i),n.c(),n.m(e,null)):n&&(n.d(1),n=null)},i:fe,o:fe,d(i){i&&C(e),n&&n.d(),l()}}}let pn=30;function mm(t,e,l){let{config:n}=e,i,o,a,u,c,f,p;function _(){i=this.clientWidth,o=this.clientHeight,l(1,i),l(2,o)}return t.$$set=b=>{"config"in b&&l(0,n=b.config)},t.$$.update=()=>{if(t.$$.dirty&31){l(4,f=o-(n.title?20:0));let b=i-(n.padding.left+n.padding.right);l(3,a=b/n.points.length),l(7,p=an.y.max?k=n.padding.bottom:df||k<0?0:k})}},[n,i,o,a,f,u,c,p,_]}class dn extends Ee{constructor(e){super(),Pe(this,e,mm,cm,Ae,{config:0})}}function pm(t){let e,l;return e=new dn({props:{config:t[0]}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p(n,[i]){const o={};i&1&&(o.config=n[0]),e.$set(o)},i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function _m(t,e,l){let{u1:n}=e,{u2:i}=e,{u3:o}=e,{ds:a}=e,u={};function c(f){return{label:ge(f)+"V",title:f.toFixed(1)+" V",value:isNaN(f)?0:f,color:M1(f||0)}}return t.$$set=f=>{"u1"in f&&l(1,n=f.u1),"u2"in f&&l(2,i=f.u2),"u3"in f&&l(3,o=f.u3),"ds"in f&&l(4,a=f.ds)},t.$$.update=()=>{if(t.$$.dirty&30){let f=[],p=[];n>0&&(f.push({label:a===1?"L1-L2":"L1"}),p.push(c(n))),i>0&&(f.push({label:a===1?"L1-L3":"L2"}),p.push(c(i))),o>0&&(f.push({label:a===1?"L2-L3":"L3"}),p.push(c(o))),l(0,u={padding:{top:20,right:15,bottom:20,left:35},y:{min:200,max:260,ticks:[{value:207,label:"-10%"},{value:230,label:"230v"},{value:253,label:"+10%"}]},x:{ticks:f},points:p})}},[u,n,i,o,a]}class dm extends Ee{constructor(e){super(),Pe(this,e,_m,pm,Ae,{u1:1,u2:2,u3:3,ds:4})}}function vm(t){let e,l;return e=new dn({props:{config:t[0]}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p(n,[i]){const o={};i&1&&(o.config=n[0]),e.$set(o)},i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function hm(t,e,l){let{u1:n}=e,{u2:i}=e,{u3:o}=e,{i1:a}=e,{i2:u}=e,{i3:c}=e,{max:f}=e,p={};function _(b){return{label:ge(b)+"A",title:b.toFixed(1)+" A",value:isNaN(b)?0:b,color:Bc(b?b/f*100:0)}}return t.$$set=b=>{"u1"in b&&l(1,n=b.u1),"u2"in b&&l(2,i=b.u2),"u3"in b&&l(3,o=b.u3),"i1"in b&&l(4,a=b.i1),"i2"in b&&l(5,u=b.i2),"i3"in b&&l(6,c=b.i3),"max"in b&&l(7,f=b.max)},t.$$.update=()=>{if(t.$$.dirty&254){let b=[],v=[];n>0&&(b.push({label:"L1"}),v.push(_(a))),i>0&&(b.push({label:"L2"}),v.push(_(u))),o>0&&(b.push({label:"L3"}),v.push(_(c))),l(0,p={padding:{top:20,right:15,bottom:20,left:35},y:{min:0,max:f,ticks:[{value:0,label:"0%"},{value:f/4,label:"25%"},{value:f/2,label:"50%"},{value:f/4*3,label:"75%"},{value:f,label:"100%"}]},x:{ticks:b},points:v})}},[p,n,i,o,a,u,c,f]}class bm extends Ee{constructor(e){super(),Pe(this,e,hm,vm,Ae,{u1:1,u2:2,u3:3,i1:4,i2:5,i3:6,max:7})}}function gm(t){let e,l,n,i,o,a,u,c=(typeof t[0]<"u"?t[0].toFixed(0):"-")+"",f,p,_,b,v,d,k=(typeof t[1]<"u"?t[1].toFixed(0):"-")+"",A,T,S,E,B,P,R,L=(typeof t[2]<"u"?t[2].toFixed(1):"-")+"",F,x,j,z,G,V,W=(typeof t[3]<"u"?t[3].toFixed(1):"-")+"",U,K;return{c(){e=m("div"),l=m("strong"),l.textContent="Reactive",n=h(),i=m("div"),o=m("div"),o.textContent="Instant in",a=h(),u=m("div"),f=$(c),p=$(" VAr"),_=h(),b=m("div"),b.textContent="Instant out",v=h(),d=m("div"),A=$(k),T=$(" VAr"),S=h(),E=m("div"),B=m("div"),B.textContent="Total in",P=h(),R=m("div"),F=$(L),x=$(" kVArh"),j=h(),z=m("div"),z.textContent="Total out",G=h(),V=m("div"),U=$(W),K=$(" kVArh"),r(u,"class","text-right"),r(d,"class","text-right"),r(i,"class","grid grid-cols-2 mt-4"),r(R,"class","text-right"),r(V,"class","text-right"),r(E,"class","grid grid-cols-2 mt-4"),r(e,"class","mx-2 text-sm")},m(H,Y){M(H,e,Y),s(e,l),s(e,n),s(e,i),s(i,o),s(i,a),s(i,u),s(u,f),s(u,p),s(i,_),s(i,b),s(i,v),s(i,d),s(d,A),s(d,T),s(e,S),s(e,E),s(E,B),s(E,P),s(E,R),s(R,F),s(R,x),s(E,j),s(E,z),s(E,G),s(E,V),s(V,U),s(V,K)},p(H,[Y]){Y&1&&c!==(c=(typeof H[0]<"u"?H[0].toFixed(0):"-")+"")&&X(f,c),Y&2&&k!==(k=(typeof H[1]<"u"?H[1].toFixed(0):"-")+"")&&X(A,k),Y&4&&L!==(L=(typeof H[2]<"u"?H[2].toFixed(1):"-")+"")&&X(F,L),Y&8&&W!==(W=(typeof H[3]<"u"?H[3].toFixed(1):"-")+"")&&X(U,W)},i:fe,o:fe,d(H){H&&C(e)}}}function km(t,e,l){let{importInstant:n}=e,{exportInstant:i}=e,{importTotal:o}=e,{exportTotal:a}=e;return t.$$set=u=>{"importInstant"in u&&l(0,n=u.importInstant),"exportInstant"in u&&l(1,i=u.exportInstant),"importTotal"in u&&l(2,o=u.importTotal),"exportTotal"in u&&l(3,a=u.exportTotal)},[n,i,o,a]}class wm extends Ee{constructor(e){super(),Pe(this,e,km,gm,Ae,{importInstant:0,exportInstant:1,importTotal:2,exportTotal:3})}}function Iu(t){let e;function l(o,a){return o[3]?Cm:ym}let n=l(t),i=n(t);return{c(){i.c(),e=Ge()},m(o,a){i.m(o,a),M(o,e,a)},p(o,a){n===(n=l(o))&&i?i.p(o,a):(i.d(1),i=n(o),i&&(i.c(),i.m(e.parentNode,e)))},d(o){i.d(o),o&&C(e)}}}function ym(t){let e,l,n,i,o,a,u=ge(t[1].h.u,2)+"",c,f,p,_,b,v,d=ge(t[1].d.u,1)+"",k,A,T,S,E,B,P=ge(t[1].m.u)+"",R,L,F,x,j,z,G=ge(t[0].last_month.u)+"",V,W,U,K,H=t[4]&&Ou(t);return{c(){e=m("strong"),e.textContent="Consumption",l=h(),n=m("div"),i=m("div"),i.textContent="Hour",o=h(),a=m("div"),c=$(u),f=$(" kWh"),p=h(),_=m("div"),_.textContent="Day",b=h(),v=m("div"),k=$(d),A=$(" kWh"),T=h(),S=m("div"),S.textContent="Month",E=h(),B=m("div"),R=$(P),L=$(" kWh"),F=h(),x=m("div"),x.textContent="Last month",j=h(),z=m("div"),V=$(G),W=$(" kWh"),U=h(),H&&H.c(),K=Ge(),r(a,"class","text-right"),r(v,"class","text-right"),r(B,"class","text-right"),r(z,"class","text-right"),r(n,"class","grid grid-cols-2 mb-3")},m(Y,Z){M(Y,e,Z),M(Y,l,Z),M(Y,n,Z),s(n,i),s(n,o),s(n,a),s(a,c),s(a,f),s(n,p),s(n,_),s(n,b),s(n,v),s(v,k),s(v,A),s(n,T),s(n,S),s(n,E),s(n,B),s(B,R),s(B,L),s(n,F),s(n,x),s(n,j),s(n,z),s(z,V),s(z,W),M(Y,U,Z),H&&H.m(Y,Z),M(Y,K,Z)},p(Y,Z){Z&2&&u!==(u=ge(Y[1].h.u,2)+"")&&X(c,u),Z&2&&d!==(d=ge(Y[1].d.u,1)+"")&&X(k,d),Z&2&&P!==(P=ge(Y[1].m.u)+"")&&X(R,P),Z&1&&G!==(G=ge(Y[0].last_month.u)+"")&&X(V,G),Y[4]?H?H.p(Y,Z):(H=Ou(Y),H.c(),H.m(K.parentNode,K)):H&&(H.d(1),H=null)},d(Y){Y&&C(e),Y&&C(l),Y&&C(n),Y&&C(U),H&&H.d(Y),Y&&C(K)}}}function Cm(t){let e,l,n,i,o,a,u=ge(t[1].h.u,2)+"",c,f,p,_,b,v,d,k=ge(t[1].d.u,1)+"",A,T,S,E,B,P,R,L=ge(t[1].m.u)+"",F,x,j,z,G,V,W,U=ge(t[0].last_month.u)+"",K,H,Y,Z,re,ue,we,me,Te,je,Oe,He=ge(t[1].h.p,2)+"",ye,Ne,Re,$e,y,g,w,N=ge(t[1].d.p,1)+"",I,Q,J,se,ce,ve,Se,oe=ge(t[1].m.p)+"",pe,Be,_e,Ce,vt,Hl,tl,ct=ge(t[0].last_month.p)+"",Sl,pl,jt,ht,Ye=t[4]&&Ru(t),Qe=t[4]&&Lu(t),Xe=t[4]&&Fu(t),Ue=t[4]&&qu(t),Ze=t[4]&&Bu(t),We=t[4]&&Uu(t),Je=t[4]&&ju(t),xe=t[4]&&Hu(t);return{c(){e=m("strong"),e.textContent="Import",l=h(),n=m("div"),i=m("div"),i.textContent="Hour",o=h(),a=m("div"),c=$(u),f=$(" kWh"),p=h(),Ye&&Ye.c(),_=h(),b=m("div"),b.textContent="Day",v=h(),d=m("div"),A=$(k),T=$(" kWh"),S=h(),Qe&&Qe.c(),E=h(),B=m("div"),B.textContent="Month",P=h(),R=m("div"),F=$(L),x=$(" kWh"),j=h(),Xe&&Xe.c(),z=h(),G=m("div"),G.textContent="Last mo.",V=h(),W=m("div"),K=$(U),H=$(" kWh"),Y=h(),Ue&&Ue.c(),re=h(),ue=m("strong"),ue.textContent="Export",we=h(),me=m("div"),Te=m("div"),Te.textContent="Hour",je=h(),Oe=m("div"),ye=$(He),Ne=$(" kWh"),Re=h(),Ze&&Ze.c(),$e=h(),y=m("div"),y.textContent="Day",g=h(),w=m("div"),I=$(N),Q=$(" kWh"),J=h(),We&&We.c(),se=h(),ce=m("div"),ce.textContent="Month",ve=h(),Se=m("div"),pe=$(oe),Be=$(" kWh"),_e=h(),Je&&Je.c(),Ce=h(),vt=m("div"),vt.textContent="Last mo.",Hl=h(),tl=m("div"),Sl=$(ct),pl=$(" kWh"),jt=h(),xe&&xe.c(),r(a,"class","text-right"),r(d,"class","text-right"),r(R,"class","text-right"),r(W,"class","text-right"),r(n,"class",Z="grid grid-cols-"+t[5]+" mb-3"),r(Oe,"class","text-right"),r(w,"class","text-right"),r(Se,"class","text-right"),r(tl,"class","text-right"),r(me,"class",ht="grid grid-cols-"+t[5])},m(de,Me){M(de,e,Me),M(de,l,Me),M(de,n,Me),s(n,i),s(n,o),s(n,a),s(a,c),s(a,f),s(n,p),Ye&&Ye.m(n,null),s(n,_),s(n,b),s(n,v),s(n,d),s(d,A),s(d,T),s(n,S),Qe&&Qe.m(n,null),s(n,E),s(n,B),s(n,P),s(n,R),s(R,F),s(R,x),s(n,j),Xe&&Xe.m(n,null),s(n,z),s(n,G),s(n,V),s(n,W),s(W,K),s(W,H),s(n,Y),Ue&&Ue.m(n,null),M(de,re,Me),M(de,ue,Me),M(de,we,Me),M(de,me,Me),s(me,Te),s(me,je),s(me,Oe),s(Oe,ye),s(Oe,Ne),s(me,Re),Ze&&Ze.m(me,null),s(me,$e),s(me,y),s(me,g),s(me,w),s(w,I),s(w,Q),s(me,J),We&&We.m(me,null),s(me,se),s(me,ce),s(me,ve),s(me,Se),s(Se,pe),s(Se,Be),s(me,_e),Je&&Je.m(me,null),s(me,Ce),s(me,vt),s(me,Hl),s(me,tl),s(tl,Sl),s(tl,pl),s(me,jt),xe&&xe.m(me,null)},p(de,Me){Me&2&&u!==(u=ge(de[1].h.u,2)+"")&&X(c,u),de[4]?Ye?Ye.p(de,Me):(Ye=Ru(de),Ye.c(),Ye.m(n,_)):Ye&&(Ye.d(1),Ye=null),Me&2&&k!==(k=ge(de[1].d.u,1)+"")&&X(A,k),de[4]?Qe?Qe.p(de,Me):(Qe=Lu(de),Qe.c(),Qe.m(n,E)):Qe&&(Qe.d(1),Qe=null),Me&2&&L!==(L=ge(de[1].m.u)+"")&&X(F,L),de[4]?Xe?Xe.p(de,Me):(Xe=Fu(de),Xe.c(),Xe.m(n,z)):Xe&&(Xe.d(1),Xe=null),Me&1&&U!==(U=ge(de[0].last_month.u)+"")&&X(K,U),de[4]?Ue?Ue.p(de,Me):(Ue=qu(de),Ue.c(),Ue.m(n,null)):Ue&&(Ue.d(1),Ue=null),Me&32&&Z!==(Z="grid grid-cols-"+de[5]+" mb-3")&&r(n,"class",Z),Me&2&&He!==(He=ge(de[1].h.p,2)+"")&&X(ye,He),de[4]?Ze?Ze.p(de,Me):(Ze=Bu(de),Ze.c(),Ze.m(me,$e)):Ze&&(Ze.d(1),Ze=null),Me&2&&N!==(N=ge(de[1].d.p,1)+"")&&X(I,N),de[4]?We?We.p(de,Me):(We=Uu(de),We.c(),We.m(me,se)):We&&(We.d(1),We=null),Me&2&&oe!==(oe=ge(de[1].m.p)+"")&&X(pe,oe),de[4]?Je?Je.p(de,Me):(Je=ju(de),Je.c(),Je.m(me,Ce)):Je&&(Je.d(1),Je=null),Me&1&&ct!==(ct=ge(de[0].last_month.p)+"")&&X(Sl,ct),de[4]?xe?xe.p(de,Me):(xe=Hu(de),xe.c(),xe.m(me,null)):xe&&(xe.d(1),xe=null),Me&32&&ht!==(ht="grid grid-cols-"+de[5])&&r(me,"class",ht)},d(de){de&&C(e),de&&C(l),de&&C(n),Ye&&Ye.d(),Qe&&Qe.d(),Xe&&Xe.d(),Ue&&Ue.d(),de&&C(re),de&&C(ue),de&&C(we),de&&C(me),Ze&&Ze.d(),We&&We.d(),Je&&Je.d(),xe&&xe.d()}}}function Ou(t){let e,l,n,i,o,a,u=ge(t[1].h.c,2)+"",c,f,p,_,b,v,d,k=ge(t[1].d.c,1)+"",A,T,S,E,B,P,R,L=ge(t[1].m.c)+"",F,x,j,z,G,V,W,U=ge(t[0].last_month.c)+"",K,H,Y;return{c(){e=m("strong"),e.textContent="Cost",l=h(),n=m("div"),i=m("div"),i.textContent="Hour",o=h(),a=m("div"),c=$(u),f=h(),p=$(t[2]),_=h(),b=m("div"),b.textContent="Day",v=h(),d=m("div"),A=$(k),T=h(),S=$(t[2]),E=h(),B=m("div"),B.textContent="Month",P=h(),R=m("div"),F=$(L),x=h(),j=$(t[2]),z=h(),G=m("div"),G.textContent="Last month",V=h(),W=m("div"),K=$(U),H=h(),Y=$(t[2]),r(a,"class","text-right"),r(d,"class","text-right"),r(R,"class","text-right"),r(W,"class","text-right"),r(n,"class","grid grid-cols-2")},m(Z,re){M(Z,e,re),M(Z,l,re),M(Z,n,re),s(n,i),s(n,o),s(n,a),s(a,c),s(a,f),s(a,p),s(n,_),s(n,b),s(n,v),s(n,d),s(d,A),s(d,T),s(d,S),s(n,E),s(n,B),s(n,P),s(n,R),s(R,F),s(R,x),s(R,j),s(n,z),s(n,G),s(n,V),s(n,W),s(W,K),s(W,H),s(W,Y)},p(Z,re){re&2&&u!==(u=ge(Z[1].h.c,2)+"")&&X(c,u),re&4&&X(p,Z[2]),re&2&&k!==(k=ge(Z[1].d.c,1)+"")&&X(A,k),re&4&&X(S,Z[2]),re&2&&L!==(L=ge(Z[1].m.c)+"")&&X(F,L),re&4&&X(j,Z[2]),re&1&&U!==(U=ge(Z[0].last_month.c)+"")&&X(K,U),re&4&&X(Y,Z[2])},d(Z){Z&&C(e),Z&&C(l),Z&&C(n)}}}function Ru(t){let e,l=ge(t[1].h.c,2)+"",n,i,o;return{c(){e=m("div"),n=$(l),i=h(),o=$(t[2]),r(e,"class","text-right")},m(a,u){M(a,e,u),s(e,n),s(e,i),s(e,o)},p(a,u){u&2&&l!==(l=ge(a[1].h.c,2)+"")&&X(n,l),u&4&&X(o,a[2])},d(a){a&&C(e)}}}function Lu(t){let e,l=ge(t[1].d.c,1)+"",n,i,o;return{c(){e=m("div"),n=$(l),i=h(),o=$(t[2]),r(e,"class","text-right")},m(a,u){M(a,e,u),s(e,n),s(e,i),s(e,o)},p(a,u){u&2&&l!==(l=ge(a[1].d.c,1)+"")&&X(n,l),u&4&&X(o,a[2])},d(a){a&&C(e)}}}function Fu(t){let e,l=ge(t[1].m.c)+"",n,i,o;return{c(){e=m("div"),n=$(l),i=h(),o=$(t[2]),r(e,"class","text-right")},m(a,u){M(a,e,u),s(e,n),s(e,i),s(e,o)},p(a,u){u&2&&l!==(l=ge(a[1].m.c)+"")&&X(n,l),u&4&&X(o,a[2])},d(a){a&&C(e)}}}function qu(t){let e,l=ge(t[0].last_month.c)+"",n,i,o;return{c(){e=m("div"),n=$(l),i=h(),o=$(t[2]),r(e,"class","text-right")},m(a,u){M(a,e,u),s(e,n),s(e,i),s(e,o)},p(a,u){u&1&&l!==(l=ge(a[0].last_month.c)+"")&&X(n,l),u&4&&X(o,a[2])},d(a){a&&C(e)}}}function Bu(t){let e,l=ge(t[1].h.i,2)+"",n,i,o;return{c(){e=m("div"),n=$(l),i=h(),o=$(t[2]),r(e,"class","text-right")},m(a,u){M(a,e,u),s(e,n),s(e,i),s(e,o)},p(a,u){u&2&&l!==(l=ge(a[1].h.i,2)+"")&&X(n,l),u&4&&X(o,a[2])},d(a){a&&C(e)}}}function Uu(t){let e,l=ge(t[1].d.i,1)+"",n,i,o;return{c(){e=m("div"),n=$(l),i=h(),o=$(t[2]),r(e,"class","text-right")},m(a,u){M(a,e,u),s(e,n),s(e,i),s(e,o)},p(a,u){u&2&&l!==(l=ge(a[1].d.i,1)+"")&&X(n,l),u&4&&X(o,a[2])},d(a){a&&C(e)}}}function ju(t){let e,l=ge(t[1].m.i)+"",n,i,o;return{c(){e=m("div"),n=$(l),i=h(),o=$(t[2]),r(e,"class","text-right")},m(a,u){M(a,e,u),s(e,n),s(e,i),s(e,o)},p(a,u){u&2&&l!==(l=ge(a[1].m.i)+"")&&X(n,l),u&4&&X(o,a[2])},d(a){a&&C(e)}}}function Hu(t){let e,l=ge(t[0].last_month.i)+"",n,i,o;return{c(){e=m("div"),n=$(l),i=h(),o=$(t[2]),r(e,"class","text-right")},m(a,u){M(a,e,u),s(e,n),s(e,i),s(e,o)},p(a,u){u&1&&l!==(l=ge(a[0].last_month.i)+"")&&X(n,l),u&4&&X(o,a[2])},d(a){a&&C(e)}}}function Mm(t){let e,l,n,i,o,a,u=t[1]&&Iu(t);return{c(){e=m("div"),l=m("strong"),l.textContent="Real time calculation",n=h(),i=m("br"),o=m("br"),a=h(),u&&u.c(),r(e,"class","mx-2 text-sm")},m(c,f){M(c,e,f),s(e,l),s(e,n),s(e,i),s(e,o),s(e,a),u&&u.m(e,null)},p(c,[f]){c[1]?u?u.p(c,f):(u=Iu(c),u.c(),u.m(e,null)):u&&(u.d(1),u=null)},i:fe,o:fe,d(c){c&&C(e),u&&u.d()}}}function $m(t,e,l){let{sysinfo:n}=e,{data:i}=e,{currency:o}=e,{hasExport:a}=e,u=!1,c=3;return t.$$set=f=>{"sysinfo"in f&&l(0,n=f.sysinfo),"data"in f&&l(1,i=f.data),"currency"in f&&l(2,o=f.currency),"hasExport"in f&&l(3,a=f.hasExport)},t.$$.update=()=>{t.$$.dirty&18&&(l(4,u=i&&i.h&&(Math.abs(i.h.c)>.01||Math.abs(i.d.c)>.01||Math.abs(i.m.c)>.01||Math.abs(i.h.i)>.01||Math.abs(i.d.i)>.01||Math.abs(i.m.i)>.01)),l(5,c=u?3:2))},[n,i,o,a,u,c]}class Sm extends Ee{constructor(e){super(),Pe(this,e,$m,Mm,Ae,{sysinfo:0,data:1,currency:2,hasExport:3})}}function Tm(t){let e,l,n=nu(t[0].source)+"",i,o,a,u;return a=new dn({props:{config:t[1]}}),{c(){e=m("a"),l=$("Provided by: "),i=$(n),o=h(),ie(a.$$.fragment),r(e,"href","https://transparency.entsoe.eu/"),r(e,"target","_blank"),r(e,"class","text-xs float-right z-40")},m(c,f){M(c,e,f),s(e,l),s(e,i),M(c,o,f),le(a,c,f),u=!0},p(c,[f]){(!u||f&1)&&n!==(n=nu(c[0].source)+"")&&X(i,n);const p={};f&2&&(p.config=c[1]),a.$set(p)},i(c){u||(D(a.$$.fragment,c),u=!0)},o(c){q(a.$$.fragment,c),u=!1},d(c){c&&C(e),c&&C(o),ne(a,c)}}}function Nm(t,e,l){let{json:n}=e,{sysinfo:i}=e,o={},a,u;return t.$$set=c=>{"json"in c&&l(0,n=c.json),"sysinfo"in c&&l(2,i=c.sysinfo)},t.$$.update=()=>{if(t.$$.dirty&29){let c=n.currency,f=new Date().getUTCHours(),p=0,_=0,b=0,v=[],d=[],k=[];l(4,u=l(3,a=0));let A=new Date;for(fl(A,i.clock_offset-(24+A.getHours()-A.getUTCHours())%24),p=f;p<24&&(_=n[Le(b++)],_!=null);p++)d.push({label:Le(A.getHours())}),k.push(_*100),l(4,u=Math.min(u,_*100)),l(3,a=Math.max(a,_*100)),fl(A,1);for(p=0;p<24&&(_=n[Le(b++)],_!=null);p++)d.push({label:Le(A.getHours())}),k.push(_*100),l(4,u=Math.min(u,_*100)),l(3,a=Math.max(a,_*100)),fl(A,1);if(u>-100&&a<100){switch(c){case"NOK":case"SEK":case"DKK":c="øre";break;case"EUR":c="cent";break;default:c=c+"/100"}for(l(4,u*=100),l(3,a*=100),p=0;p=0?P.toFixed(R):"",title:P>=0?P.toFixed(2)+" "+c:"",value:_>=0?Math.abs(_):0,label2:P<0?P.toFixed(R):"",title2:P<0?P.toFixed(2)+" "+c:"",value2:_<0?Math.abs(_):0,color:"#7c3aed"})}let S=Math.max(a,Math.abs(u));if(u<0){l(4,u=Math.min(S/4*-1,u));let P=Math.ceil(Math.abs(u)/S*4),R=u/P;for(p=1;p{"json"in c&&l(1,n=c.json),"sysinfo"in c&&l(2,i=c.sysinfo)},t.$$.update=()=>{if(t.$$.dirty&30){let c=0,f=[],p=[],_=[];l(4,u=l(3,a=0));let b=fl(new Date,-24),v=new Date().getUTCHours();for(fl(b,i.clock_offset-(24+b.getHours()-b.getUTCHours())%24),c=v;c<24;c++){let T=n["i"+Le(c)],S=n["e"+Le(c)];T===void 0&&(T=0),S===void 0&&(S=0),p.push({label:Le(b.getHours())}),_.push({label:T.toFixed(1),title:T.toFixed(2)+" kWh",value:T*10,label2:S.toFixed(1),title2:S.toFixed(2)+" kWh",value2:S*10,color:"#7c3aed",color2:"#37829E"}),l(4,u=Math.max(u,S*10)),l(3,a=Math.max(a,T*10)),fl(b,1)}for(c=0;c{"json"in c&&l(1,n=c.json),"sysinfo"in c&&l(2,i=c.sysinfo)},t.$$.update=()=>{if(t.$$.dirty&30){let c=0,f=[],p=[],_=[];l(4,u=l(3,a=0));let b=new Date,v=new Date;for(fl(b,i.clock_offset-(24+b.getHours()-b.getUTCHours())%24),fl(v,i.clock_offset-(24+v.getHours()-v.getUTCHours())%24),v.setDate(0),c=b.getDate();c<=v.getDate();c++){let T=n["i"+Le(c)],S=n["e"+Le(c)];T===void 0&&(T=0),S===void 0&&(S=0),p.push({label:Le(c)}),_.push({label:T.toFixed(T<10?1:0),title:T.toFixed(2)+" kWh",value:T,label2:S.toFixed(S<10?1:0),title2:S.toFixed(2)+" kWh",value2:S,color:"#7c3aed",color2:"#37829E"}),l(4,u=Math.max(u,S)),l(3,a=Math.max(a,T))}for(c=1;c{"json"in u&&l(1,n=u.json)},t.$$.update=()=>{if(t.$$.dirty&14){let u=0,c=0,f=[],p=[],_=[];n.s&&n.s.forEach((d,k)=>{var A=d.n?d.n:d.a;c=d.v,c==-127&&(c=0),p.push({label:A.slice(-4)}),_.push({label:c.toFixed(1),value:c,color:"#7c3aed"}),l(3,a=Math.min(a,c)),l(2,o=Math.max(o,c))}),l(2,o=Math.ceil(o)),l(3,a=Math.floor(a));let b=o;a<0&&(b+=Math.abs(a));let v=b/4;for(u=0;u<5;u++)c=a+v*u,f.push({value:c,label:c.toFixed(1)});l(0,i={title:"Temperature sensors (°C)",height:226,width:1520,padding:{top:20,right:15,bottom:20,left:35},y:{min:a,max:o,ticks:f},x:{ticks:p},points:_})}},[i,n,o,a]}class qm extends Ee{constructor(e){super(),Pe(this,e,Fm,Lm,Ae,{json:1})}}function Bm(t){let e,l;return e=new dn({props:{config:t[0]}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p(n,[i]){const o={};i&1&&(o.config=n[0]),e.$set(o)},i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}let Um=0;function jm(t,e,l){let n={},i=0,o;return Kc.subscribe(a=>{l(2,o=a)}),Vc(),t.$$.update=()=>{if(t.$$.dirty&6){let a=0,u=[],c=[],f=[];if(u.push({value:0,label:0}),o&&o.p)for(a=0;a0?Le(p.d)+"."+ro[new Date().getMonth()]:"-"}),l(1,i=Math.max(i,p.v))}if(o&&o.t){for(a=0;a=i)break;u.push({value:p,label:p})}u.push({label:o.m.toFixed(1),align:"right",color:"green",value:o.m})}o&&o.c&&(u.push({label:o.c.toFixed(0),color:"orange",value:o.c}),l(1,i=Math.max(i,o.c))),l(1,i=Math.ceil(i)),l(0,n={title:"Tariff peaks",padding:{top:20,right:35,bottom:20,left:35},y:{min:Um,max:i,ticks:u},x:{ticks:c},points:f})}},[n,i,o]}class Hm extends Ee{constructor(e){super(),Pe(this,e,jm,Bm,Ae,{})}}function Wu(t){let e,l,n,i,o,a,u=(t[0].mt?Ns(t[0].mt):"-")+"",c,f,p,_=(t[0].ic?t[0].ic.toFixed(1):"-")+"",b,v,d;return i=new Jc({props:{val:t[0].i?t[0].i:0,max:t[0].im?t[0].im:15e3,unit:"W",label:"Import",sub:t[0].p,subunit:t[0].pc,colorFn:Bc}}),{c(){e=m("div"),l=m("div"),n=m("div"),ie(i.$$.fragment),o=h(),a=m("div"),c=$(u),f=h(),p=m("div"),b=$(_),v=$(" kWh"),r(n,"class","col-span-2"),r(p,"class","text-right"),r(l,"class","grid grid-cols-2"),r(e,"class","cnt")},m(k,A){M(k,e,A),s(e,l),s(l,n),le(i,n,null),s(l,o),s(l,a),s(a,c),s(l,f),s(l,p),s(p,b),s(p,v),d=!0},p(k,A){const T={};A&1&&(T.val=k[0].i?k[0].i:0),A&1&&(T.max=k[0].im?k[0].im:15e3),A&1&&(T.sub=k[0].p),A&1&&(T.subunit=k[0].pc),i.$set(T),(!d||A&1)&&u!==(u=(k[0].mt?Ns(k[0].mt):"-")+"")&&X(c,u),(!d||A&1)&&_!==(_=(k[0].ic?k[0].ic.toFixed(1):"-")+"")&&X(b,_)},i(k){d||(D(i.$$.fragment,k),d=!0)},o(k){q(i.$$.fragment,k),d=!1},d(k){k&&C(e),ne(i)}}}function zu(t){let e,l,n,i,o,a,u,c,f=(t[0].ec?t[0].ec.toFixed(1):"-")+"",p,_,b;return i=new Jc({props:{val:t[0].e?t[0].e:0,max:t[0].om?t[0].om*1e3:1e4,unit:"W",label:"Export",colorFn:$1}}),{c(){e=m("div"),l=m("div"),n=m("div"),ie(i.$$.fragment),o=h(),a=m("div"),u=h(),c=m("div"),p=$(f),_=$(" kWh"),r(n,"class","col-span-2"),r(c,"class","text-right"),r(l,"class","grid grid-cols-2"),r(e,"class","cnt")},m(v,d){M(v,e,d),s(e,l),s(l,n),le(i,n,null),s(l,o),s(l,a),s(l,u),s(l,c),s(c,p),s(c,_),b=!0},p(v,d){const k={};d&1&&(k.val=v[0].e?v[0].e:0),d&1&&(k.max=v[0].om?v[0].om*1e3:1e4),i.$set(k),(!b||d&1)&&f!==(f=(v[0].ec?v[0].ec.toFixed(1):"-")+"")&&X(p,f)},i(v){b||(D(i.$$.fragment,v),b=!0)},o(v){q(i.$$.fragment,v),b=!1},d(v){v&&C(e),ne(i)}}}function Gu(t){let e,l,n;return l=new dm({props:{u1:t[0].u1,u2:t[0].u2,u3:t[0].u3,ds:t[0].ds}}),{c(){e=m("div"),ie(l.$$.fragment),r(e,"class","cnt")},m(i,o){M(i,e,o),le(l,e,null),n=!0},p(i,o){const a={};o&1&&(a.u1=i[0].u1),o&1&&(a.u2=i[0].u2),o&1&&(a.u3=i[0].u3),o&1&&(a.ds=i[0].ds),l.$set(a)},i(i){n||(D(l.$$.fragment,i),n=!0)},o(i){q(l.$$.fragment,i),n=!1},d(i){i&&C(e),ne(l)}}}function Vu(t){let e,l,n;return l=new bm({props:{u1:t[0].u1,u2:t[0].u2,u3:t[0].u3,i1:t[0].i1,i2:t[0].i2,i3:t[0].i3,max:t[0].mf?t[0].mf:32}}),{c(){e=m("div"),ie(l.$$.fragment),r(e,"class","cnt")},m(i,o){M(i,e,o),le(l,e,null),n=!0},p(i,o){const a={};o&1&&(a.u1=i[0].u1),o&1&&(a.u2=i[0].u2),o&1&&(a.u3=i[0].u3),o&1&&(a.i1=i[0].i1),o&1&&(a.i2=i[0].i2),o&1&&(a.i3=i[0].i3),o&1&&(a.max=i[0].mf?i[0].mf:32),l.$set(a)},i(i){n||(D(l.$$.fragment,i),n=!0)},o(i){q(l.$$.fragment,i),n=!1},d(i){i&&C(e),ne(l)}}}function Ku(t){let e,l,n;return l=new wm({props:{importInstant:t[0].ri,exportInstant:t[0].re,importTotal:t[0].ric,exportTotal:t[0].rec}}),{c(){e=m("div"),ie(l.$$.fragment),r(e,"class","cnt")},m(i,o){M(i,e,o),le(l,e,null),n=!0},p(i,o){const a={};o&1&&(a.importInstant=i[0].ri),o&1&&(a.exportInstant=i[0].re),o&1&&(a.importTotal=i[0].ric),o&1&&(a.exportTotal=i[0].rec),l.$set(a)},i(i){n||(D(l.$$.fragment,i),n=!0)},o(i){q(l.$$.fragment,i),n=!1},d(i){i&&C(e),ne(l)}}}function Yu(t){let e,l,n;return l=new Sm({props:{sysinfo:t[1],data:t[0].ea,currency:t[0].pc,hasExport:t[0].om>0||t[0].e>0}}),{c(){e=m("div"),ie(l.$$.fragment),r(e,"class","cnt")},m(i,o){M(i,e,o),le(l,e,null),n=!0},p(i,o){const a={};o&2&&(a.sysinfo=i[1]),o&1&&(a.data=i[0].ea),o&1&&(a.currency=i[0].pc),o&1&&(a.hasExport=i[0].om>0||i[0].e>0),l.$set(a)},i(i){n||(D(l.$$.fragment,i),n=!0)},o(i){q(l.$$.fragment,i),n=!1},d(i){i&&C(e),ne(l)}}}function Qu(t){let e,l,n;return l=new Hm({}),{c(){e=m("div"),ie(l.$$.fragment),r(e,"class","cnt h-64")},m(i,o){M(i,e,o),le(l,e,null),n=!0},i(i){n||(D(l.$$.fragment,i),n=!0)},o(i){q(l.$$.fragment,i),n=!1},d(i){i&&C(e),ne(l)}}}function Xu(t){let e,l,n;return l=new Am({props:{json:t[2],sysinfo:t[1]}}),{c(){e=m("div"),ie(l.$$.fragment),r(e,"class","cnt gwf")},m(i,o){M(i,e,o),le(l,e,null),n=!0},p(i,o){const a={};o&4&&(a.json=i[2]),o&2&&(a.sysinfo=i[1]),l.$set(a)},i(i){n||(D(l.$$.fragment,i),n=!0)},o(i){q(l.$$.fragment,i),n=!1},d(i){i&&C(e),ne(l)}}}function Zu(t){let e,l,n;return l=new Dm({props:{json:t[3],sysinfo:t[1]}}),{c(){e=m("div"),ie(l.$$.fragment),r(e,"class","cnt gwf")},m(i,o){M(i,e,o),le(l,e,null),n=!0},p(i,o){const a={};o&8&&(a.json=i[3]),o&2&&(a.sysinfo=i[1]),l.$set(a)},i(i){n||(D(l.$$.fragment,i),n=!0)},o(i){q(l.$$.fragment,i),n=!1},d(i){i&&C(e),ne(l)}}}function Ju(t){let e,l,n;return l=new Rm({props:{json:t[4],sysinfo:t[1]}}),{c(){e=m("div"),ie(l.$$.fragment),r(e,"class","cnt gwf")},m(i,o){M(i,e,o),le(l,e,null),n=!0},p(i,o){const a={};o&16&&(a.json=i[4]),o&2&&(a.sysinfo=i[1]),l.$set(a)},i(i){n||(D(l.$$.fragment,i),n=!0)},o(i){q(l.$$.fragment,i),n=!1},d(i){i&&C(e),ne(l)}}}function xu(t){let e,l,n;return l=new qm({props:{json:t[5]}}),{c(){e=m("div"),ie(l.$$.fragment),r(e,"class","cnt gwf")},m(i,o){M(i,e,o),le(l,e,null),n=!0},p(i,o){const a={};o&32&&(a.json=i[5]),l.$set(a)},i(i){n||(D(l.$$.fragment,i),n=!0)},o(i){q(l.$$.fragment,i),n=!1},d(i){i&&C(e),ne(l)}}}function Wm(t){let e,l=Ve(t[1].ui.i,t[0].i),n,i=Ve(t[1].ui.e,t[0].om||t[0].e>0),o,a=Ve(t[1].ui.v,t[0].u1>100||t[0].u2>100||t[0].u3>100),u,c=Ve(t[1].ui.a,t[0].i1>.01||t[0].i2>.01||t[0].i3>.01),f,p=Ve(t[1].ui.r,t[0].ri>0||t[0].re>0||t[0].ric>0||t[0].rec>0),_,b=Ve(t[1].ui.c,t[0].ea),v,d=Ve(t[1].ui.t,t[0].pr&&(t[0].pr.startsWith("10YNO")||t[0].pr=="10Y1001A1001A48H")),k,A=Ve(t[1].ui.p,t[0].pe&&!Number.isNaN(t[0].p)),T,S=Ve(t[1].ui.d,t[3]),E,B=Ve(t[1].ui.m,t[4]),P,R=Ve(t[1].ui.s,t[0].t&&t[0].t!=-127&&t[5].c>1),L,F=l&&Wu(t),x=i&&zu(t),j=a&&Gu(t),z=c&&Vu(t),G=p&&Ku(t),V=b&&Yu(t),W=d&&Qu(),U=A&&Xu(t),K=S&&Zu(t),H=B&&Ju(t),Y=R&&xu(t);return{c(){e=m("div"),F&&F.c(),n=h(),x&&x.c(),o=h(),j&&j.c(),u=h(),z&&z.c(),f=h(),G&&G.c(),_=h(),V&&V.c(),v=h(),W&&W.c(),k=h(),U&&U.c(),T=h(),K&&K.c(),E=h(),H&&H.c(),P=h(),Y&&Y.c(),r(e,"class","grid 2xl:grid-cols-6 xl:grid-cols-5 lg:grid-cols-4 md:grid-cols-3 sm:grid-cols-2")},m(Z,re){M(Z,e,re),F&&F.m(e,null),s(e,n),x&&x.m(e,null),s(e,o),j&&j.m(e,null),s(e,u),z&&z.m(e,null),s(e,f),G&&G.m(e,null),s(e,_),V&&V.m(e,null),s(e,v),W&&W.m(e,null),s(e,k),U&&U.m(e,null),s(e,T),K&&K.m(e,null),s(e,E),H&&H.m(e,null),s(e,P),Y&&Y.m(e,null),L=!0},p(Z,[re]){re&3&&(l=Ve(Z[1].ui.i,Z[0].i)),l?F?(F.p(Z,re),re&3&&D(F,1)):(F=Wu(Z),F.c(),D(F,1),F.m(e,n)):F&&(De(),q(F,1,1,()=>{F=null}),Ie()),re&3&&(i=Ve(Z[1].ui.e,Z[0].om||Z[0].e>0)),i?x?(x.p(Z,re),re&3&&D(x,1)):(x=zu(Z),x.c(),D(x,1),x.m(e,o)):x&&(De(),q(x,1,1,()=>{x=null}),Ie()),re&3&&(a=Ve(Z[1].ui.v,Z[0].u1>100||Z[0].u2>100||Z[0].u3>100)),a?j?(j.p(Z,re),re&3&&D(j,1)):(j=Gu(Z),j.c(),D(j,1),j.m(e,u)):j&&(De(),q(j,1,1,()=>{j=null}),Ie()),re&3&&(c=Ve(Z[1].ui.a,Z[0].i1>.01||Z[0].i2>.01||Z[0].i3>.01)),c?z?(z.p(Z,re),re&3&&D(z,1)):(z=Vu(Z),z.c(),D(z,1),z.m(e,f)):z&&(De(),q(z,1,1,()=>{z=null}),Ie()),re&3&&(p=Ve(Z[1].ui.r,Z[0].ri>0||Z[0].re>0||Z[0].ric>0||Z[0].rec>0)),p?G?(G.p(Z,re),re&3&&D(G,1)):(G=Ku(Z),G.c(),D(G,1),G.m(e,_)):G&&(De(),q(G,1,1,()=>{G=null}),Ie()),re&3&&(b=Ve(Z[1].ui.c,Z[0].ea)),b?V?(V.p(Z,re),re&3&&D(V,1)):(V=Yu(Z),V.c(),D(V,1),V.m(e,v)):V&&(De(),q(V,1,1,()=>{V=null}),Ie()),re&3&&(d=Ve(Z[1].ui.t,Z[0].pr&&(Z[0].pr.startsWith("10YNO")||Z[0].pr=="10Y1001A1001A48H"))),d?W?re&3&&D(W,1):(W=Qu(),W.c(),D(W,1),W.m(e,k)):W&&(De(),q(W,1,1,()=>{W=null}),Ie()),re&3&&(A=Ve(Z[1].ui.p,Z[0].pe&&!Number.isNaN(Z[0].p))),A?U?(U.p(Z,re),re&3&&D(U,1)):(U=Xu(Z),U.c(),D(U,1),U.m(e,T)):U&&(De(),q(U,1,1,()=>{U=null}),Ie()),re&10&&(S=Ve(Z[1].ui.d,Z[3])),S?K?(K.p(Z,re),re&10&&D(K,1)):(K=Zu(Z),K.c(),D(K,1),K.m(e,E)):K&&(De(),q(K,1,1,()=>{K=null}),Ie()),re&18&&(B=Ve(Z[1].ui.m,Z[4])),B?H?(H.p(Z,re),re&18&&D(H,1)):(H=Ju(Z),H.c(),D(H,1),H.m(e,P)):H&&(De(),q(H,1,1,()=>{H=null}),Ie()),re&35&&(R=Ve(Z[1].ui.s,Z[0].t&&Z[0].t!=-127&&Z[5].c>1)),R?Y?(Y.p(Z,re),re&35&&D(Y,1)):(Y=xu(Z),Y.c(),D(Y,1),Y.m(e,null)):Y&&(De(),q(Y,1,1,()=>{Y=null}),Ie())},i(Z){L||(D(F),D(x),D(j),D(z),D(G),D(V),D(W),D(U),D(K),D(H),D(Y),L=!0)},o(Z){q(F),q(x),q(j),q(z),q(G),q(V),q(W),q(U),q(K),q(H),q(Y),L=!1},d(Z){Z&&C(e),F&&F.d(),x&&x.d(),j&&j.d(),z&&z.d(),G&&G.d(),V&&V.d(),W&&W.d(),U&&U.d(),K&&K.d(),H&&H.d(),Y&&Y.d()}}}function zm(t,e,l){let{data:n={}}=e,{sysinfo:i={}}=e,o={},a={},u={},c={};return To.subscribe(f=>{l(2,o=f)}),Hc.subscribe(f=>{l(3,a=f)}),Wc.subscribe(f=>{l(4,u=f)}),Gc.subscribe(f=>{l(5,c=f)}),t.$$set=f=>{"data"in f&&l(0,n=f.data),"sysinfo"in f&&l(1,i=f.sysinfo)},[n,i,o,a,u,c]}class Gm extends Ee{constructor(e){super(),Pe(this,e,zm,Wm,Ae,{data:0,sysinfo:1})}}let _o={};const $i=at(_o);async function Vm(){_o=await(await fetch("/configuration.json")).json(),$i.set(_o)}function ef(t,e,l){const n=t.slice();return n[2]=e[l],n[4]=l,n}function Km(t){let e;return{c(){e=m("option"),e.textContent="UART0",e.__value=3,e.value=e.__value},m(l,n){M(l,e,n)},d(l){l&&C(e)}}}function Ym(t){let e;return{c(){e=m("option"),e.textContent="UART0",e.__value=20,e.value=e.__value},m(l,n){M(l,e,n)},d(l){l&&C(e)}}}function tf(t){let e;return{c(){e=m("option"),e.textContent="UART2",e.__value=113,e.value=e.__value},m(l,n){M(l,e,n)},d(l){l&&C(e)}}}function lf(t){let e,l,n;return{c(){e=m("option"),e.textContent="UART1",l=h(),n=m("option"),n.textContent="UART2",e.__value=9,e.value=e.__value,n.__value=16,n.value=n.__value},m(i,o){M(i,e,o),M(i,l,o),M(i,n,o)},d(i){i&&C(e),i&&C(l),i&&C(n)}}}function nf(t){let e;return{c(){e=m("option"),e.textContent="UART1",e.__value=18,e.value=e.__value},m(l,n){M(l,e,n)},d(l){l&&C(e)}}}function sf(t){let e,l,n;return{c(){e=m("option"),l=$("GPIO"),n=$(t[4]),e.__value=t[4],e.value=e.__value},m(i,o){M(i,e,o),s(e,l),s(e,n)},d(i){i&&C(e)}}}function of(t){let e,l=t[4]>3&&!(t[0]=="esp32"&&(t[4]==9||t[4]==16))&&!(t[0]=="esp32s2"&&t[4]==18)&&!(t[0]=="esp8266"&&(t[4]==3||t[4]==113))&&sf(t);return{c(){l&&l.c(),e=Ge()},m(n,i){l&&l.m(n,i),M(n,e,i)},p(n,i){n[4]>3&&!(n[0]=="esp32"&&(n[4]==9||n[4]==16))&&!(n[0]=="esp32s2"&&n[4]==18)&&!(n[0]=="esp8266"&&(n[4]==3||n[4]==113))?l||(l=sf(n),l.c(),l.m(e.parentNode,e)):l&&(l.d(1),l=null)},d(n){l&&l.d(n),n&&C(e)}}}function Qm(t){let e,l,n,i,o;function a(d,k){return d[0]=="esp32c3"?Ym:Km}let u=a(t),c=u(t),f=t[0]=="esp8266"&&tf(),p=(t[0]=="esp32"||t[0]=="esp32solo")&&lf(),_=t[0]=="esp32s2"&&nf(),b={length:t[1]+1},v=[];for(let d=0;d{"chip"in o&&l(0,n=o.chip)},t.$$.update=()=>{if(t.$$.dirty&1)switch(n){case"esp8266":l(1,i=16);break;case"esp32s2":l(1,i=44);break;case"esp32c3":l(1,i=19);break}},[n,i]}class xc extends Ee{constructor(e){super(),Pe(this,e,Xm,Qm,Ae,{chip:0})}}function rf(t){let e,l,n=t[1]&&af(t);return{c(){e=m("div"),l=m("div"),n&&n.c(),r(l,"class","fixed inset-0 bg-gray-500 bg-opacity-50 flex items-center justify-center"),r(e,"class","z-50"),r(e,"aria-modal","true")},m(i,o){M(i,e,o),s(e,l),n&&n.m(l,null)},p(i,o){i[1]?n?n.p(i,o):(n=af(i),n.c(),n.m(l,null)):n&&(n.d(1),n=null)},d(i){i&&C(e),n&&n.d()}}}function af(t){let e,l;return{c(){e=m("div"),l=$(t[1]),r(e,"class","bg-white m-2 p-3 rounded-md shadow-lg pb-4 text-gray-700 w-96")},m(n,i){M(n,e,i),s(e,l)},p(n,i){i&2&&X(l,n[1])},d(n){n&&C(e)}}}function Zm(t){let e,l=t[0]&&rf(t);return{c(){l&&l.c(),e=Ge()},m(n,i){l&&l.m(n,i),M(n,e,i)},p(n,[i]){n[0]?l?l.p(n,i):(l=rf(n),l.c(),l.m(e.parentNode,e)):l&&(l.d(1),l=null)},i:fe,o:fe,d(n){l&&l.d(n),n&&C(e)}}}function Jm(t,e,l){let{active:n}=e,{message:i}=e;return t.$$set=o=>{"active"in o&&l(0,n=o.active),"message"in o&&l(1,i=o.message)},[n,i]}class It extends Ee{constructor(e){super(),Pe(this,e,Jm,Zm,Ae,{active:0,message:1})}}function uf(t,e,l){const n=t.slice();return n[1]=e[l],n}function ff(t){let e,l,n=t[1]+"",i;return{c(){e=m("option"),l=$("Europe/"),i=$(n),e.__value="Europe/"+t[1],e.value=e.__value},m(o,a){M(o,e,a),s(e,l),s(e,i)},p:fe,d(o){o&&C(e)}}}function xm(t){let e,l,n,i=t[0],o=[];for(let a=0;a>1&1,N=0;N0;g--)N[g]=N[g]?N[g-1]^P.EXPONENT[F._modN(P.LOG[N[g]]+y)]:N[g-1];N[0]=P.EXPONENT[F._modN(P.LOG[N[0]]+y)]}for(y=0;y<=w;y++)N[y]=P.LOG[N[y]]},_checkBadness:function(){var y,g,w,N,I,Q=0,J=this._badness,se=this.buffer,ce=this.width;for(I=0;Ice*ce;)oe-=ce*ce,Se++;for(Q+=Se*F.N4,N=0;N=J-2&&(y=J-2,I>9&&y--);var se=y;if(I>9){for(Q[se+2]=0,Q[se+3]=0;se--;)g=Q[se],Q[se+3]|=255&g<<4,Q[se+2]=g>>4;Q[2]|=255&y<<4,Q[1]=y>>4,Q[0]=64|y>>12}else{for(Q[se+1]=0,Q[se+2]=0;se--;)g=Q[se],Q[se+2]|=255&g<<4,Q[se+1]=g>>4;Q[1]|=255&y<<4,Q[0]=64|y>>4}for(se=y+3-(I<10);se=5&&(w+=F.N1+N[g]-5);for(g=3;gy||N[g-3]*3>=N[g]*4||N[g+3]*3>=N[g]*4)&&(w+=F.N3);return w},_finish:function(){this._stringBuffer=this.buffer.slice();var y,g,w=0,N=3e4;for(g=0;g<8&&(this._applyMask(g),y=this._checkBadness(),y>=1)N&1&&(I[Q-1-g+Q*8]=1,g<6?I[8+Q*g]=1:I[8+Q*(g+1)]=1);for(g=0;g<7;g++,N>>=1)N&1&&(I[8+Q*(Q-7+g)]=1,g?I[6-g+Q*8]=1:I[7+Q*8]=1)},_interleaveBlocks:function(){var y,g,w=this._dataBlock,N=this._ecc,I=this._eccBlock,Q=0,J=this._calculateMaxLength(),se=this._neccBlock1,ce=this._neccBlock2,ve=this._stringBuffer;for(y=0;y1)for(y=T.BLOCK[N],w=I-7;;){for(g=I-7;g>y-3&&(this._addAlignment(g,w),!(g6)for(y=L.BLOCK[Q-7],g=17,w=0;w<6;w++)for(N=0;N<3;N++,g--)1&(g>11?Q>>g-12:y>>g)?(I[5-w+J*(2-N+J-11)]=1,I[2-N+J-11+J*(5-w)]=1):(this._setMask(5-w,2-N+J-11),this._setMask(2-N+J-11,5-w))},_isMasked:function(y,g){var w=F._getMaskBit(y,g);return this._mask[w]===1},_pack:function(){var y,g,w,N=1,I=1,Q=this.width,J=Q-1,se=Q-1,ce=(this._dataBlock+this._eccBlock)*(this._neccBlock1+this._neccBlock2)+this._neccBlock2;for(g=0;gg&&(w=y,y=g,g=w),w=g,w+=g*g,w>>=1,w+=y,w},_modN:function(y){for(;y>=255;)y-=255,y=(y>>8)+(y&255);return y},N1:3,N2:3,N3:40,N4:10}),x=F,j=v.extend({draw:function(){this.element.src=this.qrious.toDataURL()},reset:function(){this.element.src=""},resize:function(){var y=this.element;y.width=y.height=this.qrious.size}}),z=j,G=_.extend(function(y,g,w,N){this.name=y,this.modifiable=!!g,this.defaultValue=w,this._valueTransformer=N},{transform:function(y){var g=this._valueTransformer;return typeof g=="function"?g(y,this):y}}),V=G,W=_.extend(null,{abs:function(y){return y!=null?Math.abs(y):null},hasOwn:function(y,g){return Object.prototype.hasOwnProperty.call(y,g)},noop:function(){},toUpperCase:function(y){return y!=null?y.toUpperCase():null}}),U=W,K=_.extend(function(y){this.options={},y.forEach(function(g){this.options[g.name]=g},this)},{exists:function(y){return this.options[y]!=null},get:function(y,g){return K._get(this.options[y],g)},getAll:function(y){var g,w=this.options,N={};for(g in w)U.hasOwn(w,g)&&(N[g]=K._get(w[g],y));return N},init:function(y,g,w){typeof w!="function"&&(w=U.noop);var N,I;for(N in this.options)U.hasOwn(this.options,N)&&(I=this.options[N],K._set(I,I.defaultValue,g),K._createAccessor(I,g,w));this._setAll(y,g,!0)},set:function(y,g,w){return this._set(y,g,w)},setAll:function(y,g){return this._setAll(y,g)},_set:function(y,g,w,N){var I=this.options[y];if(!I)throw new Error("Invalid option: "+y);if(!I.modifiable&&!N)throw new Error("Option cannot be modified: "+y);return K._set(I,g,w)},_setAll:function(y,g,w){if(!y)return!1;var N,I=!1;for(N in y)U.hasOwn(y,N)&&this._set(N,y[N],g,w)&&(I=!0);return I}},{_createAccessor:function(y,g,w){var N={get:function(){return K._get(y,g)}};y.modifiable&&(N.set=function(I){K._set(y,I,g)&&w(I,y)}),Object.defineProperty(g,y.name,N)},_get:function(y,g){return g["_"+y.name]},_set:function(y,g,w){var N="_"+y.name,I=w[N],Q=y.transform(g??y.defaultValue);return w[N]=Q,Q!==I}}),H=K,Y=_.extend(function(){this._services={}},{getService:function(y){var g=this._services[y];if(!g)throw new Error("Service is not being managed with name: "+y);return g},setService:function(y,g){if(this._services[y])throw new Error("Service is already managed with name: "+y);g&&(this._services[y]=g)}}),Z=Y,re=new H([new V("background",!0,"white"),new V("backgroundAlpha",!0,1,U.abs),new V("element"),new V("foreground",!0,"black"),new V("foregroundAlpha",!0,1,U.abs),new V("level",!0,"L",U.toUpperCase),new V("mime",!0,"image/png"),new V("padding",!0,null,U.abs),new V("size",!0,100,U.abs),new V("value",!0,"")]),ue=new Z,we=_.extend(function(y){re.init(y,this,this.update.bind(this));var g=re.get("element",this),w=ue.getService("element"),N=g&&w.isCanvas(g)?g:w.createCanvas(),I=g&&w.isImage(g)?g:w.createImage();this._canvasRenderer=new k(this,N,!0),this._imageRenderer=new z(this,I,I===g),this.update()},{get:function(){return re.getAll(this)},set:function(y){re.setAll(y,this)&&this.update()},toDataURL:function(y){return this.canvas.toDataURL(y||this.mime)},update:function(){var y=new x({level:this.level,value:this.value});this._canvasRenderer.render(y),this._imageRenderer.render(y)}},{use:function(y){ue.setService(y.getName(),y)}});Object.defineProperties(we.prototype,{canvas:{get:function(){return this._canvasRenderer.getElement()}},image:{get:function(){return this._imageRenderer.getElement()}}});var me=we,Te=me,je=_.extend({getName:function(){}}),Oe=je,He=Oe.extend({createCanvas:function(){},createImage:function(){},getName:function(){return"element"},isCanvas:function(y){},isImage:function(y){}}),ye=He,Ne=ye.extend({createCanvas:function(){return document.createElement("canvas")},createImage:function(){return document.createElement("img")},isCanvas:function(y){return y instanceof HTMLCanvasElement},isImage:function(y){return y instanceof HTMLImageElement}}),Re=Ne;Te.use(new Re);var $e=Te;return $e})})(t0);var op=t0.exports;const rp=sp(op);function ap(t){let e,l;return{c(){e=m("img"),lo(e.src,l=t[2])||r(e,"src",l),r(e,"alt",t[0]),r(e,"class",t[1])},m(n,i){M(n,e,i)},p(n,[i]){i&4&&!lo(e.src,l=n[2])&&r(e,"src",l),i&1&&r(e,"alt",n[0]),i&2&&r(e,"class",n[1])},i:fe,o:fe,d(n){n&&C(e)}}}function up(t,e,l){const n=new rp;let{errorCorrection:i="L"}=e,{background:o="#fff"}=e,{color:a="#000"}=e,{size:u="200"}=e,{value:c=""}=e,{padding:f=0}=e,{className:p="qrcode"}=e,_="";function b(){n.set({background:o,foreground:a,level:i,padding:f,size:u,value:c}),l(2,_=n.toDataURL("image/jpeg"))}return uc(()=>{b()}),t.$$set=v=>{"errorCorrection"in v&&l(3,i=v.errorCorrection),"background"in v&&l(4,o=v.background),"color"in v&&l(5,a=v.color),"size"in v&&l(6,u=v.size),"value"in v&&l(0,c=v.value),"padding"in v&&l(7,f=v.padding),"className"in v&&l(1,p=v.className)},t.$$.update=()=>{t.$$.dirty&1&&c&&b()},[c,p,_,i,o,a,u,f]}class fp extends Ee{constructor(e){super(),Pe(this,e,up,ap,Ae,{errorCorrection:3,background:4,color:5,size:6,value:0,padding:7,className:1})}}function cf(t,e,l){const n=t.slice();return n[96]=e[l],n[97]=e,n[98]=l,n}function mf(t,e,l){const n=t.slice();return n[99]=e[l],n[100]=e,n[101]=l,n}function cp(t,e,l){const n=t.slice();return n[102]=e[l],n}function mp(t,e,l){const n=t.slice();return n[105]=e[l],n}function pp(t){let e,l;return{c(){e=m("option"),l=$(t[105]),e.__value=t[105],e.value=e.__value},m(n,i){M(n,e,i),s(e,l)},p:fe,d(n){n&&C(e)}}}function pf(t){let e,l,n,i;return{c(){e=m("br"),l=m("input"),r(l,"name","pt"),r(l,"type","text"),r(l,"class","in-s"),r(l,"placeholder","ENTSO-E API key, optional, read docs")},m(o,a){M(o,e,a),M(o,l,a),te(l,t[3].p.t),n||(i=ee(l,"input",t[22]),n=!0)},p(o,a){a[0]&8&&l.value!==o[3].p.t&&te(l,o[3].p.t)},d(o){o&&C(e),o&&C(l),n=!1,i()}}}function _f(t){let e,l,n,i,o,a,u,c,f,p,_,b,v;return{c(){e=m("div"),l=$("Username"),n=m("br"),i=h(),o=m("input"),a=h(),u=m("div"),c=$("Password"),f=m("br"),p=h(),_=m("input"),r(o,"name","gu"),r(o,"type","text"),r(o,"class","in-s"),r(e,"class","my-1"),r(_,"name","gp"),r(_,"type","password"),r(_,"class","in-s"),r(u,"class","my-1")},m(d,k){M(d,e,k),s(e,l),s(e,n),s(e,i),s(e,o),te(o,t[3].g.u),M(d,a,k),M(d,u,k),s(u,c),s(u,f),s(u,p),s(u,_),te(_,t[3].g.p),b||(v=[ee(o,"input",t[24]),ee(_,"input",t[25])],b=!0)},p(d,k){k[0]&8&&o.value!==d[3].g.u&&te(o,d[3].g.u),k[0]&8&&_.value!==d[3].g.p&&te(_,d[3].g.p)},d(d){d&&C(e),d&&C(a),d&&C(u),b=!1,ze(v)}}}function _p(t){let e,l=t[102]*100+"",n;return{c(){e=m("option"),n=$(l),e.__value=t[102]*100,e.value=e.__value},m(i,o){M(i,e,o),s(e,n)},p:fe,d(i){i&&C(e)}}}function df(t){let e,l,n,i;return{c(){e=m("br"),l=m("input"),r(l,"name","mek"),r(l,"type","text"),r(l,"class","in-s")},m(o,a){M(o,e,a),M(o,l,a),te(l,t[3].m.e.k),n||(i=ee(l,"input",t[34]),n=!0)},p(o,a){a[0]&8&&l.value!==o[3].m.e.k&&te(l,o[3].m.e.k)},d(o){o&&C(e),o&&C(l),n=!1,i()}}}function vf(t){let e,l,n,i,o,a,u;return{c(){e=m("div"),l=$("Authentication key"),n=m("br"),i=h(),o=m("input"),r(o,"name","mea"),r(o,"type","text"),r(o,"class","in-s"),r(e,"class","my-1")},m(c,f){M(c,e,f),s(e,l),s(e,n),s(e,i),s(e,o),te(o,t[3].m.e.a),a||(u=ee(o,"input",t[35]),a=!0)},p(c,f){f[0]&8&&o.value!==c[3].m.e.a&&te(o,c[3].m.e.a)},d(c){c&&C(e),a=!1,u()}}}function hf(t){let e,l,n,i,o,a,u,c,f,p,_,b,v,d,k,A,T,S,E,B,P,R,L,F,x,j;return{c(){e=m("div"),l=m("div"),n=$("Watt"),i=m("br"),o=h(),a=m("input"),u=h(),c=m("div"),f=$("Volt"),p=m("br"),_=h(),b=m("input"),v=h(),d=m("div"),k=$("Amp"),A=m("br"),T=h(),S=m("input"),E=h(),B=m("div"),P=$("kWh"),R=m("br"),L=h(),F=m("input"),r(a,"name","mmw"),r(a,"type","number"),r(a,"min","0.00"),r(a,"max","1000"),r(a,"step","0.001"),r(a,"class","in-f tr w-full"),r(l,"class","w-1/4"),r(b,"name","mmv"),r(b,"type","number"),r(b,"min","0.00"),r(b,"max","1000"),r(b,"step","0.001"),r(b,"class","in-m tr w-full"),r(c,"class","w-1/4"),r(S,"name","mma"),r(S,"type","number"),r(S,"min","0.00"),r(S,"max","1000"),r(S,"step","0.001"),r(S,"class","in-m tr w-full"),r(d,"class","w-1/4"),r(F,"name","mmc"),r(F,"type","number"),r(F,"min","0.00"),r(F,"max","1000"),r(F,"step","0.001"),r(F,"class","in-l tr w-full"),r(B,"class","w-1/4"),r(e,"class","flex my-1")},m(z,G){M(z,e,G),s(e,l),s(l,n),s(l,i),s(l,o),s(l,a),te(a,t[3].m.m.w),s(e,u),s(e,c),s(c,f),s(c,p),s(c,_),s(c,b),te(b,t[3].m.m.v),s(e,v),s(e,d),s(d,k),s(d,A),s(d,T),s(d,S),te(S,t[3].m.m.a),s(e,E),s(e,B),s(B,P),s(B,R),s(B,L),s(B,F),te(F,t[3].m.m.c),x||(j=[ee(a,"input",t[37]),ee(b,"input",t[38]),ee(S,"input",t[39]),ee(F,"input",t[40])],x=!0)},p(z,G){G[0]&8&&he(a.value)!==z[3].m.m.w&&te(a,z[3].m.m.w),G[0]&8&&he(b.value)!==z[3].m.m.v&&te(b,z[3].m.m.v),G[0]&8&&he(S.value)!==z[3].m.m.a&&te(S,z[3].m.m.a),G[0]&8&&he(F.value)!==z[3].m.m.c&&te(F,z[3].m.m.c)},d(z){z&&C(e),x=!1,ze(j)}}}function bf(t){let e,l,n,i,o,a,u,c,f,p,_,b,v,d,k,A;return{c(){e=m("div"),l=$("Gateway"),n=m("br"),i=h(),o=m("input"),a=h(),u=m("div"),c=$("DNS"),f=m("br"),p=h(),_=m("div"),b=m("input"),v=h(),d=m("input"),r(o,"name","ng"),r(o,"type","text"),r(o,"class","in-s"),r(e,"class","my-1"),r(b,"name","nd1"),r(b,"type","text"),r(b,"class","in-f w-full"),r(d,"name","nd2"),r(d,"type","text"),r(d,"class","in-l w-full"),r(_,"class","flex"),r(u,"class","my-1")},m(T,S){M(T,e,S),s(e,l),s(e,n),s(e,i),s(e,o),te(o,t[3].n.g),M(T,a,S),M(T,u,S),s(u,c),s(u,f),s(u,p),s(u,_),s(_,b),te(b,t[3].n.d1),s(_,v),s(_,d),te(d,t[3].n.d2),k||(A=[ee(o,"input",t[50]),ee(b,"input",t[51]),ee(d,"input",t[52])],k=!0)},p(T,S){S[0]&8&&o.value!==T[3].n.g&&te(o,T[3].n.g),S[0]&8&&b.value!==T[3].n.d1&&te(b,T[3].n.d1),S[0]&8&&d.value!==T[3].n.d2&&te(d,T[3].n.d2)},d(T){T&&C(e),T&&C(a),T&&C(u),k=!1,ze(A)}}}function gf(t){let e,l,n,i,o;return{c(){e=m("label"),l=m("input"),n=$(" SSL"),r(l,"type","checkbox"),r(l,"name","qs"),l.__value="true",l.value=l.__value,r(l,"class","rounded mb-1"),r(e,"class","float-right mr-3")},m(a,u){M(a,e,u),s(e,l),l.checked=t[3].q.s.e,s(e,n),i||(o=[ee(l,"change",t[56]),ee(l,"change",t[14])],i=!0)},p(a,u){u[0]&8&&(l.checked=a[3].q.s.e)},d(a){a&&C(e),i=!1,ze(o)}}}function kf(t){let e,l,n,i,o,a,u,c,f,p,_,b,v;const d=[vp,dp],k=[];function A(L,F){return L[3].q.s.c?0:1}n=A(t),i=k[n]=d[n](t);const T=[kp,gp],S=[];function E(L,F){return L[3].q.s.r?0:1}u=E(t),c=S[u]=T[u](t);const B=[Mp,Cp],P=[];function R(L,F){return L[3].q.s.k?0:1}return _=R(t),b=P[_]=B[_](t),{c(){e=m("div"),l=m("span"),i.c(),o=h(),a=m("span"),c.c(),f=h(),p=m("span"),b.c(),r(l,"class","flex pr-2"),r(a,"class","flex pr-2"),r(p,"class","flex pr-2"),r(e,"class","my-1 flex")},m(L,F){M(L,e,F),s(e,l),k[n].m(l,null),s(e,o),s(e,a),S[u].m(a,null),s(e,f),s(e,p),P[_].m(p,null),v=!0},p(L,F){let x=n;n=A(L),n===x?k[n].p(L,F):(De(),q(k[x],1,1,()=>{k[x]=null}),Ie(),i=k[n],i?i.p(L,F):(i=k[n]=d[n](L),i.c()),D(i,1),i.m(l,null));let j=u;u=E(L),u===j?S[u].p(L,F):(De(),q(S[j],1,1,()=>{S[j]=null}),Ie(),c=S[u],c?c.p(L,F):(c=S[u]=T[u](L),c.c()),D(c,1),c.m(a,null));let z=_;_=R(L),_===z?P[_].p(L,F):(De(),q(P[z],1,1,()=>{P[z]=null}),Ie(),b=P[_],b?b.p(L,F):(b=P[_]=B[_](L),b.c()),D(b,1),b.m(p,null))},i(L){v||(D(i),D(c),D(b),v=!0)},o(L){q(i),q(c),q(b),v=!1},d(L){L&&C(e),k[n].d(),S[u].d(),P[_].d()}}}function dp(t){let e,l;return e=new el({props:{to:"/mqtt-ca",$$slots:{default:[hp]},$$scope:{ctx:t}}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p(n,i){const o={};i[3]&32768&&(o.$$scope={dirty:i,ctx:n}),e.$set(o)},i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function vp(t){let e,l,n,i,o,a,u,c;return l=new el({props:{to:"/mqtt-ca",$$slots:{default:[bp]},$$scope:{ctx:t}}}),o=new Eo({}),{c(){e=m("span"),ie(l.$$.fragment),n=h(),i=m("span"),ie(o.$$.fragment),r(e,"class","rounded-l-md bg-green-500 text-green-100 text-xs font-semibold px-2.5 py-1"),r(i,"class","rounded-r-md bg-red-500 text-red-100 text-xs px-2.5 py-1")},m(f,p){M(f,e,p),le(l,e,null),M(f,n,p),M(f,i,p),le(o,i,null),a=!0,u||(c=[ee(i,"click",t[11]),ee(i,"keypress",t[11])],u=!0)},p(f,p){const _={};p[3]&32768&&(_.$$scope={dirty:p,ctx:f}),l.$set(_)},i(f){a||(D(l.$$.fragment,f),D(o.$$.fragment,f),a=!0)},o(f){q(l.$$.fragment,f),q(o.$$.fragment,f),a=!1},d(f){f&&C(e),ne(l),f&&C(n),f&&C(i),ne(o),u=!1,ze(c)}}}function hp(t){let e,l;return e=new mn({props:{color:"blue",text:"Upload CA",title:"Click here to upload CA"}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p:fe,i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function bp(t){let e;return{c(){e=$("CA OK")},m(l,n){M(l,e,n)},d(l){l&&C(e)}}}function gp(t){let e,l;return e=new el({props:{to:"/mqtt-cert",$$slots:{default:[wp]},$$scope:{ctx:t}}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p(n,i){const o={};i[3]&32768&&(o.$$scope={dirty:i,ctx:n}),e.$set(o)},i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function kp(t){let e,l,n,i,o,a,u,c;return l=new el({props:{to:"/mqtt-cert",$$slots:{default:[yp]},$$scope:{ctx:t}}}),o=new Eo({}),{c(){e=m("span"),ie(l.$$.fragment),n=h(),i=m("span"),ie(o.$$.fragment),r(e,"class","rounded-l-md bg-green-500 text-green-100 text-xs font-semibold px-2.5 py-1"),r(i,"class","rounded-r-md bg-red-500 text-red-100 text-xs px-2.5 py-1")},m(f,p){M(f,e,p),le(l,e,null),M(f,n,p),M(f,i,p),le(o,i,null),a=!0,u||(c=[ee(i,"click",t[12]),ee(i,"keypress",t[12])],u=!0)},p(f,p){const _={};p[3]&32768&&(_.$$scope={dirty:p,ctx:f}),l.$set(_)},i(f){a||(D(l.$$.fragment,f),D(o.$$.fragment,f),a=!0)},o(f){q(l.$$.fragment,f),q(o.$$.fragment,f),a=!1},d(f){f&&C(e),ne(l),f&&C(n),f&&C(i),ne(o),u=!1,ze(c)}}}function wp(t){let e,l;return e=new mn({props:{color:"blue",text:"Upload cert",title:"Click here to upload certificate"}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p:fe,i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function yp(t){let e;return{c(){e=$("Cert OK")},m(l,n){M(l,e,n)},d(l){l&&C(e)}}}function Cp(t){let e,l;return e=new el({props:{to:"/mqtt-key",$$slots:{default:[$p]},$$scope:{ctx:t}}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p(n,i){const o={};i[3]&32768&&(o.$$scope={dirty:i,ctx:n}),e.$set(o)},i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function Mp(t){let e,l,n,i,o,a,u,c;return l=new el({props:{to:"/mqtt-key",$$slots:{default:[Sp]},$$scope:{ctx:t}}}),o=new Eo({}),{c(){e=m("span"),ie(l.$$.fragment),n=h(),i=m("span"),ie(o.$$.fragment),r(e,"class","rounded-l-md bg-green-500 text-green-100 text-xs font-semibold px-2.5 py-1"),r(i,"class","rounded-r-md bg-red-500 text-red-100 text-xs px-2.5 py-1")},m(f,p){M(f,e,p),le(l,e,null),M(f,n,p),M(f,i,p),le(o,i,null),a=!0,u||(c=[ee(i,"click",t[13]),ee(i,"keypress",t[13])],u=!0)},p(f,p){const _={};p[3]&32768&&(_.$$scope={dirty:p,ctx:f}),l.$set(_)},i(f){a||(D(l.$$.fragment,f),D(o.$$.fragment,f),a=!0)},o(f){q(l.$$.fragment,f),q(o.$$.fragment,f),a=!1},d(f){f&&C(e),ne(l),f&&C(n),f&&C(i),ne(o),u=!1,ze(c)}}}function $p(t){let e,l;return e=new mn({props:{color:"blue",text:"Upload key",title:"Click here to upload key"}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p:fe,i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function Sp(t){let e;return{c(){e=$("Key OK")},m(l,n){M(l,e,n)},d(l){l&&C(e)}}}function wf(t){let e,l,n,i,o,a,u,c,f,p,_,b,v,d,k,A,T,S,E,B,P,R,L,F,x,j,z,G,V,W,U,K;return o=new qt({}),{c(){e=m("div"),l=m("strong"),l.textContent="Domoticz",n=h(),i=m("a"),ie(o.$$.fragment),a=h(),u=m("input"),c=h(),f=m("div"),p=m("div"),_=$("Electricity IDX"),b=m("br"),v=h(),d=m("input"),k=h(),A=m("div"),T=$("Current IDX"),S=m("br"),E=h(),B=m("input"),P=h(),R=m("div"),L=$(`Voltage IDX: L1, L2 & L3 + `),F=m("div"),x=m("input"),j=h(),z=m("input"),G=h(),V=m("input"),r(l,"class","text-sm"),r(i,"href",Bt("MQTT-configuration#domoticz")),r(i,"target","_blank"),r(i,"class","float-right"),r(u,"type","hidden"),r(u,"name","o"),u.value="true",r(d,"name","oe"),r(d,"type","text"),r(d,"class","in-f tr w-full"),r(p,"class","w-1/2"),r(B,"name","oc"),r(B,"type","text"),r(B,"class","in-l tr w-full"),r(A,"class","w-1/2"),r(f,"class","my-1 flex"),r(x,"name","ou1"),r(x,"type","text"),r(x,"class","in-f tr w-1/3"),r(z,"name","ou2"),r(z,"type","text"),r(z,"class","in-m tr w-1/3"),r(V,"name","ou3"),r(V,"type","text"),r(V,"class","in-l tr w-1/3"),r(F,"class","flex"),r(R,"class","my-1"),r(e,"class","cnt")},m(H,Y){M(H,e,Y),s(e,l),s(e,n),s(e,i),le(o,i,null),s(e,a),s(e,u),s(e,c),s(e,f),s(f,p),s(p,_),s(p,b),s(p,v),s(p,d),te(d,t[3].o.e),s(f,k),s(f,A),s(A,T),s(A,S),s(A,E),s(A,B),te(B,t[3].o.c),s(e,P),s(e,R),s(R,L),s(R,F),s(F,x),te(x,t[3].o.u1),s(F,j),s(F,z),te(z,t[3].o.u2),s(F,G),s(F,V),te(V,t[3].o.u3),W=!0,U||(K=[ee(d,"input",t[64]),ee(B,"input",t[65]),ee(x,"input",t[66]),ee(z,"input",t[67]),ee(V,"input",t[68])],U=!0)},p(H,Y){Y[0]&8&&d.value!==H[3].o.e&&te(d,H[3].o.e),Y[0]&8&&B.value!==H[3].o.c&&te(B,H[3].o.c),Y[0]&8&&x.value!==H[3].o.u1&&te(x,H[3].o.u1),Y[0]&8&&z.value!==H[3].o.u2&&te(z,H[3].o.u2),Y[0]&8&&V.value!==H[3].o.u3&&te(V,H[3].o.u3)},i(H){W||(D(o.$$.fragment,H),W=!0)},o(H){q(o.$$.fragment,H),W=!1},d(H){H&&C(e),ne(o),U=!1,ze(K)}}}function yf(t){let e,l,n,i,o,a,u,c,f,p,_,b,v,d,k,A,T,S,E,B,P,R,L,F,x,j,z,G,V;return o=new qt({}),{c(){e=m("div"),l=m("strong"),l.textContent="Home-Assistant",n=h(),i=m("a"),ie(o.$$.fragment),a=h(),u=m("input"),c=h(),f=m("div"),p=$("Discovery topic prefix"),_=m("br"),b=h(),v=m("input"),d=h(),k=m("div"),A=$("Hostname for URL"),T=m("br"),S=h(),E=m("input"),P=h(),R=m("div"),L=$("Name tag"),F=m("br"),x=h(),j=m("input"),r(l,"class","text-sm"),r(i,"href",Bt("MQTT-configuration#home-assistant")),r(i,"target","_blank"),r(i,"class","float-right"),r(u,"type","hidden"),r(u,"name","h"),u.value="true",r(v,"name","ht"),r(v,"type","text"),r(v,"class","in-s"),r(v,"placeholder","homeassistant"),r(f,"class","my-1"),r(E,"name","hh"),r(E,"type","text"),r(E,"class","in-s"),r(E,"placeholder",B=t[3].g.h+".local"),r(k,"class","my-1"),r(j,"name","hn"),r(j,"type","text"),r(j,"class","in-s"),r(R,"class","my-1"),r(e,"class","cnt")},m(W,U){M(W,e,U),s(e,l),s(e,n),s(e,i),le(o,i,null),s(e,a),s(e,u),s(e,c),s(e,f),s(f,p),s(f,_),s(f,b),s(f,v),te(v,t[3].h.t),s(e,d),s(e,k),s(k,A),s(k,T),s(k,S),s(k,E),te(E,t[3].h.h),s(e,P),s(e,R),s(R,L),s(R,F),s(R,x),s(R,j),te(j,t[3].h.n),z=!0,G||(V=[ee(v,"input",t[69]),ee(E,"input",t[70]),ee(j,"input",t[71])],G=!0)},p(W,U){U[0]&8&&v.value!==W[3].h.t&&te(v,W[3].h.t),(!z||U[0]&8&&B!==(B=W[3].g.h+".local"))&&r(E,"placeholder",B),U[0]&8&&E.value!==W[3].h.h&&te(E,W[3].h.h),U[0]&8&&j.value!==W[3].h.n&&te(j,W[3].h.n)},i(W){z||(D(o.$$.fragment,W),z=!0)},o(W){q(o.$$.fragment,W),z=!1},d(W){W&&C(e),ne(o),G=!1,ze(V)}}}function Cf(t){let e,l,n,i,o,a,u,c,f,p,_,b,v,d=t[3].c.es&&Mf(t);return{c(){e=m("div"),l=m("input"),n=h(),i=m("strong"),i.textContent="Cloud connections",o=h(),a=m("div"),u=m("label"),c=m("input"),f=$(" Energy Speedometer"),p=h(),d&&d.c(),r(l,"type","hidden"),r(l,"name","c"),l.value="true",r(i,"class","text-sm"),r(c,"type","checkbox"),r(c,"class","rounded mb-1"),r(c,"name","ces"),c.__value="true",c.value=c.__value,r(a,"class","my-1"),r(e,"class","cnt")},m(k,A){M(k,e,A),s(e,l),s(e,n),s(e,i),s(e,o),s(e,a),s(a,u),s(u,c),c.checked=t[3].c.es,s(u,f),s(a,p),d&&d.m(a,null),_=!0,b||(v=ee(c,"change",t[72]),b=!0)},p(k,A){A[0]&8&&(c.checked=k[3].c.es),k[3].c.es?d?(d.p(k,A),A[0]&8&&D(d,1)):(d=Mf(k),d.c(),D(d,1),d.m(a,null)):d&&(De(),q(d,1,1,()=>{d=null}),Ie())},i(k){_||(D(d),_=!0)},o(k){q(d),_=!1},d(k){k&&C(e),d&&d.d(),b=!1,v()}}}function Mf(t){let e,l,n=t[0].mac+"",i,o,a,u,c=(t[0].meter.id?t[0].meter.id:"missing, required")+"",f,p,_,b,v=t[0].mac&&t[0].meter.id&&$f(t);return{c(){e=m("div"),l=$("MAC: "),i=$(n),o=h(),a=m("div"),u=$("Meter ID: "),f=$(c),p=h(),v&&v.c(),_=Ge(),r(e,"class","pl-5"),r(a,"class","pl-5")},m(d,k){M(d,e,k),s(e,l),s(e,i),M(d,o,k),M(d,a,k),s(a,u),s(a,f),M(d,p,k),v&&v.m(d,k),M(d,_,k),b=!0},p(d,k){(!b||k[0]&1)&&n!==(n=d[0].mac+"")&&X(i,n),(!b||k[0]&1)&&c!==(c=(d[0].meter.id?d[0].meter.id:"missing, required")+"")&&X(f,c),d[0].mac&&d[0].meter.id?v?(v.p(d,k),k[0]&1&&D(v,1)):(v=$f(d),v.c(),D(v,1),v.m(_.parentNode,_)):v&&(De(),q(v,1,1,()=>{v=null}),Ie())},i(d){b||(D(v),b=!0)},o(d){q(v),b=!1},d(d){d&&C(e),d&&C(o),d&&C(a),d&&C(p),v&&v.d(d),d&&C(_)}}}function $f(t){let e,l,n;return l=new fp({props:{value:'{"mac":"'+t[0].mac+'","meter":"'+t[0].meter.id+'"}'}}),{c(){e=m("div"),ie(l.$$.fragment),r(e,"class","pl-2")},m(i,o){M(i,e,o),le(l,e,null),n=!0},p(i,o){const a={};o[0]&1&&(a.value='{"mac":"'+i[0].mac+'","meter":"'+i[0].meter.id+'"}'),l.$set(a)},i(i){n||(D(l.$$.fragment,i),n=!0)},o(i){q(l.$$.fragment,i),n=!1},d(i){i&&C(e),ne(l)}}}function Sf(t){let e,l,n,i,o,a,u,c,f,p,_,b,v,d,k,A,T,S,E;o=new qt({});let B={length:9},P=[];for(let R=0;R20&&Pf(t),p=t[0].chip=="esp8266"&&If(t);return{c(){e=m("div"),l=m("strong"),l.textContent="Hardware",n=h(),i=m("a"),ie(o.$$.fragment),a=h(),f&&f.c(),u=h(),p&&p.c(),r(l,"class","text-sm"),r(i,"href",Bt("GPIO-configuration")),r(i,"target","_blank"),r(i,"class","float-right"),r(e,"class","cnt")},m(_,b){M(_,e,b),s(e,l),s(e,n),s(e,i),le(o,i,null),s(e,a),f&&f.m(e,null),s(e,u),p&&p.m(e,null),c=!0},p(_,b){_[0].board>20?f?(f.p(_,b),b[0]&1&&D(f,1)):(f=Pf(_),f.c(),D(f,1),f.m(e,u)):f&&(De(),q(f,1,1,()=>{f=null}),Ie()),_[0].chip=="esp8266"?p?p.p(_,b):(p=If(_),p.c(),p.m(e,null)):p&&(p.d(1),p=null)},i(_){c||(D(o.$$.fragment,_),D(f),c=!0)},o(_){q(o.$$.fragment,_),q(f),c=!1},d(_){_&&C(e),ne(o),f&&f.d(),p&&p.d()}}}function Pf(t){let e,l,n,i,o,a,u,c,f,p,_,b,v,d,k,A,T,S,E,B,P,R,L,F,x,j,z,G,V,W,U,K,H,Y,Z,re,ue,we,me,Te,je,Oe,He,ye,Ne,Re,$e,y,g,w,N,I,Q,J,se,ce,ve,Se,oe;b=new xc({props:{chip:t[0].chip}});let pe=t[0].chip!="esp8266"&&Ef(t),Be=t[3].i.v.p>0&&Df(t);return{c(){e=m("input"),l=h(),n=m("div"),i=m("div"),o=$("HAN"),a=m("label"),u=m("input"),c=$(" pullup"),f=m("br"),p=h(),_=m("select"),ie(b.$$.fragment),v=h(),d=m("div"),k=$("AP button"),A=m("br"),T=h(),S=m("input"),E=h(),B=m("div"),P=$("LED"),R=m("label"),L=m("input"),F=$(" inv"),x=m("br"),j=h(),z=m("div"),G=m("input"),V=h(),W=m("div"),U=$("RGB"),K=m("label"),H=m("input"),Y=$(" inverted"),Z=m("br"),re=h(),ue=m("div"),we=m("input"),me=h(),Te=m("input"),je=h(),Oe=m("input"),He=h(),ye=m("div"),Ne=$("Temperature"),Re=m("br"),$e=h(),y=m("input"),g=h(),w=m("div"),N=$("Analog temp"),I=m("br"),Q=h(),J=m("input"),se=h(),pe&&pe.c(),ce=h(),Be&&Be.c(),r(e,"type","hidden"),r(e,"name","i"),e.value="true",r(u,"name","ihu"),u.__value="true",u.value=u.__value,r(u,"type","checkbox"),r(u,"class","rounded mb-1"),r(a,"class","ml-2"),r(_,"name","ihp"),r(_,"class","in-f w-full"),t[3].i.h.p===void 0&&et(()=>t[77].call(_)),r(i,"class","w-1/3"),r(S,"name","ia"),r(S,"type","number"),r(S,"min","0"),r(S,"max",t[6]),r(S,"class","in-m tr w-full"),r(d,"class","w-1/3"),r(L,"name","ili"),L.__value="true",L.value=L.__value,r(L,"type","checkbox"),r(L,"class","rounded mb-1"),r(R,"class","ml-4"),r(G,"name","ilp"),r(G,"type","number"),r(G,"min","0"),r(G,"max",t[6]),r(G,"class","in-l tr w-full"),r(z,"class","flex"),r(B,"class","w-1/3"),r(H,"name","iri"),H.__value="true",H.value=H.__value,r(H,"type","checkbox"),r(H,"class","rounded mb-1"),r(K,"class","ml-4"),r(we,"name","irr"),r(we,"type","number"),r(we,"min","0"),r(we,"max",t[6]),r(we,"class","in-f tr w-1/3"),r(Te,"name","irg"),r(Te,"type","number"),r(Te,"min","0"),r(Te,"max",t[6]),r(Te,"class","in-m tr w-1/3"),r(Oe,"name","irb"),r(Oe,"type","number"),r(Oe,"min","0"),r(Oe,"max",t[6]),r(Oe,"class","in-l tr w-1/3"),r(ue,"class","flex"),r(W,"class","w-full"),r(y,"name","itd"),r(y,"type","number"),r(y,"min","0"),r(y,"max",t[6]),r(y,"class","in-f tr w-full"),r(ye,"class","my-1 w-1/3"),r(J,"name","ita"),r(J,"type","number"),r(J,"min","0"),r(J,"max",t[6]),r(J,"class","in-l tr w-full"),r(w,"class","my-1 pr-1 w-1/3"),r(n,"class","flex flex-wrap")},m(_e,Ce){M(_e,e,Ce),M(_e,l,Ce),M(_e,n,Ce),s(n,i),s(i,o),s(i,a),s(a,u),u.checked=t[3].i.h.u,s(a,c),s(i,f),s(i,p),s(i,_),le(b,_,null),qe(_,t[3].i.h.p,!0),s(n,v),s(n,d),s(d,k),s(d,A),s(d,T),s(d,S),te(S,t[3].i.a),s(n,E),s(n,B),s(B,P),s(B,R),s(R,L),L.checked=t[3].i.l.i,s(R,F),s(B,x),s(B,j),s(B,z),s(z,G),te(G,t[3].i.l.p),s(n,V),s(n,W),s(W,U),s(W,K),s(K,H),H.checked=t[3].i.r.i,s(K,Y),s(W,Z),s(W,re),s(W,ue),s(ue,we),te(we,t[3].i.r.r),s(ue,me),s(ue,Te),te(Te,t[3].i.r.g),s(ue,je),s(ue,Oe),te(Oe,t[3].i.r.b),s(n,He),s(n,ye),s(ye,Ne),s(ye,Re),s(ye,$e),s(ye,y),te(y,t[3].i.t.d),s(n,g),s(n,w),s(w,N),s(w,I),s(w,Q),s(w,J),te(J,t[3].i.t.a),s(n,se),pe&&pe.m(n,null),s(n,ce),Be&&Be.m(n,null),ve=!0,Se||(oe=[ee(u,"change",t[76]),ee(_,"change",t[77]),ee(S,"input",t[78]),ee(L,"change",t[79]),ee(G,"input",t[80]),ee(H,"change",t[81]),ee(we,"input",t[82]),ee(Te,"input",t[83]),ee(Oe,"input",t[84]),ee(y,"input",t[85]),ee(J,"input",t[86])],Se=!0)},p(_e,Ce){Ce[0]&8&&(u.checked=_e[3].i.h.u);const vt={};Ce[0]&1&&(vt.chip=_e[0].chip),b.$set(vt),Ce[0]&8&&qe(_,_e[3].i.h.p),(!ve||Ce[0]&64)&&r(S,"max",_e[6]),Ce[0]&8&&he(S.value)!==_e[3].i.a&&te(S,_e[3].i.a),Ce[0]&8&&(L.checked=_e[3].i.l.i),(!ve||Ce[0]&64)&&r(G,"max",_e[6]),Ce[0]&8&&he(G.value)!==_e[3].i.l.p&&te(G,_e[3].i.l.p),Ce[0]&8&&(H.checked=_e[3].i.r.i),(!ve||Ce[0]&64)&&r(we,"max",_e[6]),Ce[0]&8&&he(we.value)!==_e[3].i.r.r&&te(we,_e[3].i.r.r),(!ve||Ce[0]&64)&&r(Te,"max",_e[6]),Ce[0]&8&&he(Te.value)!==_e[3].i.r.g&&te(Te,_e[3].i.r.g),(!ve||Ce[0]&64)&&r(Oe,"max",_e[6]),Ce[0]&8&&he(Oe.value)!==_e[3].i.r.b&&te(Oe,_e[3].i.r.b),(!ve||Ce[0]&64)&&r(y,"max",_e[6]),Ce[0]&8&&he(y.value)!==_e[3].i.t.d&&te(y,_e[3].i.t.d),(!ve||Ce[0]&64)&&r(J,"max",_e[6]),Ce[0]&8&&he(J.value)!==_e[3].i.t.a&&te(J,_e[3].i.t.a),_e[0].chip!="esp8266"?pe?pe.p(_e,Ce):(pe=Ef(_e),pe.c(),pe.m(n,ce)):pe&&(pe.d(1),pe=null),_e[3].i.v.p>0?Be?Be.p(_e,Ce):(Be=Df(_e),Be.c(),Be.m(n,null)):Be&&(Be.d(1),Be=null)},i(_e){ve||(D(b.$$.fragment,_e),ve=!0)},o(_e){q(b.$$.fragment,_e),ve=!1},d(_e){_e&&C(e),_e&&C(l),_e&&C(n),ne(b),pe&&pe.d(),Be&&Be.d(),Se=!1,ze(oe)}}}function Ef(t){let e,l,n,i,o,a,u;return{c(){e=m("div"),l=$("Vcc"),n=m("br"),i=h(),o=m("input"),r(o,"name","ivp"),r(o,"type","number"),r(o,"min","0"),r(o,"max",t[6]),r(o,"class","in-s tr w-full"),r(e,"class","my-1 pl-1 w-1/3")},m(c,f){M(c,e,f),s(e,l),s(e,n),s(e,i),s(e,o),te(o,t[3].i.v.p),a||(u=ee(o,"input",t[87]),a=!0)},p(c,f){f[0]&64&&r(o,"max",c[6]),f[0]&8&&he(o.value)!==c[3].i.v.p&&te(o,c[3].i.v.p)},d(c){c&&C(e),a=!1,u()}}}function Df(t){let e,l,n,i,o,a,u,c,f,p;return{c(){e=m("div"),l=$("Voltage divider"),n=m("br"),i=h(),o=m("div"),a=m("input"),u=h(),c=m("input"),r(a,"name","ivdv"),r(a,"type","number"),r(a,"min","0"),r(a,"max","65535"),r(a,"class","in-f tr w-full"),r(a,"placeholder","VCC"),r(c,"name","ivdg"),r(c,"type","number"),r(c,"min","0"),r(c,"max","65535"),r(c,"class","in-l tr w-full"),r(c,"placeholder","GND"),r(o,"class","flex"),r(e,"class","my-1")},m(_,b){M(_,e,b),s(e,l),s(e,n),s(e,i),s(e,o),s(o,a),te(a,t[3].i.v.d.v),s(o,u),s(o,c),te(c,t[3].i.v.d.g),f||(p=[ee(a,"input",t[88]),ee(c,"input",t[89])],f=!0)},p(_,b){b[0]&8&&he(a.value)!==_[3].i.v.d.v&&te(a,_[3].i.v.d.v),b[0]&8&&he(c.value)!==_[3].i.v.d.g&&te(c,_[3].i.v.d.g)},d(_){_&&C(e),f=!1,ze(p)}}}function If(t){let e,l,n,i,o,a,u,c,f,p,_,b,v,d,k,A,T,S=(t[0].board==2||t[0].board==100)&&Of(t);return{c(){e=m("input"),l=h(),n=m("div"),i=m("div"),o=$("Vcc offset"),a=m("br"),u=h(),c=m("input"),f=h(),p=m("div"),_=$("Multiplier"),b=m("br"),v=h(),d=m("input"),k=h(),S&&S.c(),r(e,"type","hidden"),r(e,"name","iv"),e.value="true",r(c,"name","ivo"),r(c,"type","number"),r(c,"min","0.0"),r(c,"max","3.5"),r(c,"step","0.01"),r(c,"class","in-f tr w-full"),r(i,"class","w-1/3"),r(d,"name","ivm"),r(d,"type","number"),r(d,"min","0.1"),r(d,"max","10"),r(d,"step","0.01"),r(d,"class","in-l tr w-full"),r(p,"class","w-1/3 pr-1"),r(n,"class","my-1 flex flex-wrap")},m(E,B){M(E,e,B),M(E,l,B),M(E,n,B),s(n,i),s(i,o),s(i,a),s(i,u),s(i,c),te(c,t[3].i.v.o),s(n,f),s(n,p),s(p,_),s(p,b),s(p,v),s(p,d),te(d,t[3].i.v.m),s(n,k),S&&S.m(n,null),A||(T=[ee(c,"input",t[90]),ee(d,"input",t[91])],A=!0)},p(E,B){B[0]&8&&he(c.value)!==E[3].i.v.o&&te(c,E[3].i.v.o),B[0]&8&&he(d.value)!==E[3].i.v.m&&te(d,E[3].i.v.m),E[0].board==2||E[0].board==100?S?S.p(E,B):(S=Of(E),S.c(),S.m(n,null)):S&&(S.d(1),S=null)},d(E){E&&C(e),E&&C(l),E&&C(n),S&&S.d(),A=!1,ze(T)}}}function Of(t){let e,l,n,i,o,a,u;return{c(){e=m("div"),l=$("Boot limit"),n=m("br"),i=h(),o=m("input"),r(o,"name","ivb"),r(o,"type","number"),r(o,"min","2.5"),r(o,"max","3.5"),r(o,"step","0.1"),r(o,"class","in-s tr w-full"),r(e,"class","w-1/3 pl-1")},m(c,f){M(c,e,f),s(e,l),s(e,n),s(e,i),s(e,o),te(o,t[3].i.v.b),a||(u=ee(o,"input",t[92]),a=!0)},p(c,f){f[0]&8&&he(o.value)!==c[3].i.v.b&&te(o,c[3].i.v.b)},d(c){c&&C(e),a=!1,u()}}}function Rf(t){let e,l,n,i,o,a,u,c,f,p,_,b,v,d,k,A,T=t[3].d.t&&Lf();return{c(){e=m("div"),e.textContent="Debug can cause sudden reboots. Do not leave on!",l=h(),n=m("div"),i=m("label"),o=m("input"),a=$(" Enable telnet"),u=h(),T&&T.c(),c=h(),f=m("div"),p=m("select"),_=m("option"),_.textContent="Verbose",b=m("option"),b.textContent="Debug",v=m("option"),v.textContent="Info",d=m("option"),d.textContent="Warning",r(e,"class","bd-red"),r(o,"type","checkbox"),r(o,"name","dt"),o.__value="true",o.value=o.__value,r(o,"class","rounded mb-1"),r(n,"class","my-1"),_.__value=1,_.value=_.__value,b.__value=2,b.value=b.__value,v.__value=3,v.value=v.__value,d.__value=4,d.value=d.__value,r(p,"name","dl"),r(p,"class","in-s"),t[3].d.l===void 0&&et(()=>t[95].call(p)),r(f,"class","my-1")},m(S,E){M(S,e,E),M(S,l,E),M(S,n,E),s(n,i),s(i,o),o.checked=t[3].d.t,s(i,a),M(S,u,E),T&&T.m(S,E),M(S,c,E),M(S,f,E),s(f,p),s(p,_),s(p,b),s(p,v),s(p,d),qe(p,t[3].d.l,!0),k||(A=[ee(o,"change",t[94]),ee(p,"change",t[95])],k=!0)},p(S,E){E[0]&8&&(o.checked=S[3].d.t),S[3].d.t?T||(T=Lf(),T.c(),T.m(c.parentNode,c)):T&&(T.d(1),T=null),E[0]&8&&qe(p,S[3].d.l)},d(S){S&&C(e),S&&C(l),S&&C(n),S&&C(u),T&&T.d(S),S&&C(c),S&&C(f),k=!1,ze(A)}}}function Lf(t){let e;return{c(){e=m("div"),e.textContent="Telnet is unsafe and should be off when not in use",r(e,"class","bd-red")},m(l,n){M(l,e,n)},d(l){l&&C(e)}}}function Tp(t){let e,l,n,i,o,a,u,c,f,p,_,b,v,d,k,A,T,S,E,B,P,R,L,F,x,j,z,G,V,W,U,K,H,Y,Z,re,ue,we,me,Te,je,Oe,He,ye,Ne,Re,$e,y,g,w,N,I,Q,J,se,ce,ve,Se,oe,pe,Be,_e,Ce,vt,Hl,tl,ct,Sl,pl,jt,ht,Ye,Qe,Xe,Ue,Ze,We,Je,xe,de,Me,Ii,_l,vn,Tt,Oi,Ri,Li,dl,Fi,qi,Bi,Nt,Tl,Nl,Al,Ui,ji,ke,mt,Wl,zl,Pl,El,Gl,Hi,ll,Wi,Io,Ds,Oo,pi,Ht,Ro,Lo,Dl,nl,Il,Fo,zi,qo,pt,Ol,Bo,Gi,hn,bn,gn,kn,Vi,Uo,At,Ki,jo,Vl,Ho,Wo,zo,il,wn,yn,Go,Cn,Kl,Vo,Ko,Yo,Mn,Wt,Qo,Yi,Xo,Yl,Zo,Jo,xo,$n,zt,er,Qi,tr,Is,lr,Ql,Xi,Gt,nr,ir,sr,Os,Zi,Vt,or,rr,ar,tt,Ji,ur,Sn,Tn,fr,_i,cr,Xl,mr,pr,_r,vl,dr,Zl,vr,hr,br,hl,gr,Nn,Jl,kr,wr,yr,Ot,An,Pn,En,Dn,Cr,xl,Mr,$r,Sr,In,Rt,Tr,xi,Nr,es,ts,Kt,Ar,Pr,ls,ns,Yt,Er,Dr,ut,is,Ir,On,Rn,Or,en,Rr,Lr,Fr,Rl,sl,Ln,Fn,qr,Pt,ss,os,Br,Et,qn,rs,as,Ur,Rs,us,fs,Qt,jr,Hr,di,Wr,Ll,zr,vi,Xt,Gr,Vr,Kr,cs,bl,Yr,Ke,ms,Qr,Bn,Un,Xr,hi,Zr,ol,Jr,Ls,xr,ea,jn,gl,ta,Zt,la,Fs,tn,na,ia,sa,kl,oa,ln,ra,aa,ua,wl,fa,Hn,Wn,ca,ma,pa,yl,_a,zn,da,va,ha,bt,Gn,Vn,Kn,Yn,Qn,Xn,ba,nn,ga,ka,wa,Cl,ya,qs,Bs,Us,js=t[3].p.r.startsWith("10YNO")||t[3].p.r=="10Y1001A1001A48H",Hs,rl,ps,Ca,Zn,Jn,Ma,bi,$a,gi,Sa,Ws,Dt,_s,Ta,xn,ei,Na,ki,Aa,ds,vs,Jt,Pa,Ea,Da,Fl,zs,ti,Ia,hs,li,Oa,bs,Gs,sn,Vs,on,Ks,rn,Ys,an,Lt,Qs,Ra;u=new qt({}),F=new tp({});let l0=["NOK","SEK","DKK","EUR"],wi=[];for(let O=0;O<4;O+=1)wi[O]=pp(mp(t,l0,O));let gt=t[3].p.e&&t[0].chip!="esp8266"&&pf(t),kt=t[3].g.s>0&&_f(t);Pl=new qt({});let n0=[24,48,96,192,384,576,1152],yi=[];for(let O=0;O<7;O+=1)yi[O]=_p(cp(t,n0,O));let wt=t[3].m.e.e&&df(t),yt=t[3].m.e.e&&vf(t),Ct=t[3].m.m.e&&hf(t);Tn=new qt({}),Rn=new qt({}),qn=new e0({});let Mt=t[3].n.m=="static"&&bf(t);Un=new qt({});let $t=t[0].chip!="esp8266"&&gf(t),lt=t[3].q.s.e&&kf(t),nt=t[3].q.m==3&&wf(t),it=t[3].q.m==4&&yf(t),st=t[3].c.es!=null&&Cf(t),ot=js&&Sf(t);Jn=new qt({});let ni=t[7],_t=[];for(let O=0;O20||t[0].chip=="esp8266")&&Af(t);ei=new qt({});let St=t[3].d.s&&Rf(t);return sn=new It({props:{active:t[1],message:"Loading configuration"}}),on=new It({props:{active:t[2],message:"Saving configuration"}}),rn=new It({props:{active:t[4],message:"Performing factory reset"}}),an=new It({props:{active:t[5],message:"Device have been factory reset and switched to AP mode"}}),{c(){e=m("form"),l=m("div"),n=m("div"),i=m("strong"),i.textContent="General",o=h(),a=m("a"),ie(u.$$.fragment),c=h(),f=m("input"),p=h(),_=m("div"),b=m("div"),v=m("div"),d=$("Hostname"),k=m("br"),A=h(),T=m("input"),S=h(),E=m("div"),B=$("Time zone"),P=m("br"),R=h(),L=m("select"),ie(F.$$.fragment),x=h(),j=m("input"),z=h(),G=m("div"),V=m("div"),W=m("div"),U=$("Price region"),K=m("br"),H=h(),Y=m("select"),Z=m("optgroup"),re=m("option"),re.textContent="NO1",ue=m("option"),ue.textContent="NO2",we=m("option"),we.textContent="NO3",me=m("option"),me.textContent="NO4",Te=m("option"),Te.textContent="NO5",je=m("optgroup"),Oe=m("option"),Oe.textContent="SE1",He=m("option"),He.textContent="SE2",ye=m("option"),ye.textContent="SE3",Ne=m("option"),Ne.textContent="SE4",Re=m("optgroup"),$e=m("option"),$e.textContent="DK1",y=m("option"),y.textContent="DK2",g=m("option"),g.textContent="Austria",w=m("option"),w.textContent="Belgium",N=m("option"),N.textContent="Czech Republic",I=m("option"),I.textContent="Estonia",Q=m("option"),Q.textContent="Finland",J=m("option"),J.textContent="France",se=m("option"),se.textContent="Germany",ce=m("option"),ce.textContent="Great Britain",ve=m("option"),ve.textContent="Latvia",Se=m("option"),Se.textContent="Lithuania",oe=m("option"),oe.textContent="Netherland",pe=m("option"),pe.textContent="Poland",Be=m("option"),Be.textContent="Switzerland",_e=h(),Ce=m("div"),vt=$("Currency"),Hl=m("br"),tl=h(),ct=m("select");for(let O=0;O<4;O+=1)wi[O].c();Sl=h(),pl=m("div"),jt=m("div"),ht=m("div"),Ye=$("Fixed price"),Qe=m("br"),Xe=h(),Ue=m("input"),Ze=h(),We=m("div"),Je=$("Multiplier"),xe=m("br"),de=h(),Me=m("input"),Ii=h(),_l=m("div"),vn=m("label"),Tt=m("input"),Oi=$(" Enable price fetch from remote server"),Ri=h(),gt&>.c(),Li=h(),dl=m("div"),Fi=$("Security"),qi=m("br"),Bi=h(),Nt=m("select"),Tl=m("option"),Tl.textContent="None",Nl=m("option"),Nl.textContent="Only configuration",Al=m("option"),Al.textContent="Everything",Ui=h(),kt&&kt.c(),ji=h(),ke=m("div"),mt=m("strong"),mt.textContent="Meter",Wl=h(),zl=m("a"),ie(Pl.$$.fragment),El=h(),Gl=m("input"),Hi=h(),ll=m("div"),Wi=m("span"),Wi.textContent="Buffer size",Io=h(),Ds=m("span"),Ds.textContent="Serial conf.",Oo=h(),pi=m("label"),Ht=m("input"),Ro=$(" inverted"),Lo=h(),Dl=m("div"),nl=m("select"),Il=m("option"),Fo=$("Autodetect");for(let O=0;O<7;O+=1)yi[O].c();qo=h(),pt=m("select"),Ol=m("option"),Bo=$("-"),hn=m("option"),hn.textContent="7N1",bn=m("option"),bn.textContent="8N1",gn=m("option"),gn.textContent="7E1",kn=m("option"),kn.textContent="8E1",Uo=h(),At=m("input"),jo=h(),Vl=m("div"),Ho=$("Voltage"),Wo=m("br"),zo=h(),il=m("select"),wn=m("option"),wn.textContent="400V (TN)",yn=m("option"),yn.textContent="230V (IT/TT)",Go=h(),Cn=m("div"),Kl=m("div"),Vo=$("Main fuse"),Ko=m("br"),Yo=h(),Mn=m("label"),Wt=m("input"),Qo=h(),Yi=m("span"),Yi.textContent="A",Xo=h(),Yl=m("div"),Zo=$("Production"),Jo=m("br"),xo=h(),$n=m("label"),zt=m("input"),er=h(),Qi=m("span"),Qi.textContent="kWp",tr=h(),Is=m("div"),lr=h(),Ql=m("div"),Xi=m("label"),Gt=m("input"),nr=$(" Meter is encrypted"),ir=h(),wt&&wt.c(),sr=h(),yt&&yt.c(),Os=h(),Zi=m("label"),Vt=m("input"),or=$(" Multipliers"),rr=h(),Ct&&Ct.c(),ar=h(),tt=m("div"),Ji=m("strong"),Ji.textContent="WiFi",ur=h(),Sn=m("a"),ie(Tn.$$.fragment),fr=h(),_i=m("input"),cr=h(),Xl=m("div"),mr=$("SSID"),pr=m("br"),_r=h(),vl=m("input"),dr=h(),Zl=m("div"),vr=$("Password"),hr=m("br"),br=h(),hl=m("input"),gr=h(),Nn=m("div"),Jl=m("div"),kr=$("Power saving"),wr=m("br"),yr=h(),Ot=m("select"),An=m("option"),An.textContent="Default",Pn=m("option"),Pn.textContent="Off",En=m("option"),En.textContent="Minimum",Dn=m("option"),Dn.textContent="Maximum",Cr=h(),xl=m("div"),Mr=$("Power"),$r=m("br"),Sr=h(),In=m("div"),Rt=m("input"),Tr=h(),xi=m("span"),xi.textContent="dBm",Nr=h(),es=m("div"),ts=m("label"),Kt=m("input"),Ar=$(" Auto reboot on connection problem"),Pr=h(),ls=m("div"),ns=m("label"),Yt=m("input"),Er=$(" Allow 802.11b legacy rates"),Dr=h(),ut=m("div"),is=m("strong"),is.textContent="Network",Ir=h(),On=m("a"),ie(Rn.$$.fragment),Or=h(),en=m("div"),Rr=$("IP"),Lr=m("br"),Fr=h(),Rl=m("div"),sl=m("select"),Ln=m("option"),Ln.textContent="DHCP",Fn=m("option"),Fn.textContent="Static",qr=h(),Pt=m("input"),Br=h(),Et=m("select"),ie(qn.$$.fragment),Ur=h(),Mt&&Mt.c(),Rs=h(),us=m("div"),fs=m("label"),Qt=m("input"),jr=$(" enable mDNS"),Hr=h(),di=m("input"),Wr=h(),Ll=m("div"),zr=$("NTP "),vi=m("label"),Xt=m("input"),Gr=$(" obtain from DHCP"),Vr=m("br"),Kr=h(),cs=m("div"),bl=m("input"),Yr=h(),Ke=m("div"),ms=m("strong"),ms.textContent="MQTT",Qr=h(),Bn=m("a"),ie(Un.$$.fragment),Xr=h(),hi=m("input"),Zr=h(),ol=m("div"),Jr=$(`Server + `),$t&&$t.c(),Ls=h(),xr=m("br"),ea=h(),jn=m("div"),gl=m("input"),ta=h(),Zt=m("input"),la=h(),lt&<.c(),Fs=h(),tn=m("div"),na=$("Username"),ia=m("br"),sa=h(),kl=m("input"),oa=h(),ln=m("div"),ra=$("Password"),aa=m("br"),ua=h(),wl=m("input"),fa=h(),Hn=m("div"),Wn=m("div"),ca=$("Client ID"),ma=m("br"),pa=h(),yl=m("input"),_a=h(),zn=m("div"),da=$("Payload"),va=m("br"),ha=h(),bt=m("select"),Gn=m("option"),Gn.textContent="JSON",Vn=m("option"),Vn.textContent="Raw (minimal)",Kn=m("option"),Kn.textContent="Raw (full)",Yn=m("option"),Yn.textContent="Domoticz",Qn=m("option"),Qn.textContent="HomeAssistant",Xn=m("option"),Xn.textContent="HEX dump",ba=h(),nn=m("div"),ga=$("Publish topic"),ka=m("br"),wa=h(),Cl=m("input"),ya=h(),nt&&nt.c(),qs=h(),it&&it.c(),Bs=h(),st&&st.c(),Us=h(),ot&&ot.c(),Hs=h(),rl=m("div"),ps=m("strong"),ps.textContent="User interface",Ca=h(),Zn=m("a"),ie(Jn.$$.fragment),Ma=h(),bi=m("input"),$a=h(),gi=m("div");for(let O=0;O<_t.length;O+=1)_t[O].c();Sa=h(),rt&&rt.c(),Ws=h(),Dt=m("div"),_s=m("strong"),_s.textContent="Debugging",Ta=h(),xn=m("a"),ie(ei.$$.fragment),Na=h(),ki=m("input"),Aa=h(),ds=m("div"),vs=m("label"),Jt=m("input"),Pa=$(" Enable debugging"),Ea=h(),St&&St.c(),Da=h(),Fl=m("div"),zs=m("div"),ti=m("button"),ti.textContent="Factory reset",Ia=h(),hs=m("div"),li=m("button"),li.textContent="Reboot",Oa=h(),bs=m("div"),bs.innerHTML='',Gs=h(),ie(sn.$$.fragment),Vs=h(),ie(on.$$.fragment),Ks=h(),ie(rn.$$.fragment),Ys=h(),ie(an.$$.fragment),r(i,"class","text-sm"),r(a,"href",Bt("General-configuration")),r(a,"target","_blank"),r(a,"class","float-right"),r(f,"type","hidden"),r(f,"name","g"),f.value="true",r(T,"name","gh"),r(T,"type","text"),r(T,"class","in-f w-full"),r(T,"pattern","[A-Za-z0-9-]+"),r(L,"name","gt"),r(L,"class","in-l w-full"),t[3].g.t===void 0&&et(()=>t[16].call(L)),r(b,"class","flex"),r(_,"class","my-1"),r(j,"type","hidden"),r(j,"name","p"),j.value="true",re.__value="10YNO-1--------2",re.value=re.__value,ue.__value="10YNO-2--------T",ue.value=ue.__value,we.__value="10YNO-3--------J",we.value=we.__value,me.__value="10YNO-4--------9",me.value=me.__value,Te.__value="10Y1001A1001A48H",Te.value=Te.__value,r(Z,"label","Norway"),Oe.__value="10Y1001A1001A44P",Oe.value=Oe.__value,He.__value="10Y1001A1001A45N",He.value=He.__value,ye.__value="10Y1001A1001A46L",ye.value=ye.__value,Ne.__value="10Y1001A1001A47J",Ne.value=Ne.__value,r(je,"label","Sweden"),$e.__value="10YDK-1--------W",$e.value=$e.__value,y.__value="10YDK-2--------M",y.value=y.__value,r(Re,"label","Denmark"),g.__value="10YAT-APG------L",g.value=g.__value,w.__value="10YBE----------2",w.value=w.__value,N.__value="10YCZ-CEPS-----N",N.value=N.__value,I.__value="10Y1001A1001A39I",I.value=I.__value,Q.__value="10YFI-1--------U",Q.value=Q.__value,J.__value="10YFR-RTE------C",J.value=J.__value,se.__value="10Y1001A1001A83F",se.value=se.__value,ce.__value="10YGB----------A",ce.value=ce.__value,ve.__value="10YLV-1001A00074",ve.value=ve.__value,Se.__value="10YLT-1001A0008Q",Se.value=Se.__value,oe.__value="10YNL----------L",oe.value=oe.__value,pe.__value="10YPL-AREA-----S",pe.value=pe.__value,Be.__value="10YCH-SWISSGRIDZ",Be.value=Be.__value,r(Y,"name","pr"),r(Y,"class","in-f w-full"),t[3].p.r===void 0&&et(()=>t[17].call(Y)),r(W,"class","w-full"),r(ct,"name","pc"),r(ct,"class","in-l"),t[3].p.c===void 0&&et(()=>t[18].call(ct)),r(V,"class","flex"),r(G,"class","my-1"),r(Ue,"name","pf"),r(Ue,"type","number"),r(Ue,"min","0.001"),r(Ue,"max","65"),r(Ue,"step","0.001"),r(Ue,"class","in-f tr w-full"),r(ht,"class","w-1/2"),r(Me,"name","pm"),r(Me,"type","number"),r(Me,"min","0.001"),r(Me,"max","1000"),r(Me,"step","0.001"),r(Me,"class","in-l tr w-full"),r(We,"class","w-1/2"),r(jt,"class","flex"),r(pl,"class","my-1"),r(Tt,"type","checkbox"),r(Tt,"name","pe"),Tt.__value="true",Tt.value=Tt.__value,r(Tt,"class","rounded mb-1"),r(_l,"class","my-1"),Tl.__value=0,Tl.value=Tl.__value,Nl.__value=1,Nl.value=Nl.__value,Al.__value=2,Al.value=Al.__value,r(Nt,"name","gs"),r(Nt,"class","in-s"),t[3].g.s===void 0&&et(()=>t[23].call(Nt)),r(dl,"class","my-1"),r(n,"class","cnt"),r(mt,"class","text-sm"),r(zl,"href",Bt("Meter-configuration")),r(zl,"target","_blank"),r(zl,"class","float-right"),r(Gl,"type","hidden"),r(Gl,"name","m"),Gl.value="true",r(Wi,"class","float-right"),r(Ht,"name","mi"),Ht.__value="true",Ht.value=Ht.__value,r(Ht,"type","checkbox"),r(Ht,"class","rounded mb-1"),r(pi,"class","mt-2 ml-3 whitespace-nowrap"),Il.__value=0,Il.value=Il.__value,Il.disabled=zi=t[3].m.b!=0,r(nl,"name","mb"),r(nl,"class","in-f tr w-1/2"),t[3].m.b===void 0&&et(()=>t[27].call(nl)),Ol.__value=0,Ol.value=Ol.__value,Ol.disabled=Gi=t[3].m.b!=0,hn.__value=2,hn.value=hn.__value,bn.__value=3,bn.value=bn.__value,gn.__value=10,gn.value=gn.__value,kn.__value=11,kn.value=kn.__value,r(pt,"name","mp"),r(pt,"class","in-m"),pt.disabled=Vi=t[3].m.b==0,t[3].m.p===void 0&&et(()=>t[28].call(pt)),r(At,"name","ms"),r(At,"type","number"),r(At,"min",64),r(At,"max",Ki=t[0].chip=="esp8266"?t[3].i.h.p==3||t[3].i.h.p==113?512:128:4096),r(At,"step",64),r(At,"class","in-l tr w-1/2"),r(Dl,"class","flex w-full"),r(ll,"class","my-1"),wn.__value=2,wn.value=wn.__value,yn.__value=1,yn.value=yn.__value,r(il,"name","md"),r(il,"class","in-s"),t[3].m.d===void 0&&et(()=>t[30].call(il)),r(Vl,"class","my-1"),r(Wt,"name","mf"),r(Wt,"type","number"),r(Wt,"min","5"),r(Wt,"max","65535"),r(Wt,"class","in-f tr w-full"),r(Yi,"class","in-post"),r(Mn,"class","flex"),r(Kl,"class","mx-1"),r(zt,"name","mr"),r(zt,"type","number"),r(zt,"min","0"),r(zt,"max","65535"),r(zt,"class","in-f tr w-full"),r(Qi,"class","in-post"),r($n,"class","flex"),r(Yl,"class","mx-1"),r(Cn,"class","my-1 flex"),r(Is,"class","my-1"),r(Gt,"type","checkbox"),r(Gt,"name","me"),Gt.__value="true",Gt.value=Gt.__value,r(Gt,"class","rounded mb-1"),r(Ql,"class","my-1"),r(Vt,"type","checkbox"),r(Vt,"name","mm"),Vt.__value="true",Vt.value=Vt.__value,r(Vt,"class","rounded mb-1"),r(ke,"class","cnt"),r(Ji,"class","text-sm"),r(Sn,"href",Bt("WiFi-configuration")),r(Sn,"target","_blank"),r(Sn,"class","float-right"),r(_i,"type","hidden"),r(_i,"name","w"),_i.value="true",r(vl,"name","ws"),r(vl,"type","text"),r(vl,"class","in-s"),r(Xl,"class","my-1"),r(hl,"name","wp"),r(hl,"type","password"),r(hl,"class","in-s"),r(Zl,"class","my-1"),An.__value=255,An.value=An.__value,Pn.__value=0,Pn.value=Pn.__value,En.__value=1,En.value=En.__value,Dn.__value=2,Dn.value=Dn.__value,r(Ot,"name","wz"),r(Ot,"class","in-s"),t[3].w.z===void 0&&et(()=>t[43].call(Ot)),r(Jl,"class","w-1/2"),r(Rt,"name","ww"),r(Rt,"type","number"),r(Rt,"min","0"),r(Rt,"max","20.5"),r(Rt,"step","0.5"),r(Rt,"class","in-f tr w-full"),r(xi,"class","in-post"),r(In,"class","flex"),r(xl,"class","ml-2 w-1/2"),r(Nn,"class","my-1 flex"),r(Kt,"type","checkbox"),r(Kt,"name","wa"),Kt.__value="true",Kt.value=Kt.__value,r(Kt,"class","rounded mb-1"),r(es,"class","my-3"),r(Yt,"type","checkbox"),r(Yt,"name","wb"),Yt.__value="true",Yt.value=Yt.__value,r(Yt,"class","rounded mb-1"),r(ls,"class","my-3"),r(tt,"class","cnt"),r(is,"class","text-sm"),r(On,"href",Bt("Network-configuration")),r(On,"target","_blank"),r(On,"class","float-right"),Ln.__value="dhcp",Ln.value=Ln.__value,Fn.__value="static",Fn.value=Fn.__value,r(sl,"name","nm"),r(sl,"class","in-f"),t[3].n.m===void 0&&et(()=>t[47].call(sl)),r(Pt,"name","ni"),r(Pt,"type","text"),r(Pt,"class","in-m w-full"),Pt.disabled=ss=t[3].n.m=="dhcp",Pt.required=os=t[3].n.m=="static",r(Et,"name","ns"),r(Et,"class","in-l"),Et.disabled=rs=t[3].n.m=="dhcp",Et.required=as=t[3].n.m=="static",t[3].n.s===void 0&&et(()=>t[49].call(Et)),r(Rl,"class","flex"),r(en,"class","my-1"),r(Qt,"name","nd"),Qt.__value="true",Qt.value=Qt.__value,r(Qt,"type","checkbox"),r(Qt,"class","rounded mb-1"),r(us,"class","my-1"),r(di,"type","hidden"),r(di,"name","ntp"),di.value="true",r(Xt,"name","ntpd"),Xt.__value="true",Xt.value=Xt.__value,r(Xt,"type","checkbox"),r(Xt,"class","rounded mb-1"),r(vi,"class","ml-4"),r(bl,"name","ntph"),r(bl,"type","text"),r(bl,"class","in-s"),r(cs,"class","flex"),r(Ll,"class","my-1"),r(ut,"class","cnt"),r(ms,"class","text-sm"),r(Bn,"href",Bt("MQTT-configuration")),r(Bn,"target","_blank"),r(Bn,"class","float-right"),r(hi,"type","hidden"),r(hi,"name","q"),hi.value="true",r(gl,"name","qh"),r(gl,"type","text"),r(gl,"class","in-f w-3/4"),r(Zt,"name","qp"),r(Zt,"type","number"),r(Zt,"min","1024"),r(Zt,"max","65535"),r(Zt,"class","in-l tr w-1/4"),r(jn,"class","flex"),r(ol,"class","my-1"),r(kl,"name","qu"),r(kl,"type","text"),r(kl,"class","in-s"),r(tn,"class","my-1"),r(wl,"name","qa"),r(wl,"type","password"),r(wl,"class","in-s"),r(ln,"class","my-1"),r(yl,"name","qc"),r(yl,"type","text"),r(yl,"class","in-f w-full"),Gn.__value=0,Gn.value=Gn.__value,Vn.__value=1,Vn.value=Vn.__value,Kn.__value=2,Kn.value=Kn.__value,Yn.__value=3,Yn.value=Yn.__value,Qn.__value=4,Qn.value=Qn.__value,Xn.__value=255,Xn.value=Xn.__value,r(bt,"name","qm"),r(bt,"class","in-l"),t[3].q.m===void 0&&et(()=>t[62].call(bt)),r(Hn,"class","my-1 flex"),r(Cl,"name","qb"),r(Cl,"type","text"),r(Cl,"class","in-s"),r(nn,"class","my-1"),r(Ke,"class","cnt"),r(ps,"class","text-sm"),r(Zn,"href",Bt("User-interface")),r(Zn,"target","_blank"),r(Zn,"class","float-right"),r(bi,"type","hidden"),r(bi,"name","u"),bi.value="true",r(gi,"class","flex flex-wrap"),r(rl,"class","cnt"),r(_s,"class","text-sm"),r(xn,"href","https://amsleser.no/blog/post/24-telnet-debug"),r(xn,"target","_blank"),r(xn,"class","float-right"),r(ki,"type","hidden"),r(ki,"name","d"),ki.value="true",r(Jt,"type","checkbox"),r(Jt,"name","ds"),Jt.__value="true",Jt.value=Jt.__value,r(Jt,"class","rounded mb-1"),r(ds,"class","mt-3"),r(Dt,"class","cnt"),r(l,"class","grid xl:grid-cols-4 lg:grid-cols-2 md:grid-cols-2"),r(ti,"type","button"),r(ti,"class","py-2 px-4 rounded bg-red-500 text-white ml-2"),r(li,"type","button"),r(li,"class","py-2 px-4 rounded bg-yellow-500 text-white"),r(hs,"class","text-center"),r(bs,"class","text-right"),r(Fl,"class","grid grid-cols-3"),r(e,"autocomplete","off")},m(O,ae){M(O,e,ae),s(e,l),s(l,n),s(n,i),s(n,o),s(n,a),le(u,a,null),s(n,c),s(n,f),s(n,p),s(n,_),s(_,b),s(b,v),s(v,d),s(v,k),s(v,A),s(v,T),te(T,t[3].g.h),s(b,S),s(b,E),s(E,B),s(E,P),s(E,R),s(E,L),le(F,L,null),qe(L,t[3].g.t,!0),s(n,x),s(n,j),s(n,z),s(n,G),s(G,V),s(V,W),s(W,U),s(W,K),s(W,H),s(W,Y),s(Y,Z),s(Z,re),s(Z,ue),s(Z,we),s(Z,me),s(Z,Te),s(Y,je),s(je,Oe),s(je,He),s(je,ye),s(je,Ne),s(Y,Re),s(Re,$e),s(Re,y),s(Y,g),s(Y,w),s(Y,N),s(Y,I),s(Y,Q),s(Y,J),s(Y,se),s(Y,ce),s(Y,ve),s(Y,Se),s(Y,oe),s(Y,pe),s(Y,Be),qe(Y,t[3].p.r,!0),s(V,_e),s(V,Ce),s(Ce,vt),s(Ce,Hl),s(Ce,tl),s(Ce,ct);for(let ft=0;ft<4;ft+=1)wi[ft]&&wi[ft].m(ct,null);qe(ct,t[3].p.c,!0),s(n,Sl),s(n,pl),s(pl,jt),s(jt,ht),s(ht,Ye),s(ht,Qe),s(ht,Xe),s(ht,Ue),te(Ue,t[3].p.f),s(jt,Ze),s(jt,We),s(We,Je),s(We,xe),s(We,de),s(We,Me),te(Me,t[3].p.m),s(n,Ii),s(n,_l),s(_l,vn),s(vn,Tt),Tt.checked=t[3].p.e,s(vn,Oi),s(_l,Ri),gt&>.m(_l,null),s(n,Li),s(n,dl),s(dl,Fi),s(dl,qi),s(dl,Bi),s(dl,Nt),s(Nt,Tl),s(Nt,Nl),s(Nt,Al),qe(Nt,t[3].g.s,!0),s(n,Ui),kt&&kt.m(n,null),s(l,ji),s(l,ke),s(ke,mt),s(ke,Wl),s(ke,zl),le(Pl,zl,null),s(ke,El),s(ke,Gl),s(ke,Hi),s(ke,ll),s(ll,Wi),s(ll,Io),s(ll,Ds),s(ll,Oo),s(ll,pi),s(pi,Ht),Ht.checked=t[3].m.i,s(pi,Ro),s(ll,Lo),s(ll,Dl),s(Dl,nl),s(nl,Il),s(Il,Fo);for(let ft=0;ft<7;ft+=1)yi[ft]&&yi[ft].m(nl,null);qe(nl,t[3].m.b,!0),s(Dl,qo),s(Dl,pt),s(pt,Ol),s(Ol,Bo),s(pt,hn),s(pt,bn),s(pt,gn),s(pt,kn),qe(pt,t[3].m.p,!0),s(Dl,Uo),s(Dl,At),te(At,t[3].m.s),s(ke,jo),s(ke,Vl),s(Vl,Ho),s(Vl,Wo),s(Vl,zo),s(Vl,il),s(il,wn),s(il,yn),qe(il,t[3].m.d,!0),s(ke,Go),s(ke,Cn),s(Cn,Kl),s(Kl,Vo),s(Kl,Ko),s(Kl,Yo),s(Kl,Mn),s(Mn,Wt),te(Wt,t[3].m.f),s(Mn,Qo),s(Mn,Yi),s(Cn,Xo),s(Cn,Yl),s(Yl,Zo),s(Yl,Jo),s(Yl,xo),s(Yl,$n),s($n,zt),te(zt,t[3].m.r),s($n,er),s($n,Qi),s(ke,tr),s(ke,Is),s(ke,lr),s(ke,Ql),s(Ql,Xi),s(Xi,Gt),Gt.checked=t[3].m.e.e,s(Xi,nr),s(Ql,ir),wt&&wt.m(Ql,null),s(ke,sr),yt&&yt.m(ke,null),s(ke,Os),s(ke,Zi),s(Zi,Vt),Vt.checked=t[3].m.m.e,s(Zi,or),s(ke,rr),Ct&&Ct.m(ke,null),s(l,ar),s(l,tt),s(tt,Ji),s(tt,ur),s(tt,Sn),le(Tn,Sn,null),s(tt,fr),s(tt,_i),s(tt,cr),s(tt,Xl),s(Xl,mr),s(Xl,pr),s(Xl,_r),s(Xl,vl),te(vl,t[3].w.s),s(tt,dr),s(tt,Zl),s(Zl,vr),s(Zl,hr),s(Zl,br),s(Zl,hl),te(hl,t[3].w.p),s(tt,gr),s(tt,Nn),s(Nn,Jl),s(Jl,kr),s(Jl,wr),s(Jl,yr),s(Jl,Ot),s(Ot,An),s(Ot,Pn),s(Ot,En),s(Ot,Dn),qe(Ot,t[3].w.z,!0),s(Nn,Cr),s(Nn,xl),s(xl,Mr),s(xl,$r),s(xl,Sr),s(xl,In),s(In,Rt),te(Rt,t[3].w.w),s(In,Tr),s(In,xi),s(tt,Nr),s(tt,es),s(es,ts),s(ts,Kt),Kt.checked=t[3].w.a,s(ts,Ar),s(tt,Pr),s(tt,ls),s(ls,ns),s(ns,Yt),Yt.checked=t[3].w.b,s(ns,Er),s(l,Dr),s(l,ut),s(ut,is),s(ut,Ir),s(ut,On),le(Rn,On,null),s(ut,Or),s(ut,en),s(en,Rr),s(en,Lr),s(en,Fr),s(en,Rl),s(Rl,sl),s(sl,Ln),s(sl,Fn),qe(sl,t[3].n.m,!0),s(Rl,qr),s(Rl,Pt),te(Pt,t[3].n.i),s(Rl,Br),s(Rl,Et),le(qn,Et,null),qe(Et,t[3].n.s,!0),s(ut,Ur),Mt&&Mt.m(ut,null),s(ut,Rs),s(ut,us),s(us,fs),s(fs,Qt),Qt.checked=t[3].n.d,s(fs,jr),s(ut,Hr),s(ut,di),s(ut,Wr),s(ut,Ll),s(Ll,zr),s(Ll,vi),s(vi,Xt),Xt.checked=t[3].n.h,s(vi,Gr),s(Ll,Vr),s(Ll,Kr),s(Ll,cs),s(cs,bl),te(bl,t[3].n.n1),s(l,Yr),s(l,Ke),s(Ke,ms),s(Ke,Qr),s(Ke,Bn),le(Un,Bn,null),s(Ke,Xr),s(Ke,hi),s(Ke,Zr),s(Ke,ol),s(ol,Jr),$t&&$t.m(ol,null),s(ol,Ls),s(ol,xr),s(ol,ea),s(ol,jn),s(jn,gl),te(gl,t[3].q.h),s(jn,ta),s(jn,Zt),te(Zt,t[3].q.p),s(Ke,la),lt&<.m(Ke,null),s(Ke,Fs),s(Ke,tn),s(tn,na),s(tn,ia),s(tn,sa),s(tn,kl),te(kl,t[3].q.u),s(Ke,oa),s(Ke,ln),s(ln,ra),s(ln,aa),s(ln,ua),s(ln,wl),te(wl,t[3].q.a),s(Ke,fa),s(Ke,Hn),s(Hn,Wn),s(Wn,ca),s(Wn,ma),s(Wn,pa),s(Wn,yl),te(yl,t[3].q.c),s(Hn,_a),s(Hn,zn),s(zn,da),s(zn,va),s(zn,ha),s(zn,bt),s(bt,Gn),s(bt,Vn),s(bt,Kn),s(bt,Yn),s(bt,Qn),s(bt,Xn),qe(bt,t[3].q.m,!0),s(Ke,ba),s(Ke,nn),s(nn,ga),s(nn,ka),s(nn,wa),s(nn,Cl),te(Cl,t[3].q.b),s(l,ya),nt&&nt.m(l,null),s(l,qs),it&&it.m(l,null),s(l,Bs),st&&st.m(l,null),s(l,Us),ot&&ot.m(l,null),s(l,Hs),s(l,rl),s(rl,ps),s(rl,Ca),s(rl,Zn),le(Jn,Zn,null),s(rl,Ma),s(rl,bi),s(rl,$a),s(rl,gi);for(let ft=0;ft<_t.length;ft+=1)_t[ft]&&_t[ft].m(gi,null);s(l,Sa),rt&&rt.m(l,null),s(l,Ws),s(l,Dt),s(Dt,_s),s(Dt,Ta),s(Dt,xn),le(ei,xn,null),s(Dt,Na),s(Dt,ki),s(Dt,Aa),s(Dt,ds),s(ds,vs),s(vs,Jt),Jt.checked=t[3].d.s,s(vs,Pa),s(Dt,Ea),St&&St.m(Dt,null),s(e,Da),s(e,Fl),s(Fl,zs),s(zs,ti),s(Fl,Ia),s(Fl,hs),s(hs,li),s(Fl,Oa),s(Fl,bs),M(O,Gs,ae),le(sn,O,ae),M(O,Vs,ae),le(on,O,ae),M(O,Ks,ae),le(rn,O,ae),M(O,Ys,ae),le(an,O,ae),Lt=!0,Qs||(Ra=[ee(T,"input",t[15]),ee(L,"change",t[16]),ee(Y,"change",t[17]),ee(ct,"change",t[18]),ee(Ue,"input",t[19]),ee(Me,"input",t[20]),ee(Tt,"change",t[21]),ee(Nt,"change",t[23]),ee(Ht,"change",t[26]),ee(nl,"change",t[27]),ee(pt,"change",t[28]),ee(At,"input",t[29]),ee(il,"change",t[30]),ee(Wt,"input",t[31]),ee(zt,"input",t[32]),ee(Gt,"change",t[33]),ee(Vt,"change",t[36]),ee(vl,"input",t[41]),ee(hl,"input",t[42]),ee(Ot,"change",t[43]),ee(Rt,"input",t[44]),ee(Kt,"change",t[45]),ee(Yt,"change",t[46]),ee(sl,"change",t[47]),ee(Pt,"input",t[48]),ee(Et,"change",t[49]),ee(Qt,"change",t[53]),ee(Xt,"change",t[54]),ee(bl,"input",t[55]),ee(gl,"input",t[57]),ee(Zt,"input",t[58]),ee(kl,"input",t[59]),ee(wl,"input",t[60]),ee(yl,"input",t[61]),ee(bt,"change",t[62]),ee(Cl,"input",t[63]),ee(Jt,"change",t[93]),ee(ti,"click",t[8]),ee(li,"click",t[10]),ee(e,"submit",Ps(t[9]))],Qs=!0)},p(O,ae){if(ae[0]&8&&T.value!==O[3].g.h&&te(T,O[3].g.h),ae[0]&8&&qe(L,O[3].g.t),ae[0]&8&&qe(Y,O[3].p.r),ae[0]&8&&qe(ct,O[3].p.c),ae[0]&8&&he(Ue.value)!==O[3].p.f&&te(Ue,O[3].p.f),ae[0]&8&&he(Me.value)!==O[3].p.m&&te(Me,O[3].p.m),ae[0]&8&&(Tt.checked=O[3].p.e),O[3].p.e&&O[0].chip!="esp8266"?gt?gt.p(O,ae):(gt=pf(O),gt.c(),gt.m(_l,null)):gt&&(gt.d(1),gt=null),ae[0]&8&&qe(Nt,O[3].g.s),O[3].g.s>0?kt?kt.p(O,ae):(kt=_f(O),kt.c(),kt.m(n,null)):kt&&(kt.d(1),kt=null),ae[0]&8&&(Ht.checked=O[3].m.i),(!Lt||ae[0]&8&&zi!==(zi=O[3].m.b!=0))&&(Il.disabled=zi),ae[0]&8&&qe(nl,O[3].m.b),(!Lt||ae[0]&8&&Gi!==(Gi=O[3].m.b!=0))&&(Ol.disabled=Gi),(!Lt||ae[0]&8&&Vi!==(Vi=O[3].m.b==0))&&(pt.disabled=Vi),ae[0]&8&&qe(pt,O[3].m.p),(!Lt||ae[0]&9&&Ki!==(Ki=O[0].chip=="esp8266"?O[3].i.h.p==3||O[3].i.h.p==113?512:128:4096))&&r(At,"max",Ki),ae[0]&8&&he(At.value)!==O[3].m.s&&te(At,O[3].m.s),ae[0]&8&&qe(il,O[3].m.d),ae[0]&8&&he(Wt.value)!==O[3].m.f&&te(Wt,O[3].m.f),ae[0]&8&&he(zt.value)!==O[3].m.r&&te(zt,O[3].m.r),ae[0]&8&&(Gt.checked=O[3].m.e.e),O[3].m.e.e?wt?wt.p(O,ae):(wt=df(O),wt.c(),wt.m(Ql,null)):wt&&(wt.d(1),wt=null),O[3].m.e.e?yt?yt.p(O,ae):(yt=vf(O),yt.c(),yt.m(ke,Os)):yt&&(yt.d(1),yt=null),ae[0]&8&&(Vt.checked=O[3].m.m.e),O[3].m.m.e?Ct?Ct.p(O,ae):(Ct=hf(O),Ct.c(),Ct.m(ke,null)):Ct&&(Ct.d(1),Ct=null),ae[0]&8&&vl.value!==O[3].w.s&&te(vl,O[3].w.s),ae[0]&8&&hl.value!==O[3].w.p&&te(hl,O[3].w.p),ae[0]&8&&qe(Ot,O[3].w.z),ae[0]&8&&he(Rt.value)!==O[3].w.w&&te(Rt,O[3].w.w),ae[0]&8&&(Kt.checked=O[3].w.a),ae[0]&8&&(Yt.checked=O[3].w.b),ae[0]&8&&qe(sl,O[3].n.m),(!Lt||ae[0]&8&&ss!==(ss=O[3].n.m=="dhcp"))&&(Pt.disabled=ss),(!Lt||ae[0]&8&&os!==(os=O[3].n.m=="static"))&&(Pt.required=os),ae[0]&8&&Pt.value!==O[3].n.i&&te(Pt,O[3].n.i),(!Lt||ae[0]&8&&rs!==(rs=O[3].n.m=="dhcp"))&&(Et.disabled=rs),(!Lt||ae[0]&8&&as!==(as=O[3].n.m=="static"))&&(Et.required=as),ae[0]&8&&qe(Et,O[3].n.s),O[3].n.m=="static"?Mt?Mt.p(O,ae):(Mt=bf(O),Mt.c(),Mt.m(ut,Rs)):Mt&&(Mt.d(1),Mt=null),ae[0]&8&&(Qt.checked=O[3].n.d),ae[0]&8&&(Xt.checked=O[3].n.h),ae[0]&8&&bl.value!==O[3].n.n1&&te(bl,O[3].n.n1),O[0].chip!="esp8266"?$t?$t.p(O,ae):($t=gf(O),$t.c(),$t.m(ol,Ls)):$t&&($t.d(1),$t=null),ae[0]&8&&gl.value!==O[3].q.h&&te(gl,O[3].q.h),ae[0]&8&&he(Zt.value)!==O[3].q.p&&te(Zt,O[3].q.p),O[3].q.s.e?lt?(lt.p(O,ae),ae[0]&8&&D(lt,1)):(lt=kf(O),lt.c(),D(lt,1),lt.m(Ke,Fs)):lt&&(De(),q(lt,1,1,()=>{lt=null}),Ie()),ae[0]&8&&kl.value!==O[3].q.u&&te(kl,O[3].q.u),ae[0]&8&&wl.value!==O[3].q.a&&te(wl,O[3].q.a),ae[0]&8&&yl.value!==O[3].q.c&&te(yl,O[3].q.c),ae[0]&8&&qe(bt,O[3].q.m),ae[0]&8&&Cl.value!==O[3].q.b&&te(Cl,O[3].q.b),O[3].q.m==3?nt?(nt.p(O,ae),ae[0]&8&&D(nt,1)):(nt=wf(O),nt.c(),D(nt,1),nt.m(l,qs)):nt&&(De(),q(nt,1,1,()=>{nt=null}),Ie()),O[3].q.m==4?it?(it.p(O,ae),ae[0]&8&&D(it,1)):(it=yf(O),it.c(),D(it,1),it.m(l,Bs)):it&&(De(),q(it,1,1,()=>{it=null}),Ie()),O[3].c.es!=null?st?(st.p(O,ae),ae[0]&8&&D(st,1)):(st=Cf(O),st.c(),D(st,1),st.m(l,Us)):st&&(De(),q(st,1,1,()=>{st=null}),Ie()),ae[0]&8&&(js=O[3].p.r.startsWith("10YNO")||O[3].p.r=="10Y1001A1001A48H"),js?ot?(ot.p(O,ae),ae[0]&8&&D(ot,1)):(ot=Sf(O),ot.c(),D(ot,1),ot.m(l,Hs)):ot&&(De(),q(ot,1,1,()=>{ot=null}),Ie()),ae[0]&136){ni=O[7];let Ft;for(Ft=0;Ft20||O[0].chip=="esp8266"?rt?(rt.p(O,ae),ae[0]&1&&D(rt,1)):(rt=Af(O),rt.c(),D(rt,1),rt.m(l,Ws)):rt&&(De(),q(rt,1,1,()=>{rt=null}),Ie()),ae[0]&8&&(Jt.checked=O[3].d.s),O[3].d.s?St?St.p(O,ae):(St=Rf(O),St.c(),St.m(Dt,null)):St&&(St.d(1),St=null);const ft={};ae[0]&2&&(ft.active=O[1]),sn.$set(ft);const La={};ae[0]&4&&(La.active=O[2]),on.$set(La);const Fa={};ae[0]&16&&(Fa.active=O[4]),rn.$set(Fa);const qa={};ae[0]&32&&(qa.active=O[5]),an.$set(qa)},i(O){Lt||(D(u.$$.fragment,O),D(F.$$.fragment,O),D(Pl.$$.fragment,O),D(Tn.$$.fragment,O),D(Rn.$$.fragment,O),D(qn.$$.fragment,O),D(Un.$$.fragment,O),D(lt),D(nt),D(it),D(st),D(ot),D(Jn.$$.fragment,O),D(rt),D(ei.$$.fragment,O),D(sn.$$.fragment,O),D(on.$$.fragment,O),D(rn.$$.fragment,O),D(an.$$.fragment,O),Lt=!0)},o(O){q(u.$$.fragment,O),q(F.$$.fragment,O),q(Pl.$$.fragment,O),q(Tn.$$.fragment,O),q(Rn.$$.fragment,O),q(qn.$$.fragment,O),q(Un.$$.fragment,O),q(lt),q(nt),q(it),q(st),q(ot),q(Jn.$$.fragment,O),q(rt),q(ei.$$.fragment,O),q(sn.$$.fragment,O),q(on.$$.fragment,O),q(rn.$$.fragment,O),q(an.$$.fragment,O),Lt=!1},d(O){O&&C(e),ne(u),ne(F),cl(wi,O),gt&>.d(),kt&&kt.d(),ne(Pl),cl(yi,O),wt&&wt.d(),yt&&yt.d(),Ct&&Ct.d(),ne(Tn),ne(Rn),ne(qn),Mt&&Mt.d(),ne(Un),$t&&$t.d(),lt&<.d(),nt&&nt.d(),it&&it.d(),st&&st.d(),ot&&ot.d(),ne(Jn),cl(_t,O),rt&&rt.d(),ne(ei),St&&St.d(),O&&C(Gs),ne(sn,O),O&&C(Vs),ne(on,O),O&&C(Ks),ne(rn,O),O&&C(Ys),ne(an,O),Qs=!1,ze(Ra)}}}async function Np(){await(await fetch("/reboot",{method:"POST"})).json()}function Ap(t,e,l){let{sysinfo:n={}}=e,i=[{name:"Import gauge",key:"i"},{name:"Export gauge",key:"e"},{name:"Voltage",key:"v"},{name:"Amperage",key:"a"},{name:"Reactive",key:"r"},{name:"Realtime",key:"c"},{name:"Peaks",key:"t"},{name:"Price",key:"p"},{name:"Day plot",key:"d"},{name:"Month plot",key:"m"},{name:"Temperature plot",key:"s"}],o=!0,a=!1,u={g:{t:"",h:"",s:0,u:"",p:""},m:{b:2400,p:11,i:!1,d:0,f:0,r:0,e:{e:!1,k:"",a:""},m:{e:!1,w:!1,v:!1,a:!1,c:!1}},w:{s:"",p:"",w:0,z:255,a:!0,b:!0},n:{m:"",i:"",s:"",g:"",d1:"",d2:"",d:!1,n1:"",n2:"",h:!1},q:{h:"",p:1883,u:"",a:"",b:"",s:{e:!1,c:!1,r:!0,k:!1}},o:{e:"",c:"",u1:"",u2:"",u3:""},t:{t:[0,0,0,0,0,0,0,0,0,0],h:1},p:{e:!1,t:"",r:"",c:"",m:1,f:null},d:{s:!1,t:!1,l:5},u:{i:0,e:0,v:0,a:0,r:0,c:0,t:0,p:0,d:0,m:0,s:0},i:{h:{p:null,u:!0},a:null,l:{p:null,i:!1},r:{r:null,g:null,b:null,i:!1},t:{d:null,a:null},v:{p:null,d:{v:null,g:null},o:null,m:null,b:null}},h:{t:"",h:"",n:""},c:{es:null}};$i.subscribe(ke=>{ke.version&&(l(3,u=ke),l(1,o=!1))}),Vm();let c=!1,f=!1;async function p(){if(confirm("Are you sure you want to factory reset the device?")){l(4,c=!0);const ke=new URLSearchParams;ke.append("perform","true");let Wl=await(await fetch("/reset",{method:"POST",body:ke})).json();l(4,c=!1),l(5,f=Wl.success)}}async function _(ke){l(2,a=!0);const mt=new FormData(ke.target),Wl=new URLSearchParams;for(let El of mt){const[Gl,Hi]=El;Wl.append(Gl,Hi)}let Pl=await(await fetch("/save",{method:"POST",body:Wl})).json();Ut.update(El=>(El.booting=Pl.reboot,El.ui=u.u,El)),l(2,a=!1),ai("/")}const b=function(){confirm("Are you sure you want to reboot the device?")&&(Ut.update(ke=>(ke.booting=!0,ke)),Np())};async function v(){confirm("Are you sure you want to delete CA?")&&(await(await fetch("/mqtt-ca",{method:"POST"})).text(),$i.update(mt=>(mt.q.s.c=!1,mt)))}async function d(){confirm("Are you sure you want to delete cert?")&&(await(await fetch("/mqtt-cert",{method:"POST"})).text(),$i.update(mt=>(mt.q.s.r=!1,mt)))}async function k(){confirm("Are you sure you want to delete key?")&&(await(await fetch("/mqtt-key",{method:"POST"})).text(),$i.update(mt=>(mt.q.s.k=!1,mt)))}const A=function(){u.q.s.e?u.q.p==1883&&l(3,u.q.p=8883,u):u.q.p==8883&&l(3,u.q.p=1883,u)};let T=44;function S(){u.g.h=this.value,l(3,u)}function E(){u.g.t=dt(this),l(3,u)}function B(){u.p.r=dt(this),l(3,u)}function P(){u.p.c=dt(this),l(3,u)}function R(){u.p.f=he(this.value),l(3,u)}function L(){u.p.m=he(this.value),l(3,u)}function F(){u.p.e=this.checked,l(3,u)}function x(){u.p.t=this.value,l(3,u)}function j(){u.g.s=dt(this),l(3,u)}function z(){u.g.u=this.value,l(3,u)}function G(){u.g.p=this.value,l(3,u)}function V(){u.m.i=this.checked,l(3,u)}function W(){u.m.b=dt(this),l(3,u)}function U(){u.m.p=dt(this),l(3,u)}function K(){u.m.s=he(this.value),l(3,u)}function H(){u.m.d=dt(this),l(3,u)}function Y(){u.m.f=he(this.value),l(3,u)}function Z(){u.m.r=he(this.value),l(3,u)}function re(){u.m.e.e=this.checked,l(3,u)}function ue(){u.m.e.k=this.value,l(3,u)}function we(){u.m.e.a=this.value,l(3,u)}function me(){u.m.m.e=this.checked,l(3,u)}function Te(){u.m.m.w=he(this.value),l(3,u)}function je(){u.m.m.v=he(this.value),l(3,u)}function Oe(){u.m.m.a=he(this.value),l(3,u)}function He(){u.m.m.c=he(this.value),l(3,u)}function ye(){u.w.s=this.value,l(3,u)}function Ne(){u.w.p=this.value,l(3,u)}function Re(){u.w.z=dt(this),l(3,u)}function $e(){u.w.w=he(this.value),l(3,u)}function y(){u.w.a=this.checked,l(3,u)}function g(){u.w.b=this.checked,l(3,u)}function w(){u.n.m=dt(this),l(3,u)}function N(){u.n.i=this.value,l(3,u)}function I(){u.n.s=dt(this),l(3,u)}function Q(){u.n.g=this.value,l(3,u)}function J(){u.n.d1=this.value,l(3,u)}function se(){u.n.d2=this.value,l(3,u)}function ce(){u.n.d=this.checked,l(3,u)}function ve(){u.n.h=this.checked,l(3,u)}function Se(){u.n.n1=this.value,l(3,u)}function oe(){u.q.s.e=this.checked,l(3,u)}function pe(){u.q.h=this.value,l(3,u)}function Be(){u.q.p=he(this.value),l(3,u)}function _e(){u.q.u=this.value,l(3,u)}function Ce(){u.q.a=this.value,l(3,u)}function vt(){u.q.c=this.value,l(3,u)}function Hl(){u.q.m=dt(this),l(3,u)}function tl(){u.q.b=this.value,l(3,u)}function ct(){u.o.e=this.value,l(3,u)}function Sl(){u.o.c=this.value,l(3,u)}function pl(){u.o.u1=this.value,l(3,u)}function jt(){u.o.u2=this.value,l(3,u)}function ht(){u.o.u3=this.value,l(3,u)}function Ye(){u.h.t=this.value,l(3,u)}function Qe(){u.h.h=this.value,l(3,u)}function Xe(){u.h.n=this.value,l(3,u)}function Ue(){u.c.es=this.checked,l(3,u)}function Ze(ke){u.t.t[ke]=he(this.value),l(3,u)}function We(){u.t.h=he(this.value),l(3,u)}function Je(ke){u.u[ke.key]=dt(this),l(3,u)}function xe(){u.i.h.u=this.checked,l(3,u)}function de(){u.i.h.p=dt(this),l(3,u)}function Me(){u.i.a=he(this.value),l(3,u)}function Ii(){u.i.l.i=this.checked,l(3,u)}function _l(){u.i.l.p=he(this.value),l(3,u)}function vn(){u.i.r.i=this.checked,l(3,u)}function Tt(){u.i.r.r=he(this.value),l(3,u)}function Oi(){u.i.r.g=he(this.value),l(3,u)}function Ri(){u.i.r.b=he(this.value),l(3,u)}function Li(){u.i.t.d=he(this.value),l(3,u)}function dl(){u.i.t.a=he(this.value),l(3,u)}function Fi(){u.i.v.p=he(this.value),l(3,u)}function qi(){u.i.v.d.v=he(this.value),l(3,u)}function Bi(){u.i.v.d.g=he(this.value),l(3,u)}function Nt(){u.i.v.o=he(this.value),l(3,u)}function Tl(){u.i.v.m=he(this.value),l(3,u)}function Nl(){u.i.v.b=he(this.value),l(3,u)}function Al(){u.d.s=this.checked,l(3,u)}function Ui(){u.d.t=this.checked,l(3,u)}function ji(){u.d.l=dt(this),l(3,u)}return t.$$set=ke=>{"sysinfo"in ke&&l(0,n=ke.sysinfo)},t.$$.update=()=>{t.$$.dirty[0]&1&&l(6,T=n.chip=="esp8266"?16:n.chip=="esp32s2"?44:39)},[n,o,a,u,c,f,T,i,p,_,b,v,d,k,A,S,E,B,P,R,L,F,x,j,z,G,V,W,U,K,H,Y,Z,re,ue,we,me,Te,je,Oe,He,ye,Ne,Re,$e,y,g,w,N,I,Q,J,se,ce,ve,Se,oe,pe,Be,_e,Ce,vt,Hl,tl,ct,Sl,pl,jt,ht,Ye,Qe,Xe,Ue,Ze,We,Je,xe,de,Me,Ii,_l,vn,Tt,Oi,Ri,Li,dl,Fi,qi,Bi,Nt,Tl,Nl,Al,Ui,ji]}class Pp extends Ee{constructor(e){super(),Pe(this,e,Ap,Tp,Ae,{sysinfo:0},null,[-1,-1,-1,-1])}}function Ff(t,e,l){const n=t.slice();return n[20]=e[l],n}function Ep(t){let e=be(t[1].chip,t[1].board)+"",l;return{c(){l=$(e)},m(n,i){M(n,l,i)},p(n,i){i&2&&e!==(e=be(n[1].chip,n[1].board)+"")&&X(l,e)},d(n){n&&C(l)}}}function qf(t){let e,l,n=t[1].apmac+"",i,o,a,u,c,f,p,_,b,v=lu(t[1])+"",d,k,A=t[1].boot_reason+"",T,S,E=t[1].ex_cause+"",B,P,R;const L=[Ip,Dp],F=[];function x(j,z){return j[0].u>0?0:1}return c=x(t),f=F[c]=L[c](t),{c(){e=m("div"),l=$("AP MAC: "),i=$(n),o=h(),a=m("div"),u=$(`Last boot: + `),f.c(),p=h(),_=m("div"),b=$("Reason: "),d=$(v),k=$(" ("),T=$(A),S=$("/"),B=$(E),P=$(")"),r(e,"class","my-2"),r(a,"class","my-2"),r(_,"class","my-2")},m(j,z){M(j,e,z),s(e,l),s(e,i),M(j,o,z),M(j,a,z),s(a,u),F[c].m(a,null),M(j,p,z),M(j,_,z),s(_,b),s(_,d),s(_,k),s(_,T),s(_,S),s(_,B),s(_,P),R=!0},p(j,z){(!R||z&2)&&n!==(n=j[1].apmac+"")&&X(i,n);let G=c;c=x(j),c===G?F[c].p(j,z):(De(),q(F[G],1,1,()=>{F[G]=null}),Ie(),f=F[c],f?f.p(j,z):(f=F[c]=L[c](j),f.c()),D(f,1),f.m(a,null)),(!R||z&2)&&v!==(v=lu(j[1])+"")&&X(d,v),(!R||z&2)&&A!==(A=j[1].boot_reason+"")&&X(T,A),(!R||z&2)&&E!==(E=j[1].ex_cause+"")&&X(B,E)},i(j){R||(D(f),R=!0)},o(j){q(f),R=!1},d(j){j&&C(e),j&&C(o),j&&C(a),F[c].d(),j&&C(p),j&&C(_)}}}function Dp(t){let e;return{c(){e=$("-")},m(l,n){M(l,e,n)},p:fe,i:fe,o:fe,d(l){l&&C(e)}}}function Ip(t){let e,l;return e=new Xc({props:{timestamp:new Date(new Date().getTime()-t[0].u*1e3),fullTimeColor:""}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p(n,i){const o={};i&1&&(o.timestamp=new Date(new Date().getTime()-n[0].u*1e3)),e.$set(o)},i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function Op(t){let e;return{c(){e=m("span"),e.textContent="Update consents",r(e,"class","btn-pri-sm")},m(l,n){M(l,e,n)},p:fe,d(l){l&&C(e)}}}function Bf(t){let e,l,n,i,o,a=Ns(t[1].meter.mfg)+"",u,c,f,p,_=(t[1].meter.model?t[1].meter.model:"unknown")+"",b,v,d,k,A=(t[1].meter.id?t[1].meter.id:"unknown")+"",T;return{c(){e=m("div"),l=m("strong"),l.textContent="Meter",n=h(),i=m("div"),o=$("Manufacturer: "),u=$(a),c=h(),f=m("div"),p=$("Model: "),b=$(_),v=h(),d=m("div"),k=$("ID: "),T=$(A),r(l,"class","text-sm"),r(i,"class","my-2"),r(f,"class","my-2"),r(d,"class","my-2"),r(e,"class","cnt")},m(S,E){M(S,e,E),s(e,l),s(e,n),s(e,i),s(i,o),s(i,u),s(e,c),s(e,f),s(f,p),s(f,b),s(e,v),s(e,d),s(d,k),s(d,T)},p(S,E){E&2&&a!==(a=Ns(S[1].meter.mfg)+"")&&X(u,a),E&2&&_!==(_=(S[1].meter.model?S[1].meter.model:"unknown")+"")&&X(b,_),E&2&&A!==(A=(S[1].meter.id?S[1].meter.id:"unknown")+"")&&X(T,A)},d(S){S&&C(e)}}}function Uf(t){let e,l,n,i,o,a=t[1].net.ip+"",u,c,f,p,_=t[1].net.mask+"",b,v,d,k,A=t[1].net.gw+"",T,S,E,B,P=t[1].net.dns1+"",R,L,F=t[1].net.dns2&&jf(t);return{c(){e=m("div"),l=m("strong"),l.textContent="Network",n=h(),i=m("div"),o=$("IP: "),u=$(a),c=h(),f=m("div"),p=$("Mask: "),b=$(_),v=h(),d=m("div"),k=$("Gateway: "),T=$(A),S=h(),E=m("div"),B=$("DNS: "),R=$(P),L=h(),F&&F.c(),r(l,"class","text-sm"),r(i,"class","my-2"),r(f,"class","my-2"),r(d,"class","my-2"),r(E,"class","my-2"),r(e,"class","cnt")},m(x,j){M(x,e,j),s(e,l),s(e,n),s(e,i),s(i,o),s(i,u),s(e,c),s(e,f),s(f,p),s(f,b),s(e,v),s(e,d),s(d,k),s(d,T),s(e,S),s(e,E),s(E,B),s(E,R),s(E,L),F&&F.m(E,null)},p(x,j){j&2&&a!==(a=x[1].net.ip+"")&&X(u,a),j&2&&_!==(_=x[1].net.mask+"")&&X(b,_),j&2&&A!==(A=x[1].net.gw+"")&&X(T,A),j&2&&P!==(P=x[1].net.dns1+"")&&X(R,P),x[1].net.dns2?F?F.p(x,j):(F=jf(x),F.c(),F.m(E,null)):F&&(F.d(1),F=null)},d(x){x&&C(e),F&&F.d()}}}function jf(t){let e,l=t[1].net.dns2+"",n;return{c(){e=$("/ "),n=$(l)},m(i,o){M(i,e,o),M(i,n,o)},p(i,o){o&2&&l!==(l=i[1].net.dns2+"")&&X(n,l)},d(i){i&&C(e),i&&C(n)}}}function Hf(t){let e,l,n,i=t[1].upgrade.t+"",o,a,u=t[1].version+"",c,f,p=t[1].upgrade.x+"",_,b,v=t[1].upgrade.e+"",d,k;return{c(){e=m("div"),l=m("div"),n=$("Previous upgrade attempt ("),o=$(i),a=$(") does not match current version ("),c=$(u),f=$(") ["),_=$(p),b=$("/"),d=$(v),k=$("]"),r(l,"class","bd-yellow"),r(e,"class","my-2")},m(A,T){M(A,e,T),s(e,l),s(l,n),s(l,o),s(l,a),s(l,c),s(l,f),s(l,_),s(l,b),s(l,d),s(l,k)},p(A,T){T&2&&i!==(i=A[1].upgrade.t+"")&&X(o,i),T&2&&u!==(u=A[1].version+"")&&X(c,u),T&2&&p!==(p=A[1].upgrade.x+"")&&X(_,p),T&2&&v!==(v=A[1].upgrade.e+"")&&X(d,v)},d(A){A&&C(e)}}}function Wf(t){let e,l,n,i=t[2].tag_name+"",o,a,u,c,f,p,_=(t[1].security==0||t[0].a)&&t[1].fwconsent===1&&t[2]&&t[2].tag_name!=t[1].version&&zf(t),b=t[1].fwconsent===2&&Gf();return{c(){e=m("div"),l=$(`Latest version: + `),n=m("a"),o=$(i),u=h(),_&&_.c(),c=h(),b&&b.c(),f=Ge(),r(n,"href",a=t[2].html_url),r(n,"class","ml-2 text-blue-600 hover:text-blue-800"),r(n,"target","_blank"),r(n,"rel","noreferrer"),r(e,"class","my-2 flex")},m(v,d){M(v,e,d),s(e,l),s(e,n),s(n,o),s(e,u),_&&_.m(e,null),M(v,c,d),b&&b.m(v,d),M(v,f,d),p=!0},p(v,d){(!p||d&4)&&i!==(i=v[2].tag_name+"")&&X(o,i),(!p||d&4&&a!==(a=v[2].html_url))&&r(n,"href",a),(v[1].security==0||v[0].a)&&v[1].fwconsent===1&&v[2]&&v[2].tag_name!=v[1].version?_?(_.p(v,d),d&7&&D(_,1)):(_=zf(v),_.c(),D(_,1),_.m(e,null)):_&&(De(),q(_,1,1,()=>{_=null}),Ie()),v[1].fwconsent===2?b||(b=Gf(),b.c(),b.m(f.parentNode,f)):b&&(b.d(1),b=null)},i(v){p||(D(_),p=!0)},o(v){q(_),p=!1},d(v){v&&C(e),_&&_.d(),v&&C(c),b&&b.d(v),v&&C(f)}}}function zf(t){let e,l,n,i,o,a;return n=new Zc({}),{c(){e=m("div"),l=m("button"),ie(n.$$.fragment),r(e,"class","flex-none ml-2 text-green-500"),r(e,"title","Install this version")},m(u,c){M(u,e,c),s(e,l),le(n,l,null),i=!0,o||(a=ee(l,"click",t[10]),o=!0)},p:fe,i(u){i||(D(n.$$.fragment,u),i=!0)},o(u){q(n.$$.fragment,u),i=!1},d(u){u&&C(e),ne(n),o=!1,a()}}}function Gf(t){let e;return{c(){e=m("div"),e.innerHTML='
You have disabled one-click firmware upgrade, link to self-upgrade is disabled
',r(e,"class","my-2")},m(l,n){M(l,e,n)},d(l){l&&C(e)}}}function Vf(t){let e,l=As(be(t[1].chip,t[1].board))+"",n;return{c(){e=m("div"),n=$(l),r(e,"class","bd-red")},m(i,o){M(i,e,o),s(e,n)},p(i,o){o&2&&l!==(l=As(be(i[1].chip,i[1].board))+"")&&X(n,l)},d(i){i&&C(e)}}}function Kf(t){let e,l,n,i,o,a;function u(p,_){return p[4].length==0?Lp:Rp}let c=u(t),f=c(t);return{c(){e=m("div"),l=m("form"),n=m("input"),i=h(),f.c(),ac(n,"display","none"),r(n,"name","file"),r(n,"type","file"),r(n,"accept",".bin"),r(l,"action","/firmware"),r(l,"enctype","multipart/form-data"),r(l,"method","post"),r(l,"autocomplete","off"),r(e,"class","my-2 flex")},m(p,_){M(p,e,_),s(e,l),s(l,n),t[12](n),s(l,i),f.m(l,null),o||(a=[ee(n,"change",t[13]),ee(l,"submit",t[15])],o=!0)},p(p,_){c===(c=u(p))&&f?f.p(p,_):(f.d(1),f=c(p),f&&(f.c(),f.m(l,null)))},d(p){p&&C(e),t[12](null),f.d(),o=!1,ze(a)}}}function Rp(t){let e=t[4][0].name+"",l,n,i;return{c(){l=$(e),n=h(),i=m("button"),i.textContent="Upload",r(i,"type","submit"),r(i,"class","btn-pri-sm float-right")},m(o,a){M(o,l,a),M(o,n,a),M(o,i,a)},p(o,a){a&16&&e!==(e=o[4][0].name+"")&&X(l,e)},d(o){o&&C(l),o&&C(n),o&&C(i)}}}function Lp(t){let e,l,n;return{c(){e=m("button"),e.textContent="Select firmware file for upgrade",r(e,"type","button"),r(e,"class","btn-pri-sm float-right")},m(i,o){M(i,e,o),l||(n=ee(e,"click",t[14]),l=!0)},p:fe,d(i){i&&C(e),l=!1,n()}}}function Yf(t){let e,l,n,i,o,a,u,c,f,p,_,b,v,d,k=t[9],A=[];for(let P=0;P Include Secrets
(SSID, PSK, passwords and tokens)',c=h(),T&&T.c(),f=h(),p=m("form"),_=m("input"),b=h(),B.c(),r(l,"class","text-sm"),r(u,"class","my-1 mx-3 col-span-2"),r(o,"class","grid grid-cols-2"),r(i,"method","get"),r(i,"action","/configfile.cfg"),r(i,"autocomplete","off"),ac(_,"display","none"),r(_,"name","file"),r(_,"type","file"),r(_,"accept",".cfg"),r(p,"action","/configfile"),r(p,"enctype","multipart/form-data"),r(p,"method","post"),r(p,"autocomplete","off"),r(e,"class","cnt")},m(P,R){M(P,e,R),s(e,l),s(e,n),s(e,i),s(i,o);for(let L=0;L{N=null}),Ie());const _e={};pe&8388608&&(_e.$$scope={dirty:pe,ctx:oe}),x.$set(_e),oe[1].meter?I?I.p(oe,pe):(I=Bf(oe),I.c(),I.m(e,V)):I&&(I.d(1),I=null),oe[1].net?Q?Q.p(oe,pe):(Q=Uf(oe),Q.c(),Q.m(e,W)):Q&&(Q.d(1),Q=null),(!y||pe&2)&&re!==(re=oe[1].version+"")&&X(ue,re),oe[1].upgrade.t&&oe[1].upgrade.t!=oe[1].version?J?J.p(oe,pe):(J=Hf(oe),J.c(),J.m(U,me)):J&&(J.d(1),J=null),oe[2]?se?(se.p(oe,pe),pe&4&&D(se,1)):(se=Wf(oe),se.c(),D(se,1),se.m(U,Te)):se&&(De(),q(se,1,1,()=>{se=null}),Ie()),pe&3&&(je=(oe[1].security==0||oe[0].a)&&ui(oe[1].board)),je?ce?ce.p(oe,pe):(ce=Vf(oe),ce.c(),ce.m(U,Oe)):ce&&(ce.d(1),ce=null),oe[1].security==0||oe[0].a?ve?ve.p(oe,pe):(ve=Kf(oe),ve.c(),ve.m(U,null)):ve&&(ve.d(1),ve=null),oe[1].security==0||oe[0].a?Se?Se.p(oe,pe):(Se=Yf(oe),Se.c(),Se.m(e,null)):Se&&(Se.d(1),Se=null);const Ce={};pe&32&&(Ce.active=oe[5]),Ne.$set(Ce);const vt={};pe&256&&(vt.active=oe[8]),$e.$set(vt)},i(oe){y||(D(A.$$.fragment,oe),D(N),D(x.$$.fragment,oe),D(se),D(Ne.$$.fragment,oe),D($e.$$.fragment,oe),y=!0)},o(oe){q(A.$$.fragment,oe),q(N),q(x.$$.fragment,oe),q(se),q(Ne.$$.fragment,oe),q($e.$$.fragment,oe),y=!1},d(oe){oe&&C(e),ne(A),N&&N.d(),ne(x),I&&I.d(),Q&&Q.d(),J&&J.d(),se&&se.d(),ce&&ce.d(),ve&&ve.d(),Se&&Se.d(),oe&&C(ye),ne(Ne,oe),oe&&C(Re),ne($e,oe),g=!1,w()}}}async function Up(){await(await fetch("/reboot",{method:"POST"})).json()}function jp(t,e,l){let{data:n}=e,{sysinfo:i}=e,o=[{name:"WiFi",key:"iw"},{name:"MQTT",key:"im"},{name:"Web",key:"ie"},{name:"Meter",key:"it"},{name:"Thresholds",key:"ih"},{name:"GPIO",key:"ig"},{name:"NTP",key:"in"},{name:"Price API",key:"is"}],a={};Po.subscribe(L=>{l(2,a=Qc(i.version,L)),a||l(2,a=L[0])});function u(){confirm("Do you want to upgrade this device to "+a.tag_name+"?")&&(i.board!=2&&i.board!=4&&i.board!=7||confirm(As(be(i.chip,i.board))))&&(Ut.update(L=>(L.upgrading=!0,L)),Yc(a.tag_name))}const c=function(){confirm("Are you sure you want to reboot the device?")&&(Ut.update(L=>(L.booting=!0,L)),Up())};let f,p=[],_=!1,b,v=[],d=!1;So();function k(L){Ss[L?"unshift":"push"](()=>{f=L,l(3,f)})}function A(){p=this.files,l(4,p)}const T=()=>{f.click()},S=()=>l(5,_=!0);function E(L){Ss[L?"unshift":"push"](()=>{b=L,l(6,b)})}function B(){v=this.files,l(7,v)}const P=()=>{b.click()},R=()=>l(8,d=!0);return t.$$set=L=>{"data"in L&&l(0,n=L.data),"sysinfo"in L&&l(1,i=L.sysinfo)},[n,i,a,f,p,_,b,v,d,o,u,c,k,A,T,S,E,B,P,R]}class Hp extends Ee{constructor(e){super(),Pe(this,e,jp,Bp,Ae,{data:0,sysinfo:1})}}function Zf(t){let e,l,n=be(t[0],7)+"",i,o,a=be(t[0],5)+"",u,c,f=be(t[0],4)+"",p,_,b=be(t[0],3)+"",v,d,k,A,T=be(t[0],2)+"",S,E,B=be(t[0],1)+"",P,R,L=be(t[0],0)+"",F,x,j,z,G=be(t[0],101)+"",V,W,U=be(t[0],100)+"",K;return{c(){e=m("optgroup"),l=m("option"),i=$(n),o=m("option"),u=$(a),c=m("option"),p=$(f),_=m("option"),v=$(b),d=h(),k=m("optgroup"),A=m("option"),S=$(T),E=m("option"),P=$(B),R=m("option"),F=$(L),x=h(),j=m("optgroup"),z=m("option"),V=$(G),W=m("option"),K=$(U),l.__value=7,l.value=l.__value,o.__value=5,o.value=o.__value,c.__value=4,c.value=c.__value,_.__value=3,_.value=_.__value,r(e,"label","amsleser.no"),A.__value=2,A.value=A.__value,E.__value=1,E.value=E.__value,R.__value=0,R.value=R.__value,r(k,"label","Custom hardware"),z.__value=101,z.value=z.__value,W.__value=100,W.value=W.__value,r(j,"label","Generic hardware")},m(H,Y){M(H,e,Y),s(e,l),s(l,i),s(e,o),s(o,u),s(e,c),s(c,p),s(e,_),s(_,v),M(H,d,Y),M(H,k,Y),s(k,A),s(A,S),s(k,E),s(E,P),s(k,R),s(R,F),M(H,x,Y),M(H,j,Y),s(j,z),s(z,V),s(j,W),s(W,K)},p(H,Y){Y&1&&n!==(n=be(H[0],7)+"")&&X(i,n),Y&1&&a!==(a=be(H[0],5)+"")&&X(u,a),Y&1&&f!==(f=be(H[0],4)+"")&&X(p,f),Y&1&&b!==(b=be(H[0],3)+"")&&X(v,b),Y&1&&T!==(T=be(H[0],2)+"")&&X(S,T),Y&1&&B!==(B=be(H[0],1)+"")&&X(P,B),Y&1&&L!==(L=be(H[0],0)+"")&&X(F,L),Y&1&&G!==(G=be(H[0],101)+"")&&X(V,G),Y&1&&U!==(U=be(H[0],100)+"")&&X(K,U)},d(H){H&&C(e),H&&C(d),H&&C(k),H&&C(x),H&&C(j)}}}function Jf(t){let e,l,n=be(t[0],201)+"",i,o,a=be(t[0],202)+"",u,c,f=be(t[0],203)+"",p,_,b=be(t[0],200)+"",v;return{c(){e=m("optgroup"),l=m("option"),i=$(n),o=m("option"),u=$(a),c=m("option"),p=$(f),_=m("option"),v=$(b),l.__value=201,l.value=l.__value,o.__value=202,o.value=o.__value,c.__value=203,c.value=c.__value,_.__value=200,_.value=_.__value,r(e,"label","Generic hardware")},m(d,k){M(d,e,k),s(e,l),s(l,i),s(e,o),s(o,u),s(e,c),s(c,p),s(e,_),s(_,v)},p(d,k){k&1&&n!==(n=be(d[0],201)+"")&&X(i,n),k&1&&a!==(a=be(d[0],202)+"")&&X(u,a),k&1&&f!==(f=be(d[0],203)+"")&&X(p,f),k&1&&b!==(b=be(d[0],200)+"")&&X(v,b)},d(d){d&&C(e)}}}function xf(t){let e,l,n=be(t[0],7)+"",i,o,a=be(t[0],6)+"",u,c,f=be(t[0],5)+"",p,_,b,v,d=be(t[0],51)+"",k,A,T=be(t[0],50)+"",S;return{c(){e=m("optgroup"),l=m("option"),i=$(n),o=m("option"),u=$(a),c=m("option"),p=$(f),_=h(),b=m("optgroup"),v=m("option"),k=$(d),A=m("option"),S=$(T),l.__value=7,l.value=l.__value,o.__value=6,o.value=o.__value,c.__value=5,c.value=c.__value,r(e,"label","amsleser.no"),v.__value=51,v.value=v.__value,A.__value=50,A.value=A.__value,r(b,"label","Generic hardware")},m(E,B){M(E,e,B),s(e,l),s(l,i),s(e,o),s(o,u),s(e,c),s(c,p),M(E,_,B),M(E,b,B),s(b,v),s(v,k),s(b,A),s(A,S)},p(E,B){B&1&&n!==(n=be(E[0],7)+"")&&X(i,n),B&1&&a!==(a=be(E[0],6)+"")&&X(u,a),B&1&&f!==(f=be(E[0],5)+"")&&X(p,f),B&1&&d!==(d=be(E[0],51)+"")&&X(k,d),B&1&&T!==(T=be(E[0],50)+"")&&X(S,T)},d(E){E&&C(e),E&&C(_),E&&C(b)}}}function ec(t){let e,l,n=be(t[0],8)+"",i,o,a,u,c=be(t[0],71)+"",f,p,_=be(t[0],70)+"",b;return{c(){e=m("optgroup"),l=m("option"),i=$(n),o=h(),a=m("optgroup"),u=m("option"),f=$(c),p=m("option"),b=$(_),l.__value=8,l.value=l.__value,r(e,"label","Custom hardware"),u.__value=71,u.value=u.__value,p.__value=70,p.value=p.__value,r(a,"label","Generic hardware")},m(v,d){M(v,e,d),s(e,l),s(l,i),M(v,o,d),M(v,a,d),s(a,u),s(u,f),s(a,p),s(p,b)},p(v,d){d&1&&n!==(n=be(v[0],8)+"")&&X(i,n),d&1&&c!==(c=be(v[0],71)+"")&&X(f,c),d&1&&_!==(_=be(v[0],70)+"")&&X(b,_)},d(v){v&&C(e),v&&C(o),v&&C(a)}}}function tc(t){let e,l,n=be(t[0],200)+"",i;return{c(){e=m("optgroup"),l=m("option"),i=$(n),l.__value=200,l.value=l.__value,r(e,"label","Generic hardware")},m(o,a){M(o,e,a),s(e,l),s(l,i)},p(o,a){a&1&&n!==(n=be(o[0],200)+"")&&X(i,n)},d(o){o&&C(e)}}}function Wp(t){let e,l,n,i,o,a,u,c=t[0]=="esp8266"&&Zf(t),f=t[0]=="esp32"&&Jf(t),p=t[0]=="esp32s2"&&xf(t),_=t[0]=="esp32c3"&&ec(t),b=t[0]=="esp32solo"&&tc(t);return{c(){e=m("option"),l=h(),c&&c.c(),n=h(),f&&f.c(),i=h(),p&&p.c(),o=h(),_&&_.c(),a=h(),b&&b.c(),u=Ge(),e.__value=-1,e.value=e.__value},m(v,d){M(v,e,d),M(v,l,d),c&&c.m(v,d),M(v,n,d),f&&f.m(v,d),M(v,i,d),p&&p.m(v,d),M(v,o,d),_&&_.m(v,d),M(v,a,d),b&&b.m(v,d),M(v,u,d)},p(v,[d]){v[0]=="esp8266"?c?c.p(v,d):(c=Zf(v),c.c(),c.m(n.parentNode,n)):c&&(c.d(1),c=null),v[0]=="esp32"?f?f.p(v,d):(f=Jf(v),f.c(),f.m(i.parentNode,i)):f&&(f.d(1),f=null),v[0]=="esp32s2"?p?p.p(v,d):(p=xf(v),p.c(),p.m(o.parentNode,o)):p&&(p.d(1),p=null),v[0]=="esp32c3"?_?_.p(v,d):(_=ec(v),_.c(),_.m(a.parentNode,a)):_&&(_.d(1),_=null),v[0]=="esp32solo"?b?b.p(v,d):(b=tc(v),b.c(),b.m(u.parentNode,u)):b&&(b.d(1),b=null)},i:fe,o:fe,d(v){v&&C(e),v&&C(l),c&&c.d(v),v&&C(n),f&&f.d(v),v&&C(i),p&&p.d(v),v&&C(o),_&&_.d(v),v&&C(a),b&&b.d(v),v&&C(u)}}}function zp(t,e,l){let{chip:n}=e;return t.$$set=i=>{"chip"in i&&l(0,n=i.chip)},[n]}class Gp extends Ee{constructor(e){super(),Pe(this,e,zp,Wp,Ae,{chip:0})}}function lc(t){let e;return{c(){e=m("div"),e.textContent="WARNING: Changing this configuration will affect basic configuration of your device. Only make changes here if instructed by vendor",r(e,"class","bd-red")},m(l,n){M(l,e,n)},d(l){l&&C(e)}}}function nc(t){let e,l,n,i,o,a,u;return a=new xc({props:{chip:t[0].chip}}),{c(){e=m("div"),l=$("HAN GPIO"),n=m("br"),i=h(),o=m("select"),ie(a.$$.fragment),r(o,"name","vh"),r(o,"class","in-s"),r(e,"class","my-3")},m(c,f){M(c,e,f),s(e,l),s(e,n),s(e,i),s(e,o),le(a,o,null),u=!0},p(c,f){const p={};f&1&&(p.chip=c[0].chip),a.$set(p)},i(c){u||(D(a.$$.fragment,c),u=!0)},o(c){q(a.$$.fragment,c),u=!1},d(c){c&&C(e),ne(a)}}}function Vp(t){let e,l,n,i,o,a,u,c,f,p,_,b,v,d,k,A,T,S,E,B,P,R,L,F,x,j,z,G,V,W=t[0].usrcfg&&lc();d=new Gp({props:{chip:t[0].chip}});let U=t[0].board&&t[0].board>20&&nc(t);return j=new It({props:{active:t[1],message:"Saving device configuration"}}),{c(){e=m("div"),l=m("div"),n=m("form"),i=m("input"),o=h(),a=m("strong"),a.textContent="Initial configuration",u=h(),W&&W.c(),c=h(),f=m("div"),p=$("Board type"),_=m("br"),b=h(),v=m("select"),ie(d.$$.fragment),k=h(),U&&U.c(),A=h(),T=m("div"),S=m("label"),E=m("input"),B=$(" Clear all other configuration"),P=h(),R=m("div"),R.innerHTML='',L=h(),F=m("span"),F.textContent=" ",x=h(),ie(j.$$.fragment),r(i,"type","hidden"),r(i,"name","v"),i.value="true",r(a,"class","text-sm"),r(v,"name","vb"),r(v,"class","in-s"),t[0].board===void 0&&et(()=>t[4].call(v)),r(f,"class","my-3"),r(E,"type","checkbox"),r(E,"name","vr"),E.__value="true",E.value=E.__value,r(E,"class","rounded mb-1"),r(T,"class","my-3"),r(R,"class","my-3"),r(F,"class","clear-both"),r(n,"autocomplete","off"),r(l,"class","cnt"),r(e,"class","grid xl:grid-cols-4 lg:grid-cols-3 md:grid-cols-2")},m(K,H){M(K,e,H),s(e,l),s(l,n),s(n,i),s(n,o),s(n,a),s(n,u),W&&W.m(n,null),s(n,c),s(n,f),s(f,p),s(f,_),s(f,b),s(f,v),le(d,v,null),qe(v,t[0].board,!0),s(n,k),U&&U.m(n,null),s(n,A),s(n,T),s(T,S),s(S,E),E.checked=t[2],s(S,B),s(n,P),s(n,R),s(n,L),s(n,F),M(K,x,H),le(j,K,H),z=!0,G||(V=[ee(v,"change",t[4]),ee(E,"change",t[5]),ee(n,"submit",Ps(t[3]))],G=!0)},p(K,[H]){K[0].usrcfg?W||(W=lc(),W.c(),W.m(n,c)):W&&(W.d(1),W=null);const Y={};H&1&&(Y.chip=K[0].chip),d.$set(Y),H&1&&qe(v,K[0].board),K[0].board&&K[0].board>20?U?(U.p(K,H),H&1&&D(U,1)):(U=nc(K),U.c(),D(U,1),U.m(n,A)):U&&(De(),q(U,1,1,()=>{U=null}),Ie()),H&4&&(E.checked=K[2]);const Z={};H&2&&(Z.active=K[1]),j.$set(Z)},i(K){z||(D(d.$$.fragment,K),D(U),D(j.$$.fragment,K),z=!0)},o(K){q(d.$$.fragment,K),q(U),q(j.$$.fragment,K),z=!1},d(K){K&&C(e),W&&W.d(),ne(d),U&&U.d(),K&&C(x),ne(j,K),G=!1,ze(V)}}}function Kp(t,e,l){let{sysinfo:n={}}=e,i=!1;async function o(f){l(1,i=!0);const p=new FormData(f.target),_=new URLSearchParams;for(let d of p){const[k,A]=d;_.append(k,A)}let v=await(await fetch("/save",{method:"POST",body:_})).json();l(1,i=!1),Ut.update(d=>(d.vndcfg=v.success,d.booting=v.reboot,d)),ai(n.usrcfg?"/":"/setup")}let a=!1;function u(){n.board=dt(this),l(0,n)}function c(){a=this.checked,l(2,a),l(0,n)}return t.$$set=f=>{"sysinfo"in f&&l(0,n=f.sysinfo)},t.$$.update=()=>{t.$$.dirty&1&&l(2,a=!n.usrcfg)},[n,i,a,o,u,c]}class Yp extends Ee{constructor(e){super(),Pe(this,e,Kp,Vp,Ae,{sysinfo:0})}}function ic(t){let e,l,n,i,o,a,u,c;return u=new e0({}),{c(){e=m("br"),l=h(),n=m("div"),i=m("input"),o=h(),a=m("select"),ie(u.$$.fragment),r(i,"name","si"),r(i,"type","text"),r(i,"class","in-f w-full"),i.required=t[1],r(a,"name","su"),r(a,"class","in-l"),a.required=t[1],r(n,"class","flex")},m(f,p){M(f,e,p),M(f,l,p),M(f,n,p),s(n,i),s(n,o),s(n,a),le(u,a,null),c=!0},p(f,p){(!c||p&2)&&(i.required=f[1]),(!c||p&2)&&(a.required=f[1])},i(f){c||(D(u.$$.fragment,f),c=!0)},o(f){q(u.$$.fragment,f),c=!1},d(f){f&&C(e),f&&C(l),f&&C(n),ne(u)}}}function sc(t){let e;return{c(){e=m("div"),e.innerHTML=`
Gateway
DNS
-
`,r(e,"class","my-3 flex")},m(l,n){M(l,e,n)},d(l){l&&C(e)}}}function Kp(t){let e,l,n,i,o,a,u,c,f,p,_,b,v,d,k,A,S,T,E,B,P,R,L,F,x,j,z,G,V=t[1]&&lc(t),W=t[1]&&nc();return x=new Dt({props:{active:t[2],message:"Saving your configuration to the device"}}),{c(){e=m("div"),l=m("div"),n=m("form"),i=m("input"),o=h(),a=m("strong"),a.textContent="Setup",u=h(),c=m("div"),c.innerHTML=`SSID
+
`,r(e,"class","my-3 flex")},m(l,n){M(l,e,n)},d(l){l&&C(e)}}}function Qp(t){let e,l,n,i,o,a,u,c,f,p,_,b,v,d,k,A,T,S,E,B,P,R,L,F,x,j,z,G,V=t[1]&&ic(t),W=t[1]&&sc();return x=new It({props:{active:t[2],message:"Saving your configuration to the device"}}),{c(){e=m("div"),l=m("div"),n=m("form"),i=m("input"),o=h(),a=m("strong"),a.textContent="Setup",u=h(),c=m("div"),c.innerHTML=`SSID
`,f=h(),p=m("div"),p.innerHTML=`PSK
`,_=h(),b=m("div"),v=$(`Hostname - `),d=m("input"),k=h(),A=m("div"),S=m("label"),T=m("input"),E=$(" Static IP"),B=h(),V&&V.c(),P=h(),W&&W.c(),R=h(),L=m("div"),L.innerHTML='',F=h(),ie(x.$$.fragment),r(i,"type","hidden"),r(i,"name","s"),i.value="true",r(a,"class","text-sm"),r(c,"class","my-3"),r(p,"class","my-3"),r(d,"name","sh"),r(d,"type","text"),r(d,"class","in-s"),r(d,"maxlength","32"),r(d,"pattern","[a-z0-9_-]+"),r(d,"placeholder","Optional, ex.: ams-reader"),r(d,"autocomplete","off"),r(T,"type","checkbox"),r(T,"name","sm"),T.__value="static",T.value=T.__value,r(T,"class","rounded mb-1"),r(A,"class","my-3"),r(L,"class","my-3"),r(l,"class","cnt"),r(e,"class","grid xl:grid-cols-4 lg:grid-cols-3 md:grid-cols-2")},m(U,K){M(U,e,K),s(e,l),s(l,n),s(n,i),s(n,o),s(n,a),s(n,u),s(n,c),s(n,f),s(n,p),s(n,_),s(n,b),s(b,v),s(b,d),te(d,t[0].hostname),s(n,k),s(n,A),s(A,S),s(S,T),T.checked=t[1],s(S,E),s(A,B),V&&V.m(A,null),s(n,P),W&&W.m(n,null),s(n,R),s(n,L),M(U,F,K),le(x,U,K),j=!0,z||(G=[ee(d,"input",t[4]),ee(T,"change",t[5]),ee(n,"submit",As(t[3]))],z=!0)},p(U,[K]){K&1&&d.value!==U[0].hostname&&te(d,U[0].hostname),K&2&&(T.checked=U[1]),U[1]?V?(V.p(U,K),K&2&&D(V,1)):(V=lc(U),V.c(),D(V,1),V.m(A,null)):V&&(De(),q(V,1,1,()=>{V=null}),Ie()),U[1]?W||(W=nc(),W.c(),W.m(n,R)):W&&(W.d(1),W=null);const H={};K&4&&(H.active=U[2]),x.$set(H)},i(U){j||(D(V),D(x.$$.fragment,U),j=!0)},o(U){q(V),q(x.$$.fragment,U),j=!1},d(U){U&&C(e),V&&V.d(),W&&W.d(),U&&C(F),ne(x,U),z=!1,ze(G)}}}function Yp(t,e,l){let{sysinfo:n={}}=e,i=!1,o=!1,a=0;function u(){var _="";a++;var b=function(){setTimeout(u,1e3)};if(n.net.ip&&a%3==0){if(!n.net.ip){b();return}_="http://"+n.net.ip}else n.hostname&&a%3==1?_="http://"+n.hostname:n.hostname&&a%3==2?_="http://"+n.hostname+".local":_="";console&&console.log("Trying url "+_),Bt.update(d=>(d.trying=_,d));var v=new XMLHttpRequest;v.timeout=5e3,v.addEventListener("abort",b),v.addEventListener("error",b),v.addEventListener("timeout",b),v.addEventListener("load",function(d){window.location.href=_||"/"}),v.open("GET",_+"/is-alive",!0),v.send()}async function c(_){l(2,o=!0);const b=new FormData(_.target),v=new URLSearchParams;for(let A of b){const[S,T]=A;v.append(S,T)}let k=await(await fetch("/save",{method:"POST",body:v})).json();l(2,o=!1),Bt.update(A=>(A.hostname=b.get("sh"),A.usrcfg=k.success,A.booting=k.reboot,i&&(A.net.ip=b.get("si"),A.net.mask=b.get("su"),A.net.gw=b.get("sg"),A.net.dns1=b.get("sd")),setTimeout(u,5e3),A))}function f(){n.hostname=this.value,l(0,n)}function p(){i=this.checked,l(1,i)}return t.$$set=_=>{"sysinfo"in _&&l(0,n=_.sysinfo)},[n,i,o,c,f,p]}class Qp extends Ee{constructor(e){super(),Pe(this,e,Yp,Kp,Ae,{sysinfo:0})}}function Xp(t){let e,l,n,i,o,a,u,c,f,p,_,b,v,d,k,A,S;return d=new Dt({props:{active:t[2],message:"Uploading file, please wait"}}),{c(){e=m("div"),l=m("div"),n=m("strong"),i=$("Upload "),o=$(t[1]),a=h(),u=m("p"),u.textContent="Select a suitable file and click upload",c=h(),f=m("form"),p=m("input"),_=h(),b=m("div"),b.innerHTML='',v=h(),ie(d.$$.fragment),r(u,"class","mb-4"),r(p,"name","file"),r(p,"type","file"),r(b,"class","w-full text-right mt-4"),r(f,"action",t[0]),r(f,"enctype","multipart/form-data"),r(f,"method","post"),r(f,"autocomplete","off"),r(l,"class","cnt"),r(e,"class","grid xl:grid-cols-4 lg:grid-cols-2 md:grid-cols-2")},m(T,E){M(T,e,E),s(e,l),s(l,n),s(n,i),s(n,o),s(l,a),s(l,u),s(l,c),s(l,f),s(f,p),s(f,_),s(f,b),M(T,v,E),le(d,T,E),k=!0,A||(S=ee(f,"submit",t[3]),A=!0)},p(T,[E]){(!k||E&2)&&Z(o,T[1]),(!k||E&1)&&r(f,"action",T[0]);const B={};E&4&&(B.active=T[2]),d.$set(B)},i(T){k||(D(d.$$.fragment,T),k=!0)},o(T){q(d.$$.fragment,T),k=!1},d(T){T&&C(e),T&&C(v),ne(d,T),A=!1,S()}}}function Zp(t,e,l){let{action:n}=e,{title:i}=e,o=!1;const a=()=>l(2,o=!0);return t.$$set=u=>{"action"in u&&l(0,n=u.action),"title"in u&&l(1,i=u.title)},[n,i,o,a]}class Eo extends Ee{constructor(e){super(),Pe(this,e,Zp,Xp,Ae,{action:0,title:1})}}function Jp(t){let e,l,n,i,o,a,u,c,f,p,_,b,v,d,k,A,S,T,E,B,P,R,L,F,x,j,z,G,V,W,U;return G=new Dt({props:{active:t[1],message:"Saving preferences"}}),{c(){e=m("div"),l=m("div"),n=m("form"),i=m("div"),i.textContent="Various permissions we need to do stuff:",o=h(),a=m("hr"),u=h(),c=m("div"),f=$("Enable one-click upgrade? (implies data collection)"),p=m("br"),_=h(),b=m("a"),v=$("Read more"),d=m("br"),k=h(),A=m("label"),S=m("input"),E=$(" Yes"),B=m("label"),P=m("input"),L=$(" No"),F=m("br"),x=h(),j=m("div"),j.innerHTML='',z=h(),ie(G.$$.fragment),r(b,"href",qt("Data-collection-on-one-click-firmware-upgrade")),r(b,"target","_blank"),r(b,"class","text-blue-600 hover:text-blue-800"),r(S,"type","radio"),r(S,"name","sf"),S.value=1,S.checked=T=t[0].fwconsent===1,r(S,"class","rounded m-2"),S.required=!0,r(P,"type","radio"),r(P,"name","sf"),P.value=2,P.checked=R=t[0].fwconsent===2,r(P,"class","rounded m-2"),P.required=!0,r(c,"class","my-3"),r(j,"class","my-3"),r(n,"autocomplete","off"),r(l,"class","cnt"),r(e,"class","grid xl:grid-cols-3 lg:grid-cols-2")},m(K,H){M(K,e,H),s(e,l),s(l,n),s(n,i),s(n,o),s(n,a),s(n,u),s(n,c),s(c,f),s(c,p),s(c,_),s(c,b),s(b,v),s(c,d),s(c,k),s(c,A),s(A,S),s(A,E),s(c,B),s(B,P),s(B,L),s(c,F),s(n,x),s(n,j),M(K,z,H),le(G,K,H),V=!0,W||(U=ee(n,"submit",As(t[2])),W=!0)},p(K,[H]){(!V||H&1&&T!==(T=K[0].fwconsent===1))&&(S.checked=T),(!V||H&1&&R!==(R=K[0].fwconsent===2))&&(P.checked=R);const Y={};H&2&&(Y.active=K[1]),G.$set(Y)},i(K){V||(D(G.$$.fragment,K),V=!0)},o(K){q(G.$$.fragment,K),V=!1},d(K){K&&C(e),K&&C(z),ne(G,K),W=!1,U()}}}function xp(t,e,l){let{sysinfo:n={}}=e,i=!1;async function o(a){l(1,i=!0);const u=new FormData(a.target),c=new URLSearchParams;for(let _ of u){const[b,v]=_;c.append(b,v)}let p=await(await fetch("/save",{method:"POST",body:c})).json();l(1,i=!1),Bt.update(_=>(_.fwconsent=u.sf===!0?1:u.sf===!1?2:0,_.booting=p.reboot,_)),ai("/")}return t.$$set=a=>{"sysinfo"in a&&l(0,n=a.sysinfo)},[n,i,o]}class e_ extends Ee{constructor(e){super(),Pe(this,e,xp,Jp,Ae,{sysinfo:0})}}function t_(t){let e,l;return e=new Wm({props:{data:t[1],sysinfo:t[0]}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p(n,i){const o={};i&2&&(o.data=n[1]),i&1&&(o.sysinfo=n[0]),e.$set(o)},i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function l_(t){let e,l;return e=new Np({props:{sysinfo:t[0]}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p(n,i){const o={};i&1&&(o.sysinfo=n[0]),e.$set(o)},i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function n_(t){let e,l;return e=new Up({props:{sysinfo:t[0],data:t[1]}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p(n,i){const o={};i&1&&(o.sysinfo=n[0]),i&2&&(o.data=n[1]),e.$set(o)},i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function i_(t){let e,l;return e=new Eo({props:{title:"CA",action:"/mqtt-ca"}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p:fe,i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function s_(t){let e,l;return e=new Eo({props:{title:"certificate",action:"/mqtt-cert"}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p:fe,i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function o_(t){let e,l;return e=new Eo({props:{title:"private key",action:"/mqtt-key"}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p:fe,i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function r_(t){let e,l;return e=new e_({props:{sysinfo:t[0]}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p(n,i){const o={};i&1&&(o.sysinfo=n[0]),e.$set(o)},i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function a_(t){let e,l;return e=new Qp({props:{sysinfo:t[0]}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p(n,i){const o={};i&1&&(o.sysinfo=n[0]),e.$set(o)},i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function u_(t){let e,l;return e=new Vp({props:{sysinfo:t[0]}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p(n,i){const o={};i&1&&(o.sysinfo=n[0]),e.$set(o)},i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function f_(t){let e,l,n,i,o,a,u,c,f,p,_,b,v,d,k,A,S,T,E,B;return e=new nm({props:{data:t[1]}}),n=new Ml({props:{path:"/",$$slots:{default:[t_]},$$scope:{ctx:t}}}),o=new Ml({props:{path:"/configuration",$$slots:{default:[l_]},$$scope:{ctx:t}}}),u=new Ml({props:{path:"/status",$$slots:{default:[n_]},$$scope:{ctx:t}}}),f=new Ml({props:{path:"/mqtt-ca",$$slots:{default:[i_]},$$scope:{ctx:t}}}),_=new Ml({props:{path:"/mqtt-cert",$$slots:{default:[s_]},$$scope:{ctx:t}}}),v=new Ml({props:{path:"/mqtt-key",$$slots:{default:[o_]},$$scope:{ctx:t}}}),k=new Ml({props:{path:"/consent",$$slots:{default:[r_]},$$scope:{ctx:t}}}),S=new Ml({props:{path:"/setup",$$slots:{default:[a_]},$$scope:{ctx:t}}}),E=new Ml({props:{path:"/vendor",$$slots:{default:[u_]},$$scope:{ctx:t}}}),{c(){ie(e.$$.fragment),l=h(),ie(n.$$.fragment),i=h(),ie(o.$$.fragment),a=h(),ie(u.$$.fragment),c=h(),ie(f.$$.fragment),p=h(),ie(_.$$.fragment),b=h(),ie(v.$$.fragment),d=h(),ie(k.$$.fragment),A=h(),ie(S.$$.fragment),T=h(),ie(E.$$.fragment)},m(P,R){le(e,P,R),M(P,l,R),le(n,P,R),M(P,i,R),le(o,P,R),M(P,a,R),le(u,P,R),M(P,c,R),le(f,P,R),M(P,p,R),le(_,P,R),M(P,b,R),le(v,P,R),M(P,d,R),le(k,P,R),M(P,A,R),le(S,P,R),M(P,T,R),le(E,P,R),B=!0},p(P,R){const L={};R&2&&(L.data=P[1]),e.$set(L);const F={};R&7&&(F.$$scope={dirty:R,ctx:P}),n.$set(F);const x={};R&5&&(x.$$scope={dirty:R,ctx:P}),o.$set(x);const j={};R&7&&(j.$$scope={dirty:R,ctx:P}),u.$set(j);const z={};R&4&&(z.$$scope={dirty:R,ctx:P}),f.$set(z);const G={};R&4&&(G.$$scope={dirty:R,ctx:P}),_.$set(G);const V={};R&4&&(V.$$scope={dirty:R,ctx:P}),v.$set(V);const W={};R&5&&(W.$$scope={dirty:R,ctx:P}),k.$set(W);const U={};R&5&&(U.$$scope={dirty:R,ctx:P}),S.$set(U);const K={};R&5&&(K.$$scope={dirty:R,ctx:P}),E.$set(K)},i(P){B||(D(e.$$.fragment,P),D(n.$$.fragment,P),D(o.$$.fragment,P),D(u.$$.fragment,P),D(f.$$.fragment,P),D(_.$$.fragment,P),D(v.$$.fragment,P),D(k.$$.fragment,P),D(S.$$.fragment,P),D(E.$$.fragment,P),B=!0)},o(P){q(e.$$.fragment,P),q(n.$$.fragment,P),q(o.$$.fragment,P),q(u.$$.fragment,P),q(f.$$.fragment,P),q(_.$$.fragment,P),q(v.$$.fragment,P),q(k.$$.fragment,P),q(S.$$.fragment,P),q(E.$$.fragment,P),B=!1},d(P){ne(e,P),P&&C(l),ne(n,P),P&&C(i),ne(o,P),P&&C(a),ne(u,P),P&&C(c),ne(f,P),P&&C(p),ne(_,P),P&&C(b),ne(v,P),P&&C(d),ne(k,P),P&&C(A),ne(S,P),P&&C(T),ne(E,P)}}}function c_(t){let e,l,n,i;const o=[__,p_],a=[];function u(c,f){return c[0].trying?0:1}return e=u(t),l=a[e]=o[e](t),{c(){l.c(),n=Ge()},m(c,f){a[e].m(c,f),M(c,n,f),i=!0},p(c,f){let p=e;e=u(c),e===p?a[e].p(c,f):(De(),q(a[p],1,1,()=>{a[p]=null}),Ie(),l=a[e],l?l.p(c,f):(l=a[e]=o[e](c),l.c()),D(l,1),l.m(n.parentNode,n))},i(c){i||(D(l),i=!0)},o(c){q(l),i=!1},d(c){a[e].d(c),c&&C(n)}}}function m_(t){let e,l;return e=new Dt({props:{active:"true",message:"Device is upgrading, please wait"}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p:fe,i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function p_(t){let e,l;return e=new Dt({props:{active:"true",message:"Device is booting, please wait"}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p:fe,i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function __(t){let e,l;return e=new Dt({props:{active:"true",message:"Device is booting, please wait. Trying to reach it on "+t[0].trying}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p(n,i){const o={};i&1&&(o.message="Device is booting, please wait. Trying to reach it on "+n[0].trying),e.$set(o)},i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function d_(t){let e,l,n,i,o,a;l=new Dc({props:{$$slots:{default:[f_]},$$scope:{ctx:t}}});const u=[m_,c_],c=[];function f(p,_){return p[0].upgrading?0:p[0].booting?1:-1}return~(i=f(t))&&(o=c[i]=u[i](t)),{c(){e=m("div"),ie(l.$$.fragment),n=h(),o&&o.c(),r(e,"class","container mx-auto m-3")},m(p,_){M(p,e,_),le(l,e,null),s(e,n),~i&&c[i].m(e,null),a=!0},p(p,[_]){const b={};_&7&&(b.$$scope={dirty:_,ctx:p}),l.$set(b);let v=i;i=f(p),i===v?~i&&c[i].p(p,_):(o&&(De(),q(c[v],1,1,()=>{c[v]=null}),Ie()),~i?(o=c[i],o?o.p(p,_):(o=c[i]=u[i](p),o.c()),D(o,1),o.m(e,null)):o=null)},i(p){a||(D(l.$$.fragment,p),D(o),a=!0)},o(p){q(l.$$.fragment,p),q(o),a=!1},d(p){p&&C(e),ne(l),~i&&c[i].d()}}}function v_(t,e,l){let n={};Bt.subscribe(o=>{l(0,n=o),n.vndcfg===!1?ai("/vendor"):n.usrcfg===!1?ai("/setup"):n.fwconsent===0&&ai("/consent")}),$o();let i={};return $1.subscribe(o=>{l(1,i=o)}),[n,i]}class h_ extends Ee{constructor(e){super(),Pe(this,e,v_,d_,Ae,{})}}new h_({target:document.getElementById("app")}); + `),d=m("input"),k=h(),A=m("div"),T=m("label"),S=m("input"),E=$(" Static IP"),B=h(),V&&V.c(),P=h(),W&&W.c(),R=h(),L=m("div"),L.innerHTML='',F=h(),ie(x.$$.fragment),r(i,"type","hidden"),r(i,"name","s"),i.value="true",r(a,"class","text-sm"),r(c,"class","my-3"),r(p,"class","my-3"),r(d,"name","sh"),r(d,"type","text"),r(d,"class","in-s"),r(d,"maxlength","32"),r(d,"pattern","[a-z0-9_-]+"),r(d,"placeholder","Optional, ex.: ams-reader"),r(d,"autocomplete","off"),r(S,"type","checkbox"),r(S,"name","sm"),S.__value="static",S.value=S.__value,r(S,"class","rounded mb-1"),r(A,"class","my-3"),r(L,"class","my-3"),r(l,"class","cnt"),r(e,"class","grid xl:grid-cols-4 lg:grid-cols-3 md:grid-cols-2")},m(U,K){M(U,e,K),s(e,l),s(l,n),s(n,i),s(n,o),s(n,a),s(n,u),s(n,c),s(n,f),s(n,p),s(n,_),s(n,b),s(b,v),s(b,d),te(d,t[0].hostname),s(n,k),s(n,A),s(A,T),s(T,S),S.checked=t[1],s(T,E),s(A,B),V&&V.m(A,null),s(n,P),W&&W.m(n,null),s(n,R),s(n,L),M(U,F,K),le(x,U,K),j=!0,z||(G=[ee(d,"input",t[4]),ee(S,"change",t[5]),ee(n,"submit",Ps(t[3]))],z=!0)},p(U,[K]){K&1&&d.value!==U[0].hostname&&te(d,U[0].hostname),K&2&&(S.checked=U[1]),U[1]?V?(V.p(U,K),K&2&&D(V,1)):(V=ic(U),V.c(),D(V,1),V.m(A,null)):V&&(De(),q(V,1,1,()=>{V=null}),Ie()),U[1]?W||(W=sc(),W.c(),W.m(n,R)):W&&(W.d(1),W=null);const H={};K&4&&(H.active=U[2]),x.$set(H)},i(U){j||(D(V),D(x.$$.fragment,U),j=!0)},o(U){q(V),q(x.$$.fragment,U),j=!1},d(U){U&&C(e),V&&V.d(),W&&W.d(),U&&C(F),ne(x,U),z=!1,ze(G)}}}function Xp(t,e,l){let{sysinfo:n={}}=e,i=!1,o=!1,a=0;function u(){var _="";a++;var b=function(){setTimeout(u,1e3)};if(n.net.ip&&a%3==0){if(!n.net.ip){b();return}_="http://"+n.net.ip}else n.hostname&&a%3==1?_="http://"+n.hostname:n.hostname&&a%3==2?_="http://"+n.hostname+".local":_="";console&&console.log("Trying url "+_),Ut.update(d=>(d.trying=_,d));var v=new XMLHttpRequest;v.timeout=5e3,v.addEventListener("abort",b),v.addEventListener("error",b),v.addEventListener("timeout",b),v.addEventListener("load",function(d){window.location.href=_||"/"}),v.open("GET",_+"/is-alive",!0),v.send()}async function c(_){l(2,o=!0);const b=new FormData(_.target),v=new URLSearchParams;for(let A of b){const[T,S]=A;v.append(T,S)}let k=await(await fetch("/save",{method:"POST",body:v})).json();l(2,o=!1),Ut.update(A=>(A.hostname=b.get("sh"),A.usrcfg=k.success,A.booting=k.reboot,i&&(A.net.ip=b.get("si"),A.net.mask=b.get("su"),A.net.gw=b.get("sg"),A.net.dns1=b.get("sd")),setTimeout(u,5e3),A))}function f(){n.hostname=this.value,l(0,n)}function p(){i=this.checked,l(1,i)}return t.$$set=_=>{"sysinfo"in _&&l(0,n=_.sysinfo)},[n,i,o,c,f,p]}class Zp extends Ee{constructor(e){super(),Pe(this,e,Xp,Qp,Ae,{sysinfo:0})}}function Jp(t){let e,l,n,i,o,a,u,c,f,p,_,b,v,d,k,A,T;return d=new It({props:{active:t[2],message:"Uploading file, please wait"}}),{c(){e=m("div"),l=m("div"),n=m("strong"),i=$("Upload "),o=$(t[1]),a=h(),u=m("p"),u.textContent="Select a suitable file and click upload",c=h(),f=m("form"),p=m("input"),_=h(),b=m("div"),b.innerHTML='',v=h(),ie(d.$$.fragment),r(u,"class","mb-4"),r(p,"name","file"),r(p,"type","file"),r(b,"class","w-full text-right mt-4"),r(f,"action",t[0]),r(f,"enctype","multipart/form-data"),r(f,"method","post"),r(f,"autocomplete","off"),r(l,"class","cnt"),r(e,"class","grid xl:grid-cols-4 lg:grid-cols-2 md:grid-cols-2")},m(S,E){M(S,e,E),s(e,l),s(l,n),s(n,i),s(n,o),s(l,a),s(l,u),s(l,c),s(l,f),s(f,p),s(f,_),s(f,b),M(S,v,E),le(d,S,E),k=!0,A||(T=ee(f,"submit",t[3]),A=!0)},p(S,[E]){(!k||E&2)&&X(o,S[1]),(!k||E&1)&&r(f,"action",S[0]);const B={};E&4&&(B.active=S[2]),d.$set(B)},i(S){k||(D(d.$$.fragment,S),k=!0)},o(S){q(d.$$.fragment,S),k=!1},d(S){S&&C(e),S&&C(v),ne(d,S),A=!1,T()}}}function xp(t,e,l){let{action:n}=e,{title:i}=e,o=!1;const a=()=>l(2,o=!0);return t.$$set=u=>{"action"in u&&l(0,n=u.action),"title"in u&&l(1,i=u.title)},[n,i,o,a]}class Do extends Ee{constructor(e){super(),Pe(this,e,xp,Jp,Ae,{action:0,title:1})}}function e_(t){let e,l,n,i,o,a,u,c,f,p,_,b,v,d,k,A,T,S,E,B,P,R,L,F,x,j,z,G,V,W,U;return G=new It({props:{active:t[1],message:"Saving preferences"}}),{c(){e=m("div"),l=m("div"),n=m("form"),i=m("div"),i.textContent="Various permissions we need to do stuff:",o=h(),a=m("hr"),u=h(),c=m("div"),f=$("Enable one-click upgrade? (implies data collection)"),p=m("br"),_=h(),b=m("a"),v=$("Read more"),d=m("br"),k=h(),A=m("label"),T=m("input"),E=$(" Yes"),B=m("label"),P=m("input"),L=$(" No"),F=m("br"),x=h(),j=m("div"),j.innerHTML='',z=h(),ie(G.$$.fragment),r(b,"href",Bt("Data-collection-on-one-click-firmware-upgrade")),r(b,"target","_blank"),r(b,"class","text-blue-600 hover:text-blue-800"),r(T,"type","radio"),r(T,"name","sf"),T.value=1,T.checked=S=t[0].fwconsent===1,r(T,"class","rounded m-2"),T.required=!0,r(P,"type","radio"),r(P,"name","sf"),P.value=2,P.checked=R=t[0].fwconsent===2,r(P,"class","rounded m-2"),P.required=!0,r(c,"class","my-3"),r(j,"class","my-3"),r(n,"autocomplete","off"),r(l,"class","cnt"),r(e,"class","grid xl:grid-cols-3 lg:grid-cols-2")},m(K,H){M(K,e,H),s(e,l),s(l,n),s(n,i),s(n,o),s(n,a),s(n,u),s(n,c),s(c,f),s(c,p),s(c,_),s(c,b),s(b,v),s(c,d),s(c,k),s(c,A),s(A,T),s(A,E),s(c,B),s(B,P),s(B,L),s(c,F),s(n,x),s(n,j),M(K,z,H),le(G,K,H),V=!0,W||(U=ee(n,"submit",Ps(t[2])),W=!0)},p(K,[H]){(!V||H&1&&S!==(S=K[0].fwconsent===1))&&(T.checked=S),(!V||H&1&&R!==(R=K[0].fwconsent===2))&&(P.checked=R);const Y={};H&2&&(Y.active=K[1]),G.$set(Y)},i(K){V||(D(G.$$.fragment,K),V=!0)},o(K){q(G.$$.fragment,K),V=!1},d(K){K&&C(e),K&&C(z),ne(G,K),W=!1,U()}}}function t_(t,e,l){let{sysinfo:n={}}=e,i=!1;async function o(a){l(1,i=!0);const u=new FormData(a.target),c=new URLSearchParams;for(let _ of u){const[b,v]=_;c.append(b,v)}let p=await(await fetch("/save",{method:"POST",body:c})).json();l(1,i=!1),Ut.update(_=>(_.fwconsent=u.sf===!0?1:u.sf===!1?2:0,_.booting=p.reboot,_)),ai("/")}return t.$$set=a=>{"sysinfo"in a&&l(0,n=a.sysinfo)},[n,i,o]}class l_ extends Ee{constructor(e){super(),Pe(this,e,t_,e_,Ae,{sysinfo:0})}}function n_(t){let e,l;return e=new Gm({props:{data:t[1],sysinfo:t[0]}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p(n,i){const o={};i&2&&(o.data=n[1]),i&1&&(o.sysinfo=n[0]),e.$set(o)},i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function i_(t){let e,l;return e=new Pp({props:{sysinfo:t[0]}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p(n,i){const o={};i&1&&(o.sysinfo=n[0]),e.$set(o)},i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function s_(t){let e,l;return e=new Hp({props:{sysinfo:t[0],data:t[1]}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p(n,i){const o={};i&1&&(o.sysinfo=n[0]),i&2&&(o.data=n[1]),e.$set(o)},i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function o_(t){let e,l;return e=new Do({props:{title:"CA",action:"/mqtt-ca"}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p:fe,i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function r_(t){let e,l;return e=new Do({props:{title:"certificate",action:"/mqtt-cert"}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p:fe,i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function a_(t){let e,l;return e=new Do({props:{title:"private key",action:"/mqtt-key"}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p:fe,i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function u_(t){let e,l;return e=new l_({props:{sysinfo:t[0]}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p(n,i){const o={};i&1&&(o.sysinfo=n[0]),e.$set(o)},i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function f_(t){let e,l;return e=new Zp({props:{sysinfo:t[0]}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p(n,i){const o={};i&1&&(o.sysinfo=n[0]),e.$set(o)},i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function c_(t){let e,l;return e=new Yp({props:{sysinfo:t[0]}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p(n,i){const o={};i&1&&(o.sysinfo=n[0]),e.$set(o)},i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function m_(t){let e,l,n,i,o,a,u,c,f,p,_,b,v,d,k,A,T,S,E,B;return e=new sm({props:{data:t[1]}}),n=new Ml({props:{path:"/",$$slots:{default:[n_]},$$scope:{ctx:t}}}),o=new Ml({props:{path:"/configuration",$$slots:{default:[i_]},$$scope:{ctx:t}}}),u=new Ml({props:{path:"/status",$$slots:{default:[s_]},$$scope:{ctx:t}}}),f=new Ml({props:{path:"/mqtt-ca",$$slots:{default:[o_]},$$scope:{ctx:t}}}),_=new Ml({props:{path:"/mqtt-cert",$$slots:{default:[r_]},$$scope:{ctx:t}}}),v=new Ml({props:{path:"/mqtt-key",$$slots:{default:[a_]},$$scope:{ctx:t}}}),k=new Ml({props:{path:"/consent",$$slots:{default:[u_]},$$scope:{ctx:t}}}),T=new Ml({props:{path:"/setup",$$slots:{default:[f_]},$$scope:{ctx:t}}}),E=new Ml({props:{path:"/vendor",$$slots:{default:[c_]},$$scope:{ctx:t}}}),{c(){ie(e.$$.fragment),l=h(),ie(n.$$.fragment),i=h(),ie(o.$$.fragment),a=h(),ie(u.$$.fragment),c=h(),ie(f.$$.fragment),p=h(),ie(_.$$.fragment),b=h(),ie(v.$$.fragment),d=h(),ie(k.$$.fragment),A=h(),ie(T.$$.fragment),S=h(),ie(E.$$.fragment)},m(P,R){le(e,P,R),M(P,l,R),le(n,P,R),M(P,i,R),le(o,P,R),M(P,a,R),le(u,P,R),M(P,c,R),le(f,P,R),M(P,p,R),le(_,P,R),M(P,b,R),le(v,P,R),M(P,d,R),le(k,P,R),M(P,A,R),le(T,P,R),M(P,S,R),le(E,P,R),B=!0},p(P,R){const L={};R&2&&(L.data=P[1]),e.$set(L);const F={};R&7&&(F.$$scope={dirty:R,ctx:P}),n.$set(F);const x={};R&5&&(x.$$scope={dirty:R,ctx:P}),o.$set(x);const j={};R&7&&(j.$$scope={dirty:R,ctx:P}),u.$set(j);const z={};R&4&&(z.$$scope={dirty:R,ctx:P}),f.$set(z);const G={};R&4&&(G.$$scope={dirty:R,ctx:P}),_.$set(G);const V={};R&4&&(V.$$scope={dirty:R,ctx:P}),v.$set(V);const W={};R&5&&(W.$$scope={dirty:R,ctx:P}),k.$set(W);const U={};R&5&&(U.$$scope={dirty:R,ctx:P}),T.$set(U);const K={};R&5&&(K.$$scope={dirty:R,ctx:P}),E.$set(K)},i(P){B||(D(e.$$.fragment,P),D(n.$$.fragment,P),D(o.$$.fragment,P),D(u.$$.fragment,P),D(f.$$.fragment,P),D(_.$$.fragment,P),D(v.$$.fragment,P),D(k.$$.fragment,P),D(T.$$.fragment,P),D(E.$$.fragment,P),B=!0)},o(P){q(e.$$.fragment,P),q(n.$$.fragment,P),q(o.$$.fragment,P),q(u.$$.fragment,P),q(f.$$.fragment,P),q(_.$$.fragment,P),q(v.$$.fragment,P),q(k.$$.fragment,P),q(T.$$.fragment,P),q(E.$$.fragment,P),B=!1},d(P){ne(e,P),P&&C(l),ne(n,P),P&&C(i),ne(o,P),P&&C(a),ne(u,P),P&&C(c),ne(f,P),P&&C(p),ne(_,P),P&&C(b),ne(v,P),P&&C(d),ne(k,P),P&&C(A),ne(T,P),P&&C(S),ne(E,P)}}}function p_(t){let e,l,n,i;const o=[v_,d_],a=[];function u(c,f){return c[0].trying?0:1}return e=u(t),l=a[e]=o[e](t),{c(){l.c(),n=Ge()},m(c,f){a[e].m(c,f),M(c,n,f),i=!0},p(c,f){let p=e;e=u(c),e===p?a[e].p(c,f):(De(),q(a[p],1,1,()=>{a[p]=null}),Ie(),l=a[e],l?l.p(c,f):(l=a[e]=o[e](c),l.c()),D(l,1),l.m(n.parentNode,n))},i(c){i||(D(l),i=!0)},o(c){q(l),i=!1},d(c){a[e].d(c),c&&C(n)}}}function __(t){let e,l;return e=new It({props:{active:"true",message:"Device is upgrading, please wait"}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p:fe,i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function d_(t){let e,l;return e=new It({props:{active:"true",message:"Device is booting, please wait"}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p:fe,i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function v_(t){let e,l;return e=new It({props:{active:"true",message:"Device is booting, please wait. Trying to reach it on "+t[0].trying}}),{c(){ie(e.$$.fragment)},m(n,i){le(e,n,i),l=!0},p(n,i){const o={};i&1&&(o.message="Device is booting, please wait. Trying to reach it on "+n[0].trying),e.$set(o)},i(n){l||(D(e.$$.fragment,n),l=!0)},o(n){q(e.$$.fragment,n),l=!1},d(n){ne(e,n)}}}function h_(t){let e,l,n,i,o,a;l=new Oc({props:{$$slots:{default:[m_]},$$scope:{ctx:t}}});const u=[__,p_],c=[];function f(p,_){return p[0].upgrading?0:p[0].booting?1:-1}return~(i=f(t))&&(o=c[i]=u[i](t)),{c(){e=m("div"),ie(l.$$.fragment),n=h(),o&&o.c(),r(e,"class","container mx-auto m-3")},m(p,_){M(p,e,_),le(l,e,null),s(e,n),~i&&c[i].m(e,null),a=!0},p(p,[_]){const b={};_&7&&(b.$$scope={dirty:_,ctx:p}),l.$set(b);let v=i;i=f(p),i===v?~i&&c[i].p(p,_):(o&&(De(),q(c[v],1,1,()=>{c[v]=null}),Ie()),~i?(o=c[i],o?o.p(p,_):(o=c[i]=u[i](p),o.c()),D(o,1),o.m(e,null)):o=null)},i(p){a||(D(l.$$.fragment,p),D(o),a=!0)},o(p){q(l.$$.fragment,p),q(o),a=!1},d(p){p&&C(e),ne(l),~i&&c[i].d()}}}function b_(t,e,l){let n={};Ut.subscribe(o=>{l(0,n=o),n.vndcfg===!1?ai("/vendor"):n.usrcfg===!1?ai("/setup"):n.fwconsent===0&&ai("/consent")}),So();let i={};return T1.subscribe(o=>{l(1,i=o)}),[n,i]}class g_ extends Ee{constructor(e){super(),Pe(this,e,b_,h_,Ae,{})}}new g_({target:document.getElementById("app")}); diff --git a/lib/SvelteUi/app/src/lib/ConfigurationPanel.svelte b/lib/SvelteUi/app/src/lib/ConfigurationPanel.svelte index bd94a908..aed64658 100644 --- a/lib/SvelteUi/app/src/lib/ConfigurationPanel.svelte +++ b/lib/SvelteUi/app/src/lib/ConfigurationPanel.svelte @@ -351,7 +351,7 @@ - +
diff --git a/lib/SvelteUi/app/src/lib/Helpers.js b/lib/SvelteUi/app/src/lib/Helpers.js index d57c2eb8..9cf0e7d7 100644 --- a/lib/SvelteUi/app/src/lib/Helpers.js +++ b/lib/SvelteUi/app/src/lib/Helpers.js @@ -145,6 +145,8 @@ export function mqttError(err) { export function priceError(err) { switch(err) { + case 400: + return "Unrecognized data in request"; case 401: case 403: return "Unauthorized, check API key"; @@ -156,6 +158,7 @@ export function priceError(err) { return "Exceeded API rate limit"; case 500: return "Internal server error"; + case -1: return "Connection error"; case -2: return "Incomplete data received"; case -3: return "Invalid data, tag missing"; case -51: return "Authentication failed"; @@ -229,4 +232,12 @@ export function getResetReason(sysinfo) { default: return "Unknown"; } } +} + +export function getPriceSourceName(code) { + if(code == "EOE") return "ENTSO-E"; + if(code == "HKS") return "hvakosterstrommen.no"; + if(code == "EDS") return "Energy Data Service"; + if(code == "MIX") return "Mixed sources"; + return "Unknown (" + code + ")"; } \ No newline at end of file diff --git a/lib/SvelteUi/app/src/lib/PricePlot.svelte b/lib/SvelteUi/app/src/lib/PricePlot.svelte index f7ff5de8..4325f4e9 100644 --- a/lib/SvelteUi/app/src/lib/PricePlot.svelte +++ b/lib/SvelteUi/app/src/lib/PricePlot.svelte @@ -1,5 +1,5 @@ -Provided by ENTSO-E +Provided by: {getPriceSourceName(json.source)} diff --git a/lib/SvelteUi/app/vite.config.js b/lib/SvelteUi/app/vite.config.js index 8804656f..d94a5d4c 100644 --- a/lib/SvelteUi/app/vite.config.js +++ b/lib/SvelteUi/app/vite.config.js @@ -17,21 +17,21 @@ export default defineConfig({ plugins: [svelte()], server: { proxy: { - "/data.json": "http://192.168.233.244", - "/energyprice.json": "http://192.168.233.244", - "/dayplot.json": "http://192.168.233.244", - "/monthplot.json": "http://192.168.233.244", - "/temperature.json": "http://192.168.233.244", - "/sysinfo.json": "http://192.168.233.244", - "/configuration.json": "http://192.168.233.244", - "/tariff.json": "http://192.168.233.244", - "/save": "http://192.168.233.244", - "/reboot": "http://192.168.233.244", - "/configfile": "http://192.168.233.244", - "/upgrade": "http://192.168.233.244", - "/mqtt-ca": "http://192.168.233.244", - "/mqtt-cert": "http://192.168.233.244", - "/mqtt-key": "http://192.168.233.244", + "/data.json": "http://192.168.233.237", + "/energyprice.json": "http://192.168.233.237", + "/dayplot.json": "http://192.168.233.237", + "/monthplot.json": "http://192.168.233.237", + "/temperature.json": "http://192.168.233.237", + "/sysinfo.json": "http://192.168.233.237", + "/configuration.json": "http://192.168.233.237", + "/tariff.json": "http://192.168.233.237", + "/save": "http://192.168.233.237", + "/reboot": "http://192.168.233.237", + "/configfile": "http://192.168.233.237", + "/upgrade": "http://192.168.233.237", + "/mqtt-ca": "http://192.168.233.237", + "/mqtt-cert": "http://192.168.233.237", + "/mqtt-key": "http://192.168.233.237", } } }) diff --git a/lib/SvelteUi/json/energyprice.json b/lib/SvelteUi/json/energyprice.json index 9231ba9c..06bf353d 100644 --- a/lib/SvelteUi/json/energyprice.json +++ b/lib/SvelteUi/json/energyprice.json @@ -1,5 +1,6 @@ { "currency" : "%s", + "source" : "%s", "00" : %s, "01" : %s, "02" : %s, diff --git a/lib/SvelteUi/src/AmsWebServer.cpp b/lib/SvelteUi/src/AmsWebServer.cpp index 8a138cc7..a82b50ce 100644 --- a/lib/SvelteUi/src/AmsWebServer.cpp +++ b/lib/SvelteUi/src/AmsWebServer.cpp @@ -667,6 +667,7 @@ void AmsWebServer::energyPriceJson() { snprintf_P(buf, BufferSize, ENERGYPRICE_JSON, eapi == NULL ? "" : eapi->getCurrency(), + eapi == NULL ? "" : eapi->getSource(), prices[0] == ENTSOE_NO_VALUE ? "null" : String(prices[0], 4).c_str(), prices[1] == ENTSOE_NO_VALUE ? "null" : String(prices[1], 4).c_str(), prices[2] == ENTSOE_NO_VALUE ? "null" : String(prices[2], 4).c_str(), diff --git a/src/AmsToMqttBridge.cpp b/src/AmsToMqttBridge.cpp index 07a2dc0a..9e74e043 100644 --- a/src/AmsToMqttBridge.cpp +++ b/src/AmsToMqttBridge.cpp @@ -791,9 +791,19 @@ void handleSystem(unsigned long now) { // After one hour, adjust buffer size to match the largest payload if(!maxDetectPayloadDetectDone && now > 3600000) { if(maxDetectedPayloadSize * 1.5 > meterConfig.bufferSize * 64) { - meterConfig.bufferSize = min((double) 64, ceil((maxDetectedPayloadSize * 1.5) / 64)); - debugI_P(PSTR("Increasing RX buffer to %d bytes"), meterConfig.bufferSize * 64); - config.setMeterConfig(meterConfig); + int bufferSize = min((double) 64, ceil((maxDetectedPayloadSize * 1.5) / 64)); + #if defined(ESP8266) + if(gpioConfig.hanPin != 3 && gpioConfig.hanPin != 113) { + bufferSize = min(bufferSize, 2); + } else { + bufferSize = min(bufferSize, 8); + } + #endif + if(bufferSize != meterConfig.bufferSize) { + debugI_P(PSTR("Increasing RX buffer to %d bytes"), bufferSize * 64); + meterConfig.bufferSize = bufferSize; + config.setMeterConfig(meterConfig); + } } maxDetectPayloadDetectDone = true; } @@ -1099,6 +1109,9 @@ void setupHanPort(GpioConfig& gpioConfig, uint32_t baud, uint8_t parityOrdinal, break; } + #if defined(ESP8266) + if(meterConfig.bufferSize > 2) meterConfig.bufferSize = 2; + #endif swSerial->begin(baud, serialConfig, pin, -1, invert, meterConfig.bufferSize * 64); hanSerial = swSerial;