From b182ceffe96e098c3ad3b464bdf44d7b2ce40844 Mon Sep 17 00:00:00 2001 From: Sergey Gavrilov Date: Thu, 9 Feb 2023 17:57:03 +0300 Subject: [PATCH] Dap-link support mode (#18) * DAP-link usb driver * Blackmagic glue works * Blackmagic on wifi interface and dap on usb * Wifi: disabled mode, USB: BM/DAP mode, SWD: access lock * USB config via cli * Web interface: mobile friendly --- .github/workflows/build.yml | 2 +- .gitmodules | 3 + .../blackmagic/esp32-platform/gdb-glue.c | 4 +- components/dap-link/CMakeLists.txt | 3 + components/dap-link/dap_config.h | 195 ++++++++ components/dap-link/free-dap | 1 + .../svelte-portal/public/build/bundle.css | 2 +- .../svelte-portal/public/build/bundle.js | 2 +- .../svelte-portal/public/build/bundle.js.map | 2 +- components/svelte-portal/src/App.svelte | 151 ++++-- components/svelte-portal/src/Input.svelte | 13 +- components/svelte-portal/src/Select.svelte | 6 + components/tinyusb/CMakeLists.txt | 16 +- components/tinyusb/config/tusb_config.h | 6 +- .../drivers/dap-link/dap-link-descriptors.c | 375 +++++++++++++++ .../drivers/dap-link/dap-link-descriptors.h | 10 + .../tinyusb/drivers/dap-link/vendor_device.c | 257 ++++++++++ .../tinyusb/drivers/dap-link/vendor_device.h | 97 ++++ .../dual-cdc/dual-cdc-descriptors.c} | 33 +- .../drivers/dual-cdc/dual-cdc-descriptors.h | 6 + components/tinyusb/drivers/usb-glue.c | 449 ++++++++++++++++++ components/tinyusb/drivers/usb-glue.h | 54 +++ components/tinyusb/dual-cdc/dual-cdc-driver.c | 76 --- components/tinyusb/dual-cdc/dual-cdc-driver.h | 22 - main/CMakeLists.txt | 8 +- main/cli/cli-commands-config.c | 80 +++- main/cli/cli-commands.c | 6 + main/main.c | 4 +- main/network-gdb.c | 30 +- main/network-http.c | 53 ++- main/network.c | 2 + main/nvs-config.c | 40 ++ main/nvs-config.h | 12 + main/usb-cdc.c | 182 ------- main/usb-cdc.h | 10 - main/usb-uart.c | 9 +- main/usb.c | 224 +++++++++ main/usb.h | 12 + 38 files changed, 2061 insertions(+), 396 deletions(-) create mode 100644 components/dap-link/CMakeLists.txt create mode 100644 components/dap-link/dap_config.h create mode 160000 components/dap-link/free-dap create mode 100644 components/tinyusb/drivers/dap-link/dap-link-descriptors.c create mode 100644 components/tinyusb/drivers/dap-link/dap-link-descriptors.h create mode 100644 components/tinyusb/drivers/dap-link/vendor_device.c create mode 100644 components/tinyusb/drivers/dap-link/vendor_device.h rename components/tinyusb/{dual-cdc/usb_descriptors.c => drivers/dual-cdc/dual-cdc-descriptors.c} (86%) create mode 100644 components/tinyusb/drivers/dual-cdc/dual-cdc-descriptors.h create mode 100644 components/tinyusb/drivers/usb-glue.c create mode 100644 components/tinyusb/drivers/usb-glue.h delete mode 100644 components/tinyusb/dual-cdc/dual-cdc-driver.c delete mode 100644 components/tinyusb/dual-cdc/dual-cdc-driver.h delete mode 100644 main/usb-cdc.c delete mode 100644 main/usb-cdc.h create mode 100644 main/usb.c create mode 100644 main/usb.h diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5133ffb..141bbc1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,7 +11,7 @@ on: jobs: build: - runs-on: [self-hosted, Office] + runs-on: ubuntu-22.04 steps: - name: Store UID id: uid diff --git a/.gitmodules b/.gitmodules index cd6fcde..ff17d34 100644 --- a/.gitmodules +++ b/.gitmodules @@ -7,3 +7,6 @@ [submodule "components/tinyusb/tinyusb"] path = components/tinyusb/tinyusb url = https://github.com/hathach/tinyusb +[submodule "components/dap-link/free-dap"] + path = components/dap-link/free-dap + url = https://github.com/ataradov/free-dap diff --git a/components/blackmagic/esp32-platform/gdb-glue.c b/components/blackmagic/esp32-platform/gdb-glue.c index 86f3cfe..866ea8a 100644 --- a/components/blackmagic/esp32-platform/gdb-glue.c +++ b/components/blackmagic/esp32-platform/gdb-glue.c @@ -24,7 +24,7 @@ bool network_gdb_connected(void); void network_gdb_send(uint8_t* buffer, size_t size); /* USB-CDC */ -void usb_cdc_gdb_tx_char(uint8_t c, bool flush); +void usb_gdb_tx_char(uint8_t c, bool flush); size_t gdb_glue_get_free_size(void) { return xStreamBufferSpacesAvailable(gdb_glue.rx_stream); @@ -94,6 +94,6 @@ void gdb_if_putchar(unsigned char c, int flush) { } } else { // Not sure why, but I could not get it to work with buffer - usb_cdc_gdb_tx_char(c, flush); + usb_gdb_tx_char(c, flush); } } \ No newline at end of file diff --git a/components/dap-link/CMakeLists.txt b/components/dap-link/CMakeLists.txt new file mode 100644 index 0000000..b3f7912 --- /dev/null +++ b/components/dap-link/CMakeLists.txt @@ -0,0 +1,3 @@ +idf_component_register(SRCS "free-dap/dap.c" + PRIV_INCLUDE_DIRS "." + INCLUDE_DIRS "." "free-dap") \ No newline at end of file diff --git a/components/dap-link/dap_config.h b/components/dap-link/dap_config.h new file mode 100644 index 0000000..9d828c2 --- /dev/null +++ b/components/dap-link/dap_config.h @@ -0,0 +1,195 @@ +#pragma once + +// SPDX-License-Identifier: BSD-3-Clause +// Copyright (c) 2022, Alex Taradov . All rights reserved. + +/*- Includes ----------------------------------------------------------------*/ +#include +#include +#include +#include +#include + +/*- Definitions -------------------------------------------------------------*/ +// #define DAP_CONFIG_ENABLE_JTAG + +#define DAP_CONFIG_DEFAULT_PORT DAP_PORT_SWD +#define DAP_CONFIG_DEFAULT_CLOCK 8000000 // Hz + +#define DAP_CONFIG_PACKET_SIZE 64 +#define DAP_CONFIG_PACKET_COUNT 1 + +#define DAP_CONFIG_JTAG_DEV_COUNT 8 + +// DAP_CONFIG_PRODUCT_STR must contain "CMSIS-DAP" to be compatible with the standard +#define DAP_CONFIG_VENDOR_STR "Flipper Devices" +#define DAP_CONFIG_PRODUCT_STR "ESP32S2 CMSIS-DAP Adapter" +#define DAP_CONFIG_SER_NUM_STR dap_serial_number +#define DAP_CONFIG_CMSIS_DAP_VER_STR "2.0.0" + +// Attribute to use for performance-critical functions +#define DAP_CONFIG_PERFORMANCE_ATTR IRAM_ATTR + +// A value at which dap_clock_test() produces 1 kHz output on the SWCLK pin +#define DAP_CONFIG_DELAY_CONSTANT 24000 + +// A threshold for switching to fast clock (no added delays) +// This is the frequency produced by dap_clock_test(1) on the SWCLK pin +#define DAP_CONFIG_FAST_CLOCK 8000000 // Hz + +#define ESP_SWCLK_PIN (1) +#define ESP_SWDIO_PIN (2) + +/*- Prototypes --------------------------------------------------------------*/ +void dap_callback_connect(void); +void dap_callback_disconnect(void); +extern char dap_serial_number[32]; +/*- Implementations ---------------------------------------------------------*/ + +//----------------------------------------------------------------------------- +static inline void DAP_CONFIG_SWCLK_TCK_write(int value) { + if(value) { + GPIO.out_w1ts = (1 << ESP_SWCLK_PIN); + } else { + GPIO.out_w1tc = (1 << ESP_SWCLK_PIN); + } +} + +//----------------------------------------------------------------------------- +static inline void DAP_CONFIG_SWDIO_TMS_write(int value) { + if(value) { + GPIO.out_w1ts = (1 << ESP_SWDIO_PIN); + } else { + GPIO.out_w1tc = (1 << ESP_SWDIO_PIN); + } +} + +//----------------------------------------------------------------------------- +static inline void DAP_CONFIG_TDI_write(int value) { + // Do nothing +} + +//----------------------------------------------------------------------------- +static inline void DAP_CONFIG_TDO_write(int value) { + // Do nothing +} + +//----------------------------------------------------------------------------- +static inline void DAP_CONFIG_nTRST_write(int value) { + // Do nothing +} + +//----------------------------------------------------------------------------- +static inline void DAP_CONFIG_nRESET_write(int value) { + // Do nothing +} + +//----------------------------------------------------------------------------- +static inline int DAP_CONFIG_SWCLK_TCK_read(void) { + int level = (GPIO.in >> ESP_SWCLK_PIN) & 0x1; + return level; +} + +//----------------------------------------------------------------------------- +static inline int DAP_CONFIG_SWDIO_TMS_read(void) { + int level = (GPIO.in >> ESP_SWDIO_PIN) & 0x1; + return level; +} + +//----------------------------------------------------------------------------- +static inline int DAP_CONFIG_TDO_read(void) { + // Do nothing + return 0; +} + +//----------------------------------------------------------------------------- +static inline int DAP_CONFIG_TDI_read(void) { + // Do nothing + return 0; +} + +//----------------------------------------------------------------------------- +static inline int DAP_CONFIG_nTRST_read(void) { + // Do nothing + return 0; +} + +//----------------------------------------------------------------------------- +static inline int DAP_CONFIG_nRESET_read(void) { + // Do nothing + return 0; +} + +//----------------------------------------------------------------------------- +static inline void DAP_CONFIG_SWCLK_TCK_set(void) { + GPIO.out_w1ts = (1 << ESP_SWCLK_PIN); +} + +//----------------------------------------------------------------------------- +static inline void DAP_CONFIG_SWCLK_TCK_clr(void) { + GPIO.out_w1tc = (1 << ESP_SWCLK_PIN); +} + +//----------------------------------------------------------------------------- +static inline void DAP_CONFIG_SWDIO_TMS_in(void) { + gpio_ll_output_disable(&GPIO, ESP_SWDIO_PIN); + gpio_ll_input_enable(&GPIO, ESP_SWDIO_PIN); +} + +//----------------------------------------------------------------------------- +static inline void DAP_CONFIG_SWDIO_TMS_out(void) { + GPIO.enable_w1ts = (0x1 << ESP_SWDIO_PIN); + esp_rom_gpio_connect_out_signal(ESP_SWDIO_PIN, SIG_GPIO_OUT_IDX, false, false); +} + +//----------------------------------------------------------------------------- +static inline void DAP_CONFIG_SETUP(void) { + // since the blackmagic probe is not have connect and disconnect callbacks + // we can't enable the gpio + + // gpio_ll_output_disable(&GPIO, ESP_SWDIO_PIN); + // gpio_ll_input_enable(&GPIO, ESP_SWDIO_PIN); + // gpio_ll_output_disable(&GPIO, ESP_SWCLK_PIN); + // gpio_ll_input_enable(&GPIO, ESP_SWCLK_PIN); +} + +//----------------------------------------------------------------------------- +static inline void DAP_CONFIG_DISCONNECT(void) { + // since the blackmagic probe is not have connect and disconnect callbacks + // we can't disable the gpio + + // gpio_ll_output_disable(&GPIO, ESP_SWDIO_PIN); + // gpio_ll_input_enable(&GPIO, ESP_SWDIO_PIN); + // gpio_ll_output_disable(&GPIO, ESP_SWCLK_PIN); + // gpio_ll_input_enable(&GPIO, ESP_SWCLK_PIN); + + dap_callback_disconnect(); +} + +//----------------------------------------------------------------------------- +static inline void DAP_CONFIG_CONNECT_SWD(void) { + GPIO.enable_w1ts = (0x1 << ESP_SWDIO_PIN); + esp_rom_gpio_connect_out_signal(ESP_SWDIO_PIN, SIG_GPIO_OUT_IDX, false, false); + + GPIO.enable_w1ts = (0x1 << ESP_SWCLK_PIN); + esp_rom_gpio_connect_out_signal(ESP_SWCLK_PIN, SIG_GPIO_OUT_IDX, false, false); + + dap_callback_connect(); +} + +//----------------------------------------------------------------------------- +static inline void DAP_CONFIG_CONNECT_JTAG(void) { + // Do nothing +} + +//----------------------------------------------------------------------------- +static inline void DAP_CONFIG_LED(int index, int state) { + // Do nothing +} + +//----------------------------------------------------------------------------- +__attribute__((always_inline)) static inline void DAP_CONFIG_DELAY(uint32_t cycles) { + register int32_t cnt; + for(cnt = cycles; --cnt > 0;) + ; +} \ No newline at end of file diff --git a/components/dap-link/free-dap b/components/dap-link/free-dap new file mode 160000 index 0000000..e7752be --- /dev/null +++ b/components/dap-link/free-dap @@ -0,0 +1 @@ +Subproject commit e7752beb5e8a69119af67b70b9179cb3c90f3ac5 diff --git a/components/svelte-portal/public/build/bundle.css b/components/svelte-portal/public/build/bundle.css index 605f8af..b2a54c7 100644 --- a/components/svelte-portal/public/build/bundle.css +++ b/components/svelte-portal/public/build/bundle.css @@ -1 +1 @@ -main.svelte-bny5z.svelte-bny5z{border:4px dashed #000;margin:10px auto;padding:10px;max-width:800px;overflow:hidden}.svelte-bny5z.svelte-bny5z{-moz-user-select:none;-o-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}tabs.svelte-bny5z.svelte-bny5z{border-bottom:4px dashed #000;width:100%;display:block}tab.svelte-bny5z.svelte-bny5z{margin-right:10px;padding:5px 10px;margin-bottom:5px;display:inline-block}tab.svelte-bny5z.svelte-bny5z:hover,tab.selected.svelte-bny5z.svelte-bny5z:hover{background:rgb(255, 255, 255);color:#000000}tab.selected.svelte-bny5z.svelte-bny5z{background-color:black;color:white}tabs-content.svelte-bny5z.svelte-bny5z{display:block;margin-top:10px}error.svelte-bny5z.svelte-bny5z{padding:5px 10px;background-color:rgb(255, 0, 0);color:black}@font-face{font-family:"DOS";src:url("../assets/ega8.otf") format("opentype");font-weight:normal;font-style:normal;-webkit-font-kerning:none;font-kerning:none;font-synthesis:none;-webkit-font-variant-ligatures:none;font-variant-ligatures:none;font-variant-numeric:tabular-nums}body{padding:0;margin:0;background-color:#ffa21c;color:#000;font-size:28px;font-family:"DOS", monospace;line-height:1;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0, 0, 0, 0)}.grid.svelte-bny5z.svelte-bny5z{display:inline-grid;grid-template-columns:auto auto}.grid.svelte-bny5z>div.svelte-bny5z{margin-top:10px}.value-name.svelte-bny5z.svelte-bny5z{text-align:right}task-list.svelte-bny5z.svelte-bny5z{display:inline-grid;grid-template-columns:auto auto auto auto auto;width:100%}.input-text-css.svelte-4h7oz2{display:inline-block;color:#000;font-size:28px;font-family:"DOS", monospace;line-height:1;box-sizing:border-box;margin:0;border:0;border-bottom:4px solid #000;padding:0 5px 0 5px;box-shadow:none;border-radius:0;-moz-appearance:none;-webkit-appearance:none;appearance:none;background-color:#ffa21c;height:32px}.input-text-css.svelte-4h7oz2:focus-visible,.input-text-css.svelte-4h7oz2:hover{outline:0;background-color:white}@keyframes svelte-1471rey-spinner-animation{0%{content:"|"}25%{content:"/"}50%{content:"-"}75%{content:"\\"}100%{content:"|"}}spinner.svelte-1471rey::after{display:inline-block;animation:svelte-1471rey-spinner-animation 0.6s linear infinite alternate;content:"|"}popup-wrapper.svelte-1ufadaz{background-color:rgba(0, 0, 0, 0.863);width:100%;height:100%;display:table;table-layout:fixed;z-index:999;overflow:auto;position:fixed;top:0;left:0;right:0;bottom:0}popup-body.svelte-1ufadaz{margin:auto;display:table-cell;text-align:center;vertical-align:middle;width:100%}popup-content.svelte-1ufadaz{background-color:#ffa21c;display:inline-block;outline:none;position:relative;text-align:initial;max-width:100vw}popup-border.svelte-1ufadaz{display:block;border:4px dashed #000;margin:10px;padding:10px}popup-close.svelte-1ufadaz{background-color:#000;display:inline-block;color:#ffa21c;position:absolute;width:24px;right:0px;top:0px;text-align:center}popup-close.svelte-1ufadaz:hover{background-color:#fff;color:#000}.button.svelte-1rqr1h4{box-sizing:border-box;display:inline-block;font-size:28px;font-family:"DOS", monospace;line-height:1;border:0;padding:0 5px 0 5px;box-shadow:none;border-radius:0;display:inline-block;max-width:100%}.black.svelte-1rqr1h4{color:white;background-color:black;border-bottom:4px solid #000}.black.svelte-1rqr1h4:hover{background:#fff;color:#000}.normal.svelte-1rqr1h4{color:#000;background-color:#ffa21c;border-bottom:4px solid #ffa21c}.normal.svelte-1rqr1h4:hover{background:#000;color:#fff}select.svelte-1rf61qb.svelte-1rf61qb{display:inline-block;color:#000;font-size:28px;font-family:"DOS", monospace;line-height:1;box-sizing:border-box;margin:0;border:0;border-bottom:4px solid #000;padding:0 5px 0 5px;box-shadow:none;border-radius:0;-moz-appearance:none;-webkit-appearance:none;appearance:none;background-color:#ffa21c}select.svelte-1rf61qb.svelte-1rf61qb::-ms-expand{display:none}select.svelte-1rf61qb.svelte-1rf61qb:hover{background:rgb(255, 255, 255);color:#000000}select.svelte-1rf61qb.svelte-1rf61qb:focus{box-shadow:none;outline:none;background:rgb(255, 255, 255);color:#000000}select.svelte-1rf61qb option.svelte-1rf61qb{font-weight:normal}.button-css.svelte-yar6m3{background-color:black;color:white;font-size:28px;font-family:"DOS", monospace;line-height:1;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0, 0, 0, 0);border:0;padding:5px 10px;display:inline-block;max-width:100%}.button-css.svelte-yar6m3:hover{background:rgb(255, 255, 255);color:#000000} \ No newline at end of file +main.svelte-121b41t.svelte-121b41t{border:4px dashed #000;margin:10px auto;padding:10px;max-width:800px;overflow:hidden}.svelte-121b41t.svelte-121b41t{-moz-user-select:none;-o-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}tabs.svelte-121b41t.svelte-121b41t{border-bottom:4px dashed #000;width:100%;display:block}tab.svelte-121b41t.svelte-121b41t{margin-right:10px;padding:5px 10px;margin-bottom:5px;display:inline-block}tab.svelte-121b41t.svelte-121b41t:hover,tab.selected.svelte-121b41t.svelte-121b41t:hover{background:rgb(255, 255, 255);color:#000000}tab.selected.svelte-121b41t.svelte-121b41t{background-color:black;color:white}tabs-content.svelte-121b41t.svelte-121b41t{display:block;margin-top:10px}error.svelte-121b41t.svelte-121b41t{padding:5px 10px;background-color:rgb(255, 0, 0);color:black}@font-face{font-family:"DOS";src:url("../assets/ega8.otf") format("opentype");font-weight:normal;font-style:normal;-webkit-font-kerning:none;font-kerning:none;font-synthesis:none;-webkit-font-variant-ligatures:none;font-variant-ligatures:none;font-variant-numeric:tabular-nums}body{padding:0;margin:0;background-color:#ffa21c;color:#000;font-size:28px;font-family:"DOS", monospace;line-height:1;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0, 0, 0, 0)}.grid.svelte-121b41t.svelte-121b41t{display:inline-grid;grid-template-columns:auto auto}.grid.svelte-121b41t>div.svelte-121b41t{margin-top:10px}.value-name.svelte-121b41t.svelte-121b41t{text-align:right}task-list.svelte-121b41t.svelte-121b41t{display:inline-grid;grid-template-columns:auto auto auto auto auto;width:100%}@media(max-width: 768px){task-list.svelte-121b41t.svelte-121b41t{grid-template-columns:auto auto auto auto}task-list.svelte-121b41t>span.svelte-121b41t:nth-child(5n + 3){display:none}}@media(max-width: 600px){task-list.svelte-121b41t.svelte-121b41t{grid-template-columns:auto auto auto}task-list.svelte-121b41t>span.svelte-121b41t:nth-child(5n + 4){display:none}}@media(max-width: 520px){.grid.svelte-121b41t.svelte-121b41t{grid-template-columns:auto;width:100%}.mobile-hidden.svelte-121b41t.svelte-121b41t{display:none}.value-name.svelte-121b41t.svelte-121b41t{text-align:left}.splitter.svelte-121b41t.svelte-121b41t{background-color:#000;width:100%;color:#ffa21d;text-align:center}task-list.svelte-121b41t.svelte-121b41t{grid-template-columns:auto;text-align:center}task-list.svelte-121b41t>span.svelte-121b41t:nth-child(5n + 1){padding-top:10px}task-list.svelte-121b41t>span.svelte-121b41t:nth-child(5n + 5){border-bottom:4px dashed #000}}input.svelte-13nd50t{display:inline-block;color:#000;font-size:28px;font-family:"DOS", monospace;line-height:1;box-sizing:border-box;margin:0;border:0;border-bottom:4px solid #000;padding:0 5px 0 5px;box-shadow:none;border-radius:0;-moz-appearance:none;-webkit-appearance:none;appearance:none;background-color:#ffa21c;height:32px}input.svelte-13nd50t:focus-visible,input.svelte-13nd50t:hover{outline:0;background-color:white}@media(max-width: 520px){input.svelte-13nd50t{max-width:100%}}select.svelte-vofi9z.svelte-vofi9z{display:inline-block;color:#000;font-size:28px;font-family:"DOS", monospace;line-height:1;box-sizing:border-box;margin:0;border:0;border-bottom:4px solid #000;padding:0 5px 0 5px;box-shadow:none;border-radius:0;-moz-appearance:none;-webkit-appearance:none;appearance:none;background-color:#ffa21c}select.svelte-vofi9z.svelte-vofi9z::-ms-expand{display:none}select.svelte-vofi9z.svelte-vofi9z:hover{background:rgb(255, 255, 255);color:#000000}select.svelte-vofi9z.svelte-vofi9z:focus{box-shadow:none;outline:none;background:rgb(255, 255, 255);color:#000000}select.svelte-vofi9z option.svelte-vofi9z{font-weight:normal}@media(max-width: 520px){select.svelte-vofi9z.svelte-vofi9z{width:100%}}@keyframes svelte-1471rey-spinner-animation{0%{content:"|"}25%{content:"/"}50%{content:"-"}75%{content:"\\"}100%{content:"|"}}spinner.svelte-1471rey::after{display:inline-block;animation:svelte-1471rey-spinner-animation 0.6s linear infinite alternate;content:"|"}.button.svelte-1rqr1h4{box-sizing:border-box;display:inline-block;font-size:28px;font-family:"DOS", monospace;line-height:1;border:0;padding:0 5px 0 5px;box-shadow:none;border-radius:0;display:inline-block;max-width:100%}.black.svelte-1rqr1h4{color:white;background-color:black;border-bottom:4px solid #000}.black.svelte-1rqr1h4:hover{background:#fff;color:#000}.normal.svelte-1rqr1h4{color:#000;background-color:#ffa21c;border-bottom:4px solid #ffa21c}.normal.svelte-1rqr1h4:hover{background:#000;color:#fff}popup-wrapper.svelte-1ufadaz{background-color:rgba(0, 0, 0, 0.863);width:100%;height:100%;display:table;table-layout:fixed;z-index:999;overflow:auto;position:fixed;top:0;left:0;right:0;bottom:0}popup-body.svelte-1ufadaz{margin:auto;display:table-cell;text-align:center;vertical-align:middle;width:100%}popup-content.svelte-1ufadaz{background-color:#ffa21c;display:inline-block;outline:none;position:relative;text-align:initial;max-width:100vw}popup-border.svelte-1ufadaz{display:block;border:4px dashed #000;margin:10px;padding:10px}popup-close.svelte-1ufadaz{background-color:#000;display:inline-block;color:#ffa21c;position:absolute;width:24px;right:0px;top:0px;text-align:center}popup-close.svelte-1ufadaz:hover{background-color:#fff;color:#000}.button-css.svelte-yar6m3{background-color:black;color:white;font-size:28px;font-family:"DOS", monospace;line-height:1;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0, 0, 0, 0);border:0;padding:5px 10px;display:inline-block;max-width:100%}.button-css.svelte-yar6m3:hover{background:rgb(255, 255, 255);color:#000000} \ No newline at end of file diff --git a/components/svelte-portal/public/build/bundle.js b/components/svelte-portal/public/build/bundle.js index bf3ebbf..0f20476 100644 --- a/components/svelte-portal/public/build/bundle.js +++ b/components/svelte-portal/public/build/bundle.js @@ -1,2 +1,2 @@ -var app=function(){"use strict";function t(){}function e(t){return t()}function n(){return Object.create(null)}function l(t){t.forEach(e)}function s(t){return"function"==typeof t}function o(t,e){return t!=t?e==e:t!==e||t&&"object"==typeof t||"function"==typeof t}function c(t,e,n,l){return t[1]&&l?function(t,e){for(const n in e)t[n]=e[n];return t}(n.ctx.slice(),t[1](l(e))):n.ctx}function a(t,e){t.appendChild(e)}function r(t,e,n){t.insertBefore(e,n||null)}function u(t){t.parentNode.removeChild(t)}function i(t,e){for(let n=0;nt.removeEventListener(e,n,l)}function $(t,e,n){null==n?t.removeAttribute(e):t.getAttribute(e)!==n&&t.setAttribute(e,n)}function h(t,e,n){e in t?t[e]="boolean"==typeof t[e]&&""===n||n:$(t,e,n)}function g(t,e){e=""+e,t.wholeText!==e&&(t.data=e)}function b(t,e){for(let n=0;nt.call(this,e)))}const w=[],C=[],S=[],O=[],P=Promise.resolve();let E=!1;function I(t){S.push(t)}let N=!1;const A=new Set;function j(){if(!N){N=!0;do{for(let t=0;t{M.delete(t),l&&(n&&t.d(1),l())})),t.o(e)}}function D(t,e){const n=e.token={};function l(t,l,s,o){if(e.token!==n)return;e.resolved=o;let c=e.ctx;void 0!==s&&(c=c.slice(),c[s]=o);const a=t&&(e.current=t)(c);let r=!1;e.block&&(e.blocks?e.blocks.forEach(((t,n)=>{n!==l&&t&&(W(),B(t,1,1,(()=>{e.blocks[n]===t&&(e.blocks[n]=null)})),q())})):e.block.d(1),a.c(),Y(a,1),a.m(e.mount(),e.anchor),r=!0),e.block=a,e.blocks&&(e.blocks[l]=a),r&&j()}if((s=t)&&"object"==typeof s&&"function"==typeof s.then){const n=_();if(t.then((t=>{z(n),l(e.then,1,e.value,t),z(null)}),(t=>{if(z(n),l(e.catch,2,e.error,t),z(null),!e.hasCatch)throw t})),e.current!==e.pending)return l(e.pending,0),!0}else{if(e.current!==e.then)return l(e.then,1,e.value,t),!0;e.resolved=t}var s}function U(t,e,n){const l=e.slice(),{resolved:s}=t;t.current===t.then&&(l[t.value]=s),t.current===t.catch&&(l[t.error]=s),t.block.p(l,n)}function H(t){t&&t.c()}function L(t,n,o,c){const{fragment:a,on_mount:r,on_destroy:u,after_update:i}=t.$$;a&&a.m(n,o),c||I((()=>{const n=r.map(e).filter(s);u?u.push(...n):l(n),t.$$.on_mount=[]})),i.forEach(I)}function R(t,e){const n=t.$$;null!==n.fragment&&(l(n.on_destroy),n.fragment&&n.fragment.d(e),n.on_destroy=n.fragment=null,n.ctx=[])}function V(t,e){-1===t.$$.dirty[0]&&(w.push(t),E||(E=!0,P.then(j)),t.$$.dirty.fill(0)),t.$$.dirty[e/31|0]|=1<{const s=l.length?l[0]:n;return d.ctx&&a(d.ctx[t],d.ctx[t]=s)&&(!d.skip_bound&&d.bound[t]&&d.bound[t](s),m&&V(e,t)),n})):[],d.update(),m=!0,l(d.before_update),d.fragment=!!c&&c(d.ctx),s.target){if(s.hydrate){const t=function(t){return Array.from(t.childNodes)}(s.target);d.fragment&&d.fragment.l(t),t.forEach(u)}else d.fragment&&d.fragment.c();s.intro&&Y(e.$$.fragment),L(e,s.target,s.anchor,s.customElement),j()}z(v)}class J{$destroy(){R(this,1),this.$destroy=t}$on(t,e){const n=this.$$.callbacks[t]||(this.$$.callbacks[t]=[]);return n.push(e),()=>{const t=n.indexOf(e);-1!==t&&n.splice(t,1)}}$set(t){var e;this.$$set&&(e=t,0!==Object.keys(e).length)&&(this.$$.skip_bound=!0,this.$$set(t),this.$$.skip_bound=!1)}}function K(e){let n,s,o,c;return{c(){n=f("input"),$(n,"type","button"),n.value=s=e[1]+e[0]+e[2],$(n,"class","button-css svelte-yar6m3")},m(t,l){r(t,n,l),o||(c=[p(n,"mouseenter",e[3]),p(n,"mouseleave",e[4]),p(n,"click",e[5])],o=!0)},p(t,[e]){7&e&&s!==(s=t[1]+t[0]+t[2])&&(n.value=s)},i:t,o:t,d(t){t&&u(n),o=!1,l(c)}}}function X(t,e,n){let{value:l="Value"}=e,s="",o="",c=null;function a(){n(1,s="["),n(2,o="]")}function r(){n(1,s=">"),n(2,o="<")}function u(){"["==s?r():a()}return a(),t.$$set=t=>{"value"in t&&n(0,l=t.value)},[l,s,o,function(){null==c&&(c=setInterval(u,400)),r()},function(){null!=c&&(clearInterval(c),c=null),a()},function(e){k.call(this,t,e)}]}class Q extends J{constructor(t){super(),G(this,t,X,K,o,{value:0})}}function Z(t){let e,n,l,s,o,i,v,m,$;const g=t[4].default,b=function(t,e,n,l){if(t){const s=c(t,e,n,l);return t[0](s)}}(g,t,t[3],null);return{c(){e=f("popup-wrapper"),n=f("popup-body"),l=f("popup-content"),s=f("popup-close"),s.textContent="X",o=d(),i=f("popup-border"),b&&b.c(),h(s,"class","svelte-1ufadaz"),h(i,"class","svelte-1ufadaz"),h(l,"class","svelte-1ufadaz"),h(n,"class","svelte-1ufadaz"),h(e,"class","svelte-1ufadaz")},m(c,u){r(c,e,u),a(e,n),a(n,l),a(l,s),a(l,o),a(l,i),b&&b.m(i,null),v=!0,m||($=p(s,"click",t[0]),m=!0)},p(t,e){b&&b.p&&(!v||8&e)&&function(t,e,n,l,s,o){if(s){const a=c(e,n,l,o);t.p(a,s)}}(b,g,t,t[3],v?function(t,e,n,l){if(t[2]&&l){const s=t[2](l(n));if(void 0===e.dirty)return s;if("object"==typeof s){const t=[],n=Math.max(e.dirty.length,s.length);for(let l=0;l32){const e=[],n=t.ctx.length/32;for(let t=0;t{l=null})),q()):l?(l.p(t,n),2&n&&Y(l,1)):(l=Z(t),l.c(),Y(l,1),l.m(e.parentNode,e))},i(t){n||(Y(l),n=!0)},o(t){B(l),n=!1},d(t){l&&l.d(t),t&&u(e)}}}function et(t,e,n){let{$$slots:l={},$$scope:s}=e,o=!0;return t.$$set=t=>{"$$scope"in t&&n(3,s=t.$$scope)},[function(){n(1,o=!0)},o,function(){n(1,o=!1)},s,l]}class nt extends J{constructor(t){super(),G(this,t,et,tt,o,{close:0,show:2})}get close(){return this.$$.ctx[0]}get show(){return this.$$.ctx[2]}}function lt(e){let n,l,s,o;return{c(){n=f("input"),$(n,"autocorrect","off"),$(n,"autocapitalize","none"),$(n,"autocomplete","off"),$(n,"type","text"),n.value=e[0],$(n,"class","input-text-css svelte-4h7oz2"),$(n,"size",l=e[0].length>3?e[0].length:3)},m(t,l){r(t,n,l),s||(o=p(n,"input",e[1]),s=!0)},p(t,[e]){1&e&&n.value!==t[0]&&(n.value=t[0]),1&e&&l!==(l=t[0].length>3?t[0].length:3)&&$(n,"size",l)},i:t,o:t,d(t){t&&u(n),s=!1,o()}}}function st(t,e,n){let{value:l=""}=e;return t.$$set=t=>{"value"in t&&n(0,l=t.value)},[l,function(){this.size=this.value.length>3?this.value.length:3,n(0,l=this.value)},function(t){n(0,l=t)},function(){return l}]}class ot extends J{constructor(t){super(),G(this,t,st,lt,o,{value:0,set_value:2,get_value:3})}get set_value(){return this.$$.ctx[2]}get get_value(){return this.$$.ctx[3]}}function ct(e){let n;return{c(){n=f("spinner"),$(n,"class","svelte-1471rey")},m(t,e){r(t,n,e)},p:t,i:t,o:t,d(t){t&&u(n)}}}class at extends J{constructor(t){super(),G(this,t,null,ct,o,{})}}function rt(t,e,n){const l=t.slice();return l[4]=e[n],l}function ut(t,e,n){const l=t.slice();return l[7]=e[n],l[9]=n,l}function it(t){let e,n=t[7]+"";return{c(){e=v(n)},m(t,n){r(t,e,n)},p(t,l){1&l&&n!==(n=t[7]+"")&&g(e,n)},d(t){t&&u(e)}}}function ft(e){let n;return{c(){n=v(" ")},m(t,e){r(t,n,e)},p:t,d(t){t&&u(n)}}}function vt(t){let e,n;function l(t,e){return" "==t[7]?ft:it}let s=l(t),o=s(t),c=t[9]<3&&function(t){let e;return{c(){e=v(" ")},m(t,n){r(t,e,n)},d(t){t&&u(e)}}}();return{c(){o.c(),e=d(),c&&c.c(),n=m()},m(t,l){o.m(t,l),r(t,e,l),c&&c.m(t,l),r(t,n,l)},p(t,n){s===(s=l(t))&&o?o.p(t,n):(o.d(1),o=s(t),o&&(o.c(),o.m(e.parentNode,e)))},d(t){o.d(t),t&&u(e),c&&c.d(t),t&&u(n)}}}function dt(t){let e,n,l=t[4],s=[];for(let e=0;e=l.length&&(s=0),n(0,o=l[s])}var a;return a=()=>setInterval(c,100),_().$$.on_mount.push(a),[o]}class $t extends J{constructor(t){super(),G(this,t,pt,mt,o,{})}}function ht(t,e,n){const l=t.slice();return l[5]=e[n],l}function gt(t){let e,n,l,s,o=t[5].text+"";return{c(){e=f("option"),n=v(o),l=d(),e.__value=s=t[5].value,e.value=e.__value,$(e,"class","svelte-1rf61qb")},m(t,s){r(t,e,s),a(e,n),a(e,l)},p(t,l){2&l&&o!==(o=t[5].text+"")&&g(n,o),2&l&&s!==(s=t[5].value)&&(e.__value=s,e.value=e.__value)},d(t){t&&u(e)}}}function bt(e){let n,s,o,c=e[1],a=[];for(let t=0;te[4].call(n)))},m(t,l){r(t,n,l);for(let t=0;t{"items"in t&&n(1,l=t.items),"value"in t&&n(0,s=t.value)},[s,l,function(){n(0,s=this.value)},function(){return s},function(){s=function(t){const e=t.querySelector(":checked")||t.options[0];return e&&e.__value}(this),n(0,s),n(1,l)}]}class xt extends J{constructor(t){super(),G(this,t,yt,bt,o,{items:1,value:0,get_value:3})}get get_value(){return this.$$.ctx[3]}}function zt(e){let n,l,s,o;return{c(){n=f("input"),$(n,"type","button"),n.value=e[0],$(n,"class",l="button "+e[1]+" svelte-1rqr1h4")},m(t,l){r(t,n,l),s||(o=p(n,"click",e[2]),s=!0)},p(t,[e]){1&e&&(n.value=t[0]),2&e&&l!==(l="button "+t[1]+" svelte-1rqr1h4")&&$(n,"class",l)},i:t,o:t,d(t){t&&u(n),s=!1,o()}}}function _t(t,e,n){let{value:l="Value"}=e,{style:s="black"}=e;return t.$$set=t=>{"value"in t&&n(0,l=t.value),"style"in t&&n(1,s=t.style)},[l,s,function(e){k.call(this,t,e)}]}class kt extends J{constructor(t){super(),G(this,t,_t,zt,o,{value:0,style:1})}}function wt(t,e,n){const l=t.slice();return l[27]=e[n],l}function Ct(t,e,n){const l=t.slice();return l[31]=e[n],l}function St(t){let e,n,l,s,o,c,i,v,m,p={ctx:t,current:null,token:null,hasCatch:!0,pending:Et,then:Pt,catch:Ot,value:26,error:30,blocks:[,,,]};return D(l=Kt(t[0]+"/api/v1/wifi/get_credentials"),p),c=new Q({props:{value:"SAVE"}}),c.$on("click",t[11]),v=new Q({props:{value:"REBOOT"}}),v.$on("click",t[12]),{c(){var t,l,a;e=f("tab-content"),n=f("div"),p.block.c(),s=d(),o=f("div"),H(c.$$.fragment),i=d(),H(v.$$.fragment),$(n,"class","grid svelte-bny5z"),t="margin-top",l="10px",o.style.setProperty(t,l,a?"important":""),$(o,"class","svelte-bny5z"),h(e,"class","svelte-bny5z")},m(t,l){r(t,e,l),a(e,n),p.block.m(n,p.anchor=null),p.mount=()=>n,p.anchor=null,a(e,s),a(e,o),L(c,o,null),a(o,i),L(v,o,null),m=!0},p(e,n){t=e,p.ctx=t,1&n[0]&&l!==(l=Kt(t[0]+"/api/v1/wifi/get_credentials"))&&D(l,p)||U(p,t,n)},i(t){m||(Y(p.block),Y(c.$$.fragment,t),Y(v.$$.fragment,t),m=!0)},o(t){for(let t=0;t<3;t+=1){B(p.blocks[t])}B(c.$$.fragment,t),B(v.$$.fragment,t),m=!1},d(t){t&&u(e),p.block.d(),p.token=null,p=null,R(c),R(v)}}}function Ot(e){let n,l,s=e[30].message+"";return{c(){n=f("error"),l=v(s),$(n,"class","svelte-bny5z")},m(t,e){r(t,n,e),a(n,l)},p(t,e){1&e[0]&&s!==(s=t[30].message+"")&&g(l,s)},i:t,o:t,d(t){t&&u(n)}}}function Pt(t){let e,n,l,o,c,a,i,v,m,p,h,g,b,y,x,z,_,k,w,C,S,O,P,E,I,N,A,j,F,M,T,W,q,D,U,V,G,J,K,X={items:[{text:"STA (join another network)",value:"STA"},{text:"AP (own access point)",value:"AP"}],value:t[26].wifi_mode};o=new xt({props:X}),t[17](o);let Q={value:t[26].sta_ssid};b=new ot({props:Q}),t[18](b),y=new kt({props:{value:"+"}}),y.$on("click",(function(){s(t[1].show)&&t[1].show.apply(this,arguments)}));let Z={value:t[26].sta_pass};w=new ot({props:Z}),t[19](w);let tt={value:t[26].ap_ssid};j=new ot({props:tt}),t[20](j);let et={value:t[26].ap_pass};q=new ot({props:et}),t[21](q);let nt={value:t[26].hostname};return J=new ot({props:nt}),t[22](J),{c(){e=f("div"),e.textContent="Mode:",n=d(),l=f("div"),H(o.$$.fragment),c=d(),a=f("div"),a.textContent="STA",i=d(),v=f("div"),v.textContent="(join another network)",m=d(),p=f("div"),p.textContent="SSID:",h=d(),g=f("div"),H(b.$$.fragment),H(y.$$.fragment),x=d(),z=f("div"),z.textContent="Pass:",_=d(),k=f("div"),H(w.$$.fragment),C=d(),S=f("div"),S.textContent="AP",O=d(),P=f("div"),P.textContent="(own access point)",E=d(),I=f("div"),I.textContent="SSID:",N=d(),A=f("div"),H(j.$$.fragment),F=d(),M=f("div"),M.textContent="Pass:",T=d(),W=f("div"),H(q.$$.fragment),D=d(),U=f("div"),U.textContent="Hostname:",V=d(),G=f("div"),H(J.$$.fragment),$(e,"class","value-name svelte-bny5z"),$(l,"class","svelte-bny5z"),$(a,"class","value-name svelte-bny5z"),$(v,"class","svelte-bny5z"),$(p,"class","value-name svelte-bny5z"),$(g,"class","svelte-bny5z"),$(z,"class","value-name svelte-bny5z"),$(k,"class","svelte-bny5z"),$(S,"class","value-name svelte-bny5z"),$(P,"class","svelte-bny5z"),$(I,"class","value-name svelte-bny5z"),$(A,"class","svelte-bny5z"),$(M,"class","value-name svelte-bny5z"),$(W,"class","svelte-bny5z"),$(U,"class","value-name svelte-bny5z"),$(G,"class","svelte-bny5z")},m(t,s){r(t,e,s),r(t,n,s),r(t,l,s),L(o,l,null),r(t,c,s),r(t,a,s),r(t,i,s),r(t,v,s),r(t,m,s),r(t,p,s),r(t,h,s),r(t,g,s),L(b,g,null),L(y,g,null),r(t,x,s),r(t,z,s),r(t,_,s),r(t,k,s),L(w,k,null),r(t,C,s),r(t,S,s),r(t,O,s),r(t,P,s),r(t,E,s),r(t,I,s),r(t,N,s),r(t,A,s),L(j,A,null),r(t,F,s),r(t,M,s),r(t,T,s),r(t,W,s),L(q,W,null),r(t,D,s),r(t,U,s),r(t,V,s),r(t,G,s),L(J,G,null),K=!0},p(e,n){t=e;const l={};1&n[0]&&(l.value=t[26].wifi_mode),o.$set(l);const s={};1&n[0]&&(s.value=t[26].sta_ssid),b.$set(s);const c={};1&n[0]&&(c.value=t[26].sta_pass),w.$set(c);const a={};1&n[0]&&(a.value=t[26].ap_ssid),j.$set(a);const r={};1&n[0]&&(r.value=t[26].ap_pass),q.$set(r);const u={};1&n[0]&&(u.value=t[26].hostname),J.$set(u)},i(t){K||(Y(o.$$.fragment,t),Y(b.$$.fragment,t),Y(y.$$.fragment,t),Y(w.$$.fragment,t),Y(j.$$.fragment,t),Y(q.$$.fragment,t),Y(J.$$.fragment,t),K=!0)},o(t){B(o.$$.fragment,t),B(b.$$.fragment,t),B(y.$$.fragment,t),B(w.$$.fragment,t),B(j.$$.fragment,t),B(q.$$.fragment,t),B(J.$$.fragment,t),K=!1},d(s){s&&u(e),s&&u(n),s&&u(l),t[17](null),R(o),s&&u(c),s&&u(a),s&&u(i),s&&u(v),s&&u(m),s&&u(p),s&&u(h),s&&u(g),t[18](null),R(b),R(y),s&&u(x),s&&u(z),s&&u(_),s&&u(k),t[19](null),R(w),s&&u(C),s&&u(S),s&&u(O),s&&u(P),s&&u(E),s&&u(I),s&&u(N),s&&u(A),t[20](null),R(j),s&&u(F),s&&u(M),s&&u(T),s&&u(W),t[21](null),R(q),s&&u(D),s&&u(U),s&&u(V),s&&u(G),t[22](null),R(J)}}}function Et(e){let n,l,s,o,c,a,i,v,m,p,h,g,b,y,x,z,_,k,w,C,S,O,P,E,I,N,A,j,F,M;return o=new at({}),m=new at({}),y=new at({}),w=new at({}),E=new at({}),F=new at({}),{c(){n=f("div"),n.textContent="Mode:",l=d(),s=f("div"),H(o.$$.fragment),c=d(),a=f("div"),a.textContent="SSID:",i=d(),v=f("div"),H(m.$$.fragment),p=d(),h=f("div"),h.textContent="Pass:",g=d(),b=f("div"),H(y.$$.fragment),x=d(),z=f("div"),z.textContent="SSID:",_=d(),k=f("div"),H(w.$$.fragment),C=d(),S=f("div"),S.textContent="Pass:",O=d(),P=f("div"),H(E.$$.fragment),I=d(),N=f("div"),N.textContent="Hostname:",A=d(),j=f("div"),H(F.$$.fragment),$(n,"class","value-name svelte-bny5z"),$(s,"class","svelte-bny5z"),$(a,"class","value-name svelte-bny5z"),$(v,"class","svelte-bny5z"),$(h,"class","value-name svelte-bny5z"),$(b,"class","svelte-bny5z"),$(z,"class","value-name svelte-bny5z"),$(k,"class","svelte-bny5z"),$(S,"class","value-name svelte-bny5z"),$(P,"class","svelte-bny5z"),$(N,"class","value-name svelte-bny5z"),$(j,"class","svelte-bny5z")},m(t,e){r(t,n,e),r(t,l,e),r(t,s,e),L(o,s,null),r(t,c,e),r(t,a,e),r(t,i,e),r(t,v,e),L(m,v,null),r(t,p,e),r(t,h,e),r(t,g,e),r(t,b,e),L(y,b,null),r(t,x,e),r(t,z,e),r(t,_,e),r(t,k,e),L(w,k,null),r(t,C,e),r(t,S,e),r(t,O,e),r(t,P,e),L(E,P,null),r(t,I,e),r(t,N,e),r(t,A,e),r(t,j,e),L(F,j,null),M=!0},p:t,i(t){M||(Y(o.$$.fragment,t),Y(m.$$.fragment,t),Y(y.$$.fragment,t),Y(w.$$.fragment,t),Y(E.$$.fragment,t),Y(F.$$.fragment,t),M=!0)},o(t){B(o.$$.fragment,t),B(m.$$.fragment,t),B(y.$$.fragment,t),B(w.$$.fragment,t),B(E.$$.fragment,t),B(F.$$.fragment,t),M=!1},d(t){t&&u(n),t&&u(l),t&&u(s),R(o),t&&u(c),t&&u(a),t&&u(i),t&&u(v),R(m),t&&u(p),t&&u(h),t&&u(g),t&&u(b),R(y),t&&u(x),t&&u(z),t&&u(_),t&&u(k),R(w),t&&u(C),t&&u(S),t&&u(O),t&&u(P),R(E),t&&u(I),t&&u(N),t&&u(A),t&&u(j),R(F)}}}function It(t){let e,n,l,s,o={ctx:t,current:null,token:null,hasCatch:!0,pending:jt,then:At,catch:Nt,value:26,error:30,blocks:[,,,]};return D(l=Kt(t[0]+"/api/v1/system/info"),o),{c(){e=f("tab-content"),n=f("div"),o.block.c(),$(n,"class","grid svelte-bny5z"),h(e,"class","svelte-bny5z")},m(t,l){r(t,e,l),a(e,n),o.block.m(n,o.anchor=null),o.mount=()=>n,o.anchor=null,s=!0},p(e,n){t=e,o.ctx=t,1&n[0]&&l!==(l=Kt(t[0]+"/api/v1/system/info"))&&D(l,o)||U(o,t,n)},i(t){s||(Y(o.block),s=!0)},o(t){for(let t=0;t<3;t+=1){B(o.blocks[t])}s=!1},d(t){t&&u(e),o.block.d(),o.token=null,o=null}}}function Nt(e){let n,l,s=e[30].message+"";return{c(){n=f("error"),l=v(s),$(n,"class","svelte-bny5z")},m(t,e){r(t,n,e),a(n,l)},p(t,e){1&e[0]&&s!==(s=t[30].message+"")&&g(l,s)},i:t,o:t,d(t){t&&u(n)}}}function At(e){let n,l,s,o,c,i,m,p,h,b,y,x,z,_,k,w,C,S,O,P,E,I,N,A,j,F,M,T,W,q,Y,B,D,U,H,L,R,V,G,J,K,X,Q,Z,tt=Qt(e[26].ip)+"",et=Xt(e[26].mac)+"",nt=e[26].idf_version+"",lt=e[26].model+"",st=e[26].revision+"",ot=e[26].cores+"",ct=e[26].heap.minimum_free_bytes+"",at=e[26].heap.total_free_bytes+"",rt=e[26].heap.total_allocated_bytes+"",ut=e[26].heap.largest_free_block+"";return{c(){n=f("div"),n.textContent="IP:",l=d(),s=f("div"),o=v(tt),c=d(),i=f("div"),i.textContent="Mac:",m=d(),p=f("div"),h=v(et),b=d(),y=f("div"),y.textContent="IDF ver:",x=d(),z=f("div"),_=v(nt),k=d(),w=f("div"),w.textContent="Model:",C=d(),S=f("div"),O=v(lt),P=v("."),E=v(st),I=d(),N=v(ot),A=v("-core"),j=d(),F=f("div"),F.textContent="Min free:",M=d(),T=f("div"),W=v(ct),q=d(),Y=f("div"),Y.textContent="Free:",B=d(),D=f("div"),U=v(at),H=d(),L=f("div"),L.textContent="Alloc:",R=d(),V=f("div"),G=v(rt),J=d(),K=f("div"),K.textContent="Max block:",X=d(),Q=f("div"),Z=v(ut),$(n,"class","value-name svelte-bny5z"),$(s,"class","svelte-bny5z"),$(i,"class","value-name svelte-bny5z"),$(p,"class","svelte-bny5z"),$(y,"class","value-name svelte-bny5z"),$(z,"class","svelte-bny5z"),$(w,"class","value-name svelte-bny5z"),$(S,"class","svelte-bny5z"),$(F,"class","value-name svelte-bny5z"),$(T,"class","svelte-bny5z"),$(Y,"class","value-name svelte-bny5z"),$(D,"class","svelte-bny5z"),$(L,"class","value-name svelte-bny5z"),$(V,"class","svelte-bny5z"),$(K,"class","value-name svelte-bny5z"),$(Q,"class","svelte-bny5z")},m(t,e){r(t,n,e),r(t,l,e),r(t,s,e),a(s,o),r(t,c,e),r(t,i,e),r(t,m,e),r(t,p,e),a(p,h),r(t,b,e),r(t,y,e),r(t,x,e),r(t,z,e),a(z,_),r(t,k,e),r(t,w,e),r(t,C,e),r(t,S,e),a(S,O),a(S,P),a(S,E),a(S,I),a(S,N),a(S,A),r(t,j,e),r(t,F,e),r(t,M,e),r(t,T,e),a(T,W),r(t,q,e),r(t,Y,e),r(t,B,e),r(t,D,e),a(D,U),r(t,H,e),r(t,L,e),r(t,R,e),r(t,V,e),a(V,G),r(t,J,e),r(t,K,e),r(t,X,e),r(t,Q,e),a(Q,Z)},p(t,e){1&e[0]&&tt!==(tt=Qt(t[26].ip)+"")&&g(o,tt),1&e[0]&&et!==(et=Xt(t[26].mac)+"")&&g(h,et),1&e[0]&&nt!==(nt=t[26].idf_version+"")&&g(_,nt),1&e[0]&<!==(lt=t[26].model+"")&&g(O,lt),1&e[0]&&st!==(st=t[26].revision+"")&&g(E,st),1&e[0]&&ot!==(ot=t[26].cores+"")&&g(N,ot),1&e[0]&&ct!==(ct=t[26].heap.minimum_free_bytes+"")&&g(W,ct),1&e[0]&&at!==(at=t[26].heap.total_free_bytes+"")&&g(U,at),1&e[0]&&rt!==(rt=t[26].heap.total_allocated_bytes+"")&&g(G,rt),1&e[0]&&ut!==(ut=t[26].heap.largest_free_block+"")&&g(Z,ut)},i:t,o:t,d(t){t&&u(n),t&&u(l),t&&u(s),t&&u(c),t&&u(i),t&&u(m),t&&u(p),t&&u(b),t&&u(y),t&&u(x),t&&u(z),t&&u(k),t&&u(w),t&&u(C),t&&u(S),t&&u(j),t&&u(F),t&&u(M),t&&u(T),t&&u(q),t&&u(Y),t&&u(B),t&&u(D),t&&u(H),t&&u(L),t&&u(R),t&&u(V),t&&u(J),t&&u(K),t&&u(X),t&&u(Q)}}}function jt(e){let n,l,s,o,c;return o=new at({}),{c(){n=f("div"),n.textContent="IP:",l=d(),s=f("div"),H(o.$$.fragment),$(n,"class","value-name svelte-bny5z"),$(s,"class","svelte-bny5z")},m(t,e){r(t,n,e),r(t,l,e),r(t,s,e),L(o,s,null),c=!0},p:t,i(t){c||(Y(o.$$.fragment,t),c=!0)},o(t){B(o.$$.fragment,t),c=!1},d(t){t&&u(n),t&&u(l),t&&u(s),R(o)}}}function Ft(t){let e,n,l,s={ctx:t,current:null,token:null,hasCatch:!0,pending:qt,then:Tt,catch:Mt,value:26,error:30,blocks:[,,,]};return D(n=Kt(t[0]+"/api/v1/system/tasks"),s),{c(){e=f("tab-content"),s.block.c(),h(e,"class","svelte-bny5z")},m(t,n){r(t,e,n),s.block.m(e,s.anchor=null),s.mount=()=>e,s.anchor=null,l=!0},p(e,l){t=e,s.ctx=t,1&l[0]&&n!==(n=Kt(t[0]+"/api/v1/system/tasks"))&&D(n,s)||U(s,t,l)},i(t){l||(Y(s.block),l=!0)},o(t){for(let t=0;t<3;t+=1){B(s.blocks[t])}l=!1},d(t){t&&u(e),s.block.d(),s.token=null,s=null}}}function Mt(e){let n,l,s=e[30].message+"";return{c(){n=f("error"),l=v(s),$(n,"class","svelte-bny5z")},m(t,e){r(t,n,e),a(n,l)},p(t,e){1&e[0]&&s!==(s=t[30].message+"")&&g(l,s)},i:t,o:t,d(t){t&&u(n)}}}function Tt(e){let n,l,s,o,c,v,m,p,g,b,y,x=e[26].list.sort(Zt),z=[];for(let t=0;tB(c[t],1,1,(()=>{c[t]=null}));return{c(){e=f("div"),e.textContent="Nets:",n=d();for(let t=0;te.parentNode,s.anchor=e,l=!0},p(e,l){t=e,s.ctx=t,1&l[0]&&n!==(n=Kt(t[0]+"/api/v1/wifi/list"))&&D(n,s)||U(s,t,l)},i(t){l||(Y(s.block),l=!0)},o(t){for(let t=0;t<3;t+=1){B(s.blocks[t])}l=!1},d(t){t&&u(e),s.block.d(t),s.token=null,s=null}}}function Lt(e){let n,l;return n=new at({}),{c(){H(n.$$.fragment)},m(t,e){L(n,t,e),l=!0},p:t,i(t){l||(Y(n.$$.fragment,t),l=!0)},o(t){B(n.$$.fragment,t),l=!1},d(t){R(n,t)}}}function Rt(e){let n;return{c(){n=v(e[3])},m(t,e){r(t,n,e)},p(t,e){8&e[0]&&g(n,t[3])},i:t,o:t,d(t){t&&u(n)}}}function Vt(t){let e,n,l,s;const o=[Rt,Lt],c=[];function a(t,e){return""!=t[3]?0:1}return e=a(t),n=c[e]=o[e](t),{c(){n.c(),l=m()},m(t,n){c[e].m(t,n),r(t,l,n),s=!0},p(t,s){let r=e;e=a(t),e===r?c[e].p(t,s):(W(),B(c[r],1,1,(()=>{c[r]=null})),q(),n=c[e],n?n.p(t,s):(n=c[e]=o[e](t),n.c()),Y(n,1),n.m(l.parentNode,l))},i(t){s||(Y(n),s=!0)},o(t){B(n),s=!1},d(t){c[e].d(t),t&&u(l)}}}function Gt(t){let e,n,s,o,c,i,v,m,g,b,x,z,_,k,w,C,S,O,P="WiFi"==t[10]&&St(t),E="SYS"==t[10]&&It(t),I="PS"==t[10]&&Ft(t);return _=new nt({props:{$$slots:{default:[Ht]},$$scope:{ctx:t}}}),t[24](_),w=new nt({props:{$$slots:{default:[Vt]},$$scope:{ctx:t}}}),t[25](w),{c(){e=f("main"),n=f("tabs"),s=f("tab"),s.textContent="WiFi",o=d(),c=f("tab"),c.textContent="SYS",i=d(),v=f("tab"),v.textContent="PS",m=d(),g=f("tabs-content"),P&&P.c(),b=d(),E&&E.c(),x=d(),I&&I.c(),z=d(),H(_.$$.fragment),k=d(),H(w.$$.fragment),$(s,"class","svelte-bny5z"),y(s,"selected","WiFi"==t[10]),$(c,"class","svelte-bny5z"),y(c,"selected","SYS"==t[10]),$(v,"class","svelte-bny5z"),y(v,"selected","PS"==t[10]),$(n,"class","svelte-bny5z"),h(g,"class","svelte-bny5z"),$(e,"class","svelte-bny5z")},m(l,u){r(l,e,u),a(e,n),a(n,s),a(n,o),a(n,c),a(n,i),a(n,v),a(e,m),a(e,g),P&&P.m(g,null),a(g,b),E&&E.m(g,null),a(g,x),I&&I.m(g,null),a(e,z),L(_,e,null),a(e,k),L(w,e,null),C=!0,S||(O=[p(s,"click",t[14]),p(c,"click",t[15]),p(v,"click",t[16])],S=!0)},p(t,e){1024&e[0]&&y(s,"selected","WiFi"==t[10]),1024&e[0]&&y(c,"selected","SYS"==t[10]),1024&e[0]&&y(v,"selected","PS"==t[10]),"WiFi"==t[10]?P?(P.p(t,e),1024&e[0]&&Y(P,1)):(P=St(t),P.c(),Y(P,1),P.m(g,b)):P&&(W(),B(P,1,1,(()=>{P=null})),q()),"SYS"==t[10]?E?(E.p(t,e),1024&e[0]&&Y(E,1)):(E=It(t),E.c(),Y(E,1),E.m(g,x)):E&&(W(),B(E,1,1,(()=>{E=null})),q()),"PS"==t[10]?I?(I.p(t,e),1024&e[0]&&Y(I,1)):(I=Ft(t),I.c(),Y(I,1),I.m(g,null)):I&&(W(),B(I,1,1,(()=>{I=null})),q());const n={};131&e[0]|8&e[1]&&(n.$$scope={dirty:e,ctx:t}),_.$set(n);const l={};8&e[0]|8&e[1]&&(l.$$scope={dirty:e,ctx:t}),w.$set(l)},i(t){C||(Y(P),Y(E),Y(I),Y(_.$$.fragment,t),Y(w.$$.fragment,t),C=!0)},o(t){B(P),B(E),B(I),B(_.$$.fragment,t),B(w.$$.fragment,t),C=!1},d(n){n&&u(e),P&&P.d(),E&&E.d(),I&&I.d(),t[24](null),R(_),t[25](null),R(w),S=!1,l(O)}}}async function Jt(t,e){const n=await fetch(t,{method:"POST",body:JSON.stringify(e)});return await n.json()}async function Kt(t){const e=await fetch(t,{method:"GET"});return await e.json()}function Xt(t){let e="";for(let n=0;n>=8}return e.join(".")}const Zt=function(t,e){return t.number-e.number};function te(t,e,n){let l,s,o,c,a,r,u,i,f,v="WiFi";function d(t){n(10,v=t),localStorage.setItem("current_tab",v)}null!=localStorage.getItem("current_tab")&&(v=localStorage.getItem("current_tab"));return["",l,s,o,c,a,r,u,i,f,v,async function(){n(3,o=""),s.show(),await Jt("/api/v1/wifi/set_credentials",{wifi_mode:c.get_value(),ap_ssid:a.get_value(),ap_pass:r.get_value(),sta_ssid:u.get_value(),sta_pass:i.get_value(),hostname:f.get_value()}).then((t=>{t.error?n(3,o=t.error):n(3,o="Saved!")}))},async function(){Jt("/api/v1/system/reboot",{}),n(3,o="Rebooted"),s.show()},d,()=>{d("WiFi")},()=>{d("SYS")},()=>{d("PS")},function(t){C[t?"unshift":"push"]((()=>{c=t,n(4,c)}))},function(t){C[t?"unshift":"push"]((()=>{u=t,n(7,u)}))},function(t){C[t?"unshift":"push"]((()=>{i=t,n(8,i)}))},function(t){C[t?"unshift":"push"]((()=>{a=t,n(5,a)}))},function(t){C[t?"unshift":"push"]((()=>{r=t,n(6,r)}))},function(t){C[t?"unshift":"push"]((()=>{f=t,n(9,f)}))},t=>{l.close(),u.set_value(t.ssid)},function(t){C[t?"unshift":"push"]((()=>{l=t,n(1,l)}))},function(t){C[t?"unshift":"push"]((()=>{s=t,n(2,s)}))}]}return new class extends J{constructor(t){super(),G(this,t,te,Gt,o,{},null,[-1,-1])}}({target:document.body})}(); +var app=function(){"use strict";function t(){}function e(t){return t()}function n(){return Object.create(null)}function l(t){t.forEach(e)}function s(t){return"function"==typeof t}function o(t,e){return t!=t?e==e:t!==e||t&&"object"==typeof t||"function"==typeof t}function a(t,e,n,l){return t[1]&&l?function(t,e){for(const n in e)t[n]=e[n];return t}(n.ctx.slice(),t[1](l(e))):n.ctx}function c(t,e){t.appendChild(e)}function r(t,e,n){t.insertBefore(e,n||null)}function u(t){t.parentNode.removeChild(t)}function i(t,e){for(let n=0;nt.removeEventListener(e,n,l)}function $(t,e,n){null==n?t.removeAttribute(e):t.getAttribute(e)!==n&&t.setAttribute(e,n)}function h(t,e,n){e in t?t[e]="boolean"==typeof t[e]&&""===n||n:$(t,e,n)}function g(t,e){e=""+e,t.wholeText!==e&&(t.data=e)}function b(t,e){for(let n=0;nt.call(this,e)))}const C=[],S=[],P=[],O=[],A=Promise.resolve();let E=!1;function I(t){P.push(t)}let N=!1;const z=new Set;function j(){if(!N){N=!0;do{for(let t=0;t{M.delete(t),l&&(n&&t.d(1),l())})),t.o(e)}}function Y(t,e){const n=e.token={};function l(t,l,s,o){if(e.token!==n)return;e.resolved=o;let a=e.ctx;void 0!==s&&(a=a.slice(),a[s]=o);const c=t&&(e.current=t)(a);let r=!1;e.block&&(e.blocks?e.blocks.forEach(((t,n)=>{n!==l&&t&&(D(),U(t,1,1,(()=>{e.blocks[n]===t&&(e.blocks[n]=null)})),T())})):e.block.d(1),c.c(),W(c,1),c.m(e.mount(),e.anchor),r=!0),e.block=c,e.blocks&&(e.blocks[l]=c),r&&j()}if((s=t)&&"object"==typeof s&&"function"==typeof s.then){const n=y();if(t.then((t=>{k(n),l(e.then,1,e.value,t),k(null)}),(t=>{if(k(n),l(e.catch,2,e.error,t),k(null),!e.hasCatch)throw t})),e.current!==e.pending)return l(e.pending,0),!0}else{if(e.current!==e.then)return l(e.then,1,e.value,t),!0;e.resolved=t}var s}function q(t,e,n){const l=e.slice(),{resolved:s}=t;t.current===t.then&&(l[t.value]=s),t.current===t.catch&&(l[t.error]=s),t.block.p(l,n)}function L(t){t&&t.c()}function H(t,n,o,a){const{fragment:c,on_mount:r,on_destroy:u,after_update:i}=t.$$;c&&c.m(n,o),a||I((()=>{const n=r.map(e).filter(s);u?u.push(...n):l(n),t.$$.on_mount=[]})),i.forEach(I)}function R(t,e){const n=t.$$;null!==n.fragment&&(l(n.on_destroy),n.fragment&&n.fragment.d(e),n.on_destroy=n.fragment=null,n.ctx=[])}function V(t,e){-1===t.$$.dirty[0]&&(C.push(t),E||(E=!0,A.then(j)),t.$$.dirty.fill(0)),t.$$.dirty[e/31|0]|=1<{const s=l.length?l[0]:n;return d.ctx&&c(d.ctx[t],d.ctx[t]=s)&&(!d.skip_bound&&d.bound[t]&&d.bound[t](s),m&&V(e,t)),n})):[],d.update(),m=!0,l(d.before_update),d.fragment=!!a&&a(d.ctx),s.target){if(s.hydrate){const t=function(t){return Array.from(t.childNodes)}(s.target);d.fragment&&d.fragment.l(t),t.forEach(u)}else d.fragment&&d.fragment.c();s.intro&&W(e.$$.fragment),H(e,s.target,s.anchor,s.customElement),j()}k(v)}class J{$destroy(){R(this,1),this.$destroy=t}$on(t,e){const n=this.$$.callbacks[t]||(this.$$.callbacks[t]=[]);return n.push(e),()=>{const t=n.indexOf(e);-1!==t&&n.splice(t,1)}}$set(t){var e;this.$$set&&(e=t,0!==Object.keys(e).length)&&(this.$$.skip_bound=!0,this.$$set(t),this.$$.skip_bound=!1)}}function K(e){let n,s,o,a;return{c(){n=f("input"),$(n,"type","button"),n.value=s=e[1]+e[0]+e[2],$(n,"class","button-css svelte-yar6m3")},m(t,l){r(t,n,l),o||(a=[p(n,"mouseenter",e[3]),p(n,"mouseleave",e[4]),p(n,"click",e[5])],o=!0)},p(t,[e]){7&e&&s!==(s=t[1]+t[0]+t[2])&&(n.value=s)},i:t,o:t,d(t){t&&u(n),o=!1,l(a)}}}function X(t,e,n){let{value:l="Value"}=e,s="",o="",a=null;function c(){n(1,s="["),n(2,o="]")}function r(){n(1,s=">"),n(2,o="<")}function u(){"["==s?r():c()}return c(),t.$$set=t=>{"value"in t&&n(0,l=t.value)},[l,s,o,function(){null==a&&(a=setInterval(u,400)),r()},function(){null!=a&&(clearInterval(a),a=null),c()},function(e){w.call(this,t,e)}]}class Q extends J{constructor(t){super(),G(this,t,X,K,o,{value:0})}}function Z(t){let e,n,l,s,o,i,v,m,$;const g=t[4].default,b=function(t,e,n,l){if(t){const s=a(t,e,n,l);return t[0](s)}}(g,t,t[3],null);return{c(){e=f("popup-wrapper"),n=f("popup-body"),l=f("popup-content"),s=f("popup-close"),s.textContent="X",o=d(),i=f("popup-border"),b&&b.c(),h(s,"class","svelte-1ufadaz"),h(i,"class","svelte-1ufadaz"),h(l,"class","svelte-1ufadaz"),h(n,"class","svelte-1ufadaz"),h(e,"class","svelte-1ufadaz")},m(a,u){r(a,e,u),c(e,n),c(n,l),c(l,s),c(l,o),c(l,i),b&&b.m(i,null),v=!0,m||($=p(s,"click",t[0]),m=!0)},p(t,e){b&&b.p&&(!v||8&e)&&function(t,e,n,l,s,o){if(s){const c=a(e,n,l,o);t.p(c,s)}}(b,g,t,t[3],v?function(t,e,n,l){if(t[2]&&l){const s=t[2](l(n));if(void 0===e.dirty)return s;if("object"==typeof s){const t=[],n=Math.max(e.dirty.length,s.length);for(let l=0;l32){const e=[],n=t.ctx.length/32;for(let t=0;t{l=null})),T()):l?(l.p(t,n),2&n&&W(l,1)):(l=Z(t),l.c(),W(l,1),l.m(e.parentNode,e))},i(t){n||(W(l),n=!0)},o(t){U(l),n=!1},d(t){l&&l.d(t),t&&u(e)}}}function et(t,e,n){let{$$slots:l={},$$scope:s}=e,o=!0;return t.$$set=t=>{"$$scope"in t&&n(3,s=t.$$scope)},[function(){n(1,o=!0)},o,function(){n(1,o=!1)},s,l]}class nt extends J{constructor(t){super(),G(this,t,et,tt,o,{close:0,show:2})}get close(){return this.$$.ctx[0]}get show(){return this.$$.ctx[2]}}function lt(e){let n,l,s,o;return{c(){n=f("input"),$(n,"autocorrect","off"),$(n,"autocapitalize","none"),$(n,"autocomplete","off"),$(n,"type","text"),n.value=e[0],$(n,"size",l=e[0].length>3?e[0].length:3),$(n,"class","svelte-13nd50t")},m(t,l){r(t,n,l),s||(o=p(n,"input",e[1]),s=!0)},p(t,[e]){1&e&&n.value!==t[0]&&(n.value=t[0]),1&e&&l!==(l=t[0].length>3?t[0].length:3)&&$(n,"size",l)},i:t,o:t,d(t){t&&u(n),s=!1,o()}}}function st(t,e,n){let{value:l=""}=e;return t.$$set=t=>{"value"in t&&n(0,l=t.value)},[l,function(){this.size=this.value.length>3?this.value.length:3,n(0,l=this.value)},function(t){n(0,l=t)},function(){return l}]}class ot extends J{constructor(t){super(),G(this,t,st,lt,o,{value:0,set_value:2,get_value:3})}get set_value(){return this.$$.ctx[2]}get get_value(){return this.$$.ctx[3]}}function at(e){let n;return{c(){n=f("spinner"),$(n,"class","svelte-1471rey")},m(t,e){r(t,n,e)},p:t,i:t,o:t,d(t){t&&u(n)}}}class ct extends J{constructor(t){super(),G(this,t,null,at,o,{})}}function rt(t,e,n){const l=t.slice();return l[4]=e[n],l}function ut(t,e,n){const l=t.slice();return l[7]=e[n],l[9]=n,l}function it(t){let e,n=t[7]+"";return{c(){e=v(n)},m(t,n){r(t,e,n)},p(t,l){1&l&&n!==(n=t[7]+"")&&g(e,n)},d(t){t&&u(e)}}}function ft(e){let n;return{c(){n=v(" ")},m(t,e){r(t,n,e)},p:t,d(t){t&&u(n)}}}function vt(t){let e,n;function l(t,e){return" "==t[7]?ft:it}let s=l(t),o=s(t),a=t[9]<3&&function(t){let e;return{c(){e=v(" ")},m(t,n){r(t,e,n)},d(t){t&&u(e)}}}();return{c(){o.c(),e=d(),a&&a.c(),n=m()},m(t,l){o.m(t,l),r(t,e,l),a&&a.m(t,l),r(t,n,l)},p(t,n){s===(s=l(t))&&o?o.p(t,n):(o.d(1),o=s(t),o&&(o.c(),o.m(e.parentNode,e)))},d(t){o.d(t),t&&u(e),a&&a.d(t),t&&u(n)}}}function dt(t){let e,n,l=t[4],s=[];for(let e=0;e=l.length&&(s=0),n(0,o=l[s])}var c;return c=()=>setInterval(a,100),y().$$.on_mount.push(c),[o]}class $t extends J{constructor(t){super(),G(this,t,pt,mt,o,{})}}function ht(t,e,n){const l=t.slice();return l[5]=e[n],l}function gt(t){let e,n,l,s,o=t[5].text+"";return{c(){e=f("option"),n=v(o),l=d(),e.__value=s=t[5].value,e.value=e.__value,$(e,"class","svelte-vofi9z")},m(t,s){r(t,e,s),c(e,n),c(e,l)},p(t,l){2&l&&o!==(o=t[5].text+"")&&g(n,o),2&l&&s!==(s=t[5].value)&&(e.__value=s,e.value=e.__value)},d(t){t&&u(e)}}}function bt(e){let n,s,o,a=e[1],c=[];for(let t=0;te[4].call(n)))},m(t,l){r(t,n,l);for(let t=0;t{"items"in t&&n(1,l=t.items),"value"in t&&n(0,s=t.value)},[s,l,function(){n(0,s=this.value)},function(){return s},function(){s=function(t){const e=t.querySelector(":checked")||t.options[0];return e&&e.__value}(this),n(0,s),n(1,l)}]}class _t extends J{constructor(t){super(),G(this,t,xt,bt,o,{items:1,value:0,get_value:3})}get get_value(){return this.$$.ctx[3]}}function kt(e){let n,l,s,o;return{c(){n=f("input"),$(n,"type","button"),n.value=e[0],$(n,"class",l="button "+e[1]+" svelte-1rqr1h4")},m(t,l){r(t,n,l),s||(o=p(n,"click",e[2]),s=!0)},p(t,[e]){1&e&&(n.value=t[0]),2&e&&l!==(l="button "+t[1]+" svelte-1rqr1h4")&&$(n,"class",l)},i:t,o:t,d(t){t&&u(n),s=!1,o()}}}function yt(t,e,n){let{value:l="Value"}=e,{style:s="black"}=e;return t.$$set=t=>{"value"in t&&n(0,l=t.value),"style"in t&&n(1,s=t.style)},[l,s,function(e){w.call(this,t,e)}]}class wt extends J{constructor(t){super(),G(this,t,yt,kt,o,{value:0,style:1})}}function Ct(t,e,n){const l=t.slice();return l[29]=e[n],l}function St(t,e,n){const l=t.slice();return l[33]=e[n],l}function Pt(t){let e,n,l,s,o,a,i,v,m,p={ctx:t,current:null,token:null,hasCatch:!0,pending:Et,then:At,catch:Ot,value:28,error:32,blocks:[,,,]};return Y(l=Kt(t[0]+"/api/v1/wifi/get_credentials"),p),a=new Q({props:{value:"SAVE"}}),a.$on("click",t[12]),v=new Q({props:{value:"REBOOT"}}),v.$on("click",t[13]),{c(){var t,l,c;e=f("tab-content"),n=f("div"),p.block.c(),s=d(),o=f("div"),L(a.$$.fragment),i=d(),L(v.$$.fragment),$(n,"class","grid svelte-121b41t"),t="margin-top",l="10px",o.style.setProperty(t,l,c?"important":""),$(o,"class","svelte-121b41t"),h(e,"class","svelte-121b41t")},m(t,l){r(t,e,l),c(e,n),p.block.m(n,p.anchor=null),p.mount=()=>n,p.anchor=null,c(e,s),c(e,o),H(a,o,null),c(o,i),H(v,o,null),m=!0},p(e,n){t=e,p.ctx=t,1&n[0]&&l!==(l=Kt(t[0]+"/api/v1/wifi/get_credentials"))&&Y(l,p)||q(p,t,n)},i(t){m||(W(p.block),W(a.$$.fragment,t),W(v.$$.fragment,t),m=!0)},o(t){for(let t=0;t<3;t+=1){U(p.blocks[t])}U(a.$$.fragment,t),U(v.$$.fragment,t),m=!1},d(t){t&&u(e),p.block.d(),p.token=null,p=null,R(a),R(v)}}}function Ot(e){let n,l,s=e[32].message+"";return{c(){n=f("error"),l=v(s),$(n,"class","svelte-121b41t")},m(t,e){r(t,n,e),c(n,l)},p(t,e){1&e[0]&&s!==(s=t[32].message+"")&&g(l,s)},i:t,o:t,d(t){t&&u(n)}}}function At(t){let e,n,l,o,a,c,i,v,m,p,h,g,b,x,_,k,y,w,C,S,P,O,A,E,I,N,z,j,F,M,B,D,T,Y,q,V,G,J,K,X,Q,Z,tt,et,nt={items:[{text:"STA (join another network)",value:"STA"},{text:"AP (own access point)",value:"AP"},{text:"Disabled (do not use WiFi)",value:"Disabled"}],value:t[28].wifi_mode};o=new _t({props:nt}),t[18](o);let lt={value:t[28].sta_ssid};b=new ot({props:lt}),t[19](b),x=new wt({props:{value:"+"}}),x.$on("click",(function(){s(t[1].show)&&t[1].show.apply(this,arguments)}));let st={value:t[28].sta_pass};C=new ot({props:st}),t[20](C);let at={value:t[28].ap_ssid};j=new ot({props:at}),t[21](j);let ct={value:t[28].ap_pass};T=new ot({props:ct}),t[22](T);let rt={value:t[28].hostname};J=new ot({props:rt}),t[23](J);let ut={items:[{text:"BlackMagicProbe",value:"BM"},{text:"DapLink",value:"DAP"}],value:t[28].usb_mode};return tt=new _t({props:ut}),t[24](tt),{c(){e=f("div"),e.textContent="Mode:",n=d(),l=f("div"),L(o.$$.fragment),a=d(),c=f("div"),c.textContent="STA",i=d(),v=f("div"),v.textContent="(join another network)",m=d(),p=f("div"),p.textContent="SSID:",h=d(),g=f("div"),L(b.$$.fragment),L(x.$$.fragment),_=d(),k=f("div"),k.textContent="Pass:",y=d(),w=f("div"),L(C.$$.fragment),S=d(),P=f("div"),P.textContent="AP",O=d(),A=f("div"),A.textContent="(own access point)",E=d(),I=f("div"),I.textContent="SSID:",N=d(),z=f("div"),L(j.$$.fragment),F=d(),M=f("div"),M.textContent="Pass:",B=d(),D=f("div"),L(T.$$.fragment),Y=d(),q=f("div"),q.textContent="Hostname:",V=d(),G=f("div"),L(J.$$.fragment),K=d(),X=f("div"),X.textContent="USB mode:",Q=d(),Z=f("div"),L(tt.$$.fragment),$(e,"class","value-name svelte-121b41t"),$(l,"class","value svelte-121b41t"),$(c,"class","value-name splitter svelte-121b41t"),$(v,"class","value mobile-hidden svelte-121b41t"),$(p,"class","value-name svelte-121b41t"),$(g,"class","value svelte-121b41t"),$(k,"class","value-name svelte-121b41t"),$(w,"class","value svelte-121b41t"),$(P,"class","value-name splitter svelte-121b41t"),$(A,"class","value mobile-hidden svelte-121b41t"),$(I,"class","value-name svelte-121b41t"),$(z,"class","value svelte-121b41t"),$(M,"class","value-name svelte-121b41t"),$(D,"class","value svelte-121b41t"),$(q,"class","value-name svelte-121b41t"),$(G,"class","value svelte-121b41t"),$(X,"class","value-name svelte-121b41t"),$(Z,"class","value svelte-121b41t")},m(t,s){r(t,e,s),r(t,n,s),r(t,l,s),H(o,l,null),r(t,a,s),r(t,c,s),r(t,i,s),r(t,v,s),r(t,m,s),r(t,p,s),r(t,h,s),r(t,g,s),H(b,g,null),H(x,g,null),r(t,_,s),r(t,k,s),r(t,y,s),r(t,w,s),H(C,w,null),r(t,S,s),r(t,P,s),r(t,O,s),r(t,A,s),r(t,E,s),r(t,I,s),r(t,N,s),r(t,z,s),H(j,z,null),r(t,F,s),r(t,M,s),r(t,B,s),r(t,D,s),H(T,D,null),r(t,Y,s),r(t,q,s),r(t,V,s),r(t,G,s),H(J,G,null),r(t,K,s),r(t,X,s),r(t,Q,s),r(t,Z,s),H(tt,Z,null),et=!0},p(e,n){t=e;const l={};1&n[0]&&(l.value=t[28].wifi_mode),o.$set(l);const s={};1&n[0]&&(s.value=t[28].sta_ssid),b.$set(s);const a={};1&n[0]&&(a.value=t[28].sta_pass),C.$set(a);const c={};1&n[0]&&(c.value=t[28].ap_ssid),j.$set(c);const r={};1&n[0]&&(r.value=t[28].ap_pass),T.$set(r);const u={};1&n[0]&&(u.value=t[28].hostname),J.$set(u);const i={};1&n[0]&&(i.value=t[28].usb_mode),tt.$set(i)},i(t){et||(W(o.$$.fragment,t),W(b.$$.fragment,t),W(x.$$.fragment,t),W(C.$$.fragment,t),W(j.$$.fragment,t),W(T.$$.fragment,t),W(J.$$.fragment,t),W(tt.$$.fragment,t),et=!0)},o(t){U(o.$$.fragment,t),U(b.$$.fragment,t),U(x.$$.fragment,t),U(C.$$.fragment,t),U(j.$$.fragment,t),U(T.$$.fragment,t),U(J.$$.fragment,t),U(tt.$$.fragment,t),et=!1},d(s){s&&u(e),s&&u(n),s&&u(l),t[18](null),R(o),s&&u(a),s&&u(c),s&&u(i),s&&u(v),s&&u(m),s&&u(p),s&&u(h),s&&u(g),t[19](null),R(b),R(x),s&&u(_),s&&u(k),s&&u(y),s&&u(w),t[20](null),R(C),s&&u(S),s&&u(P),s&&u(O),s&&u(A),s&&u(E),s&&u(I),s&&u(N),s&&u(z),t[21](null),R(j),s&&u(F),s&&u(M),s&&u(B),s&&u(D),t[22](null),R(T),s&&u(Y),s&&u(q),s&&u(V),s&&u(G),t[23](null),R(J),s&&u(K),s&&u(X),s&&u(Q),s&&u(Z),t[24](null),R(tt)}}}function Et(e){let n,l,s,o,a,i,m,p,h,g,b,x,_,k,y,w,C,S,P,O,A,E,I,N,z,j,F,M,B,D,T,Y,q,V,G,J,K,X,Q,Z,tt,et,nt,lt;return o=new ct({}),_=new ct({}),S=new ct({}),F=new ct({}),q=new ct({}),X=new ct({}),nt=new ct({}),{c(){n=f("div"),n.textContent="Mode:",l=d(),s=f("div"),L(o.$$.fragment),a=d(),i=f("div"),i.textContent="STA",m=d(),p=f("div"),p.textContent="(join another network)",h=d(),g=f("div"),g.textContent="SSID:",b=d(),x=f("div"),L(_.$$.fragment),k=d(),y=f("div"),y.textContent="Pass:",w=d(),C=f("div"),L(S.$$.fragment),P=d(),O=f("div"),O.textContent="AP",A=d(),E=f("div"),E.textContent="(own access point)",I=d(),N=f("div"),N.textContent="SSID:",z=d(),j=f("div"),L(F.$$.fragment),M=d(),B=f("div"),B.textContent="Pass:",D=d(),T=f("div"),Y=v('class="value"'),L(q.$$.fragment),V=d(),G=f("div"),G.textContent="Hostname:",J=d(),K=f("div"),L(X.$$.fragment),Q=d(),Z=f("div"),Z.textContent="USB mode:",tt=d(),et=f("div"),L(nt.$$.fragment),$(n,"class","value-name svelte-121b41t"),$(s,"class","value svelte-121b41t"),$(i,"class","value-name splitter svelte-121b41t"),$(p,"class","value mobile-hidden svelte-121b41t"),$(g,"class","value-name svelte-121b41t"),$(x,"class","value svelte-121b41t"),$(y,"class","value-name svelte-121b41t"),$(C,"class","value svelte-121b41t"),$(O,"class","value-name splitter svelte-121b41t"),$(E,"class","value mobile-hidden svelte-121b41t"),$(N,"class","value-name svelte-121b41t"),$(j,"class","value svelte-121b41t"),$(B,"class","value-name svelte-121b41t"),$(T,"class","svelte-121b41t"),$(G,"class","value-name svelte-121b41t"),$(K,"class","value svelte-121b41t"),$(Z,"class","value-name svelte-121b41t"),$(et,"class","value svelte-121b41t")},m(t,e){r(t,n,e),r(t,l,e),r(t,s,e),H(o,s,null),r(t,a,e),r(t,i,e),r(t,m,e),r(t,p,e),r(t,h,e),r(t,g,e),r(t,b,e),r(t,x,e),H(_,x,null),r(t,k,e),r(t,y,e),r(t,w,e),r(t,C,e),H(S,C,null),r(t,P,e),r(t,O,e),r(t,A,e),r(t,E,e),r(t,I,e),r(t,N,e),r(t,z,e),r(t,j,e),H(F,j,null),r(t,M,e),r(t,B,e),r(t,D,e),r(t,T,e),c(T,Y),H(q,T,null),r(t,V,e),r(t,G,e),r(t,J,e),r(t,K,e),H(X,K,null),r(t,Q,e),r(t,Z,e),r(t,tt,e),r(t,et,e),H(nt,et,null),lt=!0},p:t,i(t){lt||(W(o.$$.fragment,t),W(_.$$.fragment,t),W(S.$$.fragment,t),W(F.$$.fragment,t),W(q.$$.fragment,t),W(X.$$.fragment,t),W(nt.$$.fragment,t),lt=!0)},o(t){U(o.$$.fragment,t),U(_.$$.fragment,t),U(S.$$.fragment,t),U(F.$$.fragment,t),U(q.$$.fragment,t),U(X.$$.fragment,t),U(nt.$$.fragment,t),lt=!1},d(t){t&&u(n),t&&u(l),t&&u(s),R(o),t&&u(a),t&&u(i),t&&u(m),t&&u(p),t&&u(h),t&&u(g),t&&u(b),t&&u(x),R(_),t&&u(k),t&&u(y),t&&u(w),t&&u(C),R(S),t&&u(P),t&&u(O),t&&u(A),t&&u(E),t&&u(I),t&&u(N),t&&u(z),t&&u(j),R(F),t&&u(M),t&&u(B),t&&u(D),t&&u(T),R(q),t&&u(V),t&&u(G),t&&u(J),t&&u(K),R(X),t&&u(Q),t&&u(Z),t&&u(tt),t&&u(et),R(nt)}}}function It(t){let e,n,l,s,o={ctx:t,current:null,token:null,hasCatch:!0,pending:jt,then:zt,catch:Nt,value:28,error:32,blocks:[,,,]};return Y(l=Kt(t[0]+"/api/v1/system/info"),o),{c(){e=f("tab-content"),n=f("div"),o.block.c(),$(n,"class","grid svelte-121b41t"),h(e,"class","svelte-121b41t")},m(t,l){r(t,e,l),c(e,n),o.block.m(n,o.anchor=null),o.mount=()=>n,o.anchor=null,s=!0},p(e,n){t=e,o.ctx=t,1&n[0]&&l!==(l=Kt(t[0]+"/api/v1/system/info"))&&Y(l,o)||q(o,t,n)},i(t){s||(W(o.block),s=!0)},o(t){for(let t=0;t<3;t+=1){U(o.blocks[t])}s=!1},d(t){t&&u(e),o.block.d(),o.token=null,o=null}}}function Nt(e){let n,l,s=e[32].message+"";return{c(){n=f("error"),l=v(s),$(n,"class","svelte-121b41t")},m(t,e){r(t,n,e),c(n,l)},p(t,e){1&e[0]&&s!==(s=t[32].message+"")&&g(l,s)},i:t,o:t,d(t){t&&u(n)}}}function zt(e){let n,l,s,o,a,i,m,p,h,b,x,_,k,y,w,C,S,P,O,A,E,I,N,z,j,F,M,B,D,T,W,U,Y,q,L,H,R,V,G,J,K,X,Q,Z,tt=Qt(e[28].ip)+"",et=Xt(e[28].mac)+"",nt=e[28].idf_version+"",lt=e[28].model+"",st=e[28].revision+"",ot=e[28].cores+"",at=e[28].heap.minimum_free_bytes+"",ct=e[28].heap.total_free_bytes+"",rt=e[28].heap.total_allocated_bytes+"",ut=e[28].heap.largest_free_block+"";return{c(){n=f("div"),n.textContent="IP:",l=d(),s=f("div"),o=v(tt),a=d(),i=f("div"),i.textContent="Mac:",m=d(),p=f("div"),h=v(et),b=d(),x=f("div"),x.textContent="IDF ver:",_=d(),k=f("div"),y=v(nt),w=d(),C=f("div"),C.textContent="Model:",S=d(),P=f("div"),O=v(lt),A=v("."),E=v(st),I=d(),N=v(ot),z=v("-core"),j=d(),F=f("div"),F.textContent="Min free:",M=d(),B=f("div"),D=v(at),T=d(),W=f("div"),W.textContent="Free:",U=d(),Y=f("div"),q=v(ct),L=d(),H=f("div"),H.textContent="Alloc:",R=d(),V=f("div"),G=v(rt),J=d(),K=f("div"),K.textContent="Max block:",X=d(),Q=f("div"),Z=v(ut),$(n,"class","value-name svelte-121b41t"),$(s,"class","value svelte-121b41t"),$(i,"class","value-name svelte-121b41t"),$(p,"class","value svelte-121b41t"),$(x,"class","value-name svelte-121b41t"),$(k,"class","value svelte-121b41t"),$(C,"class","value-name svelte-121b41t"),$(P,"class","value svelte-121b41t"),$(F,"class","value-name svelte-121b41t"),$(B,"class","value svelte-121b41t"),$(W,"class","value-name svelte-121b41t"),$(Y,"class","value svelte-121b41t"),$(H,"class","value-name svelte-121b41t"),$(V,"class","value svelte-121b41t"),$(K,"class","value-name svelte-121b41t"),$(Q,"class","value svelte-121b41t")},m(t,e){r(t,n,e),r(t,l,e),r(t,s,e),c(s,o),r(t,a,e),r(t,i,e),r(t,m,e),r(t,p,e),c(p,h),r(t,b,e),r(t,x,e),r(t,_,e),r(t,k,e),c(k,y),r(t,w,e),r(t,C,e),r(t,S,e),r(t,P,e),c(P,O),c(P,A),c(P,E),c(P,I),c(P,N),c(P,z),r(t,j,e),r(t,F,e),r(t,M,e),r(t,B,e),c(B,D),r(t,T,e),r(t,W,e),r(t,U,e),r(t,Y,e),c(Y,q),r(t,L,e),r(t,H,e),r(t,R,e),r(t,V,e),c(V,G),r(t,J,e),r(t,K,e),r(t,X,e),r(t,Q,e),c(Q,Z)},p(t,e){1&e[0]&&tt!==(tt=Qt(t[28].ip)+"")&&g(o,tt),1&e[0]&&et!==(et=Xt(t[28].mac)+"")&&g(h,et),1&e[0]&&nt!==(nt=t[28].idf_version+"")&&g(y,nt),1&e[0]&<!==(lt=t[28].model+"")&&g(O,lt),1&e[0]&&st!==(st=t[28].revision+"")&&g(E,st),1&e[0]&&ot!==(ot=t[28].cores+"")&&g(N,ot),1&e[0]&&at!==(at=t[28].heap.minimum_free_bytes+"")&&g(D,at),1&e[0]&&ct!==(ct=t[28].heap.total_free_bytes+"")&&g(q,ct),1&e[0]&&rt!==(rt=t[28].heap.total_allocated_bytes+"")&&g(G,rt),1&e[0]&&ut!==(ut=t[28].heap.largest_free_block+"")&&g(Z,ut)},i:t,o:t,d(t){t&&u(n),t&&u(l),t&&u(s),t&&u(a),t&&u(i),t&&u(m),t&&u(p),t&&u(b),t&&u(x),t&&u(_),t&&u(k),t&&u(w),t&&u(C),t&&u(S),t&&u(P),t&&u(j),t&&u(F),t&&u(M),t&&u(B),t&&u(T),t&&u(W),t&&u(U),t&&u(Y),t&&u(L),t&&u(H),t&&u(R),t&&u(V),t&&u(J),t&&u(K),t&&u(X),t&&u(Q)}}}function jt(e){let n,l,s,o,a;return o=new ct({}),{c(){n=f("div"),n.textContent="IP:",l=d(),s=f("div"),L(o.$$.fragment),$(n,"class","value-name svelte-121b41t"),$(s,"class","value svelte-121b41t")},m(t,e){r(t,n,e),r(t,l,e),r(t,s,e),H(o,s,null),a=!0},p:t,i(t){a||(W(o.$$.fragment,t),a=!0)},o(t){U(o.$$.fragment,t),a=!1},d(t){t&&u(n),t&&u(l),t&&u(s),R(o)}}}function Ft(t){let e,n,l,s={ctx:t,current:null,token:null,hasCatch:!0,pending:Tt,then:Bt,catch:Mt,value:28,error:32,blocks:[,,,]};return Y(n=Kt(t[0]+"/api/v1/system/tasks"),s),{c(){e=f("tab-content"),s.block.c(),h(e,"class","svelte-121b41t")},m(t,n){r(t,e,n),s.block.m(e,s.anchor=null),s.mount=()=>e,s.anchor=null,l=!0},p(e,l){t=e,s.ctx=t,1&l[0]&&n!==(n=Kt(t[0]+"/api/v1/system/tasks"))&&Y(n,s)||q(s,t,l)},i(t){l||(W(s.block),l=!0)},o(t){for(let t=0;t<3;t+=1){U(s.blocks[t])}l=!1},d(t){t&&u(e),s.block.d(),s.token=null,s=null}}}function Mt(e){let n,l,s=e[32].message+"";return{c(){n=f("error"),l=v(s),$(n,"class","svelte-121b41t")},m(t,e){r(t,n,e),c(n,l)},p(t,e){1&e[0]&&s!==(s=t[32].message+"")&&g(l,s)},i:t,o:t,d(t){t&&u(n)}}}function Bt(e){let n,l,s,o,a,v,m,p,g,b,x,_=e[28].list.sort(Zt),k=[];for(let t=0;t<_.length;t+=1)k[t]=Dt(St(e,_,t));return{c(){n=f("task-list"),l=f("span"),l.textContent="Name",s=d(),o=f("span"),o.textContent="State",a=d(),v=f("span"),v.textContent="Handle",m=d(),p=f("span"),p.textContent="Stack base",g=d(),b=f("span"),b.textContent="WMRK",x=d();for(let t=0;tU(a[t],1,1,(()=>{a[t]=null}));return{c(){e=f("div"),e.textContent="Nets:",n=d();for(let t=0;te.parentNode,s.anchor=e,l=!0},p(e,l){t=e,s.ctx=t,1&l[0]&&n!==(n=Kt(t[0]+"/api/v1/wifi/list"))&&Y(n,s)||q(s,t,l)},i(t){l||(W(s.block),l=!0)},o(t){for(let t=0;t<3;t+=1){U(s.blocks[t])}l=!1},d(t){t&&u(e),s.block.d(t),s.token=null,s=null}}}function Ht(e){let n,l;return n=new ct({}),{c(){L(n.$$.fragment)},m(t,e){H(n,t,e),l=!0},p:t,i(t){l||(W(n.$$.fragment,t),l=!0)},o(t){U(n.$$.fragment,t),l=!1},d(t){R(n,t)}}}function Rt(e){let n;return{c(){n=v(e[3])},m(t,e){r(t,n,e)},p(t,e){8&e[0]&&g(n,t[3])},i:t,o:t,d(t){t&&u(n)}}}function Vt(t){let e,n,l,s;const o=[Rt,Ht],a=[];function c(t,e){return""!=t[3]?0:1}return e=c(t),n=a[e]=o[e](t),{c(){n.c(),l=m()},m(t,n){a[e].m(t,n),r(t,l,n),s=!0},p(t,s){let r=e;e=c(t),e===r?a[e].p(t,s):(D(),U(a[r],1,1,(()=>{a[r]=null})),T(),n=a[e],n?n.p(t,s):(n=a[e]=o[e](t),n.c()),W(n,1),n.m(l.parentNode,l))},i(t){s||(W(n),s=!0)},o(t){U(n),s=!1},d(t){a[e].d(t),t&&u(l)}}}function Gt(t){let e,n,s,o,a,i,v,m,g,b,_,k,y,w,C,S,P,O,A="WiFi"==t[11]&&Pt(t),E="SYS"==t[11]&&It(t),I="PS"==t[11]&&Ft(t);return y=new nt({props:{$$slots:{default:[Lt]},$$scope:{ctx:t}}}),t[26](y),C=new nt({props:{$$slots:{default:[Vt]},$$scope:{ctx:t}}}),t[27](C),{c(){e=f("main"),n=f("tabs"),s=f("tab"),s.textContent="WiFi",o=d(),a=f("tab"),a.textContent="SYS",i=d(),v=f("tab"),v.textContent="PS",m=d(),g=f("tabs-content"),A&&A.c(),b=d(),E&&E.c(),_=d(),I&&I.c(),k=d(),L(y.$$.fragment),w=d(),L(C.$$.fragment),$(s,"class","svelte-121b41t"),x(s,"selected","WiFi"==t[11]),$(a,"class","svelte-121b41t"),x(a,"selected","SYS"==t[11]),$(v,"class","svelte-121b41t"),x(v,"selected","PS"==t[11]),$(n,"class","svelte-121b41t"),h(g,"class","svelte-121b41t"),$(e,"class","svelte-121b41t")},m(l,u){r(l,e,u),c(e,n),c(n,s),c(n,o),c(n,a),c(n,i),c(n,v),c(e,m),c(e,g),A&&A.m(g,null),c(g,b),E&&E.m(g,null),c(g,_),I&&I.m(g,null),c(e,k),H(y,e,null),c(e,w),H(C,e,null),S=!0,P||(O=[p(s,"click",t[15]),p(a,"click",t[16]),p(v,"click",t[17])],P=!0)},p(t,e){2048&e[0]&&x(s,"selected","WiFi"==t[11]),2048&e[0]&&x(a,"selected","SYS"==t[11]),2048&e[0]&&x(v,"selected","PS"==t[11]),"WiFi"==t[11]?A?(A.p(t,e),2048&e[0]&&W(A,1)):(A=Pt(t),A.c(),W(A,1),A.m(g,b)):A&&(D(),U(A,1,1,(()=>{A=null})),T()),"SYS"==t[11]?E?(E.p(t,e),2048&e[0]&&W(E,1)):(E=It(t),E.c(),W(E,1),E.m(g,_)):E&&(D(),U(E,1,1,(()=>{E=null})),T()),"PS"==t[11]?I?(I.p(t,e),2048&e[0]&&W(I,1)):(I=Ft(t),I.c(),W(I,1),I.m(g,null)):I&&(D(),U(I,1,1,(()=>{I=null})),T());const n={};259&e[0]|32&e[1]&&(n.$$scope={dirty:e,ctx:t}),y.$set(n);const l={};8&e[0]|32&e[1]&&(l.$$scope={dirty:e,ctx:t}),C.$set(l)},i(t){S||(W(A),W(E),W(I),W(y.$$.fragment,t),W(C.$$.fragment,t),S=!0)},o(t){U(A),U(E),U(I),U(y.$$.fragment,t),U(C.$$.fragment,t),S=!1},d(n){n&&u(e),A&&A.d(),E&&E.d(),I&&I.d(),t[26](null),R(y),t[27](null),R(C),P=!1,l(O)}}}async function Jt(t,e){const n=await fetch(t,{method:"POST",body:JSON.stringify(e)});return await n.json()}async function Kt(t){const e=await fetch(t,{method:"GET"});return await e.json()}function Xt(t){let e="";for(let n=0;n>=8}return e.join(".")}const Zt=function(t,e){return t.number-e.number};function te(t,e,n){let l,s,o,a,c,r,u,i,f,v,d="WiFi";function m(t){n(11,d=t),localStorage.setItem("current_tab",d)}null!=localStorage.getItem("current_tab")&&(d=localStorage.getItem("current_tab"));return["",l,s,o,a,c,r,u,i,f,v,d,async function(){n(3,o=""),s.show(),await Jt("/api/v1/wifi/set_credentials",{wifi_mode:a.get_value(),usb_mode:c.get_value(),ap_ssid:r.get_value(),ap_pass:u.get_value(),sta_ssid:i.get_value(),sta_pass:f.get_value(),hostname:v.get_value()}).then((t=>{t.error?n(3,o=t.error):n(3,o="Saved!")}))},async function(){Jt("/api/v1/system/reboot",{}),n(3,o="Rebooted"),s.show()},m,()=>{m("WiFi")},()=>{m("SYS")},()=>{m("PS")},function(t){S[t?"unshift":"push"]((()=>{a=t,n(4,a)}))},function(t){S[t?"unshift":"push"]((()=>{i=t,n(8,i)}))},function(t){S[t?"unshift":"push"]((()=>{f=t,n(9,f)}))},function(t){S[t?"unshift":"push"]((()=>{r=t,n(6,r)}))},function(t){S[t?"unshift":"push"]((()=>{u=t,n(7,u)}))},function(t){S[t?"unshift":"push"]((()=>{v=t,n(10,v)}))},function(t){S[t?"unshift":"push"]((()=>{c=t,n(5,c)}))},t=>{l.close(),i.set_value(t.ssid)},function(t){S[t?"unshift":"push"]((()=>{l=t,n(1,l)}))},function(t){S[t?"unshift":"push"]((()=>{s=t,n(2,s)}))}]}return new class extends J{constructor(t){super(),G(this,t,te,Gt,o,{},null,[-1,-1])}}({target:document.body})}(); //# sourceMappingURL=bundle.js.map diff --git a/components/svelte-portal/public/build/bundle.js.map b/components/svelte-portal/public/build/bundle.js.map index 673505d..c8e7aed 100644 --- a/components/svelte-portal/public/build/bundle.js.map +++ b/components/svelte-portal/public/build/bundle.js.map @@ -1 +1 @@ -{"version":3,"file":"bundle.js","sources":["../../node_modules/svelte/internal/index.mjs","../../src/Button.svelte","../../src/Popup.svelte","../../src/Input.svelte","../../src/Spinner.svelte","../../src/SpinnerBig.svelte","../../src/Select.svelte","../../src/ButtonInline.svelte","../../src/App.svelte","../../src/main.js"],"sourcesContent":["function noop() { }\nconst identity = x => x;\nfunction assign(tar, src) {\n // @ts-ignore\n for (const k in src)\n tar[k] = src[k];\n return tar;\n}\nfunction is_promise(value) {\n return value && typeof value === 'object' && typeof value.then === 'function';\n}\nfunction add_location(element, file, line, column, char) {\n element.__svelte_meta = {\n loc: { file, line, column, char }\n };\n}\nfunction run(fn) {\n return fn();\n}\nfunction blank_object() {\n return Object.create(null);\n}\nfunction run_all(fns) {\n fns.forEach(run);\n}\nfunction is_function(thing) {\n return typeof thing === 'function';\n}\nfunction safe_not_equal(a, b) {\n return a != a ? b == b : a !== b || ((a && typeof a === 'object') || typeof a === 'function');\n}\nlet src_url_equal_anchor;\nfunction src_url_equal(element_src, url) {\n if (!src_url_equal_anchor) {\n src_url_equal_anchor = document.createElement('a');\n }\n src_url_equal_anchor.href = url;\n return element_src === src_url_equal_anchor.href;\n}\nfunction not_equal(a, b) {\n return a != a ? b == b : a !== b;\n}\nfunction is_empty(obj) {\n return Object.keys(obj).length === 0;\n}\nfunction validate_store(store, name) {\n if (store != null && typeof store.subscribe !== 'function') {\n throw new Error(`'${name}' is not a store with a 'subscribe' method`);\n }\n}\nfunction subscribe(store, ...callbacks) {\n if (store == null) {\n return noop;\n }\n const unsub = store.subscribe(...callbacks);\n return unsub.unsubscribe ? () => unsub.unsubscribe() : unsub;\n}\nfunction get_store_value(store) {\n let value;\n subscribe(store, _ => value = _)();\n return value;\n}\nfunction component_subscribe(component, store, callback) {\n component.$$.on_destroy.push(subscribe(store, callback));\n}\nfunction create_slot(definition, ctx, $$scope, fn) {\n if (definition) {\n const slot_ctx = get_slot_context(definition, ctx, $$scope, fn);\n return definition[0](slot_ctx);\n }\n}\nfunction get_slot_context(definition, ctx, $$scope, fn) {\n return definition[1] && fn\n ? assign($$scope.ctx.slice(), definition[1](fn(ctx)))\n : $$scope.ctx;\n}\nfunction get_slot_changes(definition, $$scope, dirty, fn) {\n if (definition[2] && fn) {\n const lets = definition[2](fn(dirty));\n if ($$scope.dirty === undefined) {\n return lets;\n }\n if (typeof lets === 'object') {\n const merged = [];\n const len = Math.max($$scope.dirty.length, lets.length);\n for (let i = 0; i < len; i += 1) {\n merged[i] = $$scope.dirty[i] | lets[i];\n }\n return merged;\n }\n return $$scope.dirty | lets;\n }\n return $$scope.dirty;\n}\nfunction update_slot_base(slot, slot_definition, ctx, $$scope, slot_changes, get_slot_context_fn) {\n if (slot_changes) {\n const slot_context = get_slot_context(slot_definition, ctx, $$scope, get_slot_context_fn);\n slot.p(slot_context, slot_changes);\n }\n}\nfunction update_slot(slot, slot_definition, ctx, $$scope, dirty, get_slot_changes_fn, get_slot_context_fn) {\n const slot_changes = get_slot_changes(slot_definition, $$scope, dirty, get_slot_changes_fn);\n update_slot_base(slot, slot_definition, ctx, $$scope, slot_changes, get_slot_context_fn);\n}\nfunction get_all_dirty_from_scope($$scope) {\n if ($$scope.ctx.length > 32) {\n const dirty = [];\n const length = $$scope.ctx.length / 32;\n for (let i = 0; i < length; i++) {\n dirty[i] = -1;\n }\n return dirty;\n }\n return -1;\n}\nfunction exclude_internal_props(props) {\n const result = {};\n for (const k in props)\n if (k[0] !== '$')\n result[k] = props[k];\n return result;\n}\nfunction compute_rest_props(props, keys) {\n const rest = {};\n keys = new Set(keys);\n for (const k in props)\n if (!keys.has(k) && k[0] !== '$')\n rest[k] = props[k];\n return rest;\n}\nfunction compute_slots(slots) {\n const result = {};\n for (const key in slots) {\n result[key] = true;\n }\n return result;\n}\nfunction once(fn) {\n let ran = false;\n return function (...args) {\n if (ran)\n return;\n ran = true;\n fn.call(this, ...args);\n };\n}\nfunction null_to_empty(value) {\n return value == null ? '' : value;\n}\nfunction set_store_value(store, ret, value) {\n store.set(value);\n return ret;\n}\nconst has_prop = (obj, prop) => Object.prototype.hasOwnProperty.call(obj, prop);\nfunction action_destroyer(action_result) {\n return action_result && is_function(action_result.destroy) ? action_result.destroy : noop;\n}\n\nconst is_client = typeof window !== 'undefined';\nlet now = is_client\n ? () => window.performance.now()\n : () => Date.now();\nlet raf = is_client ? cb => requestAnimationFrame(cb) : noop;\n// used internally for testing\nfunction set_now(fn) {\n now = fn;\n}\nfunction set_raf(fn) {\n raf = fn;\n}\n\nconst tasks = new Set();\nfunction run_tasks(now) {\n tasks.forEach(task => {\n if (!task.c(now)) {\n tasks.delete(task);\n task.f();\n }\n });\n if (tasks.size !== 0)\n raf(run_tasks);\n}\n/**\n * For testing purposes only!\n */\nfunction clear_loops() {\n tasks.clear();\n}\n/**\n * Creates a new task that runs on each raf frame\n * until it returns a falsy value or is aborted\n */\nfunction loop(callback) {\n let task;\n if (tasks.size === 0)\n raf(run_tasks);\n return {\n promise: new Promise(fulfill => {\n tasks.add(task = { c: callback, f: fulfill });\n }),\n abort() {\n tasks.delete(task);\n }\n };\n}\n\n// Track which nodes are claimed during hydration. Unclaimed nodes can then be removed from the DOM\n// at the end of hydration without touching the remaining nodes.\nlet is_hydrating = false;\nfunction start_hydrating() {\n is_hydrating = true;\n}\nfunction end_hydrating() {\n is_hydrating = false;\n}\nfunction upper_bound(low, high, key, value) {\n // Return first index of value larger than input value in the range [low, high)\n while (low < high) {\n const mid = low + ((high - low) >> 1);\n if (key(mid) <= value) {\n low = mid + 1;\n }\n else {\n high = mid;\n }\n }\n return low;\n}\nfunction init_hydrate(target) {\n if (target.hydrate_init)\n return;\n target.hydrate_init = true;\n // We know that all children have claim_order values since the unclaimed have been detached if target is not \n let children = target.childNodes;\n // If target is , there may be children without claim_order\n if (target.nodeName === 'HEAD') {\n const myChildren = [];\n for (let i = 0; i < children.length; i++) {\n const node = children[i];\n if (node.claim_order !== undefined) {\n myChildren.push(node);\n }\n }\n children = myChildren;\n }\n /*\n * Reorder claimed children optimally.\n * We can reorder claimed children optimally by finding the longest subsequence of\n * nodes that are already claimed in order and only moving the rest. The longest\n * subsequence subsequence of nodes that are claimed in order can be found by\n * computing the longest increasing subsequence of .claim_order values.\n *\n * This algorithm is optimal in generating the least amount of reorder operations\n * possible.\n *\n * Proof:\n * We know that, given a set of reordering operations, the nodes that do not move\n * always form an increasing subsequence, since they do not move among each other\n * meaning that they must be already ordered among each other. Thus, the maximal\n * set of nodes that do not move form a longest increasing subsequence.\n */\n // Compute longest increasing subsequence\n // m: subsequence length j => index k of smallest value that ends an increasing subsequence of length j\n const m = new Int32Array(children.length + 1);\n // Predecessor indices + 1\n const p = new Int32Array(children.length);\n m[0] = -1;\n let longest = 0;\n for (let i = 0; i < children.length; i++) {\n const current = children[i].claim_order;\n // Find the largest subsequence length such that it ends in a value less than our current value\n // upper_bound returns first greater value, so we subtract one\n // with fast path for when we are on the current longest subsequence\n const seqLen = ((longest > 0 && children[m[longest]].claim_order <= current) ? longest + 1 : upper_bound(1, longest, idx => children[m[idx]].claim_order, current)) - 1;\n p[i] = m[seqLen] + 1;\n const newLen = seqLen + 1;\n // We can guarantee that current is the smallest value. Otherwise, we would have generated a longer sequence.\n m[newLen] = i;\n longest = Math.max(newLen, longest);\n }\n // The longest increasing subsequence of nodes (initially reversed)\n const lis = [];\n // The rest of the nodes, nodes that will be moved\n const toMove = [];\n let last = children.length - 1;\n for (let cur = m[longest] + 1; cur != 0; cur = p[cur - 1]) {\n lis.push(children[cur - 1]);\n for (; last >= cur; last--) {\n toMove.push(children[last]);\n }\n last--;\n }\n for (; last >= 0; last--) {\n toMove.push(children[last]);\n }\n lis.reverse();\n // We sort the nodes being moved to guarantee that their insertion order matches the claim order\n toMove.sort((a, b) => a.claim_order - b.claim_order);\n // Finally, we move the nodes\n for (let i = 0, j = 0; i < toMove.length; i++) {\n while (j < lis.length && toMove[i].claim_order >= lis[j].claim_order) {\n j++;\n }\n const anchor = j < lis.length ? lis[j] : null;\n target.insertBefore(toMove[i], anchor);\n }\n}\nfunction append(target, node) {\n target.appendChild(node);\n}\nfunction append_styles(target, style_sheet_id, styles) {\n const append_styles_to = get_root_for_style(target);\n if (!append_styles_to.getElementById(style_sheet_id)) {\n const style = element('style');\n style.id = style_sheet_id;\n style.textContent = styles;\n append_stylesheet(append_styles_to, style);\n }\n}\nfunction get_root_for_style(node) {\n if (!node)\n return document;\n const root = node.getRootNode ? node.getRootNode() : node.ownerDocument;\n if (root && root.host) {\n return root;\n }\n return node.ownerDocument;\n}\nfunction append_empty_stylesheet(node) {\n const style_element = element('style');\n append_stylesheet(get_root_for_style(node), style_element);\n return style_element;\n}\nfunction append_stylesheet(node, style) {\n append(node.head || node, style);\n}\nfunction append_hydration(target, node) {\n if (is_hydrating) {\n init_hydrate(target);\n if ((target.actual_end_child === undefined) || ((target.actual_end_child !== null) && (target.actual_end_child.parentElement !== target))) {\n target.actual_end_child = target.firstChild;\n }\n // Skip nodes of undefined ordering\n while ((target.actual_end_child !== null) && (target.actual_end_child.claim_order === undefined)) {\n target.actual_end_child = target.actual_end_child.nextSibling;\n }\n if (node !== target.actual_end_child) {\n // We only insert if the ordering of this node should be modified or the parent node is not target\n if (node.claim_order !== undefined || node.parentNode !== target) {\n target.insertBefore(node, target.actual_end_child);\n }\n }\n else {\n target.actual_end_child = node.nextSibling;\n }\n }\n else if (node.parentNode !== target || node.nextSibling !== null) {\n target.appendChild(node);\n }\n}\nfunction insert(target, node, anchor) {\n target.insertBefore(node, anchor || null);\n}\nfunction insert_hydration(target, node, anchor) {\n if (is_hydrating && !anchor) {\n append_hydration(target, node);\n }\n else if (node.parentNode !== target || node.nextSibling != anchor) {\n target.insertBefore(node, anchor || null);\n }\n}\nfunction detach(node) {\n node.parentNode.removeChild(node);\n}\nfunction destroy_each(iterations, detaching) {\n for (let i = 0; i < iterations.length; i += 1) {\n if (iterations[i])\n iterations[i].d(detaching);\n }\n}\nfunction element(name) {\n return document.createElement(name);\n}\nfunction element_is(name, is) {\n return document.createElement(name, { is });\n}\nfunction object_without_properties(obj, exclude) {\n const target = {};\n for (const k in obj) {\n if (has_prop(obj, k)\n // @ts-ignore\n && exclude.indexOf(k) === -1) {\n // @ts-ignore\n target[k] = obj[k];\n }\n }\n return target;\n}\nfunction svg_element(name) {\n return document.createElementNS('http://www.w3.org/2000/svg', name);\n}\nfunction text(data) {\n return document.createTextNode(data);\n}\nfunction space() {\n return text(' ');\n}\nfunction empty() {\n return text('');\n}\nfunction listen(node, event, handler, options) {\n node.addEventListener(event, handler, options);\n return () => node.removeEventListener(event, handler, options);\n}\nfunction prevent_default(fn) {\n return function (event) {\n event.preventDefault();\n // @ts-ignore\n return fn.call(this, event);\n };\n}\nfunction stop_propagation(fn) {\n return function (event) {\n event.stopPropagation();\n // @ts-ignore\n return fn.call(this, event);\n };\n}\nfunction self(fn) {\n return function (event) {\n // @ts-ignore\n if (event.target === this)\n fn.call(this, event);\n };\n}\nfunction trusted(fn) {\n return function (event) {\n // @ts-ignore\n if (event.isTrusted)\n fn.call(this, event);\n };\n}\nfunction attr(node, attribute, value) {\n if (value == null)\n node.removeAttribute(attribute);\n else if (node.getAttribute(attribute) !== value)\n node.setAttribute(attribute, value);\n}\nfunction set_attributes(node, attributes) {\n // @ts-ignore\n const descriptors = Object.getOwnPropertyDescriptors(node.__proto__);\n for (const key in attributes) {\n if (attributes[key] == null) {\n node.removeAttribute(key);\n }\n else if (key === 'style') {\n node.style.cssText = attributes[key];\n }\n else if (key === '__value') {\n node.value = node[key] = attributes[key];\n }\n else if (descriptors[key] && descriptors[key].set) {\n node[key] = attributes[key];\n }\n else {\n attr(node, key, attributes[key]);\n }\n }\n}\nfunction set_svg_attributes(node, attributes) {\n for (const key in attributes) {\n attr(node, key, attributes[key]);\n }\n}\nfunction set_custom_element_data(node, prop, value) {\n if (prop in node) {\n node[prop] = typeof node[prop] === 'boolean' && value === '' ? true : value;\n }\n else {\n attr(node, prop, value);\n }\n}\nfunction xlink_attr(node, attribute, value) {\n node.setAttributeNS('http://www.w3.org/1999/xlink', attribute, value);\n}\nfunction get_binding_group_value(group, __value, checked) {\n const value = new Set();\n for (let i = 0; i < group.length; i += 1) {\n if (group[i].checked)\n value.add(group[i].__value);\n }\n if (!checked) {\n value.delete(__value);\n }\n return Array.from(value);\n}\nfunction to_number(value) {\n return value === '' ? null : +value;\n}\nfunction time_ranges_to_array(ranges) {\n const array = [];\n for (let i = 0; i < ranges.length; i += 1) {\n array.push({ start: ranges.start(i), end: ranges.end(i) });\n }\n return array;\n}\nfunction children(element) {\n return Array.from(element.childNodes);\n}\nfunction init_claim_info(nodes) {\n if (nodes.claim_info === undefined) {\n nodes.claim_info = { last_index: 0, total_claimed: 0 };\n }\n}\nfunction claim_node(nodes, predicate, processNode, createNode, dontUpdateLastIndex = false) {\n // Try to find nodes in an order such that we lengthen the longest increasing subsequence\n init_claim_info(nodes);\n const resultNode = (() => {\n // We first try to find an element after the previous one\n for (let i = nodes.claim_info.last_index; i < nodes.length; i++) {\n const node = nodes[i];\n if (predicate(node)) {\n const replacement = processNode(node);\n if (replacement === undefined) {\n nodes.splice(i, 1);\n }\n else {\n nodes[i] = replacement;\n }\n if (!dontUpdateLastIndex) {\n nodes.claim_info.last_index = i;\n }\n return node;\n }\n }\n // Otherwise, we try to find one before\n // We iterate in reverse so that we don't go too far back\n for (let i = nodes.claim_info.last_index - 1; i >= 0; i--) {\n const node = nodes[i];\n if (predicate(node)) {\n const replacement = processNode(node);\n if (replacement === undefined) {\n nodes.splice(i, 1);\n }\n else {\n nodes[i] = replacement;\n }\n if (!dontUpdateLastIndex) {\n nodes.claim_info.last_index = i;\n }\n else if (replacement === undefined) {\n // Since we spliced before the last_index, we decrease it\n nodes.claim_info.last_index--;\n }\n return node;\n }\n }\n // If we can't find any matching node, we create a new one\n return createNode();\n })();\n resultNode.claim_order = nodes.claim_info.total_claimed;\n nodes.claim_info.total_claimed += 1;\n return resultNode;\n}\nfunction claim_element_base(nodes, name, attributes, create_element) {\n return claim_node(nodes, (node) => node.nodeName === name, (node) => {\n const remove = [];\n for (let j = 0; j < node.attributes.length; j++) {\n const attribute = node.attributes[j];\n if (!attributes[attribute.name]) {\n remove.push(attribute.name);\n }\n }\n remove.forEach(v => node.removeAttribute(v));\n return undefined;\n }, () => create_element(name));\n}\nfunction claim_element(nodes, name, attributes) {\n return claim_element_base(nodes, name, attributes, element);\n}\nfunction claim_svg_element(nodes, name, attributes) {\n return claim_element_base(nodes, name, attributes, svg_element);\n}\nfunction claim_text(nodes, data) {\n return claim_node(nodes, (node) => node.nodeType === 3, (node) => {\n const dataStr = '' + data;\n if (node.data.startsWith(dataStr)) {\n if (node.data.length !== dataStr.length) {\n return node.splitText(dataStr.length);\n }\n }\n else {\n node.data = dataStr;\n }\n }, () => text(data), true // Text nodes should not update last index since it is likely not worth it to eliminate an increasing subsequence of actual elements\n );\n}\nfunction claim_space(nodes) {\n return claim_text(nodes, ' ');\n}\nfunction find_comment(nodes, text, start) {\n for (let i = start; i < nodes.length; i += 1) {\n const node = nodes[i];\n if (node.nodeType === 8 /* comment node */ && node.textContent.trim() === text) {\n return i;\n }\n }\n return nodes.length;\n}\nfunction claim_html_tag(nodes) {\n // find html opening tag\n const start_index = find_comment(nodes, 'HTML_TAG_START', 0);\n const end_index = find_comment(nodes, 'HTML_TAG_END', start_index);\n if (start_index === end_index) {\n return new HtmlTagHydration();\n }\n init_claim_info(nodes);\n const html_tag_nodes = nodes.splice(start_index, end_index + 1);\n detach(html_tag_nodes[0]);\n detach(html_tag_nodes[html_tag_nodes.length - 1]);\n const claimed_nodes = html_tag_nodes.slice(1, html_tag_nodes.length - 1);\n for (const n of claimed_nodes) {\n n.claim_order = nodes.claim_info.total_claimed;\n nodes.claim_info.total_claimed += 1;\n }\n return new HtmlTagHydration(claimed_nodes);\n}\nfunction set_data(text, data) {\n data = '' + data;\n if (text.wholeText !== data)\n text.data = data;\n}\nfunction set_input_value(input, value) {\n input.value = value == null ? '' : value;\n}\nfunction set_input_type(input, type) {\n try {\n input.type = type;\n }\n catch (e) {\n // do nothing\n }\n}\nfunction set_style(node, key, value, important) {\n node.style.setProperty(key, value, important ? 'important' : '');\n}\nfunction select_option(select, value) {\n for (let i = 0; i < select.options.length; i += 1) {\n const option = select.options[i];\n if (option.__value === value) {\n option.selected = true;\n return;\n }\n }\n select.selectedIndex = -1; // no option should be selected\n}\nfunction select_options(select, value) {\n for (let i = 0; i < select.options.length; i += 1) {\n const option = select.options[i];\n option.selected = ~value.indexOf(option.__value);\n }\n}\nfunction select_value(select) {\n const selected_option = select.querySelector(':checked') || select.options[0];\n return selected_option && selected_option.__value;\n}\nfunction select_multiple_value(select) {\n return [].map.call(select.querySelectorAll(':checked'), option => option.__value);\n}\n// unfortunately this can't be a constant as that wouldn't be tree-shakeable\n// so we cache the result instead\nlet crossorigin;\nfunction is_crossorigin() {\n if (crossorigin === undefined) {\n crossorigin = false;\n try {\n if (typeof window !== 'undefined' && window.parent) {\n void window.parent.document;\n }\n }\n catch (error) {\n crossorigin = true;\n }\n }\n return crossorigin;\n}\nfunction add_resize_listener(node, fn) {\n const computed_style = getComputedStyle(node);\n if (computed_style.position === 'static') {\n node.style.position = 'relative';\n }\n const iframe = element('iframe');\n iframe.setAttribute('style', 'display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%; ' +\n 'overflow: hidden; border: 0; opacity: 0; pointer-events: none; z-index: -1;');\n iframe.setAttribute('aria-hidden', 'true');\n iframe.tabIndex = -1;\n const crossorigin = is_crossorigin();\n let unsubscribe;\n if (crossorigin) {\n iframe.src = \"data:text/html,\";\n unsubscribe = listen(window, 'message', (event) => {\n if (event.source === iframe.contentWindow)\n fn();\n });\n }\n else {\n iframe.src = 'about:blank';\n iframe.onload = () => {\n unsubscribe = listen(iframe.contentWindow, 'resize', fn);\n };\n }\n append(node, iframe);\n return () => {\n if (crossorigin) {\n unsubscribe();\n }\n else if (unsubscribe && iframe.contentWindow) {\n unsubscribe();\n }\n detach(iframe);\n };\n}\nfunction toggle_class(element, name, toggle) {\n element.classList[toggle ? 'add' : 'remove'](name);\n}\nfunction custom_event(type, detail, bubbles = false) {\n const e = document.createEvent('CustomEvent');\n e.initCustomEvent(type, bubbles, false, detail);\n return e;\n}\nfunction query_selector_all(selector, parent = document.body) {\n return Array.from(parent.querySelectorAll(selector));\n}\nclass HtmlTag {\n constructor() {\n this.e = this.n = null;\n }\n c(html) {\n this.h(html);\n }\n m(html, target, anchor = null) {\n if (!this.e) {\n this.e = element(target.nodeName);\n this.t = target;\n this.c(html);\n }\n this.i(anchor);\n }\n h(html) {\n this.e.innerHTML = html;\n this.n = Array.from(this.e.childNodes);\n }\n i(anchor) {\n for (let i = 0; i < this.n.length; i += 1) {\n insert(this.t, this.n[i], anchor);\n }\n }\n p(html) {\n this.d();\n this.h(html);\n this.i(this.a);\n }\n d() {\n this.n.forEach(detach);\n }\n}\nclass HtmlTagHydration extends HtmlTag {\n constructor(claimed_nodes) {\n super();\n this.e = this.n = null;\n this.l = claimed_nodes;\n }\n c(html) {\n if (this.l) {\n this.n = this.l;\n }\n else {\n super.c(html);\n }\n }\n i(anchor) {\n for (let i = 0; i < this.n.length; i += 1) {\n insert_hydration(this.t, this.n[i], anchor);\n }\n }\n}\nfunction attribute_to_object(attributes) {\n const result = {};\n for (const attribute of attributes) {\n result[attribute.name] = attribute.value;\n }\n return result;\n}\nfunction get_custom_elements_slots(element) {\n const result = {};\n element.childNodes.forEach((node) => {\n result[node.slot || 'default'] = true;\n });\n return result;\n}\n\nconst active_docs = new Set();\nlet active = 0;\n// https://github.com/darkskyapp/string-hash/blob/master/index.js\nfunction hash(str) {\n let hash = 5381;\n let i = str.length;\n while (i--)\n hash = ((hash << 5) - hash) ^ str.charCodeAt(i);\n return hash >>> 0;\n}\nfunction create_rule(node, a, b, duration, delay, ease, fn, uid = 0) {\n const step = 16.666 / duration;\n let keyframes = '{\\n';\n for (let p = 0; p <= 1; p += step) {\n const t = a + (b - a) * ease(p);\n keyframes += p * 100 + `%{${fn(t, 1 - t)}}\\n`;\n }\n const rule = keyframes + `100% {${fn(b, 1 - b)}}\\n}`;\n const name = `__svelte_${hash(rule)}_${uid}`;\n const doc = get_root_for_style(node);\n active_docs.add(doc);\n const stylesheet = doc.__svelte_stylesheet || (doc.__svelte_stylesheet = append_empty_stylesheet(node).sheet);\n const current_rules = doc.__svelte_rules || (doc.__svelte_rules = {});\n if (!current_rules[name]) {\n current_rules[name] = true;\n stylesheet.insertRule(`@keyframes ${name} ${rule}`, stylesheet.cssRules.length);\n }\n const animation = node.style.animation || '';\n node.style.animation = `${animation ? `${animation}, ` : ''}${name} ${duration}ms linear ${delay}ms 1 both`;\n active += 1;\n return name;\n}\nfunction delete_rule(node, name) {\n const previous = (node.style.animation || '').split(', ');\n const next = previous.filter(name\n ? anim => anim.indexOf(name) < 0 // remove specific animation\n : anim => anim.indexOf('__svelte') === -1 // remove all Svelte animations\n );\n const deleted = previous.length - next.length;\n if (deleted) {\n node.style.animation = next.join(', ');\n active -= deleted;\n if (!active)\n clear_rules();\n }\n}\nfunction clear_rules() {\n raf(() => {\n if (active)\n return;\n active_docs.forEach(doc => {\n const stylesheet = doc.__svelte_stylesheet;\n let i = stylesheet.cssRules.length;\n while (i--)\n stylesheet.deleteRule(i);\n doc.__svelte_rules = {};\n });\n active_docs.clear();\n });\n}\n\nfunction create_animation(node, from, fn, params) {\n if (!from)\n return noop;\n const to = node.getBoundingClientRect();\n if (from.left === to.left && from.right === to.right && from.top === to.top && from.bottom === to.bottom)\n return noop;\n const { delay = 0, duration = 300, easing = identity, \n // @ts-ignore todo: should this be separated from destructuring? Or start/end added to public api and documentation?\n start: start_time = now() + delay, \n // @ts-ignore todo:\n end = start_time + duration, tick = noop, css } = fn(node, { from, to }, params);\n let running = true;\n let started = false;\n let name;\n function start() {\n if (css) {\n name = create_rule(node, 0, 1, duration, delay, easing, css);\n }\n if (!delay) {\n started = true;\n }\n }\n function stop() {\n if (css)\n delete_rule(node, name);\n running = false;\n }\n loop(now => {\n if (!started && now >= start_time) {\n started = true;\n }\n if (started && now >= end) {\n tick(1, 0);\n stop();\n }\n if (!running) {\n return false;\n }\n if (started) {\n const p = now - start_time;\n const t = 0 + 1 * easing(p / duration);\n tick(t, 1 - t);\n }\n return true;\n });\n start();\n tick(0, 1);\n return stop;\n}\nfunction fix_position(node) {\n const style = getComputedStyle(node);\n if (style.position !== 'absolute' && style.position !== 'fixed') {\n const { width, height } = style;\n const a = node.getBoundingClientRect();\n node.style.position = 'absolute';\n node.style.width = width;\n node.style.height = height;\n add_transform(node, a);\n }\n}\nfunction add_transform(node, a) {\n const b = node.getBoundingClientRect();\n if (a.left !== b.left || a.top !== b.top) {\n const style = getComputedStyle(node);\n const transform = style.transform === 'none' ? '' : style.transform;\n node.style.transform = `${transform} translate(${a.left - b.left}px, ${a.top - b.top}px)`;\n }\n}\n\nlet current_component;\nfunction set_current_component(component) {\n current_component = component;\n}\nfunction get_current_component() {\n if (!current_component)\n throw new Error('Function called outside component initialization');\n return current_component;\n}\nfunction beforeUpdate(fn) {\n get_current_component().$$.before_update.push(fn);\n}\nfunction onMount(fn) {\n get_current_component().$$.on_mount.push(fn);\n}\nfunction afterUpdate(fn) {\n get_current_component().$$.after_update.push(fn);\n}\nfunction onDestroy(fn) {\n get_current_component().$$.on_destroy.push(fn);\n}\nfunction createEventDispatcher() {\n const component = get_current_component();\n return (type, detail) => {\n const callbacks = component.$$.callbacks[type];\n if (callbacks) {\n // TODO are there situations where events could be dispatched\n // in a server (non-DOM) environment?\n const event = custom_event(type, detail);\n callbacks.slice().forEach(fn => {\n fn.call(component, event);\n });\n }\n };\n}\nfunction setContext(key, context) {\n get_current_component().$$.context.set(key, context);\n}\nfunction getContext(key) {\n return get_current_component().$$.context.get(key);\n}\nfunction getAllContexts() {\n return get_current_component().$$.context;\n}\nfunction hasContext(key) {\n return get_current_component().$$.context.has(key);\n}\n// TODO figure out if we still want to support\n// shorthand events, or if we want to implement\n// a real bubbling mechanism\nfunction bubble(component, event) {\n const callbacks = component.$$.callbacks[event.type];\n if (callbacks) {\n // @ts-ignore\n callbacks.slice().forEach(fn => fn.call(this, event));\n }\n}\n\nconst dirty_components = [];\nconst intros = { enabled: false };\nconst binding_callbacks = [];\nconst render_callbacks = [];\nconst flush_callbacks = [];\nconst resolved_promise = Promise.resolve();\nlet update_scheduled = false;\nfunction schedule_update() {\n if (!update_scheduled) {\n update_scheduled = true;\n resolved_promise.then(flush);\n }\n}\nfunction tick() {\n schedule_update();\n return resolved_promise;\n}\nfunction add_render_callback(fn) {\n render_callbacks.push(fn);\n}\nfunction add_flush_callback(fn) {\n flush_callbacks.push(fn);\n}\nlet flushing = false;\nconst seen_callbacks = new Set();\nfunction flush() {\n if (flushing)\n return;\n flushing = true;\n do {\n // first, call beforeUpdate functions\n // and update components\n for (let i = 0; i < dirty_components.length; i += 1) {\n const component = dirty_components[i];\n set_current_component(component);\n update(component.$$);\n }\n set_current_component(null);\n dirty_components.length = 0;\n while (binding_callbacks.length)\n binding_callbacks.pop()();\n // then, once components are updated, call\n // afterUpdate functions. This may cause\n // subsequent updates...\n for (let i = 0; i < render_callbacks.length; i += 1) {\n const callback = render_callbacks[i];\n if (!seen_callbacks.has(callback)) {\n // ...so guard against infinite loops\n seen_callbacks.add(callback);\n callback();\n }\n }\n render_callbacks.length = 0;\n } while (dirty_components.length);\n while (flush_callbacks.length) {\n flush_callbacks.pop()();\n }\n update_scheduled = false;\n flushing = false;\n seen_callbacks.clear();\n}\nfunction update($$) {\n if ($$.fragment !== null) {\n $$.update();\n run_all($$.before_update);\n const dirty = $$.dirty;\n $$.dirty = [-1];\n $$.fragment && $$.fragment.p($$.ctx, dirty);\n $$.after_update.forEach(add_render_callback);\n }\n}\n\nlet promise;\nfunction wait() {\n if (!promise) {\n promise = Promise.resolve();\n promise.then(() => {\n promise = null;\n });\n }\n return promise;\n}\nfunction dispatch(node, direction, kind) {\n node.dispatchEvent(custom_event(`${direction ? 'intro' : 'outro'}${kind}`));\n}\nconst outroing = new Set();\nlet outros;\nfunction group_outros() {\n outros = {\n r: 0,\n c: [],\n p: outros // parent group\n };\n}\nfunction check_outros() {\n if (!outros.r) {\n run_all(outros.c);\n }\n outros = outros.p;\n}\nfunction transition_in(block, local) {\n if (block && block.i) {\n outroing.delete(block);\n block.i(local);\n }\n}\nfunction transition_out(block, local, detach, callback) {\n if (block && block.o) {\n if (outroing.has(block))\n return;\n outroing.add(block);\n outros.c.push(() => {\n outroing.delete(block);\n if (callback) {\n if (detach)\n block.d(1);\n callback();\n }\n });\n block.o(local);\n }\n}\nconst null_transition = { duration: 0 };\nfunction create_in_transition(node, fn, params) {\n let config = fn(node, params);\n let running = false;\n let animation_name;\n let task;\n let uid = 0;\n function cleanup() {\n if (animation_name)\n delete_rule(node, animation_name);\n }\n function go() {\n const { delay = 0, duration = 300, easing = identity, tick = noop, css } = config || null_transition;\n if (css)\n animation_name = create_rule(node, 0, 1, duration, delay, easing, css, uid++);\n tick(0, 1);\n const start_time = now() + delay;\n const end_time = start_time + duration;\n if (task)\n task.abort();\n running = true;\n add_render_callback(() => dispatch(node, true, 'start'));\n task = loop(now => {\n if (running) {\n if (now >= end_time) {\n tick(1, 0);\n dispatch(node, true, 'end');\n cleanup();\n return running = false;\n }\n if (now >= start_time) {\n const t = easing((now - start_time) / duration);\n tick(t, 1 - t);\n }\n }\n return running;\n });\n }\n let started = false;\n return {\n start() {\n if (started)\n return;\n started = true;\n delete_rule(node);\n if (is_function(config)) {\n config = config();\n wait().then(go);\n }\n else {\n go();\n }\n },\n invalidate() {\n started = false;\n },\n end() {\n if (running) {\n cleanup();\n running = false;\n }\n }\n };\n}\nfunction create_out_transition(node, fn, params) {\n let config = fn(node, params);\n let running = true;\n let animation_name;\n const group = outros;\n group.r += 1;\n function go() {\n const { delay = 0, duration = 300, easing = identity, tick = noop, css } = config || null_transition;\n if (css)\n animation_name = create_rule(node, 1, 0, duration, delay, easing, css);\n const start_time = now() + delay;\n const end_time = start_time + duration;\n add_render_callback(() => dispatch(node, false, 'start'));\n loop(now => {\n if (running) {\n if (now >= end_time) {\n tick(0, 1);\n dispatch(node, false, 'end');\n if (!--group.r) {\n // this will result in `end()` being called,\n // so we don't need to clean up here\n run_all(group.c);\n }\n return false;\n }\n if (now >= start_time) {\n const t = easing((now - start_time) / duration);\n tick(1 - t, t);\n }\n }\n return running;\n });\n }\n if (is_function(config)) {\n wait().then(() => {\n // @ts-ignore\n config = config();\n go();\n });\n }\n else {\n go();\n }\n return {\n end(reset) {\n if (reset && config.tick) {\n config.tick(1, 0);\n }\n if (running) {\n if (animation_name)\n delete_rule(node, animation_name);\n running = false;\n }\n }\n };\n}\nfunction create_bidirectional_transition(node, fn, params, intro) {\n let config = fn(node, params);\n let t = intro ? 0 : 1;\n let running_program = null;\n let pending_program = null;\n let animation_name = null;\n function clear_animation() {\n if (animation_name)\n delete_rule(node, animation_name);\n }\n function init(program, duration) {\n const d = (program.b - t);\n duration *= Math.abs(d);\n return {\n a: t,\n b: program.b,\n d,\n duration,\n start: program.start,\n end: program.start + duration,\n group: program.group\n };\n }\n function go(b) {\n const { delay = 0, duration = 300, easing = identity, tick = noop, css } = config || null_transition;\n const program = {\n start: now() + delay,\n b\n };\n if (!b) {\n // @ts-ignore todo: improve typings\n program.group = outros;\n outros.r += 1;\n }\n if (running_program || pending_program) {\n pending_program = program;\n }\n else {\n // if this is an intro, and there's a delay, we need to do\n // an initial tick and/or apply CSS animation immediately\n if (css) {\n clear_animation();\n animation_name = create_rule(node, t, b, duration, delay, easing, css);\n }\n if (b)\n tick(0, 1);\n running_program = init(program, duration);\n add_render_callback(() => dispatch(node, b, 'start'));\n loop(now => {\n if (pending_program && now > pending_program.start) {\n running_program = init(pending_program, duration);\n pending_program = null;\n dispatch(node, running_program.b, 'start');\n if (css) {\n clear_animation();\n animation_name = create_rule(node, t, running_program.b, running_program.duration, 0, easing, config.css);\n }\n }\n if (running_program) {\n if (now >= running_program.end) {\n tick(t = running_program.b, 1 - t);\n dispatch(node, running_program.b, 'end');\n if (!pending_program) {\n // we're done\n if (running_program.b) {\n // intro — we can tidy up immediately\n clear_animation();\n }\n else {\n // outro — needs to be coordinated\n if (!--running_program.group.r)\n run_all(running_program.group.c);\n }\n }\n running_program = null;\n }\n else if (now >= running_program.start) {\n const p = now - running_program.start;\n t = running_program.a + running_program.d * easing(p / running_program.duration);\n tick(t, 1 - t);\n }\n }\n return !!(running_program || pending_program);\n });\n }\n }\n return {\n run(b) {\n if (is_function(config)) {\n wait().then(() => {\n // @ts-ignore\n config = config();\n go(b);\n });\n }\n else {\n go(b);\n }\n },\n end() {\n clear_animation();\n running_program = pending_program = null;\n }\n };\n}\n\nfunction handle_promise(promise, info) {\n const token = info.token = {};\n function update(type, index, key, value) {\n if (info.token !== token)\n return;\n info.resolved = value;\n let child_ctx = info.ctx;\n if (key !== undefined) {\n child_ctx = child_ctx.slice();\n child_ctx[key] = value;\n }\n const block = type && (info.current = type)(child_ctx);\n let needs_flush = false;\n if (info.block) {\n if (info.blocks) {\n info.blocks.forEach((block, i) => {\n if (i !== index && block) {\n group_outros();\n transition_out(block, 1, 1, () => {\n if (info.blocks[i] === block) {\n info.blocks[i] = null;\n }\n });\n check_outros();\n }\n });\n }\n else {\n info.block.d(1);\n }\n block.c();\n transition_in(block, 1);\n block.m(info.mount(), info.anchor);\n needs_flush = true;\n }\n info.block = block;\n if (info.blocks)\n info.blocks[index] = block;\n if (needs_flush) {\n flush();\n }\n }\n if (is_promise(promise)) {\n const current_component = get_current_component();\n promise.then(value => {\n set_current_component(current_component);\n update(info.then, 1, info.value, value);\n set_current_component(null);\n }, error => {\n set_current_component(current_component);\n update(info.catch, 2, info.error, error);\n set_current_component(null);\n if (!info.hasCatch) {\n throw error;\n }\n });\n // if we previously had a then/catch block, destroy it\n if (info.current !== info.pending) {\n update(info.pending, 0);\n return true;\n }\n }\n else {\n if (info.current !== info.then) {\n update(info.then, 1, info.value, promise);\n return true;\n }\n info.resolved = promise;\n }\n}\nfunction update_await_block_branch(info, ctx, dirty) {\n const child_ctx = ctx.slice();\n const { resolved } = info;\n if (info.current === info.then) {\n child_ctx[info.value] = resolved;\n }\n if (info.current === info.catch) {\n child_ctx[info.error] = resolved;\n }\n info.block.p(child_ctx, dirty);\n}\n\nconst globals = (typeof window !== 'undefined'\n ? window\n : typeof globalThis !== 'undefined'\n ? globalThis\n : global);\n\nfunction destroy_block(block, lookup) {\n block.d(1);\n lookup.delete(block.key);\n}\nfunction outro_and_destroy_block(block, lookup) {\n transition_out(block, 1, 1, () => {\n lookup.delete(block.key);\n });\n}\nfunction fix_and_destroy_block(block, lookup) {\n block.f();\n destroy_block(block, lookup);\n}\nfunction fix_and_outro_and_destroy_block(block, lookup) {\n block.f();\n outro_and_destroy_block(block, lookup);\n}\nfunction update_keyed_each(old_blocks, dirty, get_key, dynamic, ctx, list, lookup, node, destroy, create_each_block, next, get_context) {\n let o = old_blocks.length;\n let n = list.length;\n let i = o;\n const old_indexes = {};\n while (i--)\n old_indexes[old_blocks[i].key] = i;\n const new_blocks = [];\n const new_lookup = new Map();\n const deltas = new Map();\n i = n;\n while (i--) {\n const child_ctx = get_context(ctx, list, i);\n const key = get_key(child_ctx);\n let block = lookup.get(key);\n if (!block) {\n block = create_each_block(key, child_ctx);\n block.c();\n }\n else if (dynamic) {\n block.p(child_ctx, dirty);\n }\n new_lookup.set(key, new_blocks[i] = block);\n if (key in old_indexes)\n deltas.set(key, Math.abs(i - old_indexes[key]));\n }\n const will_move = new Set();\n const did_move = new Set();\n function insert(block) {\n transition_in(block, 1);\n block.m(node, next);\n lookup.set(block.key, block);\n next = block.first;\n n--;\n }\n while (o && n) {\n const new_block = new_blocks[n - 1];\n const old_block = old_blocks[o - 1];\n const new_key = new_block.key;\n const old_key = old_block.key;\n if (new_block === old_block) {\n // do nothing\n next = new_block.first;\n o--;\n n--;\n }\n else if (!new_lookup.has(old_key)) {\n // remove old block\n destroy(old_block, lookup);\n o--;\n }\n else if (!lookup.has(new_key) || will_move.has(new_key)) {\n insert(new_block);\n }\n else if (did_move.has(old_key)) {\n o--;\n }\n else if (deltas.get(new_key) > deltas.get(old_key)) {\n did_move.add(new_key);\n insert(new_block);\n }\n else {\n will_move.add(old_key);\n o--;\n }\n }\n while (o--) {\n const old_block = old_blocks[o];\n if (!new_lookup.has(old_block.key))\n destroy(old_block, lookup);\n }\n while (n)\n insert(new_blocks[n - 1]);\n return new_blocks;\n}\nfunction validate_each_keys(ctx, list, get_context, get_key) {\n const keys = new Set();\n for (let i = 0; i < list.length; i++) {\n const key = get_key(get_context(ctx, list, i));\n if (keys.has(key)) {\n throw new Error('Cannot have duplicate keys in a keyed each');\n }\n keys.add(key);\n }\n}\n\nfunction get_spread_update(levels, updates) {\n const update = {};\n const to_null_out = {};\n const accounted_for = { $$scope: 1 };\n let i = levels.length;\n while (i--) {\n const o = levels[i];\n const n = updates[i];\n if (n) {\n for (const key in o) {\n if (!(key in n))\n to_null_out[key] = 1;\n }\n for (const key in n) {\n if (!accounted_for[key]) {\n update[key] = n[key];\n accounted_for[key] = 1;\n }\n }\n levels[i] = n;\n }\n else {\n for (const key in o) {\n accounted_for[key] = 1;\n }\n }\n }\n for (const key in to_null_out) {\n if (!(key in update))\n update[key] = undefined;\n }\n return update;\n}\nfunction get_spread_object(spread_props) {\n return typeof spread_props === 'object' && spread_props !== null ? spread_props : {};\n}\n\n// source: https://html.spec.whatwg.org/multipage/indices.html\nconst boolean_attributes = new Set([\n 'allowfullscreen',\n 'allowpaymentrequest',\n 'async',\n 'autofocus',\n 'autoplay',\n 'checked',\n 'controls',\n 'default',\n 'defer',\n 'disabled',\n 'formnovalidate',\n 'hidden',\n 'ismap',\n 'loop',\n 'multiple',\n 'muted',\n 'nomodule',\n 'novalidate',\n 'open',\n 'playsinline',\n 'readonly',\n 'required',\n 'reversed',\n 'selected'\n]);\n\nconst invalid_attribute_name_character = /[\\s'\">/=\\u{FDD0}-\\u{FDEF}\\u{FFFE}\\u{FFFF}\\u{1FFFE}\\u{1FFFF}\\u{2FFFE}\\u{2FFFF}\\u{3FFFE}\\u{3FFFF}\\u{4FFFE}\\u{4FFFF}\\u{5FFFE}\\u{5FFFF}\\u{6FFFE}\\u{6FFFF}\\u{7FFFE}\\u{7FFFF}\\u{8FFFE}\\u{8FFFF}\\u{9FFFE}\\u{9FFFF}\\u{AFFFE}\\u{AFFFF}\\u{BFFFE}\\u{BFFFF}\\u{CFFFE}\\u{CFFFF}\\u{DFFFE}\\u{DFFFF}\\u{EFFFE}\\u{EFFFF}\\u{FFFFE}\\u{FFFFF}\\u{10FFFE}\\u{10FFFF}]/u;\n// https://html.spec.whatwg.org/multipage/syntax.html#attributes-2\n// https://infra.spec.whatwg.org/#noncharacter\nfunction spread(args, classes_to_add) {\n const attributes = Object.assign({}, ...args);\n if (classes_to_add) {\n if (attributes.class == null) {\n attributes.class = classes_to_add;\n }\n else {\n attributes.class += ' ' + classes_to_add;\n }\n }\n let str = '';\n Object.keys(attributes).forEach(name => {\n if (invalid_attribute_name_character.test(name))\n return;\n const value = attributes[name];\n if (value === true)\n str += ' ' + name;\n else if (boolean_attributes.has(name.toLowerCase())) {\n if (value)\n str += ' ' + name;\n }\n else if (value != null) {\n str += ` ${name}=\"${value}\"`;\n }\n });\n return str;\n}\nconst escaped = {\n '\"': '"',\n \"'\": ''',\n '&': '&',\n '<': '<',\n '>': '>'\n};\nfunction escape(html) {\n return String(html).replace(/[\"'&<>]/g, match => escaped[match]);\n}\nfunction escape_attribute_value(value) {\n return typeof value === 'string' ? escape(value) : value;\n}\nfunction escape_object(obj) {\n const result = {};\n for (const key in obj) {\n result[key] = escape_attribute_value(obj[key]);\n }\n return result;\n}\nfunction each(items, fn) {\n let str = '';\n for (let i = 0; i < items.length; i += 1) {\n str += fn(items[i], i);\n }\n return str;\n}\nconst missing_component = {\n $$render: () => ''\n};\nfunction validate_component(component, name) {\n if (!component || !component.$$render) {\n if (name === 'svelte:component')\n name += ' this={...}';\n throw new Error(`<${name}> is not a valid SSR component. You may need to review your build config to ensure that dependencies are compiled, rather than imported as pre-compiled modules`);\n }\n return component;\n}\nfunction debug(file, line, column, values) {\n console.log(`{@debug} ${file ? file + ' ' : ''}(${line}:${column})`); // eslint-disable-line no-console\n console.log(values); // eslint-disable-line no-console\n return '';\n}\nlet on_destroy;\nfunction create_ssr_component(fn) {\n function $$render(result, props, bindings, slots, context) {\n const parent_component = current_component;\n const $$ = {\n on_destroy,\n context: new Map(context || (parent_component ? parent_component.$$.context : [])),\n // these will be immediately discarded\n on_mount: [],\n before_update: [],\n after_update: [],\n callbacks: blank_object()\n };\n set_current_component({ $$ });\n const html = fn(result, props, bindings, slots);\n set_current_component(parent_component);\n return html;\n }\n return {\n render: (props = {}, { $$slots = {}, context = new Map() } = {}) => {\n on_destroy = [];\n const result = { title: '', head: '', css: new Set() };\n const html = $$render(result, props, {}, $$slots, context);\n run_all(on_destroy);\n return {\n html,\n css: {\n code: Array.from(result.css).map(css => css.code).join('\\n'),\n map: null // TODO\n },\n head: result.title + result.head\n };\n },\n $$render\n };\n}\nfunction add_attribute(name, value, boolean) {\n if (value == null || (boolean && !value))\n return '';\n return ` ${name}${value === true ? '' : `=${typeof value === 'string' ? JSON.stringify(escape(value)) : `\"${value}\"`}`}`;\n}\nfunction add_classes(classes) {\n return classes ? ` class=\"${classes}\"` : '';\n}\n\nfunction bind(component, name, callback) {\n const index = component.$$.props[name];\n if (index !== undefined) {\n component.$$.bound[index] = callback;\n callback(component.$$.ctx[index]);\n }\n}\nfunction create_component(block) {\n block && block.c();\n}\nfunction claim_component(block, parent_nodes) {\n block && block.l(parent_nodes);\n}\nfunction mount_component(component, target, anchor, customElement) {\n const { fragment, on_mount, on_destroy, after_update } = component.$$;\n fragment && fragment.m(target, anchor);\n if (!customElement) {\n // onMount happens before the initial afterUpdate\n add_render_callback(() => {\n const new_on_destroy = on_mount.map(run).filter(is_function);\n if (on_destroy) {\n on_destroy.push(...new_on_destroy);\n }\n else {\n // Edge case - component was destroyed immediately,\n // most likely as a result of a binding initialising\n run_all(new_on_destroy);\n }\n component.$$.on_mount = [];\n });\n }\n after_update.forEach(add_render_callback);\n}\nfunction destroy_component(component, detaching) {\n const $$ = component.$$;\n if ($$.fragment !== null) {\n run_all($$.on_destroy);\n $$.fragment && $$.fragment.d(detaching);\n // TODO null out other refs, including component.$$ (but need to\n // preserve final state?)\n $$.on_destroy = $$.fragment = null;\n $$.ctx = [];\n }\n}\nfunction make_dirty(component, i) {\n if (component.$$.dirty[0] === -1) {\n dirty_components.push(component);\n schedule_update();\n component.$$.dirty.fill(0);\n }\n component.$$.dirty[(i / 31) | 0] |= (1 << (i % 31));\n}\nfunction init(component, options, instance, create_fragment, not_equal, props, append_styles, dirty = [-1]) {\n const parent_component = current_component;\n set_current_component(component);\n const $$ = component.$$ = {\n fragment: null,\n ctx: null,\n // state\n props,\n update: noop,\n not_equal,\n bound: blank_object(),\n // lifecycle\n on_mount: [],\n on_destroy: [],\n on_disconnect: [],\n before_update: [],\n after_update: [],\n context: new Map(options.context || (parent_component ? parent_component.$$.context : [])),\n // everything else\n callbacks: blank_object(),\n dirty,\n skip_bound: false,\n root: options.target || parent_component.$$.root\n };\n append_styles && append_styles($$.root);\n let ready = false;\n $$.ctx = instance\n ? instance(component, options.props || {}, (i, ret, ...rest) => {\n const value = rest.length ? rest[0] : ret;\n if ($$.ctx && not_equal($$.ctx[i], $$.ctx[i] = value)) {\n if (!$$.skip_bound && $$.bound[i])\n $$.bound[i](value);\n if (ready)\n make_dirty(component, i);\n }\n return ret;\n })\n : [];\n $$.update();\n ready = true;\n run_all($$.before_update);\n // `false` as a special case of no DOM component\n $$.fragment = create_fragment ? create_fragment($$.ctx) : false;\n if (options.target) {\n if (options.hydrate) {\n start_hydrating();\n const nodes = children(options.target);\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n $$.fragment && $$.fragment.l(nodes);\n nodes.forEach(detach);\n }\n else {\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n $$.fragment && $$.fragment.c();\n }\n if (options.intro)\n transition_in(component.$$.fragment);\n mount_component(component, options.target, options.anchor, options.customElement);\n end_hydrating();\n flush();\n }\n set_current_component(parent_component);\n}\nlet SvelteElement;\nif (typeof HTMLElement === 'function') {\n SvelteElement = class extends HTMLElement {\n constructor() {\n super();\n this.attachShadow({ mode: 'open' });\n }\n connectedCallback() {\n const { on_mount } = this.$$;\n this.$$.on_disconnect = on_mount.map(run).filter(is_function);\n // @ts-ignore todo: improve typings\n for (const key in this.$$.slotted) {\n // @ts-ignore todo: improve typings\n this.appendChild(this.$$.slotted[key]);\n }\n }\n attributeChangedCallback(attr, _oldValue, newValue) {\n this[attr] = newValue;\n }\n disconnectedCallback() {\n run_all(this.$$.on_disconnect);\n }\n $destroy() {\n destroy_component(this, 1);\n this.$destroy = noop;\n }\n $on(type, callback) {\n // TODO should this delegate to addEventListener?\n const callbacks = (this.$$.callbacks[type] || (this.$$.callbacks[type] = []));\n callbacks.push(callback);\n return () => {\n const index = callbacks.indexOf(callback);\n if (index !== -1)\n callbacks.splice(index, 1);\n };\n }\n $set($$props) {\n if (this.$$set && !is_empty($$props)) {\n this.$$.skip_bound = true;\n this.$$set($$props);\n this.$$.skip_bound = false;\n }\n }\n };\n}\n/**\n * Base class for Svelte components. Used when dev=false.\n */\nclass SvelteComponent {\n $destroy() {\n destroy_component(this, 1);\n this.$destroy = noop;\n }\n $on(type, callback) {\n const callbacks = (this.$$.callbacks[type] || (this.$$.callbacks[type] = []));\n callbacks.push(callback);\n return () => {\n const index = callbacks.indexOf(callback);\n if (index !== -1)\n callbacks.splice(index, 1);\n };\n }\n $set($$props) {\n if (this.$$set && !is_empty($$props)) {\n this.$$.skip_bound = true;\n this.$$set($$props);\n this.$$.skip_bound = false;\n }\n }\n}\n\nfunction dispatch_dev(type, detail) {\n document.dispatchEvent(custom_event(type, Object.assign({ version: '3.44.2' }, detail), true));\n}\nfunction append_dev(target, node) {\n dispatch_dev('SvelteDOMInsert', { target, node });\n append(target, node);\n}\nfunction append_hydration_dev(target, node) {\n dispatch_dev('SvelteDOMInsert', { target, node });\n append_hydration(target, node);\n}\nfunction insert_dev(target, node, anchor) {\n dispatch_dev('SvelteDOMInsert', { target, node, anchor });\n insert(target, node, anchor);\n}\nfunction insert_hydration_dev(target, node, anchor) {\n dispatch_dev('SvelteDOMInsert', { target, node, anchor });\n insert_hydration(target, node, anchor);\n}\nfunction detach_dev(node) {\n dispatch_dev('SvelteDOMRemove', { node });\n detach(node);\n}\nfunction detach_between_dev(before, after) {\n while (before.nextSibling && before.nextSibling !== after) {\n detach_dev(before.nextSibling);\n }\n}\nfunction detach_before_dev(after) {\n while (after.previousSibling) {\n detach_dev(after.previousSibling);\n }\n}\nfunction detach_after_dev(before) {\n while (before.nextSibling) {\n detach_dev(before.nextSibling);\n }\n}\nfunction listen_dev(node, event, handler, options, has_prevent_default, has_stop_propagation) {\n const modifiers = options === true ? ['capture'] : options ? Array.from(Object.keys(options)) : [];\n if (has_prevent_default)\n modifiers.push('preventDefault');\n if (has_stop_propagation)\n modifiers.push('stopPropagation');\n dispatch_dev('SvelteDOMAddEventListener', { node, event, handler, modifiers });\n const dispose = listen(node, event, handler, options);\n return () => {\n dispatch_dev('SvelteDOMRemoveEventListener', { node, event, handler, modifiers });\n dispose();\n };\n}\nfunction attr_dev(node, attribute, value) {\n attr(node, attribute, value);\n if (value == null)\n dispatch_dev('SvelteDOMRemoveAttribute', { node, attribute });\n else\n dispatch_dev('SvelteDOMSetAttribute', { node, attribute, value });\n}\nfunction prop_dev(node, property, value) {\n node[property] = value;\n dispatch_dev('SvelteDOMSetProperty', { node, property, value });\n}\nfunction dataset_dev(node, property, value) {\n node.dataset[property] = value;\n dispatch_dev('SvelteDOMSetDataset', { node, property, value });\n}\nfunction set_data_dev(text, data) {\n data = '' + data;\n if (text.wholeText === data)\n return;\n dispatch_dev('SvelteDOMSetData', { node: text, data });\n text.data = data;\n}\nfunction validate_each_argument(arg) {\n if (typeof arg !== 'string' && !(arg && typeof arg === 'object' && 'length' in arg)) {\n let msg = '{#each} only iterates over array-like objects.';\n if (typeof Symbol === 'function' && arg && Symbol.iterator in arg) {\n msg += ' You can use a spread to convert this iterable into an array.';\n }\n throw new Error(msg);\n }\n}\nfunction validate_slots(name, slot, keys) {\n for (const slot_key of Object.keys(slot)) {\n if (!~keys.indexOf(slot_key)) {\n console.warn(`<${name}> received an unexpected slot \"${slot_key}\".`);\n }\n }\n}\n/**\n * Base class for Svelte components with some minor dev-enhancements. Used when dev=true.\n */\nclass SvelteComponentDev extends SvelteComponent {\n constructor(options) {\n if (!options || (!options.target && !options.$$inline)) {\n throw new Error(\"'target' is a required option\");\n }\n super();\n }\n $destroy() {\n super.$destroy();\n this.$destroy = () => {\n console.warn('Component was already destroyed'); // eslint-disable-line no-console\n };\n }\n $capture_state() { }\n $inject_state() { }\n}\n/**\n * Base class to create strongly typed Svelte components.\n * This only exists for typing purposes and should be used in `.d.ts` files.\n *\n * ### Example:\n *\n * You have component library on npm called `component-library`, from which\n * you export a component called `MyComponent`. For Svelte+TypeScript users,\n * you want to provide typings. Therefore you create a `index.d.ts`:\n * ```ts\n * import { SvelteComponentTyped } from \"svelte\";\n * export class MyComponent extends SvelteComponentTyped<{foo: string}> {}\n * ```\n * Typing this makes it possible for IDEs like VS Code with the Svelte extension\n * to provide intellisense and to use the component like this in a Svelte file\n * with TypeScript:\n * ```svelte\n * \n * \n * ```\n *\n * #### Why not make this part of `SvelteComponent(Dev)`?\n * Because\n * ```ts\n * class ASubclassOfSvelteComponent extends SvelteComponent<{foo: string}> {}\n * const component: typeof SvelteComponent = ASubclassOfSvelteComponent;\n * ```\n * will throw a type error, so we need to separate the more strictly typed class.\n */\nclass SvelteComponentTyped extends SvelteComponentDev {\n constructor(options) {\n super(options);\n }\n}\nfunction loop_guard(timeout) {\n const start = Date.now();\n return () => {\n if (Date.now() - start > timeout) {\n throw new Error('Infinite loop detected');\n }\n };\n}\n\nexport { HtmlTag, HtmlTagHydration, SvelteComponent, SvelteComponentDev, SvelteComponentTyped, SvelteElement, action_destroyer, add_attribute, add_classes, add_flush_callback, add_location, add_render_callback, add_resize_listener, add_transform, afterUpdate, append, append_dev, append_empty_stylesheet, append_hydration, append_hydration_dev, append_styles, assign, attr, attr_dev, attribute_to_object, beforeUpdate, bind, binding_callbacks, blank_object, bubble, check_outros, children, claim_component, claim_element, claim_html_tag, claim_space, claim_svg_element, claim_text, clear_loops, component_subscribe, compute_rest_props, compute_slots, createEventDispatcher, create_animation, create_bidirectional_transition, create_component, create_in_transition, create_out_transition, create_slot, create_ssr_component, current_component, custom_event, dataset_dev, debug, destroy_block, destroy_component, destroy_each, detach, detach_after_dev, detach_before_dev, detach_between_dev, detach_dev, dirty_components, dispatch_dev, each, element, element_is, empty, end_hydrating, escape, escape_attribute_value, escape_object, escaped, exclude_internal_props, fix_and_destroy_block, fix_and_outro_and_destroy_block, fix_position, flush, getAllContexts, getContext, get_all_dirty_from_scope, get_binding_group_value, get_current_component, get_custom_elements_slots, get_root_for_style, get_slot_changes, get_spread_object, get_spread_update, get_store_value, globals, group_outros, handle_promise, hasContext, has_prop, identity, init, insert, insert_dev, insert_hydration, insert_hydration_dev, intros, invalid_attribute_name_character, is_client, is_crossorigin, is_empty, is_function, is_promise, listen, listen_dev, loop, loop_guard, missing_component, mount_component, noop, not_equal, now, null_to_empty, object_without_properties, onDestroy, onMount, once, outro_and_destroy_block, prevent_default, prop_dev, query_selector_all, raf, run, run_all, safe_not_equal, schedule_update, select_multiple_value, select_option, select_options, select_value, self, setContext, set_attributes, set_current_component, set_custom_element_data, set_data, set_data_dev, set_input_type, set_input_value, set_now, set_raf, set_store_value, set_style, set_svg_attributes, space, spread, src_url_equal, start_hydrating, stop_propagation, subscribe, svg_element, text, tick, time_ranges_to_array, to_number, toggle_class, transition_in, transition_out, trusted, update_await_block_branch, update_keyed_each, update_slot, update_slot_base, validate_component, validate_each_argument, validate_each_keys, validate_slots, validate_store, xlink_attr };\n","\n\n\n\n\n","\n\n{#if !closed}\n \n \n \n X\n \n \n \n \n \n \n{/if}\n\n\n","\n\n 3 ? value.length : 3}\n on:input={text_input}\n/>\n\n\n","\n\n\n\n\n","\n\n
\n {#each text_pointer as text_line}\n {#each text_line as text, i}\n {#if text == \" \"} {:else}{text}{/if}\n {#if i < 3} {/if}\n {/each}\n
\n {/each}\n
\n","\n\n\n\n\n","\n\n\n\n\n","\n\n
\n \n {\n change_tab(\"WiFi\");\n }}\n >\n WiFi\n \n\n {\n change_tab(\"SYS\");\n }}\n >\n SYS\n \n\n {\n change_tab(\"PS\");\n }}\n >\n PS\n \n \n\n \n {#if current_tab == \"WiFi\"}\n \n
\n {#await api_get(server + \"/api/v1/wifi/get_credentials\")}\n
Mode:
\n
\n
SSID:
\n
\n
Pass:
\n
\n
SSID:
\n
\n
Pass:
\n
\n
Hostname:
\n
\n {:then json}\n
Mode:
\n
\n \n
\n\n
STA
\n
(join another network)
\n
SSID:
\n
\n \n
\n\n
Pass:
\n
\n \n
\n\n
AP
\n
(own access point)
\n
SSID:
\n
\n \n
\n\n
Pass:
\n
\n \n
\n\n
Hostname:
\n
\n \n
\n {:catch error}\n {error.message}\n {/await}\n
\n
\n
\n
\n {/if}\n\n {#if current_tab == \"SYS\"}\n \n
\n {#await api_get(server + \"/api/v1/system/info\")}\n
IP:
\n
\n {:then json}\n
IP:
\n
{print_ip(json.ip)}
\n
Mac:
\n
{print_mac(json.mac)}
\n
IDF ver:
\n
{json.idf_version}
\n
Model:
\n
{json.model}.{json.revision} {json.cores}-core
\n
Min free:
\n
{json.heap.minimum_free_bytes}
\n
Free:
\n
{json.heap.total_free_bytes}
\n
Alloc:
\n
{json.heap.total_allocated_bytes}
\n
Max block:
\n
{json.heap.largest_free_block}
\n {:catch error}\n {error.message}\n {/await}\n
\n
\n {/if}\n\n {#if current_tab == \"PS\"}\n \n {#await api_get(server + \"/api/v1/system/tasks\")}\n Name\n \n {:then json}\n \n Name\n State\n Handle\n Stack base\n WMRK\n {#each json.list.sort(function (a, b) {\n return a.number - b.number;\n }) as task}\n {task.name}\n {task.state}\n 0x{task.handle.toString(16).toUpperCase()}\n 0x{task.stack_base.toString(16).toUpperCase()}\n {task.watermark}\n {/each}\n \n {:catch error}\n {error.message}\n {/await}\n \n {/if}\n
\n\n \n {#await api_get(server + \"/api/v1/wifi/list\", {})}\n
Nets:
\n {:then json}\n
Nets:
\n {#each json.net_list as net}\n
\n {\n popup_select_net.close();\n sta_ssid_input.set_value(net.ssid);\n }}\n />\n
\n {/each}\n {:catch error}\n {error.message}\n {/await}\n
\n\n \n {#if popup_message_text != \"\"}\n {popup_message_text}\n {:else}\n \n {/if}\n \n
\n\n\n","import App from './App.svelte';\n\nconst app = new App({\n\ttarget: document.body,\n});\n\nexport default app;"],"names":["noop","run","fn","blank_object","Object","create","run_all","fns","forEach","is_function","thing","safe_not_equal","a","b","get_slot_context","definition","ctx","$$scope","tar","src","k","assign","slice","append","target","node","appendChild","insert","anchor","insertBefore","detach","parentNode","removeChild","destroy_each","iterations","detaching","i","length","d","element","name","document","createElement","text","data","createTextNode","space","empty","listen","event","handler","options","addEventListener","removeEventListener","attr","attribute","value","removeAttribute","getAttribute","setAttribute","set_custom_element_data","prop","set_data","wholeText","select_option","select","option","__value","selected","selectedIndex","toggle_class","toggle","classList","current_component","set_current_component","component","get_current_component","Error","bubble","callbacks","$$","type","call","this","dirty_components","binding_callbacks","render_callbacks","flush_callbacks","resolved_promise","Promise","resolve","update_scheduled","add_render_callback","push","flushing","seen_callbacks","Set","flush","update","pop","callback","has","add","clear","fragment","before_update","dirty","p","after_update","outroing","outros","group_outros","r","c","check_outros","transition_in","block","local","delete","transition_out","o","handle_promise","promise","info","token","index","key","resolved","child_ctx","undefined","current","needs_flush","blocks","m","mount","then","error","catch","hasCatch","pending","update_await_block_branch","create_component","mount_component","customElement","on_mount","on_destroy","new_on_destroy","map","filter","destroy_component","make_dirty","fill","init","instance","create_fragment","not_equal","props","append_styles","parent_component","bound","on_disconnect","context","Map","skip_bound","root","ready","ret","rest","hydrate","nodes","Array","from","childNodes","children","l","intro","SvelteComponent","$destroy","$on","indexOf","splice","$set","$$props","obj","$$set","keys","left","right","timer","reset_brace","set_brace","timer_click","setInterval","clearInterval","slot_ctx","slot","slot_definition","slot_changes","get_slot_context_fn","slot_context","lets","merged","len","Math","max","closed","size","new_value","items","text_pointer","timer_tick","selected_option","querySelector","style","api_get","important","setProperty","message","wifi_mode","sta_ssid","show","sta_pass","ap_ssid","ap_pass","hostname","print_ip","ip","print_mac","mac","idf_version","model","revision","cores","heap","minimum_free_bytes","total_free_bytes","total_allocated_bytes","largest_free_block","list","sort","state","handle","toString","toUpperCase","stack_base","watermark","net_list","ssid","channel","rssi","auth","api_post","api","res","fetch","method","body","JSON","stringify","json","mac_array","str","padStart","ip_addr","byteArray","byte","join","number","popup_select_net","popup_message","popup_message_text","mode_select","ap_ssid_input","ap_pass_input","sta_ssid_input","sta_pass_input","hostname_input","current_tab","change_tab","tab","localStorage","setItem","getItem","get_value","close","set_value","net"],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"bundle.js","sources":["../../node_modules/svelte/internal/index.mjs","../../src/Button.svelte","../../src/Popup.svelte","../../src/Input.svelte","../../src/Spinner.svelte","../../src/SpinnerBig.svelte","../../src/Select.svelte","../../src/ButtonInline.svelte","../../src/App.svelte","../../src/main.js"],"sourcesContent":["function noop() { }\nconst identity = x => x;\nfunction assign(tar, src) {\n // @ts-ignore\n for (const k in src)\n tar[k] = src[k];\n return tar;\n}\nfunction is_promise(value) {\n return value && typeof value === 'object' && typeof value.then === 'function';\n}\nfunction add_location(element, file, line, column, char) {\n element.__svelte_meta = {\n loc: { file, line, column, char }\n };\n}\nfunction run(fn) {\n return fn();\n}\nfunction blank_object() {\n return Object.create(null);\n}\nfunction run_all(fns) {\n fns.forEach(run);\n}\nfunction is_function(thing) {\n return typeof thing === 'function';\n}\nfunction safe_not_equal(a, b) {\n return a != a ? b == b : a !== b || ((a && typeof a === 'object') || typeof a === 'function');\n}\nlet src_url_equal_anchor;\nfunction src_url_equal(element_src, url) {\n if (!src_url_equal_anchor) {\n src_url_equal_anchor = document.createElement('a');\n }\n src_url_equal_anchor.href = url;\n return element_src === src_url_equal_anchor.href;\n}\nfunction not_equal(a, b) {\n return a != a ? b == b : a !== b;\n}\nfunction is_empty(obj) {\n return Object.keys(obj).length === 0;\n}\nfunction validate_store(store, name) {\n if (store != null && typeof store.subscribe !== 'function') {\n throw new Error(`'${name}' is not a store with a 'subscribe' method`);\n }\n}\nfunction subscribe(store, ...callbacks) {\n if (store == null) {\n return noop;\n }\n const unsub = store.subscribe(...callbacks);\n return unsub.unsubscribe ? () => unsub.unsubscribe() : unsub;\n}\nfunction get_store_value(store) {\n let value;\n subscribe(store, _ => value = _)();\n return value;\n}\nfunction component_subscribe(component, store, callback) {\n component.$$.on_destroy.push(subscribe(store, callback));\n}\nfunction create_slot(definition, ctx, $$scope, fn) {\n if (definition) {\n const slot_ctx = get_slot_context(definition, ctx, $$scope, fn);\n return definition[0](slot_ctx);\n }\n}\nfunction get_slot_context(definition, ctx, $$scope, fn) {\n return definition[1] && fn\n ? assign($$scope.ctx.slice(), definition[1](fn(ctx)))\n : $$scope.ctx;\n}\nfunction get_slot_changes(definition, $$scope, dirty, fn) {\n if (definition[2] && fn) {\n const lets = definition[2](fn(dirty));\n if ($$scope.dirty === undefined) {\n return lets;\n }\n if (typeof lets === 'object') {\n const merged = [];\n const len = Math.max($$scope.dirty.length, lets.length);\n for (let i = 0; i < len; i += 1) {\n merged[i] = $$scope.dirty[i] | lets[i];\n }\n return merged;\n }\n return $$scope.dirty | lets;\n }\n return $$scope.dirty;\n}\nfunction update_slot_base(slot, slot_definition, ctx, $$scope, slot_changes, get_slot_context_fn) {\n if (slot_changes) {\n const slot_context = get_slot_context(slot_definition, ctx, $$scope, get_slot_context_fn);\n slot.p(slot_context, slot_changes);\n }\n}\nfunction update_slot(slot, slot_definition, ctx, $$scope, dirty, get_slot_changes_fn, get_slot_context_fn) {\n const slot_changes = get_slot_changes(slot_definition, $$scope, dirty, get_slot_changes_fn);\n update_slot_base(slot, slot_definition, ctx, $$scope, slot_changes, get_slot_context_fn);\n}\nfunction get_all_dirty_from_scope($$scope) {\n if ($$scope.ctx.length > 32) {\n const dirty = [];\n const length = $$scope.ctx.length / 32;\n for (let i = 0; i < length; i++) {\n dirty[i] = -1;\n }\n return dirty;\n }\n return -1;\n}\nfunction exclude_internal_props(props) {\n const result = {};\n for (const k in props)\n if (k[0] !== '$')\n result[k] = props[k];\n return result;\n}\nfunction compute_rest_props(props, keys) {\n const rest = {};\n keys = new Set(keys);\n for (const k in props)\n if (!keys.has(k) && k[0] !== '$')\n rest[k] = props[k];\n return rest;\n}\nfunction compute_slots(slots) {\n const result = {};\n for (const key in slots) {\n result[key] = true;\n }\n return result;\n}\nfunction once(fn) {\n let ran = false;\n return function (...args) {\n if (ran)\n return;\n ran = true;\n fn.call(this, ...args);\n };\n}\nfunction null_to_empty(value) {\n return value == null ? '' : value;\n}\nfunction set_store_value(store, ret, value) {\n store.set(value);\n return ret;\n}\nconst has_prop = (obj, prop) => Object.prototype.hasOwnProperty.call(obj, prop);\nfunction action_destroyer(action_result) {\n return action_result && is_function(action_result.destroy) ? action_result.destroy : noop;\n}\n\nconst is_client = typeof window !== 'undefined';\nlet now = is_client\n ? () => window.performance.now()\n : () => Date.now();\nlet raf = is_client ? cb => requestAnimationFrame(cb) : noop;\n// used internally for testing\nfunction set_now(fn) {\n now = fn;\n}\nfunction set_raf(fn) {\n raf = fn;\n}\n\nconst tasks = new Set();\nfunction run_tasks(now) {\n tasks.forEach(task => {\n if (!task.c(now)) {\n tasks.delete(task);\n task.f();\n }\n });\n if (tasks.size !== 0)\n raf(run_tasks);\n}\n/**\n * For testing purposes only!\n */\nfunction clear_loops() {\n tasks.clear();\n}\n/**\n * Creates a new task that runs on each raf frame\n * until it returns a falsy value or is aborted\n */\nfunction loop(callback) {\n let task;\n if (tasks.size === 0)\n raf(run_tasks);\n return {\n promise: new Promise(fulfill => {\n tasks.add(task = { c: callback, f: fulfill });\n }),\n abort() {\n tasks.delete(task);\n }\n };\n}\n\n// Track which nodes are claimed during hydration. Unclaimed nodes can then be removed from the DOM\n// at the end of hydration without touching the remaining nodes.\nlet is_hydrating = false;\nfunction start_hydrating() {\n is_hydrating = true;\n}\nfunction end_hydrating() {\n is_hydrating = false;\n}\nfunction upper_bound(low, high, key, value) {\n // Return first index of value larger than input value in the range [low, high)\n while (low < high) {\n const mid = low + ((high - low) >> 1);\n if (key(mid) <= value) {\n low = mid + 1;\n }\n else {\n high = mid;\n }\n }\n return low;\n}\nfunction init_hydrate(target) {\n if (target.hydrate_init)\n return;\n target.hydrate_init = true;\n // We know that all children have claim_order values since the unclaimed have been detached if target is not \n let children = target.childNodes;\n // If target is , there may be children without claim_order\n if (target.nodeName === 'HEAD') {\n const myChildren = [];\n for (let i = 0; i < children.length; i++) {\n const node = children[i];\n if (node.claim_order !== undefined) {\n myChildren.push(node);\n }\n }\n children = myChildren;\n }\n /*\n * Reorder claimed children optimally.\n * We can reorder claimed children optimally by finding the longest subsequence of\n * nodes that are already claimed in order and only moving the rest. The longest\n * subsequence subsequence of nodes that are claimed in order can be found by\n * computing the longest increasing subsequence of .claim_order values.\n *\n * This algorithm is optimal in generating the least amount of reorder operations\n * possible.\n *\n * Proof:\n * We know that, given a set of reordering operations, the nodes that do not move\n * always form an increasing subsequence, since they do not move among each other\n * meaning that they must be already ordered among each other. Thus, the maximal\n * set of nodes that do not move form a longest increasing subsequence.\n */\n // Compute longest increasing subsequence\n // m: subsequence length j => index k of smallest value that ends an increasing subsequence of length j\n const m = new Int32Array(children.length + 1);\n // Predecessor indices + 1\n const p = new Int32Array(children.length);\n m[0] = -1;\n let longest = 0;\n for (let i = 0; i < children.length; i++) {\n const current = children[i].claim_order;\n // Find the largest subsequence length such that it ends in a value less than our current value\n // upper_bound returns first greater value, so we subtract one\n // with fast path for when we are on the current longest subsequence\n const seqLen = ((longest > 0 && children[m[longest]].claim_order <= current) ? longest + 1 : upper_bound(1, longest, idx => children[m[idx]].claim_order, current)) - 1;\n p[i] = m[seqLen] + 1;\n const newLen = seqLen + 1;\n // We can guarantee that current is the smallest value. Otherwise, we would have generated a longer sequence.\n m[newLen] = i;\n longest = Math.max(newLen, longest);\n }\n // The longest increasing subsequence of nodes (initially reversed)\n const lis = [];\n // The rest of the nodes, nodes that will be moved\n const toMove = [];\n let last = children.length - 1;\n for (let cur = m[longest] + 1; cur != 0; cur = p[cur - 1]) {\n lis.push(children[cur - 1]);\n for (; last >= cur; last--) {\n toMove.push(children[last]);\n }\n last--;\n }\n for (; last >= 0; last--) {\n toMove.push(children[last]);\n }\n lis.reverse();\n // We sort the nodes being moved to guarantee that their insertion order matches the claim order\n toMove.sort((a, b) => a.claim_order - b.claim_order);\n // Finally, we move the nodes\n for (let i = 0, j = 0; i < toMove.length; i++) {\n while (j < lis.length && toMove[i].claim_order >= lis[j].claim_order) {\n j++;\n }\n const anchor = j < lis.length ? lis[j] : null;\n target.insertBefore(toMove[i], anchor);\n }\n}\nfunction append(target, node) {\n target.appendChild(node);\n}\nfunction append_styles(target, style_sheet_id, styles) {\n const append_styles_to = get_root_for_style(target);\n if (!append_styles_to.getElementById(style_sheet_id)) {\n const style = element('style');\n style.id = style_sheet_id;\n style.textContent = styles;\n append_stylesheet(append_styles_to, style);\n }\n}\nfunction get_root_for_style(node) {\n if (!node)\n return document;\n const root = node.getRootNode ? node.getRootNode() : node.ownerDocument;\n if (root && root.host) {\n return root;\n }\n return node.ownerDocument;\n}\nfunction append_empty_stylesheet(node) {\n const style_element = element('style');\n append_stylesheet(get_root_for_style(node), style_element);\n return style_element;\n}\nfunction append_stylesheet(node, style) {\n append(node.head || node, style);\n}\nfunction append_hydration(target, node) {\n if (is_hydrating) {\n init_hydrate(target);\n if ((target.actual_end_child === undefined) || ((target.actual_end_child !== null) && (target.actual_end_child.parentElement !== target))) {\n target.actual_end_child = target.firstChild;\n }\n // Skip nodes of undefined ordering\n while ((target.actual_end_child !== null) && (target.actual_end_child.claim_order === undefined)) {\n target.actual_end_child = target.actual_end_child.nextSibling;\n }\n if (node !== target.actual_end_child) {\n // We only insert if the ordering of this node should be modified or the parent node is not target\n if (node.claim_order !== undefined || node.parentNode !== target) {\n target.insertBefore(node, target.actual_end_child);\n }\n }\n else {\n target.actual_end_child = node.nextSibling;\n }\n }\n else if (node.parentNode !== target || node.nextSibling !== null) {\n target.appendChild(node);\n }\n}\nfunction insert(target, node, anchor) {\n target.insertBefore(node, anchor || null);\n}\nfunction insert_hydration(target, node, anchor) {\n if (is_hydrating && !anchor) {\n append_hydration(target, node);\n }\n else if (node.parentNode !== target || node.nextSibling != anchor) {\n target.insertBefore(node, anchor || null);\n }\n}\nfunction detach(node) {\n node.parentNode.removeChild(node);\n}\nfunction destroy_each(iterations, detaching) {\n for (let i = 0; i < iterations.length; i += 1) {\n if (iterations[i])\n iterations[i].d(detaching);\n }\n}\nfunction element(name) {\n return document.createElement(name);\n}\nfunction element_is(name, is) {\n return document.createElement(name, { is });\n}\nfunction object_without_properties(obj, exclude) {\n const target = {};\n for (const k in obj) {\n if (has_prop(obj, k)\n // @ts-ignore\n && exclude.indexOf(k) === -1) {\n // @ts-ignore\n target[k] = obj[k];\n }\n }\n return target;\n}\nfunction svg_element(name) {\n return document.createElementNS('http://www.w3.org/2000/svg', name);\n}\nfunction text(data) {\n return document.createTextNode(data);\n}\nfunction space() {\n return text(' ');\n}\nfunction empty() {\n return text('');\n}\nfunction listen(node, event, handler, options) {\n node.addEventListener(event, handler, options);\n return () => node.removeEventListener(event, handler, options);\n}\nfunction prevent_default(fn) {\n return function (event) {\n event.preventDefault();\n // @ts-ignore\n return fn.call(this, event);\n };\n}\nfunction stop_propagation(fn) {\n return function (event) {\n event.stopPropagation();\n // @ts-ignore\n return fn.call(this, event);\n };\n}\nfunction self(fn) {\n return function (event) {\n // @ts-ignore\n if (event.target === this)\n fn.call(this, event);\n };\n}\nfunction trusted(fn) {\n return function (event) {\n // @ts-ignore\n if (event.isTrusted)\n fn.call(this, event);\n };\n}\nfunction attr(node, attribute, value) {\n if (value == null)\n node.removeAttribute(attribute);\n else if (node.getAttribute(attribute) !== value)\n node.setAttribute(attribute, value);\n}\nfunction set_attributes(node, attributes) {\n // @ts-ignore\n const descriptors = Object.getOwnPropertyDescriptors(node.__proto__);\n for (const key in attributes) {\n if (attributes[key] == null) {\n node.removeAttribute(key);\n }\n else if (key === 'style') {\n node.style.cssText = attributes[key];\n }\n else if (key === '__value') {\n node.value = node[key] = attributes[key];\n }\n else if (descriptors[key] && descriptors[key].set) {\n node[key] = attributes[key];\n }\n else {\n attr(node, key, attributes[key]);\n }\n }\n}\nfunction set_svg_attributes(node, attributes) {\n for (const key in attributes) {\n attr(node, key, attributes[key]);\n }\n}\nfunction set_custom_element_data(node, prop, value) {\n if (prop in node) {\n node[prop] = typeof node[prop] === 'boolean' && value === '' ? true : value;\n }\n else {\n attr(node, prop, value);\n }\n}\nfunction xlink_attr(node, attribute, value) {\n node.setAttributeNS('http://www.w3.org/1999/xlink', attribute, value);\n}\nfunction get_binding_group_value(group, __value, checked) {\n const value = new Set();\n for (let i = 0; i < group.length; i += 1) {\n if (group[i].checked)\n value.add(group[i].__value);\n }\n if (!checked) {\n value.delete(__value);\n }\n return Array.from(value);\n}\nfunction to_number(value) {\n return value === '' ? null : +value;\n}\nfunction time_ranges_to_array(ranges) {\n const array = [];\n for (let i = 0; i < ranges.length; i += 1) {\n array.push({ start: ranges.start(i), end: ranges.end(i) });\n }\n return array;\n}\nfunction children(element) {\n return Array.from(element.childNodes);\n}\nfunction init_claim_info(nodes) {\n if (nodes.claim_info === undefined) {\n nodes.claim_info = { last_index: 0, total_claimed: 0 };\n }\n}\nfunction claim_node(nodes, predicate, processNode, createNode, dontUpdateLastIndex = false) {\n // Try to find nodes in an order such that we lengthen the longest increasing subsequence\n init_claim_info(nodes);\n const resultNode = (() => {\n // We first try to find an element after the previous one\n for (let i = nodes.claim_info.last_index; i < nodes.length; i++) {\n const node = nodes[i];\n if (predicate(node)) {\n const replacement = processNode(node);\n if (replacement === undefined) {\n nodes.splice(i, 1);\n }\n else {\n nodes[i] = replacement;\n }\n if (!dontUpdateLastIndex) {\n nodes.claim_info.last_index = i;\n }\n return node;\n }\n }\n // Otherwise, we try to find one before\n // We iterate in reverse so that we don't go too far back\n for (let i = nodes.claim_info.last_index - 1; i >= 0; i--) {\n const node = nodes[i];\n if (predicate(node)) {\n const replacement = processNode(node);\n if (replacement === undefined) {\n nodes.splice(i, 1);\n }\n else {\n nodes[i] = replacement;\n }\n if (!dontUpdateLastIndex) {\n nodes.claim_info.last_index = i;\n }\n else if (replacement === undefined) {\n // Since we spliced before the last_index, we decrease it\n nodes.claim_info.last_index--;\n }\n return node;\n }\n }\n // If we can't find any matching node, we create a new one\n return createNode();\n })();\n resultNode.claim_order = nodes.claim_info.total_claimed;\n nodes.claim_info.total_claimed += 1;\n return resultNode;\n}\nfunction claim_element_base(nodes, name, attributes, create_element) {\n return claim_node(nodes, (node) => node.nodeName === name, (node) => {\n const remove = [];\n for (let j = 0; j < node.attributes.length; j++) {\n const attribute = node.attributes[j];\n if (!attributes[attribute.name]) {\n remove.push(attribute.name);\n }\n }\n remove.forEach(v => node.removeAttribute(v));\n return undefined;\n }, () => create_element(name));\n}\nfunction claim_element(nodes, name, attributes) {\n return claim_element_base(nodes, name, attributes, element);\n}\nfunction claim_svg_element(nodes, name, attributes) {\n return claim_element_base(nodes, name, attributes, svg_element);\n}\nfunction claim_text(nodes, data) {\n return claim_node(nodes, (node) => node.nodeType === 3, (node) => {\n const dataStr = '' + data;\n if (node.data.startsWith(dataStr)) {\n if (node.data.length !== dataStr.length) {\n return node.splitText(dataStr.length);\n }\n }\n else {\n node.data = dataStr;\n }\n }, () => text(data), true // Text nodes should not update last index since it is likely not worth it to eliminate an increasing subsequence of actual elements\n );\n}\nfunction claim_space(nodes) {\n return claim_text(nodes, ' ');\n}\nfunction find_comment(nodes, text, start) {\n for (let i = start; i < nodes.length; i += 1) {\n const node = nodes[i];\n if (node.nodeType === 8 /* comment node */ && node.textContent.trim() === text) {\n return i;\n }\n }\n return nodes.length;\n}\nfunction claim_html_tag(nodes) {\n // find html opening tag\n const start_index = find_comment(nodes, 'HTML_TAG_START', 0);\n const end_index = find_comment(nodes, 'HTML_TAG_END', start_index);\n if (start_index === end_index) {\n return new HtmlTagHydration();\n }\n init_claim_info(nodes);\n const html_tag_nodes = nodes.splice(start_index, end_index + 1);\n detach(html_tag_nodes[0]);\n detach(html_tag_nodes[html_tag_nodes.length - 1]);\n const claimed_nodes = html_tag_nodes.slice(1, html_tag_nodes.length - 1);\n for (const n of claimed_nodes) {\n n.claim_order = nodes.claim_info.total_claimed;\n nodes.claim_info.total_claimed += 1;\n }\n return new HtmlTagHydration(claimed_nodes);\n}\nfunction set_data(text, data) {\n data = '' + data;\n if (text.wholeText !== data)\n text.data = data;\n}\nfunction set_input_value(input, value) {\n input.value = value == null ? '' : value;\n}\nfunction set_input_type(input, type) {\n try {\n input.type = type;\n }\n catch (e) {\n // do nothing\n }\n}\nfunction set_style(node, key, value, important) {\n node.style.setProperty(key, value, important ? 'important' : '');\n}\nfunction select_option(select, value) {\n for (let i = 0; i < select.options.length; i += 1) {\n const option = select.options[i];\n if (option.__value === value) {\n option.selected = true;\n return;\n }\n }\n select.selectedIndex = -1; // no option should be selected\n}\nfunction select_options(select, value) {\n for (let i = 0; i < select.options.length; i += 1) {\n const option = select.options[i];\n option.selected = ~value.indexOf(option.__value);\n }\n}\nfunction select_value(select) {\n const selected_option = select.querySelector(':checked') || select.options[0];\n return selected_option && selected_option.__value;\n}\nfunction select_multiple_value(select) {\n return [].map.call(select.querySelectorAll(':checked'), option => option.__value);\n}\n// unfortunately this can't be a constant as that wouldn't be tree-shakeable\n// so we cache the result instead\nlet crossorigin;\nfunction is_crossorigin() {\n if (crossorigin === undefined) {\n crossorigin = false;\n try {\n if (typeof window !== 'undefined' && window.parent) {\n void window.parent.document;\n }\n }\n catch (error) {\n crossorigin = true;\n }\n }\n return crossorigin;\n}\nfunction add_resize_listener(node, fn) {\n const computed_style = getComputedStyle(node);\n if (computed_style.position === 'static') {\n node.style.position = 'relative';\n }\n const iframe = element('iframe');\n iframe.setAttribute('style', 'display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%; ' +\n 'overflow: hidden; border: 0; opacity: 0; pointer-events: none; z-index: -1;');\n iframe.setAttribute('aria-hidden', 'true');\n iframe.tabIndex = -1;\n const crossorigin = is_crossorigin();\n let unsubscribe;\n if (crossorigin) {\n iframe.src = \"data:text/html,\";\n unsubscribe = listen(window, 'message', (event) => {\n if (event.source === iframe.contentWindow)\n fn();\n });\n }\n else {\n iframe.src = 'about:blank';\n iframe.onload = () => {\n unsubscribe = listen(iframe.contentWindow, 'resize', fn);\n };\n }\n append(node, iframe);\n return () => {\n if (crossorigin) {\n unsubscribe();\n }\n else if (unsubscribe && iframe.contentWindow) {\n unsubscribe();\n }\n detach(iframe);\n };\n}\nfunction toggle_class(element, name, toggle) {\n element.classList[toggle ? 'add' : 'remove'](name);\n}\nfunction custom_event(type, detail, bubbles = false) {\n const e = document.createEvent('CustomEvent');\n e.initCustomEvent(type, bubbles, false, detail);\n return e;\n}\nfunction query_selector_all(selector, parent = document.body) {\n return Array.from(parent.querySelectorAll(selector));\n}\nclass HtmlTag {\n constructor() {\n this.e = this.n = null;\n }\n c(html) {\n this.h(html);\n }\n m(html, target, anchor = null) {\n if (!this.e) {\n this.e = element(target.nodeName);\n this.t = target;\n this.c(html);\n }\n this.i(anchor);\n }\n h(html) {\n this.e.innerHTML = html;\n this.n = Array.from(this.e.childNodes);\n }\n i(anchor) {\n for (let i = 0; i < this.n.length; i += 1) {\n insert(this.t, this.n[i], anchor);\n }\n }\n p(html) {\n this.d();\n this.h(html);\n this.i(this.a);\n }\n d() {\n this.n.forEach(detach);\n }\n}\nclass HtmlTagHydration extends HtmlTag {\n constructor(claimed_nodes) {\n super();\n this.e = this.n = null;\n this.l = claimed_nodes;\n }\n c(html) {\n if (this.l) {\n this.n = this.l;\n }\n else {\n super.c(html);\n }\n }\n i(anchor) {\n for (let i = 0; i < this.n.length; i += 1) {\n insert_hydration(this.t, this.n[i], anchor);\n }\n }\n}\nfunction attribute_to_object(attributes) {\n const result = {};\n for (const attribute of attributes) {\n result[attribute.name] = attribute.value;\n }\n return result;\n}\nfunction get_custom_elements_slots(element) {\n const result = {};\n element.childNodes.forEach((node) => {\n result[node.slot || 'default'] = true;\n });\n return result;\n}\n\nconst active_docs = new Set();\nlet active = 0;\n// https://github.com/darkskyapp/string-hash/blob/master/index.js\nfunction hash(str) {\n let hash = 5381;\n let i = str.length;\n while (i--)\n hash = ((hash << 5) - hash) ^ str.charCodeAt(i);\n return hash >>> 0;\n}\nfunction create_rule(node, a, b, duration, delay, ease, fn, uid = 0) {\n const step = 16.666 / duration;\n let keyframes = '{\\n';\n for (let p = 0; p <= 1; p += step) {\n const t = a + (b - a) * ease(p);\n keyframes += p * 100 + `%{${fn(t, 1 - t)}}\\n`;\n }\n const rule = keyframes + `100% {${fn(b, 1 - b)}}\\n}`;\n const name = `__svelte_${hash(rule)}_${uid}`;\n const doc = get_root_for_style(node);\n active_docs.add(doc);\n const stylesheet = doc.__svelte_stylesheet || (doc.__svelte_stylesheet = append_empty_stylesheet(node).sheet);\n const current_rules = doc.__svelte_rules || (doc.__svelte_rules = {});\n if (!current_rules[name]) {\n current_rules[name] = true;\n stylesheet.insertRule(`@keyframes ${name} ${rule}`, stylesheet.cssRules.length);\n }\n const animation = node.style.animation || '';\n node.style.animation = `${animation ? `${animation}, ` : ''}${name} ${duration}ms linear ${delay}ms 1 both`;\n active += 1;\n return name;\n}\nfunction delete_rule(node, name) {\n const previous = (node.style.animation || '').split(', ');\n const next = previous.filter(name\n ? anim => anim.indexOf(name) < 0 // remove specific animation\n : anim => anim.indexOf('__svelte') === -1 // remove all Svelte animations\n );\n const deleted = previous.length - next.length;\n if (deleted) {\n node.style.animation = next.join(', ');\n active -= deleted;\n if (!active)\n clear_rules();\n }\n}\nfunction clear_rules() {\n raf(() => {\n if (active)\n return;\n active_docs.forEach(doc => {\n const stylesheet = doc.__svelte_stylesheet;\n let i = stylesheet.cssRules.length;\n while (i--)\n stylesheet.deleteRule(i);\n doc.__svelte_rules = {};\n });\n active_docs.clear();\n });\n}\n\nfunction create_animation(node, from, fn, params) {\n if (!from)\n return noop;\n const to = node.getBoundingClientRect();\n if (from.left === to.left && from.right === to.right && from.top === to.top && from.bottom === to.bottom)\n return noop;\n const { delay = 0, duration = 300, easing = identity, \n // @ts-ignore todo: should this be separated from destructuring? Or start/end added to public api and documentation?\n start: start_time = now() + delay, \n // @ts-ignore todo:\n end = start_time + duration, tick = noop, css } = fn(node, { from, to }, params);\n let running = true;\n let started = false;\n let name;\n function start() {\n if (css) {\n name = create_rule(node, 0, 1, duration, delay, easing, css);\n }\n if (!delay) {\n started = true;\n }\n }\n function stop() {\n if (css)\n delete_rule(node, name);\n running = false;\n }\n loop(now => {\n if (!started && now >= start_time) {\n started = true;\n }\n if (started && now >= end) {\n tick(1, 0);\n stop();\n }\n if (!running) {\n return false;\n }\n if (started) {\n const p = now - start_time;\n const t = 0 + 1 * easing(p / duration);\n tick(t, 1 - t);\n }\n return true;\n });\n start();\n tick(0, 1);\n return stop;\n}\nfunction fix_position(node) {\n const style = getComputedStyle(node);\n if (style.position !== 'absolute' && style.position !== 'fixed') {\n const { width, height } = style;\n const a = node.getBoundingClientRect();\n node.style.position = 'absolute';\n node.style.width = width;\n node.style.height = height;\n add_transform(node, a);\n }\n}\nfunction add_transform(node, a) {\n const b = node.getBoundingClientRect();\n if (a.left !== b.left || a.top !== b.top) {\n const style = getComputedStyle(node);\n const transform = style.transform === 'none' ? '' : style.transform;\n node.style.transform = `${transform} translate(${a.left - b.left}px, ${a.top - b.top}px)`;\n }\n}\n\nlet current_component;\nfunction set_current_component(component) {\n current_component = component;\n}\nfunction get_current_component() {\n if (!current_component)\n throw new Error('Function called outside component initialization');\n return current_component;\n}\nfunction beforeUpdate(fn) {\n get_current_component().$$.before_update.push(fn);\n}\nfunction onMount(fn) {\n get_current_component().$$.on_mount.push(fn);\n}\nfunction afterUpdate(fn) {\n get_current_component().$$.after_update.push(fn);\n}\nfunction onDestroy(fn) {\n get_current_component().$$.on_destroy.push(fn);\n}\nfunction createEventDispatcher() {\n const component = get_current_component();\n return (type, detail) => {\n const callbacks = component.$$.callbacks[type];\n if (callbacks) {\n // TODO are there situations where events could be dispatched\n // in a server (non-DOM) environment?\n const event = custom_event(type, detail);\n callbacks.slice().forEach(fn => {\n fn.call(component, event);\n });\n }\n };\n}\nfunction setContext(key, context) {\n get_current_component().$$.context.set(key, context);\n}\nfunction getContext(key) {\n return get_current_component().$$.context.get(key);\n}\nfunction getAllContexts() {\n return get_current_component().$$.context;\n}\nfunction hasContext(key) {\n return get_current_component().$$.context.has(key);\n}\n// TODO figure out if we still want to support\n// shorthand events, or if we want to implement\n// a real bubbling mechanism\nfunction bubble(component, event) {\n const callbacks = component.$$.callbacks[event.type];\n if (callbacks) {\n // @ts-ignore\n callbacks.slice().forEach(fn => fn.call(this, event));\n }\n}\n\nconst dirty_components = [];\nconst intros = { enabled: false };\nconst binding_callbacks = [];\nconst render_callbacks = [];\nconst flush_callbacks = [];\nconst resolved_promise = Promise.resolve();\nlet update_scheduled = false;\nfunction schedule_update() {\n if (!update_scheduled) {\n update_scheduled = true;\n resolved_promise.then(flush);\n }\n}\nfunction tick() {\n schedule_update();\n return resolved_promise;\n}\nfunction add_render_callback(fn) {\n render_callbacks.push(fn);\n}\nfunction add_flush_callback(fn) {\n flush_callbacks.push(fn);\n}\nlet flushing = false;\nconst seen_callbacks = new Set();\nfunction flush() {\n if (flushing)\n return;\n flushing = true;\n do {\n // first, call beforeUpdate functions\n // and update components\n for (let i = 0; i < dirty_components.length; i += 1) {\n const component = dirty_components[i];\n set_current_component(component);\n update(component.$$);\n }\n set_current_component(null);\n dirty_components.length = 0;\n while (binding_callbacks.length)\n binding_callbacks.pop()();\n // then, once components are updated, call\n // afterUpdate functions. This may cause\n // subsequent updates...\n for (let i = 0; i < render_callbacks.length; i += 1) {\n const callback = render_callbacks[i];\n if (!seen_callbacks.has(callback)) {\n // ...so guard against infinite loops\n seen_callbacks.add(callback);\n callback();\n }\n }\n render_callbacks.length = 0;\n } while (dirty_components.length);\n while (flush_callbacks.length) {\n flush_callbacks.pop()();\n }\n update_scheduled = false;\n flushing = false;\n seen_callbacks.clear();\n}\nfunction update($$) {\n if ($$.fragment !== null) {\n $$.update();\n run_all($$.before_update);\n const dirty = $$.dirty;\n $$.dirty = [-1];\n $$.fragment && $$.fragment.p($$.ctx, dirty);\n $$.after_update.forEach(add_render_callback);\n }\n}\n\nlet promise;\nfunction wait() {\n if (!promise) {\n promise = Promise.resolve();\n promise.then(() => {\n promise = null;\n });\n }\n return promise;\n}\nfunction dispatch(node, direction, kind) {\n node.dispatchEvent(custom_event(`${direction ? 'intro' : 'outro'}${kind}`));\n}\nconst outroing = new Set();\nlet outros;\nfunction group_outros() {\n outros = {\n r: 0,\n c: [],\n p: outros // parent group\n };\n}\nfunction check_outros() {\n if (!outros.r) {\n run_all(outros.c);\n }\n outros = outros.p;\n}\nfunction transition_in(block, local) {\n if (block && block.i) {\n outroing.delete(block);\n block.i(local);\n }\n}\nfunction transition_out(block, local, detach, callback) {\n if (block && block.o) {\n if (outroing.has(block))\n return;\n outroing.add(block);\n outros.c.push(() => {\n outroing.delete(block);\n if (callback) {\n if (detach)\n block.d(1);\n callback();\n }\n });\n block.o(local);\n }\n}\nconst null_transition = { duration: 0 };\nfunction create_in_transition(node, fn, params) {\n let config = fn(node, params);\n let running = false;\n let animation_name;\n let task;\n let uid = 0;\n function cleanup() {\n if (animation_name)\n delete_rule(node, animation_name);\n }\n function go() {\n const { delay = 0, duration = 300, easing = identity, tick = noop, css } = config || null_transition;\n if (css)\n animation_name = create_rule(node, 0, 1, duration, delay, easing, css, uid++);\n tick(0, 1);\n const start_time = now() + delay;\n const end_time = start_time + duration;\n if (task)\n task.abort();\n running = true;\n add_render_callback(() => dispatch(node, true, 'start'));\n task = loop(now => {\n if (running) {\n if (now >= end_time) {\n tick(1, 0);\n dispatch(node, true, 'end');\n cleanup();\n return running = false;\n }\n if (now >= start_time) {\n const t = easing((now - start_time) / duration);\n tick(t, 1 - t);\n }\n }\n return running;\n });\n }\n let started = false;\n return {\n start() {\n if (started)\n return;\n started = true;\n delete_rule(node);\n if (is_function(config)) {\n config = config();\n wait().then(go);\n }\n else {\n go();\n }\n },\n invalidate() {\n started = false;\n },\n end() {\n if (running) {\n cleanup();\n running = false;\n }\n }\n };\n}\nfunction create_out_transition(node, fn, params) {\n let config = fn(node, params);\n let running = true;\n let animation_name;\n const group = outros;\n group.r += 1;\n function go() {\n const { delay = 0, duration = 300, easing = identity, tick = noop, css } = config || null_transition;\n if (css)\n animation_name = create_rule(node, 1, 0, duration, delay, easing, css);\n const start_time = now() + delay;\n const end_time = start_time + duration;\n add_render_callback(() => dispatch(node, false, 'start'));\n loop(now => {\n if (running) {\n if (now >= end_time) {\n tick(0, 1);\n dispatch(node, false, 'end');\n if (!--group.r) {\n // this will result in `end()` being called,\n // so we don't need to clean up here\n run_all(group.c);\n }\n return false;\n }\n if (now >= start_time) {\n const t = easing((now - start_time) / duration);\n tick(1 - t, t);\n }\n }\n return running;\n });\n }\n if (is_function(config)) {\n wait().then(() => {\n // @ts-ignore\n config = config();\n go();\n });\n }\n else {\n go();\n }\n return {\n end(reset) {\n if (reset && config.tick) {\n config.tick(1, 0);\n }\n if (running) {\n if (animation_name)\n delete_rule(node, animation_name);\n running = false;\n }\n }\n };\n}\nfunction create_bidirectional_transition(node, fn, params, intro) {\n let config = fn(node, params);\n let t = intro ? 0 : 1;\n let running_program = null;\n let pending_program = null;\n let animation_name = null;\n function clear_animation() {\n if (animation_name)\n delete_rule(node, animation_name);\n }\n function init(program, duration) {\n const d = (program.b - t);\n duration *= Math.abs(d);\n return {\n a: t,\n b: program.b,\n d,\n duration,\n start: program.start,\n end: program.start + duration,\n group: program.group\n };\n }\n function go(b) {\n const { delay = 0, duration = 300, easing = identity, tick = noop, css } = config || null_transition;\n const program = {\n start: now() + delay,\n b\n };\n if (!b) {\n // @ts-ignore todo: improve typings\n program.group = outros;\n outros.r += 1;\n }\n if (running_program || pending_program) {\n pending_program = program;\n }\n else {\n // if this is an intro, and there's a delay, we need to do\n // an initial tick and/or apply CSS animation immediately\n if (css) {\n clear_animation();\n animation_name = create_rule(node, t, b, duration, delay, easing, css);\n }\n if (b)\n tick(0, 1);\n running_program = init(program, duration);\n add_render_callback(() => dispatch(node, b, 'start'));\n loop(now => {\n if (pending_program && now > pending_program.start) {\n running_program = init(pending_program, duration);\n pending_program = null;\n dispatch(node, running_program.b, 'start');\n if (css) {\n clear_animation();\n animation_name = create_rule(node, t, running_program.b, running_program.duration, 0, easing, config.css);\n }\n }\n if (running_program) {\n if (now >= running_program.end) {\n tick(t = running_program.b, 1 - t);\n dispatch(node, running_program.b, 'end');\n if (!pending_program) {\n // we're done\n if (running_program.b) {\n // intro — we can tidy up immediately\n clear_animation();\n }\n else {\n // outro — needs to be coordinated\n if (!--running_program.group.r)\n run_all(running_program.group.c);\n }\n }\n running_program = null;\n }\n else if (now >= running_program.start) {\n const p = now - running_program.start;\n t = running_program.a + running_program.d * easing(p / running_program.duration);\n tick(t, 1 - t);\n }\n }\n return !!(running_program || pending_program);\n });\n }\n }\n return {\n run(b) {\n if (is_function(config)) {\n wait().then(() => {\n // @ts-ignore\n config = config();\n go(b);\n });\n }\n else {\n go(b);\n }\n },\n end() {\n clear_animation();\n running_program = pending_program = null;\n }\n };\n}\n\nfunction handle_promise(promise, info) {\n const token = info.token = {};\n function update(type, index, key, value) {\n if (info.token !== token)\n return;\n info.resolved = value;\n let child_ctx = info.ctx;\n if (key !== undefined) {\n child_ctx = child_ctx.slice();\n child_ctx[key] = value;\n }\n const block = type && (info.current = type)(child_ctx);\n let needs_flush = false;\n if (info.block) {\n if (info.blocks) {\n info.blocks.forEach((block, i) => {\n if (i !== index && block) {\n group_outros();\n transition_out(block, 1, 1, () => {\n if (info.blocks[i] === block) {\n info.blocks[i] = null;\n }\n });\n check_outros();\n }\n });\n }\n else {\n info.block.d(1);\n }\n block.c();\n transition_in(block, 1);\n block.m(info.mount(), info.anchor);\n needs_flush = true;\n }\n info.block = block;\n if (info.blocks)\n info.blocks[index] = block;\n if (needs_flush) {\n flush();\n }\n }\n if (is_promise(promise)) {\n const current_component = get_current_component();\n promise.then(value => {\n set_current_component(current_component);\n update(info.then, 1, info.value, value);\n set_current_component(null);\n }, error => {\n set_current_component(current_component);\n update(info.catch, 2, info.error, error);\n set_current_component(null);\n if (!info.hasCatch) {\n throw error;\n }\n });\n // if we previously had a then/catch block, destroy it\n if (info.current !== info.pending) {\n update(info.pending, 0);\n return true;\n }\n }\n else {\n if (info.current !== info.then) {\n update(info.then, 1, info.value, promise);\n return true;\n }\n info.resolved = promise;\n }\n}\nfunction update_await_block_branch(info, ctx, dirty) {\n const child_ctx = ctx.slice();\n const { resolved } = info;\n if (info.current === info.then) {\n child_ctx[info.value] = resolved;\n }\n if (info.current === info.catch) {\n child_ctx[info.error] = resolved;\n }\n info.block.p(child_ctx, dirty);\n}\n\nconst globals = (typeof window !== 'undefined'\n ? window\n : typeof globalThis !== 'undefined'\n ? globalThis\n : global);\n\nfunction destroy_block(block, lookup) {\n block.d(1);\n lookup.delete(block.key);\n}\nfunction outro_and_destroy_block(block, lookup) {\n transition_out(block, 1, 1, () => {\n lookup.delete(block.key);\n });\n}\nfunction fix_and_destroy_block(block, lookup) {\n block.f();\n destroy_block(block, lookup);\n}\nfunction fix_and_outro_and_destroy_block(block, lookup) {\n block.f();\n outro_and_destroy_block(block, lookup);\n}\nfunction update_keyed_each(old_blocks, dirty, get_key, dynamic, ctx, list, lookup, node, destroy, create_each_block, next, get_context) {\n let o = old_blocks.length;\n let n = list.length;\n let i = o;\n const old_indexes = {};\n while (i--)\n old_indexes[old_blocks[i].key] = i;\n const new_blocks = [];\n const new_lookup = new Map();\n const deltas = new Map();\n i = n;\n while (i--) {\n const child_ctx = get_context(ctx, list, i);\n const key = get_key(child_ctx);\n let block = lookup.get(key);\n if (!block) {\n block = create_each_block(key, child_ctx);\n block.c();\n }\n else if (dynamic) {\n block.p(child_ctx, dirty);\n }\n new_lookup.set(key, new_blocks[i] = block);\n if (key in old_indexes)\n deltas.set(key, Math.abs(i - old_indexes[key]));\n }\n const will_move = new Set();\n const did_move = new Set();\n function insert(block) {\n transition_in(block, 1);\n block.m(node, next);\n lookup.set(block.key, block);\n next = block.first;\n n--;\n }\n while (o && n) {\n const new_block = new_blocks[n - 1];\n const old_block = old_blocks[o - 1];\n const new_key = new_block.key;\n const old_key = old_block.key;\n if (new_block === old_block) {\n // do nothing\n next = new_block.first;\n o--;\n n--;\n }\n else if (!new_lookup.has(old_key)) {\n // remove old block\n destroy(old_block, lookup);\n o--;\n }\n else if (!lookup.has(new_key) || will_move.has(new_key)) {\n insert(new_block);\n }\n else if (did_move.has(old_key)) {\n o--;\n }\n else if (deltas.get(new_key) > deltas.get(old_key)) {\n did_move.add(new_key);\n insert(new_block);\n }\n else {\n will_move.add(old_key);\n o--;\n }\n }\n while (o--) {\n const old_block = old_blocks[o];\n if (!new_lookup.has(old_block.key))\n destroy(old_block, lookup);\n }\n while (n)\n insert(new_blocks[n - 1]);\n return new_blocks;\n}\nfunction validate_each_keys(ctx, list, get_context, get_key) {\n const keys = new Set();\n for (let i = 0; i < list.length; i++) {\n const key = get_key(get_context(ctx, list, i));\n if (keys.has(key)) {\n throw new Error('Cannot have duplicate keys in a keyed each');\n }\n keys.add(key);\n }\n}\n\nfunction get_spread_update(levels, updates) {\n const update = {};\n const to_null_out = {};\n const accounted_for = { $$scope: 1 };\n let i = levels.length;\n while (i--) {\n const o = levels[i];\n const n = updates[i];\n if (n) {\n for (const key in o) {\n if (!(key in n))\n to_null_out[key] = 1;\n }\n for (const key in n) {\n if (!accounted_for[key]) {\n update[key] = n[key];\n accounted_for[key] = 1;\n }\n }\n levels[i] = n;\n }\n else {\n for (const key in o) {\n accounted_for[key] = 1;\n }\n }\n }\n for (const key in to_null_out) {\n if (!(key in update))\n update[key] = undefined;\n }\n return update;\n}\nfunction get_spread_object(spread_props) {\n return typeof spread_props === 'object' && spread_props !== null ? spread_props : {};\n}\n\n// source: https://html.spec.whatwg.org/multipage/indices.html\nconst boolean_attributes = new Set([\n 'allowfullscreen',\n 'allowpaymentrequest',\n 'async',\n 'autofocus',\n 'autoplay',\n 'checked',\n 'controls',\n 'default',\n 'defer',\n 'disabled',\n 'formnovalidate',\n 'hidden',\n 'ismap',\n 'loop',\n 'multiple',\n 'muted',\n 'nomodule',\n 'novalidate',\n 'open',\n 'playsinline',\n 'readonly',\n 'required',\n 'reversed',\n 'selected'\n]);\n\nconst invalid_attribute_name_character = /[\\s'\">/=\\u{FDD0}-\\u{FDEF}\\u{FFFE}\\u{FFFF}\\u{1FFFE}\\u{1FFFF}\\u{2FFFE}\\u{2FFFF}\\u{3FFFE}\\u{3FFFF}\\u{4FFFE}\\u{4FFFF}\\u{5FFFE}\\u{5FFFF}\\u{6FFFE}\\u{6FFFF}\\u{7FFFE}\\u{7FFFF}\\u{8FFFE}\\u{8FFFF}\\u{9FFFE}\\u{9FFFF}\\u{AFFFE}\\u{AFFFF}\\u{BFFFE}\\u{BFFFF}\\u{CFFFE}\\u{CFFFF}\\u{DFFFE}\\u{DFFFF}\\u{EFFFE}\\u{EFFFF}\\u{FFFFE}\\u{FFFFF}\\u{10FFFE}\\u{10FFFF}]/u;\n// https://html.spec.whatwg.org/multipage/syntax.html#attributes-2\n// https://infra.spec.whatwg.org/#noncharacter\nfunction spread(args, classes_to_add) {\n const attributes = Object.assign({}, ...args);\n if (classes_to_add) {\n if (attributes.class == null) {\n attributes.class = classes_to_add;\n }\n else {\n attributes.class += ' ' + classes_to_add;\n }\n }\n let str = '';\n Object.keys(attributes).forEach(name => {\n if (invalid_attribute_name_character.test(name))\n return;\n const value = attributes[name];\n if (value === true)\n str += ' ' + name;\n else if (boolean_attributes.has(name.toLowerCase())) {\n if (value)\n str += ' ' + name;\n }\n else if (value != null) {\n str += ` ${name}=\"${value}\"`;\n }\n });\n return str;\n}\nconst escaped = {\n '\"': '"',\n \"'\": ''',\n '&': '&',\n '<': '<',\n '>': '>'\n};\nfunction escape(html) {\n return String(html).replace(/[\"'&<>]/g, match => escaped[match]);\n}\nfunction escape_attribute_value(value) {\n return typeof value === 'string' ? escape(value) : value;\n}\nfunction escape_object(obj) {\n const result = {};\n for (const key in obj) {\n result[key] = escape_attribute_value(obj[key]);\n }\n return result;\n}\nfunction each(items, fn) {\n let str = '';\n for (let i = 0; i < items.length; i += 1) {\n str += fn(items[i], i);\n }\n return str;\n}\nconst missing_component = {\n $$render: () => ''\n};\nfunction validate_component(component, name) {\n if (!component || !component.$$render) {\n if (name === 'svelte:component')\n name += ' this={...}';\n throw new Error(`<${name}> is not a valid SSR component. You may need to review your build config to ensure that dependencies are compiled, rather than imported as pre-compiled modules`);\n }\n return component;\n}\nfunction debug(file, line, column, values) {\n console.log(`{@debug} ${file ? file + ' ' : ''}(${line}:${column})`); // eslint-disable-line no-console\n console.log(values); // eslint-disable-line no-console\n return '';\n}\nlet on_destroy;\nfunction create_ssr_component(fn) {\n function $$render(result, props, bindings, slots, context) {\n const parent_component = current_component;\n const $$ = {\n on_destroy,\n context: new Map(context || (parent_component ? parent_component.$$.context : [])),\n // these will be immediately discarded\n on_mount: [],\n before_update: [],\n after_update: [],\n callbacks: blank_object()\n };\n set_current_component({ $$ });\n const html = fn(result, props, bindings, slots);\n set_current_component(parent_component);\n return html;\n }\n return {\n render: (props = {}, { $$slots = {}, context = new Map() } = {}) => {\n on_destroy = [];\n const result = { title: '', head: '', css: new Set() };\n const html = $$render(result, props, {}, $$slots, context);\n run_all(on_destroy);\n return {\n html,\n css: {\n code: Array.from(result.css).map(css => css.code).join('\\n'),\n map: null // TODO\n },\n head: result.title + result.head\n };\n },\n $$render\n };\n}\nfunction add_attribute(name, value, boolean) {\n if (value == null || (boolean && !value))\n return '';\n return ` ${name}${value === true ? '' : `=${typeof value === 'string' ? JSON.stringify(escape(value)) : `\"${value}\"`}`}`;\n}\nfunction add_classes(classes) {\n return classes ? ` class=\"${classes}\"` : '';\n}\n\nfunction bind(component, name, callback) {\n const index = component.$$.props[name];\n if (index !== undefined) {\n component.$$.bound[index] = callback;\n callback(component.$$.ctx[index]);\n }\n}\nfunction create_component(block) {\n block && block.c();\n}\nfunction claim_component(block, parent_nodes) {\n block && block.l(parent_nodes);\n}\nfunction mount_component(component, target, anchor, customElement) {\n const { fragment, on_mount, on_destroy, after_update } = component.$$;\n fragment && fragment.m(target, anchor);\n if (!customElement) {\n // onMount happens before the initial afterUpdate\n add_render_callback(() => {\n const new_on_destroy = on_mount.map(run).filter(is_function);\n if (on_destroy) {\n on_destroy.push(...new_on_destroy);\n }\n else {\n // Edge case - component was destroyed immediately,\n // most likely as a result of a binding initialising\n run_all(new_on_destroy);\n }\n component.$$.on_mount = [];\n });\n }\n after_update.forEach(add_render_callback);\n}\nfunction destroy_component(component, detaching) {\n const $$ = component.$$;\n if ($$.fragment !== null) {\n run_all($$.on_destroy);\n $$.fragment && $$.fragment.d(detaching);\n // TODO null out other refs, including component.$$ (but need to\n // preserve final state?)\n $$.on_destroy = $$.fragment = null;\n $$.ctx = [];\n }\n}\nfunction make_dirty(component, i) {\n if (component.$$.dirty[0] === -1) {\n dirty_components.push(component);\n schedule_update();\n component.$$.dirty.fill(0);\n }\n component.$$.dirty[(i / 31) | 0] |= (1 << (i % 31));\n}\nfunction init(component, options, instance, create_fragment, not_equal, props, append_styles, dirty = [-1]) {\n const parent_component = current_component;\n set_current_component(component);\n const $$ = component.$$ = {\n fragment: null,\n ctx: null,\n // state\n props,\n update: noop,\n not_equal,\n bound: blank_object(),\n // lifecycle\n on_mount: [],\n on_destroy: [],\n on_disconnect: [],\n before_update: [],\n after_update: [],\n context: new Map(options.context || (parent_component ? parent_component.$$.context : [])),\n // everything else\n callbacks: blank_object(),\n dirty,\n skip_bound: false,\n root: options.target || parent_component.$$.root\n };\n append_styles && append_styles($$.root);\n let ready = false;\n $$.ctx = instance\n ? instance(component, options.props || {}, (i, ret, ...rest) => {\n const value = rest.length ? rest[0] : ret;\n if ($$.ctx && not_equal($$.ctx[i], $$.ctx[i] = value)) {\n if (!$$.skip_bound && $$.bound[i])\n $$.bound[i](value);\n if (ready)\n make_dirty(component, i);\n }\n return ret;\n })\n : [];\n $$.update();\n ready = true;\n run_all($$.before_update);\n // `false` as a special case of no DOM component\n $$.fragment = create_fragment ? create_fragment($$.ctx) : false;\n if (options.target) {\n if (options.hydrate) {\n start_hydrating();\n const nodes = children(options.target);\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n $$.fragment && $$.fragment.l(nodes);\n nodes.forEach(detach);\n }\n else {\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n $$.fragment && $$.fragment.c();\n }\n if (options.intro)\n transition_in(component.$$.fragment);\n mount_component(component, options.target, options.anchor, options.customElement);\n end_hydrating();\n flush();\n }\n set_current_component(parent_component);\n}\nlet SvelteElement;\nif (typeof HTMLElement === 'function') {\n SvelteElement = class extends HTMLElement {\n constructor() {\n super();\n this.attachShadow({ mode: 'open' });\n }\n connectedCallback() {\n const { on_mount } = this.$$;\n this.$$.on_disconnect = on_mount.map(run).filter(is_function);\n // @ts-ignore todo: improve typings\n for (const key in this.$$.slotted) {\n // @ts-ignore todo: improve typings\n this.appendChild(this.$$.slotted[key]);\n }\n }\n attributeChangedCallback(attr, _oldValue, newValue) {\n this[attr] = newValue;\n }\n disconnectedCallback() {\n run_all(this.$$.on_disconnect);\n }\n $destroy() {\n destroy_component(this, 1);\n this.$destroy = noop;\n }\n $on(type, callback) {\n // TODO should this delegate to addEventListener?\n const callbacks = (this.$$.callbacks[type] || (this.$$.callbacks[type] = []));\n callbacks.push(callback);\n return () => {\n const index = callbacks.indexOf(callback);\n if (index !== -1)\n callbacks.splice(index, 1);\n };\n }\n $set($$props) {\n if (this.$$set && !is_empty($$props)) {\n this.$$.skip_bound = true;\n this.$$set($$props);\n this.$$.skip_bound = false;\n }\n }\n };\n}\n/**\n * Base class for Svelte components. Used when dev=false.\n */\nclass SvelteComponent {\n $destroy() {\n destroy_component(this, 1);\n this.$destroy = noop;\n }\n $on(type, callback) {\n const callbacks = (this.$$.callbacks[type] || (this.$$.callbacks[type] = []));\n callbacks.push(callback);\n return () => {\n const index = callbacks.indexOf(callback);\n if (index !== -1)\n callbacks.splice(index, 1);\n };\n }\n $set($$props) {\n if (this.$$set && !is_empty($$props)) {\n this.$$.skip_bound = true;\n this.$$set($$props);\n this.$$.skip_bound = false;\n }\n }\n}\n\nfunction dispatch_dev(type, detail) {\n document.dispatchEvent(custom_event(type, Object.assign({ version: '3.44.2' }, detail), true));\n}\nfunction append_dev(target, node) {\n dispatch_dev('SvelteDOMInsert', { target, node });\n append(target, node);\n}\nfunction append_hydration_dev(target, node) {\n dispatch_dev('SvelteDOMInsert', { target, node });\n append_hydration(target, node);\n}\nfunction insert_dev(target, node, anchor) {\n dispatch_dev('SvelteDOMInsert', { target, node, anchor });\n insert(target, node, anchor);\n}\nfunction insert_hydration_dev(target, node, anchor) {\n dispatch_dev('SvelteDOMInsert', { target, node, anchor });\n insert_hydration(target, node, anchor);\n}\nfunction detach_dev(node) {\n dispatch_dev('SvelteDOMRemove', { node });\n detach(node);\n}\nfunction detach_between_dev(before, after) {\n while (before.nextSibling && before.nextSibling !== after) {\n detach_dev(before.nextSibling);\n }\n}\nfunction detach_before_dev(after) {\n while (after.previousSibling) {\n detach_dev(after.previousSibling);\n }\n}\nfunction detach_after_dev(before) {\n while (before.nextSibling) {\n detach_dev(before.nextSibling);\n }\n}\nfunction listen_dev(node, event, handler, options, has_prevent_default, has_stop_propagation) {\n const modifiers = options === true ? ['capture'] : options ? Array.from(Object.keys(options)) : [];\n if (has_prevent_default)\n modifiers.push('preventDefault');\n if (has_stop_propagation)\n modifiers.push('stopPropagation');\n dispatch_dev('SvelteDOMAddEventListener', { node, event, handler, modifiers });\n const dispose = listen(node, event, handler, options);\n return () => {\n dispatch_dev('SvelteDOMRemoveEventListener', { node, event, handler, modifiers });\n dispose();\n };\n}\nfunction attr_dev(node, attribute, value) {\n attr(node, attribute, value);\n if (value == null)\n dispatch_dev('SvelteDOMRemoveAttribute', { node, attribute });\n else\n dispatch_dev('SvelteDOMSetAttribute', { node, attribute, value });\n}\nfunction prop_dev(node, property, value) {\n node[property] = value;\n dispatch_dev('SvelteDOMSetProperty', { node, property, value });\n}\nfunction dataset_dev(node, property, value) {\n node.dataset[property] = value;\n dispatch_dev('SvelteDOMSetDataset', { node, property, value });\n}\nfunction set_data_dev(text, data) {\n data = '' + data;\n if (text.wholeText === data)\n return;\n dispatch_dev('SvelteDOMSetData', { node: text, data });\n text.data = data;\n}\nfunction validate_each_argument(arg) {\n if (typeof arg !== 'string' && !(arg && typeof arg === 'object' && 'length' in arg)) {\n let msg = '{#each} only iterates over array-like objects.';\n if (typeof Symbol === 'function' && arg && Symbol.iterator in arg) {\n msg += ' You can use a spread to convert this iterable into an array.';\n }\n throw new Error(msg);\n }\n}\nfunction validate_slots(name, slot, keys) {\n for (const slot_key of Object.keys(slot)) {\n if (!~keys.indexOf(slot_key)) {\n console.warn(`<${name}> received an unexpected slot \"${slot_key}\".`);\n }\n }\n}\n/**\n * Base class for Svelte components with some minor dev-enhancements. Used when dev=true.\n */\nclass SvelteComponentDev extends SvelteComponent {\n constructor(options) {\n if (!options || (!options.target && !options.$$inline)) {\n throw new Error(\"'target' is a required option\");\n }\n super();\n }\n $destroy() {\n super.$destroy();\n this.$destroy = () => {\n console.warn('Component was already destroyed'); // eslint-disable-line no-console\n };\n }\n $capture_state() { }\n $inject_state() { }\n}\n/**\n * Base class to create strongly typed Svelte components.\n * This only exists for typing purposes and should be used in `.d.ts` files.\n *\n * ### Example:\n *\n * You have component library on npm called `component-library`, from which\n * you export a component called `MyComponent`. For Svelte+TypeScript users,\n * you want to provide typings. Therefore you create a `index.d.ts`:\n * ```ts\n * import { SvelteComponentTyped } from \"svelte\";\n * export class MyComponent extends SvelteComponentTyped<{foo: string}> {}\n * ```\n * Typing this makes it possible for IDEs like VS Code with the Svelte extension\n * to provide intellisense and to use the component like this in a Svelte file\n * with TypeScript:\n * ```svelte\n * \n * \n * ```\n *\n * #### Why not make this part of `SvelteComponent(Dev)`?\n * Because\n * ```ts\n * class ASubclassOfSvelteComponent extends SvelteComponent<{foo: string}> {}\n * const component: typeof SvelteComponent = ASubclassOfSvelteComponent;\n * ```\n * will throw a type error, so we need to separate the more strictly typed class.\n */\nclass SvelteComponentTyped extends SvelteComponentDev {\n constructor(options) {\n super(options);\n }\n}\nfunction loop_guard(timeout) {\n const start = Date.now();\n return () => {\n if (Date.now() - start > timeout) {\n throw new Error('Infinite loop detected');\n }\n };\n}\n\nexport { HtmlTag, HtmlTagHydration, SvelteComponent, SvelteComponentDev, SvelteComponentTyped, SvelteElement, action_destroyer, add_attribute, add_classes, add_flush_callback, add_location, add_render_callback, add_resize_listener, add_transform, afterUpdate, append, append_dev, append_empty_stylesheet, append_hydration, append_hydration_dev, append_styles, assign, attr, attr_dev, attribute_to_object, beforeUpdate, bind, binding_callbacks, blank_object, bubble, check_outros, children, claim_component, claim_element, claim_html_tag, claim_space, claim_svg_element, claim_text, clear_loops, component_subscribe, compute_rest_props, compute_slots, createEventDispatcher, create_animation, create_bidirectional_transition, create_component, create_in_transition, create_out_transition, create_slot, create_ssr_component, current_component, custom_event, dataset_dev, debug, destroy_block, destroy_component, destroy_each, detach, detach_after_dev, detach_before_dev, detach_between_dev, detach_dev, dirty_components, dispatch_dev, each, element, element_is, empty, end_hydrating, escape, escape_attribute_value, escape_object, escaped, exclude_internal_props, fix_and_destroy_block, fix_and_outro_and_destroy_block, fix_position, flush, getAllContexts, getContext, get_all_dirty_from_scope, get_binding_group_value, get_current_component, get_custom_elements_slots, get_root_for_style, get_slot_changes, get_spread_object, get_spread_update, get_store_value, globals, group_outros, handle_promise, hasContext, has_prop, identity, init, insert, insert_dev, insert_hydration, insert_hydration_dev, intros, invalid_attribute_name_character, is_client, is_crossorigin, is_empty, is_function, is_promise, listen, listen_dev, loop, loop_guard, missing_component, mount_component, noop, not_equal, now, null_to_empty, object_without_properties, onDestroy, onMount, once, outro_and_destroy_block, prevent_default, prop_dev, query_selector_all, raf, run, run_all, safe_not_equal, schedule_update, select_multiple_value, select_option, select_options, select_value, self, setContext, set_attributes, set_current_component, set_custom_element_data, set_data, set_data_dev, set_input_type, set_input_value, set_now, set_raf, set_store_value, set_style, set_svg_attributes, space, spread, src_url_equal, start_hydrating, stop_propagation, subscribe, svg_element, text, tick, time_ranges_to_array, to_number, toggle_class, transition_in, transition_out, trusted, update_await_block_branch, update_keyed_each, update_slot, update_slot_base, validate_component, validate_each_argument, validate_each_keys, validate_slots, validate_store, xlink_attr };\n","\n\n\n\n\n","\n\n{#if !closed}\n \n \n \n X\n \n \n \n \n \n \n{/if}\n\n\n","\n\n 3 ? value.length : 3}\n on:input={text_input}\n/>\n\n\n","\n\n\n\n\n","\n\n
\n {#each text_pointer as text_line}\n {#each text_line as text, i}\n {#if text == \" \"} {:else}{text}{/if}\n {#if i < 3} {/if}\n {/each}\n
\n {/each}\n
\n","\n\n\n\n\n","\n\n\n\n\n","\n\n
\n \n {\n change_tab(\"WiFi\");\n }}\n >\n WiFi\n \n\n {\n change_tab(\"SYS\");\n }}\n >\n SYS\n \n\n {\n change_tab(\"PS\");\n }}\n >\n PS\n \n \n\n \n {#if current_tab == \"WiFi\"}\n \n
\n {#await api_get(server + \"/api/v1/wifi/get_credentials\")}\n
Mode:
\n
\n\n
STA
\n
(join another network)
\n\n
SSID:
\n
\n\n
Pass:
\n
\n\n
AP
\n
(own access point)
\n\n
SSID:
\n
\n\n
Pass:
\n
class=\"value\"
\n\n
Hostname:
\n
\n\n
USB mode:
\n
\n {:then json}\n
Mode:
\n
\n \n
\n\n
STA
\n
(join another network)
\n\n
SSID:
\n
\n \n
\n\n
Pass:
\n
\n \n
\n\n
AP
\n
(own access point)
\n\n
SSID:
\n
\n \n
\n\n
Pass:
\n
\n \n
\n\n
Hostname:
\n
\n \n
\n\n
USB mode:
\n
\n \n
\n {:catch error}\n {error.message}\n {/await}\n
\n
\n
\n
\n {/if}\n\n {#if current_tab == \"SYS\"}\n \n
\n {#await api_get(server + \"/api/v1/system/info\")}\n
IP:
\n
\n {:then json}\n
IP:
\n
{print_ip(json.ip)}
\n
Mac:
\n
{print_mac(json.mac)}
\n
IDF ver:
\n
{json.idf_version}
\n
Model:
\n
\n {json.model}.{json.revision}\n {json.cores}-core\n
\n
Min free:
\n
{json.heap.minimum_free_bytes}
\n
Free:
\n
{json.heap.total_free_bytes}
\n
Alloc:
\n
{json.heap.total_allocated_bytes}
\n
Max block:
\n
{json.heap.largest_free_block}
\n {:catch error}\n {error.message}\n {/await}\n
\n
\n {/if}\n\n {#if current_tab == \"PS\"}\n \n {#await api_get(server + \"/api/v1/system/tasks\")}\n Name\n \n {:then json}\n \n Name\n State\n Handle\n Stack base\n WMRK\n {#each json.list.sort(function (a, b) {\n return a.number - b.number;\n }) as task}\n {task.name}\n {task.state}\n 0x{task.handle.toString(16).toUpperCase()}\n 0x{task.stack_base.toString(16).toUpperCase()}\n {task.watermark}\n {/each}\n \n {:catch error}\n {error.message}\n {/await}\n \n {/if}\n
\n\n \n {#await api_get(server + \"/api/v1/wifi/list\", {})}\n
Nets:
\n {:then json}\n
Nets:
\n {#each json.net_list as net}\n
\n {\n popup_select_net.close();\n sta_ssid_input.set_value(net.ssid);\n }}\n />\n
\n {/each}\n {:catch error}\n {error.message}\n {/await}\n
\n\n \n {#if popup_message_text != \"\"}\n {popup_message_text}\n {:else}\n \n {/if}\n \n
\n\n\n","import App from './App.svelte';\n\nconst app = new App({\n\ttarget: document.body,\n});\n\nexport default app;"],"names":["noop","run","fn","blank_object","Object","create","run_all","fns","forEach","is_function","thing","safe_not_equal","a","b","get_slot_context","definition","ctx","$$scope","tar","src","k","assign","slice","append","target","node","appendChild","insert","anchor","insertBefore","detach","parentNode","removeChild","destroy_each","iterations","detaching","i","length","d","element","name","document","createElement","text","data","createTextNode","space","empty","listen","event","handler","options","addEventListener","removeEventListener","attr","attribute","value","removeAttribute","getAttribute","setAttribute","set_custom_element_data","prop","set_data","wholeText","select_option","select","option","__value","selected","selectedIndex","toggle_class","toggle","classList","current_component","set_current_component","component","get_current_component","Error","bubble","callbacks","$$","type","call","this","dirty_components","binding_callbacks","render_callbacks","flush_callbacks","resolved_promise","Promise","resolve","update_scheduled","add_render_callback","push","flushing","seen_callbacks","Set","flush","update","pop","callback","has","add","clear","fragment","before_update","dirty","p","after_update","outroing","outros","group_outros","r","c","check_outros","transition_in","block","local","delete","transition_out","o","handle_promise","promise","info","token","index","key","resolved","child_ctx","undefined","current","needs_flush","blocks","m","mount","then","error","catch","hasCatch","pending","update_await_block_branch","create_component","mount_component","customElement","on_mount","on_destroy","new_on_destroy","map","filter","destroy_component","make_dirty","fill","init","instance","create_fragment","not_equal","props","append_styles","parent_component","bound","on_disconnect","context","Map","skip_bound","root","ready","ret","rest","hydrate","nodes","Array","from","childNodes","children","l","intro","SvelteComponent","$destroy","$on","indexOf","splice","$set","$$props","obj","$$set","keys","left","right","timer","reset_brace","set_brace","timer_click","setInterval","clearInterval","slot_ctx","slot","slot_definition","slot_changes","get_slot_context_fn","slot_context","lets","merged","len","Math","max","closed","size","new_value","items","text_pointer","timer_tick","selected_option","querySelector","style","api_get","important","setProperty","message","wifi_mode","sta_ssid","show","sta_pass","ap_ssid","ap_pass","hostname","usb_mode","print_ip","ip","print_mac","mac","idf_version","model","revision","cores","heap","minimum_free_bytes","total_free_bytes","total_allocated_bytes","largest_free_block","list","sort","state","handle","toString","toUpperCase","stack_base","watermark","net_list","ssid","channel","rssi","auth","api_post","api","res","fetch","method","body","JSON","stringify","json","mac_array","str","padStart","ip_addr","byteArray","byte","join","number","popup_select_net","popup_message","popup_message_text","mode_select","usb_mode_select","ap_ssid_input","ap_pass_input","sta_ssid_input","sta_pass_input","hostname_input","current_tab","change_tab","tab","localStorage","setItem","getItem","get_value","close","set_value","net"],"mappings":"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"} \ No newline at end of file diff --git a/components/svelte-portal/src/App.svelte b/components/svelte-portal/src/App.svelte index 4cc42be..f02f06f 100644 --- a/components/svelte-portal/src/App.svelte +++ b/components/svelte-portal/src/App.svelte @@ -9,7 +9,7 @@ let server = ""; if (development_mode) { - server = "http://192.168.31.81"; + server = "http://172.30.1.223"; } async function api_post(api, data) { @@ -36,6 +36,7 @@ let popup_message_text; let mode_select; + let usb_mode_select; let ap_ssid_input; let ap_pass_input; let sta_ssid_input; @@ -53,6 +54,7 @@ await api_post(server + "/api/v1/wifi/set_credentials", { wifi_mode: mode_select.get_value(), + usb_mode: usb_mode_select.get_value(), ap_ssid: ap_ssid_input.get_value(), ap_pass: ap_pass_input.get_value(), sta_ssid: sta_ssid_input.get_value(), @@ -138,34 +140,50 @@
{#await api_get(server + "/api/v1/wifi/get_credentials")}
Mode:
-
+
+ +
STA
+
(join another network)
+
SSID:
-
+
+
Pass:
-
+
+ +
AP
+
(own access point)
+
SSID:
-
+
+
Pass:
-
+
class="value"
+
Hostname:
-
+
+ +
USB mode:
+
{:then json}
Mode:
-
+
Pass:
-
+
-
AP
-
(own access point)
+
AP
+
(own access point)
+
SSID:
-
+
Pass:
-
+
Hostname:
-
+
+ +
USB mode:
+
+