gshell_changes

[?]
Oct 12, 2023, 4:17 AM
QJ3EFDKNCACJH7LD4XU3DU4SSPHX4NZXL3LCJ7J6MXU2PXOO7OOAC

Dependencies

Change contents

  • file addition: philia_chat_v1 (d--r------)
    [2.1]
  • file addition: vite.config.ts (----------)
    [0.1]
    import { defineConfig } from 'vite';
    import wasmPack from 'vite-plugin-wasm-pack';
    export default defineConfig({
    build: {
    minify: false,
    target: ['chrome67', 'firefox68', 'safari14', 'edge79']
    },
    plugins: [wasmPack(['./my-crate'])]
    });
  • file addition: vite.config.js (----------)
    [0.1]
    import { defineConfig } from 'vite';
    import wasmPack from 'vite-plugin-wasm-pack';
    export default defineConfig({
    build: {
    minify: false,
    target: ['chrome67', 'firefox68', 'safari14', 'edge79']
    },
    plugins: [wasmPack(['./my-crate'])]
    });
  • file addition: tsconfig.json (----------)
    [0.1]
    {
    "name": "farfalla_social",
    "description": "farfalla_social_at",
    "keywords": [
    "google",
    "javascript",
    "maps",
    "samples"
    ],
    "homepage": "https://github.com/googlemaps/js-samples#readme",
    "bugs": {
    "url": "https://github.com/googlemaps/js-samples/issues"
    },
    "repository": {
    "type": "git",
    "url": "git+https://github.com/googlemaps/js-samples.git"
    },
    "license": "Apache-2.0",
    "scripts": {
    "dev": "vite",
    "start": "vite",
    "build": "tsc && vite build",
    "build:prod": "tsc && vite build --mode build-prod",
    "test": "tsc --no-emit",
    "preview": "vite preview"
    },
    "devDependencies": {
    "typescript": "^4.9.1-beta",
    "vite": "^3.2.3"
    },
    "private": true,
    "dependencies": {},
    "compilerOptions": {
    "module": "es2020",
    "moduleResolution": "Node",
    "allowSyntheticDefaultImports": true
    },
    }
  • file addition: src (d--r------)
    [0.1]
  • file addition: vite-env.d.ts (----------)
    [0.1660]
    /// <reference types="vite/client" />
  • file addition: style.css (----------)
    [0.1660]
    html, body {
    position: relative;
    padding:0;
    margin: 0;
    height:100vh;
    width: 100vw;
    /* overflow: hidden; */
    background-color: rgb(238, 232, 243);
    overflow-y: scroll;
    }
    * {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    }
    /* line-break */
    .line-break2 {
    height: 2em;
    }
    .line-break0 {
    height: .5em;
    }
    .line-break1 {
    height: 1em;
    }
    /* intro */
    .container_intro {
    position: absolute;
    width: 100vw;
    height: 100vh;
    margin: 0;
    /* overflow: hidden; */
    z-index: 5;
    background: linear-gradient(
    70deg,
    #ee7752,
    #e73c7e,
    #23a6d5,
    #23d5ab,
    #ee7752
    );
    background-size: 400% 400%;
    animation: Gradient 3s ease infinite;
    }
    @keyframes Gradient {
    0% {
    background-position: 0% 50%;
    }
    50% {
    background-position: 100% 50%;
    }
    100% {
    background-position: 0% 50%;
    }
    }
    /* Privacy */
    .modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(245, 210, 244, 0.7);
    z-index: 4;
    align-items: center;
    justify-content: center;
    color: white;
    }
    .modal-content {
    background-color: #f0a3f4fd; /* Neumorphic designs often use soft gray backgrounds */
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    align-items: center; /* Vertical centering */
    justify-content: center; /* Horizontal centering */
    max-width: 300px;
    max-height: 30vh;
    overflow-y: auto; /* Enables vertical scrolling */
    /* Neumorphic shadows */
    box-shadow: -5px -5px 10px #ffffff, 5px 5px 10px #aeaeb0;
    }
    #modalToggle:not(:checked) + .modal-overlay {
    display: flex;
    }
    /* Neomorphic button styles */
    .btn-neomorphic {
    margin-top: 30px; /* Increased spacing for mobile */
    display: block; /* Full-width button for easier tapping */
    width: 100%; /* Full width */
    padding: 12px 20px; /* Slightly increased padding for a larger touch target */
    border-radius: 10px;
    background-color: #f850df;
    border: none;
    cursor: pointer;
    box-shadow: -5px -5px 10px #ffffff, 5px 5px 10px #aeaeb0;
    transition: all 0.2s ease-in-out;
    }
    /* Media query for larger screens (e.g., tablets and desktops) */
    @media (min-width: 768px) {
    .btn-neomorphic {
    display: inline-block;
    width: auto;
    margin-top: 15px;
    }
    }
    .btn-neomorphic:hover {
    box-shadow: -3px -3px 7px #ffffff, 3px 3px 7px #aeaeb0;
    }
    .btn-neomorphic:active {
    box-shadow: inset -3px -3px 7px #ffffff, inset 3px 3px 7px #aeaeb0; /* Pressed effect */
    }
    /* Privacy */
    /* BUTTONS */
    #form-title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    letter-spacing: 5px;
    }
    #love_matchings, #at_messenger, #first_events, #infinity_nomads, #info_riddles {
    cursor: pointer;
    color:rgb(238, 124, 244);
    animation: title_text 0.5s;
    /* transition: 0.5s; */
    }
    @keyframes title_text {
    0% {
    color: rgb(109, 235, 246);
    }
    100% {
    background-color: transparent;
    }
    }
    #love_matchings:active, #at_messenger:active, #first_events:active, #infinity_nomads:active, #info_riddles:active {
    /* color: #23d5ab; */
    animation: none;
    }
    /* INFO BUTTON */
    #info_box {
    position: absolute;
    height: 250px;
    width: 250px;
    padding: .5em;
    background-color: #6aa8b1;
    border-radius: 1em;
    color: white;
    font-weight: bolder;
    box-shadow:
    12px 12px 16px 0 rgba(0, 0, 0, 0.25),
    -8px -8px 12px 0 rgba(231, 178, 228, 0.3);
    overflow-y: scroll;
    z-index: 2;
    }
    #anchor_info_pop{
    justify-content: center;
    position: relative;
    display: flex;
    align-items: center;
    }
    #title_steps{
    font-size: 18px;
    }
    .first_step{
    font-size: 15px;
    }
    a {
    color: rgb(159, 15, 145);
    background-color: transparent;
    text-decoration: none;
    }
    /* PROMA BUTTON */
    .fs_button {
    position: relative;
    top: 10px;
    cursor: pointer;
    }
    .menu-item {
    width: 2em;
    height: 2em;
    }
    .menu-item path,
    .menu-item polygon,
    .menu-item rect {
    fill: #bd5fa9 ;
    }
    .menu-item:active {
    stroke: #50e5b9;
    }
    /* LOADER AFTER CREATE SK */
    #fs_button_loader_wrapper{
    margin: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    }
    #a_message{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    }
    #algo_button_box {
    position: absolute;
    display: inline-block;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100vw;
    height: 100vh;
    background-color: rgb(238, 232, 243);
    z-index: 3;
    overflow-y: auto;
    }
    .digital_id {
    font-size: 18px;
    font-family: monospace;
    color: #6d0bff;
    padding-left: 20px;
    padding-right: 20px;
    }
    #ceremony {
    font-size: 15px;
    }
    #association_algo_card {
    display: inline-flex;
    }
    .fields_algo {
    padding: 20px 5px 5px 5px;
    }
    .inputs_labels {
    color: #6d0bff;
    font-size: 16px;
    position: relative;
    display: flex;
    justify-content: center;
    }
    /* */
    #second_orig{
    margin-left: 10px;
    margin-right: 10px;
    }
    .input_first_set {
    background-color: #e0e0e0;
    border: none;
    padding: 10px 25px;
    /* font-size: 50px; */
    border-radius: 25px;
    color: #333;
    cursor: pointer;
    outline: none;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2),
    -5px -5px 10px rgba(255, 255, 255, 0.5);
    transition: all 0.2s ease-in-out;
    }
    .input_first_set:active {
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.2),
    inset -2px -2px 5px rgba(255, 255, 255, 0.5);
    }
    input {
    font-size: 16px;
    border: none;
    outline: none;
    width: 275px;
    height: 10px;
    background: none;
    color: #6d0bff;
    padding: 20px 10px 20px 5px;
    padding-left: 20px;
    border-radius: 25px;
    box-shadow: inset 8px 8px 8px #cbced1, inset -8px -8px 8px #fff;
    -webkit-box-shadow: inset 8px 8px 8px #cbced1, inset -8px -8px 8px #fff;
    -moz-box-shadow: inset 8px 8px 8px #cbced1, inset -8px -8px 8px #fff;
    appearance: none;
    -webkit-appearance: none;
    }
    .survey_options_algo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 1em;
    }
    .peer_orig_inputs {
    font-size: 14px;
    font-family: monospace;
    color: rgb(122, 95, 163);
    padding-bottom: 1em;
    }
    #message_to_peer{
    position: relative;
    display: block;
    font-size: 14px;
    font-family: monospace;
    color: rgb(92, 191, 210);
    padding:1em;
    }
    ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgb(196, 159, 234);
    opacity: 1; /* Firefox */
    }
    /* COPY BUTTON */
    #wrapper_sk_show {
    display: inline-flex;
    align-items: center;
    font-size: 20px;
    }
    .boxes {
    float: left;
    padding: 5px 15px 5px;
    justify-content: center;
    align-content: center;
    text-align: center;
    box-sizing: border-box;
    }
    /* .boxes_text{
    color: #0c9c07;
    cursor: pointer;
    } */
    .buttons_main{
    color: #0bdef5;
    cursor: pointer;
    animation: buttons_main_ani .5s;
    }
    #note_pad {
    border: 3px solid #f3cdde;
    border-radius: 25px;
    margin: 10px;
    }
    #copy_field {
    border: 3px solid #f3cdde;
    border-radius: 25px;
    margin: 10px;
    }
    @keyframes buttons_main_ani {
    0% {
    color: #f50bd6;
    }
    100% {
    background-color: transparent;
    }
    }
    .buttons_main:active{
    animation: none;
    }
    #close_tooltip_algo{
    text-decoration: none;
    cursor: pointer;
    }
    .close_tooltip_algo .fa-fire-flame-curved {
    font-size: 25px;
    }
    /* MESSAGES */
    #wrapper_message_tools1, #wrapper_message_tools2 {
    margin: auto;
    display: flex;
    justify-content: space-between;
    width: 15em;
    font-size: 20px;
    }
    .chat_space {
    cursor: pointer;
    background-image: linear-gradient( rgba(4, 226, 246, 0.976) 35%, rgb(255, 0, 191));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: chat_space_ani .5s;
    }
    @keyframes chat_space_ani {
    0% {
    color: #f50bd6;
    }
    100% {
    background-color: transparent;
    }
    }
    .chat_space:active {
    animation: none ;
    }
    #container_algorand {
    /* display: none; */
    position: relative;
    display: inline-block;
    justify-content: center;
    align-items: center;
    background: rgb(238, 232, 243);
    width: 100vw;
    height: 100vh;
    }
    #in_out_messages {
    display:block;
    margin: auto;
    background: #eee;
    /* background: rgb(220, 218, 218); */
    height: 350px;
    width: 350px;
    overflow-y: scroll;
    max-height: 100%;
    max-width: 100%;
    border-radius: 20px;
    border:2px solid #debff0;
    }
    #wrapper_glass{
    display: flex;
    justify-content: center;
    }
    #glass{
    position:absolute;
    height: 350px;
    width: 355px;
    color: #ecf0f1;
    border-radius: 8px;
    padding: 20px;
    background: rgba( 255, 255, 255, 0.2 );
    border: solid 1px rgba(119, 99, 99, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px );
    }
    .text_area_data{
    padding: .5em;
    overflow-wrap: break-word;
    font-family: 'Courier New', Courier, monospace;
    font-size:16px;
    font-weight: bold;
    }
    .rendered_img{
    max-width: 70%;
    height: auto;
    display: block;
    margin: 0 auto;
    }
    .rendered_vid{
    max-width: 70%;
    height: auto;
    display: block;
    margin: 0 auto;
    }
    .pdf_iframe{
    max-width: 100%;
    height: 100%;
    display: block;
    margin: 0 auto;
    }
    .fa-file-pdf{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    }
    #messages{
    margin: auto;
    resize: none;
    font-family: 'Courier New', Courier, monospace;
    padding:10px;
    width:300px;
    box-sizing: border-box;
    font-size:16px;
    color: #a816b8;
    display:block;
    border-radius:10px;
    border:4px solid #a327ea;
    font-weight: bold;
    }
    .separator {
    height: 5px;
    width: 100%;
    background: rgb(178,216,238);
    background: linear-gradient(275deg, rgba(178,216,238,1) 0%, rgba(238,174,240,1) 100%);
    }
    #messages_count{
    position: relative;
    display: flex;
    justify-content: center;
    text-align: center;
    height: 20px;
    width: 170px;
    font-size: 14px;
    font-weight: bold;
    }
    #wallet_connected_text_id {
    margin: auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    }
    /* COPY Wallet Address BUTTON */
    #wallet_connected_chat {
    margin: auto;
    display: flex;
    text-align: center;
    align-items: center;
    font-family: Nunito, monospace;
    height: 40px;
    width: 350px;
    font-size: 14px;
    color: snow;
    border-radius: 50px;
    background: rgb(212, 197, 243);
    letter-spacing: 0.3px;
    box-shadow: 0px 12px 17px rgba(0, 0, 0, 0.26);
    font-weight: 600;
    overflow-x: scroll;
    padding: .5em;
    cursor: pointer;
    }
    #wrapper_picker{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    }
    #wrapper_username{
    position: relative;
    display: block;
    align-items: center;
    justify-content: center;
    }
    #association_algo_password4 {
    width: 160px;
    }
    #association_algo_password5 {
    width: 160px;
    }
    #picker {
    padding-right: 1em;
    }
    #character_count{
    position: relative;
    display: flex;
    justify-content: center;
    /* padding-bottom: 1em; */
    font-size: 16px;
    font-weight: bold;
    font-family: monospace;
    }
    /* @media screen and (orientation: landscape) {
    #character_count{
    padding-bottom: 1em;
    }
    } */
    /* testing */
    #input_label_button_farfalla_key {
    font-size: 20px;
    background-clip:inherit;
    background-image: linear-gradient(to right, rgb(251, 44, 244), rgb(14, 244, 163));
    -webkit-background-clip: text;
    color: transparent;
    display: inline;
    position: relative;
    animation: flash_text .5s;
    }
    #input_label_button_pub_key {
    font-size: 20px;
    background-clip:inherit;
    background-image: linear-gradient(to right, rgb(14, 244, 163), rgb(251, 44, 244));
    -webkit-background-clip: text;
    color: transparent;
    display: inline;
    position: relative;
    animation: flash_text .5s;
    /* padding-left: 20px;
    padding-right: 20px; */
    /* color: #ed52f5; */
    }
    #input_label_button_contact_key {
    position: relative;
    animation: flash_text .5s;
    color: #ed52f5;
    }
    #soft_encrypted_credential {
    position: relative;
    animation: flash_text .5s;
    color: #ed52f5;
    }
    @keyframes flash_text {
    0% {
    color: rgb(152, 147, 147);
    }
    100% {
    background-color: transparent;
    }
    }
    #input_label_button_farfalla_key:active, #input_label_button_pub_key:active, #input_label_button_contact_key:active, #soft_encrypted_credential:active {
    animation: none;
    }
    .ft_expanded {
    display: none;
    position: relative;
    top: 100%;
    left: 0;
    right: 0;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); */
    }
    .fa-copy{
    color: rgb(77, 227, 240);
    cursor: pointer;
    }
    .fa-clipboard-check{
    color: rgb(77, 227, 240);
    }
    #anchor_file_names{
    position: relative;
    display: block;
    text-align: center;
    color:#f50bd6;
    font-size: 14px;
    cursor: pointer;
    }
    .unlockElem{
    /* position: relative; */
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    /* width: 50px;
    height: 50px; */
    }
    .purple {
    background-color: rgb(240, 15, 214);
    border-radius: 50%;
    }
    .green {
    background-color: rgb(207, 180, 240);
    border-radius: 50%;
    }
    .separator_counter{
    /* position: relative; */
    color: #08e1f9;
    font: 13px monospace;
    font-weight: bold;
    display: flex;
    justify-content: right;
    /* text-align: right; */
    }
    .fa-user-lock{
    /* color: rgb(186, 77, 240); */
    font-size: 20px;
    display: flex;
    justify-content: center;
    }
    #messages_count{
    display: flex;
    margin: auto;
    background: -webkit-gradient(linear, left top, right top, from(#08f5ae), to(#dd00ff));
    border: 3px solid #FFFFFF;
    padding: 5px;
    }
    .messages_labels{
    display: flex;
    justify-content: space-evenly;
    /* margin: auto; */
    color: fuchsia;
    font-size: 13px;
    }
    .messages_labels div {
    margin: 0 20px;
    }
    #stop_recording{
    display: none;
    }
    /* creatives init button */
    mux-player {
    width: 50%; /* Adjust as necessary */
    height: auto;
    aspect-ratio: 16 / 9; /* Adjust as necessary to maintain aspect ratio */
    border: 15px solid #000; /* Soft Pink */
    border-radius: 10px;
    }
    #blurred_backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(15px); /* Blur effect */
    z-index: 1; /* Lower z-index so it sits beneath #creative_modal */
    }
    #creative_modal {
    display: none; /* This will keep it hidden, use block or flex to show */
    position: fixed;
    justify-content: center;
    align-items: center;
    padding: 2em;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    border-radius: 10px;
    text-align: center;
    z-index: 2;
    }
    #image_riddle {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh; /* Adjust height as needed */
    background-color: #000;
    margin: auto;
    width: 60%;
    cursor: pointer;
    border: 15px solid black; /* Soft Pink */
    border-radius: 10px;
    }
    #image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    }
    /* creatives init button */
    /* the Question of suffering */
    /* .the_question {
    text-align: center;
    position: relative;
    font-family: 'Courier New', Courier, monospace;
    font-size: 18px;
    color: #3610ef;
    font-weight: 400;
    } */
    #table-container {
    display: table;
    width: 70%; /* or whatever width you want */
    height: 10vh; /* or whatever height you want */
    margin: auto;
    }
    #the_question {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    font-size: 24px;
    color: #3610ef;
    font-weight: 500;
    white-space: pre-wrap;
    }
    /* Additional styles for ensuring the text wraps properly within the container */
    #the_question:before {
    content: '\200B'; /* zero-width space to ensure the container doesn't collapse */
    }
    /* the Question of suffering */
    /* the modal for info_riddle */
    #modal_riddle_info {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: #f8e8f2;
    justify-content: space-around;;
    align-items: center;
    z-index: 5;
    text-align: center;
    overflow-y: auto;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(250, 178, 214, 0.931);
    flex-direction: row;
    font-weight: bolder;
    }
    #Intro_HH {
    padding-left: 1em;
    padding-right: 1em;
    color: #44eef7;
    font-family: 'Courier New', Courier, monospace;
    font-size: 30px;
    text-shadow: 1px 1px 0 rgb(145, 19, 235),
    2px 2px 0 rgb(145, 19, 235),
    3px 3px 0 rgb(145, 19, 235),
    4px 4px 0 rgb(145, 19, 235);
    }
    #content_riddle {
    overflow-y: auto;
    text-align: center;
    padding-left: 2em;
    padding-right: 2em;
    font-size: 16px;
    font-family: 'Courier New', Courier, monospace;;
    font-weight: 300;
    color: #6d0bff;
    }
    .closing_riddle_content {
    height: auto;
    width: auto;
    background-color: #f8e8f2;
    ; /* This color should match your background */
    border: none;
    border-radius: 12px;
    box-shadow: 10px 10px 15px #ea33bc,
    -10px -10px 15px #ffffff;
    font-size: 1em;
    cursor: pointer;
    outline: none;
    color: rgb(241, 121, 191);
    font-weight: bold;
    padding: 1em;
    margin-left: 2em;
    margin-right: 2em;
    }
    .closing_riddle_content:active {
    box-shadow: inset 5px 5px 10px #d1d1d1,
    inset -5px -5px 10px #ffffff;
    }
    #info_riddles {
    margin: auto;
    color: #B4FEE7;
    font-size: 30px;
    display: block;
    border: 5px solid #B4FEE7;
    border-radius: 50%; /* Makes the border circular */
    text-align: center; /* Centers the text horizontally */
    width: 80px; /* Sets a fixed width */
    height: 80px; /* Sets a fixed height */
    line-height: 90px; /* Vertically centers the text */
    }
    #gif_spiral {
    border: none;
    background-color: transparent;
    background-image: url('https://philia-chat-pullz.b-cdn.net/spiral_inv_027.gif');
    background-size: cover; /* This will ensure the GIF covers the entire element */
    background-repeat: no-repeat; /* This will prevent the GIF from repeating */
    background-position: center; /* This will center the GIF within the element */
    cursor: pointer;
    border-radius: 50%; /* This will create a circular shape */
    overflow: hidden; /* This will clip anything outside the circular shape */
    width: 80px; /* Adjust to the desired width */
    height: 80px; /* Adjust to the desired height */
    margin: auto;
    box-shadow: 30px 30px 35px rgba(202, 70, 235, 0.25);
    }
    #gif_spiral:active {
    transform: scale(0.95);
    }
    /* the modal for info_riddle */
    .neumorphic-form {
    height: 600px;
    width: 350px;
    margin: auto;
    background-color: #f8e8f2;
    padding: 2em;
    border-radius: 15px;
    box-shadow: -10px -10px 20px #ffffff,
    10px 10px 20px #e3158a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    }
    .neumorphic-input {
    margin: auto;
    display: block;
    border: none;
    outline: none;
    padding: 1em;
    border-radius: 15px;
    background-color: whitesmoke;
    transition: box-shadow 0.3s ease-in-out;
    }
    .neumorphic-input:focus{
    box-shadow: inset -5px -5px 10px #ffffff,
    inset 5px 5px 10px #c0aeb5;
    }
    #zkevm_message {
    width: 320px;
    height: 300px;
    resize: none; /* Disables user resizing of the textarea */
    }
    #account_connected {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: #7c08f9;
    width: 300px;
    height: 15px;
    }
  • file addition: index.ts (----------)
    [0.1660]
    import init, { encrypt_or_decrypt_files2, password, sanitize_base64, base64_to_vec,vec_to_base64, uuid_generate, encode_base64 } from 'my-crate';
    import './style.css'
    import $ from 'jquery';
    import iro from '@jaames/iro';
    import Plyr from 'plyr';
    import { Polybase } from "@polybase/client";
    // import { Mp3Recorder } from './Mp3Recorder.mjs';
    import Recorder from "yiyi-audio-recorder";
    import { uniqueNamesGenerator, adjectives, colors, animals } from 'unique-names-generator';
    // import * as algosdk from 'algosdk';
    import { ZkEvmClient, use, Web3SideChainClient } from "@maticnetwork/maticjs"
    import { Web3ClientPlugin } from '@maticnetwork/maticjs-ethers'
    import { ethers } from 'ethers';
    import { createWeb3Modal, defaultWagmiConfig } from '@web3modal/wagmi';
    import { polygonZkEvm } from '@wagmi/core/chains';
    //main.js
    import { watchAccount, disconnect, getAccount } from '@wagmi/core'
    // 1. Define constants
    const projectId = 'e7f3d5f95dacb65d61e3e69e66285f2a'
    const metadata = {
    name: 'chat_psc',
    }
    // 2. Create wagmiConfig
    // 2. Create wagmiConfig
    const chains = [polygonZkEvm];
    const wagmiConfig = defaultWagmiConfig({
    chains,
    projectId,
    metadata,
    });
    // 3. Create modal
    const modal = createWeb3Modal({ wagmiConfig, projectId, chains });
    function connect() {
    if (getAccount().isConnected) {
    disconnect();
    } else {
    modal.open();
    }
    }
    const btnEl = document.getElementById('btn');
    const userEl = document.getElementById('account_connected');
    btnEl.addEventListener('click', connect);
    let connectedAddress = '';
    // Listening for account changes
    watchAccount(account => {
    connectedAddress = account.address ?? ''; // Update the connected address
    if (account.isConnected) {
    userEl.innerText = connectedAddress;
    btnEl.innerText = 'Disconnect';
    } else {
    userEl.innerText = 'Wallet not connected'; // Set placeholder text when not connected
    btnEl.innerText = 'Connect';
    }
    });
    use(Web3ClientPlugin);
    const db = new Polybase({
    defaultNamespace: "data_space",
    signer: (data) => {
    // Enter your condition to skip the signing process.
    return null;
    }
    });
    const collectionReference = db.collection("cid");
    const decoder = new TextDecoder();
    let uploadedFiles = [];
    var colorPicker = iro.ColorPicker("#picker", {
    width: 120,
    color: "#6842ff",
    borderWidth: 5,
    borderColor: "#ffffff",
    layout: [
    {
    component: iro.ui.Wheel,
    options: {}
    },
    ]
    });
    $("#algo_button_box").hide();
    $("#container_algorand").hide();
    //=====================================================================
    // BUTTONS LAYER
    //=====================================================================
    $( "#love_matchings" ).on('click', function() {
    $("#love_matchings").addClass("animated");
    // Open the new window after the transition or animation has completed
    setTimeout(function() {
    window.open("https://love.philiasocial.repl.co/", '_blank');
    }, 500);
    });
    $( "#infinity_nomads" ).on('click', function() {
    $("#infinity_nomads").addClass("animated");
    // Open the new window after the transition or animation has completed
    setTimeout(function() {
    window.open("https://infinity.farfallasocial.repl.co/", '_blank');
    }, 500);
    });
    $( "#info_riddles" ).on('click', function() {
    $("#info_riddles").addClass("animated");
    // Open the new window after the transition or animation has completed
    setTimeout(function() {
    //info_riddles modal
    $("#modal_riddle_info").toggle();
    $('#modal_riddle_info').css('display', 'block');
    $('#ok_closing').on('click', function(){
    $('#algo_button_box').scrollTop(0);
    $('#creative_modal').scrollTop(0);
    $('#modal_riddle_info').scrollTop(0);
    $('#modal_riddle_info').hide();
    $('#creative_modal').hide();
    $('#blurred_backdrop').hide();
    });
    //info_riddles modal
    }, 400);
    });
    $( "#info_pop" ).on('click', function() {
    if($('#info_box').length == 0){
    $('#anchor_info_pop').append(`
    <div id='info_box'>
    <div id='title_steps'>Guidance</div>
    <div class="line-break0"></div>
    <div class='first_step'>If you require a translator, we enjoy using this <a href="https://www.deepl.com/translator" target="_blank">Deep Learning model</a>.</div>
    <div class="line-break0"></div>
    <div class='first_step'>If you require a place to store your notes securely and privaely, we enjoy using this <a href="https://www.protectedtext.com/" target="_blank">notepad</a>.</div>
    <div class="line-break0"></div>
    <div class='first_step'>PhiliaSocial Chat uses Aes256Gcm; for further reading visit this <a href="https://crates.io/crates/aes-gcm" target="_blank">Rust crate.</a></div>
    <div class="line-break0"></div>
    <div class='first_step'>The locally encrypted messages and files are uploaded to the <a href="https://www.arweave.org/" target="_blank">Arweave network</a> using the <a href="https://bundlr.network/" target="_blank">Bundlr Network</a>. The CIDs of your data are then stored on <a href="https://polybase.xyz/" target="_blank">Polybase</a>, within Polybase, the CIDs are stored under a single "collection"; this adds a "lost in the crowd" complexity to the message route. Please be mindful that the encrypted files are not guaranteed to be available indefinitely due the beta nature of PhiliaSocial Chat.</div>
    <div class="line-break0"></div>
    <div class='first_step'>On another note, use <a href="https://giphy.com/" target="_blank">Giphy</a> or <a href="https://tenor.com/" target="_blank">Tenor</a> to insert GIF-links into your Chat-space.</div>
    <div class="line-break0"></div>
    <div class='first_step'>Contact us: connect at philia dot social</div>
    </div>
    `);
    };
    });
    $( "#anchor_info_pop" ).on('click', function() {
    if($('#info_box').length){
    $('#info_box').remove();
    }
    });
    $( "#note_pad" ).on('click', function() {
    $("#note_pad").addClass("animated");
    // Open the new window after the transition or animation has completed
    setTimeout(function() {
    window.open(`https://cryptgeon.org/`, '_blank');
    }, 500);
    });
    $("#show_hide_password").on('click',function() {
    const check_val = $('.fa-eye').length;
    switch(check_val){
    case 1:
    $(".survey-options").attr("type", "text");
    $("#fa_eye")
    .removeClass("fa-solid fa-eye")
    .addClass("fa-solid fa-eye-slash");
    break;
    default:
    $(".survey-options").attr("type", "password");
    $("#fa_eye")
    .removeClass("fa-solid fa-eye-slash")
    .addClass("fa-solid fa-eye");
    break;
    }
    } );
    init().then(() => {
    setTimeout(() => {
    $(".container_intro").fadeOut(2000);
    $("#algo_button_box").show();
    }, 2000);
    async function public_key_step(){
    $('#ft_expanded_2').append(`
    <div id="spacing_second" class="line-break0"></div>
    <div id="second_orig" class="peer_orig_inputs">Click the Copy button above to copy the complete Chat-Credentials below, then navigate to Cryptgeon and create a note with them; share the generated link with your partner(s).</div>
    <div id="survey_pub_key2" class="survey_options_algo2">
    <input id="association_algo_password" type="password" name="survey_options_name" class="survey-options"/>
    </div>
    `)
    };
    const texts = [
    "Invite a daydream into your reality...",
    "Keep the following question in mind...",
    "What deeply caring words would you impart with your younger self in order to diminish the suffering you felt growing up? "
    + "What words would you use to ease the passage through this world?",
    "Seek inspiration below; unearth the hidden information."
    ];
    let currentTextIndex = 0;
    let charIndex = 0;
    const typingContainer = document.getElementById('the_question');
    function typeCharacter() {
    // Stop if all texts have been typed out
    if (currentTextIndex >= texts.length) return;
    // Type the next character if there are more characters in the current text
    if (charIndex < texts[currentTextIndex].length) {
    typingContainer.textContent += texts[currentTextIndex][charIndex];
    charIndex++;
    setTimeout(typeCharacter, getRandomDelay());
    } else {
    // When a text is fully typed, move on to the next text
    currentTextIndex++;
    charIndex = 0;
    if (currentTextIndex < texts.length) { // Check if there are more texts to type
    // Add a new line between texts
    typingContainer.textContent += '\n';
    setTimeout(typeCharacter, 1000); // Delay before starting next text
    }
    }
    }
    function getRandomDelay() {
    return Math.random() * 50 + 10; // Random delay between 50ms and 200ms
    }
    $('#gif_spiral').on('click', function() {
    typeCharacter();
    document.getElementById('blurred_backdrop').style.display = 'block';
    document.getElementById('creative_modal').style.display = 'block';
    });
    $('#creative_modal_close').on('click', function() {
    // const account = algosdk.generateAccount();
    // const mnemonic = algosdk.secretKeyToMnemonic(account.sk);
    // $('#mnemonic').text(mnemonic);
    document.getElementById('blurred_backdrop').style.display = 'none';
    document.getElementById('creative_modal').style.display = 'none';
    });
    function toggleFullScreen() {
    const elem = document.getElementById('image_riddle');
    if (!document.fullscreenElement) {
    elem.requestFullscreen().catch(err => {
    alert(`Error attempting to enable full-screen mode: ${err.message} (${err.name})`);
    });
    } else {
    document.exitFullscreen();
    }
    }
    // Initialize the provider
    const provider = new ethers.JsonRpcProvider('https://zkevm-rpc.com');
    const usdcAddress = "0xA8CE8aee21bC2A48a5EF670afCc9274C7bbbC035";
    // The ERC-20 Contract ABI should work for USDC as well
    const usdcAbi = [
    // Some details about the token
    "function name() view returns (string)",
    "function symbol() view returns (string)",
    // Get the account balance
    "function balanceOf(address) view returns (uint)",
    // Send some of your tokens to someone else
    "function transfer(address to, uint amount)",
    // An event triggered whenever anyone transfers to someone else
    "event Transfer(address indexed from, address indexed to, uint amount)"
    ];
    // The Contract object
    const usdcContract = new ethers.Contract(usdcAddress, usdcAbi, provider);
    // Create an instance of the USDC contract
    async function generateAccountAndPrintInfo() {
    if (!connectedAddress) {
    console.error('No account is connected');
    return;
    }
    try {
    // Get Ether balance
    const etherBalance = await provider.getBalance(connectedAddress);
    const etherBalanceInEther = ethers.formatEther(etherBalance);
    console.log('Ether Balance:', etherBalanceInEther);
    const balanceWei = await usdcContract.balanceOf(connectedAddress);
    // Convert the balance from wei to USDC (wei to ether conversion, but with 6 decimal places instead of 18)
    const balanceUsdc = ethers.formatUnits(balanceWei, 6);
    console.log(`Balance: ${balanceUsdc} USDC`);
    } catch (error) {
    console.error('Failed to get balances:', error);
    }
    }
    // jQuery function to handle the click event
    $(document).ready(function(){
    $("#generate_algo").click(function(){
    generateAccountAndPrintInfo();
    });
    $("#image_riddle").click(function(){
    toggleFullScreen();
    });
    });
    // zkevm setup
    document.getElementById('zkevm_setup').addEventListener('click', async () => {
    if (window.ethereum) {
    try {
    // Parameters for the Polygon zkEVM mainnet
    const params = {
    chainId: '0x44D', // Chain ID for Polygon zkEVM, converted from 1101 to hexadecimal
    chainName: 'Polygon zkEVM',
    nativeCurrency: { name: 'Ethereum', symbol: 'ETH', decimals: 18 },
    rpcUrls: ['https://zkevm-rpc.com'], // RPC URL
    blockExplorerUrls: ['https://zkevm.polygonscan.com'] // Block explorer URL
    };
    // Request to add the network
    await ethereum.request({
    method: 'wallet_addEthereumChain',
    params: [params],
    });
    // Parameters for the USDC token
    const tokenParams = {
    type: 'ERC20',
    options: {
    address: '0xA8CE8aee21bC2A48a5EF670afCc9274C7bbbC035', // USDC token contract address
    symbol: 'USDC',
    decimals: 6,
    image: 'https://assets.coingecko.com/coins/images/6319/small/USD_Coin_icon.png', // Replace with the URL of the USDC token icon
    },
    };
    // Request to watch the USDC token
    await ethereum.request({
    method: 'wallet_watchAsset',
    params: tokenParams,
    });
    } catch (error) {
    console.error(error);
    alert('Failed to add network or token');
    }
    } else {
    alert('Ethereum provider not found');
    }
    });
    // zkevm setup
    $("#input_label_button_pub_key").on('click',function() {
    // $("#input_label_button_farfalla_key").hide();
    // $("#input_label_button_contact_key").hide();
    // $("#original_space").hide();
    $("#first_task").hide();
    $("#third_task").hide();
    let condition_ft = $( "#input_label_button_pub_key" ).html() === `Create New Credentials`;
    const expandedContent = document.getElementById('ft_expanded_2') as HTMLDivElement;
    if(condition_ft == true){
    $( "#input_label_button_pub_key" ).text(`Return Home`);
    if (expandedContent.style.display === 'block') {
    expandedContent.style.display = 'none';
    } else {
    expandedContent.style.display = 'block';
    if( $("#association_algo_password").length == 0 ){
    public_key_step().then(() => {
    // const new_public = generate_public_key();
    // const new_chat = new_chat_id();
    const new_chat = encode_base64(uuid_generate());
    const new_public = password().replace(/=/g, '');
    // console.log([new_chat.length, new_public.length])
    const joined_credentials = new_chat + new_public
    // console.log(joined_credentials)
    $("#association_algo_password").val(`${joined_credentials}`);
    });
    };
    };
    } else {
    $( "#input_label_button_pub_key" ).html(`Create New Credentials`);
    expandedContent.style.display = 'none';
    // $("#input_label_button_farfalla_key").show();
    // $("#input_label_button_contact_key").show();
    // $("#original_space").show();
    $("#first_task").show();
    $("#third_task").show();
    $("#association_algo_password").remove();
    $("#association_algo_password0").remove();
    $(".survey_options_algo2").remove();
    $("#second_orig").remove();
    $("#spacing_second").remove();
    $("#soft_encrypted_credential").remove();
    };
    });
    async function initial_text_area_view(){
    if($("#association_algo_password4").length == 0){
    $("#wrapper_username").append(`
    <div class="inputs_labels">Add any optional metadata:</div>
    <div id class="line-break0"></div>
    <div class="survey_options_algo">
    <input id="association_algo_password4" type="text" name="survey_options_name4" class="survey-options" placeholder="Ex: 01 Mikasa A."/>
    </div>
    <div class="messages_labels">
    <div>Safe Qty.</div>
    <div>Risky Qty.</div>
    </div>
    <div id="messages_count"></div>
    <div class="messages_labels">
    <div>0</div>
    <div>Messages</div>
    <div>500</div>
    </div>
    `);
    };
    // try{
    await loop_algorand();
    }
    $(document).ready(function () {
    // Event listener for 'keydown' on input element with ID 'association_algo_password2'
    $('#association_algo_password2').on('keydown', async function (event) {
    if (event.key === 'Enter') {
    event.preventDefault(); // Prevent the default action of the Enter key
    await processCredentials();
    }
    });
    // Event listener for 'click' on element with ID 'input_label_button_farfalla_key'
    $("#input_label_button_farfalla_key").on('click', async function () {
    await processCredentials();
    });
    async function processCredentials() {
    const assoc_pass2 = $("#association_algo_password2").val().toString().length;
    if (assoc_pass2 == 91) {
    $("#input_label_button_pub_key").hide();
    $("#input_label_button_contact_key").hide();
    const credentials = $("#association_algo_password2").val().toString().trim();
    const split_credentials_chatId = credentials.substring(0, 48);
    const split_credentials_private = credentials.substring(48, 91);
    global_chat_space_key = split_credentials_chatId;
    if (credentials.length == 91 && split_credentials_chatId.length == 48 && split_credentials_private.length == 43) {
    $('#algo_button_box').hide();
    $('#algo_gate').hide();
    $("#container_algorand").show();
    chat_space_id = split_credentials_chatId;
    chat_space_private = split_credentials_private;
    $('#wallet_connected_chat').html(`${split_credentials_chatId}`);
    $("#wallet_connected_chat").on('click', function () {
    window.open(`https://explorer.testnet.polybase.xyz/collections/data_space%2Fcid`, '_blank');
    });
    try {
    await initial_text_area_view();
    get_latest_note();
    } catch (error) {
    }
    }
    }
    }
    });
    // function confirm_copied(){
    // $(".fa-copy").remove();
    // $("#copy_field").html(`Copied!`);
    // setTimeout(() => {
    // // $(".fa-clipboard-check").remove();
    // $("#copy_field").html(`Copy`);
    // }, 2000);
    // }
    // $("#copy_field").on('click', function(){
    // const get_pub_key = $("#input_label_button_pub_key").html() === `Return Home`;
    // // const get_contact_key = $("#input_label_button_contact_key").html() === `Before continuing, be sure to copy the Chat-Id and store it safely. Founder, share the Chat-Id with your Partner by creating and sharing a new Cryptgeon note. At this time both of you should have: each other's Public-Key; your Public-Key; your Private-Key; lastly, the Chat-Id. When you are ready to proceed, click this text.`;
    // // const get_contact_key2 = $("#input_label_button_contact_key").html() === `To ensure the security of your Chat space please follow these steps: first, copy and store safely the Encrypted Credentials. Next, use Cryptgeon to generate a sharable link containing the Encrypted Credentials; share this link with your Partner. Remind your Partner to visit the farfalla@ web app to decrypt the Encrypted Credentials. Your Unencrypted and Decrypted Credentials are ready to be use to enter the Chat space you have created. When you are ready, click this text to refresh the web app.`;
    // if(get_pub_key==true){
    // navigator.clipboard.writeText(`${$("#association_algo_password").val()}
    // `);
    // confirm_copied()
    // }
    // });
    // Function to confirm that text has been copied
    function confirmCopied(): void {
    $(".fa-copy").remove();
    $("#copy_field").html("Copied!");
    setTimeout(() => {
    $("#copy_field").html("Copy");
    }, 2000);
    }
    // Function to handle the click event on the copy field
    async function handleCopyFieldClick(): Promise<void> {
    const isReturnHome = $("#input_label_button_pub_key").html() === "Return Home";
    if (isReturnHome) {
    try {
    const textToCopy = $("#association_algo_password").val() as string;
    await navigator.clipboard.writeText(textToCopy);
    confirmCopied();
    } catch (error) {
    console.error("Failed to copy text: ", error);
    }
    }
    }
    // Attach the click event listener
    $(document).ready(() => {
    $("#copy_field").on("click", handleCopyFieldClick);
    });
    });
    // const gf = new GiphyFetch('O2LqnkYYdR5ckdntfpOINQLjmsOX1OKH');
    // $('#gif').on('click', async function () {
    // const response = await fetch(`https://api.giphy.com/v1/gifs/trending?api_key=${"O2LqnkYYdR5ckdntfpOINQLjmsOX1OKH"}&limit=10`);
    // const data = await response.json();
    // const gifs = data.data;
    // const mountNode = document.getElementById('container_algorand'); // Replace with the ID of the element where you want to render the GIFs
    // gifs.forEach((gif) => {
    // const img = document.createElement('img');
    // img.src = gif.images.original.url;
    // img.alt = gif.title;
    // mountNode.appendChild(img);
    // });
    // });
    $('#headset').on('click', async function () {
    const newUUID = uuid_generate();
    // https://c2c.mirotalk.com/join?room=${newUUID}&name=li
    const randomName = uniqueNamesGenerator({ dictionaries: [adjectives, colors, animals] });
    const videoChatUrl = `https://c2c.mirotalk.com/join?room=${newUUID}&name=${randomName}`;
    window.open(videoChatUrl, '_blank');
    });
    const main_message = $( "#messages" );
    colorPicker.on('color:change', function(color) {
    main_message.css('color',`${color.hexString}`);
    });
    const uploadDiv = document.getElementById("add_file");
    const input = document.getElementById("file-input") as HTMLInputElement;
    input.addEventListener("change", handleUpload);
    uploadDiv.addEventListener("click", () => input.click());
    //// remove file name from the uploadedFiles array
    $('#anchor_file_names').on('click touchend', function(event) {
    if ($(event.target).is('.file_name')) {
    let index = $(event.target).index();
    $(event.target).remove();
    uploadedFiles.splice(index, 1);
    }
    });
    // let chat_space_party_pk:string;
    let chat_space_private:string;
    let chat_space_id:string;
    // encrypting files...
    class Encryption {
    // public public_k: string;
    public private_k: string;
    // public additional: string;
    constructor(private_k: string) {
    // this.public_k = public_k;
    this.private_k = private_k;
    // this.additional = additional;
    }
    async encrypt(data: Uint8Array) {
    // return encrypt_file(this.key, data);
    return encrypt_or_decrypt_files2("encrypt", this.private_k, data);
    }
    async decrypt(data: Uint8Array) {
    return encrypt_or_decrypt_files2("decrypt", this.private_k, data);
    };
    };
    async function encryptUploadedFile(coloring:string, file: File, labels: string) {
    $("#wrapper_message_tools1").hide();
    $("#wrapper_message_tools2").hide();
    $('#fs_button_loader_wrapper1').append(`
    <div class="chat_space" id="a_message">Working...</div>
    `);
    $("#fs_button_loader_wrapper1").show();
    // $("#fs_button_loader_wrapper2").show();
    const encryption = new Encryption(chat_space_private);
    // console.log(chat_space_key);
    // Read the file as an ArrayBuffer
    const buffer = await new Response(file).arrayBuffer();
    const textEnc = new TextEncoder()
    const uint8Array_col = textEnc.encode(coloring);
    const uint8Array_lab = textEnc.encode(labels);
    // Encrypt the file
    const encryptedColoring = await encryption.encrypt(uint8Array_col);
    const encryptedFile = await encryption.encrypt(new Uint8Array(buffer));
    // const encryptedFile = await encrypt_file(chat_space_key, new Uint8Array(buffer));
    const encryptedLabels = await encryption.encrypt(uint8Array_lab);
    const colo_enc = vec_to_base64(encryptedColoring);
    const file_enc = vec_to_base64(encryptedFile);
    const labels_enc = vec_to_base64(encryptedLabels);
    // Create the object and the blob
    const obj = { fh: colo_enc, fl:labels_enc, fd: file_enc }
    uploadedFiles.push(obj);
    $("#wrapper_message_tools1").show();
    $("#wrapper_message_tools2").show();
    $("#a_message").remove();
    };
    //Web-worker
    let ipfs_links = [];
    async function composition_notes(links) {
    try {
    // Wait for all the outer promises to resolve
    await Promise.all(
    links.map(async (note) => {
    // Create an array of promises for the inner loop
    const innerPromises = note.map((x) => {
    const arweave_obj_id = uuid_generate();
    fetch_data_links.push(x);
    fetch_data_links_ids.push(arweave_obj_id);
    // Chain the unlock_button() promise without using async/await within the map
    return unlock_button(arweave_obj_id);
    });
    // Wait for all the inner promises to resolve
    await Promise.all(innerPromises);
    })
    );
    } catch (error) {
    // Handle the error
    }
    }
    const processArrayNotes = async (notes) => {
    // console.log(notes)
    cache.clear();
    // console.log("init")
    $("#wrapper_message_tools1").hide();
    $("#wrapper_message_tools2").hide();
    if ($('#a_message').length === 0) {
    $('#fs_button_loader_wrapper1').append(`
    <div class="chat_space" id="a_message">Working...</div>
    `);
    }
    try {
    interface EncryptedFileResult {
    index: number;
    result: string;
    }
    const promises = notes.map((note, index) =>
    // console.log(note)
    fetchEncryptedFileMemoized(note, index)
    );
    const results = await Promise.all<EncryptedFileResult>(promises);
    // console.log(results)
    results.sort((a, b) => a.index - b.index);
    ipfs_links = results.map((res) => res.result);
    $("#wrapper_message_tools1").show();
    $("#wrapper_message_tools2").show();
    $("#a_message").remove();
    composition_notes(ipfs_links);
    const elements = document.querySelectorAll('.separator');
    const lastElement = elements[elements.length - 1];
    lastElement.scrollIntoView();
    } catch (error) {
    // console.error(error);
    } finally {
    $("#fs_button_loader_wrapper1").show();
    }
    };
    const cache = new Map();
    async function fetchEncryptedFileMemoized(note, index) {
    // const cacheKey = `encryptedFile_${note.id}`;
    const cacheKey = note.id;
    if (cache.has(cacheKey)) {
    return { result: cache.get(cacheKey), index };
    }
    const result = await fetchEncryptedFile(note);
    cache.set(cacheKey, result);
    return { result, index };
    }
    async function fetchEncryptedFile(cid: string): Promise<any> {
    try {
    const response = await fetch(`https://arweave.net/${cid}`);
    const data = await response.json();
    // console.log(data);
    return data;
    } catch (error) {
    console.error(error);
    }
    }
    // Send to Arweave
    async function storeFiles(files) {
    try{
    const response = await fetch('https://arweavephiliasocial.replit.app', {
    method: 'POST',
    headers: {
    'Content-Type': 'application/json',
    'Accept': 'application/json'
    },
    body: JSON.stringify({
    files
    })
    });
    const data = await response.json();
    // console.log(data.cid)
    return data.cid;
    }catch(error){
    // console.log(error)
    }
    };
    let global_chat_space_key:string;
    // Audio Transcoding
    $('#stop_recording').hide();
    let mediaRecorder;
    $("#voice_recording").on('click', async () => {
    mediaRecorder = new Recorder();
    mediaRecorder.start();
    $('#voice_recording').hide();
    $('#stop_recording').show();
    });
    $("#stop_recording").on('click', async () => {
    $('#voice_recording').show();
    $('#stop_recording').hide();
    mediaRecorder.stop()
    const blob = mediaRecorder.getWAVBlob();
    const fileSize = blob.size / (1024 * 1024); // Size in MBs
    if (fileSize > 30) {
    $("#anchor_file_names").append(`
    <div class="file_name">
    <div id="chat_space">Max audio duration reached.</div>
    <div class="line-break0"></div>
    </div>
    `);
    setTimeout(function() {
    $("#chat_space").remove();
    }, 3000);
    return;
    }
    // Create a new File object from the Blob with a unique filename
    const file = new File([blob], `${uuid_generate()}.wav`);
    // Display the filename in the UI and encrypt the uploaded file
    $("#anchor_file_names").append(`
    <div class="file_name">
    ${file.name}
    <div class="line-break0"></div>
    </div>
    `);
    await encryptUploadedFile("", file, `audio/wav`);
    mediaRecorder.destroy().then(function () {
    mediaRecorder = null;
    });
    });
    $('#lock_mess').on('click', async function(){
    try {
    const encryption = new Encryption(chat_space_private);
    // const chat_id = await get_chat_space_key();
    if (main_message.html().length > 0){
    const timestamp_box = $( "#association_algo_password4" ).val().toString();
    // Get the HTML content of the message and replace <br> tags with !@#$
    let replaced_message = main_message.html().toString().replace(/<br>/g, "!@##@!");
    const complete_message = `${timestamp_box}: ${replaced_message}`;
    const blob = new Blob([complete_message], {type: 'text/plain'});
    const file = new File([blob], `${uuid_generate()}.txt`);
    await encryptUploadedFile(`${colorPicker.color.hexString}`, file, `text/plain`);
    };
    if ( uploadedFiles.length > 0) {
    $("#wrapper_message_tools1").hide();
    $("#wrapper_message_tools2").hide();
    $('#fs_button_loader_wrapper1').append(`
    <div class="chat_space" id="a_message">Working...</div>
    `);
    $("#fs_button_loader_wrapper1").show();
    // $("#fs_button_loader_wrapper2").show();
    storeFiles(uploadedFiles).then( async (cid_res) => {
    const epochTimestamp = Math.floor(new Date().getTime() / 1000);
    // const epochTimestamp_encoded = encode_base64(`${epochTimestamp}`).replace(/=+$/, '');
    const message_id = password().replace(/=+$/, '');
    const uint8Array_cid = new TextEncoder().encode(cid_res);
    const cid_encrypted = await encryption.encrypt(uint8Array_cid);
    const cid_encrypted_enc = vec_to_base64( cid_encrypted).replace(/=+$/, '');
    async function createRecord () {
    await collectionReference.create([message_id, global_chat_space_key, epochTimestamp ,cid_encrypted_enc]);
    }
    createRecord().then(() => {
    $("#wrapper_message_tools1").show();
    $("#wrapper_message_tools2").show();
    uploadedFiles = [];
    main_message.text(``);
    $('.file_name').text(``)
    $("#a_message").remove();
    });
    });
    };
    } catch (error) {
    // console.log(error)
    };
    });
    let fetch_data_links = [];
    let fetch_data_links_ids = [];
    function fetchData_ipfs(link) {
    let index = fetch_data_links_ids.indexOf(link);
    // If the id is not found in the array, return null
    if(index === -1) return null;
    // Otherwise, return the corresponding element from the array_link array
    return fetch_data_links[index];
    };
    let counting_separator = 1;
    async function unlock_button(links){
    const lineBreak0 = $('<div>', {class: 'line-break0'});
    const lineBreak1 = $('<div>', {class: 'line-break0'});
    const separator = $('<div>', {class: 'separator'});
    const counter = $('<div>', {class: 'separator_counter', id:`separator_counter_${links}`, text: `${counting_separator++}`});
    let mess_elem: JQuery<HTMLElement>;
    let unlockElem: JQuery<HTMLElement>;
    const svgButton = $(`
    <i class="fa-solid fa-user-lock"></i>
    `);
    mess_elem = $('<div>', {class: 'mess_elem', id: `${links}_anchor`})
    unlockElem = $('<div>', {class: 'chat_space unlockElem', id: `${links}`})
    .append(svgButton);
    $( ".text_area_data" )
    .append(lineBreak0)
    .append(mess_elem).append(unlockElem)
    .append(lineBreak1)
    .append(counter).append(separator)
    }
    $( ".text_area_data" ).on('click', (event) => {
    // let separator_counter = [];
    const target = $(event.target);
    const unlockElem = target.closest('.unlockElem');
    if (!unlockElem.length) return;
    const id = unlockElem.attr('id');
    const separator_count_text = $(`#separator_counter_${id}`).text();
    $(`#separator_counter_${id}`).text(`Decrypting...`);
    const ipfs_data = fetchData_ipfs(id);
    setTimeout(() => {
    get_ipfs_data(id, ipfs_data, separator_count_text);
    }, 50);
    });
    async function listRecordsWithFilter (chat_id: string) {
    const records = await collectionReference
    .where("name", "==", `${chat_id}`)
    .sort("time","asc")
    .limit(10000)
    .get();
    return records
    }
    let mess_count_var_loop = 0;
    let previous_mess_loop = 0;
    async function get_latest_note(){
    // console.log(previous_mess_loop)
    collectionReference
    .where("name", "==", `${global_chat_space_key}`)
    .sort("time","asc")
    .limit(10000)
    .onSnapshot(
    async (newDoc) => {
    try{
    await loop_algorand();
    const elements = document.querySelectorAll('.separator');
    const lastElement = elements[elements.length - 1];
    lastElement.scrollIntoView();
    } catch(error) {
    // console.log(error)
    }
    },
    (err) => {
    // Optional error handler
    }
    );
    }
    async function loop_algorand(){
    let array_notes = [];
    const encryption = new Encryption(chat_space_private);
    // const chat_id = await get_chat_space_key();
    listRecordsWithFilter(global_chat_space_key).then((records)=>{
    records.data.map(x =>{
    // console.log(x.data.port)
    const message_algo_main_sanitized = sanitize_base64(x.data.port);
    encryption.decrypt(message_algo_main_sanitized)
    .then(decrypted_algo_main => {
    const decrypted_algo_main_decoded = decoder.decode(decrypted_algo_main);
    array_notes.push(decrypted_algo_main_decoded)
    });
    });
    }).then(async () => {
    // try{
    // // const set_array_notes = array_notes.reverse();
    const set_array_notes = array_notes;
    const set_array_notes_len = set_array_notes.length;
    if (previous_mess_loop === 0) {
    previous_mess_loop = array_notes.length;
    // console.log(previous_mess_loop)
    processArrayNotes(array_notes)
    };
    if (set_array_notes_len > previous_mess_loop) {
    mess_count_var_loop = set_array_notes_len - previous_mess_loop;
    const latestMessages = set_array_notes.slice(-mess_count_var_loop);
    // console.log(latestMessages)
    processArrayNotes(latestMessages)
    previous_mess_loop = set_array_notes_len;
    };
    // } catch(error){
    // console.error(error);
    // };
    });
    };
    const reader = new FileReader();
    async function get_ipfs_data(id, ipfs_data, separator_count_text: string) {
    try{
    $(`#${id}`).remove();
    const encryption = new Encryption(chat_space_private);
    const decrypted_hex = await encryption.decrypt( base64_to_vec(ipfs_data.fh));
    const decrypted_label = await encryption.decrypt(base64_to_vec(ipfs_data.fl));
    const decrypted_hex_decoded = decoder.decode(decrypted_hex);
    const decrypted_label_decoded = decoder.decode(decrypted_label);
    const decrypted_data = await encryption.decrypt(base64_to_vec(ipfs_data.fd));
    reader.readAsDataURL(new Blob([decrypted_data]));
    reader.onloadend = () => {
    try{
    const formatMIMETypes = {
    "audio/mpeg": "audio/mpeg",
    "audio/mp3": "audio/mp3",
    "audio/x-m4a": "audio/x-m4a",
    "audio/wav": "audio/wav",
    "audio/flac": "audio/flac",
    "audio/webm;codecs=opus": "audio/webm;codecs=opus",
    "video/mp4": "video/mp4",
    "video/quicktime": "video/quicktime",
    "image/png": "image/png",
    "image/jpeg": "image/jpeg",
    "text/plain": "text/plain",
    "application/pdf": "application/pdf",
    };
    const format = decrypted_label_decoded;
    const mimeType = formatMIMETypes[format];
    if (mimeType.startsWith("audio/")) {
    const audioBlob = new Blob([decrypted_data], {type: mimeType});
    const audioUrl = URL.createObjectURL(audioBlob);
    $.when($(`#${id}_anchor`).append(
    $('<audio>', {src: audioUrl, class: "rendered_audio", style: "--plyr-audio-controls-background: #eee;"})
    )).done(function(){
    $(`#separator_counter_${id}`).text(separator_count_text);
    Plyr.setup(`.rendered_audio`, {
    controls: ['play', 'progress', 'current-time', 'mute', 'settings'],
    autoplay: false,
    displayDuration: true
    });
    });
    } else if (mimeType.startsWith("video/")) {
    const videoBlob = new Blob([decrypted_data], {type: mimeType});
    const videoUrl = URL.createObjectURL(videoBlob);
    // const set_video_id = `${id}_video`;
    $.when($(`#${id}_anchor`).append(
    $('<video>', {src: videoUrl,class: "rendered_vid"})
    )).done(function(){
    $(`#separator_counter_${id}`).text(separator_count_text);
    Plyr.setup('.rendered_vid', {
    controls: ['play', 'progress', 'current-time', 'mute', 'settings', 'fullscreen'],
    autoplay: false,
    });
    });
    } else if (mimeType.startsWith("image/")) {
    $.when($(`#${id}_anchor`).append(
    $('<img>', {src: reader.result as string, class: "rendered_img"})
    )).done(function(){
    $(`#separator_counter_${id}`).text(separator_count_text);
    });
    } else if (mimeType.startsWith("text/")) {
    let decrypted_text_decoded = decoder.decode(decrypted_data);
    // Replace the ID with <br>
    let replaced_text = decrypted_text_decoded.replace(/!@##@!/g, "<br>");
    // Find URLs using regular expression and replace them with anchor tags
    let urlRegex = /((https?:\/\/)|(www\.))[^<\s]+/g;
    let linked_text = replaced_text.replace(urlRegex, function(url) {
    let urlWithProtocol = url.startsWith('http') ? url : 'http://' + url;
    return `<a href="${urlWithProtocol}" target="_blank">${url}</a>`;
    });
    // Create a new jQuery object with the replaced text as its HTML content
    let text = $('<div>').html(linked_text);
    text.css('color', decrypted_hex_decoded);
    // $(`#${id}_anchor`).append(text);
    $.when($(`#${id}_anchor`).append(text)).done(function(){
    $(`#separator_counter_${id}`).text(separator_count_text);
    });
    } else if (mimeType.startsWith("application/")) {
    const pdfBlob = new Blob([decrypted_data], {type: 'application/pdf'});
    const pdfUrl = URL.createObjectURL(pdfBlob);
    $.when($(`#${id}_anchor`).append(
    `<a href="${pdfUrl}" target="_blank"><span class="chat_space fa-solid fa-file-pdf"></span></a>`
    )).done(function(){
    $(`#separator_counter_${id}`).text(separator_count_text);
    });
    };
    } catch(error) {
    // console.log(error)
    }
    };
    } catch(error) {
    // console.log(error)
    }
    }
    $('#latest_mess').on('click', async function(){
    try{
    // await loop_algorand();
    const elements = document.querySelectorAll('.separator');
    const lastElement = elements[elements.length - 1];
    lastElement.scrollIntoView();
    } catch(error) {
    // console.log(error)
    }
    });
    $( "#blur_mess" ).on('click', function() {
    if($( "#glass" ).length){
    $( "#glass" ).remove();
    } else {
    $( "#wrapper_glass" ).append(`
    <div id="glass"></div>
    `);
    }
    });
    $('#refresh').on('click', function(){
    $("#refresh").addClass("animated");
    // Open the new window after the transition or animation has completed
    setTimeout(function() {
    window.location.reload();
    }, 500);
    });
    async function handleUpload() {
    const file = input.files[0];
    const allowedTypes = [
    "audio/mpeg",
    "audio/x-m4a",
    "audio/wav",
    "audio/flac",
    "audio/webm;codecs=opus",
    "audio/mp3",
    "video/mp4",
    "video/quicktime",
    "image/png",
    "image/jpeg",
    "text/plain",
    "application/pdf",
    ];
    try {
    if (file.size > 60 * 1024 * 1024) {
    // console.log("File size is too large. Maximum file size is 100MB.");
    } else if (!allowedTypes.includes(file.type)) {
    // console.log("File type not allowed. Allowed file types are " + allowedTypes.join(', '));
    } else {
    $( "#anchor_file_names" ).append(`
    <div class="file_name">
    ${file.name}
    <div class="line-break0"></div>
    </div>
    `);
    await encryptUploadedFile("", file, file.type);
    };
    } catch (error) {
    // console.log(error);
    };
    };
  • file addition: index.js (----------)
    [0.1660]
    var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
    return new (P || (P = Promise))(function (resolve, reject) {
    function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
    function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
    function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
    step((generator = generator.apply(thisArg, _arguments || [])).next());
    });
    };
    var __generator = (this && this.__generator) || function (thisArg, body) {
    var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
    return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
    function verb(n) { return function (v) { return step([n, v]); }; }
    function step(op) {
    if (f) throw new TypeError("Generator is already executing.");
    while (g && (g = 0, op[0] && (_ = 0)), _) try {
    if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
    if (y = 0, t) op = [op[0] & 2, t.value];
    switch (op[0]) {
    case 0: case 1: t = op; break;
    case 4: _.label++; return { value: op[1], done: false };
    case 5: _.label++; y = op[1]; op = [0]; continue;
    case 7: op = _.ops.pop(); _.trys.pop(); continue;
    default:
    if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
    if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
    if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
    if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
    if (t[2]) _.ops.pop();
    _.trys.pop(); continue;
    }
    op = body.call(thisArg, _);
    } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
    if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
    }
    };
    import init, { encrypt_or_decrypt_files2, password, sanitize_base64, base64_to_vec, vec_to_base64, uuid_generate, encode_base64 } from 'my-crate';
    import './style.css';
    import $ from 'jquery';
    import iro from '@jaames/iro';
    import Plyr from 'plyr';
    import { Polybase } from "@polybase/client";
    // import { Mp3Recorder } from './Mp3Recorder.mjs';
    import Recorder from "yiyi-audio-recorder";
    import { uniqueNamesGenerator, adjectives, colors, animals } from 'unique-names-generator';
    // const v = "lassis";
    // import { password } from '../my-crate/pkg/my_crate';
    // wasm-pack build ./my-crate --target web
    // https://rustwasm.github.io/wasm-pack/installer/
    // const db = new Polybase({
    // defaultNamespace: "data_space",
    // });
    var db = new Polybase({
    defaultNamespace: "data_space",
    signer: function (data) {
    // Enter your condition to skip the signing process.
    return null;
    }
    });
    var collectionReference = db.collection("cid");
    var decoder = new TextDecoder();
    var uploadedFiles = [];
    var colorPicker = iro.ColorPicker("#picker", {
    width: 120,
    color: "#6842ff",
    borderWidth: 5,
    borderColor: "#ffffff",
    layout: [
    {
    component: iro.ui.Wheel,
    options: {}
    },
    ]
    });
    $("#algo_button_box").hide();
    $("#container_algorand").hide();
    //=====================================================================
    // BUTTONS LAYER
    //=====================================================================
    $("#love_matchings").on('click', function () {
    $("#love_matchings").addClass("animated");
    // Open the new window after the transition or animation has completed
    setTimeout(function () {
    window.open("https://love.farfallasocial.repl.co/", '_blank');
    }, 500);
    });
    $("#infinity_nomads").on('click', function () {
    $("#infinity_nomads").addClass("animated");
    // Open the new window after the transition or animation has completed
    setTimeout(function () {
    window.open("https://infinity.farfallasocial.repl.co/", '_blank');
    }, 500);
    });
    $("#info_pop").on('click', function () {
    if ($('#info_box').length == 0) {
    $('#anchor_info_pop').append("\n <div id='info_box'>\n <div id='title_steps'>Guidance</div>\n <div class=\"line-break0\"></div>\n <div class='first_step'>If you require a translator, we enjoy using this <a href=\"https://www.deepl.com/translator\" target=\"_blank\">Deep Learning model</a>.</div>\n <div class=\"line-break0\"></div>\n <div class='first_step'>If you require a place to store your notes securely and privaely, we enjoy using this <a href=\"https://www.protectedtext.com/\" target=\"_blank\">notepad</a>.</div>\n <div class=\"line-break0\"></div>\n <div class='first_step'>PhiliaSocial Chat uses Aes256Gcm; for further reading visit this <a href=\"https://crates.io/crates/aes-gcm\" target=\"_blank\">Rust crate.</a></div>\n <div class=\"line-break0\"></div>\n <div class='first_step'>The locally encrypted messages and files are uploaded to the <a href=\"https://www.arweave.org/\" target=\"_blank\">Arweave network</a> using the <a href=\"https://bundlr.network/\" target=\"_blank\">Bundlr Network</a>. The CIDs of your data are then stored on <a href=\"https://polybase.xyz/\" target=\"_blank\">Polybase</a>, within Polybase, the CIDs are stored under a single \"collection\"; this adds a \"lost in the crowd\" complexity to the message route. Please be mindful that the encrypted files are not guaranteed to be available indefinitely due the beta nature of PhiliaSocial Chat.</div>\n <div class=\"line-break0\"></div>\n <div class='first_step'>On another note, use <a href=\"https://giphy.com/\" target=\"_blank\">Giphy</a> or <a href=\"https://tenor.com/\" target=\"_blank\">Tenor</a> to insert GIF-links into your Chat-space.</div>\n <div class=\"line-break0\"></div>\n <div class='first_step'>Contact us: connect at philia dot social</div>\n </div>\n ");
    }
    ;
    });
    $("#anchor_info_pop").on('click', function () {
    if ($('#info_box').length) {
    $('#info_box').remove();
    }
    });
    $("#note_pad").on('click', function () {
    $("#note_pad").addClass("animated");
    // Open the new window after the transition or animation has completed
    setTimeout(function () {
    window.open("https://cryptgeon.org/", '_blank');
    }, 500);
    });
    $("#show_hide_password").on('click', function () {
    var check_val = $('.fa-eye').length;
    switch (check_val) {
    case 1:
    $(".survey-options").attr("type", "text");
    $("#fa_eye")
    .removeClass("fa-solid fa-eye")
    .addClass("fa-solid fa-eye-slash");
    break;
    default:
    $(".survey-options").attr("type", "password");
    $("#fa_eye")
    .removeClass("fa-solid fa-eye-slash")
    .addClass("fa-solid fa-eye");
    break;
    }
    });
    init().then(function () {
    setTimeout(function () {
    $(".container_intro").fadeOut(2000);
    $("#algo_button_box").show();
    }, 2000);
    function public_key_step() {
    return __awaiter(this, void 0, void 0, function () {
    return __generator(this, function (_a) {
    $('#ft_expanded_2').append("\n <div id=\"spacing_second\" class=\"line-break0\"></div>\n <div id=\"second_orig\" class=\"peer_orig_inputs\">Click the Copy button above to copy the complete Chat-Credentials below, then navigate to Cryptgeon and create a note with them; share the generated link with your partner(s).</div>\n <div id=\"survey_pub_key2\" class=\"survey_options_algo2\">\n <input id=\"association_algo_password\" type=\"password\" name=\"survey_options_name\" class=\"survey-options\"/>\n </div>\n ");
    return [2 /*return*/];
    });
    });
    }
    $("#input_label_button_pub_key").on('click', function () {
    // $("#input_label_button_farfalla_key").hide();
    // $("#input_label_button_contact_key").hide();
    // $("#original_space").hide();
    $("#first_task").hide();
    var condition_ft = $("#input_label_button_pub_key").html() === "Create New Credentials";
    var expandedContent = document.getElementById('ft_expanded_2');
    if (condition_ft == true) {
    $("#input_label_button_pub_key").text("Return Home");
    if (expandedContent.style.display === 'block') {
    expandedContent.style.display = 'none';
    }
    else {
    expandedContent.style.display = 'block';
    if ($("#association_algo_password").length == 0) {
    public_key_step().then(function () {
    // const new_public = generate_public_key();
    // const new_chat = new_chat_id();
    var new_chat = encode_base64(uuid_generate());
    var new_public = password().replace(/=/g, '');
    // console.log([new_chat.length, new_public.length])
    var joined_credentials = new_chat + new_public;
    // console.log(joined_credentials)
    $("#association_algo_password").val("".concat(joined_credentials));
    });
    }
    ;
    }
    ;
    }
    else {
    $("#input_label_button_pub_key").html("Create New Credentials");
    expandedContent.style.display = 'none';
    // $("#input_label_button_farfalla_key").show();
    // $("#input_label_button_contact_key").show();
    // $("#original_space").show();
    $("#first_task").show();
    $("#association_algo_password").remove();
    $("#association_algo_password0").remove();
    $(".survey_options_algo2").remove();
    $("#second_orig").remove();
    $("#spacing_second").remove();
    $("#soft_encrypted_credential").remove();
    }
    ;
    });
    function initial_text_area_view() {
    return __awaiter(this, void 0, void 0, function () {
    return __generator(this, function (_a) {
    switch (_a.label) {
    case 0:
    if ($("#association_algo_password4").length == 0) {
    $("#wrapper_username").append("\n <div class=\"inputs_labels\">Add any optional metadata:</div>\n <div id class=\"line-break0\"></div>\n <div class=\"survey_options_algo\">\n <input id=\"association_algo_password4\" type=\"text\" name=\"survey_options_name4\" class=\"survey-options\" placeholder=\"Ex: 01 Mikasa A.\"/>\n </div>\n <div class=\"messages_labels\">\n <div>Safe Qty.</div>\n <div>Risky Qty.</div>\n </div>\n <div id=\"messages_count\"></div>\n <div class=\"messages_labels\">\n <div>0</div>\n <div>Messages</div>\n <div>500</div>\n </div>\n ");
    }
    ;
    // try{
    return [4 /*yield*/, loop_algorand()];
    case 1:
    // try{
    _a.sent();
    return [2 /*return*/];
    }
    });
    });
    }
    $(document).ready(function () {
    // Event listener for 'keydown' on input element with ID 'association_algo_password2'
    $('#association_algo_password2').on('keydown', function (event) {
    return __awaiter(this, void 0, void 0, function () {
    return __generator(this, function (_a) {
    switch (_a.label) {
    case 0:
    if (!(event.key === 'Enter')) return [3 /*break*/, 2];
    event.preventDefault(); // Prevent the default action of the Enter key
    return [4 /*yield*/, processCredentials()];
    case 1:
    _a.sent();
    _a.label = 2;
    case 2: return [2 /*return*/];
    }
    });
    });
    });
    // Event listener for 'click' on element with ID 'input_label_button_farfalla_key'
    $("#input_label_button_farfalla_key").on('click', function () {
    return __awaiter(this, void 0, void 0, function () {
    return __generator(this, function (_a) {
    switch (_a.label) {
    case 0: return [4 /*yield*/, processCredentials()];
    case 1:
    _a.sent();
    return [2 /*return*/];
    }
    });
    });
    });
    function processCredentials() {
    return __awaiter(this, void 0, void 0, function () {
    var assoc_pass2, credentials, split_credentials_chatId, split_credentials_private, error_1;
    return __generator(this, function (_a) {
    switch (_a.label) {
    case 0:
    assoc_pass2 = $("#association_algo_password2").val().toString().length;
    if (!(assoc_pass2 == 91)) return [3 /*break*/, 4];
    $("#input_label_button_pub_key").hide();
    $("#input_label_button_contact_key").hide();
    credentials = $("#association_algo_password2").val().toString().trim();
    split_credentials_chatId = credentials.substring(0, 48);
    split_credentials_private = credentials.substring(48, 91);
    global_chat_space_key = split_credentials_chatId;
    if (!(credentials.length == 91 && split_credentials_chatId.length == 48 && split_credentials_private.length == 43)) return [3 /*break*/, 4];
    $('#algo_button_box').hide();
    $('#algo_gate').hide();
    $("#container_algorand").show();
    chat_space_id = split_credentials_chatId;
    chat_space_private = split_credentials_private;
    $('#wallet_connected_chat').html("".concat(split_credentials_chatId));
    $("#wallet_connected_chat").on('click', function () {
    window.open("https://explorer.testnet.polybase.xyz/collections/data_space%2Fcid", '_blank');
    });
    _a.label = 1;
    case 1:
    _a.trys.push([1, 3, , 4]);
    return [4 /*yield*/, initial_text_area_view()];
    case 2:
    _a.sent();
    get_latest_note();
    return [3 /*break*/, 4];
    case 3:
    error_1 = _a.sent();
    return [3 /*break*/, 4];
    case 4: return [2 /*return*/];
    }
    });
    });
    }
    });
    // function confirm_copied(){
    // $(".fa-copy").remove();
    // $("#copy_field").html(`Copied!`);
    // setTimeout(() => {
    // // $(".fa-clipboard-check").remove();
    // $("#copy_field").html(`Copy`);
    // }, 2000);
    // }
    // $("#copy_field").on('click', function(){
    // const get_pub_key = $("#input_label_button_pub_key").html() === `Return Home`;
    // // const get_contact_key = $("#input_label_button_contact_key").html() === `Before continuing, be sure to copy the Chat-Id and store it safely. Founder, share the Chat-Id with your Partner by creating and sharing a new Cryptgeon note. At this time both of you should have: each other's Public-Key; your Public-Key; your Private-Key; lastly, the Chat-Id. When you are ready to proceed, click this text.`;
    // // const get_contact_key2 = $("#input_label_button_contact_key").html() === `To ensure the security of your Chat space please follow these steps: first, copy and store safely the Encrypted Credentials. Next, use Cryptgeon to generate a sharable link containing the Encrypted Credentials; share this link with your Partner. Remind your Partner to visit the farfalla@ web app to decrypt the Encrypted Credentials. Your Unencrypted and Decrypted Credentials are ready to be use to enter the Chat space you have created. When you are ready, click this text to refresh the web app.`;
    // if(get_pub_key==true){
    // navigator.clipboard.writeText(`${$("#association_algo_password").val()}
    // `);
    // confirm_copied()
    // }
    // });
    // Function to confirm that text has been copied
    function confirmCopied() {
    $(".fa-copy").remove();
    $("#copy_field").html("Copied!");
    setTimeout(function () {
    $("#copy_field").html("Copy");
    }, 2000);
    }
    // Function to handle the click event on the copy field
    function handleCopyFieldClick() {
    return __awaiter(this, void 0, void 0, function () {
    var isReturnHome, textToCopy, error_2;
    return __generator(this, function (_a) {
    switch (_a.label) {
    case 0:
    isReturnHome = $("#input_label_button_pub_key").html() === "Return Home";
    if (!isReturnHome) return [3 /*break*/, 4];
    _a.label = 1;
    case 1:
    _a.trys.push([1, 3, , 4]);
    textToCopy = $("#association_algo_password").val();
    return [4 /*yield*/, navigator.clipboard.writeText(textToCopy)];
    case 2:
    _a.sent();
    confirmCopied();
    return [3 /*break*/, 4];
    case 3:
    error_2 = _a.sent();
    console.error("Failed to copy text: ", error_2);
    return [3 /*break*/, 4];
    case 4: return [2 /*return*/];
    }
    });
    });
    }
    // Attach the click event listener
    $(document).ready(function () {
    $("#copy_field").on("click", handleCopyFieldClick);
    });
    });
    // const gf = new GiphyFetch('O2LqnkYYdR5ckdntfpOINQLjmsOX1OKH');
    // $('#gif').on('click', async function () {
    // const response = await fetch(`https://api.giphy.com/v1/gifs/trending?api_key=${"O2LqnkYYdR5ckdntfpOINQLjmsOX1OKH"}&limit=10`);
    // const data = await response.json();
    // const gifs = data.data;
    // const mountNode = document.getElementById('container_algorand'); // Replace with the ID of the element where you want to render the GIFs
    // gifs.forEach((gif) => {
    // const img = document.createElement('img');
    // img.src = gif.images.original.url;
    // img.alt = gif.title;
    // mountNode.appendChild(img);
    // });
    // });
    $('#headset').on('click', function () {
    return __awaiter(this, void 0, void 0, function () {
    var newUUID, randomName, videoChatUrl;
    return __generator(this, function (_a) {
    newUUID = uuid_generate();
    randomName = uniqueNamesGenerator({ dictionaries: [adjectives, colors, animals] });
    videoChatUrl = "https://c2c.mirotalk.com/join?room=".concat(newUUID, "&name=").concat(randomName);
    window.open(videoChatUrl, '_blank');
    return [2 /*return*/];
    });
    });
    });
    var main_message = $("#messages");
    colorPicker.on('color:change', function (color) {
    main_message.css('color', "".concat(color.hexString));
    });
    var uploadDiv = document.getElementById("add_file");
    var input = document.getElementById("file-input");
    input.addEventListener("change", handleUpload);
    uploadDiv.addEventListener("click", function () { return input.click(); });
    //// remove file name from the uploadedFiles array
    $('#anchor_file_names').on('click touchend', function (event) {
    if ($(event.target).is('.file_name')) {
    var index = $(event.target).index();
    $(event.target).remove();
    uploadedFiles.splice(index, 1);
    }
    });
    // let chat_space_party_pk:string;
    var chat_space_private;
    var chat_space_id;
    // encrypting files...
    var Encryption = /** @class */ (function () {
    // public additional: string;
    function Encryption(private_k) {
    // this.public_k = public_k;
    this.private_k = private_k;
    // this.additional = additional;
    }
    Encryption.prototype.encrypt = function (data) {
    return __awaiter(this, void 0, void 0, function () {
    return __generator(this, function (_a) {
    // return encrypt_file(this.key, data);
    return [2 /*return*/, encrypt_or_decrypt_files2("encrypt", this.private_k, data)];
    });
    });
    };
    Encryption.prototype.decrypt = function (data) {
    return __awaiter(this, void 0, void 0, function () {
    return __generator(this, function (_a) {
    return [2 /*return*/, encrypt_or_decrypt_files2("decrypt", this.private_k, data)];
    });
    });
    };
    ;
    return Encryption;
    }());
    ;
    function encryptUploadedFile(coloring, file, labels) {
    return __awaiter(this, void 0, void 0, function () {
    var encryption, buffer, textEnc, uint8Array_col, uint8Array_lab, encryptedColoring, encryptedFile, encryptedLabels, colo_enc, file_enc, labels_enc, obj;
    return __generator(this, function (_a) {
    switch (_a.label) {
    case 0:
    $("#wrapper_message_tools1").hide();
    $("#wrapper_message_tools2").hide();
    $('#fs_button_loader_wrapper1').append("\n <div class=\"chat_space\" id=\"a_message\">Working...</div>\n ");
    $("#fs_button_loader_wrapper1").show();
    encryption = new Encryption(chat_space_private);
    return [4 /*yield*/, new Response(file).arrayBuffer()];
    case 1:
    buffer = _a.sent();
    textEnc = new TextEncoder();
    uint8Array_col = textEnc.encode(coloring);
    uint8Array_lab = textEnc.encode(labels);
    return [4 /*yield*/, encryption.encrypt(uint8Array_col)];
    case 2:
    encryptedColoring = _a.sent();
    return [4 /*yield*/, encryption.encrypt(new Uint8Array(buffer))];
    case 3:
    encryptedFile = _a.sent();
    return [4 /*yield*/, encryption.encrypt(uint8Array_lab)];
    case 4:
    encryptedLabels = _a.sent();
    colo_enc = vec_to_base64(encryptedColoring);
    file_enc = vec_to_base64(encryptedFile);
    labels_enc = vec_to_base64(encryptedLabels);
    obj = { fh: colo_enc, fl: labels_enc, fd: file_enc };
    uploadedFiles.push(obj);
    $("#wrapper_message_tools1").show();
    $("#wrapper_message_tools2").show();
    $("#a_message").remove();
    return [2 /*return*/];
    }
    });
    });
    }
    ;
    //Web-worker
    var ipfs_links = [];
    function composition_notes(links) {
    return __awaiter(this, void 0, void 0, function () {
    var error_3;
    var _this = this;
    return __generator(this, function (_a) {
    switch (_a.label) {
    case 0:
    _a.trys.push([0, 2, , 3]);
    // Wait for all the outer promises to resolve
    return [4 /*yield*/, Promise.all(links.map(function (note) { return __awaiter(_this, void 0, void 0, function () {
    var innerPromises;
    return __generator(this, function (_a) {
    switch (_a.label) {
    case 0:
    innerPromises = note.map(function (x) {
    var arweave_obj_id = uuid_generate();
    fetch_data_links.push(x);
    fetch_data_links_ids.push(arweave_obj_id);
    // Chain the unlock_button() promise without using async/await within the map
    return unlock_button(arweave_obj_id);
    });
    // Wait for all the inner promises to resolve
    return [4 /*yield*/, Promise.all(innerPromises)];
    case 1:
    // Wait for all the inner promises to resolve
    _a.sent();
    return [2 /*return*/];
    }
    });
    }); }))];
    case 1:
    // Wait for all the outer promises to resolve
    _a.sent();
    return [3 /*break*/, 3];
    case 2:
    error_3 = _a.sent();
    return [3 /*break*/, 3];
    case 3: return [2 /*return*/];
    }
    });
    });
    }
    var processArrayNotes = function (notes) { return __awaiter(void 0, void 0, void 0, function () {
    var promises, results, elements, lastElement, error_4;
    return __generator(this, function (_a) {
    switch (_a.label) {
    case 0:
    // console.log(notes)
    cache.clear();
    // console.log("init")
    $("#wrapper_message_tools1").hide();
    $("#wrapper_message_tools2").hide();
    if ($('#a_message').length === 0) {
    $('#fs_button_loader_wrapper1').append("\n <div class=\"chat_space\" id=\"a_message\">Working...</div>\n ");
    }
    _a.label = 1;
    case 1:
    _a.trys.push([1, 3, 4, 5]);
    promises = notes.map(function (note, index) {
    // console.log(note)
    return fetchEncryptedFileMemoized(note, index);
    });
    return [4 /*yield*/, Promise.all(promises)];
    case 2:
    results = _a.sent();
    // console.log(results)
    results.sort(function (a, b) { return a.index - b.index; });
    ipfs_links = results.map(function (res) { return res.result; });
    $("#wrapper_message_tools1").show();
    $("#wrapper_message_tools2").show();
    $("#a_message").remove();
    composition_notes(ipfs_links);
    elements = document.querySelectorAll('.separator');
    lastElement = elements[elements.length - 1];
    lastElement.scrollIntoView();
    return [3 /*break*/, 5];
    case 3:
    error_4 = _a.sent();
    return [3 /*break*/, 5];
    case 4:
    $("#fs_button_loader_wrapper1").show();
    return [7 /*endfinally*/];
    case 5: return [2 /*return*/];
    }
    });
    }); };
    var cache = new Map();
    function fetchEncryptedFileMemoized(note, index) {
    return __awaiter(this, void 0, void 0, function () {
    var cacheKey, result;
    return __generator(this, function (_a) {
    switch (_a.label) {
    case 0:
    cacheKey = note.id;
    if (cache.has(cacheKey)) {
    return [2 /*return*/, { result: cache.get(cacheKey), index: index }];
    }
    return [4 /*yield*/, fetchEncryptedFile(note)];
    case 1:
    result = _a.sent();
    cache.set(cacheKey, result);
    return [2 /*return*/, { result: result, index: index }];
    }
    });
    });
    }
    function fetchEncryptedFile(cid) {
    return __awaiter(this, void 0, void 0, function () {
    var response, data, error_5;
    return __generator(this, function (_a) {
    switch (_a.label) {
    case 0:
    _a.trys.push([0, 3, , 4]);
    return [4 /*yield*/, fetch("https://arweave.net/".concat(cid))];
    case 1:
    response = _a.sent();
    return [4 /*yield*/, response.json()];
    case 2:
    data = _a.sent();
    // console.log(data);
    return [2 /*return*/, data];
    case 3:
    error_5 = _a.sent();
    console.error(error_5);
    return [3 /*break*/, 4];
    case 4: return [2 /*return*/];
    }
    });
    });
    }
    // Send to Arweave
    function storeFiles(files) {
    return __awaiter(this, void 0, void 0, function () {
    var response, data, error_6;
    return __generator(this, function (_a) {
    switch (_a.label) {
    case 0:
    _a.trys.push([0, 3, , 4]);
    return [4 /*yield*/, fetch('https://arweavephiliasocial.replit.app', {
    method: 'POST',
    headers: {
    'Content-Type': 'application/json',
    'Accept': 'application/json'
    },
    body: JSON.stringify({
    files: files
    })
    })];
    case 1:
    response = _a.sent();
    return [4 /*yield*/, response.json()];
    case 2:
    data = _a.sent();
    // console.log(data.cid)
    return [2 /*return*/, data.cid];
    case 3:
    error_6 = _a.sent();
    return [3 /*break*/, 4];
    case 4: return [2 /*return*/];
    }
    });
    });
    }
    ;
    var global_chat_space_key;
    // Audio Transcoding
    $('#stop_recording').hide();
    var mediaRecorder;
    $("#voice_recording").on('click', function () { return __awaiter(void 0, void 0, void 0, function () {
    return __generator(this, function (_a) {
    mediaRecorder = new Recorder();
    mediaRecorder.start();
    $('#voice_recording').hide();
    $('#stop_recording').show();
    return [2 /*return*/];
    });
    }); });
    $("#stop_recording").on('click', function () { return __awaiter(void 0, void 0, void 0, function () {
    var blob, fileSize, file;
    return __generator(this, function (_a) {
    switch (_a.label) {
    case 0:
    $('#voice_recording').show();
    $('#stop_recording').hide();
    mediaRecorder.stop();
    blob = mediaRecorder.getWAVBlob();
    fileSize = blob.size / (1024 * 1024);
    if (fileSize > 30) {
    $("#anchor_file_names").append("\n <div class=\"file_name\">\n <div id=\"chat_space\">Max audio duration reached.</div>\n <div class=\"line-break0\"></div>\n </div>\n ");
    setTimeout(function () {
    $("#chat_space").remove();
    }, 3000);
    return [2 /*return*/];
    }
    file = new File([blob], "".concat(uuid_generate(), ".wav"));
    // Display the filename in the UI and encrypt the uploaded file
    $("#anchor_file_names").append("\n <div class=\"file_name\">\n ".concat(file.name, "\n <div class=\"line-break0\"></div>\n </div>\n "));
    return [4 /*yield*/, encryptUploadedFile("", file, "audio/wav")];
    case 1:
    _a.sent();
    mediaRecorder.destroy().then(function () {
    mediaRecorder = null;
    });
    return [2 /*return*/];
    }
    });
    }); });
    $('#lock_mess').on('click', function () {
    return __awaiter(this, void 0, void 0, function () {
    var encryption_1, timestamp_box, replaced_message, complete_message, blob, file, error_7;
    var _this = this;
    return __generator(this, function (_a) {
    switch (_a.label) {
    case 0:
    _a.trys.push([0, 3, , 4]);
    encryption_1 = new Encryption(chat_space_private);
    if (!(main_message.html().length > 0)) return [3 /*break*/, 2];
    timestamp_box = $("#association_algo_password4").val().toString();
    replaced_message = main_message.html().toString().replace(/<br>/g, "!@##@!");
    complete_message = "".concat(timestamp_box, ": ").concat(replaced_message);
    blob = new Blob([complete_message], { type: 'text/plain' });
    file = new File([blob], "".concat(uuid_generate(), ".txt"));
    return [4 /*yield*/, encryptUploadedFile("".concat(colorPicker.color.hexString), file, "text/plain")];
    case 1:
    _a.sent();
    _a.label = 2;
    case 2:
    ;
    if (uploadedFiles.length > 0) {
    $("#wrapper_message_tools1").hide();
    $("#wrapper_message_tools2").hide();
    $('#fs_button_loader_wrapper1').append("\n <div class=\"chat_space\" id=\"a_message\">Working...</div>\n ");
    $("#fs_button_loader_wrapper1").show();
    // $("#fs_button_loader_wrapper2").show();
    storeFiles(uploadedFiles).then(function (cid_res) { return __awaiter(_this, void 0, void 0, function () {
    function createRecord() {
    return __awaiter(this, void 0, void 0, function () {
    return __generator(this, function (_a) {
    switch (_a.label) {
    case 0: return [4 /*yield*/, collectionReference.create([message_id, global_chat_space_key, epochTimestamp, cid_encrypted_enc])];
    case 1:
    _a.sent();
    return [2 /*return*/];
    }
    });
    });
    }
    var epochTimestamp, message_id, uint8Array_cid, cid_encrypted, cid_encrypted_enc;
    return __generator(this, function (_a) {
    switch (_a.label) {
    case 0:
    epochTimestamp = Math.floor(new Date().getTime() / 1000);
    message_id = password().replace(/=+$/, '');
    uint8Array_cid = new TextEncoder().encode(cid_res);
    return [4 /*yield*/, encryption_1.encrypt(uint8Array_cid)];
    case 1:
    cid_encrypted = _a.sent();
    cid_encrypted_enc = vec_to_base64(cid_encrypted).replace(/=+$/, '');
    createRecord().then(function () {
    $("#wrapper_message_tools1").show();
    $("#wrapper_message_tools2").show();
    uploadedFiles = [];
    main_message.text("");
    $('.file_name').text("");
    $("#a_message").remove();
    });
    return [2 /*return*/];
    }
    });
    }); });
    }
    ;
    return [3 /*break*/, 4];
    case 3:
    error_7 = _a.sent();
    return [3 /*break*/, 4];
    case 4:
    ;
    return [2 /*return*/];
    }
    });
    });
    });
    var fetch_data_links = [];
    var fetch_data_links_ids = [];
    function fetchData_ipfs(link) {
    var index = fetch_data_links_ids.indexOf(link);
    // If the id is not found in the array, return null
    if (index === -1)
    return null;
    // Otherwise, return the corresponding element from the array_link array
    return fetch_data_links[index];
    }
    ;
    var counting_separator = 1;
    function unlock_button(links) {
    return __awaiter(this, void 0, void 0, function () {
    var lineBreak0, lineBreak1, separator, counter, mess_elem, unlockElem, svgButton;
    return __generator(this, function (_a) {
    lineBreak0 = $('<div>', { class: 'line-break0' });
    lineBreak1 = $('<div>', { class: 'line-break0' });
    separator = $('<div>', { class: 'separator' });
    counter = $('<div>', { class: 'separator_counter', id: "separator_counter_".concat(links), text: "".concat(counting_separator++) });
    svgButton = $("\n <i class=\"fa-solid fa-user-lock\"></i>\n");
    mess_elem = $('<div>', { class: 'mess_elem', id: "".concat(links, "_anchor") });
    unlockElem = $('<div>', { class: 'chat_space unlockElem', id: "".concat(links) })
    .append(svgButton);
    $(".text_area_data")
    .append(lineBreak0)
    .append(mess_elem).append(unlockElem)
    .append(lineBreak1)
    .append(counter).append(separator);
    return [2 /*return*/];
    });
    });
    }
    $(".text_area_data").on('click', function (event) {
    // let separator_counter = [];
    var target = $(event.target);
    var unlockElem = target.closest('.unlockElem');
    if (!unlockElem.length)
    return;
    var id = unlockElem.attr('id');
    var separator_count_text = $("#separator_counter_".concat(id)).text();
    $("#separator_counter_".concat(id)).text("Decrypting...");
    var ipfs_data = fetchData_ipfs(id);
    setTimeout(function () {
    get_ipfs_data(id, ipfs_data, separator_count_text);
    }, 50);
    });
    function listRecordsWithFilter(chat_id) {
    return __awaiter(this, void 0, void 0, function () {
    var records;
    return __generator(this, function (_a) {
    switch (_a.label) {
    case 0: return [4 /*yield*/, collectionReference
    .where("name", "==", "".concat(chat_id))
    .sort("time", "asc")
    .limit(10000)
    .get()];
    case 1:
    records = _a.sent();
    return [2 /*return*/, records];
    }
    });
    });
    }
    var mess_count_var_loop = 0;
    var previous_mess_loop = 0;
    function get_latest_note() {
    return __awaiter(this, void 0, void 0, function () {
    var _this = this;
    return __generator(this, function (_a) {
    // console.log(previous_mess_loop)
    collectionReference
    .where("name", "==", "".concat(global_chat_space_key))
    .sort("time", "asc")
    .limit(10000)
    .onSnapshot(function (newDoc) { return __awaiter(_this, void 0, void 0, function () {
    var elements, lastElement, error_8;
    return __generator(this, function (_a) {
    switch (_a.label) {
    case 0:
    _a.trys.push([0, 2, , 3]);
    return [4 /*yield*/, loop_algorand()];
    case 1:
    _a.sent();
    elements = document.querySelectorAll('.separator');
    lastElement = elements[elements.length - 1];
    lastElement.scrollIntoView();
    return [3 /*break*/, 3];
    case 2:
    error_8 = _a.sent();
    return [3 /*break*/, 3];
    case 3: return [2 /*return*/];
    }
    });
    }); }, function (err) {
    // Optional error handler
    });
    return [2 /*return*/];
    });
    });
    }
    function loop_algorand() {
    return __awaiter(this, void 0, void 0, function () {
    var array_notes, encryption;
    var _this = this;
    return __generator(this, function (_a) {
    array_notes = [];
    encryption = new Encryption(chat_space_private);
    // const chat_id = await get_chat_space_key();
    listRecordsWithFilter(global_chat_space_key).then(function (records) {
    records.data.map(function (x) {
    // console.log(x.data.port)
    var message_algo_main_sanitized = sanitize_base64(x.data.port);
    encryption.decrypt(message_algo_main_sanitized)
    .then(function (decrypted_algo_main) {
    var decrypted_algo_main_decoded = decoder.decode(decrypted_algo_main);
    array_notes.push(decrypted_algo_main_decoded);
    });
    });
    }).then(function () { return __awaiter(_this, void 0, void 0, function () {
    var set_array_notes, set_array_notes_len, latestMessages;
    return __generator(this, function (_a) {
    set_array_notes = array_notes;
    set_array_notes_len = set_array_notes.length;
    if (previous_mess_loop === 0) {
    previous_mess_loop = array_notes.length;
    // console.log(previous_mess_loop)
    processArrayNotes(array_notes);
    }
    ;
    if (set_array_notes_len > previous_mess_loop) {
    mess_count_var_loop = set_array_notes_len - previous_mess_loop;
    latestMessages = set_array_notes.slice(-mess_count_var_loop);
    // console.log(latestMessages)
    processArrayNotes(latestMessages);
    previous_mess_loop = set_array_notes_len;
    }
    ;
    return [2 /*return*/];
    });
    }); });
    return [2 /*return*/];
    });
    });
    }
    ;
    var reader = new FileReader();
    function get_ipfs_data(id, ipfs_data, separator_count_text) {
    return __awaiter(this, void 0, void 0, function () {
    var encryption, decrypted_hex, decrypted_label, decrypted_hex_decoded_1, decrypted_label_decoded_1, decrypted_data_1, error_9;
    return __generator(this, function (_a) {
    switch (_a.label) {
    case 0:
    _a.trys.push([0, 4, , 5]);
    $("#".concat(id)).remove();
    encryption = new Encryption(chat_space_private);
    return [4 /*yield*/, encryption.decrypt(base64_to_vec(ipfs_data.fh))];
    case 1:
    decrypted_hex = _a.sent();
    return [4 /*yield*/, encryption.decrypt(base64_to_vec(ipfs_data.fl))];
    case 2:
    decrypted_label = _a.sent();
    decrypted_hex_decoded_1 = decoder.decode(decrypted_hex);
    decrypted_label_decoded_1 = decoder.decode(decrypted_label);
    return [4 /*yield*/, encryption.decrypt(base64_to_vec(ipfs_data.fd))];
    case 3:
    decrypted_data_1 = _a.sent();
    reader.readAsDataURL(new Blob([decrypted_data_1]));
    reader.onloadend = function () {
    try {
    var formatMIMETypes = {
    "audio/mpeg": "audio/mpeg",
    "audio/mp3": "audio/mp3",
    "audio/x-m4a": "audio/x-m4a",
    "audio/wav": "audio/wav",
    "audio/flac": "audio/flac",
    "audio/webm;codecs=opus": "audio/webm;codecs=opus",
    "video/mp4": "video/mp4",
    "video/quicktime": "video/quicktime",
    "image/png": "image/png",
    "image/jpeg": "image/jpeg",
    "text/plain": "text/plain",
    "application/pdf": "application/pdf",
    };
    var format = decrypted_label_decoded_1;
    var mimeType = formatMIMETypes[format];
    if (mimeType.startsWith("audio/")) {
    var audioBlob = new Blob([decrypted_data_1], { type: mimeType });
    var audioUrl = URL.createObjectURL(audioBlob);
    $.when($("#".concat(id, "_anchor")).append($('<audio>', { src: audioUrl, class: "rendered_audio", style: "--plyr-audio-controls-background: #eee;" }))).done(function () {
    $("#separator_counter_".concat(id)).text(separator_count_text);
    Plyr.setup(".rendered_audio", {
    controls: ['play', 'progress', 'current-time', 'mute', 'settings'],
    autoplay: false,
    displayDuration: true
    });
    });
    }
    else if (mimeType.startsWith("video/")) {
    var videoBlob = new Blob([decrypted_data_1], { type: mimeType });
    var videoUrl = URL.createObjectURL(videoBlob);
    // const set_video_id = `${id}_video`;
    $.when($("#".concat(id, "_anchor")).append($('<video>', { src: videoUrl, class: "rendered_vid" }))).done(function () {
    $("#separator_counter_".concat(id)).text(separator_count_text);
    Plyr.setup('.rendered_vid', {
    controls: ['play', 'progress', 'current-time', 'mute', 'settings', 'fullscreen'],
    autoplay: false,
    });
    });
    }
    else if (mimeType.startsWith("image/")) {
    $.when($("#".concat(id, "_anchor")).append($('<img>', { src: reader.result, class: "rendered_img" }))).done(function () {
    $("#separator_counter_".concat(id)).text(separator_count_text);
    });
    }
    else if (mimeType.startsWith("text/")) {
    var decrypted_text_decoded = decoder.decode(decrypted_data_1);
    // Replace the ID with <br>
    var replaced_text = decrypted_text_decoded.replace(/!@##@!/g, "<br>");
    // Find URLs using regular expression and replace them with anchor tags
    var urlRegex = /((https?:\/\/)|(www\.))[^<\s]+/g;
    var linked_text = replaced_text.replace(urlRegex, function (url) {
    var urlWithProtocol = url.startsWith('http') ? url : 'http://' + url;
    return "<a href=\"".concat(urlWithProtocol, "\" target=\"_blank\">").concat(url, "</a>");
    });
    // Create a new jQuery object with the replaced text as its HTML content
    var text = $('<div>').html(linked_text);
    text.css('color', decrypted_hex_decoded_1);
    // $(`#${id}_anchor`).append(text);
    $.when($("#".concat(id, "_anchor")).append(text)).done(function () {
    $("#separator_counter_".concat(id)).text(separator_count_text);
    });
    }
    else if (mimeType.startsWith("application/")) {
    var pdfBlob = new Blob([decrypted_data_1], { type: 'application/pdf' });
    var pdfUrl = URL.createObjectURL(pdfBlob);
    $.when($("#".concat(id, "_anchor")).append("<a href=\"".concat(pdfUrl, "\" target=\"_blank\"><span class=\"chat_space fa-solid fa-file-pdf\"></span></a>"))).done(function () {
    $("#separator_counter_".concat(id)).text(separator_count_text);
    });
    }
    ;
    }
    catch (error) {
    // console.log(error)
    }
    };
    return [3 /*break*/, 5];
    case 4:
    error_9 = _a.sent();
    return [3 /*break*/, 5];
    case 5: return [2 /*return*/];
    }
    });
    });
    }
    $('#latest_mess').on('click', function () {
    return __awaiter(this, void 0, void 0, function () {
    var elements, lastElement;
    return __generator(this, function (_a) {
    try {
    elements = document.querySelectorAll('.separator');
    lastElement = elements[elements.length - 1];
    lastElement.scrollIntoView();
    }
    catch (error) {
    // console.log(error)
    }
    return [2 /*return*/];
    });
    });
    });
    $("#blur_mess").on('click', function () {
    if ($("#glass").length) {
    $("#glass").remove();
    }
    else {
    $("#wrapper_glass").append("\n \n <div id=\"glass\"></div>\n\n ");
    }
    });
    $('#refresh').on('click', function () {
    $("#refresh").addClass("animated");
    // Open the new window after the transition or animation has completed
    setTimeout(function () {
    window.location.reload();
    }, 500);
    });
    function handleUpload() {
    return __awaiter(this, void 0, void 0, function () {
    var file, allowedTypes, error_10;
    return __generator(this, function (_a) {
    switch (_a.label) {
    case 0:
    file = input.files[0];
    allowedTypes = [
    "audio/mpeg",
    "audio/x-m4a",
    "audio/wav",
    "audio/flac",
    "audio/webm;codecs=opus",
    "audio/mp3",
    "video/mp4",
    "video/quicktime",
    "image/png",
    "image/jpeg",
    "text/plain",
    "application/pdf",
    ];
    _a.label = 1;
    case 1:
    _a.trys.push([1, 6, , 7]);
    if (!(file.size > 60 * 1024 * 1024)) return [3 /*break*/, 2];
    return [3 /*break*/, 5];
    case 2:
    if (!!allowedTypes.includes(file.type)) return [3 /*break*/, 3];
    return [3 /*break*/, 5];
    case 3:
    $("#anchor_file_names").append("\n <div class=\"file_name\">\n ".concat(file.name, "\n <div class=\"line-break0\"></div>\n </div>\n "));
    return [4 /*yield*/, encryptUploadedFile("", file, file.type)];
    case 4:
    _a.sent();
    _a.label = 5;
    case 5:
    ;
    return [3 /*break*/, 7];
    case 6:
    error_10 = _a.sent();
    return [3 /*break*/, 7];
    case 7:
    ;
    return [2 /*return*/];
    }
    });
    });
    }
    ;
  • file addition: package.json (----------)
    [0.1]
    {
    "name": "farfalla_social",
    "version": "1.0.0",
    "type": "module",
    "devDependencies": {
    "typescript": "^5.1.6",
    "vite": "^4.4.9",
    "vite-plugin-wasm-pack": "^0.1.12"
    },
    "dependencies": {
    "@jaames/iro": "^5.5.2",
    "@maticnetwork/maticjs": "^3.6.6",
    "@maticnetwork/maticjs-ethers": "^1.0.3",
    "@mux/mux-player": "^2.0.1",
    "@polybase/client": "^0.6.5",
    "@types/jquery": "^3.5.16",
    "@types/node": "^20.5.1",
    "@wagmi/core": "^1.4.3",
    "@web3modal/wagmi": "^3.0.2",
    "algosdk": "^2.6.0",
    "axios": "^1.4.0",
    "ethereum-cryptography": "2.0",
    "ethers": "^6.7.1",
    "jquery": "^3.7.0",
    "npm-check-updates": "^16.12.2",
    "openpgp": "^5.9.0",
    "plyr": "^3.7.8",
    "unique-names-generator": "^4.7.1",
    "viem": "^1.16.0",
    "yiyi-audio-recorder": "^1.0.8"
    },
    "scripts": {
    "wasm": "wasm-pack build ./my-crate --target web",
    "dev": "vite",
    "build": "tsc && vite build"
    }
    }
  • file addition: package-lock.json (----------)
    [0.1]
    {
    "name": "farfalla_social",
    "version": "1.0.0",
    "lockfileVersion": 2,
    "requires": true,
    "packages": {
    "": {
    "name": "farfalla_social",
    "version": "1.0.0",
    "dependencies": {
    "@jaames/iro": "^5.5.2",
    "@maticnetwork/maticjs": "^3.6.6",
    "@maticnetwork/maticjs-ethers": "^1.0.3",
    "@mux/mux-player": "^2.0.1",
    "@polybase/client": "^0.6.5",
    "@types/jquery": "^3.5.16",
    "@types/node": "^20.5.1",
    "@wagmi/core": "^1.4.3",
    "@web3modal/wagmi": "^3.0.2",
    "algosdk": "^2.6.0",
    "axios": "^1.4.0",
    "ethereum-cryptography": "2.0",
    "ethers": "^6.7.1",
    "jquery": "^3.7.0",
    "npm-check-updates": "^16.12.2",
    "openpgp": "^5.9.0",
    "plyr": "^3.7.8",
    "unique-names-generator": "^4.7.1",
    "viem": "^1.16.0",
    "yiyi-audio-recorder": "^1.0.8"
    },
    "devDependencies": {
    "typescript": "^5.1.6",
    "vite": "^4.4.9",
    "vite-plugin-wasm-pack": "^0.1.12"
    }
    },
    "../pkg": {
    "extraneous": true
    },
    "node_modules/@adraffy/ens-normalize": {
    "version": "1.9.2",
    "resolved": "https://registry.npmjs.org/@adraffy/ens-normalize/-/ens-normalize-1.9.2.tgz",
    "integrity": "sha512-0h+FrQDqe2Wn+IIGFkTCd4aAwTJ+7834Ek1COohCyV26AXhwQ7WQaz+4F/nLOeVl/3BtWHOHLPsq46V8YB46Eg=="
    },
    "node_modules/@babel/parser": {
    "version": "7.23.0",
    "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.0.tgz",
    "integrity": "sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==",
    "optional": true,
    "bin": {
    "parser": "bin/babel-parser.js"
    },
    "engines": {
    "node": ">=6.0.0"
    }
    },
    "node_modules/@babel/runtime": {
    "version": "7.23.1",
    "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.1.tgz",
    "integrity": "sha512-hC2v6p8ZSI/W0HUzh3V8C5g+NwSKzKPtJwSpTjwl0o297GP9+ZLQSkdvHz46CM3LqyoXxq+5G9komY+eSqSO0g==",
    "dependencies": {
    "regenerator-runtime": "^0.14.0"
    },
    "engines": {
    "node": ">=6.9.0"
    }
    },
    "node_modules/@coinbase/wallet-sdk": {
    "version": "3.7.2",
    "resolved": "https://registry.npmjs.org/@coinbase/wallet-sdk/-/wallet-sdk-3.7.2.tgz",
    "integrity": "sha512-lIGvXMsgpsQWci/XOMQIJ2nIZ8JUy/L+bvC0wkRaYarr0YylwpXrJ2gRM3hCXPS477pkyO7N/kSiAoRgEXUdJQ==",
    "dependencies": {
    "@metamask/safe-event-emitter": "2.0.0",
    "@solana/web3.js": "^1.70.1",
    "bind-decorator": "^1.0.11",
    "bn.js": "^5.1.1",
    "buffer": "^6.0.3",
    "clsx": "^1.1.0",
    "eth-block-tracker": "6.1.0",
    "eth-json-rpc-filters": "5.1.0",
    "eth-rpc-errors": "4.0.2",
    "json-rpc-engine": "6.1.0",
    "keccak": "^3.0.1",
    "preact": "^10.5.9",
    "qs": "^6.10.3",
    "rxjs": "^6.6.3",
    "sha.js": "^2.4.11",
    "stream-browserify": "^3.0.0",
    "util": "^0.12.4"
    },
    "engines": {
    "node": ">= 10.0.0"
    }
    },
    "node_modules/@coinbase/wallet-sdk/node_modules/bn.js": {
    "version": "5.2.1",
    "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz",
    "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ=="
    },
    "node_modules/@colors/colors": {
    "version": "1.5.0",
    "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz",
    "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==",
    "optional": true,
    "engines": {
    "node": ">=0.1.90"
    }
    },
    "node_modules/@esbuild/android-arm": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.15.tgz",
    "integrity": "sha512-wlkQBWb79/jeEEoRmrxt/yhn5T1lU236OCNpnfRzaCJHZ/5gf82uYx1qmADTBWE0AR/v7FiozE1auk2riyQd3w==",
    "cpu": [
    "arm"
    ],
    "dev": true,
    "optional": true,
    "os": [
    "android"
    ],
    "engines": {
    "node": ">=12"
    }
    },
    "node_modules/@esbuild/android-arm64": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.15.tgz",
    "integrity": "sha512-NI/gnWcMl2kXt1HJKOn2H69SYn4YNheKo6NZt1hyfKWdMbaGadxjZIkcj4Gjk/WPxnbFXs9/3HjGHaknCqjrww==",
    "cpu": [
    "arm64"
    ],
    "dev": true,
    "optional": true,
    "os": [
    "android"
    ],
    "engines": {
    "node": ">=12"
    }
    },
    "node_modules/@esbuild/android-x64": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.15.tgz",
    "integrity": "sha512-FM9NQamSaEm/IZIhegF76aiLnng1kEsZl2eve/emxDeReVfRuRNmvT28l6hoFD9TsCxpK+i4v8LPpEj74T7yjA==",
    "cpu": [
    "x64"
    ],
    "dev": true,
    "optional": true,
    "os": [
    "android"
    ],
    "engines": {
    "node": ">=12"
    }
    },
    "node_modules/@esbuild/darwin-arm64": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.15.tgz",
    "integrity": "sha512-XmrFwEOYauKte9QjS6hz60FpOCnw4zaPAb7XV7O4lx1r39XjJhTN7ZpXqJh4sN6q60zbP6QwAVVA8N/wUyBH/w==",
    "cpu": [
    "arm64"
    ],
    "dev": true,
    "optional": true,
    "os": [
    "darwin"
    ],
    "engines": {
    "node": ">=12"
    }
    },
    "node_modules/@esbuild/darwin-x64": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.15.tgz",
    "integrity": "sha512-bMqBmpw1e//7Fh5GLetSZaeo9zSC4/CMtrVFdj+bqKPGJuKyfNJ5Nf2m3LknKZTS+Q4oyPiON+v3eaJ59sLB5A==",
    "cpu": [
    "x64"
    ],
    "dev": true,
    "optional": true,
    "os": [
    "darwin"
    ],
    "engines": {
    "node": ">=12"
    }
    },
    "node_modules/@esbuild/freebsd-arm64": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.15.tgz",
    "integrity": "sha512-LoTK5N3bOmNI9zVLCeTgnk5Rk0WdUTrr9dyDAQGVMrNTh9EAPuNwSTCgaKOKiDpverOa0htPcO9NwslSE5xuLA==",
    "cpu": [
    "arm64"
    ],
    "dev": true,
    "optional": true,
    "os": [
    "freebsd"
    ],
    "engines": {
    "node": ">=12"
    }
    },
    "node_modules/@esbuild/freebsd-x64": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.15.tgz",
    "integrity": "sha512-62jX5n30VzgrjAjOk5orYeHFq6sqjvsIj1QesXvn5OZtdt5Gdj0vUNJy9NIpjfdNdqr76jjtzBJKf+h2uzYuTQ==",
    "cpu": [
    "x64"
    ],
    "dev": true,
    "optional": true,
    "os": [
    "freebsd"
    ],
    "engines": {
    "node": ">=12"
    }
    },
    "node_modules/@esbuild/linux-arm": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.15.tgz",
    "integrity": "sha512-dT4URUv6ir45ZkBqhwZwyFV6cH61k8MttIwhThp2BGiVtagYvCToF+Bggyx2VI57RG4Fbt21f9TmXaYx0DeUJg==",
    "cpu": [
    "arm"
    ],
    "dev": true,
    "optional": true,
    "os": [
    "linux"
    ],
    "engines": {
    "node": ">=12"
    }
    },
    "node_modules/@esbuild/linux-arm64": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.15.tgz",
    "integrity": "sha512-BWncQeuWDgYv0jTNzJjaNgleduV4tMbQjmk/zpPh/lUdMcNEAxy+jvneDJ6RJkrqloG7tB9S9rCrtfk/kuplsQ==",
    "cpu": [
    "arm64"
    ],
    "dev": true,
    "optional": true,
    "os": [
    "linux"
    ],
    "engines": {
    "node": ">=12"
    }
    },
    "node_modules/@esbuild/linux-ia32": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.15.tgz",
    "integrity": "sha512-JPXORvgHRHITqfms1dWT/GbEY89u848dC08o0yK3fNskhp0t2TuNUnsrrSgOdH28ceb1hJuwyr8R/1RnyPwocw==",
    "cpu": [
    "ia32"
    ],
    "dev": true,
    "optional": true,
    "os": [
    "linux"
    ],
    "engines": {
    "node": ">=12"
    }
    },
    "node_modules/@esbuild/linux-loong64": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.15.tgz",
    "integrity": "sha512-kArPI0DopjJCEplsVj/H+2Qgzz7vdFSacHNsgoAKpPS6W/Ndh8Oe24HRDQ5QCu4jHgN6XOtfFfLpRx3TXv/mEg==",
    "cpu": [
    "loong64"
    ],
    "dev": true,
    "optional": true,
    "os": [
    "linux"
    ],
    "engines": {
    "node": ">=12"
    }
    },
    "node_modules/@esbuild/linux-mips64el": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.15.tgz",
    "integrity": "sha512-b/tmngUfO02E00c1XnNTw/0DmloKjb6XQeqxaYuzGwHe0fHVgx5/D6CWi+XH1DvkszjBUkK9BX7n1ARTOst59w==",
    "cpu": [
    "mips64el"
    ],
    "dev": true,
    "optional": true,
    "os": [
    "linux"
    ],
    "engines": {
    "node": ">=12"
    }
    },
    "node_modules/@esbuild/linux-ppc64": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.15.tgz",
    "integrity": "sha512-KXPY69MWw79QJkyvUYb2ex/OgnN/8N/Aw5UDPlgoRtoEfcBqfeLodPr42UojV3NdkoO4u10NXQdamWm1YEzSKw==",
    "cpu": [
    "ppc64"
    ],
    "dev": true,
    "optional": true,
    "os": [
    "linux"
    ],
    "engines": {
    "node": ">=12"
    }
    },
    "node_modules/@esbuild/linux-riscv64": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.15.tgz",
    "integrity": "sha512-komK3NEAeeGRnvFEjX1SfVg6EmkfIi5aKzevdvJqMydYr9N+pRQK0PGJXk+bhoPZwOUgLO4l99FZmLGk/L1jWg==",
    "cpu": [
    "riscv64"
    ],
    "dev": true,
    "optional": true,
    "os": [
    "linux"
    ],
    "engines": {
    "node": ">=12"
    }
    },
    "node_modules/@esbuild/linux-s390x": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.15.tgz",
    "integrity": "sha512-632T5Ts6gQ2WiMLWRRyeflPAm44u2E/s/TJvn+BP6M5mnHSk93cieaypj3VSMYO2ePTCRqAFXtuYi1yv8uZJNA==",
    "cpu": [
    "s390x"
    ],
    "dev": true,
    "optional": true,
    "os": [
    "linux"
    ],
    "engines": {
    "node": ">=12"
    }
    },
    "node_modules/@esbuild/linux-x64": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.15.tgz",
    "integrity": "sha512-MsHtX0NgvRHsoOtYkuxyk4Vkmvk3PLRWfA4okK7c+6dT0Fu4SUqXAr9y4Q3d8vUf1VWWb6YutpL4XNe400iQ1g==",
    "cpu": [
    "x64"
    ],
    "dev": true,
    "optional": true,
    "os": [
    "linux"
    ],
    "engines": {
    "node": ">=12"
    }
    },
    "node_modules/@esbuild/netbsd-x64": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.15.tgz",
    "integrity": "sha512-djST6s+jQiwxMIVQ5rlt24JFIAr4uwUnzceuFL7BQT4CbrRtqBPueS4GjXSiIpmwVri1Icj/9pFRJ7/aScvT+A==",
    "cpu": [
    "x64"
    ],
    "dev": true,
    "optional": true,
    "os": [
    "netbsd"
    ],
    "engines": {
    "node": ">=12"
    }
    },
    "node_modules/@esbuild/openbsd-x64": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.15.tgz",
    "integrity": "sha512-naeRhUIvhsgeounjkF5mvrNAVMGAm6EJWiabskeE5yOeBbLp7T89tAEw0j5Jm/CZAwyLe3c67zyCWH6fsBLCpw==",
    "cpu": [
    "x64"
    ],
    "dev": true,
    "optional": true,
    "os": [
    "openbsd"
    ],
    "engines": {
    "node": ">=12"
    }
    },
    "node_modules/@esbuild/sunos-x64": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.15.tgz",
    "integrity": "sha512-qkT2+WxyKbNIKV1AEhI8QiSIgTHMcRctzSaa/I3kVgMS5dl3fOeoqkb7pW76KwxHoriImhx7Mg3TwN/auMDsyQ==",
    "cpu": [
    "x64"
    ],
    "dev": true,
    "optional": true,
    "os": [
    "sunos"
    ],
    "engines": {
    "node": ">=12"
    }
    },
    "node_modules/@esbuild/win32-arm64": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.15.tgz",
    "integrity": "sha512-HC4/feP+pB2Vb+cMPUjAnFyERs+HJN7E6KaeBlFdBv799MhD+aPJlfi/yk36SED58J9TPwI8MAcVpJgej4ud0A==",
    "cpu": [
    "arm64"
    ],
    "dev": true,
    "optional": true,
    "os": [
    "win32"
    ],
    "engines": {
    "node": ">=12"
    }
    },
    "node_modules/@esbuild/win32-ia32": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.15.tgz",
    "integrity": "sha512-ovjwoRXI+gf52EVF60u9sSDj7myPixPxqzD5CmkEUmvs+W9Xd0iqISVBQn8xcx4ciIaIVlWCuTbYDOXOnOL44Q==",
    "cpu": [
    "ia32"
    ],
    "dev": true,
    "optional": true,
    "os": [
    "win32"
    ],
    "engines": {
    "node": ">=12"
    }
    },
    "node_modules/@esbuild/win32-x64": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.15.tgz",
    "integrity": "sha512-imUxH9a3WJARyAvrG7srLyiK73XdX83NXQkjKvQ+7vPh3ZxoLrzvPkQKKw2DwZ+RV2ZB6vBfNHP8XScAmQC3aA==",
    "cpu": [
    "x64"
    ],
    "dev": true,
    "optional": true,
    "os": [
    "win32"
    ],
    "engines": {
    "node": ">=12"
    }
    },
    "node_modules/@ethereumjs/block": {
    "version": "3.6.3",
    "resolved": "https://registry.npmjs.org/@ethereumjs/block/-/block-3.6.3.tgz",
    "integrity": "sha512-CegDeryc2DVKnDkg5COQrE0bJfw/p0v3GBk2W5/Dj5dOVfEmb50Ux0GLnSPypooLnfqjwFaorGuT9FokWB3GRg==",
    "dependencies": {
    "@ethereumjs/common": "^2.6.5",
    "@ethereumjs/tx": "^3.5.2",
    "ethereumjs-util": "^7.1.5",
    "merkle-patricia-tree": "^4.2.4"
    }
    },
    "node_modules/@ethereumjs/common": {
    "version": "2.6.5",
    "resolved": "https://registry.npmjs.org/@ethereumjs/common/-/common-2.6.5.tgz",
    "integrity": "sha512-lRyVQOeCDaIVtgfbowla32pzeDv2Obr8oR8Put5RdUBNRGr1VGPGQNGP6elWIpgK3YdpzqTOh4GyUGOureVeeA==",
    "dependencies": {
    "crc-32": "^1.2.0",
    "ethereumjs-util": "^7.1.5"
    }
    },
    "node_modules/@ethereumjs/tx": {
    "version": "3.5.2",
    "resolved": "https://registry.npmjs.org/@ethereumjs/tx/-/tx-3.5.2.tgz",
    "integrity": "sha512-gQDNJWKrSDGu2w7w0PzVXVBNMzb7wwdDOmOqczmhNjqFxFuIbhVJDwiGEnxFNC2/b8ifcZzY7MLcluizohRzNw==",
    "dependencies": {
    "@ethereumjs/common": "^2.6.4",
    "ethereumjs-util": "^7.1.5"
    }
    },
    "node_modules/@ethersproject/abi": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/abi/-/abi-5.7.0.tgz",
    "integrity": "sha512-351ktp42TiRcYB3H1OP8yajPeAQstMW/yCFokj/AthP9bLHzQFPlOrxOcwYEDkUAICmOHljvN4K39OMTMUa9RA==",
    "funding": [
    {
    "type": "individual",
    "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
    },
    {
    "type": "individual",
    "url": "https://www.buymeacoffee.com/ricmoo"
    }
    ],
    "dependencies": {
    "@ethersproject/address": "^5.7.0",
    "@ethersproject/bignumber": "^5.7.0",
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/constants": "^5.7.0",
    "@ethersproject/hash": "^5.7.0",
    "@ethersproject/keccak256": "^5.7.0",
    "@ethersproject/logger": "^5.7.0",
    "@ethersproject/properties": "^5.7.0",
    "@ethersproject/strings": "^5.7.0"
    }
    },
    "node_modules/@ethersproject/abstract-provider": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/abstract-provider/-/abstract-provider-5.7.0.tgz",
    "integrity": "sha512-R41c9UkchKCpAqStMYUpdunjo3pkEvZC3FAwZn5S5MGbXoMQOHIdHItezTETxAO5bevtMApSyEhn9+CHcDsWBw==",
    "funding": [
    {
    "type": "individual",
    "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
    },
    {
    "type": "individual",
    "url": "https://www.buymeacoffee.com/ricmoo"
    }
    ],
    "dependencies": {
    "@ethersproject/bignumber": "^5.7.0",
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/logger": "^5.7.0",
    "@ethersproject/networks": "^5.7.0",
    "@ethersproject/properties": "^5.7.0",
    "@ethersproject/transactions": "^5.7.0",
    "@ethersproject/web": "^5.7.0"
    }
    },
    "node_modules/@ethersproject/abstract-signer": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/abstract-signer/-/abstract-signer-5.7.0.tgz",
    "integrity": "sha512-a16V8bq1/Cz+TGCkE2OPMTOUDLS3grCpdjoJCYNnVBbdYEMSgKrU0+B90s8b6H+ByYTBZN7a3g76jdIJi7UfKQ==",
    "funding": [
    {
    "type": "individual",
    "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
    },
    {
    "type": "individual",
    "url": "https://www.buymeacoffee.com/ricmoo"
    }
    ],
    "dependencies": {
    "@ethersproject/abstract-provider": "^5.7.0",
    "@ethersproject/bignumber": "^5.7.0",
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/logger": "^5.7.0",
    "@ethersproject/properties": "^5.7.0"
    }
    },
    "node_modules/@ethersproject/address": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/address/-/address-5.7.0.tgz",
    "integrity": "sha512-9wYhYt7aghVGo758POM5nqcOMaE168Q6aRLJZwUmiqSrAungkG74gSSeKEIR7ukixesdRZGPgVqme6vmxs1fkA==",
    "funding": [
    {
    "type": "individual",
    "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
    },
    {
    "type": "individual",
    "url": "https://www.buymeacoffee.com/ricmoo"
    }
    ],
    "dependencies": {
    "@ethersproject/bignumber": "^5.7.0",
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/keccak256": "^5.7.0",
    "@ethersproject/logger": "^5.7.0",
    "@ethersproject/rlp": "^5.7.0"
    }
    },
    "node_modules/@ethersproject/base64": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/base64/-/base64-5.7.0.tgz",
    "integrity": "sha512-Dr8tcHt2mEbsZr/mwTPIQAf3Ai0Bks/7gTw9dSqk1mQvhW3XvRlmDJr/4n+wg1JmCl16NZue17CDh8xb/vZ0sQ==",
    "funding": [
    {
    "type": "individual",
    "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
    },
    {
    "type": "individual",
    "url": "https://www.buymeacoffee.com/ricmoo"
    }
    ],
    "dependencies": {
    "@ethersproject/bytes": "^5.7.0"
    }
    },
    "node_modules/@ethersproject/basex": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/basex/-/basex-5.7.0.tgz",
    "integrity": "sha512-ywlh43GwZLv2Voc2gQVTKBoVQ1mti3d8HK5aMxsfu/nRDnMmNqaSJ3r3n85HBByT8OpoY96SXM1FogC533T4zw==",
    "funding": [
    {
    "type": "individual",
    "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
    },
    {
    "type": "individual",
    "url": "https://www.buymeacoffee.com/ricmoo"
    }
    ],
    "dependencies": {
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/properties": "^5.7.0"
    }
    },
    "node_modules/@ethersproject/bignumber": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/bignumber/-/bignumber-5.7.0.tgz",
    "integrity": "sha512-n1CAdIHRWjSucQO3MC1zPSVgV/6dy/fjL9pMrPP9peL+QxEg9wOsVqwD4+818B6LUEtaXzVHQiuivzRoxPxUGw==",
    "funding": [
    {
    "type": "individual",
    "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
    },
    {
    "type": "individual",
    "url": "https://www.buymeacoffee.com/ricmoo"
    }
    ],
    "dependencies": {
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/logger": "^5.7.0",
    "bn.js": "^5.2.1"
    }
    },
    "node_modules/@ethersproject/bignumber/node_modules/bn.js": {
    "version": "5.2.1",
    "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz",
    "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ=="
    },
    "node_modules/@ethersproject/bytes": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/bytes/-/bytes-5.7.0.tgz",
    "integrity": "sha512-nsbxwgFXWh9NyYWo+U8atvmMsSdKJprTcICAkvbBffT75qDocbuggBU0SJiVK2MuTrp0q+xvLkTnGMPK1+uA9A==",
    "funding": [
    {
    "type": "individual",
    "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
    },
    {
    "type": "individual",
    "url": "https://www.buymeacoffee.com/ricmoo"
    }
    ],
    "dependencies": {
    "@ethersproject/logger": "^5.7.0"
    }
    },
    "node_modules/@ethersproject/constants": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/constants/-/constants-5.7.0.tgz",
    "integrity": "sha512-DHI+y5dBNvkpYUMiRQyxRBYBefZkJfo70VUkUAsRjcPs47muV9evftfZ0PJVCXYbAiCgght0DtcF9srFQmIgWA==",
    "funding": [
    {
    "type": "individual",
    "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
    },
    {
    "type": "individual",
    "url": "https://www.buymeacoffee.com/ricmoo"
    }
    ],
    "dependencies": {
    "@ethersproject/bignumber": "^5.7.0"
    }
    },
    "node_modules/@ethersproject/contracts": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/contracts/-/contracts-5.7.0.tgz",
    "integrity": "sha512-5GJbzEU3X+d33CdfPhcyS+z8MzsTrBGk/sc+G+59+tPa9yFkl6HQ9D6L0QMgNTA9q8dT0XKxxkyp883XsQvbbg==",
    "funding": [
    {
    "type": "individual",
    "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
    },
    {
    "type": "individual",
    "url": "https://www.buymeacoffee.com/ricmoo"
    }
    ],
    "dependencies": {
    "@ethersproject/abi": "^5.7.0",
    "@ethersproject/abstract-provider": "^5.7.0",
    "@ethersproject/abstract-signer": "^5.7.0",
    "@ethersproject/address": "^5.7.0",
    "@ethersproject/bignumber": "^5.7.0",
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/constants": "^5.7.0",
    "@ethersproject/logger": "^5.7.0",
    "@ethersproject/properties": "^5.7.0",
    "@ethersproject/transactions": "^5.7.0"
    }
    },
    "node_modules/@ethersproject/hash": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/hash/-/hash-5.7.0.tgz",
    "integrity": "sha512-qX5WrQfnah1EFnO5zJv1v46a8HW0+E5xuBBDTwMFZLuVTx0tbU2kkx15NqdjxecrLGatQN9FGQKpb1FKdHCt+g==",
    "funding": [
    {
    "type": "individual",
    "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
    },
    {
    "type": "individual",
    "url": "https://www.buymeacoffee.com/ricmoo"
    }
    ],
    "dependencies": {
    "@ethersproject/abstract-signer": "^5.7.0",
    "@ethersproject/address": "^5.7.0",
    "@ethersproject/base64": "^5.7.0",
    "@ethersproject/bignumber": "^5.7.0",
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/keccak256": "^5.7.0",
    "@ethersproject/logger": "^5.7.0",
    "@ethersproject/properties": "^5.7.0",
    "@ethersproject/strings": "^5.7.0"
    }
    },
    "node_modules/@ethersproject/hdnode": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/hdnode/-/hdnode-5.7.0.tgz",
    "integrity": "sha512-OmyYo9EENBPPf4ERhR7oj6uAtUAhYGqOnIS+jE5pTXvdKBS99ikzq1E7Iv0ZQZ5V36Lqx1qZLeak0Ra16qpeOg==",
    "funding": [
    {
    "type": "individual",
    "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
    },
    {
    "type": "individual",
    "url": "https://www.buymeacoffee.com/ricmoo"
    }
    ],
    "dependencies": {
    "@ethersproject/abstract-signer": "^5.7.0",
    "@ethersproject/basex": "^5.7.0",
    "@ethersproject/bignumber": "^5.7.0",
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/logger": "^5.7.0",
    "@ethersproject/pbkdf2": "^5.7.0",
    "@ethersproject/properties": "^5.7.0",
    "@ethersproject/sha2": "^5.7.0",
    "@ethersproject/signing-key": "^5.7.0",
    "@ethersproject/strings": "^5.7.0",
    "@ethersproject/transactions": "^5.7.0",
    "@ethersproject/wordlists": "^5.7.0"
    }
    },
    "node_modules/@ethersproject/json-wallets": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/json-wallets/-/json-wallets-5.7.0.tgz",
    "integrity": "sha512-8oee5Xgu6+RKgJTkvEMl2wDgSPSAQ9MB/3JYjFV9jlKvcYHUXZC+cQp0njgmxdHkYWn8s6/IqIZYm0YWCjO/0g==",
    "funding": [
    {
    "type": "individual",
    "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
    },
    {
    "type": "individual",
    "url": "https://www.buymeacoffee.com/ricmoo"
    }
    ],
    "dependencies": {
    "@ethersproject/abstract-signer": "^5.7.0",
    "@ethersproject/address": "^5.7.0",
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/hdnode": "^5.7.0",
    "@ethersproject/keccak256": "^5.7.0",
    "@ethersproject/logger": "^5.7.0",
    "@ethersproject/pbkdf2": "^5.7.0",
    "@ethersproject/properties": "^5.7.0",
    "@ethersproject/random": "^5.7.0",
    "@ethersproject/strings": "^5.7.0",
    "@ethersproject/transactions": "^5.7.0",
    "aes-js": "3.0.0",
    "scrypt-js": "3.0.1"
    }
    },
    "node_modules/@ethersproject/json-wallets/node_modules/aes-js": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/aes-js/-/aes-js-3.0.0.tgz",
    "integrity": "sha512-H7wUZRn8WpTq9jocdxQ2c8x2sKo9ZVmzfRE13GiNJXfp7NcKYEdvl3vspKjXox6RIG2VtaRe4JFvxG4rqp2Zuw=="
    },
    "node_modules/@ethersproject/keccak256": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/keccak256/-/keccak256-5.7.0.tgz",
    "integrity": "sha512-2UcPboeL/iW+pSg6vZ6ydF8tCnv3Iu/8tUmLLzWWGzxWKFFqOBQFLo6uLUv6BDrLgCDfN28RJ/wtByx+jZ4KBg==",
    "funding": [
    {
    "type": "individual",
    "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
    },
    {
    "type": "individual",
    "url": "https://www.buymeacoffee.com/ricmoo"
    }
    ],
    "dependencies": {
    "@ethersproject/bytes": "^5.7.0",
    "js-sha3": "0.8.0"
    }
    },
    "node_modules/@ethersproject/logger": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/logger/-/logger-5.7.0.tgz",
    "integrity": "sha512-0odtFdXu/XHtjQXJYA3u9G0G8btm0ND5Cu8M7i5vhEcE8/HmF4Lbdqanwyv4uQTr2tx6b7fQRmgLrsnpQlmnig==",
    "funding": [
    {
    "type": "individual",
    "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
    },
    {
    "type": "individual",
    "url": "https://www.buymeacoffee.com/ricmoo"
    }
    ]
    },
    "node_modules/@ethersproject/networks": {
    "version": "5.7.1",
    "resolved": "https://registry.npmjs.org/@ethersproject/networks/-/networks-5.7.1.tgz",
    "integrity": "sha512-n/MufjFYv3yFcUyfhnXotyDlNdFb7onmkSy8aQERi2PjNcnWQ66xXxa3XlS8nCcA8aJKJjIIMNJTC7tu80GwpQ==",
    "funding": [
    {
    "type": "individual",
    "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
    },
    {
    "type": "individual",
    "url": "https://www.buymeacoffee.com/ricmoo"
    }
    ],
    "dependencies": {
    "@ethersproject/logger": "^5.7.0"
    }
    },
    "node_modules/@ethersproject/pbkdf2": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/pbkdf2/-/pbkdf2-5.7.0.tgz",
    "integrity": "sha512-oR/dBRZR6GTyaofd86DehG72hY6NpAjhabkhxgr3X2FpJtJuodEl2auADWBZfhDHgVCbu3/H/Ocq2uC6dpNjjw==",
    "funding": [
    {
    "type": "individual",
    "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
    },
    {
    "type": "individual",
    "url": "https://www.buymeacoffee.com/ricmoo"
    }
    ],
    "dependencies": {
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/sha2": "^5.7.0"
    }
    },
    "node_modules/@ethersproject/properties": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/properties/-/properties-5.7.0.tgz",
    "integrity": "sha512-J87jy8suntrAkIZtecpxEPxY//szqr1mlBaYlQ0r4RCaiD2hjheqF9s1LVE8vVuJCXisjIP+JgtK/Do54ej4Sw==",
    "funding": [
    {
    "type": "individual",
    "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
    },
    {
    "type": "individual",
    "url": "https://www.buymeacoffee.com/ricmoo"
    }
    ],
    "dependencies": {
    "@ethersproject/logger": "^5.7.0"
    }
    },
    "node_modules/@ethersproject/providers": {
    "version": "5.7.2",
    "resolved": "https://registry.npmjs.org/@ethersproject/providers/-/providers-5.7.2.tgz",
    "integrity": "sha512-g34EWZ1WWAVgr4aptGlVBF8mhl3VWjv+8hoAnzStu8Ah22VHBsuGzP17eb6xDVRzw895G4W7vvx60lFFur/1Rg==",
    "funding": [
    {
    "type": "individual",
    "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
    },
    {
    "type": "individual",
    "url": "https://www.buymeacoffee.com/ricmoo"
    }
    ],
    "dependencies": {
    "@ethersproject/abstract-provider": "^5.7.0",
    "@ethersproject/abstract-signer": "^5.7.0",
    "@ethersproject/address": "^5.7.0",
    "@ethersproject/base64": "^5.7.0",
    "@ethersproject/basex": "^5.7.0",
    "@ethersproject/bignumber": "^5.7.0",
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/constants": "^5.7.0",
    "@ethersproject/hash": "^5.7.0",
    "@ethersproject/logger": "^5.7.0",
    "@ethersproject/networks": "^5.7.0",
    "@ethersproject/properties": "^5.7.0",
    "@ethersproject/random": "^5.7.0",
    "@ethersproject/rlp": "^5.7.0",
    "@ethersproject/sha2": "^5.7.0",
    "@ethersproject/strings": "^5.7.0",
    "@ethersproject/transactions": "^5.7.0",
    "@ethersproject/web": "^5.7.0",
    "bech32": "1.1.4",
    "ws": "7.4.6"
    }
    },
    "node_modules/@ethersproject/providers/node_modules/ws": {
    "version": "7.4.6",
    "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.6.tgz",
    "integrity": "sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==",
    "engines": {
    "node": ">=8.3.0"
    },
    "peerDependencies": {
    "bufferutil": "^4.0.1",
    "utf-8-validate": "^5.0.2"
    },
    "peerDependenciesMeta": {
    "bufferutil": {
    "optional": true
    },
    "utf-8-validate": {
    "optional": true
    }
    }
    },
    "node_modules/@ethersproject/random": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/random/-/random-5.7.0.tgz",
    "integrity": "sha512-19WjScqRA8IIeWclFme75VMXSBvi4e6InrUNuaR4s5pTF2qNhcGdCUwdxUVGtDDqC00sDLCO93jPQoDUH4HVmQ==",
    "funding": [
    {
    "type": "individual",
    "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
    },
    {
    "type": "individual",
    "url": "https://www.buymeacoffee.com/ricmoo"
    }
    ],
    "dependencies": {
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/logger": "^5.7.0"
    }
    },
    "node_modules/@ethersproject/rlp": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/rlp/-/rlp-5.7.0.tgz",
    "integrity": "sha512-rBxzX2vK8mVF7b0Tol44t5Tb8gomOHkj5guL+HhzQ1yBh/ydjGnpw6at+X6Iw0Kp3OzzzkcKp8N9r0W4kYSs9w==",
    "funding": [
    {
    "type": "individual",
    "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
    },
    {
    "type": "individual",
    "url": "https://www.buymeacoffee.com/ricmoo"
    }
    ],
    "dependencies": {
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/logger": "^5.7.0"
    }
    },
    "node_modules/@ethersproject/sha2": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/sha2/-/sha2-5.7.0.tgz",
    "integrity": "sha512-gKlH42riwb3KYp0reLsFTokByAKoJdgFCwI+CCiX/k+Jm2mbNs6oOaCjYQSlI1+XBVejwH2KrmCbMAT/GnRDQw==",
    "funding": [
    {
    "type": "individual",
    "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
    },
    {
    "type": "individual",
    "url": "https://www.buymeacoffee.com/ricmoo"
    }
    ],
    "dependencies": {
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/logger": "^5.7.0",
    "hash.js": "1.1.7"
    }
    },
    "node_modules/@ethersproject/signing-key": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/signing-key/-/signing-key-5.7.0.tgz",
    "integrity": "sha512-MZdy2nL3wO0u7gkB4nA/pEf8lu1TlFswPNmy8AiYkfKTdO6eXBJyUdmHO/ehm/htHw9K/qF8ujnTyUAD+Ry54Q==",
    "funding": [
    {
    "type": "individual",
    "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
    },
    {
    "type": "individual",
    "url": "https://www.buymeacoffee.com/ricmoo"
    }
    ],
    "dependencies": {
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/logger": "^5.7.0",
    "@ethersproject/properties": "^5.7.0",
    "bn.js": "^5.2.1",
    "elliptic": "6.5.4",
    "hash.js": "1.1.7"
    }
    },
    "node_modules/@ethersproject/signing-key/node_modules/bn.js": {
    "version": "5.2.1",
    "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz",
    "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ=="
    },
    "node_modules/@ethersproject/solidity": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/solidity/-/solidity-5.7.0.tgz",
    "integrity": "sha512-HmabMd2Dt/raavyaGukF4XxizWKhKQ24DoLtdNbBmNKUOPqwjsKQSdV9GQtj9CBEea9DlzETlVER1gYeXXBGaA==",
    "funding": [
    {
    "type": "individual",
    "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
    },
    {
    "type": "individual",
    "url": "https://www.buymeacoffee.com/ricmoo"
    }
    ],
    "dependencies": {
    "@ethersproject/bignumber": "^5.7.0",
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/keccak256": "^5.7.0",
    "@ethersproject/logger": "^5.7.0",
    "@ethersproject/sha2": "^5.7.0",
    "@ethersproject/strings": "^5.7.0"
    }
    },
    "node_modules/@ethersproject/strings": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/strings/-/strings-5.7.0.tgz",
    "integrity": "sha512-/9nu+lj0YswRNSH0NXYqrh8775XNyEdUQAuf3f+SmOrnVewcJ5SBNAjF7lpgehKi4abvNNXyf+HX86czCdJ8Mg==",
    "funding": [
    {
    "type": "individual",
    "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
    },
    {
    "type": "individual",
    "url": "https://www.buymeacoffee.com/ricmoo"
    }
    ],
    "dependencies": {
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/constants": "^5.7.0",
    "@ethersproject/logger": "^5.7.0"
    }
    },
    "node_modules/@ethersproject/transactions": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/transactions/-/transactions-5.7.0.tgz",
    "integrity": "sha512-kmcNicCp1lp8qanMTC3RIikGgoJ80ztTyvtsFvCYpSCfkjhD0jZ2LOrnbcuxuToLIUYYf+4XwD1rP+B/erDIhQ==",
    "funding": [
    {
    "type": "individual",
    "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
    },
    {
    "type": "individual",
    "url": "https://www.buymeacoffee.com/ricmoo"
    }
    ],
    "dependencies": {
    "@ethersproject/address": "^5.7.0",
    "@ethersproject/bignumber": "^5.7.0",
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/constants": "^5.7.0",
    "@ethersproject/keccak256": "^5.7.0",
    "@ethersproject/logger": "^5.7.0",
    "@ethersproject/properties": "^5.7.0",
    "@ethersproject/rlp": "^5.7.0",
    "@ethersproject/signing-key": "^5.7.0"
    }
    },
    "node_modules/@ethersproject/units": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/units/-/units-5.7.0.tgz",
    "integrity": "sha512-pD3xLMy3SJu9kG5xDGI7+xhTEmGXlEqXU4OfNapmfnxLVY4EMSSRp7j1k7eezutBPH7RBN/7QPnwR7hzNlEFeg==",
    "funding": [
    {
    "type": "individual",
    "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
    },
    {
    "type": "individual",
    "url": "https://www.buymeacoffee.com/ricmoo"
    }
    ],
    "dependencies": {
    "@ethersproject/bignumber": "^5.7.0",
    "@ethersproject/constants": "^5.7.0",
    "@ethersproject/logger": "^5.7.0"
    }
    },
    "node_modules/@ethersproject/wallet": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/wallet/-/wallet-5.7.0.tgz",
    "integrity": "sha512-MhmXlJXEJFBFVKrDLB4ZdDzxcBxQ3rLyCkhNqVu3CDYvR97E+8r01UgrI+TI99Le+aYm/in/0vp86guJuM7FCA==",
    "funding": [
    {
    "type": "individual",
    "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
    },
    {
    "type": "individual",
    "url": "https://www.buymeacoffee.com/ricmoo"
    }
    ],
    "dependencies": {
    "@ethersproject/abstract-provider": "^5.7.0",
    "@ethersproject/abstract-signer": "^5.7.0",
    "@ethersproject/address": "^5.7.0",
    "@ethersproject/bignumber": "^5.7.0",
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/hash": "^5.7.0",
    "@ethersproject/hdnode": "^5.7.0",
    "@ethersproject/json-wallets": "^5.7.0",
    "@ethersproject/keccak256": "^5.7.0",
    "@ethersproject/logger": "^5.7.0",
    "@ethersproject/properties": "^5.7.0",
    "@ethersproject/random": "^5.7.0",
    "@ethersproject/signing-key": "^5.7.0",
    "@ethersproject/transactions": "^5.7.0",
    "@ethersproject/wordlists": "^5.7.0"
    }
    },
    "node_modules/@ethersproject/web": {
    "version": "5.7.1",
    "resolved": "https://registry.npmjs.org/@ethersproject/web/-/web-5.7.1.tgz",
    "integrity": "sha512-Gueu8lSvyjBWL4cYsWsjh6MtMwM0+H4HvqFPZfB6dV8ctbP9zFAO73VG1cMWae0FLPCtz0peKPpZY8/ugJJX2w==",
    "funding": [
    {
    "type": "individual",
    "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
    },
    {
    "type": "individual",
    "url": "https://www.buymeacoffee.com/ricmoo"
    }
    ],
    "dependencies": {
    "@ethersproject/base64": "^5.7.0",
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/logger": "^5.7.0",
    "@ethersproject/properties": "^5.7.0",
    "@ethersproject/strings": "^5.7.0"
    }
    },
    "node_modules/@ethersproject/wordlists": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/wordlists/-/wordlists-5.7.0.tgz",
    "integrity": "sha512-S2TFNJNfHWVHNE6cNDjbVlZ6MgE17MIxMbMg2zv3wn+3XSJGosL1m9ZVv3GXCf/2ymSsQ+hRI5IzoMJTG6aoVA==",
    "funding": [
    {
    "type": "individual",
    "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
    },
    {
    "type": "individual",
    "url": "https://www.buymeacoffee.com/ricmoo"
    }
    ],
    "dependencies": {
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/hash": "^5.7.0",
    "@ethersproject/logger": "^5.7.0",
    "@ethersproject/properties": "^5.7.0",
    "@ethersproject/strings": "^5.7.0"
    }
    },
    "node_modules/@irojs/iro-core": {
    "version": "1.2.1",
    "resolved": "https://registry.npmjs.org/@irojs/iro-core/-/iro-core-1.2.1.tgz",
    "integrity": "sha512-p2OvsBSSmidsDsTSkID6jEyXDF7lcyxPrkh3qBzasBZFpjkYd6kZ3yMWai3MlAaQ3F7li/Et7rSJVV09Fpei+A=="
    },
    "node_modules/@isaacs/cliui": {
    "version": "8.0.2",
    "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
    "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
    "dependencies": {
    "string-width": "^5.1.2",
    "string-width-cjs": "npm:string-width@^4.2.0",
    "strip-ansi": "^7.0.1",
    "strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
    "wrap-ansi": "^8.1.0",
    "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
    },
    "engines": {
    "node": ">=12"
    }
    },
    "node_modules/@isaacs/cliui/node_modules/emoji-regex": {
    "version": "9.2.2",
    "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
    "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="
    },
    "node_modules/@isaacs/cliui/node_modules/string-width": {
    "version": "5.1.2",
    "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
    "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
    "dependencies": {
    "eastasianwidth": "^0.2.0",
    "emoji-regex": "^9.2.2",
    "strip-ansi": "^7.0.1"
    },
    "engines": {
    "node": ">=12"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/@jaames/iro": {
    "version": "5.5.2",
    "resolved": "https://registry.npmjs.org/@jaames/iro/-/iro-5.5.2.tgz",
    "integrity": "sha512-Fbi5U4Vdkw6UsF+R3oMlPONqkvUDMkwzh+mX718gQsDFt3+1r1jvGsrfCbedmXAAy0WsjDHOrefK0BkDk99TQg==",
    "dependencies": {
    "@irojs/iro-core": "^1.2.1",
    "preact": "^10.0.0"
    }
    },
    "node_modules/@jridgewell/sourcemap-codec": {
    "version": "1.4.15",
    "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz",
    "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==",
    "optional": true
    },
    "node_modules/@ledgerhq/connect-kit-loader": {
    "version": "1.1.2",
    "resolved": "https://registry.npmjs.org/@ledgerhq/connect-kit-loader/-/connect-kit-loader-1.1.2.tgz",
    "integrity": "sha512-mscwGroSJQrCTjtNGBu+18FQbZYA4+q6Tyx6K7CXHl6AwgZKbWfZYdgP2F+fyZcRUdGRsMX8QtvU61VcGGtO1A=="
    },
    "node_modules/@lit-labs/ssr-dom-shim": {
    "version": "1.1.1",
    "resolved": "https://registry.npmjs.org/@lit-labs/ssr-dom-shim/-/ssr-dom-shim-1.1.1.tgz",
    "integrity": "sha512-kXOeFbfCm4fFf2A3WwVEeQj55tMZa8c8/f9AKHMobQMkzNUfUj+antR3fRPaZJawsa1aZiP/Da3ndpZrwEe4rQ=="
    },
    "node_modules/@lit/reactive-element": {
    "version": "1.6.3",
    "resolved": "https://registry.npmjs.org/@lit/reactive-element/-/reactive-element-1.6.3.tgz",
    "integrity": "sha512-QuTgnG52Poic7uM1AN5yJ09QMe0O28e10XzSvWDz02TJiiKee4stsiownEIadWm8nYzyDAyT+gKzUoZmiWQtsQ==",
    "dependencies": {
    "@lit-labs/ssr-dom-shim": "^1.0.0"
    }
    },
    "node_modules/@maticnetwork/maticjs": {
    "version": "3.6.6",
    "resolved": "https://registry.npmjs.org/@maticnetwork/maticjs/-/maticjs-3.6.6.tgz",
    "integrity": "sha512-VhbK9yHdRgQl9GWt1XwasHTDEImd0ApmHFG0yCN8xjPz0YvXgsSPb+p+M5JzQYEgLQGZ3L/K3nnVYHBTiRIhPA==",
    "dependencies": {
    "@ethereumjs/block": "^3.6.2",
    "ethereumjs-util": "^7.1.4",
    "merkle-patricia-tree": "^4.2.4",
    "node-fetch": "^2.6.1"
    },
    "engines": {
    "node": ">=8.0.0"
    }
    },
    "node_modules/@maticnetwork/maticjs-ethers": {
    "version": "1.0.3",
    "resolved": "https://registry.npmjs.org/@maticnetwork/maticjs-ethers/-/maticjs-ethers-1.0.3.tgz",
    "integrity": "sha512-paGulmLG62We/pyOVH3Q7mZd/E/SGFKa+rXtyvpoMB8v5oFn/yTtoKvLWyIoZ8zBi4JrjSegKL+/US5+OibYwQ==",
    "dependencies": {
    "ethers": "^5.5.1"
    },
    "peerDependencies": {
    "@maticnetwork/maticjs": "^3.2.5"
    }
    },
    "node_modules/@maticnetwork/maticjs-ethers/node_modules/ethers": {
    "version": "5.7.2",
    "resolved": "https://registry.npmjs.org/ethers/-/ethers-5.7.2.tgz",
    "integrity": "sha512-wswUsmWo1aOK8rR7DIKiWSw9DbLWe6x98Jrn8wcTflTVvaXhAMaB5zGAXy0GYQEQp9iO1iSHWVyARQm11zUtyg==",
    "funding": [
    {
    "type": "individual",
    "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2"
    },
    {
    "type": "individual",
    "url": "https://www.buymeacoffee.com/ricmoo"
    }
    ],
    "dependencies": {
    "@ethersproject/abi": "5.7.0",
    "@ethersproject/abstract-provider": "5.7.0",
    "@ethersproject/abstract-signer": "5.7.0",
    "@ethersproject/address": "5.7.0",
    "@ethersproject/base64": "5.7.0",
    "@ethersproject/basex": "5.7.0",
    "@ethersproject/bignumber": "5.7.0",
    "@ethersproject/bytes": "5.7.0",
    "@ethersproject/constants": "5.7.0",
    "@ethersproject/contracts": "5.7.0",
    "@ethersproject/hash": "5.7.0",
    "@ethersproject/hdnode": "5.7.0",
    "@ethersproject/json-wallets": "5.7.0",
    "@ethersproject/keccak256": "5.7.0",
    "@ethersproject/logger": "5.7.0",
    "@ethersproject/networks": "5.7.1",
    "@ethersproject/pbkdf2": "5.7.0",
    "@ethersproject/properties": "5.7.0",
    "@ethersproject/providers": "5.7.2",
    "@ethersproject/random": "5.7.0",
    "@ethersproject/rlp": "5.7.0",
    "@ethersproject/sha2": "5.7.0",
    "@ethersproject/signing-key": "5.7.0",
    "@ethersproject/solidity": "5.7.0",
    "@ethersproject/strings": "5.7.0",
    "@ethersproject/transactions": "5.7.0",
    "@ethersproject/units": "5.7.0",
    "@ethersproject/wallet": "5.7.0",
    "@ethersproject/web": "5.7.1",
    "@ethersproject/wordlists": "5.7.0"
    }
    },
    "node_modules/@metamask/safe-event-emitter": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/@metamask/safe-event-emitter/-/safe-event-emitter-2.0.0.tgz",
    "integrity": "sha512-/kSXhY692qiV1MXu6EeOZvg5nECLclxNXcKCxJ3cXQgYuRymRHpdx/t7JXfsK+JLjwA1e1c1/SBrlQYpusC29Q=="
    },
    "node_modules/@metamask/utils": {
    "version": "3.6.0",
    "resolved": "https://registry.npmjs.org/@metamask/utils/-/utils-3.6.0.tgz",
    "integrity": "sha512-9cIRrfkWvHblSiNDVXsjivqa9Ak0RYo/1H6tqTqTbAx+oBK2Sva0lWDHxGchOqA7bySGUJKAWSNJvH6gdHZ0gQ==",
    "dependencies": {
    "@types/debug": "^4.1.7",
    "debug": "^4.3.4",
    "semver": "^7.3.8",
    "superstruct": "^1.0.3"
    },
    "engines": {
    "node": ">=14.0.0"
    }
    },
    "node_modules/@metamask/utils/node_modules/superstruct": {
    "version": "1.0.3",
    "resolved": "https://registry.npmjs.org/superstruct/-/superstruct-1.0.3.tgz",
    "integrity": "sha512-8iTn3oSS8nRGn+C2pgXSKPI3jmpm6FExNazNpjvqS6ZUJQCej3PUXEKM8NjHBOs54ExM+LPW/FBRhymrdcCiSg==",
    "engines": {
    "node": ">=14.0.0"
    }
    },
    "node_modules/@motionone/animation": {
    "version": "10.16.3",
    "resolved": "https://registry.npmjs.org/@motionone/animation/-/animation-10.16.3.tgz",
    "integrity": "sha512-QUGWpLbMFLhyqKlngjZhjtxM8IqiJQjLK0DF+XOF6od9nhSvlaeEpOY/UMCRVcZn/9Tr2rZO22EkuCIjYdI74g==",
    "dependencies": {
    "@motionone/easing": "^10.16.3",
    "@motionone/types": "^10.16.3",
    "@motionone/utils": "^10.16.3",
    "tslib": "^2.3.1"
    }
    },
    "node_modules/@motionone/dom": {
    "version": "10.16.4",
    "resolved": "https://registry.npmjs.org/@motionone/dom/-/dom-10.16.4.tgz",
    "integrity": "sha512-HPHlVo/030qpRj9R8fgY50KTN4Ko30moWRTA3L3imrsRBmob93cTYmodln49HYFbQm01lFF7X523OkKY0DX6UA==",
    "dependencies": {
    "@motionone/animation": "^10.16.3",
    "@motionone/generators": "^10.16.4",
    "@motionone/types": "^10.16.3",
    "@motionone/utils": "^10.16.3",
    "hey-listen": "^1.0.8",
    "tslib": "^2.3.1"
    }
    },
    "node_modules/@motionone/easing": {
    "version": "10.16.3",
    "resolved": "https://registry.npmjs.org/@motionone/easing/-/easing-10.16.3.tgz",
    "integrity": "sha512-HWTMZbTmZojzwEuKT/xCdvoMPXjYSyQvuVM6jmM0yoGU6BWzsmYMeB4bn38UFf618fJCNtP9XeC/zxtKWfbr0w==",
    "dependencies": {
    "@motionone/utils": "^10.16.3",
    "tslib": "^2.3.1"
    }
    },
    "node_modules/@motionone/generators": {
    "version": "10.16.4",
    "resolved": "https://registry.npmjs.org/@motionone/generators/-/generators-10.16.4.tgz",
    "integrity": "sha512-geFZ3w0Rm0ZXXpctWsSf3REGywmLLujEjxPYpBR0j+ymYwof0xbV6S5kGqqsDKgyWKVWpUInqQYvQfL6fRbXeg==",
    "dependencies": {
    "@motionone/types": "^10.16.3",
    "@motionone/utils": "^10.16.3",
    "tslib": "^2.3.1"
    }
    },
    "node_modules/@motionone/svelte": {
    "version": "10.16.4",
    "resolved": "https://registry.npmjs.org/@motionone/svelte/-/svelte-10.16.4.tgz",
    "integrity": "sha512-zRVqk20lD1xqe+yEDZhMYgftsuHc25+9JSo+r0a0OWUJFocjSV9D/+UGhX4xgJsuwB9acPzXLr20w40VnY2PQA==",
    "dependencies": {
    "@motionone/dom": "^10.16.4",
    "tslib": "^2.3.1"
    }
    },
    "node_modules/@motionone/types": {
    "version": "10.16.3",
    "resolved": "https://registry.npmjs.org/@motionone/types/-/types-10.16.3.tgz",
    "integrity": "sha512-W4jkEGFifDq73DlaZs3HUfamV2t1wM35zN/zX7Q79LfZ2sc6C0R1baUHZmqc/K5F3vSw3PavgQ6HyHLd/MXcWg=="
    },
    "node_modules/@motionone/utils": {
    "version": "10.16.3",
    "resolved": "https://registry.npmjs.org/@motionone/utils/-/utils-10.16.3.tgz",
    "integrity": "sha512-WNWDksJIxQkaI9p9Z9z0+K27xdqISGNFy1SsWVGaiedTHq0iaT6iZujby8fT/ZnZxj1EOaxJtSfUPCFNU5CRoA==",
    "dependencies": {
    "@motionone/types": "^10.16.3",
    "hey-listen": "^1.0.8",
    "tslib": "^2.3.1"
    }
    },
    "node_modules/@motionone/vue": {
    "version": "10.16.4",
    "resolved": "https://registry.npmjs.org/@motionone/vue/-/vue-10.16.4.tgz",
    "integrity": "sha512-z10PF9JV6SbjFq+/rYabM+8CVlMokgl8RFGvieSGNTmrkQanfHn+15XBrhG3BgUfvmTeSeyShfOHpG0i9zEdcg==",
    "dependencies": {
    "@motionone/dom": "^10.16.4",
    "tslib": "^2.3.1"
    }
    },
    "node_modules/@mux/mux-player": {
    "version": "2.0.1",
    "resolved": "https://registry.npmjs.org/@mux/mux-player/-/mux-player-2.0.1.tgz",
    "integrity": "sha512-jNFdBArHW6jBiJlpZTUE/pvSZPNFDFknlZNwKZe1aAymMbr2UfptMuUk3fnfln5F8OdWxUE4Qn6MP3xKUl0P0w==",
    "dependencies": {
    "@mux/mux-video": "0.16.5",
    "@mux/playback-core": "0.20.2",
    "media-chrome": "^1.4.3"
    }
    },
    "node_modules/@mux/mux-video": {
    "version": "0.16.5",
    "resolved": "https://registry.npmjs.org/@mux/mux-video/-/mux-video-0.16.5.tgz",
    "integrity": "sha512-YtM8A+AcYRD8AhcaensueNcUABjBJcDCg34M0rxhRIOBLaAr6Gz9qo9dRGuI0n+Rm6xD0VCRlS41D3YbJ8NNHA==",
    "dependencies": {
    "@mux/playback-core": "0.20.2",
    "castable-video": "0.5.2",
    "custom-media-element": "0.2.0",
    "media-tracks": ">=0.2.3"
    }
    },
    "node_modules/@mux/playback-core": {
    "version": "0.20.2",
    "resolved": "https://registry.npmjs.org/@mux/playback-core/-/playback-core-0.20.2.tgz",
    "integrity": "sha512-0uRy+8Rv3PDV0f7Je/m+y56lw96iyv3baxQPDmW2JnihR60/wtIzNRJSLE5vrzsKMysWBrnJ6Mwu8WkEB1qjLQ==",
    "dependencies": {
    "hls.js": "^1.4.10",
    "media-tracks": "0.2.3",
    "mux-embed": "^4.27.0"
    }
    },
    "node_modules/@mux/playback-core/node_modules/media-tracks": {
    "version": "0.2.3",
    "resolved": "https://registry.npmjs.org/media-tracks/-/media-tracks-0.2.3.tgz",
    "integrity": "sha512-h5HRl1tIyeV+aF59FAmHmxChmdM/Ewf/twpxZkRme1ny46owD24uTA0BmRuPoO+uzvE0lx9ZIkZj1TbXi2VCng=="
    },
    "node_modules/@noble/curves": {
    "version": "1.0.0",
    "resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.0.0.tgz",
    "integrity": "sha512-2upgEu0iLiDVDZkNLeFV2+ht0BAVgQnEmCk6JsOch9Rp8xfkMCbvbAZlA2pBHQc73dbl+vFOXfqkf4uemdn0bw==",
    "funding": [
    {
    "type": "individual",
    "url": "https://paulmillr.com/funding/"
    }
    ],
    "dependencies": {
    "@noble/hashes": "1.3.0"
    }
    },
    "node_modules/@noble/hashes": {
    "version": "1.3.0",
    "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.0.tgz",
    "integrity": "sha512-ilHEACi9DwqJB0pw7kv+Apvh50jiiSyR/cQ3y4W7lOR5mhvn/50FLUfsnfJz0BDZtl/RR16kXvptiv6q1msYZg==",
    "funding": [
    {
    "type": "individual",
    "url": "https://paulmillr.com/funding/"
    }
    ]
    },
    "node_modules/@noble/secp256k1": {
    "version": "1.7.1",
    "resolved": "https://registry.npmjs.org/@noble/secp256k1/-/secp256k1-1.7.1.tgz",
    "integrity": "sha512-hOUk6AyBFmqVrv7k5WAw/LpszxVbj9gGN4JRkIX52fdFAj1UA61KXmZDvqVEm+pOyec3+fIeZB02LYa/pWOArw==",
    "funding": [
    {
    "type": "individual",
    "url": "https://paulmillr.com/funding/"
    }
    ]
    },
    "node_modules/@nodelib/fs.scandir": {
    "version": "2.1.5",
    "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
    "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
    "dependencies": {
    "@nodelib/fs.stat": "2.0.5",
    "run-parallel": "^1.1.9"
    },
    "engines": {
    "node": ">= 8"
    }
    },
    "node_modules/@nodelib/fs.stat": {
    "version": "2.0.5",
    "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
    "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
    "engines": {
    "node": ">= 8"
    }
    },
    "node_modules/@nodelib/fs.walk": {
    "version": "1.2.8",
    "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
    "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
    "dependencies": {
    "@nodelib/fs.scandir": "2.1.5",
    "fastq": "^1.6.0"
    },
    "engines": {
    "node": ">= 8"
    }
    },
    "node_modules/@npmcli/fs": {
    "version": "3.1.0",
    "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.0.tgz",
    "integrity": "sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==",
    "dependencies": {
    "semver": "^7.3.5"
    },
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/@npmcli/git": {
    "version": "4.1.0",
    "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-4.1.0.tgz",
    "integrity": "sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ==",
    "dependencies": {
    "@npmcli/promise-spawn": "^6.0.0",
    "lru-cache": "^7.4.4",
    "npm-pick-manifest": "^8.0.0",
    "proc-log": "^3.0.0",
    "promise-inflight": "^1.0.1",
    "promise-retry": "^2.0.1",
    "semver": "^7.3.5",
    "which": "^3.0.0"
    },
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/@npmcli/git/node_modules/which": {
    "version": "3.0.1",
    "resolved": "https://registry.npmjs.org/which/-/which-3.0.1.tgz",
    "integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==",
    "dependencies": {
    "isexe": "^2.0.0"
    },
    "bin": {
    "node-which": "bin/which.js"
    },
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/@npmcli/installed-package-contents": {
    "version": "2.0.2",
    "resolved": "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-2.0.2.tgz",
    "integrity": "sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ==",
    "dependencies": {
    "npm-bundled": "^3.0.0",
    "npm-normalize-package-bin": "^3.0.0"
    },
    "bin": {
    "installed-package-contents": "lib/index.js"
    },
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/@npmcli/node-gyp": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-3.0.0.tgz",
    "integrity": "sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==",
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/@npmcli/promise-spawn": {
    "version": "6.0.2",
    "resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-6.0.2.tgz",
    "integrity": "sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg==",
    "dependencies": {
    "which": "^3.0.0"
    },
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/@npmcli/promise-spawn/node_modules/which": {
    "version": "3.0.1",
    "resolved": "https://registry.npmjs.org/which/-/which-3.0.1.tgz",
    "integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==",
    "dependencies": {
    "isexe": "^2.0.0"
    },
    "bin": {
    "node-which": "bin/which.js"
    },
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/@npmcli/run-script": {
    "version": "6.0.2",
    "resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-6.0.2.tgz",
    "integrity": "sha512-NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA==",
    "dependencies": {
    "@npmcli/node-gyp": "^3.0.0",
    "@npmcli/promise-spawn": "^6.0.0",
    "node-gyp": "^9.0.0",
    "read-package-json-fast": "^3.0.0",
    "which": "^3.0.0"
    },
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/@npmcli/run-script/node_modules/which": {
    "version": "3.0.1",
    "resolved": "https://registry.npmjs.org/which/-/which-3.0.1.tgz",
    "integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==",
    "dependencies": {
    "isexe": "^2.0.0"
    },
    "bin": {
    "node-which": "bin/which.js"
    },
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/@pkgjs/parseargs": {
    "version": "0.11.0",
    "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
    "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
    "optional": true,
    "engines": {
    "node": ">=14"
    }
    },
    "node_modules/@pnpm/config.env-replace": {
    "version": "1.1.0",
    "resolved": "https://registry.npmjs.org/@pnpm/config.env-replace/-/config.env-replace-1.1.0.tgz",
    "integrity": "sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==",
    "engines": {
    "node": ">=12.22.0"
    }
    },
    "node_modules/@pnpm/network.ca-file": {
    "version": "1.0.2",
    "resolved": "https://registry.npmjs.org/@pnpm/network.ca-file/-/network.ca-file-1.0.2.tgz",
    "integrity": "sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==",
    "dependencies": {
    "graceful-fs": "4.2.10"
    },
    "engines": {
    "node": ">=12.22.0"
    }
    },
    "node_modules/@pnpm/npm-conf": {
    "version": "2.2.2",
    "resolved": "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-2.2.2.tgz",
    "integrity": "sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA==",
    "dependencies": {
    "@pnpm/config.env-replace": "^1.1.0",
    "@pnpm/network.ca-file": "^1.0.1",
    "config-chain": "^1.1.11"
    },
    "engines": {
    "node": ">=12"
    }
    },
    "node_modules/@polybase/client": {
    "version": "0.6.5",
    "resolved": "https://registry.npmjs.org/@polybase/client/-/client-0.6.5.tgz",
    "integrity": "sha512-WiVtLZZHhSZDrCLxyhX0iyXnUOlA/Exv8iy0epcKwIWsAPZxz5WfJq5+IbU/0UdW8CRocOVskmNUMDSu9Wyk5g==",
    "dependencies": {
    "@polybase/eth": "^0.6.5",
    "@polybase/polylang": "^0.6.0",
    "axios": "0.27.2"
    }
    },
    "node_modules/@polybase/client/node_modules/axios": {
    "version": "0.27.2",
    "resolved": "https://registry.npmjs.org/axios/-/axios-0.27.2.tgz",
    "integrity": "sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==",
    "dependencies": {
    "follow-redirects": "^1.14.9",
    "form-data": "^4.0.0"
    }
    },
    "node_modules/@polybase/eth": {
    "version": "0.6.5",
    "resolved": "https://registry.npmjs.org/@polybase/eth/-/eth-0.6.5.tgz",
    "integrity": "sha512-sXZxoSORujygx4GcpFm/fe0BWO4cZIS7eGD7eygINJ/jT31I001oq3HCIV57+WFYlvMDLIwgQuvF6t/RuvMNFQ==",
    "dependencies": {
    "@ethersproject/keccak256": "^5.7.0",
    "@ethersproject/strings": "^5.7.0",
    "@polybase/util": "^0.6.5"
    }
    },
    "node_modules/@polybase/polylang": {
    "version": "0.6.0",
    "resolved": "https://registry.npmjs.org/@polybase/polylang/-/polylang-0.6.0.tgz",
    "integrity": "sha512-yk2JbnNkJDKs2Gnjedra7H1b8H7MCZKaOlo3n+OjjcTlqsZq8Iz472hE0umxDi74zxcsMnIb/qsR6oj6fGKrpw==",
    "engines": {
    "node": ">=16.0.0"
    }
    },
    "node_modules/@polybase/util": {
    "version": "0.6.5",
    "resolved": "https://registry.npmjs.org/@polybase/util/-/util-0.6.5.tgz",
    "integrity": "sha512-mpiRwgX1NNbVJYP0GVqafNLgWuAVO4pk/mUQBazW/X+FDz7fq0OSqTnYDZ5xGH87WW+33dX8whditwJIX9YFLA==",
    "dependencies": {
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/signing-key": "^5.7.0",
    "elliptic": "^6.5.4",
    "process": "^0.11.10",
    "secp256k1": "^4.0.3",
    "tweetnacl": "^1.0.3",
    "tweetnacl-util": "^0.15.1"
    }
    },
    "node_modules/@safe-global/safe-apps-provider": {
    "version": "0.17.1",
    "resolved": "https://registry.npmjs.org/@safe-global/safe-apps-provider/-/safe-apps-provider-0.17.1.tgz",
    "integrity": "sha512-lYfRqrbbK1aKU1/UGkYWc/X7PgySYcumXKc5FB2uuwAs2Ghj8uETuW5BrwPqyjBknRxutFbTv+gth/JzjxAhdQ==",
    "dependencies": {
    "@safe-global/safe-apps-sdk": "8.0.0",
    "events": "^3.3.0"
    }
    },
    "node_modules/@safe-global/safe-apps-provider/node_modules/@safe-global/safe-apps-sdk": {
    "version": "8.0.0",
    "resolved": "https://registry.npmjs.org/@safe-global/safe-apps-sdk/-/safe-apps-sdk-8.0.0.tgz",
    "integrity": "sha512-gYw0ki/EAuV1oSyMxpqandHjnthZjYYy+YWpTAzf8BqfXM3ItcZLpjxfg+3+mXW8HIO+3jw6T9iiqEXsqHaMMw==",
    "dependencies": {
    "@safe-global/safe-gateway-typescript-sdk": "^3.5.3",
    "viem": "^1.0.0"
    }
    },
    "node_modules/@safe-global/safe-apps-sdk": {
    "version": "8.1.0",
    "resolved": "https://registry.npmjs.org/@safe-global/safe-apps-sdk/-/safe-apps-sdk-8.1.0.tgz",
    "integrity": "sha512-XJbEPuaVc7b9n23MqlF6c+ToYIS3f7P2Sel8f3cSBQ9WORE4xrSuvhMpK9fDSFqJ7by/brc+rmJR/5HViRr0/w==",
    "dependencies": {
    "@safe-global/safe-gateway-typescript-sdk": "^3.5.3",
    "viem": "^1.0.0"
    }
    },
    "node_modules/@safe-global/safe-gateway-typescript-sdk": {
    "version": "3.12.0",
    "resolved": "https://registry.npmjs.org/@safe-global/safe-gateway-typescript-sdk/-/safe-gateway-typescript-sdk-3.12.0.tgz",
    "integrity": "sha512-hExCo62lScVC9/ztVqYEYL2pFxcqLTvB8fj0WtdP5FWrvbtEgD0pbVolchzD5bf85pbzvEwdAxSVS7EdCZxTNw==",
    "engines": {
    "node": ">=16"
    }
    },
    "node_modules/@scure/base": {
    "version": "1.1.3",
    "resolved": "https://registry.npmjs.org/@scure/base/-/base-1.1.3.tgz",
    "integrity": "sha512-/+SgoRjLq7Xlf0CWuLHq2LUZeL/w65kfzAPG5NH9pcmBhs+nunQTn4gvdwgMTIXnt9b2C/1SeL2XiysZEyIC9Q==",
    "funding": {
    "url": "https://paulmillr.com/funding/"
    }
    },
    "node_modules/@scure/bip32": {
    "version": "1.3.0",
    "resolved": "https://registry.npmjs.org/@scure/bip32/-/bip32-1.3.0.tgz",
    "integrity": "sha512-bcKpo1oj54hGholplGLpqPHRbIsnbixFtc06nwuNM5/dwSXOq/AAYoIBRsBmnZJSdfeNW5rnff7NTAz3ZCqR9Q==",
    "funding": [
    {
    "type": "individual",
    "url": "https://paulmillr.com/funding/"
    }
    ],
    "dependencies": {
    "@noble/curves": "~1.0.0",
    "@noble/hashes": "~1.3.0",
    "@scure/base": "~1.1.0"
    }
    },
    "node_modules/@scure/bip39": {
    "version": "1.2.0",
    "resolved": "https://registry.npmjs.org/@scure/bip39/-/bip39-1.2.0.tgz",
    "integrity": "sha512-SX/uKq52cuxm4YFXWFaVByaSHJh2w3BnokVSeUJVCv6K7WulT9u2BuNRBhuFl8vAuYnzx9bEu9WgpcNYTrYieg==",
    "funding": [
    {
    "type": "individual",
    "url": "https://paulmillr.com/funding/"
    }
    ],
    "dependencies": {
    "@noble/hashes": "~1.3.0",
    "@scure/base": "~1.1.0"
    }
    },
    "node_modules/@sigstore/bundle": {
    "version": "1.1.0",
    "resolved": "https://registry.npmjs.org/@sigstore/bundle/-/bundle-1.1.0.tgz",
    "integrity": "sha512-PFutXEy0SmQxYI4texPw3dd2KewuNqv7OuK1ZFtY2fM754yhvG2KdgwIhRnoEE2uHdtdGNQ8s0lb94dW9sELog==",
    "dependencies": {
    "@sigstore/protobuf-specs": "^0.2.0"
    },
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/@sigstore/protobuf-specs": {
    "version": "0.2.1",
    "resolved": "https://registry.npmjs.org/@sigstore/protobuf-specs/-/protobuf-specs-0.2.1.tgz",
    "integrity": "sha512-XTWVxnWJu+c1oCshMLwnKvz8ZQJJDVOlciMfgpJBQbThVjKTCG8dwyhgLngBD2KN0ap9F/gOV8rFDEx8uh7R2A==",
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/@sigstore/sign": {
    "version": "1.0.0",
    "resolved": "https://registry.npmjs.org/@sigstore/sign/-/sign-1.0.0.tgz",
    "integrity": "sha512-INxFVNQteLtcfGmcoldzV6Je0sbbfh9I16DM4yJPw3j5+TFP8X6uIiA18mvpEa9yyeycAKgPmOA3X9hVdVTPUA==",
    "dependencies": {
    "@sigstore/bundle": "^1.1.0",
    "@sigstore/protobuf-specs": "^0.2.0",
    "make-fetch-happen": "^11.0.1"
    },
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/@sigstore/tuf": {
    "version": "1.0.3",
    "resolved": "https://registry.npmjs.org/@sigstore/tuf/-/tuf-1.0.3.tgz",
    "integrity": "sha512-2bRovzs0nJZFlCN3rXirE4gwxCn97JNjMmwpecqlbgV9WcxX7WRuIrgzx/X7Ib7MYRbyUTpBYE0s2x6AmZXnlg==",
    "dependencies": {
    "@sigstore/protobuf-specs": "^0.2.0",
    "tuf-js": "^1.1.7"
    },
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/@sindresorhus/is": {
    "version": "5.6.0",
    "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.6.0.tgz",
    "integrity": "sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==",
    "engines": {
    "node": ">=14.16"
    },
    "funding": {
    "url": "https://github.com/sindresorhus/is?sponsor=1"
    }
    },
    "node_modules/@solana/buffer-layout": {
    "version": "4.0.1",
    "resolved": "https://registry.npmjs.org/@solana/buffer-layout/-/buffer-layout-4.0.1.tgz",
    "integrity": "sha512-E1ImOIAD1tBZFRdjeM4/pzTiTApC0AOBGwyAMS4fwIodCWArzJ3DWdoh8cKxeFM2fElkxBh2Aqts1BPC373rHA==",
    "dependencies": {
    "buffer": "~6.0.3"
    },
    "engines": {
    "node": ">=5.10"
    }
    },
    "node_modules/@solana/web3.js": {
    "version": "1.87.0",
    "resolved": "https://registry.npmjs.org/@solana/web3.js/-/web3.js-1.87.0.tgz",
    "integrity": "sha512-2V5nUkK3WHK2JkFvIU0IXadvHPwScfSqpmnO114RBKux+yXdIlIcLYZphWJ2v3We5Ufugi3wBwHD9rOvVQUGJw==",
    "dependencies": {
    "@babel/runtime": "^7.22.6",
    "@noble/curves": "^1.2.0",
    "@noble/hashes": "^1.3.1",
    "@solana/buffer-layout": "^4.0.0",
    "agentkeepalive": "^4.3.0",
    "bigint-buffer": "^1.1.5",
    "bn.js": "^5.2.1",
    "borsh": "^0.7.0",
    "bs58": "^4.0.1",
    "buffer": "6.0.3",
    "fast-stable-stringify": "^1.0.0",
    "jayson": "^4.1.0",
    "node-fetch": "^2.6.12",
    "rpc-websockets": "^7.5.1",
    "superstruct": "^0.14.2"
    }
    },
    "node_modules/@solana/web3.js/node_modules/@noble/curves": {
    "version": "1.2.0",
    "resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.2.0.tgz",
    "integrity": "sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw==",
    "dependencies": {
    "@noble/hashes": "1.3.2"
    },
    "funding": {
    "url": "https://paulmillr.com/funding/"
    }
    },
    "node_modules/@solana/web3.js/node_modules/@noble/hashes": {
    "version": "1.3.2",
    "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.2.tgz",
    "integrity": "sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ==",
    "engines": {
    "node": ">= 16"
    },
    "funding": {
    "url": "https://paulmillr.com/funding/"
    }
    },
    "node_modules/@solana/web3.js/node_modules/bn.js": {
    "version": "5.2.1",
    "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz",
    "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ=="
    },
    "node_modules/@stablelib/aead": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/@stablelib/aead/-/aead-1.0.1.tgz",
    "integrity": "sha512-q39ik6sxGHewqtO0nP4BuSe3db5G1fEJE8ukvngS2gLkBXyy6E7pLubhbYgnkDFv6V8cWaxcE4Xn0t6LWcJkyg=="
    },
    "node_modules/@stablelib/binary": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/@stablelib/binary/-/binary-1.0.1.tgz",
    "integrity": "sha512-ClJWvmL6UBM/wjkvv/7m5VP3GMr9t0osr4yVgLZsLCOz4hGN9gIAFEqnJ0TsSMAN+n840nf2cHZnA5/KFqHC7Q==",
    "dependencies": {
    "@stablelib/int": "^1.0.1"
    }
    },
    "node_modules/@stablelib/bytes": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/@stablelib/bytes/-/bytes-1.0.1.tgz",
    "integrity": "sha512-Kre4Y4kdwuqL8BR2E9hV/R5sOrUj6NanZaZis0V6lX5yzqC3hBuVSDXUIBqQv/sCpmuWRiHLwqiT1pqqjuBXoQ=="
    },
    "node_modules/@stablelib/chacha": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/@stablelib/chacha/-/chacha-1.0.1.tgz",
    "integrity": "sha512-Pmlrswzr0pBzDofdFuVe1q7KdsHKhhU24e8gkEwnTGOmlC7PADzLVxGdn2PoNVBBabdg0l/IfLKg6sHAbTQugg==",
    "dependencies": {
    "@stablelib/binary": "^1.0.1",
    "@stablelib/wipe": "^1.0.1"
    }
    },
    "node_modules/@stablelib/chacha20poly1305": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/@stablelib/chacha20poly1305/-/chacha20poly1305-1.0.1.tgz",
    "integrity": "sha512-MmViqnqHd1ymwjOQfghRKw2R/jMIGT3wySN7cthjXCBdO+qErNPUBnRzqNpnvIwg7JBCg3LdeCZZO4de/yEhVA==",
    "dependencies": {
    "@stablelib/aead": "^1.0.1",
    "@stablelib/binary": "^1.0.1",
    "@stablelib/chacha": "^1.0.1",
    "@stablelib/constant-time": "^1.0.1",
    "@stablelib/poly1305": "^1.0.1",
    "@stablelib/wipe": "^1.0.1"
    }
    },
    "node_modules/@stablelib/constant-time": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/@stablelib/constant-time/-/constant-time-1.0.1.tgz",
    "integrity": "sha512-tNOs3uD0vSJcK6z1fvef4Y+buN7DXhzHDPqRLSXUel1UfqMB1PWNsnnAezrKfEwTLpN0cGH2p9NNjs6IqeD0eg=="
    },
    "node_modules/@stablelib/ed25519": {
    "version": "1.0.3",
    "resolved": "https://registry.npmjs.org/@stablelib/ed25519/-/ed25519-1.0.3.tgz",
    "integrity": "sha512-puIMWaX9QlRsbhxfDc5i+mNPMY+0TmQEskunY1rZEBPi1acBCVQAhnsk/1Hk50DGPtVsZtAWQg4NHGlVaO9Hqg==",
    "dependencies": {
    "@stablelib/random": "^1.0.2",
    "@stablelib/sha512": "^1.0.1",
    "@stablelib/wipe": "^1.0.1"
    }
    },
    "node_modules/@stablelib/hash": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/@stablelib/hash/-/hash-1.0.1.tgz",
    "integrity": "sha512-eTPJc/stDkdtOcrNMZ6mcMK1e6yBbqRBaNW55XA1jU8w/7QdnCF0CmMmOD1m7VSkBR44PWrMHU2l6r8YEQHMgg=="
    },
    "node_modules/@stablelib/hkdf": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/@stablelib/hkdf/-/hkdf-1.0.1.tgz",
    "integrity": "sha512-SBEHYE16ZXlHuaW5RcGk533YlBj4grMeg5TooN80W3NpcHRtLZLLXvKyX0qcRFxf+BGDobJLnwkvgEwHIDBR6g==",
    "dependencies": {
    "@stablelib/hash": "^1.0.1",
    "@stablelib/hmac": "^1.0.1",
    "@stablelib/wipe": "^1.0.1"
    }
    },
    "node_modules/@stablelib/hmac": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/@stablelib/hmac/-/hmac-1.0.1.tgz",
    "integrity": "sha512-V2APD9NSnhVpV/QMYgCVMIYKiYG6LSqw1S65wxVoirhU/51ACio6D4yDVSwMzuTJXWZoVHbDdINioBwKy5kVmA==",
    "dependencies": {
    "@stablelib/constant-time": "^1.0.1",
    "@stablelib/hash": "^1.0.1",
    "@stablelib/wipe": "^1.0.1"
    }
    },
    "node_modules/@stablelib/int": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/@stablelib/int/-/int-1.0.1.tgz",
    "integrity": "sha512-byr69X/sDtDiIjIV6m4roLVWnNNlRGzsvxw+agj8CIEazqWGOQp2dTYgQhtyVXV9wpO6WyXRQUzLV/JRNumT2w=="
    },
    "node_modules/@stablelib/keyagreement": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/@stablelib/keyagreement/-/keyagreement-1.0.1.tgz",
    "integrity": "sha512-VKL6xBwgJnI6l1jKrBAfn265cspaWBPAPEc62VBQrWHLqVgNRE09gQ/AnOEyKUWrrqfD+xSQ3u42gJjLDdMDQg==",
    "dependencies": {
    "@stablelib/bytes": "^1.0.1"
    }
    },
    "node_modules/@stablelib/poly1305": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/@stablelib/poly1305/-/poly1305-1.0.1.tgz",
    "integrity": "sha512-1HlG3oTSuQDOhSnLwJRKeTRSAdFNVB/1djy2ZbS35rBSJ/PFqx9cf9qatinWghC2UbfOYD8AcrtbUQl8WoxabA==",
    "dependencies": {
    "@stablelib/constant-time": "^1.0.1",
    "@stablelib/wipe": "^1.0.1"
    }
    },
    "node_modules/@stablelib/random": {
    "version": "1.0.2",
    "resolved": "https://registry.npmjs.org/@stablelib/random/-/random-1.0.2.tgz",
    "integrity": "sha512-rIsE83Xpb7clHPVRlBj8qNe5L8ISQOzjghYQm/dZ7VaM2KHYwMW5adjQjrzTZCchFnNCNhkwtnOBa9HTMJCI8w==",
    "dependencies": {
    "@stablelib/binary": "^1.0.1",
    "@stablelib/wipe": "^1.0.1"
    }
    },
    "node_modules/@stablelib/sha256": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/@stablelib/sha256/-/sha256-1.0.1.tgz",
    "integrity": "sha512-GIIH3e6KH+91FqGV42Kcj71Uefd/QEe7Dy42sBTeqppXV95ggCcxLTk39bEr+lZfJmp+ghsR07J++ORkRELsBQ==",
    "dependencies": {
    "@stablelib/binary": "^1.0.1",
    "@stablelib/hash": "^1.0.1",
    "@stablelib/wipe": "^1.0.1"
    }
    },
    "node_modules/@stablelib/sha512": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/@stablelib/sha512/-/sha512-1.0.1.tgz",
    "integrity": "sha512-13gl/iawHV9zvDKciLo1fQ8Bgn2Pvf7OV6amaRVKiq3pjQ3UmEpXxWiAfV8tYjUpeZroBxtyrwtdooQT/i3hzw==",
    "dependencies": {
    "@stablelib/binary": "^1.0.1",
    "@stablelib/hash": "^1.0.1",
    "@stablelib/wipe": "^1.0.1"
    }
    },
    "node_modules/@stablelib/wipe": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/@stablelib/wipe/-/wipe-1.0.1.tgz",
    "integrity": "sha512-WfqfX/eXGiAd3RJe4VU2snh/ZPwtSjLG4ynQ/vYzvghTh7dHFcI1wl+nrkWG6lGhukOxOsUHfv8dUXr58D0ayg=="
    },
    "node_modules/@stablelib/x25519": {
    "version": "1.0.3",
    "resolved": "https://registry.npmjs.org/@stablelib/x25519/-/x25519-1.0.3.tgz",
    "integrity": "sha512-KnTbKmUhPhHavzobclVJQG5kuivH+qDLpe84iRqX3CLrKp881cF160JvXJ+hjn1aMyCwYOKeIZefIH/P5cJoRw==",
    "dependencies": {
    "@stablelib/keyagreement": "^1.0.1",
    "@stablelib/random": "^1.0.2",
    "@stablelib/wipe": "^1.0.1"
    }
    },
    "node_modules/@szmarczak/http-timer": {
    "version": "5.0.1",
    "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-5.0.1.tgz",
    "integrity": "sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==",
    "dependencies": {
    "defer-to-connect": "^2.0.1"
    },
    "engines": {
    "node": ">=14.16"
    }
    },
    "node_modules/@tootallnate/once": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz",
    "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==",
    "engines": {
    "node": ">= 10"
    }
    },
    "node_modules/@tufjs/canonical-json": {
    "version": "1.0.0",
    "resolved": "https://registry.npmjs.org/@tufjs/canonical-json/-/canonical-json-1.0.0.tgz",
    "integrity": "sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ==",
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/@tufjs/models": {
    "version": "1.0.4",
    "resolved": "https://registry.npmjs.org/@tufjs/models/-/models-1.0.4.tgz",
    "integrity": "sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==",
    "dependencies": {
    "@tufjs/canonical-json": "1.0.0",
    "minimatch": "^9.0.0"
    },
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/@types/abstract-leveldown": {
    "version": "7.2.3",
    "resolved": "https://registry.npmjs.org/@types/abstract-leveldown/-/abstract-leveldown-7.2.3.tgz",
    "integrity": "sha512-YAdL8tIYbiKoFjAf/0Ir3mvRJ/iFvBP/FK0I8Xa5rGWgVcq0xWOEInzlJfs6TIPWFweEOTKgNSBdxneUcHRvaw=="
    },
    "node_modules/@types/bn.js": {
    "version": "5.1.2",
    "resolved": "https://registry.npmjs.org/@types/bn.js/-/bn.js-5.1.2.tgz",
    "integrity": "sha512-dkpZu0szUtn9UXTmw+e0AJFd4D2XAxDnsCLdc05SfqpqzPEBft8eQr8uaFitfo/dUUOZERaLec2hHMG87A4Dxg==",
    "dependencies": {
    "@types/node": "*"
    }
    },
    "node_modules/@types/connect": {
    "version": "3.4.36",
    "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.36.tgz",
    "integrity": "sha512-P63Zd/JUGq+PdrM1lv0Wv5SBYeA2+CORvbrXbngriYY0jzLUWfQMQQxOhjONEz/wlHOAxOdY7CY65rgQdTjq2w==",
    "dependencies": {
    "@types/node": "*"
    }
    },
    "node_modules/@types/debug": {
    "version": "4.1.9",
    "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.9.tgz",
    "integrity": "sha512-8Hz50m2eoS56ldRlepxSBa6PWEVCtzUo/92HgLc2qTMnotJNIm7xP+UZhyWoYsyOdd5dxZ+NZLb24rsKyFs2ow==",
    "dependencies": {
    "@types/ms": "*"
    }
    },
    "node_modules/@types/http-cache-semantics": {
    "version": "4.0.1",
    "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz",
    "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ=="
    },
    "node_modules/@types/jquery": {
    "version": "3.5.16",
    "resolved": "https://registry.npmjs.org/@types/jquery/-/jquery-3.5.16.tgz",
    "integrity": "sha512-bsI7y4ZgeMkmpG9OM710RRzDFp+w4P1RGiIt30C1mSBT+ExCleeh4HObwgArnDFELmRrOpXgSYN9VF1hj+f1lw==",
    "dependencies": {
    "@types/sizzle": "*"
    }
    },
    "node_modules/@types/level-errors": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/@types/level-errors/-/level-errors-3.0.0.tgz",
    "integrity": "sha512-/lMtoq/Cf/2DVOm6zE6ORyOM+3ZVm/BvzEZVxUhf6bgh8ZHglXlBqxbxSlJeVp8FCbD3IVvk/VbsaNmDjrQvqQ=="
    },
    "node_modules/@types/levelup": {
    "version": "4.3.3",
    "resolved": "https://registry.npmjs.org/@types/levelup/-/levelup-4.3.3.tgz",
    "integrity": "sha512-K+OTIjJcZHVlZQN1HmU64VtrC0jC3dXWQozuEIR9zVvltIk90zaGPM2AgT+fIkChpzHhFE3YnvFLCbLtzAmexA==",
    "dependencies": {
    "@types/abstract-leveldown": "*",
    "@types/level-errors": "*",
    "@types/node": "*"
    }
    },
    "node_modules/@types/ms": {
    "version": "0.7.32",
    "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.32.tgz",
    "integrity": "sha512-xPSg0jm4mqgEkNhowKgZFBNtwoEwF6gJ4Dhww+GFpm3IgtNseHQZ5IqdNwnquZEoANxyDAKDRAdVo4Z72VvD/g=="
    },
    "node_modules/@types/node": {
    "version": "20.5.1",
    "resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.1.tgz",
    "integrity": "sha512-4tT2UrL5LBqDwoed9wZ6N3umC4Yhz3W3FloMmiiG4JwmUJWpie0c7lcnUNd4gtMKuDEO4wRVS8B6Xa0uMRsMKg=="
    },
    "node_modules/@types/pbkdf2": {
    "version": "3.1.0",
    "resolved": "https://registry.npmjs.org/@types/pbkdf2/-/pbkdf2-3.1.0.tgz",
    "integrity": "sha512-Cf63Rv7jCQ0LaL8tNXmEyqTHuIJxRdlS5vMh1mj5voN4+QFhVZnlZruezqpWYDiJ8UTzhP0VmeLXCmBk66YrMQ==",
    "dependencies": {
    "@types/node": "*"
    }
    },
    "node_modules/@types/secp256k1": {
    "version": "4.0.4",
    "resolved": "https://registry.npmjs.org/@types/secp256k1/-/secp256k1-4.0.4.tgz",
    "integrity": "sha512-oN0PFsYxDZnX/qSJ5S5OwaEDTYfekhvaM5vqui2bu1AA39pKofmgL104Q29KiOXizXS2yLjSzc5YdTyMKdcy4A==",
    "dependencies": {
    "@types/node": "*"
    }
    },
    "node_modules/@types/sizzle": {
    "version": "2.3.3",
    "resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.3.tgz",
    "integrity": "sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ=="
    },
    "node_modules/@types/trusted-types": {
    "version": "2.0.4",
    "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.4.tgz",
    "integrity": "sha512-IDaobHimLQhjwsQ/NMwRVfa/yL7L/wriQPMhw1ZJall0KX6E1oxk29XMDeilW5qTIg5aoiqf5Udy8U/51aNoQQ=="
    },
    "node_modules/@types/ws": {
    "version": "7.4.7",
    "resolved": "https://registry.npmjs.org/@types/ws/-/ws-7.4.7.tgz",
    "integrity": "sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww==",
    "dependencies": {
    "@types/node": "*"
    }
    },
    "node_modules/@vue/compiler-core": {
    "version": "3.3.4",
    "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.3.4.tgz",
    "integrity": "sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==",
    "optional": true,
    "dependencies": {
    "@babel/parser": "^7.21.3",
    "@vue/shared": "3.3.4",
    "estree-walker": "^2.0.2",
    "source-map-js": "^1.0.2"
    }
    },
    "node_modules/@vue/compiler-dom": {
    "version": "3.3.4",
    "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz",
    "integrity": "sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w==",
    "optional": true,
    "dependencies": {
    "@vue/compiler-core": "3.3.4",
    "@vue/shared": "3.3.4"
    }
    },
    "node_modules/@vue/compiler-sfc": {
    "version": "3.3.4",
    "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.3.4.tgz",
    "integrity": "sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==",
    "optional": true,
    "dependencies": {
    "@babel/parser": "^7.20.15",
    "@vue/compiler-core": "3.3.4",
    "@vue/compiler-dom": "3.3.4",
    "@vue/compiler-ssr": "3.3.4",
    "@vue/reactivity-transform": "3.3.4",
    "@vue/shared": "3.3.4",
    "estree-walker": "^2.0.2",
    "magic-string": "^0.30.0",
    "postcss": "^8.1.10",
    "source-map-js": "^1.0.2"
    }
    },
    "node_modules/@vue/compiler-ssr": {
    "version": "3.3.4",
    "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz",
    "integrity": "sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ==",
    "optional": true,
    "dependencies": {
    "@vue/compiler-dom": "3.3.4",
    "@vue/shared": "3.3.4"
    }
    },
    "node_modules/@vue/reactivity": {
    "version": "3.3.4",
    "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.3.4.tgz",
    "integrity": "sha512-kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ==",
    "optional": true,
    "dependencies": {
    "@vue/shared": "3.3.4"
    }
    },
    "node_modules/@vue/reactivity-transform": {
    "version": "3.3.4",
    "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.3.4.tgz",
    "integrity": "sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw==",
    "optional": true,
    "dependencies": {
    "@babel/parser": "^7.20.15",
    "@vue/compiler-core": "3.3.4",
    "@vue/shared": "3.3.4",
    "estree-walker": "^2.0.2",
    "magic-string": "^0.30.0"
    }
    },
    "node_modules/@vue/runtime-core": {
    "version": "3.3.4",
    "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.3.4.tgz",
    "integrity": "sha512-R+bqxMN6pWO7zGI4OMlmvePOdP2c93GsHFM/siJI7O2nxFRzj55pLwkpCedEY+bTMgp5miZ8CxfIZo3S+gFqvA==",
    "optional": true,
    "dependencies": {
    "@vue/reactivity": "3.3.4",
    "@vue/shared": "3.3.4"
    }
    },
    "node_modules/@vue/runtime-dom": {
    "version": "3.3.4",
    "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.3.4.tgz",
    "integrity": "sha512-Aj5bTJ3u5sFsUckRghsNjVTtxZQ1OyMWCr5dZRAPijF/0Vy4xEoRCwLyHXcj4D0UFbJ4lbx3gPTgg06K/GnPnQ==",
    "optional": true,
    "dependencies": {
    "@vue/runtime-core": "3.3.4",
    "@vue/shared": "3.3.4",
    "csstype": "^3.1.1"
    }
    },
    "node_modules/@vue/server-renderer": {
    "version": "3.3.4",
    "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.3.4.tgz",
    "integrity": "sha512-Q6jDDzR23ViIb67v+vM1Dqntu+HUexQcsWKhhQa4ARVzxOY2HbC7QRW/ggkDBd5BU+uM1sV6XOAP0b216o34JQ==",
    "optional": true,
    "dependencies": {
    "@vue/compiler-ssr": "3.3.4",
    "@vue/shared": "3.3.4"
    },
    "peerDependencies": {
    "vue": "3.3.4"
    }
    },
    "node_modules/@vue/shared": {
    "version": "3.3.4",
    "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.3.4.tgz",
    "integrity": "sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==",
    "optional": true
    },
    "node_modules/@wagmi/connectors": {
    "version": "3.1.2",
    "resolved": "https://registry.npmjs.org/@wagmi/connectors/-/connectors-3.1.2.tgz",
    "integrity": "sha512-IlLKErqCzQRBUcCvXGPowcczbWcvJtEG006gPsAoePNJEXCHEWoKASghgu+L/bqD7006Z6mW6zlTNjcSQJvFAg==",
    "funding": [
    {
    "type": "gitcoin",
    "url": "https://wagmi.sh/gitcoin"
    },
    {
    "type": "github",
    "url": "https://github.com/sponsors/wagmi-dev"
    }
    ],
    "dependencies": {
    "@coinbase/wallet-sdk": "^3.6.6",
    "@ledgerhq/connect-kit-loader": "^1.1.0",
    "@safe-global/safe-apps-provider": "^0.17.1",
    "@safe-global/safe-apps-sdk": "^8.0.0",
    "@walletconnect/ethereum-provider": "2.10.1",
    "@walletconnect/legacy-provider": "^2.0.0",
    "@walletconnect/modal": "2.6.2",
    "@walletconnect/utils": "2.10.1",
    "abitype": "0.8.7",
    "eventemitter3": "^4.0.7"
    },
    "peerDependencies": {
    "typescript": ">=5.0.4",
    "viem": ">=0.3.35"
    },
    "peerDependenciesMeta": {
    "typescript": {
    "optional": true
    }
    }
    },
    "node_modules/@wagmi/core": {
    "version": "1.4.3",
    "resolved": "https://registry.npmjs.org/@wagmi/core/-/core-1.4.3.tgz",
    "integrity": "sha512-CIV9jwv5ue+WpqmA3FvwGa+23cppe7oIaz6TRnlGm0Hm0wDImSaQSWqcsFyOPvleD29oOIJ8e3KnHINEvI64AA==",
    "funding": [
    {
    "type": "gitcoin",
    "url": "https://wagmi.sh/gitcoin"
    },
    {
    "type": "github",
    "url": "https://github.com/sponsors/wagmi-dev"
    }
    ],
    "dependencies": {
    "@wagmi/connectors": "3.1.2",
    "abitype": "0.8.7",
    "eventemitter3": "^4.0.7",
    "zustand": "^4.3.1"
    },
    "peerDependencies": {
    "typescript": ">=5.0.4",
    "viem": ">=0.3.35"
    },
    "peerDependenciesMeta": {
    "typescript": {
    "optional": true
    }
    }
    },
    "node_modules/@walletconnect/core": {
    "version": "2.10.1",
    "resolved": "https://registry.npmjs.org/@walletconnect/core/-/core-2.10.1.tgz",
    "integrity": "sha512-WAoXfmj+Zy5q48TnrKUjmHXJCBahzKwbul+noepRZf7JDtUAZ9IOWpUjg+UPRbfK5EiWZ0TF42S6SXidf7EHoQ==",
    "dependencies": {
    "@walletconnect/heartbeat": "1.2.1",
    "@walletconnect/jsonrpc-provider": "1.0.13",
    "@walletconnect/jsonrpc-types": "1.0.3",
    "@walletconnect/jsonrpc-utils": "1.0.8",
    "@walletconnect/jsonrpc-ws-connection": "1.0.13",
    "@walletconnect/keyvaluestorage": "^1.0.2",
    "@walletconnect/logger": "^2.0.1",
    "@walletconnect/relay-api": "^1.0.9",
    "@walletconnect/relay-auth": "^1.0.4",
    "@walletconnect/safe-json": "^1.0.2",
    "@walletconnect/time": "^1.0.2",
    "@walletconnect/types": "2.10.1",
    "@walletconnect/utils": "2.10.1",
    "events": "^3.3.0",
    "lodash.isequal": "4.5.0",
    "uint8arrays": "^3.1.0"
    }
    },
    "node_modules/@walletconnect/crypto": {
    "version": "1.0.3",
    "resolved": "https://registry.npmjs.org/@walletconnect/crypto/-/crypto-1.0.3.tgz",
    "integrity": "sha512-+2jdORD7XQs76I2Odgr3wwrtyuLUXD/kprNVsjWRhhhdO9Mt6WqVzOPu0/t7OHSmgal8k7SoBQzUc5hu/8zL/g==",
    "dependencies": {
    "@walletconnect/encoding": "^1.0.2",
    "@walletconnect/environment": "^1.0.1",
    "@walletconnect/randombytes": "^1.0.3",
    "aes-js": "^3.1.2",
    "hash.js": "^1.1.7",
    "tslib": "1.14.1"
    }
    },
    "node_modules/@walletconnect/crypto/node_modules/aes-js": {
    "version": "3.1.2",
    "resolved": "https://registry.npmjs.org/aes-js/-/aes-js-3.1.2.tgz",
    "integrity": "sha512-e5pEa2kBnBOgR4Y/p20pskXI74UEz7de8ZGVo58asOtvSVG5YAbJeELPZxOmt+Bnz3rX753YKhfIn4X4l1PPRQ=="
    },
    "node_modules/@walletconnect/crypto/node_modules/tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    },
    "node_modules/@walletconnect/encoding": {
    "version": "1.0.2",
    "resolved": "https://registry.npmjs.org/@walletconnect/encoding/-/encoding-1.0.2.tgz",
    "integrity": "sha512-CrwSBrjqJ7rpGQcTL3kU+Ief+Bcuu9PH6JLOb+wM6NITX1GTxR/MfNwnQfhLKK6xpRAyj2/nM04OOH6wS8Imag==",
    "dependencies": {
    "is-typedarray": "1.0.0",
    "tslib": "1.14.1",
    "typedarray-to-buffer": "3.1.5"
    }
    },
    "node_modules/@walletconnect/encoding/node_modules/tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    },
    "node_modules/@walletconnect/environment": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/@walletconnect/environment/-/environment-1.0.1.tgz",
    "integrity": "sha512-T426LLZtHj8e8rYnKfzsw1aG6+M0BT1ZxayMdv/p8yM0MU+eJDISqNY3/bccxRr4LrF9csq02Rhqt08Ibl0VRg==",
    "dependencies": {
    "tslib": "1.14.1"
    }
    },
    "node_modules/@walletconnect/environment/node_modules/tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    },
    "node_modules/@walletconnect/ethereum-provider": {
    "version": "2.10.1",
    "resolved": "https://registry.npmjs.org/@walletconnect/ethereum-provider/-/ethereum-provider-2.10.1.tgz",
    "integrity": "sha512-Yhoz8EXkKzxOlBT6G+elphqCx/gkH6RxD9/ZAiy9lLc8Ng5p1gvKCVVP5zsGNE9FbkKmHd+J9JJRzn2Bw2yqtQ==",
    "dependencies": {
    "@walletconnect/jsonrpc-http-connection": "^1.0.7",
    "@walletconnect/jsonrpc-provider": "^1.0.13",
    "@walletconnect/jsonrpc-types": "^1.0.3",
    "@walletconnect/jsonrpc-utils": "^1.0.8",
    "@walletconnect/sign-client": "2.10.1",
    "@walletconnect/types": "2.10.1",
    "@walletconnect/universal-provider": "2.10.1",
    "@walletconnect/utils": "2.10.1",
    "events": "^3.3.0"
    },
    "peerDependencies": {
    "@walletconnect/modal": ">=2"
    },
    "peerDependenciesMeta": {
    "@walletconnect/modal": {
    "optional": true
    }
    }
    },
    "node_modules/@walletconnect/events": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/@walletconnect/events/-/events-1.0.1.tgz",
    "integrity": "sha512-NPTqaoi0oPBVNuLv7qPaJazmGHs5JGyO8eEAk5VGKmJzDR7AHzD4k6ilox5kxk1iwiOnFopBOOMLs86Oa76HpQ==",
    "dependencies": {
    "keyvaluestorage-interface": "^1.0.0",
    "tslib": "1.14.1"
    }
    },
    "node_modules/@walletconnect/events/node_modules/tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    },
    "node_modules/@walletconnect/heartbeat": {
    "version": "1.2.1",
    "resolved": "https://registry.npmjs.org/@walletconnect/heartbeat/-/heartbeat-1.2.1.tgz",
    "integrity": "sha512-yVzws616xsDLJxuG/28FqtZ5rzrTA4gUjdEMTbWB5Y8V1XHRmqq4efAxCw5ie7WjbXFSUyBHaWlMR+2/CpQC5Q==",
    "dependencies": {
    "@walletconnect/events": "^1.0.1",
    "@walletconnect/time": "^1.0.2",
    "tslib": "1.14.1"
    }
    },
    "node_modules/@walletconnect/heartbeat/node_modules/tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    },
    "node_modules/@walletconnect/jsonrpc-http-connection": {
    "version": "1.0.7",
    "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-http-connection/-/jsonrpc-http-connection-1.0.7.tgz",
    "integrity": "sha512-qlfh8fCfu8LOM9JRR9KE0s0wxP6ZG9/Jom8M0qsoIQeKF3Ni0FyV4V1qy/cc7nfI46SLQLSl4tgWSfLiE1swyQ==",
    "dependencies": {
    "@walletconnect/jsonrpc-utils": "^1.0.6",
    "@walletconnect/safe-json": "^1.0.1",
    "cross-fetch": "^3.1.4",
    "tslib": "1.14.1"
    }
    },
    "node_modules/@walletconnect/jsonrpc-http-connection/node_modules/cross-fetch": {
    "version": "3.1.8",
    "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.8.tgz",
    "integrity": "sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==",
    "dependencies": {
    "node-fetch": "^2.6.12"
    }
    },
    "node_modules/@walletconnect/jsonrpc-http-connection/node_modules/tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    },
    "node_modules/@walletconnect/jsonrpc-provider": {
    "version": "1.0.13",
    "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-provider/-/jsonrpc-provider-1.0.13.tgz",
    "integrity": "sha512-K73EpThqHnSR26gOyNEL+acEex3P7VWZe6KE12ZwKzAt2H4e5gldZHbjsu2QR9cLeJ8AXuO7kEMOIcRv1QEc7g==",
    "dependencies": {
    "@walletconnect/jsonrpc-utils": "^1.0.8",
    "@walletconnect/safe-json": "^1.0.2",
    "tslib": "1.14.1"
    }
    },
    "node_modules/@walletconnect/jsonrpc-provider/node_modules/tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    },
    "node_modules/@walletconnect/jsonrpc-types": {
    "version": "1.0.3",
    "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-types/-/jsonrpc-types-1.0.3.tgz",
    "integrity": "sha512-iIQ8hboBl3o5ufmJ8cuduGad0CQm3ZlsHtujv9Eu16xq89q+BG7Nh5VLxxUgmtpnrePgFkTwXirCTkwJH1v+Yw==",
    "dependencies": {
    "keyvaluestorage-interface": "^1.0.0",
    "tslib": "1.14.1"
    }
    },
    "node_modules/@walletconnect/jsonrpc-types/node_modules/tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    },
    "node_modules/@walletconnect/jsonrpc-utils": {
    "version": "1.0.8",
    "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-utils/-/jsonrpc-utils-1.0.8.tgz",
    "integrity": "sha512-vdeb03bD8VzJUL6ZtzRYsFMq1eZQcM3EAzT0a3st59dyLfJ0wq+tKMpmGH7HlB7waD858UWgfIcudbPFsbzVdw==",
    "dependencies": {
    "@walletconnect/environment": "^1.0.1",
    "@walletconnect/jsonrpc-types": "^1.0.3",
    "tslib": "1.14.1"
    }
    },
    "node_modules/@walletconnect/jsonrpc-utils/node_modules/tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    },
    "node_modules/@walletconnect/jsonrpc-ws-connection": {
    "version": "1.0.13",
    "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-ws-connection/-/jsonrpc-ws-connection-1.0.13.tgz",
    "integrity": "sha512-mfOM7uFH4lGtQxG+XklYuFBj6dwVvseTt5/ahOkkmpcAEgz2umuzu7fTR+h5EmjQBdrmYyEBOWADbeaFNxdySg==",
    "dependencies": {
    "@walletconnect/jsonrpc-utils": "^1.0.6",
    "@walletconnect/safe-json": "^1.0.2",
    "events": "^3.3.0",
    "tslib": "1.14.1",
    "ws": "^7.5.1"
    }
    },
    "node_modules/@walletconnect/jsonrpc-ws-connection/node_modules/tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    },
    "node_modules/@walletconnect/jsonrpc-ws-connection/node_modules/ws": {
    "version": "7.5.9",
    "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz",
    "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==",
    "engines": {
    "node": ">=8.3.0"
    },
    "peerDependencies": {
    "bufferutil": "^4.0.1",
    "utf-8-validate": "^5.0.2"
    },
    "peerDependenciesMeta": {
    "bufferutil": {
    "optional": true
    },
    "utf-8-validate": {
    "optional": true
    }
    }
    },
    "node_modules/@walletconnect/keyvaluestorage": {
    "version": "1.0.2",
    "resolved": "https://registry.npmjs.org/@walletconnect/keyvaluestorage/-/keyvaluestorage-1.0.2.tgz",
    "integrity": "sha512-U/nNG+VLWoPFdwwKx0oliT4ziKQCEoQ27L5Hhw8YOFGA2Po9A9pULUYNWhDgHkrb0gYDNt//X7wABcEWWBd3FQ==",
    "dependencies": {
    "safe-json-utils": "^1.1.1",
    "tslib": "1.14.1"
    },
    "peerDependencies": {
    "@react-native-async-storage/async-storage": "1.x",
    "lokijs": "1.x"
    },
    "peerDependenciesMeta": {
    "@react-native-async-storage/async-storage": {
    "optional": true
    },
    "lokijs": {
    "optional": true
    }
    }
    },
    "node_modules/@walletconnect/keyvaluestorage/node_modules/tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    },
    "node_modules/@walletconnect/legacy-client": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/@walletconnect/legacy-client/-/legacy-client-2.0.0.tgz",
    "integrity": "sha512-v5L7rYk9loVnfvUf0mF+76bUPFaU5/Vh7mzL6/950CD/yoGdzYZ3Kj+L7mkC6HPMEGeQsBP1+sqBuiVGZ/aODA==",
    "dependencies": {
    "@walletconnect/crypto": "^1.0.3",
    "@walletconnect/encoding": "^1.0.2",
    "@walletconnect/jsonrpc-utils": "^1.0.4",
    "@walletconnect/legacy-types": "^2.0.0",
    "@walletconnect/legacy-utils": "^2.0.0",
    "@walletconnect/safe-json": "^1.0.1",
    "@walletconnect/window-getters": "^1.0.1",
    "@walletconnect/window-metadata": "^1.0.1",
    "detect-browser": "^5.3.0",
    "query-string": "^6.13.5"
    }
    },
    "node_modules/@walletconnect/legacy-modal": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/@walletconnect/legacy-modal/-/legacy-modal-2.0.0.tgz",
    "integrity": "sha512-jckNd8lMhm4X7dX9TDdxM3bXKJnaqkRs6K2Mo5j6GmbIF9Eyx40jZ5+q457RVxvM6ciZEDT5s1wBHWdWoOo+9Q==",
    "dependencies": {
    "@walletconnect/legacy-types": "^2.0.0",
    "@walletconnect/legacy-utils": "^2.0.0",
    "copy-to-clipboard": "^3.3.3",
    "preact": "^10.12.0",
    "qrcode": "^1.5.1"
    }
    },
    "node_modules/@walletconnect/legacy-provider": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/@walletconnect/legacy-provider/-/legacy-provider-2.0.0.tgz",
    "integrity": "sha512-A8xPebMI1A+50HbWwTpFCbwP7G+1NGKdTKyg8BUUg3h3Y9JucpC1W6w/x0v1Xw7qFEqQnz74LoIN/A3ytH9xrQ==",
    "dependencies": {
    "@walletconnect/jsonrpc-http-connection": "^1.0.4",
    "@walletconnect/jsonrpc-provider": "^1.0.6",
    "@walletconnect/legacy-client": "^2.0.0",
    "@walletconnect/legacy-modal": "^2.0.0",
    "@walletconnect/legacy-types": "^2.0.0",
    "@walletconnect/legacy-utils": "^2.0.0"
    }
    },
    "node_modules/@walletconnect/legacy-types": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/@walletconnect/legacy-types/-/legacy-types-2.0.0.tgz",
    "integrity": "sha512-sOVrA7HUdbI1OwKyPOQU0/DdvTSVFlsXWpAk2K2WvP2erTkBWPMTJq6cv2BmKdoJ3p6gLApT7sd+jHi3OF71uw==",
    "dependencies": {
    "@walletconnect/jsonrpc-types": "^1.0.2"
    }
    },
    "node_modules/@walletconnect/legacy-utils": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/@walletconnect/legacy-utils/-/legacy-utils-2.0.0.tgz",
    "integrity": "sha512-CPWxSVVXw0kgNCxvU126g4GiV3mzXmC8IPJ15twE46aJ1FX+RHEIfAzFMFz2F2+fEhBxL63A7dwNQKDXorRPcQ==",
    "dependencies": {
    "@walletconnect/encoding": "^1.0.2",
    "@walletconnect/jsonrpc-utils": "^1.0.4",
    "@walletconnect/legacy-types": "^2.0.0",
    "@walletconnect/safe-json": "^1.0.1",
    "@walletconnect/window-getters": "^1.0.1",
    "@walletconnect/window-metadata": "^1.0.1",
    "detect-browser": "^5.3.0",
    "query-string": "^6.13.5"
    }
    },
    "node_modules/@walletconnect/logger": {
    "version": "2.0.1",
    "resolved": "https://registry.npmjs.org/@walletconnect/logger/-/logger-2.0.1.tgz",
    "integrity": "sha512-SsTKdsgWm+oDTBeNE/zHxxr5eJfZmE9/5yp/Ku+zJtcTAjELb3DXueWkDXmE9h8uHIbJzIb5wj5lPdzyrjT6hQ==",
    "dependencies": {
    "pino": "7.11.0",
    "tslib": "1.14.1"
    }
    },
    "node_modules/@walletconnect/logger/node_modules/tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    },
    "node_modules/@walletconnect/modal": {
    "version": "2.6.2",
    "resolved": "https://registry.npmjs.org/@walletconnect/modal/-/modal-2.6.2.tgz",
    "integrity": "sha512-eFopgKi8AjKf/0U4SemvcYw9zlLpx9njVN8sf6DAkowC2Md0gPU/UNEbH1Wwj407pEKnEds98pKWib1NN1ACoA==",
    "dependencies": {
    "@walletconnect/modal-core": "2.6.2",
    "@walletconnect/modal-ui": "2.6.2"
    }
    },
    "node_modules/@walletconnect/modal-core": {
    "version": "2.6.2",
    "resolved": "https://registry.npmjs.org/@walletconnect/modal-core/-/modal-core-2.6.2.tgz",
    "integrity": "sha512-cv8ibvdOJQv2B+nyxP9IIFdxvQznMz8OOr/oR/AaUZym4hjXNL/l1a2UlSQBXrVjo3xxbouMxLb3kBsHoYP2CA==",
    "dependencies": {
    "valtio": "1.11.2"
    }
    },
    "node_modules/@walletconnect/modal-ui": {
    "version": "2.6.2",
    "resolved": "https://registry.npmjs.org/@walletconnect/modal-ui/-/modal-ui-2.6.2.tgz",
    "integrity": "sha512-rbdstM1HPGvr7jprQkyPggX7rP4XiCG85ZA+zWBEX0dVQg8PpAgRUqpeub4xQKDgY7pY/xLRXSiCVdWGqvG2HA==",
    "dependencies": {
    "@walletconnect/modal-core": "2.6.2",
    "lit": "2.8.0",
    "motion": "10.16.2",
    "qrcode": "1.5.3"
    }
    },
    "node_modules/@walletconnect/randombytes": {
    "version": "1.0.3",
    "resolved": "https://registry.npmjs.org/@walletconnect/randombytes/-/randombytes-1.0.3.tgz",
    "integrity": "sha512-35lpzxcHFbTN3ABefC9W+uBpNZl1GC4Wpx0ed30gibfO/y9oLdy1NznbV96HARQKSBV9J9M/rrtIvf6a23jfYw==",
    "dependencies": {
    "@walletconnect/encoding": "^1.0.2",
    "@walletconnect/environment": "^1.0.1",
    "randombytes": "^2.1.0",
    "tslib": "1.14.1"
    }
    },
    "node_modules/@walletconnect/randombytes/node_modules/tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    },
    "node_modules/@walletconnect/relay-api": {
    "version": "1.0.9",
    "resolved": "https://registry.npmjs.org/@walletconnect/relay-api/-/relay-api-1.0.9.tgz",
    "integrity": "sha512-Q3+rylJOqRkO1D9Su0DPE3mmznbAalYapJ9qmzDgK28mYF9alcP3UwG/og5V7l7CFOqzCLi7B8BvcBUrpDj0Rg==",
    "dependencies": {
    "@walletconnect/jsonrpc-types": "^1.0.2",
    "tslib": "1.14.1"
    }
    },
    "node_modules/@walletconnect/relay-api/node_modules/tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    },
    "node_modules/@walletconnect/relay-auth": {
    "version": "1.0.4",
    "resolved": "https://registry.npmjs.org/@walletconnect/relay-auth/-/relay-auth-1.0.4.tgz",
    "integrity": "sha512-kKJcS6+WxYq5kshpPaxGHdwf5y98ZwbfuS4EE/NkQzqrDFm5Cj+dP8LofzWvjrrLkZq7Afy7WrQMXdLy8Sx7HQ==",
    "dependencies": {
    "@stablelib/ed25519": "^1.0.2",
    "@stablelib/random": "^1.0.1",
    "@walletconnect/safe-json": "^1.0.1",
    "@walletconnect/time": "^1.0.2",
    "tslib": "1.14.1",
    "uint8arrays": "^3.0.0"
    }
    },
    "node_modules/@walletconnect/relay-auth/node_modules/tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    },
    "node_modules/@walletconnect/safe-json": {
    "version": "1.0.2",
    "resolved": "https://registry.npmjs.org/@walletconnect/safe-json/-/safe-json-1.0.2.tgz",
    "integrity": "sha512-Ogb7I27kZ3LPC3ibn8ldyUr5544t3/STow9+lzz7Sfo808YD7SBWk7SAsdBFlYgP2zDRy2hS3sKRcuSRM0OTmA==",
    "dependencies": {
    "tslib": "1.14.1"
    }
    },
    "node_modules/@walletconnect/safe-json/node_modules/tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    },
    "node_modules/@walletconnect/sign-client": {
    "version": "2.10.1",
    "resolved": "https://registry.npmjs.org/@walletconnect/sign-client/-/sign-client-2.10.1.tgz",
    "integrity": "sha512-iG3eJGi1yXeG3xGeVSSMf8wDFyx239B0prLQfy1uYDtYFb2ynnH/09oqAZyKn96W5nfQzUgM2Mz157PVdloH3Q==",
    "dependencies": {
    "@walletconnect/core": "2.10.1",
    "@walletconnect/events": "^1.0.1",
    "@walletconnect/heartbeat": "1.2.1",
    "@walletconnect/jsonrpc-utils": "1.0.8",
    "@walletconnect/logger": "^2.0.1",
    "@walletconnect/time": "^1.0.2",
    "@walletconnect/types": "2.10.1",
    "@walletconnect/utils": "2.10.1",
    "events": "^3.3.0"
    }
    },
    "node_modules/@walletconnect/time": {
    "version": "1.0.2",
    "resolved": "https://registry.npmjs.org/@walletconnect/time/-/time-1.0.2.tgz",
    "integrity": "sha512-uzdd9woDcJ1AaBZRhqy5rNC9laqWGErfc4dxA9a87mPdKOgWMD85mcFo9dIYIts/Jwocfwn07EC6EzclKubk/g==",
    "dependencies": {
    "tslib": "1.14.1"
    }
    },
    "node_modules/@walletconnect/time/node_modules/tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    },
    "node_modules/@walletconnect/types": {
    "version": "2.10.1",
    "resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-2.10.1.tgz",
    "integrity": "sha512-7pccAhajQdiH2kYywjE1XI64IqRI+4ioyGy0wvz8d0UFQ/DSG3MLKR8jHf5aTOafQQ/HRLz6xvlzN4a7gIVkUQ==",
    "dependencies": {
    "@walletconnect/events": "^1.0.1",
    "@walletconnect/heartbeat": "1.2.1",
    "@walletconnect/jsonrpc-types": "1.0.3",
    "@walletconnect/keyvaluestorage": "^1.0.2",
    "@walletconnect/logger": "^2.0.1",
    "events": "^3.3.0"
    }
    },
    "node_modules/@walletconnect/universal-provider": {
    "version": "2.10.1",
    "resolved": "https://registry.npmjs.org/@walletconnect/universal-provider/-/universal-provider-2.10.1.tgz",
    "integrity": "sha512-81QxTH/X4dRoYCz0U9iOrBYOcj7N897ONcB57wsGhEkV7Rc9htmWJq2CzeOuxvVZ+pNZkE+/aw9LrhizO1Ltxg==",
    "dependencies": {
    "@walletconnect/jsonrpc-http-connection": "^1.0.7",
    "@walletconnect/jsonrpc-provider": "1.0.13",
    "@walletconnect/jsonrpc-types": "^1.0.2",
    "@walletconnect/jsonrpc-utils": "^1.0.7",
    "@walletconnect/logger": "^2.0.1",
    "@walletconnect/sign-client": "2.10.1",
    "@walletconnect/types": "2.10.1",
    "@walletconnect/utils": "2.10.1",
    "events": "^3.3.0"
    }
    },
    "node_modules/@walletconnect/utils": {
    "version": "2.10.1",
    "resolved": "https://registry.npmjs.org/@walletconnect/utils/-/utils-2.10.1.tgz",
    "integrity": "sha512-DM0dKgm9O58l7VqJEyV2OVv16XRePhDAReI23let6WdW1dSpw/Y/A89Lp99ZJOjLm2FxyblMRF3YRaZtHwBffw==",
    "dependencies": {
    "@stablelib/chacha20poly1305": "1.0.1",
    "@stablelib/hkdf": "1.0.1",
    "@stablelib/random": "^1.0.2",
    "@stablelib/sha256": "1.0.1",
    "@stablelib/x25519": "^1.0.3",
    "@walletconnect/relay-api": "^1.0.9",
    "@walletconnect/safe-json": "^1.0.2",
    "@walletconnect/time": "^1.0.2",
    "@walletconnect/types": "2.10.1",
    "@walletconnect/window-getters": "^1.0.1",
    "@walletconnect/window-metadata": "^1.0.1",
    "detect-browser": "5.3.0",
    "query-string": "7.1.3",
    "uint8arrays": "^3.1.0"
    }
    },
    "node_modules/@walletconnect/utils/node_modules/query-string": {
    "version": "7.1.3",
    "resolved": "https://registry.npmjs.org/query-string/-/query-string-7.1.3.tgz",
    "integrity": "sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==",
    "dependencies": {
    "decode-uri-component": "^0.2.2",
    "filter-obj": "^1.1.0",
    "split-on-first": "^1.0.0",
    "strict-uri-encode": "^2.0.0"
    },
    "engines": {
    "node": ">=6"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/@walletconnect/window-getters": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/@walletconnect/window-getters/-/window-getters-1.0.1.tgz",
    "integrity": "sha512-vHp+HqzGxORPAN8gY03qnbTMnhqIwjeRJNOMOAzePRg4xVEEE2WvYsI9G2NMjOknA8hnuYbU3/hwLcKbjhc8+Q==",
    "dependencies": {
    "tslib": "1.14.1"
    }
    },
    "node_modules/@walletconnect/window-getters/node_modules/tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    },
    "node_modules/@walletconnect/window-metadata": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/@walletconnect/window-metadata/-/window-metadata-1.0.1.tgz",
    "integrity": "sha512-9koTqyGrM2cqFRW517BPY/iEtUDx2r1+Pwwu5m7sJ7ka79wi3EyqhqcICk/yDmv6jAS1rjKgTKXlEhanYjijcA==",
    "dependencies": {
    "@walletconnect/window-getters": "^1.0.1",
    "tslib": "1.14.1"
    }
    },
    "node_modules/@walletconnect/window-metadata/node_modules/tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    },
    "node_modules/@web3modal/core": {
    "version": "3.0.2",
    "resolved": "https://registry.npmjs.org/@web3modal/core/-/core-3.0.2.tgz",
    "integrity": "sha512-Dr7ikLOgUPz3W66mCqu48Ca/GIn26Dj1CaRxIbKJzcHfMiumGGYgZRIElxAkGh9qaEMW+EylC3fIE8sPHFA1cg==",
    "dependencies": {
    "valtio": "1.11.2"
    }
    },
    "node_modules/@web3modal/polyfills": {
    "version": "3.0.2",
    "resolved": "https://registry.npmjs.org/@web3modal/polyfills/-/polyfills-3.0.2.tgz",
    "integrity": "sha512-Br1TfkqYPLdscwJx8ZBQUMZPJ1twdNygtJrdGwU5pcrjExxN80fIrBtfMuAu0yBB/4nlNVG8tw91FZJXUKK8ew==",
    "dependencies": {
    "buffer": "6.0.3"
    }
    },
    "node_modules/@web3modal/scaffold": {
    "version": "3.0.2",
    "resolved": "https://registry.npmjs.org/@web3modal/scaffold/-/scaffold-3.0.2.tgz",
    "integrity": "sha512-pJwm5aooVGf5CEEgypuveTicbs+a7FNwm0ru98KiJ7XUivprr2Ufu0ZXVX/n3/NQcu7SDx9UnuPUTK1HeQQnrw==",
    "dependencies": {
    "@web3modal/core": "3.0.2",
    "@web3modal/ui": "3.0.2",
    "lit": "2.8.0"
    }
    },
    "node_modules/@web3modal/ui": {
    "version": "3.0.2",
    "resolved": "https://registry.npmjs.org/@web3modal/ui/-/ui-3.0.2.tgz",
    "integrity": "sha512-xGzbYdmzy6az6FmiJ507Hh1nBjD1llaudPlpA6Gipm/4XikSCNe3wOdH0+gQaKRqvGTFaoVrtej1Vgnoil64Og==",
    "dependencies": {
    "lit": "2.8.0",
    "qrcode": "1.5.3"
    }
    },
    "node_modules/@web3modal/wagmi": {
    "version": "3.0.2",
    "resolved": "https://registry.npmjs.org/@web3modal/wagmi/-/wagmi-3.0.2.tgz",
    "integrity": "sha512-hYpfbAbnt/dZkjOyJLBMyk0NKip3qW8Yj8suSDm6mf01+GBYWVw2BDYBtx5C0biQxSoxR7kWu4BGzA0qAQNPJQ==",
    "dependencies": {
    "@web3modal/polyfills": "3.0.2",
    "@web3modal/scaffold": "3.0.2"
    },
    "optionalDependencies": {
    "react": ">=17",
    "react-dom": ">=17",
    "vue": ">=3"
    },
    "peerDependencies": {
    "@wagmi/core": ">=1",
    "react": ">=17",
    "react-dom": ">=17",
    "viem": ">=1",
    "vue": ">=3"
    },
    "peerDependenciesMeta": {
    "react": {
    "optional": true
    },
    "react-dom": {
    "optional": true
    },
    "vue": {
    "optional": true
    }
    }
    },
    "node_modules/abbrev": {
    "version": "1.1.1",
    "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
    "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="
    },
    "node_modules/abitype": {
    "version": "0.8.7",
    "resolved": "https://registry.npmjs.org/abitype/-/abitype-0.8.7.tgz",
    "integrity": "sha512-wQ7hV8Yg/yKmGyFpqrNZufCxbszDe5es4AZGYPBitocfSqXtjrTG9JMWFcc4N30ukl2ve48aBTwt7NJxVQdU3w==",
    "peerDependencies": {
    "typescript": ">=5.0.4",
    "zod": "^3 >=3.19.1"
    },
    "peerDependenciesMeta": {
    "zod": {
    "optional": true
    }
    }
    },
    "node_modules/abstract-leveldown": {
    "version": "6.3.0",
    "resolved": "https://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-6.3.0.tgz",
    "integrity": "sha512-TU5nlYgta8YrBMNpc9FwQzRbiXsj49gsALsXadbGHt9CROPzX5fB0rWDR5mtdpOOKa5XqRFpbj1QroPAoPzVjQ==",
    "dependencies": {
    "buffer": "^5.5.0",
    "immediate": "^3.2.3",
    "level-concat-iterator": "~2.0.0",
    "level-supports": "~1.0.0",
    "xtend": "~4.0.0"
    },
    "engines": {
    "node": ">=6"
    }
    },
    "node_modules/abstract-leveldown/node_modules/buffer": {
    "version": "5.7.1",
    "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
    "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
    "funding": [
    {
    "type": "github",
    "url": "https://github.com/sponsors/feross"
    },
    {
    "type": "patreon",
    "url": "https://www.patreon.com/feross"
    },
    {
    "type": "consulting",
    "url": "https://feross.org/support"
    }
    ],
    "dependencies": {
    "base64-js": "^1.3.1",
    "ieee754": "^1.1.13"
    }
    },
    "node_modules/aes-js": {
    "version": "4.0.0-beta.5",
    "resolved": "https://registry.npmjs.org/aes-js/-/aes-js-4.0.0-beta.5.tgz",
    "integrity": "sha512-G965FqalsNyrPqgEGON7nIx1e/OVENSgiEIzyC63haUMuvNnwIgIjMs52hlTCKhkBny7A2ORNlfY9Zu+jmGk1Q=="
    },
    "node_modules/agent-base": {
    "version": "6.0.2",
    "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
    "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
    "dependencies": {
    "debug": "4"
    },
    "engines": {
    "node": ">= 6.0.0"
    }
    },
    "node_modules/agentkeepalive": {
    "version": "4.5.0",
    "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.5.0.tgz",
    "integrity": "sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==",
    "dependencies": {
    "humanize-ms": "^1.2.1"
    },
    "engines": {
    "node": ">= 8.0.0"
    }
    },
    "node_modules/aggregate-error": {
    "version": "3.1.0",
    "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz",
    "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==",
    "dependencies": {
    "clean-stack": "^2.0.0",
    "indent-string": "^4.0.0"
    },
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/algo-msgpack-with-bigint": {
    "version": "2.1.1",
    "resolved": "https://registry.npmjs.org/algo-msgpack-with-bigint/-/algo-msgpack-with-bigint-2.1.1.tgz",
    "integrity": "sha512-F1tGh056XczEaEAqu7s+hlZUDWwOBT70Eq0lfMpBP2YguSQVyxRbprLq5rELXKQOyOaixTWYhMeMQMzP0U5FoQ==",
    "engines": {
    "node": ">= 10"
    }
    },
    "node_modules/algosdk": {
    "version": "2.6.0",
    "resolved": "https://registry.npmjs.org/algosdk/-/algosdk-2.6.0.tgz",
    "integrity": "sha512-xYSb2xPG4nLPlJvqjA4ebR0s++YrjZK1+UfaEV84u2HkIwuRhEUmryDPcAuLIfTp3eyY99v/FduOK02K2Hnu8Q==",
    "dependencies": {
    "algo-msgpack-with-bigint": "^2.1.1",
    "buffer": "^6.0.3",
    "cross-fetch": "^4.0.0",
    "hi-base32": "^0.5.1",
    "js-sha256": "^0.9.0",
    "js-sha3": "^0.8.0",
    "js-sha512": "^0.8.0",
    "json-bigint": "^1.0.0",
    "tweetnacl": "^1.0.3",
    "vlq": "^2.0.4"
    },
    "engines": {
    "node": ">=18.0.0"
    }
    },
    "node_modules/ansi-align": {
    "version": "3.0.1",
    "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz",
    "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==",
    "dependencies": {
    "string-width": "^4.1.0"
    }
    },
    "node_modules/ansi-regex": {
    "version": "6.0.1",
    "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz",
    "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==",
    "engines": {
    "node": ">=12"
    },
    "funding": {
    "url": "https://github.com/chalk/ansi-regex?sponsor=1"
    }
    },
    "node_modules/ansi-styles": {
    "version": "4.3.0",
    "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
    "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
    "dependencies": {
    "color-convert": "^2.0.1"
    },
    "engines": {
    "node": ">=8"
    },
    "funding": {
    "url": "https://github.com/chalk/ansi-styles?sponsor=1"
    }
    },
    "node_modules/aproba": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz",
    "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ=="
    },
    "node_modules/are-we-there-yet": {
    "version": "3.0.1",
    "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz",
    "integrity": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==",
    "dependencies": {
    "delegates": "^1.0.0",
    "readable-stream": "^3.6.0"
    },
    "engines": {
    "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
    }
    },
    "node_modules/argparse": {
    "version": "2.0.1",
    "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
    "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="
    },
    "node_modules/array-union": {
    "version": "2.1.0",
    "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
    "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/asn1.js": {
    "version": "5.4.1",
    "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz",
    "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==",
    "dependencies": {
    "bn.js": "^4.0.0",
    "inherits": "^2.0.1",
    "minimalistic-assert": "^1.0.0",
    "safer-buffer": "^2.1.0"
    }
    },
    "node_modules/async-mutex": {
    "version": "0.2.6",
    "resolved": "https://registry.npmjs.org/async-mutex/-/async-mutex-0.2.6.tgz",
    "integrity": "sha512-Hs4R+4SPgamu6rSGW8C7cV9gaWUKEHykfzCCvIRuaVv636Ju10ZdeUbvb4TBEW0INuq2DHZqXbK4Nd3yG4RaRw==",
    "dependencies": {
    "tslib": "^2.0.0"
    }
    },
    "node_modules/asynckit": {
    "version": "0.4.0",
    "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
    "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="
    },
    "node_modules/atomic-sleep": {
    "version": "1.0.0",
    "resolved": "https://registry.npmjs.org/atomic-sleep/-/atomic-sleep-1.0.0.tgz",
    "integrity": "sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==",
    "engines": {
    "node": ">=8.0.0"
    }
    },
    "node_modules/available-typed-arrays": {
    "version": "1.0.5",
    "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz",
    "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==",
    "engines": {
    "node": ">= 0.4"
    },
    "funding": {
    "url": "https://github.com/sponsors/ljharb"
    }
    },
    "node_modules/axios": {
    "version": "1.4.0",
    "resolved": "https://registry.npmjs.org/axios/-/axios-1.4.0.tgz",
    "integrity": "sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA==",
    "dependencies": {
    "follow-redirects": "^1.15.0",
    "form-data": "^4.0.0",
    "proxy-from-env": "^1.1.0"
    }
    },
    "node_modules/balanced-match": {
    "version": "1.0.2",
    "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
    "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
    },
    "node_modules/base-x": {
    "version": "3.0.9",
    "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz",
    "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==",
    "dependencies": {
    "safe-buffer": "^5.0.1"
    }
    },
    "node_modules/base64-js": {
    "version": "1.5.1",
    "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
    "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
    "funding": [
    {
    "type": "github",
    "url": "https://github.com/sponsors/feross"
    },
    {
    "type": "patreon",
    "url": "https://www.patreon.com/feross"
    },
    {
    "type": "consulting",
    "url": "https://feross.org/support"
    }
    ]
    },
    "node_modules/bech32": {
    "version": "1.1.4",
    "resolved": "https://registry.npmjs.org/bech32/-/bech32-1.1.4.tgz",
    "integrity": "sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ=="
    },
    "node_modules/bigint-buffer": {
    "version": "1.1.5",
    "resolved": "https://registry.npmjs.org/bigint-buffer/-/bigint-buffer-1.1.5.tgz",
    "integrity": "sha512-trfYco6AoZ+rKhKnxA0hgX0HAbVP/s808/EuDSe2JDzUnCp/xAsli35Orvk67UrTEcwuxZqYZDmfA2RXJgxVvA==",
    "hasInstallScript": true,
    "dependencies": {
    "bindings": "^1.3.0"
    },
    "engines": {
    "node": ">= 10.0.0"
    }
    },
    "node_modules/bignumber.js": {
    "version": "9.1.2",
    "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.1.2.tgz",
    "integrity": "sha512-2/mKyZH9K85bzOEfhXDBFZTGd1CTs+5IHpeFQo9luiBG7hghdC851Pj2WAhb6E3R6b9tZj/XKhbg4fum+Kepug==",
    "engines": {
    "node": "*"
    }
    },
    "node_modules/bind-decorator": {
    "version": "1.0.11",
    "resolved": "https://registry.npmjs.org/bind-decorator/-/bind-decorator-1.0.11.tgz",
    "integrity": "sha512-yzkH0uog6Vv/vQ9+rhSKxecnqGUZHYncg7qS7voz3Q76+TAi1SGiOKk2mlOvusQnFz9Dc4BC/NMkeXu11YgjJg=="
    },
    "node_modules/bindings": {
    "version": "1.5.0",
    "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz",
    "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==",
    "dependencies": {
    "file-uri-to-path": "1.0.0"
    }
    },
    "node_modules/blakejs": {
    "version": "1.2.1",
    "resolved": "https://registry.npmjs.org/blakejs/-/blakejs-1.2.1.tgz",
    "integrity": "sha512-QXUSXI3QVc/gJME0dBpXrag1kbzOqCjCX8/b54ntNyW6sjtoqxqRk3LTmXzaJoh71zMsDCjM+47jS7XiwN/+fQ=="
    },
    "node_modules/bn.js": {
    "version": "4.12.0",
    "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
    "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA=="
    },
    "node_modules/borsh": {
    "version": "0.7.0",
    "resolved": "https://registry.npmjs.org/borsh/-/borsh-0.7.0.tgz",
    "integrity": "sha512-CLCsZGIBCFnPtkNnieW/a8wmreDmfUtjU2m9yHrzPXIlNbqVs0AQrSatSG6vdNYUqdc83tkQi2eHfF98ubzQLA==",
    "dependencies": {
    "bn.js": "^5.2.0",
    "bs58": "^4.0.0",
    "text-encoding-utf-8": "^1.0.2"
    }
    },
    "node_modules/borsh/node_modules/bn.js": {
    "version": "5.2.1",
    "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz",
    "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ=="
    },
    "node_modules/boxen": {
    "version": "7.1.1",
    "resolved": "https://registry.npmjs.org/boxen/-/boxen-7.1.1.tgz",
    "integrity": "sha512-2hCgjEmP8YLWQ130n2FerGv7rYpfBmnmp9Uy2Le1vge6X3gZIfSmEzP5QTDElFxcvVcXlEn8Aq6MU/PZygIOog==",
    "dependencies": {
    "ansi-align": "^3.0.1",
    "camelcase": "^7.0.1",
    "chalk": "^5.2.0",
    "cli-boxes": "^3.0.0",
    "string-width": "^5.1.2",
    "type-fest": "^2.13.0",
    "widest-line": "^4.0.1",
    "wrap-ansi": "^8.1.0"
    },
    "engines": {
    "node": ">=14.16"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/boxen/node_modules/chalk": {
    "version": "5.3.0",
    "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz",
    "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==",
    "engines": {
    "node": "^12.17.0 || ^14.13 || >=16.0.0"
    },
    "funding": {
    "url": "https://github.com/chalk/chalk?sponsor=1"
    }
    },
    "node_modules/boxen/node_modules/emoji-regex": {
    "version": "9.2.2",
    "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
    "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="
    },
    "node_modules/boxen/node_modules/string-width": {
    "version": "5.1.2",
    "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
    "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
    "dependencies": {
    "eastasianwidth": "^0.2.0",
    "emoji-regex": "^9.2.2",
    "strip-ansi": "^7.0.1"
    },
    "engines": {
    "node": ">=12"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/brace-expansion": {
    "version": "2.0.1",
    "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
    "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
    "dependencies": {
    "balanced-match": "^1.0.0"
    }
    },
    "node_modules/braces": {
    "version": "3.0.2",
    "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
    "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
    "dependencies": {
    "fill-range": "^7.0.1"
    },
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/brorand": {
    "version": "1.1.0",
    "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz",
    "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w=="
    },
    "node_modules/browserify-aes": {
    "version": "1.2.0",
    "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz",
    "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==",
    "dependencies": {
    "buffer-xor": "^1.0.3",
    "cipher-base": "^1.0.0",
    "create-hash": "^1.1.0",
    "evp_bytestokey": "^1.0.3",
    "inherits": "^2.0.1",
    "safe-buffer": "^5.0.1"
    }
    },
    "node_modules/bs58": {
    "version": "4.0.1",
    "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz",
    "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==",
    "dependencies": {
    "base-x": "^3.0.2"
    }
    },
    "node_modules/bs58check": {
    "version": "2.1.2",
    "resolved": "https://registry.npmjs.org/bs58check/-/bs58check-2.1.2.tgz",
    "integrity": "sha512-0TS1jicxdU09dwJMNZtVAfzPi6Q6QeN0pM1Fkzrjn+XYHvzMKPU3pHVpva+769iNVSfIYWf7LJ6WR+BuuMf8cA==",
    "dependencies": {
    "bs58": "^4.0.0",
    "create-hash": "^1.1.0",
    "safe-buffer": "^5.1.2"
    }
    },
    "node_modules/buffer": {
    "version": "6.0.3",
    "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz",
    "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==",
    "funding": [
    {
    "type": "github",
    "url": "https://github.com/sponsors/feross"
    },
    {
    "type": "patreon",
    "url": "https://www.patreon.com/feross"
    },
    {
    "type": "consulting",
    "url": "https://feross.org/support"
    }
    ],
    "dependencies": {
    "base64-js": "^1.3.1",
    "ieee754": "^1.2.1"
    }
    },
    "node_modules/buffer-from": {
    "version": "1.1.2",
    "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
    "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ=="
    },
    "node_modules/buffer-xor": {
    "version": "1.0.3",
    "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz",
    "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ=="
    },
    "node_modules/bufferutil": {
    "version": "4.0.7",
    "resolved": "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.7.tgz",
    "integrity": "sha512-kukuqc39WOHtdxtw4UScxF/WVnMFVSQVKhtx3AjZJzhd0RGZZldcrfSEbVsWWe6KNH253574cq5F+wpv0G9pJw==",
    "hasInstallScript": true,
    "optional": true,
    "dependencies": {
    "node-gyp-build": "^4.3.0"
    },
    "engines": {
    "node": ">=6.14.2"
    }
    },
    "node_modules/builtins": {
    "version": "5.0.1",
    "resolved": "https://registry.npmjs.org/builtins/-/builtins-5.0.1.tgz",
    "integrity": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==",
    "dependencies": {
    "semver": "^7.0.0"
    }
    },
    "node_modules/cacache": {
    "version": "17.1.4",
    "resolved": "https://registry.npmjs.org/cacache/-/cacache-17.1.4.tgz",
    "integrity": "sha512-/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A==",
    "dependencies": {
    "@npmcli/fs": "^3.1.0",
    "fs-minipass": "^3.0.0",
    "glob": "^10.2.2",
    "lru-cache": "^7.7.1",
    "minipass": "^7.0.3",
    "minipass-collect": "^1.0.2",
    "minipass-flush": "^1.0.5",
    "minipass-pipeline": "^1.2.4",
    "p-map": "^4.0.0",
    "ssri": "^10.0.0",
    "tar": "^6.1.11",
    "unique-filename": "^3.0.0"
    },
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/cacache/node_modules/minipass": {
    "version": "7.0.3",
    "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.3.tgz",
    "integrity": "sha512-LhbbwCfz3vsb12j/WkWQPZfKTsgqIe1Nf/ti1pKjYESGLHIVjWU96G9/ljLH4F9mWNVhlQOm0VySdAWzf05dpg==",
    "engines": {
    "node": ">=16 || 14 >=14.17"
    }
    },
    "node_modules/cacheable-lookup": {
    "version": "7.0.0",
    "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-7.0.0.tgz",
    "integrity": "sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==",
    "engines": {
    "node": ">=14.16"
    }
    },
    "node_modules/cacheable-request": {
    "version": "10.2.13",
    "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.13.tgz",
    "integrity": "sha512-3SD4rrMu1msNGEtNSt8Od6enwdo//U9s4ykmXfA2TD58kcLkCobtCDiby7kNyj7a/Q7lz/mAesAFI54rTdnvBA==",
    "dependencies": {
    "@types/http-cache-semantics": "^4.0.1",
    "get-stream": "^6.0.1",
    "http-cache-semantics": "^4.1.1",
    "keyv": "^4.5.3",
    "mimic-response": "^4.0.0",
    "normalize-url": "^8.0.0",
    "responselike": "^3.0.0"
    },
    "engines": {
    "node": ">=14.16"
    }
    },
    "node_modules/call-bind": {
    "version": "1.0.2",
    "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
    "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
    "dependencies": {
    "function-bind": "^1.1.1",
    "get-intrinsic": "^1.0.2"
    },
    "funding": {
    "url": "https://github.com/sponsors/ljharb"
    }
    },
    "node_modules/camelcase": {
    "version": "7.0.1",
    "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-7.0.1.tgz",
    "integrity": "sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==",
    "engines": {
    "node": ">=14.16"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/castable-video": {
    "version": "0.5.2",
    "resolved": "https://registry.npmjs.org/castable-video/-/castable-video-0.5.2.tgz",
    "integrity": "sha512-eP19NY8AF9G+Xj87R447GMkWuUc0W3DSNx5qOypH/+mr2aaHRONaIK5H4bxMgpXZslZ2vNNvCuVuKi3VdCUGEA=="
    },
    "node_modules/chalk": {
    "version": "4.1.2",
    "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
    "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
    "dev": true,
    "dependencies": {
    "ansi-styles": "^4.1.0",
    "supports-color": "^7.1.0"
    },
    "engines": {
    "node": ">=10"
    },
    "funding": {
    "url": "https://github.com/chalk/chalk?sponsor=1"
    }
    },
    "node_modules/chownr": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz",
    "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==",
    "engines": {
    "node": ">=10"
    }
    },
    "node_modules/ci-info": {
    "version": "3.8.0",
    "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz",
    "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==",
    "funding": [
    {
    "type": "github",
    "url": "https://github.com/sponsors/sibiraj-s"
    }
    ],
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/cipher-base": {
    "version": "1.0.4",
    "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz",
    "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==",
    "dependencies": {
    "inherits": "^2.0.1",
    "safe-buffer": "^5.0.1"
    }
    },
    "node_modules/clean-stack": {
    "version": "2.2.0",
    "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz",
    "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==",
    "engines": {
    "node": ">=6"
    }
    },
    "node_modules/cli-boxes": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-3.0.0.tgz",
    "integrity": "sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==",
    "engines": {
    "node": ">=10"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/cli-table3": {
    "version": "0.6.3",
    "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.3.tgz",
    "integrity": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==",
    "dependencies": {
    "string-width": "^4.2.0"
    },
    "engines": {
    "node": "10.* || >= 12.*"
    },
    "optionalDependencies": {
    "@colors/colors": "1.5.0"
    }
    },
    "node_modules/cliui": {
    "version": "6.0.0",
    "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz",
    "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==",
    "dependencies": {
    "string-width": "^4.2.0",
    "strip-ansi": "^6.0.0",
    "wrap-ansi": "^6.2.0"
    }
    },
    "node_modules/cliui/node_modules/ansi-regex": {
    "version": "5.0.1",
    "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
    "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/cliui/node_modules/strip-ansi": {
    "version": "6.0.1",
    "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
    "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
    "dependencies": {
    "ansi-regex": "^5.0.1"
    },
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/cliui/node_modules/wrap-ansi": {
    "version": "6.2.0",
    "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
    "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
    "dependencies": {
    "ansi-styles": "^4.0.0",
    "string-width": "^4.1.0",
    "strip-ansi": "^6.0.0"
    },
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/clsx": {
    "version": "1.2.1",
    "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz",
    "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==",
    "engines": {
    "node": ">=6"
    }
    },
    "node_modules/color-convert": {
    "version": "2.0.1",
    "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
    "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
    "dependencies": {
    "color-name": "~1.1.4"
    },
    "engines": {
    "node": ">=7.0.0"
    }
    },
    "node_modules/color-name": {
    "version": "1.1.4",
    "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
    "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
    },
    "node_modules/color-support": {
    "version": "1.1.3",
    "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz",
    "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==",
    "bin": {
    "color-support": "bin.js"
    }
    },
    "node_modules/combined-stream": {
    "version": "1.0.8",
    "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
    "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
    "dependencies": {
    "delayed-stream": "~1.0.0"
    },
    "engines": {
    "node": ">= 0.8"
    }
    },
    "node_modules/commander": {
    "version": "10.0.1",
    "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz",
    "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==",
    "engines": {
    "node": ">=14"
    }
    },
    "node_modules/concat-map": {
    "version": "0.0.1",
    "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
    "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="
    },
    "node_modules/config-chain": {
    "version": "1.1.13",
    "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz",
    "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==",
    "dependencies": {
    "ini": "^1.3.4",
    "proto-list": "~1.2.1"
    }
    },
    "node_modules/config-chain/node_modules/ini": {
    "version": "1.3.8",
    "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
    "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="
    },
    "node_modules/configstore": {
    "version": "6.0.0",
    "resolved": "https://registry.npmjs.org/configstore/-/configstore-6.0.0.tgz",
    "integrity": "sha512-cD31W1v3GqUlQvbBCGcXmd2Nj9SvLDOP1oQ0YFuLETufzSPaKp11rYBsSOm7rCsW3OnIRAFM3OxRhceaXNYHkA==",
    "dependencies": {
    "dot-prop": "^6.0.1",
    "graceful-fs": "^4.2.6",
    "unique-string": "^3.0.0",
    "write-file-atomic": "^3.0.3",
    "xdg-basedir": "^5.0.1"
    },
    "engines": {
    "node": ">=12"
    },
    "funding": {
    "url": "https://github.com/yeoman/configstore?sponsor=1"
    }
    },
    "node_modules/console-control-strings": {
    "version": "1.1.0",
    "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz",
    "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ=="
    },
    "node_modules/copy-to-clipboard": {
    "version": "3.3.3",
    "resolved": "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.3.3.tgz",
    "integrity": "sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==",
    "dependencies": {
    "toggle-selection": "^1.0.6"
    }
    },
    "node_modules/core-js": {
    "version": "3.27.2",
    "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.27.2.tgz",
    "integrity": "sha512-9ashVQskuh5AZEZ1JdQWp1GqSoC1e1G87MzRqg2gIfVAQ7Qn9K+uFj8EcniUFA4P2NLZfV+TOlX1SzoKfo+s7w==",
    "hasInstallScript": true,
    "funding": {
    "type": "opencollective",
    "url": "https://opencollective.com/core-js"
    }
    },
    "node_modules/crc-32": {
    "version": "1.2.2",
    "resolved": "https://registry.npmjs.org/crc-32/-/crc-32-1.2.2.tgz",
    "integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==",
    "bin": {
    "crc32": "bin/crc32.njs"
    },
    "engines": {
    "node": ">=0.8"
    }
    },
    "node_modules/create-hash": {
    "version": "1.2.0",
    "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz",
    "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==",
    "dependencies": {
    "cipher-base": "^1.0.1",
    "inherits": "^2.0.1",
    "md5.js": "^1.3.4",
    "ripemd160": "^2.0.1",
    "sha.js": "^2.4.0"
    }
    },
    "node_modules/create-hmac": {
    "version": "1.1.7",
    "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz",
    "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==",
    "dependencies": {
    "cipher-base": "^1.0.3",
    "create-hash": "^1.1.0",
    "inherits": "^2.0.1",
    "ripemd160": "^2.0.0",
    "safe-buffer": "^5.0.1",
    "sha.js": "^2.4.8"
    }
    },
    "node_modules/cross-fetch": {
    "version": "4.0.0",
    "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-4.0.0.tgz",
    "integrity": "sha512-e4a5N8lVvuLgAWgnCrLr2PP0YyDOTHa9H/Rj54dirp61qXnNq46m82bRhNqIA5VccJtWBvPTFRV3TtvHUKPB1g==",
    "dependencies": {
    "node-fetch": "^2.6.12"
    }
    },
    "node_modules/cross-spawn": {
    "version": "7.0.3",
    "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
    "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
    "dependencies": {
    "path-key": "^3.1.0",
    "shebang-command": "^2.0.0",
    "which": "^2.0.1"
    },
    "engines": {
    "node": ">= 8"
    }
    },
    "node_modules/crypto-random-string": {
    "version": "4.0.0",
    "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-4.0.0.tgz",
    "integrity": "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==",
    "dependencies": {
    "type-fest": "^1.0.1"
    },
    "engines": {
    "node": ">=12"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/crypto-random-string/node_modules/type-fest": {
    "version": "1.4.0",
    "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz",
    "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==",
    "engines": {
    "node": ">=10"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/csstype": {
    "version": "3.1.2",
    "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz",
    "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==",
    "optional": true
    },
    "node_modules/custom-event-polyfill": {
    "version": "1.0.7",
    "resolved": "https://registry.npmjs.org/custom-event-polyfill/-/custom-event-polyfill-1.0.7.tgz",
    "integrity": "sha512-TDDkd5DkaZxZFM8p+1I3yAlvM3rSr1wbrOliG4yJiwinMZN8z/iGL7BTlDkrJcYTmgUSb4ywVCc3ZaUtOtC76w=="
    },
    "node_modules/custom-media-element": {
    "version": "0.2.0",
    "resolved": "https://registry.npmjs.org/custom-media-element/-/custom-media-element-0.2.0.tgz",
    "integrity": "sha512-N++UzR1COFip4DrtZkS99VDCcQvVCJmbqI7qaxZtHWKdAv/RUYIOnmJbP/HHk2un0PjvtFNKHfNLiFsd9BmnMQ=="
    },
    "node_modules/debug": {
    "version": "4.3.4",
    "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
    "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
    "dependencies": {
    "ms": "2.1.2"
    },
    "engines": {
    "node": ">=6.0"
    },
    "peerDependenciesMeta": {
    "supports-color": {
    "optional": true
    }
    }
    },
    "node_modules/decamelize": {
    "version": "1.2.0",
    "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
    "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==",
    "engines": {
    "node": ">=0.10.0"
    }
    },
    "node_modules/decode-uri-component": {
    "version": "0.2.2",
    "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz",
    "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==",
    "engines": {
    "node": ">=0.10"
    }
    },
    "node_modules/decompress-response": {
    "version": "6.0.0",
    "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz",
    "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==",
    "dependencies": {
    "mimic-response": "^3.1.0"
    },
    "engines": {
    "node": ">=10"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/decompress-response/node_modules/mimic-response": {
    "version": "3.1.0",
    "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz",
    "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==",
    "engines": {
    "node": ">=10"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/deep-extend": {
    "version": "0.6.0",
    "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz",
    "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==",
    "engines": {
    "node": ">=4.0.0"
    }
    },
    "node_modules/defer-to-connect": {
    "version": "2.0.1",
    "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz",
    "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==",
    "engines": {
    "node": ">=10"
    }
    },
    "node_modules/deferred-leveldown": {
    "version": "5.3.0",
    "resolved": "https://registry.npmjs.org/deferred-leveldown/-/deferred-leveldown-5.3.0.tgz",
    "integrity": "sha512-a59VOT+oDy7vtAbLRCZwWgxu2BaCfd5Hk7wxJd48ei7I+nsg8Orlb9CLG0PMZienk9BSUKgeAqkO2+Lw+1+Ukw==",
    "dependencies": {
    "abstract-leveldown": "~6.2.1",
    "inherits": "^2.0.3"
    },
    "engines": {
    "node": ">=6"
    }
    },
    "node_modules/deferred-leveldown/node_modules/abstract-leveldown": {
    "version": "6.2.3",
    "resolved": "https://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-6.2.3.tgz",
    "integrity": "sha512-BsLm5vFMRUrrLeCcRc+G0t2qOaTzpoJQLOubq2XM72eNpjF5UdU5o/5NvlNhx95XHcAvcl8OMXr4mlg/fRgUXQ==",
    "dependencies": {
    "buffer": "^5.5.0",
    "immediate": "^3.2.3",
    "level-concat-iterator": "~2.0.0",
    "level-supports": "~1.0.0",
    "xtend": "~4.0.0"
    },
    "engines": {
    "node": ">=6"
    }
    },
    "node_modules/deferred-leveldown/node_modules/buffer": {
    "version": "5.7.1",
    "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
    "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
    "funding": [
    {
    "type": "github",
    "url": "https://github.com/sponsors/feross"
    },
    {
    "type": "patreon",
    "url": "https://www.patreon.com/feross"
    },
    {
    "type": "consulting",
    "url": "https://feross.org/support"
    }
    ],
    "dependencies": {
    "base64-js": "^1.3.1",
    "ieee754": "^1.1.13"
    }
    },
    "node_modules/delay": {
    "version": "5.0.0",
    "resolved": "https://registry.npmjs.org/delay/-/delay-5.0.0.tgz",
    "integrity": "sha512-ReEBKkIfe4ya47wlPYf/gu5ib6yUG0/Aez0JQZQz94kiWtRQvZIQbTiehsnwHvLSWJnQdhVeqYue7Id1dKr0qw==",
    "engines": {
    "node": ">=10"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/delayed-stream": {
    "version": "1.0.0",
    "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
    "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
    "engines": {
    "node": ">=0.4.0"
    }
    },
    "node_modules/delegates": {
    "version": "1.0.0",
    "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz",
    "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ=="
    },
    "node_modules/detect-browser": {
    "version": "5.3.0",
    "resolved": "https://registry.npmjs.org/detect-browser/-/detect-browser-5.3.0.tgz",
    "integrity": "sha512-53rsFbGdwMwlF7qvCt0ypLM5V5/Mbl0szB7GPN8y9NCcbknYOeVVXdrXEq+90IwAfrrzt6Hd+u2E2ntakICU8w=="
    },
    "node_modules/dijkstrajs": {
    "version": "1.0.3",
    "resolved": "https://registry.npmjs.org/dijkstrajs/-/dijkstrajs-1.0.3.tgz",
    "integrity": "sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA=="
    },
    "node_modules/dir-glob": {
    "version": "3.0.1",
    "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
    "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",
    "dependencies": {
    "path-type": "^4.0.0"
    },
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/dot-prop": {
    "version": "6.0.1",
    "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-6.0.1.tgz",
    "integrity": "sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==",
    "dependencies": {
    "is-obj": "^2.0.0"
    },
    "engines": {
    "node": ">=10"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/duplexify": {
    "version": "4.1.2",
    "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-4.1.2.tgz",
    "integrity": "sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw==",
    "dependencies": {
    "end-of-stream": "^1.4.1",
    "inherits": "^2.0.3",
    "readable-stream": "^3.1.1",
    "stream-shift": "^1.0.0"
    }
    },
    "node_modules/eastasianwidth": {
    "version": "0.2.0",
    "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
    "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA=="
    },
    "node_modules/elliptic": {
    "version": "6.5.4",
    "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz",
    "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==",
    "dependencies": {
    "bn.js": "^4.11.9",
    "brorand": "^1.1.0",
    "hash.js": "^1.0.0",
    "hmac-drbg": "^1.0.1",
    "inherits": "^2.0.4",
    "minimalistic-assert": "^1.0.1",
    "minimalistic-crypto-utils": "^1.0.1"
    }
    },
    "node_modules/emoji-regex": {
    "version": "8.0.0",
    "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
    "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
    },
    "node_modules/encode-utf8": {
    "version": "1.0.3",
    "resolved": "https://registry.npmjs.org/encode-utf8/-/encode-utf8-1.0.3.tgz",
    "integrity": "sha512-ucAnuBEhUK4boH2HjVYG5Q2mQyPorvv0u/ocS+zhdw0S8AlHYY+GOFhP1Gio5z4icpP2ivFSvhtFjQi8+T9ppw=="
    },
    "node_modules/encoding": {
    "version": "0.1.13",
    "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz",
    "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==",
    "optional": true,
    "dependencies": {
    "iconv-lite": "^0.6.2"
    }
    },
    "node_modules/encoding-down": {
    "version": "6.3.0",
    "resolved": "https://registry.npmjs.org/encoding-down/-/encoding-down-6.3.0.tgz",
    "integrity": "sha512-QKrV0iKR6MZVJV08QY0wp1e7vF6QbhnbQhb07bwpEyuz4uZiZgPlEGdkCROuFkUwdxlFaiPIhjyarH1ee/3vhw==",
    "dependencies": {
    "abstract-leveldown": "^6.2.1",
    "inherits": "^2.0.3",
    "level-codec": "^9.0.0",
    "level-errors": "^2.0.0"
    },
    "engines": {
    "node": ">=6"
    }
    },
    "node_modules/end-of-stream": {
    "version": "1.4.4",
    "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz",
    "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==",
    "dependencies": {
    "once": "^1.4.0"
    }
    },
    "node_modules/env-paths": {
    "version": "2.2.1",
    "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz",
    "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==",
    "engines": {
    "node": ">=6"
    }
    },
    "node_modules/err-code": {
    "version": "2.0.3",
    "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz",
    "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA=="
    },
    "node_modules/errno": {
    "version": "0.1.8",
    "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz",
    "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==",
    "dependencies": {
    "prr": "~1.0.1"
    },
    "bin": {
    "errno": "cli.js"
    }
    },
    "node_modules/es6-promise": {
    "version": "4.2.8",
    "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz",
    "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w=="
    },
    "node_modules/es6-promisify": {
    "version": "5.0.0",
    "resolved": "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz",
    "integrity": "sha512-C+d6UdsYDk0lMebHNR4S2NybQMMngAOnOwYBQjTOiv0MkoJMP0Myw2mgpDLBcpfCmRLxyFqYhS/CfOENq4SJhQ==",
    "dependencies": {
    "es6-promise": "^4.0.3"
    }
    },
    "node_modules/esbuild": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.15.tgz",
    "integrity": "sha512-3WOOLhrvuTGPRzQPU6waSDWrDTnQriia72McWcn6UCi43GhCHrXH4S59hKMeez+IITmdUuUyvbU9JIp+t3xlPQ==",
    "dev": true,
    "hasInstallScript": true,
    "bin": {
    "esbuild": "bin/esbuild"
    },
    "engines": {
    "node": ">=12"
    },
    "optionalDependencies": {
    "@esbuild/android-arm": "0.18.15",
    "@esbuild/android-arm64": "0.18.15",
    "@esbuild/android-x64": "0.18.15",
    "@esbuild/darwin-arm64": "0.18.15",
    "@esbuild/darwin-x64": "0.18.15",
    "@esbuild/freebsd-arm64": "0.18.15",
    "@esbuild/freebsd-x64": "0.18.15",
    "@esbuild/linux-arm": "0.18.15",
    "@esbuild/linux-arm64": "0.18.15",
    "@esbuild/linux-ia32": "0.18.15",
    "@esbuild/linux-loong64": "0.18.15",
    "@esbuild/linux-mips64el": "0.18.15",
    "@esbuild/linux-ppc64": "0.18.15",
    "@esbuild/linux-riscv64": "0.18.15",
    "@esbuild/linux-s390x": "0.18.15",
    "@esbuild/linux-x64": "0.18.15",
    "@esbuild/netbsd-x64": "0.18.15",
    "@esbuild/openbsd-x64": "0.18.15",
    "@esbuild/sunos-x64": "0.18.15",
    "@esbuild/win32-arm64": "0.18.15",
    "@esbuild/win32-ia32": "0.18.15",
    "@esbuild/win32-x64": "0.18.15"
    }
    },
    "node_modules/escape-goat": {
    "version": "4.0.0",
    "resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-4.0.0.tgz",
    "integrity": "sha512-2Sd4ShcWxbx6OY1IHyla/CVNwvg7XwZVoXZHcSu9w9SReNP1EzzD5T8NWKIR38fIqEns9kDWKUQTXXAmlDrdPg==",
    "engines": {
    "node": ">=12"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/estree-walker": {
    "version": "2.0.2",
    "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
    "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
    "optional": true
    },
    "node_modules/eth-block-tracker": {
    "version": "6.1.0",
    "resolved": "https://registry.npmjs.org/eth-block-tracker/-/eth-block-tracker-6.1.0.tgz",
    "integrity": "sha512-K9SY8+/xMBi4M5HHTDdxnpEqEEGjbNpzHFqvxyjMZej8InV/B+CkFRKM6W+uvrFJ7m8Zd1E0qUkseU3vdIDFYQ==",
    "dependencies": {
    "@metamask/safe-event-emitter": "^2.0.0",
    "@metamask/utils": "^3.0.1",
    "json-rpc-random-id": "^1.0.1",
    "pify": "^3.0.0"
    },
    "engines": {
    "node": ">=14.0.0"
    }
    },
    "node_modules/eth-json-rpc-filters": {
    "version": "5.1.0",
    "resolved": "https://registry.npmjs.org/eth-json-rpc-filters/-/eth-json-rpc-filters-5.1.0.tgz",
    "integrity": "sha512-fos+9xmoa1A2Ytsc9eYof17r81BjdJOUcGcgZn4K/tKdCCTb+a8ytEtwlu1op5qsXFDlgGmstTELFrDEc89qEQ==",
    "dependencies": {
    "@metamask/safe-event-emitter": "^2.0.0",
    "async-mutex": "^0.2.6",
    "eth-query": "^2.1.2",
    "json-rpc-engine": "^6.1.0",
    "pify": "^5.0.0"
    },
    "engines": {
    "node": ">=14.0.0"
    }
    },
    "node_modules/eth-json-rpc-filters/node_modules/pify": {
    "version": "5.0.0",
    "resolved": "https://registry.npmjs.org/pify/-/pify-5.0.0.tgz",
    "integrity": "sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==",
    "engines": {
    "node": ">=10"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/eth-query": {
    "version": "2.1.2",
    "resolved": "https://registry.npmjs.org/eth-query/-/eth-query-2.1.2.tgz",
    "integrity": "sha512-srES0ZcvwkR/wd5OQBRA1bIJMww1skfGS0s8wlwK3/oNP4+wnds60krvu5R1QbpRQjMmpG5OMIWro5s7gvDPsA==",
    "dependencies": {
    "json-rpc-random-id": "^1.0.0",
    "xtend": "^4.0.1"
    }
    },
    "node_modules/eth-rpc-errors": {
    "version": "4.0.2",
    "resolved": "https://registry.npmjs.org/eth-rpc-errors/-/eth-rpc-errors-4.0.2.tgz",
    "integrity": "sha512-n+Re6Gu8XGyfFy1it0AwbD1x0MUzspQs0D5UiPs1fFPCr6WAwZM+vbIhXheBFrpgosqN9bs5PqlB4Q61U/QytQ==",
    "dependencies": {
    "fast-safe-stringify": "^2.0.6"
    }
    },
    "node_modules/ethereum-cryptography": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-2.0.0.tgz",
    "integrity": "sha512-g25m4EtfQGjstWgVE1aIz7XYYjf3kH5kG17ULWVB5dH6uLahsoltOhACzSxyDV+fhn4gbR4xRrOXGe6r2uh4Bg==",
    "dependencies": {
    "@noble/curves": "1.0.0",
    "@noble/hashes": "1.3.0",
    "@scure/bip32": "1.3.0",
    "@scure/bip39": "1.2.0"
    }
    },
    "node_modules/ethereumjs-util": {
    "version": "7.1.5",
    "resolved": "https://registry.npmjs.org/ethereumjs-util/-/ethereumjs-util-7.1.5.tgz",
    "integrity": "sha512-SDl5kKrQAudFBUe5OJM9Ac6WmMyYmXX/6sTmLZ3ffG2eY6ZIGBes3pEDxNN6V72WyOw4CPD5RomKdsa8DAAwLg==",
    "dependencies": {
    "@types/bn.js": "^5.1.0",
    "bn.js": "^5.1.2",
    "create-hash": "^1.1.2",
    "ethereum-cryptography": "^0.1.3",
    "rlp": "^2.2.4"
    },
    "engines": {
    "node": ">=10.0.0"
    }
    },
    "node_modules/ethereumjs-util/node_modules/bn.js": {
    "version": "5.2.1",
    "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz",
    "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ=="
    },
    "node_modules/ethereumjs-util/node_modules/ethereum-cryptography": {
    "version": "0.1.3",
    "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz",
    "integrity": "sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==",
    "deprecated": "Upgrade to ethereum-cryptography@2.0 for security and reduced package size",
    "dependencies": {
    "@types/pbkdf2": "^3.0.0",
    "@types/secp256k1": "^4.0.1",
    "blakejs": "^1.1.0",
    "browserify-aes": "^1.2.0",
    "bs58check": "^2.1.2",
    "create-hash": "^1.2.0",
    "create-hmac": "^1.1.7",
    "hash.js": "^1.1.7",
    "keccak": "^3.0.0",
    "pbkdf2": "^3.0.17",
    "randombytes": "^2.1.0",
    "safe-buffer": "^5.1.2",
    "scrypt-js": "^3.0.0",
    "secp256k1": "^4.0.1",
    "setimmediate": "^1.0.5"
    }
    },
    "node_modules/ethers": {
    "version": "6.7.1",
    "resolved": "https://registry.npmjs.org/ethers/-/ethers-6.7.1.tgz",
    "integrity": "sha512-qX5kxIFMfg1i+epfgb0xF4WM7IqapIIu50pOJ17aebkxxa4BacW5jFrQRmCJpDEg2ZK2oNtR5QjrQ1WDBF29dA==",
    "funding": [
    {
    "type": "individual",
    "url": "https://github.com/sponsors/ethers-io/"
    },
    {
    "type": "individual",
    "url": "https://www.buymeacoffee.com/ricmoo"
    }
    ],
    "dependencies": {
    "@adraffy/ens-normalize": "1.9.2",
    "@noble/hashes": "1.1.2",
    "@noble/secp256k1": "1.7.1",
    "@types/node": "18.15.13",
    "aes-js": "4.0.0-beta.5",
    "tslib": "2.4.0",
    "ws": "8.5.0"
    },
    "engines": {
    "node": ">=14.0.0"
    }
    },
    "node_modules/ethers/node_modules/@noble/hashes": {
    "version": "1.1.2",
    "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.1.2.tgz",
    "integrity": "sha512-KYRCASVTv6aeUi1tsF8/vpyR7zpfs3FUzy2Jqm+MU+LmUKhQ0y2FpfwqkCcxSg2ua4GALJd8k2R76WxwZGbQpA==",
    "funding": [
    {
    "type": "individual",
    "url": "https://paulmillr.com/funding/"
    }
    ]
    },
    "node_modules/ethers/node_modules/@types/node": {
    "version": "18.15.13",
    "resolved": "https://registry.npmjs.org/@types/node/-/node-18.15.13.tgz",
    "integrity": "sha512-N+0kuo9KgrUQ1Sn/ifDXsvg0TTleP7rIy4zOBGECxAljqvqfqpTfzx0Q1NUedOixRMBfe2Whhb056a42cWs26Q=="
    },
    "node_modules/eventemitter3": {
    "version": "4.0.7",
    "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz",
    "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw=="
    },
    "node_modules/events": {
    "version": "3.3.0",
    "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz",
    "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==",
    "engines": {
    "node": ">=0.8.x"
    }
    },
    "node_modules/evp_bytestokey": {
    "version": "1.0.3",
    "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz",
    "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==",
    "dependencies": {
    "md5.js": "^1.3.4",
    "safe-buffer": "^5.1.1"
    }
    },
    "node_modules/exponential-backoff": {
    "version": "3.1.1",
    "resolved": "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.1.tgz",
    "integrity": "sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw=="
    },
    "node_modules/eyes": {
    "version": "0.1.8",
    "resolved": "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz",
    "integrity": "sha512-GipyPsXO1anza0AOZdy69Im7hGFCNB7Y/NGjDlZGJ3GJJLtwNSb2vrzYrTYJRrRloVx7pl+bhUaTB8yiccPvFQ==",
    "engines": {
    "node": "> 0.1.90"
    }
    },
    "node_modules/fast-glob": {
    "version": "3.3.1",
    "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz",
    "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==",
    "dependencies": {
    "@nodelib/fs.stat": "^2.0.2",
    "@nodelib/fs.walk": "^1.2.3",
    "glob-parent": "^5.1.2",
    "merge2": "^1.3.0",
    "micromatch": "^4.0.4"
    },
    "engines": {
    "node": ">=8.6.0"
    }
    },
    "node_modules/fast-memoize": {
    "version": "2.5.2",
    "resolved": "https://registry.npmjs.org/fast-memoize/-/fast-memoize-2.5.2.tgz",
    "integrity": "sha512-Ue0LwpDYErFbmNnZSF0UH6eImUwDmogUO1jyE+JbN2gsQz/jICm1Ve7t9QT0rNSsfJt+Hs4/S3GnsDVjL4HVrw=="
    },
    "node_modules/fast-redact": {
    "version": "3.3.0",
    "resolved": "https://registry.npmjs.org/fast-redact/-/fast-redact-3.3.0.tgz",
    "integrity": "sha512-6T5V1QK1u4oF+ATxs1lWUmlEk6P2T9HqJG3e2DnHOdVgZy2rFJBoEnrIedcTXlkAHU/zKC+7KETJ+KGGKwxgMQ==",
    "engines": {
    "node": ">=6"
    }
    },
    "node_modules/fast-safe-stringify": {
    "version": "2.1.1",
    "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz",
    "integrity": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA=="
    },
    "node_modules/fast-stable-stringify": {
    "version": "1.0.0",
    "resolved": "https://registry.npmjs.org/fast-stable-stringify/-/fast-stable-stringify-1.0.0.tgz",
    "integrity": "sha512-wpYMUmFu5f00Sm0cj2pfivpmawLZ0NKdviQ4w9zJeR8JVtOpOxHmLaJuj0vxvGqMJQWyP/COUkF75/57OKyRag=="
    },
    "node_modules/fastq": {
    "version": "1.15.0",
    "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz",
    "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==",
    "dependencies": {
    "reusify": "^1.0.4"
    }
    },
    "node_modules/file-uri-to-path": {
    "version": "1.0.0",
    "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz",
    "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw=="
    },
    "node_modules/fill-range": {
    "version": "7.0.1",
    "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
    "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
    "dependencies": {
    "to-regex-range": "^5.0.1"
    },
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/filter-obj": {
    "version": "1.1.0",
    "resolved": "https://registry.npmjs.org/filter-obj/-/filter-obj-1.1.0.tgz",
    "integrity": "sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==",
    "engines": {
    "node": ">=0.10.0"
    }
    },
    "node_modules/find-up": {
    "version": "5.0.0",
    "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
    "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
    "dependencies": {
    "locate-path": "^6.0.0",
    "path-exists": "^4.0.0"
    },
    "engines": {
    "node": ">=10"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/follow-redirects": {
    "version": "1.15.2",
    "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz",
    "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==",
    "funding": [
    {
    "type": "individual",
    "url": "https://github.com/sponsors/RubenVerborgh"
    }
    ],
    "engines": {
    "node": ">=4.0"
    },
    "peerDependenciesMeta": {
    "debug": {
    "optional": true
    }
    }
    },
    "node_modules/for-each": {
    "version": "0.3.3",
    "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz",
    "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==",
    "dependencies": {
    "is-callable": "^1.1.3"
    }
    },
    "node_modules/foreground-child": {
    "version": "3.1.1",
    "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz",
    "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==",
    "dependencies": {
    "cross-spawn": "^7.0.0",
    "signal-exit": "^4.0.1"
    },
    "engines": {
    "node": ">=14"
    },
    "funding": {
    "url": "https://github.com/sponsors/isaacs"
    }
    },
    "node_modules/form-data": {
    "version": "4.0.0",
    "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz",
    "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==",
    "dependencies": {
    "asynckit": "^0.4.0",
    "combined-stream": "^1.0.8",
    "mime-types": "^2.1.12"
    },
    "engines": {
    "node": ">= 6"
    }
    },
    "node_modules/form-data-encoder": {
    "version": "2.1.4",
    "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-2.1.4.tgz",
    "integrity": "sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==",
    "engines": {
    "node": ">= 14.17"
    }
    },
    "node_modules/fp-and-or": {
    "version": "0.1.3",
    "resolved": "https://registry.npmjs.org/fp-and-or/-/fp-and-or-0.1.3.tgz",
    "integrity": "sha512-wJaE62fLaB3jCYvY2ZHjZvmKK2iiLiiehX38rz5QZxtdN8fVPJDeZUiVvJrHStdTc+23LHlyZuSEKgFc0pxi2g==",
    "engines": {
    "node": ">=10"
    }
    },
    "node_modules/fs-extra": {
    "version": "10.1.0",
    "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
    "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
    "dev": true,
    "dependencies": {
    "graceful-fs": "^4.2.0",
    "jsonfile": "^6.0.1",
    "universalify": "^2.0.0"
    },
    "engines": {
    "node": ">=12"
    }
    },
    "node_modules/fs-minipass": {
    "version": "3.0.3",
    "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-3.0.3.tgz",
    "integrity": "sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==",
    "dependencies": {
    "minipass": "^7.0.3"
    },
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/fs-minipass/node_modules/minipass": {
    "version": "7.0.3",
    "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.3.tgz",
    "integrity": "sha512-LhbbwCfz3vsb12j/WkWQPZfKTsgqIe1Nf/ti1pKjYESGLHIVjWU96G9/ljLH4F9mWNVhlQOm0VySdAWzf05dpg==",
    "engines": {
    "node": ">=16 || 14 >=14.17"
    }
    },
    "node_modules/fs.realpath": {
    "version": "1.0.0",
    "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
    "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
    },
    "node_modules/fsevents": {
    "version": "2.3.2",
    "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
    "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
    "dev": true,
    "hasInstallScript": true,
    "optional": true,
    "os": [
    "darwin"
    ],
    "engines": {
    "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
    }
    },
    "node_modules/function-bind": {
    "version": "1.1.1",
    "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
    "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
    },
    "node_modules/functional-red-black-tree": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz",
    "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g=="
    },
    "node_modules/gauge": {
    "version": "4.0.4",
    "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz",
    "integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==",
    "dependencies": {
    "aproba": "^1.0.3 || ^2.0.0",
    "color-support": "^1.1.3",
    "console-control-strings": "^1.1.0",
    "has-unicode": "^2.0.1",
    "signal-exit": "^3.0.7",
    "string-width": "^4.2.3",
    "strip-ansi": "^6.0.1",
    "wide-align": "^1.1.5"
    },
    "engines": {
    "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
    }
    },
    "node_modules/gauge/node_modules/ansi-regex": {
    "version": "5.0.1",
    "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
    "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/gauge/node_modules/signal-exit": {
    "version": "3.0.7",
    "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
    "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="
    },
    "node_modules/gauge/node_modules/strip-ansi": {
    "version": "6.0.1",
    "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
    "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
    "dependencies": {
    "ansi-regex": "^5.0.1"
    },
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/get-caller-file": {
    "version": "2.0.5",
    "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
    "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
    "engines": {
    "node": "6.* || 8.* || >= 10.*"
    }
    },
    "node_modules/get-intrinsic": {
    "version": "1.2.1",
    "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz",
    "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==",
    "dependencies": {
    "function-bind": "^1.1.1",
    "has": "^1.0.3",
    "has-proto": "^1.0.1",
    "has-symbols": "^1.0.3"
    },
    "funding": {
    "url": "https://github.com/sponsors/ljharb"
    }
    },
    "node_modules/get-stdin": {
    "version": "8.0.0",
    "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz",
    "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==",
    "engines": {
    "node": ">=10"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/get-stream": {
    "version": "6.0.1",
    "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
    "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
    "engines": {
    "node": ">=10"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/glob": {
    "version": "10.3.3",
    "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.3.tgz",
    "integrity": "sha512-92vPiMb/iqpmEgsOoIDvTjc50wf9CCCvMzsi6W0JLPeUKE8TWP1a73PgqSrqy7iAZxaSD1YdzU7QZR5LF51MJw==",
    "dependencies": {
    "foreground-child": "^3.1.0",
    "jackspeak": "^2.0.3",
    "minimatch": "^9.0.1",
    "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0",
    "path-scurry": "^1.10.1"
    },
    "bin": {
    "glob": "dist/cjs/src/bin.js"
    },
    "engines": {
    "node": ">=16 || 14 >=14.17"
    },
    "funding": {
    "url": "https://github.com/sponsors/isaacs"
    }
    },
    "node_modules/glob-parent": {
    "version": "5.1.2",
    "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
    "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
    "dependencies": {
    "is-glob": "^4.0.1"
    },
    "engines": {
    "node": ">= 6"
    }
    },
    "node_modules/global-dirs": {
    "version": "3.0.1",
    "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.1.tgz",
    "integrity": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==",
    "dependencies": {
    "ini": "2.0.0"
    },
    "engines": {
    "node": ">=10"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/global-dirs/node_modules/ini": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz",
    "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==",
    "engines": {
    "node": ">=10"
    }
    },
    "node_modules/globby": {
    "version": "11.1.0",
    "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz",
    "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==",
    "dependencies": {
    "array-union": "^2.1.0",
    "dir-glob": "^3.0.1",
    "fast-glob": "^3.2.9",
    "ignore": "^5.2.0",
    "merge2": "^1.4.1",
    "slash": "^3.0.0"
    },
    "engines": {
    "node": ">=10"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/gopd": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz",
    "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==",
    "dependencies": {
    "get-intrinsic": "^1.1.3"
    },
    "funding": {
    "url": "https://github.com/sponsors/ljharb"
    }
    },
    "node_modules/got": {
    "version": "12.6.1",
    "resolved": "https://registry.npmjs.org/got/-/got-12.6.1.tgz",
    "integrity": "sha512-mThBblvlAF1d4O5oqyvN+ZxLAYwIJK7bpMxgYqPD9okW0C3qm5FFn7k811QrcuEBwaogR3ngOFoCfs6mRv7teQ==",
    "dependencies": {
    "@sindresorhus/is": "^5.2.0",
    "@szmarczak/http-timer": "^5.0.1",
    "cacheable-lookup": "^7.0.0",
    "cacheable-request": "^10.2.8",
    "decompress-response": "^6.0.0",
    "form-data-encoder": "^2.1.2",
    "get-stream": "^6.0.1",
    "http2-wrapper": "^2.1.10",
    "lowercase-keys": "^3.0.0",
    "p-cancelable": "^3.0.0",
    "responselike": "^3.0.0"
    },
    "engines": {
    "node": ">=14.16"
    },
    "funding": {
    "url": "https://github.com/sindresorhus/got?sponsor=1"
    }
    },
    "node_modules/graceful-fs": {
    "version": "4.2.10",
    "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz",
    "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA=="
    },
    "node_modules/has": {
    "version": "1.0.3",
    "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
    "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
    "dependencies": {
    "function-bind": "^1.1.1"
    },
    "engines": {
    "node": ">= 0.4.0"
    }
    },
    "node_modules/has-flag": {
    "version": "4.0.0",
    "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
    "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
    "dev": true,
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/has-proto": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz",
    "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==",
    "engines": {
    "node": ">= 0.4"
    },
    "funding": {
    "url": "https://github.com/sponsors/ljharb"
    }
    },
    "node_modules/has-symbols": {
    "version": "1.0.3",
    "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz",
    "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==",
    "engines": {
    "node": ">= 0.4"
    },
    "funding": {
    "url": "https://github.com/sponsors/ljharb"
    }
    },
    "node_modules/has-tostringtag": {
    "version": "1.0.0",
    "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz",
    "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==",
    "dependencies": {
    "has-symbols": "^1.0.2"
    },
    "engines": {
    "node": ">= 0.4"
    },
    "funding": {
    "url": "https://github.com/sponsors/ljharb"
    }
    },
    "node_modules/has-unicode": {
    "version": "2.0.1",
    "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz",
    "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ=="
    },
    "node_modules/has-yarn": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-3.0.0.tgz",
    "integrity": "sha512-IrsVwUHhEULx3R8f/aA8AHuEzAorplsab/v8HBzEiIukwq5i/EC+xmOW+HfP1OaDP+2JkgT1yILHN2O3UFIbcA==",
    "engines": {
    "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/hash-base": {
    "version": "3.1.0",
    "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz",
    "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==",
    "dependencies": {
    "inherits": "^2.0.4",
    "readable-stream": "^3.6.0",
    "safe-buffer": "^5.2.0"
    },
    "engines": {
    "node": ">=4"
    }
    },
    "node_modules/hash.js": {
    "version": "1.1.7",
    "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz",
    "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==",
    "dependencies": {
    "inherits": "^2.0.3",
    "minimalistic-assert": "^1.0.1"
    }
    },
    "node_modules/hey-listen": {
    "version": "1.0.8",
    "resolved": "https://registry.npmjs.org/hey-listen/-/hey-listen-1.0.8.tgz",
    "integrity": "sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q=="
    },
    "node_modules/hi-base32": {
    "version": "0.5.1",
    "resolved": "https://registry.npmjs.org/hi-base32/-/hi-base32-0.5.1.tgz",
    "integrity": "sha512-EmBBpvdYh/4XxsnUybsPag6VikPYnN30td+vQk+GI3qpahVEG9+gTkG0aXVxTjBqQ5T6ijbWIu77O+C5WFWsnA=="
    },
    "node_modules/hls.js": {
    "version": "1.4.12",
    "resolved": "https://registry.npmjs.org/hls.js/-/hls.js-1.4.12.tgz",
    "integrity": "sha512-1RBpx2VihibzE3WE9kGoVCtrhhDWTzydzElk/kyRbEOLnb1WIE+3ZabM/L8BqKFTCL3pUy4QzhXgD1Q6Igr1JA=="
    },
    "node_modules/hmac-drbg": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz",
    "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==",
    "dependencies": {
    "hash.js": "^1.0.3",
    "minimalistic-assert": "^1.0.0",
    "minimalistic-crypto-utils": "^1.0.1"
    }
    },
    "node_modules/hosted-git-info": {
    "version": "5.2.1",
    "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-5.2.1.tgz",
    "integrity": "sha512-xIcQYMnhcx2Nr4JTjsFmwwnr9vldugPy9uVm0o87bjqqWMv9GaqsTeT+i99wTl0mk1uLxJtHxLb8kymqTENQsw==",
    "dependencies": {
    "lru-cache": "^7.5.1"
    },
    "engines": {
    "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
    }
    },
    "node_modules/http-cache-semantics": {
    "version": "4.1.1",
    "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz",
    "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ=="
    },
    "node_modules/http-proxy-agent": {
    "version": "5.0.0",
    "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz",
    "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==",
    "dependencies": {
    "@tootallnate/once": "2",
    "agent-base": "6",
    "debug": "4"
    },
    "engines": {
    "node": ">= 6"
    }
    },
    "node_modules/http2-wrapper": {
    "version": "2.2.0",
    "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.0.tgz",
    "integrity": "sha512-kZB0wxMo0sh1PehyjJUWRFEd99KC5TLjZ2cULC4f9iqJBAmKQQXEICjxl5iPJRwP40dpeHFqqhm7tYCvODpqpQ==",
    "dependencies": {
    "quick-lru": "^5.1.1",
    "resolve-alpn": "^1.2.0"
    },
    "engines": {
    "node": ">=10.19.0"
    }
    },
    "node_modules/https-proxy-agent": {
    "version": "5.0.1",
    "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
    "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
    "dependencies": {
    "agent-base": "6",
    "debug": "4"
    },
    "engines": {
    "node": ">= 6"
    }
    },
    "node_modules/humanize-ms": {
    "version": "1.2.1",
    "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz",
    "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==",
    "dependencies": {
    "ms": "^2.0.0"
    }
    },
    "node_modules/iconv-lite": {
    "version": "0.6.3",
    "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
    "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
    "optional": true,
    "dependencies": {
    "safer-buffer": ">= 2.1.2 < 3.0.0"
    },
    "engines": {
    "node": ">=0.10.0"
    }
    },
    "node_modules/ieee754": {
    "version": "1.2.1",
    "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
    "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
    "funding": [
    {
    "type": "github",
    "url": "https://github.com/sponsors/feross"
    },
    {
    "type": "patreon",
    "url": "https://www.patreon.com/feross"
    },
    {
    "type": "consulting",
    "url": "https://feross.org/support"
    }
    ]
    },
    "node_modules/ignore": {
    "version": "5.2.4",
    "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz",
    "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==",
    "engines": {
    "node": ">= 4"
    }
    },
    "node_modules/ignore-walk": {
    "version": "6.0.3",
    "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-6.0.3.tgz",
    "integrity": "sha512-C7FfFoTA+bI10qfeydT8aZbvr91vAEU+2W5BZUlzPec47oNb07SsOfwYrtxuvOYdUApPP/Qlh4DtAO51Ekk2QA==",
    "dependencies": {
    "minimatch": "^9.0.0"
    },
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/immediate": {
    "version": "3.3.0",
    "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.3.0.tgz",
    "integrity": "sha512-HR7EVodfFUdQCTIeySw+WDRFJlPcLOJbXfwwZ7Oom6tjsvZ3bOkCDJHehQC3nxJrv7+f9XecwazynjU8e4Vw3Q=="
    },
    "node_modules/import-lazy": {
    "version": "4.0.0",
    "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz",
    "integrity": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==",
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/imurmurhash": {
    "version": "0.1.4",
    "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
    "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
    "engines": {
    "node": ">=0.8.19"
    }
    },
    "node_modules/indent-string": {
    "version": "4.0.0",
    "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz",
    "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==",
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/inflight": {
    "version": "1.0.6",
    "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
    "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
    "dependencies": {
    "once": "^1.3.0",
    "wrappy": "1"
    }
    },
    "node_modules/inherits": {
    "version": "2.0.4",
    "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
    "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
    },
    "node_modules/ini": {
    "version": "4.1.1",
    "resolved": "https://registry.npmjs.org/ini/-/ini-4.1.1.tgz",
    "integrity": "sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==",
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/ip": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz",
    "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ=="
    },
    "node_modules/is-arguments": {
    "version": "1.1.1",
    "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz",
    "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==",
    "dependencies": {
    "call-bind": "^1.0.2",
    "has-tostringtag": "^1.0.0"
    },
    "engines": {
    "node": ">= 0.4"
    },
    "funding": {
    "url": "https://github.com/sponsors/ljharb"
    }
    },
    "node_modules/is-callable": {
    "version": "1.2.7",
    "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz",
    "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==",
    "engines": {
    "node": ">= 0.4"
    },
    "funding": {
    "url": "https://github.com/sponsors/ljharb"
    }
    },
    "node_modules/is-ci": {
    "version": "3.0.1",
    "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz",
    "integrity": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==",
    "dependencies": {
    "ci-info": "^3.2.0"
    },
    "bin": {
    "is-ci": "bin.js"
    }
    },
    "node_modules/is-core-module": {
    "version": "2.13.0",
    "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz",
    "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==",
    "dependencies": {
    "has": "^1.0.3"
    },
    "funding": {
    "url": "https://github.com/sponsors/ljharb"
    }
    },
    "node_modules/is-extglob": {
    "version": "2.1.1",
    "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
    "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
    "engines": {
    "node": ">=0.10.0"
    }
    },
    "node_modules/is-fullwidth-code-point": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
    "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/is-generator-function": {
    "version": "1.0.10",
    "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz",
    "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==",
    "dependencies": {
    "has-tostringtag": "^1.0.0"
    },
    "engines": {
    "node": ">= 0.4"
    },
    "funding": {
    "url": "https://github.com/sponsors/ljharb"
    }
    },
    "node_modules/is-glob": {
    "version": "4.0.3",
    "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
    "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
    "dependencies": {
    "is-extglob": "^2.1.1"
    },
    "engines": {
    "node": ">=0.10.0"
    }
    },
    "node_modules/is-installed-globally": {
    "version": "0.4.0",
    "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz",
    "integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==",
    "dependencies": {
    "global-dirs": "^3.0.0",
    "is-path-inside": "^3.0.2"
    },
    "engines": {
    "node": ">=10"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/is-lambda": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz",
    "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ=="
    },
    "node_modules/is-npm": {
    "version": "6.0.0",
    "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-6.0.0.tgz",
    "integrity": "sha512-JEjxbSmtPSt1c8XTkVrlujcXdKV1/tvuQ7GwKcAlyiVLeYFQ2VHat8xfrDJsIkhCdF/tZ7CiIR3sy141c6+gPQ==",
    "engines": {
    "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/is-number": {
    "version": "7.0.0",
    "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
    "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
    "engines": {
    "node": ">=0.12.0"
    }
    },
    "node_modules/is-obj": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz",
    "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==",
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/is-path-inside": {
    "version": "3.0.3",
    "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz",
    "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==",
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/is-typed-array": {
    "version": "1.1.12",
    "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz",
    "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==",
    "dependencies": {
    "which-typed-array": "^1.1.11"
    },
    "engines": {
    "node": ">= 0.4"
    },
    "funding": {
    "url": "https://github.com/sponsors/ljharb"
    }
    },
    "node_modules/is-typedarray": {
    "version": "1.0.0",
    "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
    "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA=="
    },
    "node_modules/is-yarn-global": {
    "version": "0.4.1",
    "resolved": "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.4.1.tgz",
    "integrity": "sha512-/kppl+R+LO5VmhYSEWARUFjodS25D68gvj8W7z0I7OWhUla5xWu8KL6CtB2V0R6yqhnRgbcaREMr4EEM6htLPQ==",
    "engines": {
    "node": ">=12"
    }
    },
    "node_modules/isexe": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
    "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="
    },
    "node_modules/isomorphic-ws": {
    "version": "4.0.1",
    "resolved": "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz",
    "integrity": "sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w==",
    "peerDependencies": {
    "ws": "*"
    }
    },
    "node_modules/isows": {
    "version": "1.0.2",
    "resolved": "https://registry.npmjs.org/isows/-/isows-1.0.2.tgz",
    "integrity": "sha512-ohHPFvRjcGLLA7uqHjIcGf5M3OrzN/k9QVYMGOvCppV/HY2GZdz7oFsJHT70ZXEL7ImrOGE1F9M0SovDGSfT6Q==",
    "funding": [
    {
    "type": "github",
    "url": "https://github.com/sponsors/wagmi-dev"
    }
    ],
    "peerDependencies": {
    "ws": "*"
    }
    },
    "node_modules/jackspeak": {
    "version": "2.3.0",
    "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.0.tgz",
    "integrity": "sha512-uKmsITSsF4rUWQHzqaRUuyAir3fZfW3f202Ee34lz/gZCi970CPZwyQXLGNgWJvvZbvFyzeyGq0+4fcG/mBKZg==",
    "dependencies": {
    "@isaacs/cliui": "^8.0.2"
    },
    "engines": {
    "node": ">=14"
    },
    "funding": {
    "url": "https://github.com/sponsors/isaacs"
    },
    "optionalDependencies": {
    "@pkgjs/parseargs": "^0.11.0"
    }
    },
    "node_modules/jayson": {
    "version": "4.1.0",
    "resolved": "https://registry.npmjs.org/jayson/-/jayson-4.1.0.tgz",
    "integrity": "sha512-R6JlbyLN53Mjku329XoRT2zJAE6ZgOQ8f91ucYdMCD4nkGCF9kZSrcGXpHIU4jeKj58zUZke2p+cdQchU7Ly7A==",
    "dependencies": {
    "@types/connect": "^3.4.33",
    "@types/node": "^12.12.54",
    "@types/ws": "^7.4.4",
    "commander": "^2.20.3",
    "delay": "^5.0.0",
    "es6-promisify": "^5.0.0",
    "eyes": "^0.1.8",
    "isomorphic-ws": "^4.0.1",
    "json-stringify-safe": "^5.0.1",
    "JSONStream": "^1.3.5",
    "uuid": "^8.3.2",
    "ws": "^7.4.5"
    },
    "bin": {
    "jayson": "bin/jayson.js"
    },
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/jayson/node_modules/@types/node": {
    "version": "12.20.55",
    "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz",
    "integrity": "sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ=="
    },
    "node_modules/jayson/node_modules/commander": {
    "version": "2.20.3",
    "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
    "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="
    },
    "node_modules/jayson/node_modules/ws": {
    "version": "7.5.9",
    "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz",
    "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==",
    "engines": {
    "node": ">=8.3.0"
    },
    "peerDependencies": {
    "bufferutil": "^4.0.1",
    "utf-8-validate": "^5.0.2"
    },
    "peerDependenciesMeta": {
    "bufferutil": {
    "optional": true
    },
    "utf-8-validate": {
    "optional": true
    }
    }
    },
    "node_modules/jju": {
    "version": "1.4.0",
    "resolved": "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz",
    "integrity": "sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA=="
    },
    "node_modules/jquery": {
    "version": "3.7.0",
    "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.7.0.tgz",
    "integrity": "sha512-umpJ0/k8X0MvD1ds0P9SfowREz2LenHsQaxSohMZ5OMNEU2r0tf8pdeEFTHMFxWVxKNyU9rTtK3CWzUCTKJUeQ=="
    },
    "node_modules/js-sha256": {
    "version": "0.9.0",
    "resolved": "https://registry.npmjs.org/js-sha256/-/js-sha256-0.9.0.tgz",
    "integrity": "sha512-sga3MHh9sgQN2+pJ9VYZ+1LPwXOxuBJBA5nrR5/ofPfuiJBE2hnjsaN8se8JznOmGLN2p49Pe5U/ttafcs/apA=="
    },
    "node_modules/js-sha3": {
    "version": "0.8.0",
    "resolved": "https://registry.npmjs.org/js-sha3/-/js-sha3-0.8.0.tgz",
    "integrity": "sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q=="
    },
    "node_modules/js-sha512": {
    "version": "0.8.0",
    "resolved": "https://registry.npmjs.org/js-sha512/-/js-sha512-0.8.0.tgz",
    "integrity": "sha512-PWsmefG6Jkodqt+ePTvBZCSMFgN7Clckjd0O7su3I0+BW2QWUTJNzjktHsztGLhncP2h8mcF9V9Y2Ha59pAViQ=="
    },
    "node_modules/js-tokens": {
    "version": "4.0.0",
    "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
    "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
    },
    "node_modules/js-yaml": {
    "version": "4.1.0",
    "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
    "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
    "dependencies": {
    "argparse": "^2.0.1"
    },
    "bin": {
    "js-yaml": "bin/js-yaml.js"
    }
    },
    "node_modules/json-bigint": {
    "version": "1.0.0",
    "resolved": "https://registry.npmjs.org/json-bigint/-/json-bigint-1.0.0.tgz",
    "integrity": "sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ==",
    "dependencies": {
    "bignumber.js": "^9.0.0"
    }
    },
    "node_modules/json-buffer": {
    "version": "3.0.1",
    "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
    "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ=="
    },
    "node_modules/json-parse-even-better-errors": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.0.tgz",
    "integrity": "sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==",
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/json-parse-helpfulerror": {
    "version": "1.0.3",
    "resolved": "https://registry.npmjs.org/json-parse-helpfulerror/-/json-parse-helpfulerror-1.0.3.tgz",
    "integrity": "sha512-XgP0FGR77+QhUxjXkwOMkC94k3WtqEBfcnjWqhRd82qTat4SWKRE+9kUnynz/shm3I4ea2+qISvTIeGTNU7kJg==",
    "dependencies": {
    "jju": "^1.1.0"
    }
    },
    "node_modules/json-rpc-engine": {
    "version": "6.1.0",
    "resolved": "https://registry.npmjs.org/json-rpc-engine/-/json-rpc-engine-6.1.0.tgz",
    "integrity": "sha512-NEdLrtrq1jUZyfjkr9OCz9EzCNhnRyWtt1PAnvnhwy6e8XETS0Dtc+ZNCO2gvuAoKsIn2+vCSowXTYE4CkgnAQ==",
    "dependencies": {
    "@metamask/safe-event-emitter": "^2.0.0",
    "eth-rpc-errors": "^4.0.2"
    },
    "engines": {
    "node": ">=10.0.0"
    }
    },
    "node_modules/json-rpc-random-id": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/json-rpc-random-id/-/json-rpc-random-id-1.0.1.tgz",
    "integrity": "sha512-RJ9YYNCkhVDBuP4zN5BBtYAzEl03yq/jIIsyif0JY9qyJuQQZNeDK7anAPKKlyEtLSj2s8h6hNh2F8zO5q7ScA=="
    },
    "node_modules/json-stringify-safe": {
    "version": "5.0.1",
    "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
    "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA=="
    },
    "node_modules/json5": {
    "version": "2.2.3",
    "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
    "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
    "bin": {
    "json5": "lib/cli.js"
    },
    "engines": {
    "node": ">=6"
    }
    },
    "node_modules/jsonfile": {
    "version": "6.1.0",
    "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
    "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
    "dev": true,
    "dependencies": {
    "universalify": "^2.0.0"
    },
    "optionalDependencies": {
    "graceful-fs": "^4.1.6"
    }
    },
    "node_modules/jsonlines": {
    "version": "0.1.1",
    "resolved": "https://registry.npmjs.org/jsonlines/-/jsonlines-0.1.1.tgz",
    "integrity": "sha512-ekDrAGso79Cvf+dtm+mL8OBI2bmAOt3gssYs833De/C9NmIpWDWyUO4zPgB5x2/OhY366dkhgfPMYfwZF7yOZA=="
    },
    "node_modules/jsonparse": {
    "version": "1.3.1",
    "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz",
    "integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==",
    "engines": [
    "node >= 0.2.0"
    ]
    },
    "node_modules/JSONStream": {
    "version": "1.3.5",
    "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz",
    "integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==",
    "dependencies": {
    "jsonparse": "^1.2.0",
    "through": ">=2.2.7 <3"
    },
    "bin": {
    "JSONStream": "bin.js"
    },
    "engines": {
    "node": "*"
    }
    },
    "node_modules/keccak": {
    "version": "3.0.4",
    "resolved": "https://registry.npmjs.org/keccak/-/keccak-3.0.4.tgz",
    "integrity": "sha512-3vKuW0jV8J3XNTzvfyicFR5qvxrSAGl7KIhvgOu5cmWwM7tZRj3fMbj/pfIf4be7aznbc+prBWGjywox/g2Y6Q==",
    "hasInstallScript": true,
    "dependencies": {
    "node-addon-api": "^2.0.0",
    "node-gyp-build": "^4.2.0",
    "readable-stream": "^3.6.0"
    },
    "engines": {
    "node": ">=10.0.0"
    }
    },
    "node_modules/keyv": {
    "version": "4.5.3",
    "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.3.tgz",
    "integrity": "sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug==",
    "dependencies": {
    "json-buffer": "3.0.1"
    }
    },
    "node_modules/keyvaluestorage-interface": {
    "version": "1.0.0",
    "resolved": "https://registry.npmjs.org/keyvaluestorage-interface/-/keyvaluestorage-interface-1.0.0.tgz",
    "integrity": "sha512-8t6Q3TclQ4uZynJY9IGr2+SsIGwK9JHcO6ootkHCGA0CrQCRy+VkouYNO2xicET6b9al7QKzpebNow+gkpCL8g=="
    },
    "node_modules/kleur": {
    "version": "4.1.5",
    "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz",
    "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==",
    "engines": {
    "node": ">=6"
    }
    },
    "node_modules/lamejstmp": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/lamejstmp/-/lamejstmp-1.0.1.tgz",
    "integrity": "sha512-eEENqMTpiDNTaeOWWbv58KVT4uh9tP7XqpG+aODm9U2eRHwH8Hsx3OnNKxd3noVN6cHmQomv5HQ9N7tzTSVxNQ==",
    "dependencies": {
    "use-strict": "1.0.1"
    }
    },
    "node_modules/latest-version": {
    "version": "7.0.0",
    "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-7.0.0.tgz",
    "integrity": "sha512-KvNT4XqAMzdcL6ka6Tl3i2lYeFDgXNCuIX+xNx6ZMVR1dFq+idXd9FLKNMOIx0t9mJ9/HudyX4oZWXZQ0UJHeg==",
    "dependencies": {
    "package-json": "^8.1.0"
    },
    "engines": {
    "node": ">=14.16"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/level-codec": {
    "version": "9.0.2",
    "resolved": "https://registry.npmjs.org/level-codec/-/level-codec-9.0.2.tgz",
    "integrity": "sha512-UyIwNb1lJBChJnGfjmO0OR+ezh2iVu1Kas3nvBS/BzGnx79dv6g7unpKIDNPMhfdTEGoc7mC8uAu51XEtX+FHQ==",
    "dependencies": {
    "buffer": "^5.6.0"
    },
    "engines": {
    "node": ">=6"
    }
    },
    "node_modules/level-codec/node_modules/buffer": {
    "version": "5.7.1",
    "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
    "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
    "funding": [
    {
    "type": "github",
    "url": "https://github.com/sponsors/feross"
    },
    {
    "type": "patreon",
    "url": "https://www.patreon.com/feross"
    },
    {
    "type": "consulting",
    "url": "https://feross.org/support"
    }
    ],
    "dependencies": {
    "base64-js": "^1.3.1",
    "ieee754": "^1.1.13"
    }
    },
    "node_modules/level-concat-iterator": {
    "version": "2.0.1",
    "resolved": "https://registry.npmjs.org/level-concat-iterator/-/level-concat-iterator-2.0.1.tgz",
    "integrity": "sha512-OTKKOqeav2QWcERMJR7IS9CUo1sHnke2C0gkSmcR7QuEtFNLLzHQAvnMw8ykvEcv0Qtkg0p7FOwP1v9e5Smdcw==",
    "engines": {
    "node": ">=6"
    }
    },
    "node_modules/level-errors": {
    "version": "2.0.1",
    "resolved": "https://registry.npmjs.org/level-errors/-/level-errors-2.0.1.tgz",
    "integrity": "sha512-UVprBJXite4gPS+3VznfgDSU8PTRuVX0NXwoWW50KLxd2yw4Y1t2JUR5In1itQnudZqRMT9DlAM3Q//9NCjCFw==",
    "dependencies": {
    "errno": "~0.1.1"
    },
    "engines": {
    "node": ">=6"
    }
    },
    "node_modules/level-iterator-stream": {
    "version": "4.0.2",
    "resolved": "https://registry.npmjs.org/level-iterator-stream/-/level-iterator-stream-4.0.2.tgz",
    "integrity": "sha512-ZSthfEqzGSOMWoUGhTXdX9jv26d32XJuHz/5YnuHZzH6wldfWMOVwI9TBtKcya4BKTyTt3XVA0A3cF3q5CY30Q==",
    "dependencies": {
    "inherits": "^2.0.4",
    "readable-stream": "^3.4.0",
    "xtend": "^4.0.2"
    },
    "engines": {
    "node": ">=6"
    }
    },
    "node_modules/level-mem": {
    "version": "5.0.1",
    "resolved": "https://registry.npmjs.org/level-mem/-/level-mem-5.0.1.tgz",
    "integrity": "sha512-qd+qUJHXsGSFoHTziptAKXoLX87QjR7v2KMbqncDXPxQuCdsQlzmyX+gwrEHhlzn08vkf8TyipYyMmiC6Gobzg==",
    "dependencies": {
    "level-packager": "^5.0.3",
    "memdown": "^5.0.0"
    },
    "engines": {
    "node": ">=6"
    }
    },
    "node_modules/level-packager": {
    "version": "5.1.1",
    "resolved": "https://registry.npmjs.org/level-packager/-/level-packager-5.1.1.tgz",
    "integrity": "sha512-HMwMaQPlTC1IlcwT3+swhqf/NUO+ZhXVz6TY1zZIIZlIR0YSn8GtAAWmIvKjNY16ZkEg/JcpAuQskxsXqC0yOQ==",
    "dependencies": {
    "encoding-down": "^6.3.0",
    "levelup": "^4.3.2"
    },
    "engines": {
    "node": ">=6"
    }
    },
    "node_modules/level-supports": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/level-supports/-/level-supports-1.0.1.tgz",
    "integrity": "sha512-rXM7GYnW8gsl1vedTJIbzOrRv85c/2uCMpiiCzO2fndd06U/kUXEEU9evYn4zFggBOg36IsBW8LzqIpETwwQzg==",
    "dependencies": {
    "xtend": "^4.0.2"
    },
    "engines": {
    "node": ">=6"
    }
    },
    "node_modules/level-ws": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/level-ws/-/level-ws-2.0.0.tgz",
    "integrity": "sha512-1iv7VXx0G9ec1isqQZ7y5LmoZo/ewAsyDHNA8EFDW5hqH2Kqovm33nSFkSdnLLAK+I5FlT+lo5Cw9itGe+CpQA==",
    "dependencies": {
    "inherits": "^2.0.3",
    "readable-stream": "^3.1.0",
    "xtend": "^4.0.1"
    },
    "engines": {
    "node": ">=6"
    }
    },
    "node_modules/levelup": {
    "version": "4.4.0",
    "resolved": "https://registry.npmjs.org/levelup/-/levelup-4.4.0.tgz",
    "integrity": "sha512-94++VFO3qN95cM/d6eBXvd894oJE0w3cInq9USsyQzzoJxmiYzPAocNcuGCPGGjoXqDVJcr3C1jzt1TSjyaiLQ==",
    "dependencies": {
    "deferred-leveldown": "~5.3.0",
    "level-errors": "~2.0.0",
    "level-iterator-stream": "~4.0.0",
    "level-supports": "~1.0.0",
    "xtend": "~4.0.0"
    },
    "engines": {
    "node": ">=6"
    }
    },
    "node_modules/lit": {
    "version": "2.8.0",
    "resolved": "https://registry.npmjs.org/lit/-/lit-2.8.0.tgz",
    "integrity": "sha512-4Sc3OFX9QHOJaHbmTMk28SYgVxLN3ePDjg7hofEft2zWlehFL3LiAuapWc4U/kYwMYJSh2hTCPZ6/LIC7ii0MA==",
    "dependencies": {
    "@lit/reactive-element": "^1.6.0",
    "lit-element": "^3.3.0",
    "lit-html": "^2.8.0"
    }
    },
    "node_modules/lit-element": {
    "version": "3.3.3",
    "resolved": "https://registry.npmjs.org/lit-element/-/lit-element-3.3.3.tgz",
    "integrity": "sha512-XbeRxmTHubXENkV4h8RIPyr8lXc+Ff28rkcQzw3G6up2xg5E8Zu1IgOWIwBLEQsu3cOVFqdYwiVi0hv0SlpqUA==",
    "dependencies": {
    "@lit-labs/ssr-dom-shim": "^1.1.0",
    "@lit/reactive-element": "^1.3.0",
    "lit-html": "^2.8.0"
    }
    },
    "node_modules/lit-html": {
    "version": "2.8.0",
    "resolved": "https://registry.npmjs.org/lit-html/-/lit-html-2.8.0.tgz",
    "integrity": "sha512-o9t+MQM3P4y7M7yNzqAyjp7z+mQGa4NS4CxiyLqFPyFWyc4O+nodLrkrxSaCTrla6M5YOLaT3RpbbqjszB5g3Q==",
    "dependencies": {
    "@types/trusted-types": "^2.0.2"
    }
    },
    "node_modules/loadjs": {
    "version": "4.2.0",
    "resolved": "https://registry.npmjs.org/loadjs/-/loadjs-4.2.0.tgz",
    "integrity": "sha512-AgQGZisAlTPbTEzrHPb6q+NYBMD+DP9uvGSIjSUM5uG+0jG15cb8axWpxuOIqrmQjn6scaaH8JwloiP27b2KXA=="
    },
    "node_modules/locate-path": {
    "version": "6.0.0",
    "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
    "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
    "dependencies": {
    "p-locate": "^5.0.0"
    },
    "engines": {
    "node": ">=10"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/lodash": {
    "version": "4.17.21",
    "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
    "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="
    },
    "node_modules/lodash.isequal": {
    "version": "4.5.0",
    "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz",
    "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ=="
    },
    "node_modules/loose-envify": {
    "version": "1.4.0",
    "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
    "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
    "dependencies": {
    "js-tokens": "^3.0.0 || ^4.0.0"
    },
    "bin": {
    "loose-envify": "cli.js"
    }
    },
    "node_modules/lowercase-keys": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-3.0.0.tgz",
    "integrity": "sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==",
    "engines": {
    "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/lru-cache": {
    "version": "7.18.3",
    "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz",
    "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==",
    "engines": {
    "node": ">=12"
    }
    },
    "node_modules/ltgt": {
    "version": "2.2.1",
    "resolved": "https://registry.npmjs.org/ltgt/-/ltgt-2.2.1.tgz",
    "integrity": "sha512-AI2r85+4MquTw9ZYqabu4nMwy9Oftlfa/e/52t9IjtfG+mGBbTNdAoZ3RQKLHR6r0wQnwZnPIEh/Ya6XTWAKNA=="
    },
    "node_modules/magic-string": {
    "version": "0.30.4",
    "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.4.tgz",
    "integrity": "sha512-Q/TKtsC5BPm0kGqgBIF9oXAs/xEf2vRKiIB4wCRQTJOQIByZ1d+NnUOotvJOvNpi5RNIgVOMC3pOuaP1ZTDlVg==",
    "optional": true,
    "dependencies": {
    "@jridgewell/sourcemap-codec": "^1.4.15"
    },
    "engines": {
    "node": ">=12"
    }
    },
    "node_modules/make-fetch-happen": {
    "version": "11.1.1",
    "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-11.1.1.tgz",
    "integrity": "sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==",
    "dependencies": {
    "agentkeepalive": "^4.2.1",
    "cacache": "^17.0.0",
    "http-cache-semantics": "^4.1.1",
    "http-proxy-agent": "^5.0.0",
    "https-proxy-agent": "^5.0.0",
    "is-lambda": "^1.0.1",
    "lru-cache": "^7.7.1",
    "minipass": "^5.0.0",
    "minipass-fetch": "^3.0.0",
    "minipass-flush": "^1.0.5",
    "minipass-pipeline": "^1.2.4",
    "negotiator": "^0.6.3",
    "promise-retry": "^2.0.1",
    "socks-proxy-agent": "^7.0.0",
    "ssri": "^10.0.0"
    },
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/md5.js": {
    "version": "1.3.5",
    "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz",
    "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==",
    "dependencies": {
    "hash-base": "^3.0.0",
    "inherits": "^2.0.1",
    "safe-buffer": "^5.1.2"
    }
    },
    "node_modules/media-chrome": {
    "version": "1.4.3",
    "resolved": "https://registry.npmjs.org/media-chrome/-/media-chrome-1.4.3.tgz",
    "integrity": "sha512-VpFqCOu2FLULW6TX4sluo44AolJXryHxr85UBdO+IuOltgYPuf7Lgp1F3OqJeRIeO8874d5mri/6xmI22CO9yA=="
    },
    "node_modules/media-tracks": {
    "version": "0.2.4",
    "resolved": "https://registry.npmjs.org/media-tracks/-/media-tracks-0.2.4.tgz",
    "integrity": "sha512-P/TbDCYTFH5gxpQ6r99iabXOwjsFwzKRgK7wiwo64Ii6nHXYhHtwEP7A7ufmEKxkNCoHc4j3Z2hvs+lXL4wPeQ=="
    },
    "node_modules/memdown": {
    "version": "5.1.0",
    "resolved": "https://registry.npmjs.org/memdown/-/memdown-5.1.0.tgz",
    "integrity": "sha512-B3J+UizMRAlEArDjWHTMmadet+UKwHd3UjMgGBkZcKAxAYVPS9o0Yeiha4qvz7iGiL2Sb3igUft6p7nbFWctpw==",
    "dependencies": {
    "abstract-leveldown": "~6.2.1",
    "functional-red-black-tree": "~1.0.1",
    "immediate": "~3.2.3",
    "inherits": "~2.0.1",
    "ltgt": "~2.2.0",
    "safe-buffer": "~5.2.0"
    },
    "engines": {
    "node": ">=6"
    }
    },
    "node_modules/memdown/node_modules/abstract-leveldown": {
    "version": "6.2.3",
    "resolved": "https://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-6.2.3.tgz",
    "integrity": "sha512-BsLm5vFMRUrrLeCcRc+G0t2qOaTzpoJQLOubq2XM72eNpjF5UdU5o/5NvlNhx95XHcAvcl8OMXr4mlg/fRgUXQ==",
    "dependencies": {
    "buffer": "^5.5.0",
    "immediate": "^3.2.3",
    "level-concat-iterator": "~2.0.0",
    "level-supports": "~1.0.0",
    "xtend": "~4.0.0"
    },
    "engines": {
    "node": ">=6"
    }
    },
    "node_modules/memdown/node_modules/buffer": {
    "version": "5.7.1",
    "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
    "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
    "funding": [
    {
    "type": "github",
    "url": "https://github.com/sponsors/feross"
    },
    {
    "type": "patreon",
    "url": "https://www.patreon.com/feross"
    },
    {
    "type": "consulting",
    "url": "https://feross.org/support"
    }
    ],
    "dependencies": {
    "base64-js": "^1.3.1",
    "ieee754": "^1.1.13"
    }
    },
    "node_modules/memdown/node_modules/immediate": {
    "version": "3.2.3",
    "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.2.3.tgz",
    "integrity": "sha512-RrGCXRm/fRVqMIhqXrGEX9rRADavPiDFSoMb/k64i9XMk8uH4r/Omi5Ctierj6XzNecwDbO4WuFbDD1zmpl3Tg=="
    },
    "node_modules/merge2": {
    "version": "1.4.1",
    "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
    "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
    "engines": {
    "node": ">= 8"
    }
    },
    "node_modules/merkle-patricia-tree": {
    "version": "4.2.4",
    "resolved": "https://registry.npmjs.org/merkle-patricia-tree/-/merkle-patricia-tree-4.2.4.tgz",
    "integrity": "sha512-eHbf/BG6eGNsqqfbLED9rIqbsF4+sykEaBn6OLNs71tjclbMcMOk1tEPmJKcNcNCLkvbpY/lwyOlizWsqPNo8w==",
    "dependencies": {
    "@types/levelup": "^4.3.0",
    "ethereumjs-util": "^7.1.4",
    "level-mem": "^5.0.1",
    "level-ws": "^2.0.0",
    "readable-stream": "^3.6.0",
    "semaphore-async-await": "^1.5.1"
    }
    },
    "node_modules/micromatch": {
    "version": "4.0.5",
    "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz",
    "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==",
    "dependencies": {
    "braces": "^3.0.2",
    "picomatch": "^2.3.1"
    },
    "engines": {
    "node": ">=8.6"
    }
    },
    "node_modules/mime-db": {
    "version": "1.52.0",
    "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
    "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
    "engines": {
    "node": ">= 0.6"
    }
    },
    "node_modules/mime-types": {
    "version": "2.1.35",
    "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
    "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
    "dependencies": {
    "mime-db": "1.52.0"
    },
    "engines": {
    "node": ">= 0.6"
    }
    },
    "node_modules/mimic-response": {
    "version": "4.0.0",
    "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-4.0.0.tgz",
    "integrity": "sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==",
    "engines": {
    "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/minimalistic-assert": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz",
    "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A=="
    },
    "node_modules/minimalistic-crypto-utils": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz",
    "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg=="
    },
    "node_modules/minimatch": {
    "version": "9.0.3",
    "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz",
    "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==",
    "dependencies": {
    "brace-expansion": "^2.0.1"
    },
    "engines": {
    "node": ">=16 || 14 >=14.17"
    },
    "funding": {
    "url": "https://github.com/sponsors/isaacs"
    }
    },
    "node_modules/minimist": {
    "version": "1.2.8",
    "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
    "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
    "funding": {
    "url": "https://github.com/sponsors/ljharb"
    }
    },
    "node_modules/minipass": {
    "version": "5.0.0",
    "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz",
    "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==",
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/minipass-collect": {
    "version": "1.0.2",
    "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz",
    "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==",
    "dependencies": {
    "minipass": "^3.0.0"
    },
    "engines": {
    "node": ">= 8"
    }
    },
    "node_modules/minipass-collect/node_modules/minipass": {
    "version": "3.3.6",
    "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
    "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
    "dependencies": {
    "yallist": "^4.0.0"
    },
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/minipass-fetch": {
    "version": "3.0.4",
    "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.4.tgz",
    "integrity": "sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg==",
    "dependencies": {
    "minipass": "^7.0.3",
    "minipass-sized": "^1.0.3",
    "minizlib": "^2.1.2"
    },
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    },
    "optionalDependencies": {
    "encoding": "^0.1.13"
    }
    },
    "node_modules/minipass-fetch/node_modules/minipass": {
    "version": "7.0.3",
    "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.3.tgz",
    "integrity": "sha512-LhbbwCfz3vsb12j/WkWQPZfKTsgqIe1Nf/ti1pKjYESGLHIVjWU96G9/ljLH4F9mWNVhlQOm0VySdAWzf05dpg==",
    "engines": {
    "node": ">=16 || 14 >=14.17"
    }
    },
    "node_modules/minipass-flush": {
    "version": "1.0.5",
    "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz",
    "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==",
    "dependencies": {
    "minipass": "^3.0.0"
    },
    "engines": {
    "node": ">= 8"
    }
    },
    "node_modules/minipass-flush/node_modules/minipass": {
    "version": "3.3.6",
    "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
    "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
    "dependencies": {
    "yallist": "^4.0.0"
    },
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/minipass-json-stream": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz",
    "integrity": "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==",
    "dependencies": {
    "jsonparse": "^1.3.1",
    "minipass": "^3.0.0"
    }
    },
    "node_modules/minipass-json-stream/node_modules/minipass": {
    "version": "3.3.6",
    "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
    "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
    "dependencies": {
    "yallist": "^4.0.0"
    },
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/minipass-pipeline": {
    "version": "1.2.4",
    "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz",
    "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==",
    "dependencies": {
    "minipass": "^3.0.0"
    },
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/minipass-pipeline/node_modules/minipass": {
    "version": "3.3.6",
    "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
    "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
    "dependencies": {
    "yallist": "^4.0.0"
    },
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/minipass-sized": {
    "version": "1.0.3",
    "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz",
    "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==",
    "dependencies": {
    "minipass": "^3.0.0"
    },
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/minipass-sized/node_modules/minipass": {
    "version": "3.3.6",
    "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
    "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
    "dependencies": {
    "yallist": "^4.0.0"
    },
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/minizlib": {
    "version": "2.1.2",
    "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz",
    "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==",
    "dependencies": {
    "minipass": "^3.0.0",
    "yallist": "^4.0.0"
    },
    "engines": {
    "node": ">= 8"
    }
    },
    "node_modules/minizlib/node_modules/minipass": {
    "version": "3.3.6",
    "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
    "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
    "dependencies": {
    "yallist": "^4.0.0"
    },
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/mkdirp": {
    "version": "1.0.4",
    "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
    "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
    "bin": {
    "mkdirp": "bin/cmd.js"
    },
    "engines": {
    "node": ">=10"
    }
    },
    "node_modules/motion": {
    "version": "10.16.2",
    "resolved": "https://registry.npmjs.org/motion/-/motion-10.16.2.tgz",
    "integrity": "sha512-p+PurYqfUdcJZvtnmAqu5fJgV2kR0uLFQuBKtLeFVTrYEVllI99tiOTSefVNYuip9ELTEkepIIDftNdze76NAQ==",
    "dependencies": {
    "@motionone/animation": "^10.15.1",
    "@motionone/dom": "^10.16.2",
    "@motionone/svelte": "^10.16.2",
    "@motionone/types": "^10.15.1",
    "@motionone/utils": "^10.15.1",
    "@motionone/vue": "^10.16.2"
    }
    },
    "node_modules/ms": {
    "version": "2.1.2",
    "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
    "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
    },
    "node_modules/multiformats": {
    "version": "9.9.0",
    "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-9.9.0.tgz",
    "integrity": "sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg=="
    },
    "node_modules/mux-embed": {
    "version": "4.28.1",
    "resolved": "https://registry.npmjs.org/mux-embed/-/mux-embed-4.28.1.tgz",
    "integrity": "sha512-fDJK0Dn3nSqRkLj5LUyjVmFGJt4cWq0/WFq75eP+PMF1cU3lemgKkBVYkTTzx3TUDTuebW+1LZ80r9OTcSa+wQ=="
    },
    "node_modules/nanoid": {
    "version": "3.3.6",
    "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz",
    "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==",
    "devOptional": true,
    "funding": [
    {
    "type": "github",
    "url": "https://github.com/sponsors/ai"
    }
    ],
    "bin": {
    "nanoid": "bin/nanoid.cjs"
    },
    "engines": {
    "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
    }
    },
    "node_modules/narrowing": {
    "version": "1.5.0",
    "resolved": "https://registry.npmjs.org/narrowing/-/narrowing-1.5.0.tgz",
    "integrity": "sha512-DUu4XdKgkfAPTAL28k79pdnshDE2W5T24QAnidSPo2F/W1TX6CjNzmEeXQfE5O1lxQvC0GYI6ZRDsLcyzugEYA==",
    "dev": true
    },
    "node_modules/negotiator": {
    "version": "0.6.3",
    "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
    "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==",
    "engines": {
    "node": ">= 0.6"
    }
    },
    "node_modules/node-addon-api": {
    "version": "2.0.2",
    "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-2.0.2.tgz",
    "integrity": "sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA=="
    },
    "node_modules/node-fetch": {
    "version": "2.7.0",
    "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz",
    "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==",
    "dependencies": {
    "whatwg-url": "^5.0.0"
    },
    "engines": {
    "node": "4.x || >=6.0.0"
    },
    "peerDependencies": {
    "encoding": "^0.1.0"
    },
    "peerDependenciesMeta": {
    "encoding": {
    "optional": true
    }
    }
    },
    "node_modules/node-gyp": {
    "version": "9.4.0",
    "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-9.4.0.tgz",
    "integrity": "sha512-dMXsYP6gc9rRbejLXmTbVRYjAHw7ppswsKyMxuxJxxOHzluIO1rGp9TOQgjFJ+2MCqcOcQTOPB/8Xwhr+7s4Eg==",
    "dependencies": {
    "env-paths": "^2.2.0",
    "exponential-backoff": "^3.1.1",
    "glob": "^7.1.4",
    "graceful-fs": "^4.2.6",
    "make-fetch-happen": "^11.0.3",
    "nopt": "^6.0.0",
    "npmlog": "^6.0.0",
    "rimraf": "^3.0.2",
    "semver": "^7.3.5",
    "tar": "^6.1.2",
    "which": "^2.0.2"
    },
    "bin": {
    "node-gyp": "bin/node-gyp.js"
    },
    "engines": {
    "node": "^12.13 || ^14.13 || >=16"
    }
    },
    "node_modules/node-gyp-build": {
    "version": "4.6.0",
    "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.6.0.tgz",
    "integrity": "sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==",
    "bin": {
    "node-gyp-build": "bin.js",
    "node-gyp-build-optional": "optional.js",
    "node-gyp-build-test": "build-test.js"
    }
    },
    "node_modules/node-gyp/node_modules/brace-expansion": {
    "version": "1.1.11",
    "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
    "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
    "dependencies": {
    "balanced-match": "^1.0.0",
    "concat-map": "0.0.1"
    }
    },
    "node_modules/node-gyp/node_modules/glob": {
    "version": "7.2.3",
    "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
    "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
    "dependencies": {
    "fs.realpath": "^1.0.0",
    "inflight": "^1.0.4",
    "inherits": "2",
    "minimatch": "^3.1.1",
    "once": "^1.3.0",
    "path-is-absolute": "^1.0.0"
    },
    "engines": {
    "node": "*"
    },
    "funding": {
    "url": "https://github.com/sponsors/isaacs"
    }
    },
    "node_modules/node-gyp/node_modules/minimatch": {
    "version": "3.1.2",
    "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
    "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
    "dependencies": {
    "brace-expansion": "^1.1.7"
    },
    "engines": {
    "node": "*"
    }
    },
    "node_modules/node-gyp/node_modules/rimraf": {
    "version": "3.0.2",
    "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
    "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
    "dependencies": {
    "glob": "^7.1.3"
    },
    "bin": {
    "rimraf": "bin.js"
    },
    "funding": {
    "url": "https://github.com/sponsors/isaacs"
    }
    },
    "node_modules/nopt": {
    "version": "6.0.0",
    "resolved": "https://registry.npmjs.org/nopt/-/nopt-6.0.0.tgz",
    "integrity": "sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==",
    "dependencies": {
    "abbrev": "^1.0.0"
    },
    "bin": {
    "nopt": "bin/nopt.js"
    },
    "engines": {
    "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
    }
    },
    "node_modules/normalize-package-data": {
    "version": "5.0.0",
    "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-5.0.0.tgz",
    "integrity": "sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==",
    "dependencies": {
    "hosted-git-info": "^6.0.0",
    "is-core-module": "^2.8.1",
    "semver": "^7.3.5",
    "validate-npm-package-license": "^3.0.4"
    },
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/normalize-package-data/node_modules/hosted-git-info": {
    "version": "6.1.1",
    "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-6.1.1.tgz",
    "integrity": "sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==",
    "dependencies": {
    "lru-cache": "^7.5.1"
    },
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/normalize-url": {
    "version": "8.0.0",
    "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.0.tgz",
    "integrity": "sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw==",
    "engines": {
    "node": ">=14.16"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/npm-bundled": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-3.0.0.tgz",
    "integrity": "sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==",
    "dependencies": {
    "npm-normalize-package-bin": "^3.0.0"
    },
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/npm-check-updates": {
    "version": "16.12.2",
    "resolved": "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-16.12.2.tgz",
    "integrity": "sha512-N0jeEcak3/+PS1O5JzwJ2+fvmQVv+084O4iRnDtcMBLcr9S7vPOBxwWgsEuNfj3shKFZRYOuh4NHB9nMenCHXA==",
    "dependencies": {
    "chalk": "^5.3.0",
    "cli-table3": "^0.6.3",
    "commander": "^10.0.1",
    "fast-memoize": "^2.5.2",
    "find-up": "5.0.0",
    "fp-and-or": "^0.1.3",
    "get-stdin": "^8.0.0",
    "globby": "^11.0.4",
    "hosted-git-info": "^5.1.0",
    "ini": "^4.1.1",
    "js-yaml": "^4.1.0",
    "json-parse-helpfulerror": "^1.0.3",
    "jsonlines": "^0.1.1",
    "lodash": "^4.17.21",
    "make-fetch-happen": "^11.1.1",
    "minimatch": "^9.0.3",
    "p-map": "^4.0.0",
    "pacote": "15.2.0",
    "parse-github-url": "^1.0.2",
    "progress": "^2.0.3",
    "prompts-ncu": "^3.0.0",
    "rc-config-loader": "^4.1.3",
    "remote-git-tags": "^3.0.0",
    "rimraf": "^5.0.1",
    "semver": "^7.5.4",
    "semver-utils": "^1.1.4",
    "source-map-support": "^0.5.21",
    "spawn-please": "^2.0.1",
    "strip-json-comments": "^5.0.1",
    "untildify": "^4.0.0",
    "update-notifier": "^6.0.2"
    },
    "bin": {
    "ncu": "build/src/bin/cli.js",
    "npm-check-updates": "build/src/bin/cli.js"
    },
    "engines": {
    "node": ">=14.14"
    }
    },
    "node_modules/npm-check-updates/node_modules/chalk": {
    "version": "5.3.0",
    "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz",
    "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==",
    "engines": {
    "node": "^12.17.0 || ^14.13 || >=16.0.0"
    },
    "funding": {
    "url": "https://github.com/chalk/chalk?sponsor=1"
    }
    },
    "node_modules/npm-install-checks": {
    "version": "6.2.0",
    "resolved": "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-6.2.0.tgz",
    "integrity": "sha512-744wat5wAAHsxa4590mWO0tJ8PKxR8ORZsH9wGpQc3nWTzozMAgBN/XyqYw7mg3yqLM8dLwEnwSfKMmXAjF69g==",
    "dependencies": {
    "semver": "^7.1.1"
    },
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/npm-normalize-package-bin": {
    "version": "3.0.1",
    "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz",
    "integrity": "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==",
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/npm-package-arg": {
    "version": "10.1.0",
    "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-10.1.0.tgz",
    "integrity": "sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==",
    "dependencies": {
    "hosted-git-info": "^6.0.0",
    "proc-log": "^3.0.0",
    "semver": "^7.3.5",
    "validate-npm-package-name": "^5.0.0"
    },
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/npm-package-arg/node_modules/hosted-git-info": {
    "version": "6.1.1",
    "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-6.1.1.tgz",
    "integrity": "sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==",
    "dependencies": {
    "lru-cache": "^7.5.1"
    },
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/npm-packlist": {
    "version": "7.0.4",
    "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-7.0.4.tgz",
    "integrity": "sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==",
    "dependencies": {
    "ignore-walk": "^6.0.0"
    },
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/npm-pick-manifest": {
    "version": "8.0.2",
    "resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-8.0.2.tgz",
    "integrity": "sha512-1dKY+86/AIiq1tkKVD3l0WI+Gd3vkknVGAggsFeBkTvbhMQ1OND/LKkYv4JtXPKUJ8bOTCyLiqEg2P6QNdK+Gg==",
    "dependencies": {
    "npm-install-checks": "^6.0.0",
    "npm-normalize-package-bin": "^3.0.0",
    "npm-package-arg": "^10.0.0",
    "semver": "^7.3.5"
    },
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/npm-registry-fetch": {
    "version": "14.0.5",
    "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-14.0.5.tgz",
    "integrity": "sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA==",
    "dependencies": {
    "make-fetch-happen": "^11.0.0",
    "minipass": "^5.0.0",
    "minipass-fetch": "^3.0.0",
    "minipass-json-stream": "^1.0.1",
    "minizlib": "^2.1.2",
    "npm-package-arg": "^10.0.0",
    "proc-log": "^3.0.0"
    },
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/npmlog": {
    "version": "6.0.2",
    "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz",
    "integrity": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==",
    "dependencies": {
    "are-we-there-yet": "^3.0.0",
    "console-control-strings": "^1.1.0",
    "gauge": "^4.0.3",
    "set-blocking": "^2.0.0"
    },
    "engines": {
    "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
    }
    },
    "node_modules/object-inspect": {
    "version": "1.12.3",
    "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz",
    "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==",
    "funding": {
    "url": "https://github.com/sponsors/ljharb"
    }
    },
    "node_modules/on-exit-leak-free": {
    "version": "0.2.0",
    "resolved": "https://registry.npmjs.org/on-exit-leak-free/-/on-exit-leak-free-0.2.0.tgz",
    "integrity": "sha512-dqaz3u44QbRXQooZLTUKU41ZrzYrcvLISVgbrzbyCMxpmSLJvZ3ZamIJIZ29P6OhZIkNIQKosdeM6t1LYbA9hg=="
    },
    "node_modules/once": {
    "version": "1.4.0",
    "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
    "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
    "dependencies": {
    "wrappy": "1"
    }
    },
    "node_modules/openpgp": {
    "version": "5.10.2",
    "resolved": "https://registry.npmjs.org/openpgp/-/openpgp-5.10.2.tgz",
    "integrity": "sha512-nRqMp4o31rBagWB02tgfKCsocXWq4uYobZf9GDVlD5rQXBq/wRIZHiDhGX1dlDAI2inkZcPd2dSZOqmtGnsK1A==",
    "dependencies": {
    "asn1.js": "^5.0.0"
    },
    "engines": {
    "node": ">= 8.0.0"
    }
    },
    "node_modules/p-cancelable": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-3.0.0.tgz",
    "integrity": "sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==",
    "engines": {
    "node": ">=12.20"
    }
    },
    "node_modules/p-limit": {
    "version": "3.1.0",
    "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
    "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
    "dependencies": {
    "yocto-queue": "^0.1.0"
    },
    "engines": {
    "node": ">=10"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/p-locate": {
    "version": "5.0.0",
    "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
    "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
    "dependencies": {
    "p-limit": "^3.0.2"
    },
    "engines": {
    "node": ">=10"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/p-map": {
    "version": "4.0.0",
    "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz",
    "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==",
    "dependencies": {
    "aggregate-error": "^3.0.0"
    },
    "engines": {
    "node": ">=10"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/p-try": {
    "version": "2.2.0",
    "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
    "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
    "engines": {
    "node": ">=6"
    }
    },
    "node_modules/package-json": {
    "version": "8.1.1",
    "resolved": "https://registry.npmjs.org/package-json/-/package-json-8.1.1.tgz",
    "integrity": "sha512-cbH9IAIJHNj9uXi196JVsRlt7cHKak6u/e6AkL/bkRelZ7rlL3X1YKxsZwa36xipOEKAsdtmaG6aAJoM1fx2zA==",
    "dependencies": {
    "got": "^12.1.0",
    "registry-auth-token": "^5.0.1",
    "registry-url": "^6.0.0",
    "semver": "^7.3.7"
    },
    "engines": {
    "node": ">=14.16"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/pacote": {
    "version": "15.2.0",
    "resolved": "https://registry.npmjs.org/pacote/-/pacote-15.2.0.tgz",
    "integrity": "sha512-rJVZeIwHTUta23sIZgEIM62WYwbmGbThdbnkt81ravBplQv+HjyroqnLRNH2+sLJHcGZmLRmhPwACqhfTcOmnA==",
    "dependencies": {
    "@npmcli/git": "^4.0.0",
    "@npmcli/installed-package-contents": "^2.0.1",
    "@npmcli/promise-spawn": "^6.0.1",
    "@npmcli/run-script": "^6.0.0",
    "cacache": "^17.0.0",
    "fs-minipass": "^3.0.0",
    "minipass": "^5.0.0",
    "npm-package-arg": "^10.0.0",
    "npm-packlist": "^7.0.0",
    "npm-pick-manifest": "^8.0.0",
    "npm-registry-fetch": "^14.0.0",
    "proc-log": "^3.0.0",
    "promise-retry": "^2.0.1",
    "read-package-json": "^6.0.0",
    "read-package-json-fast": "^3.0.0",
    "sigstore": "^1.3.0",
    "ssri": "^10.0.0",
    "tar": "^6.1.11"
    },
    "bin": {
    "pacote": "lib/bin.js"
    },
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/parse-github-url": {
    "version": "1.0.2",
    "resolved": "https://registry.npmjs.org/parse-github-url/-/parse-github-url-1.0.2.tgz",
    "integrity": "sha512-kgBf6avCbO3Cn6+RnzRGLkUsv4ZVqv/VfAYkRsyBcgkshNvVBkRn1FEZcW0Jb+npXQWm2vHPnnOqFteZxRRGNw==",
    "bin": {
    "parse-github-url": "cli.js"
    },
    "engines": {
    "node": ">=0.10.0"
    }
    },
    "node_modules/path-exists": {
    "version": "4.0.0",
    "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
    "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/path-is-absolute": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
    "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
    "engines": {
    "node": ">=0.10.0"
    }
    },
    "node_modules/path-key": {
    "version": "3.1.1",
    "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
    "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/path-scurry": {
    "version": "1.10.1",
    "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz",
    "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==",
    "dependencies": {
    "lru-cache": "^9.1.1 || ^10.0.0",
    "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
    },
    "engines": {
    "node": ">=16 || 14 >=14.17"
    },
    "funding": {
    "url": "https://github.com/sponsors/isaacs"
    }
    },
    "node_modules/path-scurry/node_modules/lru-cache": {
    "version": "10.0.1",
    "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.1.tgz",
    "integrity": "sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==",
    "engines": {
    "node": "14 || >=16.14"
    }
    },
    "node_modules/path-type": {
    "version": "4.0.0",
    "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
    "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/pbkdf2": {
    "version": "3.1.2",
    "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz",
    "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==",
    "dependencies": {
    "create-hash": "^1.1.2",
    "create-hmac": "^1.1.4",
    "ripemd160": "^2.0.1",
    "safe-buffer": "^5.0.1",
    "sha.js": "^2.4.8"
    },
    "engines": {
    "node": ">=0.12"
    }
    },
    "node_modules/picocolors": {
    "version": "1.0.0",
    "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
    "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==",
    "devOptional": true
    },
    "node_modules/picomatch": {
    "version": "2.3.1",
    "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
    "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
    "engines": {
    "node": ">=8.6"
    },
    "funding": {
    "url": "https://github.com/sponsors/jonschlinkert"
    }
    },
    "node_modules/pify": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
    "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==",
    "engines": {
    "node": ">=4"
    }
    },
    "node_modules/pino": {
    "version": "7.11.0",
    "resolved": "https://registry.npmjs.org/pino/-/pino-7.11.0.tgz",
    "integrity": "sha512-dMACeu63HtRLmCG8VKdy4cShCPKaYDR4youZqoSWLxl5Gu99HUw8bw75thbPv9Nip+H+QYX8o3ZJbTdVZZ2TVg==",
    "dependencies": {
    "atomic-sleep": "^1.0.0",
    "fast-redact": "^3.0.0",
    "on-exit-leak-free": "^0.2.0",
    "pino-abstract-transport": "v0.5.0",
    "pino-std-serializers": "^4.0.0",
    "process-warning": "^1.0.0",
    "quick-format-unescaped": "^4.0.3",
    "real-require": "^0.1.0",
    "safe-stable-stringify": "^2.1.0",
    "sonic-boom": "^2.2.1",
    "thread-stream": "^0.15.1"
    },
    "bin": {
    "pino": "bin.js"
    }
    },
    "node_modules/pino-abstract-transport": {
    "version": "0.5.0",
    "resolved": "https://registry.npmjs.org/pino-abstract-transport/-/pino-abstract-transport-0.5.0.tgz",
    "integrity": "sha512-+KAgmVeqXYbTtU2FScx1XS3kNyfZ5TrXY07V96QnUSFqo2gAqlvmaxH67Lj7SWazqsMabf+58ctdTcBgnOLUOQ==",
    "dependencies": {
    "duplexify": "^4.1.2",
    "split2": "^4.0.0"
    }
    },
    "node_modules/pino-std-serializers": {
    "version": "4.0.0",
    "resolved": "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-4.0.0.tgz",
    "integrity": "sha512-cK0pekc1Kjy5w9V2/n+8MkZwusa6EyyxfeQCB799CQRhRt/CqYKiWs5adeu8Shve2ZNffvfC/7J64A2PJo1W/Q=="
    },
    "node_modules/plyr": {
    "version": "3.7.8",
    "resolved": "https://registry.npmjs.org/plyr/-/plyr-3.7.8.tgz",
    "integrity": "sha512-yG/EHDobwbB/uP+4Bm6eUpJ93f8xxHjjk2dYcD1Oqpe1EcuQl5tzzw9Oq+uVAzd2lkM11qZfydSiyIpiB8pgdA==",
    "dependencies": {
    "core-js": "^3.26.1",
    "custom-event-polyfill": "^1.0.7",
    "loadjs": "^4.2.0",
    "rangetouch": "^2.0.1",
    "url-polyfill": "^1.1.12"
    }
    },
    "node_modules/pngjs": {
    "version": "5.0.0",
    "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-5.0.0.tgz",
    "integrity": "sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==",
    "engines": {
    "node": ">=10.13.0"
    }
    },
    "node_modules/postcss": {
    "version": "8.4.31",
    "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz",
    "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==",
    "devOptional": true,
    "funding": [
    {
    "type": "opencollective",
    "url": "https://opencollective.com/postcss/"
    },
    {
    "type": "tidelift",
    "url": "https://tidelift.com/funding/github/npm/postcss"
    },
    {
    "type": "github",
    "url": "https://github.com/sponsors/ai"
    }
    ],
    "dependencies": {
    "nanoid": "^3.3.6",
    "picocolors": "^1.0.0",
    "source-map-js": "^1.0.2"
    },
    "engines": {
    "node": "^10 || ^12 || >=14"
    }
    },
    "node_modules/preact": {
    "version": "10.18.1",
    "resolved": "https://registry.npmjs.org/preact/-/preact-10.18.1.tgz",
    "integrity": "sha512-mKUD7RRkQQM6s7Rkmi7IFkoEHjuFqRQUaXamO61E6Nn7vqF/bo7EZCmSyrUnp2UWHw0O7XjZ2eeXis+m7tf4lg==",
    "funding": {
    "type": "opencollective",
    "url": "https://opencollective.com/preact"
    }
    },
    "node_modules/proc-log": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-3.0.0.tgz",
    "integrity": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==",
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/process": {
    "version": "0.11.10",
    "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
    "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==",
    "engines": {
    "node": ">= 0.6.0"
    }
    },
    "node_modules/process-warning": {
    "version": "1.0.0",
    "resolved": "https://registry.npmjs.org/process-warning/-/process-warning-1.0.0.tgz",
    "integrity": "sha512-du4wfLyj4yCZq1VupnVSZmRsPJsNuxoDQFdCFHLaYiEbFBD7QE0a+I4D7hOxrVnh78QE/YipFAj9lXHiXocV+Q=="
    },
    "node_modules/progress": {
    "version": "2.0.3",
    "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz",
    "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==",
    "engines": {
    "node": ">=0.4.0"
    }
    },
    "node_modules/promise-inflight": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz",
    "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g=="
    },
    "node_modules/promise-retry": {
    "version": "2.0.1",
    "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz",
    "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==",
    "dependencies": {
    "err-code": "^2.0.2",
    "retry": "^0.12.0"
    },
    "engines": {
    "node": ">=10"
    }
    },
    "node_modules/prompts-ncu": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/prompts-ncu/-/prompts-ncu-3.0.0.tgz",
    "integrity": "sha512-qyz9UxZ5MlPKWVhWrCmSZ1ahm2GVYdjLb8og2sg0IPth1KRuhcggHGuijz0e41dkx35p1t1q3GRISGH7QGALFA==",
    "dependencies": {
    "kleur": "^4.0.1",
    "sisteransi": "^1.0.5"
    },
    "engines": {
    "node": ">= 14"
    }
    },
    "node_modules/proto-list": {
    "version": "1.2.4",
    "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz",
    "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA=="
    },
    "node_modules/proxy-compare": {
    "version": "2.5.1",
    "resolved": "https://registry.npmjs.org/proxy-compare/-/proxy-compare-2.5.1.tgz",
    "integrity": "sha512-oyfc0Tx87Cpwva5ZXezSp5V9vht1c7dZBhvuV/y3ctkgMVUmiAGDVeeB0dKhGSyT0v1ZTEQYpe/RXlBVBNuCLA=="
    },
    "node_modules/proxy-from-env": {
    "version": "1.1.0",
    "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
    "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg=="
    },
    "node_modules/prr": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz",
    "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw=="
    },
    "node_modules/pupa": {
    "version": "3.1.0",
    "resolved": "https://registry.npmjs.org/pupa/-/pupa-3.1.0.tgz",
    "integrity": "sha512-FLpr4flz5xZTSJxSeaheeMKN/EDzMdK7b8PTOC6a5PYFKTucWbdqjgqaEyH0shFiSJrVB1+Qqi4Tk19ccU6Aug==",
    "dependencies": {
    "escape-goat": "^4.0.0"
    },
    "engines": {
    "node": ">=12.20"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/qrcode": {
    "version": "1.5.3",
    "resolved": "https://registry.npmjs.org/qrcode/-/qrcode-1.5.3.tgz",
    "integrity": "sha512-puyri6ApkEHYiVl4CFzo1tDkAZ+ATcnbJrJ6RiBM1Fhctdn/ix9MTE3hRph33omisEbC/2fcfemsseiKgBPKZg==",
    "dependencies": {
    "dijkstrajs": "^1.0.1",
    "encode-utf8": "^1.0.3",
    "pngjs": "^5.0.0",
    "yargs": "^15.3.1"
    },
    "bin": {
    "qrcode": "bin/qrcode"
    },
    "engines": {
    "node": ">=10.13.0"
    }
    },
    "node_modules/qs": {
    "version": "6.11.2",
    "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.2.tgz",
    "integrity": "sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==",
    "dependencies": {
    "side-channel": "^1.0.4"
    },
    "engines": {
    "node": ">=0.6"
    },
    "funding": {
    "url": "https://github.com/sponsors/ljharb"
    }
    },
    "node_modules/query-string": {
    "version": "6.14.1",
    "resolved": "https://registry.npmjs.org/query-string/-/query-string-6.14.1.tgz",
    "integrity": "sha512-XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw==",
    "dependencies": {
    "decode-uri-component": "^0.2.0",
    "filter-obj": "^1.1.0",
    "split-on-first": "^1.0.0",
    "strict-uri-encode": "^2.0.0"
    },
    "engines": {
    "node": ">=6"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/queue-microtask": {
    "version": "1.2.3",
    "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
    "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
    "funding": [
    {
    "type": "github",
    "url": "https://github.com/sponsors/feross"
    },
    {
    "type": "patreon",
    "url": "https://www.patreon.com/feross"
    },
    {
    "type": "consulting",
    "url": "https://feross.org/support"
    }
    ]
    },
    "node_modules/quick-format-unescaped": {
    "version": "4.0.4",
    "resolved": "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-4.0.4.tgz",
    "integrity": "sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg=="
    },
    "node_modules/quick-lru": {
    "version": "5.1.1",
    "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz",
    "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==",
    "engines": {
    "node": ">=10"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/randombytes": {
    "version": "2.1.0",
    "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz",
    "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==",
    "dependencies": {
    "safe-buffer": "^5.1.0"
    }
    },
    "node_modules/rangetouch": {
    "version": "2.0.1",
    "resolved": "https://registry.npmjs.org/rangetouch/-/rangetouch-2.0.1.tgz",
    "integrity": "sha512-sln+pNSc8NGaHoLzwNBssFSf/rSYkqeBXzX1AtJlkJiUaVSJSbRAWJk+4omsXkN+EJalzkZhWQ3th1m0FpR5xA=="
    },
    "node_modules/rc": {
    "version": "1.2.8",
    "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz",
    "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==",
    "dependencies": {
    "deep-extend": "^0.6.0",
    "ini": "~1.3.0",
    "minimist": "^1.2.0",
    "strip-json-comments": "~2.0.1"
    },
    "bin": {
    "rc": "cli.js"
    }
    },
    "node_modules/rc-config-loader": {
    "version": "4.1.3",
    "resolved": "https://registry.npmjs.org/rc-config-loader/-/rc-config-loader-4.1.3.tgz",
    "integrity": "sha512-kD7FqML7l800i6pS6pvLyIE2ncbk9Du8Q0gp/4hMPhJU6ZxApkoLcGD8ZeqgiAlfwZ6BlETq6qqe+12DUL207w==",
    "dependencies": {
    "debug": "^4.3.4",
    "js-yaml": "^4.1.0",
    "json5": "^2.2.2",
    "require-from-string": "^2.0.2"
    }
    },
    "node_modules/rc/node_modules/ini": {
    "version": "1.3.8",
    "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
    "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="
    },
    "node_modules/rc/node_modules/strip-json-comments": {
    "version": "2.0.1",
    "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
    "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==",
    "engines": {
    "node": ">=0.10.0"
    }
    },
    "node_modules/react": {
    "version": "18.2.0",
    "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz",
    "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==",
    "dependencies": {
    "loose-envify": "^1.1.0"
    },
    "engines": {
    "node": ">=0.10.0"
    }
    },
    "node_modules/react-dom": {
    "version": "18.2.0",
    "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz",
    "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==",
    "optional": true,
    "dependencies": {
    "loose-envify": "^1.1.0",
    "scheduler": "^0.23.0"
    },
    "peerDependencies": {
    "react": "^18.2.0"
    }
    },
    "node_modules/read-package-json": {
    "version": "6.0.4",
    "resolved": "https://registry.npmjs.org/read-package-json/-/read-package-json-6.0.4.tgz",
    "integrity": "sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw==",
    "dependencies": {
    "glob": "^10.2.2",
    "json-parse-even-better-errors": "^3.0.0",
    "normalize-package-data": "^5.0.0",
    "npm-normalize-package-bin": "^3.0.0"
    },
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/read-package-json-fast": {
    "version": "3.0.2",
    "resolved": "https://registry.npmjs.org/read-package-json-fast/-/read-package-json-fast-3.0.2.tgz",
    "integrity": "sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==",
    "dependencies": {
    "json-parse-even-better-errors": "^3.0.0",
    "npm-normalize-package-bin": "^3.0.0"
    },
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/readable-stream": {
    "version": "3.6.2",
    "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
    "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
    "dependencies": {
    "inherits": "^2.0.3",
    "string_decoder": "^1.1.1",
    "util-deprecate": "^1.0.1"
    },
    "engines": {
    "node": ">= 6"
    }
    },
    "node_modules/real-require": {
    "version": "0.1.0",
    "resolved": "https://registry.npmjs.org/real-require/-/real-require-0.1.0.tgz",
    "integrity": "sha512-r/H9MzAWtrv8aSVjPCMFpDMl5q66GqtmmRkRjpHTsp4zBAa+snZyiQNlMONiUmEJcsnaw0wCauJ2GWODr/aFkg==",
    "engines": {
    "node": ">= 12.13.0"
    }
    },
    "node_modules/regenerator-runtime": {
    "version": "0.14.0",
    "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz",
    "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA=="
    },
    "node_modules/registry-auth-token": {
    "version": "5.0.2",
    "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-5.0.2.tgz",
    "integrity": "sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==",
    "dependencies": {
    "@pnpm/npm-conf": "^2.1.0"
    },
    "engines": {
    "node": ">=14"
    }
    },
    "node_modules/registry-url": {
    "version": "6.0.1",
    "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-6.0.1.tgz",
    "integrity": "sha512-+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q==",
    "dependencies": {
    "rc": "1.2.8"
    },
    "engines": {
    "node": ">=12"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/remote-git-tags": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/remote-git-tags/-/remote-git-tags-3.0.0.tgz",
    "integrity": "sha512-C9hAO4eoEsX+OXA4rla66pXZQ+TLQ8T9dttgQj18yuKlPMTVkIkdYXvlMC55IuUsIkV6DpmQYi10JKFLaU+l7w==",
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/require-directory": {
    "version": "2.1.1",
    "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
    "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
    "engines": {
    "node": ">=0.10.0"
    }
    },
    "node_modules/require-from-string": {
    "version": "2.0.2",
    "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
    "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
    "engines": {
    "node": ">=0.10.0"
    }
    },
    "node_modules/require-main-filename": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz",
    "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg=="
    },
    "node_modules/resolve-alpn": {
    "version": "1.2.1",
    "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz",
    "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g=="
    },
    "node_modules/responselike": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/responselike/-/responselike-3.0.0.tgz",
    "integrity": "sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==",
    "dependencies": {
    "lowercase-keys": "^3.0.0"
    },
    "engines": {
    "node": ">=14.16"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/retry": {
    "version": "0.12.0",
    "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz",
    "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==",
    "engines": {
    "node": ">= 4"
    }
    },
    "node_modules/reusify": {
    "version": "1.0.4",
    "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
    "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
    "engines": {
    "iojs": ">=1.0.0",
    "node": ">=0.10.0"
    }
    },
    "node_modules/rimraf": {
    "version": "5.0.1",
    "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.1.tgz",
    "integrity": "sha512-OfFZdwtd3lZ+XZzYP/6gTACubwFcHdLRqS9UX3UwpU2dnGQYkPFISRwvM3w9IiB2w7bW5qGo/uAwE4SmXXSKvg==",
    "dependencies": {
    "glob": "^10.2.5"
    },
    "bin": {
    "rimraf": "dist/cjs/src/bin.js"
    },
    "engines": {
    "node": ">=14"
    },
    "funding": {
    "url": "https://github.com/sponsors/isaacs"
    }
    },
    "node_modules/ripemd160": {
    "version": "2.0.2",
    "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz",
    "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==",
    "dependencies": {
    "hash-base": "^3.0.0",
    "inherits": "^2.0.1"
    }
    },
    "node_modules/rlp": {
    "version": "2.2.7",
    "resolved": "https://registry.npmjs.org/rlp/-/rlp-2.2.7.tgz",
    "integrity": "sha512-d5gdPmgQ0Z+AklL2NVXr/IoSjNZFfTVvQWzL/AM2AOcSzYP2xjlb0AC8YyCLc41MSNf6P6QVtjgPdmVtzb+4lQ==",
    "dependencies": {
    "bn.js": "^5.2.0"
    },
    "bin": {
    "rlp": "bin/rlp"
    }
    },
    "node_modules/rlp/node_modules/bn.js": {
    "version": "5.2.1",
    "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz",
    "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ=="
    },
    "node_modules/rollup": {
    "version": "3.28.0",
    "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.28.0.tgz",
    "integrity": "sha512-d7zhvo1OUY2SXSM6pfNjgD5+d0Nz87CUp4mt8l/GgVP3oBsPwzNvSzyu1me6BSG9JIgWNTVcafIXBIyM8yQ3yw==",
    "dev": true,
    "bin": {
    "rollup": "dist/bin/rollup"
    },
    "engines": {
    "node": ">=14.18.0",
    "npm": ">=8.0.0"
    },
    "optionalDependencies": {
    "fsevents": "~2.3.2"
    }
    },
    "node_modules/rpc-websockets": {
    "version": "7.6.0",
    "resolved": "https://registry.npmjs.org/rpc-websockets/-/rpc-websockets-7.6.0.tgz",
    "integrity": "sha512-Jgcs8q6t8Go98dEulww1x7RysgTkzpCMelVxZW4hvuyFtOGpeUz9prpr2KjUa/usqxgFCd9Tu3+yhHEP9GVmiQ==",
    "dependencies": {
    "@babel/runtime": "^7.17.2",
    "eventemitter3": "^4.0.7",
    "uuid": "^8.3.2",
    "ws": "^8.5.0"
    },
    "funding": {
    "type": "paypal",
    "url": "https://paypal.me/kozjak"
    },
    "optionalDependencies": {
    "bufferutil": "^4.0.1",
    "utf-8-validate": "^5.0.2"
    }
    },
    "node_modules/run-parallel": {
    "version": "1.2.0",
    "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
    "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
    "funding": [
    {
    "type": "github",
    "url": "https://github.com/sponsors/feross"
    },
    {
    "type": "patreon",
    "url": "https://www.patreon.com/feross"
    },
    {
    "type": "consulting",
    "url": "https://feross.org/support"
    }
    ],
    "dependencies": {
    "queue-microtask": "^1.2.2"
    }
    },
    "node_modules/rxjs": {
    "version": "6.6.7",
    "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz",
    "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==",
    "dependencies": {
    "tslib": "^1.9.0"
    },
    "engines": {
    "npm": ">=2.0.0"
    }
    },
    "node_modules/rxjs/node_modules/tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    },
    "node_modules/safe-buffer": {
    "version": "5.2.1",
    "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
    "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
    "funding": [
    {
    "type": "github",
    "url": "https://github.com/sponsors/feross"
    },
    {
    "type": "patreon",
    "url": "https://www.patreon.com/feross"
    },
    {
    "type": "consulting",
    "url": "https://feross.org/support"
    }
    ]
    },
    "node_modules/safe-json-utils": {
    "version": "1.1.1",
    "resolved": "https://registry.npmjs.org/safe-json-utils/-/safe-json-utils-1.1.1.tgz",
    "integrity": "sha512-SAJWGKDs50tAbiDXLf89PDwt9XYkWyANFWVzn4dTXl5QyI8t2o/bW5/OJl3lvc2WVU4MEpTo9Yz5NVFNsp+OJQ=="
    },
    "node_modules/safe-stable-stringify": {
    "version": "2.4.3",
    "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.3.tgz",
    "integrity": "sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==",
    "engines": {
    "node": ">=10"
    }
    },
    "node_modules/safer-buffer": {
    "version": "2.1.2",
    "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
    "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
    },
    "node_modules/scheduler": {
    "version": "0.23.0",
    "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz",
    "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==",
    "optional": true,
    "dependencies": {
    "loose-envify": "^1.1.0"
    }
    },
    "node_modules/scrypt-js": {
    "version": "3.0.1",
    "resolved": "https://registry.npmjs.org/scrypt-js/-/scrypt-js-3.0.1.tgz",
    "integrity": "sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA=="
    },
    "node_modules/secp256k1": {
    "version": "4.0.3",
    "resolved": "https://registry.npmjs.org/secp256k1/-/secp256k1-4.0.3.tgz",
    "integrity": "sha512-NLZVf+ROMxwtEj3Xa562qgv2BK5e2WNmXPiOdVIPLgs6lyTzMvBq0aWTYMI5XCP9jZMVKOcqZLw/Wc4vDkuxhA==",
    "hasInstallScript": true,
    "dependencies": {
    "elliptic": "^6.5.4",
    "node-addon-api": "^2.0.0",
    "node-gyp-build": "^4.2.0"
    },
    "engines": {
    "node": ">=10.0.0"
    }
    },
    "node_modules/semaphore-async-await": {
    "version": "1.5.1",
    "resolved": "https://registry.npmjs.org/semaphore-async-await/-/semaphore-async-await-1.5.1.tgz",
    "integrity": "sha512-b/ptP11hETwYWpeilHXXQiV5UJNJl7ZWWooKRE5eBIYWoom6dZ0SluCIdCtKycsMtZgKWE01/qAw6jblw1YVhg==",
    "engines": {
    "node": ">=4.1"
    }
    },
    "node_modules/semver": {
    "version": "7.5.4",
    "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz",
    "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==",
    "dependencies": {
    "lru-cache": "^6.0.0"
    },
    "bin": {
    "semver": "bin/semver.js"
    },
    "engines": {
    "node": ">=10"
    }
    },
    "node_modules/semver-diff": {
    "version": "4.0.0",
    "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-4.0.0.tgz",
    "integrity": "sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==",
    "dependencies": {
    "semver": "^7.3.5"
    },
    "engines": {
    "node": ">=12"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/semver-utils": {
    "version": "1.1.4",
    "resolved": "https://registry.npmjs.org/semver-utils/-/semver-utils-1.1.4.tgz",
    "integrity": "sha512-EjnoLE5OGmDAVV/8YDoN5KiajNadjzIp9BAHOhYeQHt7j0UWxjmgsx4YD48wp4Ue1Qogq38F1GNUJNqF1kKKxA=="
    },
    "node_modules/semver/node_modules/lru-cache": {
    "version": "6.0.0",
    "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
    "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
    "dependencies": {
    "yallist": "^4.0.0"
    },
    "engines": {
    "node": ">=10"
    }
    },
    "node_modules/set-blocking": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
    "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw=="
    },
    "node_modules/setimmediate": {
    "version": "1.0.5",
    "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz",
    "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA=="
    },
    "node_modules/sha.js": {
    "version": "2.4.11",
    "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz",
    "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==",
    "dependencies": {
    "inherits": "^2.0.1",
    "safe-buffer": "^5.0.1"
    },
    "bin": {
    "sha.js": "bin.js"
    }
    },
    "node_modules/shebang-command": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
    "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
    "dependencies": {
    "shebang-regex": "^3.0.0"
    },
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/shebang-regex": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
    "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/side-channel": {
    "version": "1.0.4",
    "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz",
    "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==",
    "dependencies": {
    "call-bind": "^1.0.0",
    "get-intrinsic": "^1.0.2",
    "object-inspect": "^1.9.0"
    },
    "funding": {
    "url": "https://github.com/sponsors/ljharb"
    }
    },
    "node_modules/signal-exit": {
    "version": "4.1.0",
    "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
    "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
    "engines": {
    "node": ">=14"
    },
    "funding": {
    "url": "https://github.com/sponsors/isaacs"
    }
    },
    "node_modules/sigstore": {
    "version": "1.9.0",
    "resolved": "https://registry.npmjs.org/sigstore/-/sigstore-1.9.0.tgz",
    "integrity": "sha512-0Zjz0oe37d08VeOtBIuB6cRriqXse2e8w+7yIy2XSXjshRKxbc2KkhXjL229jXSxEm7UbcjS76wcJDGQddVI9A==",
    "dependencies": {
    "@sigstore/bundle": "^1.1.0",
    "@sigstore/protobuf-specs": "^0.2.0",
    "@sigstore/sign": "^1.0.0",
    "@sigstore/tuf": "^1.0.3",
    "make-fetch-happen": "^11.0.1"
    },
    "bin": {
    "sigstore": "bin/sigstore.js"
    },
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/sisteransi": {
    "version": "1.0.5",
    "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz",
    "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg=="
    },
    "node_modules/slash": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
    "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/smart-buffer": {
    "version": "4.2.0",
    "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz",
    "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==",
    "engines": {
    "node": ">= 6.0.0",
    "npm": ">= 3.0.0"
    }
    },
    "node_modules/socks": {
    "version": "2.7.1",
    "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz",
    "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==",
    "dependencies": {
    "ip": "^2.0.0",
    "smart-buffer": "^4.2.0"
    },
    "engines": {
    "node": ">= 10.13.0",
    "npm": ">= 3.0.0"
    }
    },
    "node_modules/socks-proxy-agent": {
    "version": "7.0.0",
    "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz",
    "integrity": "sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==",
    "dependencies": {
    "agent-base": "^6.0.2",
    "debug": "^4.3.3",
    "socks": "^2.6.2"
    },
    "engines": {
    "node": ">= 10"
    }
    },
    "node_modules/sonic-boom": {
    "version": "2.8.0",
    "resolved": "https://registry.npmjs.org/sonic-boom/-/sonic-boom-2.8.0.tgz",
    "integrity": "sha512-kuonw1YOYYNOve5iHdSahXPOK49GqwA+LZhI6Wz/l0rP57iKyXXIHaRagOBHAPmGwJC6od2Z9zgvZ5loSgMlVg==",
    "dependencies": {
    "atomic-sleep": "^1.0.0"
    }
    },
    "node_modules/source-map": {
    "version": "0.6.1",
    "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
    "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
    "engines": {
    "node": ">=0.10.0"
    }
    },
    "node_modules/source-map-js": {
    "version": "1.0.2",
    "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz",
    "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==",
    "devOptional": true,
    "engines": {
    "node": ">=0.10.0"
    }
    },
    "node_modules/source-map-support": {
    "version": "0.5.21",
    "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz",
    "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==",
    "dependencies": {
    "buffer-from": "^1.0.0",
    "source-map": "^0.6.0"
    }
    },
    "node_modules/spawn-please": {
    "version": "2.0.1",
    "resolved": "https://registry.npmjs.org/spawn-please/-/spawn-please-2.0.1.tgz",
    "integrity": "sha512-W+cFbZR2q2mMTfjz5ZGvhBAiX+e/zczFCNlbS9mxiSdYswBXwUuBUT+a0urH+xZZa8f/bs0mXHyZsZHR9hKogA==",
    "dependencies": {
    "cross-spawn": "^7.0.3"
    },
    "engines": {
    "node": ">=14"
    }
    },
    "node_modules/spdx-correct": {
    "version": "3.2.0",
    "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz",
    "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==",
    "dependencies": {
    "spdx-expression-parse": "^3.0.0",
    "spdx-license-ids": "^3.0.0"
    }
    },
    "node_modules/spdx-exceptions": {
    "version": "2.3.0",
    "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz",
    "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A=="
    },
    "node_modules/spdx-expression-parse": {
    "version": "3.0.1",
    "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz",
    "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==",
    "dependencies": {
    "spdx-exceptions": "^2.1.0",
    "spdx-license-ids": "^3.0.0"
    }
    },
    "node_modules/spdx-license-ids": {
    "version": "3.0.13",
    "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz",
    "integrity": "sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w=="
    },
    "node_modules/split-on-first": {
    "version": "1.1.0",
    "resolved": "https://registry.npmjs.org/split-on-first/-/split-on-first-1.1.0.tgz",
    "integrity": "sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==",
    "engines": {
    "node": ">=6"
    }
    },
    "node_modules/split2": {
    "version": "4.2.0",
    "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz",
    "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==",
    "engines": {
    "node": ">= 10.x"
    }
    },
    "node_modules/ssri": {
    "version": "10.0.5",
    "resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.5.tgz",
    "integrity": "sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==",
    "dependencies": {
    "minipass": "^7.0.3"
    },
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/ssri/node_modules/minipass": {
    "version": "7.0.3",
    "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.3.tgz",
    "integrity": "sha512-LhbbwCfz3vsb12j/WkWQPZfKTsgqIe1Nf/ti1pKjYESGLHIVjWU96G9/ljLH4F9mWNVhlQOm0VySdAWzf05dpg==",
    "engines": {
    "node": ">=16 || 14 >=14.17"
    }
    },
    "node_modules/stream-browserify": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-3.0.0.tgz",
    "integrity": "sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==",
    "dependencies": {
    "inherits": "~2.0.4",
    "readable-stream": "^3.5.0"
    }
    },
    "node_modules/stream-shift": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz",
    "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ=="
    },
    "node_modules/strict-uri-encode": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz",
    "integrity": "sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==",
    "engines": {
    "node": ">=4"
    }
    },
    "node_modules/string_decoder": {
    "version": "1.3.0",
    "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
    "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
    "dependencies": {
    "safe-buffer": "~5.2.0"
    }
    },
    "node_modules/string-width": {
    "version": "4.2.3",
    "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
    "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
    "dependencies": {
    "emoji-regex": "^8.0.0",
    "is-fullwidth-code-point": "^3.0.0",
    "strip-ansi": "^6.0.1"
    },
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/string-width-cjs": {
    "name": "string-width",
    "version": "4.2.3",
    "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
    "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
    "dependencies": {
    "emoji-regex": "^8.0.0",
    "is-fullwidth-code-point": "^3.0.0",
    "strip-ansi": "^6.0.1"
    },
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/string-width-cjs/node_modules/ansi-regex": {
    "version": "5.0.1",
    "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
    "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/string-width-cjs/node_modules/strip-ansi": {
    "version": "6.0.1",
    "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
    "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
    "dependencies": {
    "ansi-regex": "^5.0.1"
    },
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/string-width/node_modules/ansi-regex": {
    "version": "5.0.1",
    "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
    "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/string-width/node_modules/strip-ansi": {
    "version": "6.0.1",
    "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
    "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
    "dependencies": {
    "ansi-regex": "^5.0.1"
    },
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/strip-ansi": {
    "version": "7.1.0",
    "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
    "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
    "dependencies": {
    "ansi-regex": "^6.0.1"
    },
    "engines": {
    "node": ">=12"
    },
    "funding": {
    "url": "https://github.com/chalk/strip-ansi?sponsor=1"
    }
    },
    "node_modules/strip-ansi-cjs": {
    "name": "strip-ansi",
    "version": "6.0.1",
    "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
    "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
    "dependencies": {
    "ansi-regex": "^5.0.1"
    },
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/strip-ansi-cjs/node_modules/ansi-regex": {
    "version": "5.0.1",
    "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
    "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/strip-json-comments": {
    "version": "5.0.1",
    "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-5.0.1.tgz",
    "integrity": "sha512-0fk9zBqO67Nq5M/m45qHCJxylV/DhBlIOVExqgOMiCCrzrhU6tCibRXNqE3jwJLftzE9SNuZtYbpzcO+i9FiKw==",
    "engines": {
    "node": ">=14.16"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/superstruct": {
    "version": "0.14.2",
    "resolved": "https://registry.npmjs.org/superstruct/-/superstruct-0.14.2.tgz",
    "integrity": "sha512-nPewA6m9mR3d6k7WkZ8N8zpTWfenFH3q9pA2PkuiZxINr9DKB2+40wEQf0ixn8VaGuJ78AB6iWOtStI+/4FKZQ=="
    },
    "node_modules/supports-color": {
    "version": "7.2.0",
    "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
    "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
    "dev": true,
    "dependencies": {
    "has-flag": "^4.0.0"
    },
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/tar": {
    "version": "6.1.15",
    "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.15.tgz",
    "integrity": "sha512-/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A==",
    "dependencies": {
    "chownr": "^2.0.0",
    "fs-minipass": "^2.0.0",
    "minipass": "^5.0.0",
    "minizlib": "^2.1.1",
    "mkdirp": "^1.0.3",
    "yallist": "^4.0.0"
    },
    "engines": {
    "node": ">=10"
    }
    },
    "node_modules/tar/node_modules/fs-minipass": {
    "version": "2.1.0",
    "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz",
    "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==",
    "dependencies": {
    "minipass": "^3.0.0"
    },
    "engines": {
    "node": ">= 8"
    }
    },
    "node_modules/tar/node_modules/fs-minipass/node_modules/minipass": {
    "version": "3.3.6",
    "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
    "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
    "dependencies": {
    "yallist": "^4.0.0"
    },
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/text-encoding-utf-8": {
    "version": "1.0.2",
    "resolved": "https://registry.npmjs.org/text-encoding-utf-8/-/text-encoding-utf-8-1.0.2.tgz",
    "integrity": "sha512-8bw4MY9WjdsD2aMtO0OzOCY3pXGYNx2d2FfHRVUKkiCPDWjKuOlhLVASS+pD7VkLTVjW268LYJHwsnPFlBpbAg=="
    },
    "node_modules/thread-stream": {
    "version": "0.15.2",
    "resolved": "https://registry.npmjs.org/thread-stream/-/thread-stream-0.15.2.tgz",
    "integrity": "sha512-UkEhKIg2pD+fjkHQKyJO3yoIvAP3N6RlNFt2dUhcS1FGvCD1cQa1M/PGknCLFIyZdtJOWQjejp7bdNqmN7zwdA==",
    "dependencies": {
    "real-require": "^0.1.0"
    }
    },
    "node_modules/through": {
    "version": "2.3.8",
    "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
    "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg=="
    },
    "node_modules/to-regex-range": {
    "version": "5.0.1",
    "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
    "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
    "dependencies": {
    "is-number": "^7.0.0"
    },
    "engines": {
    "node": ">=8.0"
    }
    },
    "node_modules/toggle-selection": {
    "version": "1.0.6",
    "resolved": "https://registry.npmjs.org/toggle-selection/-/toggle-selection-1.0.6.tgz",
    "integrity": "sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ=="
    },
    "node_modules/tr46": {
    "version": "0.0.3",
    "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
    "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw=="
    },
    "node_modules/tslib": {
    "version": "2.4.0",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz",
    "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ=="
    },
    "node_modules/tuf-js": {
    "version": "1.1.7",
    "resolved": "https://registry.npmjs.org/tuf-js/-/tuf-js-1.1.7.tgz",
    "integrity": "sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg==",
    "dependencies": {
    "@tufjs/models": "1.0.4",
    "debug": "^4.3.4",
    "make-fetch-happen": "^11.1.1"
    },
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/tweetnacl": {
    "version": "1.0.3",
    "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-1.0.3.tgz",
    "integrity": "sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw=="
    },
    "node_modules/tweetnacl-util": {
    "version": "0.15.1",
    "resolved": "https://registry.npmjs.org/tweetnacl-util/-/tweetnacl-util-0.15.1.tgz",
    "integrity": "sha512-RKJBIj8lySrShN4w6i/BonWp2Z/uxwC3h4y7xsRrpP59ZboCd0GpEVsOnMDYLMmKBpYhb5TgHzZXy7wTfYFBRw=="
    },
    "node_modules/type-fest": {
    "version": "2.19.0",
    "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz",
    "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==",
    "engines": {
    "node": ">=12.20"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/typedarray-to-buffer": {
    "version": "3.1.5",
    "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz",
    "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==",
    "dependencies": {
    "is-typedarray": "^1.0.0"
    }
    },
    "node_modules/typescript": {
    "version": "5.1.6",
    "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.6.tgz",
    "integrity": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==",
    "bin": {
    "tsc": "bin/tsc",
    "tsserver": "bin/tsserver"
    },
    "engines": {
    "node": ">=14.17"
    }
    },
    "node_modules/uint8arrays": {
    "version": "3.1.1",
    "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-3.1.1.tgz",
    "integrity": "sha512-+QJa8QRnbdXVpHYjLoTpJIdCTiw9Ir62nocClWuXIq2JIh4Uta0cQsTSpFL678p2CN8B+XSApwcU+pQEqVpKWg==",
    "dependencies": {
    "multiformats": "^9.4.2"
    }
    },
    "node_modules/unique-filename": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-3.0.0.tgz",
    "integrity": "sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==",
    "dependencies": {
    "unique-slug": "^4.0.0"
    },
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/unique-names-generator": {
    "version": "4.7.1",
    "resolved": "https://registry.npmjs.org/unique-names-generator/-/unique-names-generator-4.7.1.tgz",
    "integrity": "sha512-lMx9dX+KRmG8sq6gulYYpKWZc9RlGsgBR6aoO8Qsm3qvkSJ+3rAymr+TnV8EDMrIrwuFJ4kruzMWM/OpYzPoow==",
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/unique-slug": {
    "version": "4.0.0",
    "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-4.0.0.tgz",
    "integrity": "sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==",
    "dependencies": {
    "imurmurhash": "^0.1.4"
    },
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/unique-string": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-3.0.0.tgz",
    "integrity": "sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==",
    "dependencies": {
    "crypto-random-string": "^4.0.0"
    },
    "engines": {
    "node": ">=12"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/universalify": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
    "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
    "dev": true,
    "engines": {
    "node": ">= 10.0.0"
    }
    },
    "node_modules/untildify": {
    "version": "4.0.0",
    "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz",
    "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==",
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/update-notifier": {
    "version": "6.0.2",
    "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-6.0.2.tgz",
    "integrity": "sha512-EDxhTEVPZZRLWYcJ4ZXjGFN0oP7qYvbXWzEgRm/Yql4dHX5wDbvh89YHP6PK1lzZJYrMtXUuZZz8XGK+U6U1og==",
    "dependencies": {
    "boxen": "^7.0.0",
    "chalk": "^5.0.1",
    "configstore": "^6.0.0",
    "has-yarn": "^3.0.0",
    "import-lazy": "^4.0.0",
    "is-ci": "^3.0.1",
    "is-installed-globally": "^0.4.0",
    "is-npm": "^6.0.0",
    "is-yarn-global": "^0.4.0",
    "latest-version": "^7.0.0",
    "pupa": "^3.1.0",
    "semver": "^7.3.7",
    "semver-diff": "^4.0.0",
    "xdg-basedir": "^5.1.0"
    },
    "engines": {
    "node": ">=14.16"
    },
    "funding": {
    "url": "https://github.com/yeoman/update-notifier?sponsor=1"
    }
    },
    "node_modules/update-notifier/node_modules/chalk": {
    "version": "5.3.0",
    "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz",
    "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==",
    "engines": {
    "node": "^12.17.0 || ^14.13 || >=16.0.0"
    },
    "funding": {
    "url": "https://github.com/chalk/chalk?sponsor=1"
    }
    },
    "node_modules/url-polyfill": {
    "version": "1.1.12",
    "resolved": "https://registry.npmjs.org/url-polyfill/-/url-polyfill-1.1.12.tgz",
    "integrity": "sha512-mYFmBHCapZjtcNHW0MDq9967t+z4Dmg5CJ0KqysK3+ZbyoNOWQHksGCTWwDhxGXllkWlOc10Xfko6v4a3ucM6A=="
    },
    "node_modules/use-strict": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/use-strict/-/use-strict-1.0.1.tgz",
    "integrity": "sha512-IeiWvvEXfW5ltKVMkxq6FvNf2LojMKvB2OCeja6+ct24S1XOmQw2dGr2JyndwACWAGJva9B7yPHwAmeA9QCqAQ=="
    },
    "node_modules/use-sync-external-store": {
    "version": "1.2.0",
    "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz",
    "integrity": "sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==",
    "peerDependencies": {
    "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
    }
    },
    "node_modules/utf-8-validate": {
    "version": "5.0.10",
    "resolved": "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.10.tgz",
    "integrity": "sha512-Z6czzLq4u8fPOyx7TU6X3dvUZVvoJmxSQ+IcrlmagKhilxlhZgxPK6C5Jqbkw1IDUmFTM+cz9QDnnLTwDz/2gQ==",
    "hasInstallScript": true,
    "optional": true,
    "dependencies": {
    "node-gyp-build": "^4.3.0"
    },
    "engines": {
    "node": ">=6.14.2"
    }
    },
    "node_modules/util": {
    "version": "0.12.5",
    "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz",
    "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==",
    "dependencies": {
    "inherits": "^2.0.3",
    "is-arguments": "^1.0.4",
    "is-generator-function": "^1.0.7",
    "is-typed-array": "^1.1.3",
    "which-typed-array": "^1.1.2"
    }
    },
    "node_modules/util-deprecate": {
    "version": "1.0.2",
    "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
    "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="
    },
    "node_modules/uuid": {
    "version": "8.3.2",
    "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz",
    "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==",
    "bin": {
    "uuid": "dist/bin/uuid"
    }
    },
    "node_modules/validate-npm-package-license": {
    "version": "3.0.4",
    "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz",
    "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==",
    "dependencies": {
    "spdx-correct": "^3.0.0",
    "spdx-expression-parse": "^3.0.0"
    }
    },
    "node_modules/validate-npm-package-name": {
    "version": "5.0.0",
    "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.0.tgz",
    "integrity": "sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==",
    "dependencies": {
    "builtins": "^5.0.0"
    },
    "engines": {
    "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
    }
    },
    "node_modules/valtio": {
    "version": "1.11.2",
    "resolved": "https://registry.npmjs.org/valtio/-/valtio-1.11.2.tgz",
    "integrity": "sha512-1XfIxnUXzyswPAPXo1P3Pdx2mq/pIqZICkWN60Hby0d9Iqb+MEIpqgYVlbflvHdrp2YR/q3jyKWRPJJ100yxaw==",
    "dependencies": {
    "proxy-compare": "2.5.1",
    "use-sync-external-store": "1.2.0"
    },
    "engines": {
    "node": ">=12.20.0"
    },
    "peerDependencies": {
    "@types/react": ">=16.8",
    "react": ">=16.8"
    },
    "peerDependenciesMeta": {
    "@types/react": {
    "optional": true
    },
    "react": {
    "optional": true
    }
    }
    },
    "node_modules/viem": {
    "version": "1.16.0",
    "resolved": "https://registry.npmjs.org/viem/-/viem-1.16.0.tgz",
    "integrity": "sha512-noRMxaMubiLbVrZ0tXKxUKNwle0QtF0wO6kBOWnm6wg6XIqptSW7xhFzrFdDRp8Jduu5rwwkCB4Tokd5MtFRtw==",
    "funding": [
    {
    "type": "github",
    "url": "https://github.com/sponsors/wagmi-dev"
    }
    ],
    "dependencies": {
    "@adraffy/ens-normalize": "1.9.4",
    "@noble/curves": "1.2.0",
    "@noble/hashes": "1.3.2",
    "@scure/bip32": "1.3.2",
    "@scure/bip39": "1.2.1",
    "abitype": "0.9.8",
    "isows": "1.0.2",
    "ws": "8.13.0"
    },
    "peerDependencies": {
    "typescript": ">=5.0.4"
    },
    "peerDependenciesMeta": {
    "typescript": {
    "optional": true
    }
    }
    },
    "node_modules/viem/node_modules/@adraffy/ens-normalize": {
    "version": "1.9.4",
    "resolved": "https://registry.npmjs.org/@adraffy/ens-normalize/-/ens-normalize-1.9.4.tgz",
    "integrity": "sha512-UK0bHA7hh9cR39V+4gl2/NnBBjoXIxkuWAPCaY4X7fbH4L/azIi7ilWOCjMUYfpJgraLUAqkRi2BqrjME8Rynw=="
    },
    "node_modules/viem/node_modules/@noble/curves": {
    "version": "1.2.0",
    "resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.2.0.tgz",
    "integrity": "sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw==",
    "dependencies": {
    "@noble/hashes": "1.3.2"
    },
    "funding": {
    "url": "https://paulmillr.com/funding/"
    }
    },
    "node_modules/viem/node_modules/@noble/hashes": {
    "version": "1.3.2",
    "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.2.tgz",
    "integrity": "sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ==",
    "engines": {
    "node": ">= 16"
    },
    "funding": {
    "url": "https://paulmillr.com/funding/"
    }
    },
    "node_modules/viem/node_modules/@scure/bip32": {
    "version": "1.3.2",
    "resolved": "https://registry.npmjs.org/@scure/bip32/-/bip32-1.3.2.tgz",
    "integrity": "sha512-N1ZhksgwD3OBlwTv3R6KFEcPojl/W4ElJOeCZdi+vuI5QmTFwLq3OFf2zd2ROpKvxFdgZ6hUpb0dx9bVNEwYCA==",
    "dependencies": {
    "@noble/curves": "~1.2.0",
    "@noble/hashes": "~1.3.2",
    "@scure/base": "~1.1.2"
    },
    "funding": {
    "url": "https://paulmillr.com/funding/"
    }
    },
    "node_modules/viem/node_modules/@scure/bip39": {
    "version": "1.2.1",
    "resolved": "https://registry.npmjs.org/@scure/bip39/-/bip39-1.2.1.tgz",
    "integrity": "sha512-Z3/Fsz1yr904dduJD0NpiyRHhRYHdcnyh73FZWiV+/qhWi83wNJ3NWolYqCEN+ZWsUz2TWwajJggcRE9r1zUYg==",
    "dependencies": {
    "@noble/hashes": "~1.3.0",
    "@scure/base": "~1.1.0"
    },
    "funding": {
    "url": "https://paulmillr.com/funding/"
    }
    },
    "node_modules/viem/node_modules/abitype": {
    "version": "0.9.8",
    "resolved": "https://registry.npmjs.org/abitype/-/abitype-0.9.8.tgz",
    "integrity": "sha512-puLifILdm+8sjyss4S+fsUN09obiT1g2YW6CtcQF+QDzxR0euzgEB29MZujC6zMk2a6SVmtttq1fc6+YFA7WYQ==",
    "funding": [
    {
    "type": "github",
    "url": "https://github.com/sponsors/wagmi-dev"
    }
    ],
    "peerDependencies": {
    "typescript": ">=5.0.4",
    "zod": "^3 >=3.19.1"
    },
    "peerDependenciesMeta": {
    "typescript": {
    "optional": true
    },
    "zod": {
    "optional": true
    }
    }
    },
    "node_modules/viem/node_modules/ws": {
    "version": "8.13.0",
    "resolved": "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz",
    "integrity": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==",
    "engines": {
    "node": ">=10.0.0"
    },
    "peerDependencies": {
    "bufferutil": "^4.0.1",
    "utf-8-validate": ">=5.0.2"
    },
    "peerDependenciesMeta": {
    "bufferutil": {
    "optional": true
    },
    "utf-8-validate": {
    "optional": true
    }
    }
    },
    "node_modules/vite": {
    "version": "4.4.9",
    "resolved": "https://registry.npmjs.org/vite/-/vite-4.4.9.tgz",
    "integrity": "sha512-2mbUn2LlUmNASWwSCNSJ/EG2HuSRTnVNaydp6vMCm5VIqJsjMfbIWtbH2kDuwUVW5mMUKKZvGPX/rqeqVvv1XA==",
    "dev": true,
    "dependencies": {
    "esbuild": "^0.18.10",
    "postcss": "^8.4.27",
    "rollup": "^3.27.1"
    },
    "bin": {
    "vite": "bin/vite.js"
    },
    "engines": {
    "node": "^14.18.0 || >=16.0.0"
    },
    "funding": {
    "url": "https://github.com/vitejs/vite?sponsor=1"
    },
    "optionalDependencies": {
    "fsevents": "~2.3.2"
    },
    "peerDependencies": {
    "@types/node": ">= 14",
    "less": "*",
    "lightningcss": "^1.21.0",
    "sass": "*",
    "stylus": "*",
    "sugarss": "*",
    "terser": "^5.4.0"
    },
    "peerDependenciesMeta": {
    "@types/node": {
    "optional": true
    },
    "less": {
    "optional": true
    },
    "lightningcss": {
    "optional": true
    },
    "sass": {
    "optional": true
    },
    "stylus": {
    "optional": true
    },
    "sugarss": {
    "optional": true
    },
    "terser": {
    "optional": true
    }
    }
    },
    "node_modules/vite-plugin-wasm-pack": {
    "version": "0.1.12",
    "resolved": "https://registry.npmjs.org/vite-plugin-wasm-pack/-/vite-plugin-wasm-pack-0.1.12.tgz",
    "integrity": "sha512-WliYvQp9HXluir4OKGbngkcKxtYtifU11cqLurRRJGsl770Sjr1iIkp5RuvU3IC1poT4A57Z2/YgAKI2Skm7ZA==",
    "dev": true,
    "dependencies": {
    "chalk": "^4.1.2",
    "fs-extra": "^10.0.0",
    "narrowing": "^1.4.0"
    }
    },
    "node_modules/vlq": {
    "version": "2.0.4",
    "resolved": "https://registry.npmjs.org/vlq/-/vlq-2.0.4.tgz",
    "integrity": "sha512-aodjPa2wPQFkra1G8CzJBTHXhgk3EVSwxSWXNPr1fgdFLUb8kvLV1iEb6rFgasIsjP82HWI6dsb5Io26DDnasA=="
    },
    "node_modules/vue": {
    "version": "3.3.4",
    "resolved": "https://registry.npmjs.org/vue/-/vue-3.3.4.tgz",
    "integrity": "sha512-VTyEYn3yvIeY1Py0WaYGZsXnz3y5UnGi62GjVEqvEGPl6nxbOrCXbVOTQWBEJUqAyTUk2uJ5JLVnYJ6ZzGbrSw==",
    "optional": true,
    "dependencies": {
    "@vue/compiler-dom": "3.3.4",
    "@vue/compiler-sfc": "3.3.4",
    "@vue/runtime-dom": "3.3.4",
    "@vue/server-renderer": "3.3.4",
    "@vue/shared": "3.3.4"
    }
    },
    "node_modules/webidl-conversions": {
    "version": "3.0.1",
    "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
    "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ=="
    },
    "node_modules/whatwg-url": {
    "version": "5.0.0",
    "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
    "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
    "dependencies": {
    "tr46": "~0.0.3",
    "webidl-conversions": "^3.0.0"
    }
    },
    "node_modules/which": {
    "version": "2.0.2",
    "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
    "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
    "dependencies": {
    "isexe": "^2.0.0"
    },
    "bin": {
    "node-which": "bin/node-which"
    },
    "engines": {
    "node": ">= 8"
    }
    },
    "node_modules/which-module": {
    "version": "2.0.1",
    "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz",
    "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ=="
    },
    "node_modules/which-typed-array": {
    "version": "1.1.11",
    "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.11.tgz",
    "integrity": "sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==",
    "dependencies": {
    "available-typed-arrays": "^1.0.5",
    "call-bind": "^1.0.2",
    "for-each": "^0.3.3",
    "gopd": "^1.0.1",
    "has-tostringtag": "^1.0.0"
    },
    "engines": {
    "node": ">= 0.4"
    },
    "funding": {
    "url": "https://github.com/sponsors/ljharb"
    }
    },
    "node_modules/wide-align": {
    "version": "1.1.5",
    "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz",
    "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==",
    "dependencies": {
    "string-width": "^1.0.2 || 2 || 3 || 4"
    }
    },
    "node_modules/widest-line": {
    "version": "4.0.1",
    "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-4.0.1.tgz",
    "integrity": "sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==",
    "dependencies": {
    "string-width": "^5.0.1"
    },
    "engines": {
    "node": ">=12"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/widest-line/node_modules/emoji-regex": {
    "version": "9.2.2",
    "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
    "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="
    },
    "node_modules/widest-line/node_modules/string-width": {
    "version": "5.1.2",
    "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
    "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
    "dependencies": {
    "eastasianwidth": "^0.2.0",
    "emoji-regex": "^9.2.2",
    "strip-ansi": "^7.0.1"
    },
    "engines": {
    "node": ">=12"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/wrap-ansi": {
    "version": "8.1.0",
    "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
    "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
    "dependencies": {
    "ansi-styles": "^6.1.0",
    "string-width": "^5.0.1",
    "strip-ansi": "^7.0.1"
    },
    "engines": {
    "node": ">=12"
    },
    "funding": {
    "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
    }
    },
    "node_modules/wrap-ansi-cjs": {
    "name": "wrap-ansi",
    "version": "7.0.0",
    "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
    "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
    "dependencies": {
    "ansi-styles": "^4.0.0",
    "string-width": "^4.1.0",
    "strip-ansi": "^6.0.0"
    },
    "engines": {
    "node": ">=10"
    },
    "funding": {
    "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
    }
    },
    "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": {
    "version": "5.0.1",
    "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
    "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": {
    "version": "6.0.1",
    "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
    "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
    "dependencies": {
    "ansi-regex": "^5.0.1"
    },
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/wrap-ansi/node_modules/ansi-styles": {
    "version": "6.2.1",
    "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz",
    "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==",
    "engines": {
    "node": ">=12"
    },
    "funding": {
    "url": "https://github.com/chalk/ansi-styles?sponsor=1"
    }
    },
    "node_modules/wrap-ansi/node_modules/emoji-regex": {
    "version": "9.2.2",
    "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
    "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="
    },
    "node_modules/wrap-ansi/node_modules/string-width": {
    "version": "5.1.2",
    "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
    "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
    "dependencies": {
    "eastasianwidth": "^0.2.0",
    "emoji-regex": "^9.2.2",
    "strip-ansi": "^7.0.1"
    },
    "engines": {
    "node": ">=12"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/wrappy": {
    "version": "1.0.2",
    "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
    "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="
    },
    "node_modules/write-file-atomic": {
    "version": "3.0.3",
    "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz",
    "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==",
    "dependencies": {
    "imurmurhash": "^0.1.4",
    "is-typedarray": "^1.0.0",
    "signal-exit": "^3.0.2",
    "typedarray-to-buffer": "^3.1.5"
    }
    },
    "node_modules/write-file-atomic/node_modules/signal-exit": {
    "version": "3.0.7",
    "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
    "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="
    },
    "node_modules/ws": {
    "version": "8.5.0",
    "resolved": "https://registry.npmjs.org/ws/-/ws-8.5.0.tgz",
    "integrity": "sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg==",
    "engines": {
    "node": ">=10.0.0"
    },
    "peerDependencies": {
    "bufferutil": "^4.0.1",
    "utf-8-validate": "^5.0.2"
    },
    "peerDependenciesMeta": {
    "bufferutil": {
    "optional": true
    },
    "utf-8-validate": {
    "optional": true
    }
    }
    },
    "node_modules/xdg-basedir": {
    "version": "5.1.0",
    "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-5.1.0.tgz",
    "integrity": "sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ==",
    "engines": {
    "node": ">=12"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/xtend": {
    "version": "4.0.2",
    "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz",
    "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==",
    "engines": {
    "node": ">=0.4"
    }
    },
    "node_modules/y18n": {
    "version": "4.0.3",
    "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz",
    "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ=="
    },
    "node_modules/yallist": {
    "version": "4.0.0",
    "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
    "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
    },
    "node_modules/yargs": {
    "version": "15.4.1",
    "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz",
    "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==",
    "dependencies": {
    "cliui": "^6.0.0",
    "decamelize": "^1.2.0",
    "find-up": "^4.1.0",
    "get-caller-file": "^2.0.1",
    "require-directory": "^2.1.1",
    "require-main-filename": "^2.0.0",
    "set-blocking": "^2.0.0",
    "string-width": "^4.2.0",
    "which-module": "^2.0.0",
    "y18n": "^4.0.0",
    "yargs-parser": "^18.1.2"
    },
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/yargs-parser": {
    "version": "18.1.3",
    "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz",
    "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==",
    "dependencies": {
    "camelcase": "^5.0.0",
    "decamelize": "^1.2.0"
    },
    "engines": {
    "node": ">=6"
    }
    },
    "node_modules/yargs-parser/node_modules/camelcase": {
    "version": "5.3.1",
    "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
    "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
    "engines": {
    "node": ">=6"
    }
    },
    "node_modules/yargs/node_modules/find-up": {
    "version": "4.1.0",
    "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
    "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
    "dependencies": {
    "locate-path": "^5.0.0",
    "path-exists": "^4.0.0"
    },
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/yargs/node_modules/locate-path": {
    "version": "5.0.0",
    "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
    "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
    "dependencies": {
    "p-locate": "^4.1.0"
    },
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/yargs/node_modules/p-limit": {
    "version": "2.3.0",
    "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
    "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
    "dependencies": {
    "p-try": "^2.0.0"
    },
    "engines": {
    "node": ">=6"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/yargs/node_modules/p-locate": {
    "version": "4.1.0",
    "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
    "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
    "dependencies": {
    "p-limit": "^2.2.0"
    },
    "engines": {
    "node": ">=8"
    }
    },
    "node_modules/yiyi-audio-recorder": {
    "version": "1.0.8",
    "resolved": "https://registry.npmjs.org/yiyi-audio-recorder/-/yiyi-audio-recorder-1.0.8.tgz",
    "integrity": "sha512-mAlxUKa4n2wvx4ybEv0Izq30aMN9t3b9MDD98GYdnNMmhZ4BM81fYMOX/5sSpC/Jn+cDYU3gwkoYb3op0dsFMQ==",
    "dependencies": {
    "lamejstmp": "^1.0.1"
    }
    },
    "node_modules/yocto-queue": {
    "version": "0.1.0",
    "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
    "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
    "engines": {
    "node": ">=10"
    },
    "funding": {
    "url": "https://github.com/sponsors/sindresorhus"
    }
    },
    "node_modules/zustand": {
    "version": "4.4.3",
    "resolved": "https://registry.npmjs.org/zustand/-/zustand-4.4.3.tgz",
    "integrity": "sha512-oRy+X3ZazZvLfmv6viIaQmtLOMeij1noakIsK/Y47PWYhT8glfXzQ4j0YcP5i0P0qI1A4rIB//SGROGyZhx91A==",
    "dependencies": {
    "use-sync-external-store": "1.2.0"
    },
    "engines": {
    "node": ">=12.7.0"
    },
    "peerDependencies": {
    "@types/react": ">=16.8",
    "immer": ">=9.0",
    "react": ">=16.8"
    },
    "peerDependenciesMeta": {
    "@types/react": {
    "optional": true
    },
    "immer": {
    "optional": true
    },
    "react": {
    "optional": true
    }
    }
    },
    "pkg": {
    "extraneous": true
    }
    },
    "dependencies": {
    "@adraffy/ens-normalize": {
    "version": "1.9.2",
    "resolved": "https://registry.npmjs.org/@adraffy/ens-normalize/-/ens-normalize-1.9.2.tgz",
    "integrity": "sha512-0h+FrQDqe2Wn+IIGFkTCd4aAwTJ+7834Ek1COohCyV26AXhwQ7WQaz+4F/nLOeVl/3BtWHOHLPsq46V8YB46Eg=="
    },
    "@babel/parser": {
    "version": "7.23.0",
    "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.0.tgz",
    "integrity": "sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==",
    "optional": true
    },
    "@babel/runtime": {
    "version": "7.23.1",
    "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.1.tgz",
    "integrity": "sha512-hC2v6p8ZSI/W0HUzh3V8C5g+NwSKzKPtJwSpTjwl0o297GP9+ZLQSkdvHz46CM3LqyoXxq+5G9komY+eSqSO0g==",
    "requires": {
    "regenerator-runtime": "^0.14.0"
    }
    },
    "@coinbase/wallet-sdk": {
    "version": "3.7.2",
    "resolved": "https://registry.npmjs.org/@coinbase/wallet-sdk/-/wallet-sdk-3.7.2.tgz",
    "integrity": "sha512-lIGvXMsgpsQWci/XOMQIJ2nIZ8JUy/L+bvC0wkRaYarr0YylwpXrJ2gRM3hCXPS477pkyO7N/kSiAoRgEXUdJQ==",
    "requires": {
    "@metamask/safe-event-emitter": "2.0.0",
    "@solana/web3.js": "^1.70.1",
    "bind-decorator": "^1.0.11",
    "bn.js": "^5.1.1",
    "buffer": "^6.0.3",
    "clsx": "^1.1.0",
    "eth-block-tracker": "6.1.0",
    "eth-json-rpc-filters": "5.1.0",
    "eth-rpc-errors": "4.0.2",
    "json-rpc-engine": "6.1.0",
    "keccak": "^3.0.1",
    "preact": "^10.5.9",
    "qs": "^6.10.3",
    "rxjs": "^6.6.3",
    "sha.js": "^2.4.11",
    "stream-browserify": "^3.0.0",
    "util": "^0.12.4"
    },
    "dependencies": {
    "bn.js": {
    "version": "5.2.1",
    "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz",
    "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ=="
    }
    }
    },
    "@colors/colors": {
    "version": "1.5.0",
    "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz",
    "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==",
    "optional": true
    },
    "@esbuild/android-arm": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.15.tgz",
    "integrity": "sha512-wlkQBWb79/jeEEoRmrxt/yhn5T1lU236OCNpnfRzaCJHZ/5gf82uYx1qmADTBWE0AR/v7FiozE1auk2riyQd3w==",
    "dev": true,
    "optional": true
    },
    "@esbuild/android-arm64": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.15.tgz",
    "integrity": "sha512-NI/gnWcMl2kXt1HJKOn2H69SYn4YNheKo6NZt1hyfKWdMbaGadxjZIkcj4Gjk/WPxnbFXs9/3HjGHaknCqjrww==",
    "dev": true,
    "optional": true
    },
    "@esbuild/android-x64": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.15.tgz",
    "integrity": "sha512-FM9NQamSaEm/IZIhegF76aiLnng1kEsZl2eve/emxDeReVfRuRNmvT28l6hoFD9TsCxpK+i4v8LPpEj74T7yjA==",
    "dev": true,
    "optional": true
    },
    "@esbuild/darwin-arm64": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.15.tgz",
    "integrity": "sha512-XmrFwEOYauKte9QjS6hz60FpOCnw4zaPAb7XV7O4lx1r39XjJhTN7ZpXqJh4sN6q60zbP6QwAVVA8N/wUyBH/w==",
    "dev": true,
    "optional": true
    },
    "@esbuild/darwin-x64": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.15.tgz",
    "integrity": "sha512-bMqBmpw1e//7Fh5GLetSZaeo9zSC4/CMtrVFdj+bqKPGJuKyfNJ5Nf2m3LknKZTS+Q4oyPiON+v3eaJ59sLB5A==",
    "dev": true,
    "optional": true
    },
    "@esbuild/freebsd-arm64": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.15.tgz",
    "integrity": "sha512-LoTK5N3bOmNI9zVLCeTgnk5Rk0WdUTrr9dyDAQGVMrNTh9EAPuNwSTCgaKOKiDpverOa0htPcO9NwslSE5xuLA==",
    "dev": true,
    "optional": true
    },
    "@esbuild/freebsd-x64": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.15.tgz",
    "integrity": "sha512-62jX5n30VzgrjAjOk5orYeHFq6sqjvsIj1QesXvn5OZtdt5Gdj0vUNJy9NIpjfdNdqr76jjtzBJKf+h2uzYuTQ==",
    "dev": true,
    "optional": true
    },
    "@esbuild/linux-arm": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.15.tgz",
    "integrity": "sha512-dT4URUv6ir45ZkBqhwZwyFV6cH61k8MttIwhThp2BGiVtagYvCToF+Bggyx2VI57RG4Fbt21f9TmXaYx0DeUJg==",
    "dev": true,
    "optional": true
    },
    "@esbuild/linux-arm64": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.15.tgz",
    "integrity": "sha512-BWncQeuWDgYv0jTNzJjaNgleduV4tMbQjmk/zpPh/lUdMcNEAxy+jvneDJ6RJkrqloG7tB9S9rCrtfk/kuplsQ==",
    "dev": true,
    "optional": true
    },
    "@esbuild/linux-ia32": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.15.tgz",
    "integrity": "sha512-JPXORvgHRHITqfms1dWT/GbEY89u848dC08o0yK3fNskhp0t2TuNUnsrrSgOdH28ceb1hJuwyr8R/1RnyPwocw==",
    "dev": true,
    "optional": true
    },
    "@esbuild/linux-loong64": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.15.tgz",
    "integrity": "sha512-kArPI0DopjJCEplsVj/H+2Qgzz7vdFSacHNsgoAKpPS6W/Ndh8Oe24HRDQ5QCu4jHgN6XOtfFfLpRx3TXv/mEg==",
    "dev": true,
    "optional": true
    },
    "@esbuild/linux-mips64el": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.15.tgz",
    "integrity": "sha512-b/tmngUfO02E00c1XnNTw/0DmloKjb6XQeqxaYuzGwHe0fHVgx5/D6CWi+XH1DvkszjBUkK9BX7n1ARTOst59w==",
    "dev": true,
    "optional": true
    },
    "@esbuild/linux-ppc64": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.15.tgz",
    "integrity": "sha512-KXPY69MWw79QJkyvUYb2ex/OgnN/8N/Aw5UDPlgoRtoEfcBqfeLodPr42UojV3NdkoO4u10NXQdamWm1YEzSKw==",
    "dev": true,
    "optional": true
    },
    "@esbuild/linux-riscv64": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.15.tgz",
    "integrity": "sha512-komK3NEAeeGRnvFEjX1SfVg6EmkfIi5aKzevdvJqMydYr9N+pRQK0PGJXk+bhoPZwOUgLO4l99FZmLGk/L1jWg==",
    "dev": true,
    "optional": true
    },
    "@esbuild/linux-s390x": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.15.tgz",
    "integrity": "sha512-632T5Ts6gQ2WiMLWRRyeflPAm44u2E/s/TJvn+BP6M5mnHSk93cieaypj3VSMYO2ePTCRqAFXtuYi1yv8uZJNA==",
    "dev": true,
    "optional": true
    },
    "@esbuild/linux-x64": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.15.tgz",
    "integrity": "sha512-MsHtX0NgvRHsoOtYkuxyk4Vkmvk3PLRWfA4okK7c+6dT0Fu4SUqXAr9y4Q3d8vUf1VWWb6YutpL4XNe400iQ1g==",
    "dev": true,
    "optional": true
    },
    "@esbuild/netbsd-x64": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.15.tgz",
    "integrity": "sha512-djST6s+jQiwxMIVQ5rlt24JFIAr4uwUnzceuFL7BQT4CbrRtqBPueS4GjXSiIpmwVri1Icj/9pFRJ7/aScvT+A==",
    "dev": true,
    "optional": true
    },
    "@esbuild/openbsd-x64": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.15.tgz",
    "integrity": "sha512-naeRhUIvhsgeounjkF5mvrNAVMGAm6EJWiabskeE5yOeBbLp7T89tAEw0j5Jm/CZAwyLe3c67zyCWH6fsBLCpw==",
    "dev": true,
    "optional": true
    },
    "@esbuild/sunos-x64": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.15.tgz",
    "integrity": "sha512-qkT2+WxyKbNIKV1AEhI8QiSIgTHMcRctzSaa/I3kVgMS5dl3fOeoqkb7pW76KwxHoriImhx7Mg3TwN/auMDsyQ==",
    "dev": true,
    "optional": true
    },
    "@esbuild/win32-arm64": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.15.tgz",
    "integrity": "sha512-HC4/feP+pB2Vb+cMPUjAnFyERs+HJN7E6KaeBlFdBv799MhD+aPJlfi/yk36SED58J9TPwI8MAcVpJgej4ud0A==",
    "dev": true,
    "optional": true
    },
    "@esbuild/win32-ia32": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.15.tgz",
    "integrity": "sha512-ovjwoRXI+gf52EVF60u9sSDj7myPixPxqzD5CmkEUmvs+W9Xd0iqISVBQn8xcx4ciIaIVlWCuTbYDOXOnOL44Q==",
    "dev": true,
    "optional": true
    },
    "@esbuild/win32-x64": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.15.tgz",
    "integrity": "sha512-imUxH9a3WJARyAvrG7srLyiK73XdX83NXQkjKvQ+7vPh3ZxoLrzvPkQKKw2DwZ+RV2ZB6vBfNHP8XScAmQC3aA==",
    "dev": true,
    "optional": true
    },
    "@ethereumjs/block": {
    "version": "3.6.3",
    "resolved": "https://registry.npmjs.org/@ethereumjs/block/-/block-3.6.3.tgz",
    "integrity": "sha512-CegDeryc2DVKnDkg5COQrE0bJfw/p0v3GBk2W5/Dj5dOVfEmb50Ux0GLnSPypooLnfqjwFaorGuT9FokWB3GRg==",
    "requires": {
    "@ethereumjs/common": "^2.6.5",
    "@ethereumjs/tx": "^3.5.2",
    "ethereumjs-util": "^7.1.5",
    "merkle-patricia-tree": "^4.2.4"
    }
    },
    "@ethereumjs/common": {
    "version": "2.6.5",
    "resolved": "https://registry.npmjs.org/@ethereumjs/common/-/common-2.6.5.tgz",
    "integrity": "sha512-lRyVQOeCDaIVtgfbowla32pzeDv2Obr8oR8Put5RdUBNRGr1VGPGQNGP6elWIpgK3YdpzqTOh4GyUGOureVeeA==",
    "requires": {
    "crc-32": "^1.2.0",
    "ethereumjs-util": "^7.1.5"
    }
    },
    "@ethereumjs/tx": {
    "version": "3.5.2",
    "resolved": "https://registry.npmjs.org/@ethereumjs/tx/-/tx-3.5.2.tgz",
    "integrity": "sha512-gQDNJWKrSDGu2w7w0PzVXVBNMzb7wwdDOmOqczmhNjqFxFuIbhVJDwiGEnxFNC2/b8ifcZzY7MLcluizohRzNw==",
    "requires": {
    "@ethereumjs/common": "^2.6.4",
    "ethereumjs-util": "^7.1.5"
    }
    },
    "@ethersproject/abi": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/abi/-/abi-5.7.0.tgz",
    "integrity": "sha512-351ktp42TiRcYB3H1OP8yajPeAQstMW/yCFokj/AthP9bLHzQFPlOrxOcwYEDkUAICmOHljvN4K39OMTMUa9RA==",
    "requires": {
    "@ethersproject/address": "^5.7.0",
    "@ethersproject/bignumber": "^5.7.0",
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/constants": "^5.7.0",
    "@ethersproject/hash": "^5.7.0",
    "@ethersproject/keccak256": "^5.7.0",
    "@ethersproject/logger": "^5.7.0",
    "@ethersproject/properties": "^5.7.0",
    "@ethersproject/strings": "^5.7.0"
    }
    },
    "@ethersproject/abstract-provider": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/abstract-provider/-/abstract-provider-5.7.0.tgz",
    "integrity": "sha512-R41c9UkchKCpAqStMYUpdunjo3pkEvZC3FAwZn5S5MGbXoMQOHIdHItezTETxAO5bevtMApSyEhn9+CHcDsWBw==",
    "requires": {
    "@ethersproject/bignumber": "^5.7.0",
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/logger": "^5.7.0",
    "@ethersproject/networks": "^5.7.0",
    "@ethersproject/properties": "^5.7.0",
    "@ethersproject/transactions": "^5.7.0",
    "@ethersproject/web": "^5.7.0"
    }
    },
    "@ethersproject/abstract-signer": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/abstract-signer/-/abstract-signer-5.7.0.tgz",
    "integrity": "sha512-a16V8bq1/Cz+TGCkE2OPMTOUDLS3grCpdjoJCYNnVBbdYEMSgKrU0+B90s8b6H+ByYTBZN7a3g76jdIJi7UfKQ==",
    "requires": {
    "@ethersproject/abstract-provider": "^5.7.0",
    "@ethersproject/bignumber": "^5.7.0",
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/logger": "^5.7.0",
    "@ethersproject/properties": "^5.7.0"
    }
    },
    "@ethersproject/address": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/address/-/address-5.7.0.tgz",
    "integrity": "sha512-9wYhYt7aghVGo758POM5nqcOMaE168Q6aRLJZwUmiqSrAungkG74gSSeKEIR7ukixesdRZGPgVqme6vmxs1fkA==",
    "requires": {
    "@ethersproject/bignumber": "^5.7.0",
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/keccak256": "^5.7.0",
    "@ethersproject/logger": "^5.7.0",
    "@ethersproject/rlp": "^5.7.0"
    }
    },
    "@ethersproject/base64": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/base64/-/base64-5.7.0.tgz",
    "integrity": "sha512-Dr8tcHt2mEbsZr/mwTPIQAf3Ai0Bks/7gTw9dSqk1mQvhW3XvRlmDJr/4n+wg1JmCl16NZue17CDh8xb/vZ0sQ==",
    "requires": {
    "@ethersproject/bytes": "^5.7.0"
    }
    },
    "@ethersproject/basex": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/basex/-/basex-5.7.0.tgz",
    "integrity": "sha512-ywlh43GwZLv2Voc2gQVTKBoVQ1mti3d8HK5aMxsfu/nRDnMmNqaSJ3r3n85HBByT8OpoY96SXM1FogC533T4zw==",
    "requires": {
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/properties": "^5.7.0"
    }
    },
    "@ethersproject/bignumber": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/bignumber/-/bignumber-5.7.0.tgz",
    "integrity": "sha512-n1CAdIHRWjSucQO3MC1zPSVgV/6dy/fjL9pMrPP9peL+QxEg9wOsVqwD4+818B6LUEtaXzVHQiuivzRoxPxUGw==",
    "requires": {
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/logger": "^5.7.0",
    "bn.js": "^5.2.1"
    },
    "dependencies": {
    "bn.js": {
    "version": "5.2.1",
    "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz",
    "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ=="
    }
    }
    },
    "@ethersproject/bytes": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/bytes/-/bytes-5.7.0.tgz",
    "integrity": "sha512-nsbxwgFXWh9NyYWo+U8atvmMsSdKJprTcICAkvbBffT75qDocbuggBU0SJiVK2MuTrp0q+xvLkTnGMPK1+uA9A==",
    "requires": {
    "@ethersproject/logger": "^5.7.0"
    }
    },
    "@ethersproject/constants": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/constants/-/constants-5.7.0.tgz",
    "integrity": "sha512-DHI+y5dBNvkpYUMiRQyxRBYBefZkJfo70VUkUAsRjcPs47muV9evftfZ0PJVCXYbAiCgght0DtcF9srFQmIgWA==",
    "requires": {
    "@ethersproject/bignumber": "^5.7.0"
    }
    },
    "@ethersproject/contracts": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/contracts/-/contracts-5.7.0.tgz",
    "integrity": "sha512-5GJbzEU3X+d33CdfPhcyS+z8MzsTrBGk/sc+G+59+tPa9yFkl6HQ9D6L0QMgNTA9q8dT0XKxxkyp883XsQvbbg==",
    "requires": {
    "@ethersproject/abi": "^5.7.0",
    "@ethersproject/abstract-provider": "^5.7.0",
    "@ethersproject/abstract-signer": "^5.7.0",
    "@ethersproject/address": "^5.7.0",
    "@ethersproject/bignumber": "^5.7.0",
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/constants": "^5.7.0",
    "@ethersproject/logger": "^5.7.0",
    "@ethersproject/properties": "^5.7.0",
    "@ethersproject/transactions": "^5.7.0"
    }
    },
    "@ethersproject/hash": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/hash/-/hash-5.7.0.tgz",
    "integrity": "sha512-qX5WrQfnah1EFnO5zJv1v46a8HW0+E5xuBBDTwMFZLuVTx0tbU2kkx15NqdjxecrLGatQN9FGQKpb1FKdHCt+g==",
    "requires": {
    "@ethersproject/abstract-signer": "^5.7.0",
    "@ethersproject/address": "^5.7.0",
    "@ethersproject/base64": "^5.7.0",
    "@ethersproject/bignumber": "^5.7.0",
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/keccak256": "^5.7.0",
    "@ethersproject/logger": "^5.7.0",
    "@ethersproject/properties": "^5.7.0",
    "@ethersproject/strings": "^5.7.0"
    }
    },
    "@ethersproject/hdnode": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/hdnode/-/hdnode-5.7.0.tgz",
    "integrity": "sha512-OmyYo9EENBPPf4ERhR7oj6uAtUAhYGqOnIS+jE5pTXvdKBS99ikzq1E7Iv0ZQZ5V36Lqx1qZLeak0Ra16qpeOg==",
    "requires": {
    "@ethersproject/abstract-signer": "^5.7.0",
    "@ethersproject/basex": "^5.7.0",
    "@ethersproject/bignumber": "^5.7.0",
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/logger": "^5.7.0",
    "@ethersproject/pbkdf2": "^5.7.0",
    "@ethersproject/properties": "^5.7.0",
    "@ethersproject/sha2": "^5.7.0",
    "@ethersproject/signing-key": "^5.7.0",
    "@ethersproject/strings": "^5.7.0",
    "@ethersproject/transactions": "^5.7.0",
    "@ethersproject/wordlists": "^5.7.0"
    }
    },
    "@ethersproject/json-wallets": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/json-wallets/-/json-wallets-5.7.0.tgz",
    "integrity": "sha512-8oee5Xgu6+RKgJTkvEMl2wDgSPSAQ9MB/3JYjFV9jlKvcYHUXZC+cQp0njgmxdHkYWn8s6/IqIZYm0YWCjO/0g==",
    "requires": {
    "@ethersproject/abstract-signer": "^5.7.0",
    "@ethersproject/address": "^5.7.0",
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/hdnode": "^5.7.0",
    "@ethersproject/keccak256": "^5.7.0",
    "@ethersproject/logger": "^5.7.0",
    "@ethersproject/pbkdf2": "^5.7.0",
    "@ethersproject/properties": "^5.7.0",
    "@ethersproject/random": "^5.7.0",
    "@ethersproject/strings": "^5.7.0",
    "@ethersproject/transactions": "^5.7.0",
    "aes-js": "3.0.0",
    "scrypt-js": "3.0.1"
    },
    "dependencies": {
    "aes-js": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/aes-js/-/aes-js-3.0.0.tgz",
    "integrity": "sha512-H7wUZRn8WpTq9jocdxQ2c8x2sKo9ZVmzfRE13GiNJXfp7NcKYEdvl3vspKjXox6RIG2VtaRe4JFvxG4rqp2Zuw=="
    }
    }
    },
    "@ethersproject/keccak256": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/keccak256/-/keccak256-5.7.0.tgz",
    "integrity": "sha512-2UcPboeL/iW+pSg6vZ6ydF8tCnv3Iu/8tUmLLzWWGzxWKFFqOBQFLo6uLUv6BDrLgCDfN28RJ/wtByx+jZ4KBg==",
    "requires": {
    "@ethersproject/bytes": "^5.7.0",
    "js-sha3": "0.8.0"
    }
    },
    "@ethersproject/logger": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/logger/-/logger-5.7.0.tgz",
    "integrity": "sha512-0odtFdXu/XHtjQXJYA3u9G0G8btm0ND5Cu8M7i5vhEcE8/HmF4Lbdqanwyv4uQTr2tx6b7fQRmgLrsnpQlmnig=="
    },
    "@ethersproject/networks": {
    "version": "5.7.1",
    "resolved": "https://registry.npmjs.org/@ethersproject/networks/-/networks-5.7.1.tgz",
    "integrity": "sha512-n/MufjFYv3yFcUyfhnXotyDlNdFb7onmkSy8aQERi2PjNcnWQ66xXxa3XlS8nCcA8aJKJjIIMNJTC7tu80GwpQ==",
    "requires": {
    "@ethersproject/logger": "^5.7.0"
    }
    },
    "@ethersproject/pbkdf2": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/pbkdf2/-/pbkdf2-5.7.0.tgz",
    "integrity": "sha512-oR/dBRZR6GTyaofd86DehG72hY6NpAjhabkhxgr3X2FpJtJuodEl2auADWBZfhDHgVCbu3/H/Ocq2uC6dpNjjw==",
    "requires": {
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/sha2": "^5.7.0"
    }
    },
    "@ethersproject/properties": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/properties/-/properties-5.7.0.tgz",
    "integrity": "sha512-J87jy8suntrAkIZtecpxEPxY//szqr1mlBaYlQ0r4RCaiD2hjheqF9s1LVE8vVuJCXisjIP+JgtK/Do54ej4Sw==",
    "requires": {
    "@ethersproject/logger": "^5.7.0"
    }
    },
    "@ethersproject/providers": {
    "version": "5.7.2",
    "resolved": "https://registry.npmjs.org/@ethersproject/providers/-/providers-5.7.2.tgz",
    "integrity": "sha512-g34EWZ1WWAVgr4aptGlVBF8mhl3VWjv+8hoAnzStu8Ah22VHBsuGzP17eb6xDVRzw895G4W7vvx60lFFur/1Rg==",
    "requires": {
    "@ethersproject/abstract-provider": "^5.7.0",
    "@ethersproject/abstract-signer": "^5.7.0",
    "@ethersproject/address": "^5.7.0",
    "@ethersproject/base64": "^5.7.0",
    "@ethersproject/basex": "^5.7.0",
    "@ethersproject/bignumber": "^5.7.0",
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/constants": "^5.7.0",
    "@ethersproject/hash": "^5.7.0",
    "@ethersproject/logger": "^5.7.0",
    "@ethersproject/networks": "^5.7.0",
    "@ethersproject/properties": "^5.7.0",
    "@ethersproject/random": "^5.7.0",
    "@ethersproject/rlp": "^5.7.0",
    "@ethersproject/sha2": "^5.7.0",
    "@ethersproject/strings": "^5.7.0",
    "@ethersproject/transactions": "^5.7.0",
    "@ethersproject/web": "^5.7.0",
    "bech32": "1.1.4",
    "ws": "7.4.6"
    },
    "dependencies": {
    "ws": {
    "version": "7.4.6",
    "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.6.tgz",
    "integrity": "sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==",
    "requires": {}
    }
    }
    },
    "@ethersproject/random": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/random/-/random-5.7.0.tgz",
    "integrity": "sha512-19WjScqRA8IIeWclFme75VMXSBvi4e6InrUNuaR4s5pTF2qNhcGdCUwdxUVGtDDqC00sDLCO93jPQoDUH4HVmQ==",
    "requires": {
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/logger": "^5.7.0"
    }
    },
    "@ethersproject/rlp": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/rlp/-/rlp-5.7.0.tgz",
    "integrity": "sha512-rBxzX2vK8mVF7b0Tol44t5Tb8gomOHkj5guL+HhzQ1yBh/ydjGnpw6at+X6Iw0Kp3OzzzkcKp8N9r0W4kYSs9w==",
    "requires": {
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/logger": "^5.7.0"
    }
    },
    "@ethersproject/sha2": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/sha2/-/sha2-5.7.0.tgz",
    "integrity": "sha512-gKlH42riwb3KYp0reLsFTokByAKoJdgFCwI+CCiX/k+Jm2mbNs6oOaCjYQSlI1+XBVejwH2KrmCbMAT/GnRDQw==",
    "requires": {
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/logger": "^5.7.0",
    "hash.js": "1.1.7"
    }
    },
    "@ethersproject/signing-key": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/signing-key/-/signing-key-5.7.0.tgz",
    "integrity": "sha512-MZdy2nL3wO0u7gkB4nA/pEf8lu1TlFswPNmy8AiYkfKTdO6eXBJyUdmHO/ehm/htHw9K/qF8ujnTyUAD+Ry54Q==",
    "requires": {
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/logger": "^5.7.0",
    "@ethersproject/properties": "^5.7.0",
    "bn.js": "^5.2.1",
    "elliptic": "6.5.4",
    "hash.js": "1.1.7"
    },
    "dependencies": {
    "bn.js": {
    "version": "5.2.1",
    "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz",
    "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ=="
    }
    }
    },
    "@ethersproject/solidity": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/solidity/-/solidity-5.7.0.tgz",
    "integrity": "sha512-HmabMd2Dt/raavyaGukF4XxizWKhKQ24DoLtdNbBmNKUOPqwjsKQSdV9GQtj9CBEea9DlzETlVER1gYeXXBGaA==",
    "requires": {
    "@ethersproject/bignumber": "^5.7.0",
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/keccak256": "^5.7.0",
    "@ethersproject/logger": "^5.7.0",
    "@ethersproject/sha2": "^5.7.0",
    "@ethersproject/strings": "^5.7.0"
    }
    },
    "@ethersproject/strings": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/strings/-/strings-5.7.0.tgz",
    "integrity": "sha512-/9nu+lj0YswRNSH0NXYqrh8775XNyEdUQAuf3f+SmOrnVewcJ5SBNAjF7lpgehKi4abvNNXyf+HX86czCdJ8Mg==",
    "requires": {
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/constants": "^5.7.0",
    "@ethersproject/logger": "^5.7.0"
    }
    },
    "@ethersproject/transactions": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/transactions/-/transactions-5.7.0.tgz",
    "integrity": "sha512-kmcNicCp1lp8qanMTC3RIikGgoJ80ztTyvtsFvCYpSCfkjhD0jZ2LOrnbcuxuToLIUYYf+4XwD1rP+B/erDIhQ==",
    "requires": {
    "@ethersproject/address": "^5.7.0",
    "@ethersproject/bignumber": "^5.7.0",
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/constants": "^5.7.0",
    "@ethersproject/keccak256": "^5.7.0",
    "@ethersproject/logger": "^5.7.0",
    "@ethersproject/properties": "^5.7.0",
    "@ethersproject/rlp": "^5.7.0",
    "@ethersproject/signing-key": "^5.7.0"
    }
    },
    "@ethersproject/units": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/units/-/units-5.7.0.tgz",
    "integrity": "sha512-pD3xLMy3SJu9kG5xDGI7+xhTEmGXlEqXU4OfNapmfnxLVY4EMSSRp7j1k7eezutBPH7RBN/7QPnwR7hzNlEFeg==",
    "requires": {
    "@ethersproject/bignumber": "^5.7.0",
    "@ethersproject/constants": "^5.7.0",
    "@ethersproject/logger": "^5.7.0"
    }
    },
    "@ethersproject/wallet": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/wallet/-/wallet-5.7.0.tgz",
    "integrity": "sha512-MhmXlJXEJFBFVKrDLB4ZdDzxcBxQ3rLyCkhNqVu3CDYvR97E+8r01UgrI+TI99Le+aYm/in/0vp86guJuM7FCA==",
    "requires": {
    "@ethersproject/abstract-provider": "^5.7.0",
    "@ethersproject/abstract-signer": "^5.7.0",
    "@ethersproject/address": "^5.7.0",
    "@ethersproject/bignumber": "^5.7.0",
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/hash": "^5.7.0",
    "@ethersproject/hdnode": "^5.7.0",
    "@ethersproject/json-wallets": "^5.7.0",
    "@ethersproject/keccak256": "^5.7.0",
    "@ethersproject/logger": "^5.7.0",
    "@ethersproject/properties": "^5.7.0",
    "@ethersproject/random": "^5.7.0",
    "@ethersproject/signing-key": "^5.7.0",
    "@ethersproject/transactions": "^5.7.0",
    "@ethersproject/wordlists": "^5.7.0"
    }
    },
    "@ethersproject/web": {
    "version": "5.7.1",
    "resolved": "https://registry.npmjs.org/@ethersproject/web/-/web-5.7.1.tgz",
    "integrity": "sha512-Gueu8lSvyjBWL4cYsWsjh6MtMwM0+H4HvqFPZfB6dV8ctbP9zFAO73VG1cMWae0FLPCtz0peKPpZY8/ugJJX2w==",
    "requires": {
    "@ethersproject/base64": "^5.7.0",
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/logger": "^5.7.0",
    "@ethersproject/properties": "^5.7.0",
    "@ethersproject/strings": "^5.7.0"
    }
    },
    "@ethersproject/wordlists": {
    "version": "5.7.0",
    "resolved": "https://registry.npmjs.org/@ethersproject/wordlists/-/wordlists-5.7.0.tgz",
    "integrity": "sha512-S2TFNJNfHWVHNE6cNDjbVlZ6MgE17MIxMbMg2zv3wn+3XSJGosL1m9ZVv3GXCf/2ymSsQ+hRI5IzoMJTG6aoVA==",
    "requires": {
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/hash": "^5.7.0",
    "@ethersproject/logger": "^5.7.0",
    "@ethersproject/properties": "^5.7.0",
    "@ethersproject/strings": "^5.7.0"
    }
    },
    "@irojs/iro-core": {
    "version": "1.2.1",
    "resolved": "https://registry.npmjs.org/@irojs/iro-core/-/iro-core-1.2.1.tgz",
    "integrity": "sha512-p2OvsBSSmidsDsTSkID6jEyXDF7lcyxPrkh3qBzasBZFpjkYd6kZ3yMWai3MlAaQ3F7li/Et7rSJVV09Fpei+A=="
    },
    "@isaacs/cliui": {
    "version": "8.0.2",
    "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
    "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
    "requires": {
    "string-width": "^5.1.2",
    "string-width-cjs": "npm:string-width@^4.2.0",
    "strip-ansi": "^7.0.1",
    "strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
    "wrap-ansi": "^8.1.0",
    "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
    },
    "dependencies": {
    "emoji-regex": {
    "version": "9.2.2",
    "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
    "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="
    },
    "string-width": {
    "version": "5.1.2",
    "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
    "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
    "requires": {
    "eastasianwidth": "^0.2.0",
    "emoji-regex": "^9.2.2",
    "strip-ansi": "^7.0.1"
    }
    }
    }
    },
    "@jaames/iro": {
    "version": "5.5.2",
    "resolved": "https://registry.npmjs.org/@jaames/iro/-/iro-5.5.2.tgz",
    "integrity": "sha512-Fbi5U4Vdkw6UsF+R3oMlPONqkvUDMkwzh+mX718gQsDFt3+1r1jvGsrfCbedmXAAy0WsjDHOrefK0BkDk99TQg==",
    "requires": {
    "@irojs/iro-core": "^1.2.1",
    "preact": "^10.0.0"
    }
    },
    "@jridgewell/sourcemap-codec": {
    "version": "1.4.15",
    "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz",
    "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==",
    "optional": true
    },
    "@ledgerhq/connect-kit-loader": {
    "version": "1.1.2",
    "resolved": "https://registry.npmjs.org/@ledgerhq/connect-kit-loader/-/connect-kit-loader-1.1.2.tgz",
    "integrity": "sha512-mscwGroSJQrCTjtNGBu+18FQbZYA4+q6Tyx6K7CXHl6AwgZKbWfZYdgP2F+fyZcRUdGRsMX8QtvU61VcGGtO1A=="
    },
    "@lit-labs/ssr-dom-shim": {
    "version": "1.1.1",
    "resolved": "https://registry.npmjs.org/@lit-labs/ssr-dom-shim/-/ssr-dom-shim-1.1.1.tgz",
    "integrity": "sha512-kXOeFbfCm4fFf2A3WwVEeQj55tMZa8c8/f9AKHMobQMkzNUfUj+antR3fRPaZJawsa1aZiP/Da3ndpZrwEe4rQ=="
    },
    "@lit/reactive-element": {
    "version": "1.6.3",
    "resolved": "https://registry.npmjs.org/@lit/reactive-element/-/reactive-element-1.6.3.tgz",
    "integrity": "sha512-QuTgnG52Poic7uM1AN5yJ09QMe0O28e10XzSvWDz02TJiiKee4stsiownEIadWm8nYzyDAyT+gKzUoZmiWQtsQ==",
    "requires": {
    "@lit-labs/ssr-dom-shim": "^1.0.0"
    }
    },
    "@maticnetwork/maticjs": {
    "version": "3.6.6",
    "resolved": "https://registry.npmjs.org/@maticnetwork/maticjs/-/maticjs-3.6.6.tgz",
    "integrity": "sha512-VhbK9yHdRgQl9GWt1XwasHTDEImd0ApmHFG0yCN8xjPz0YvXgsSPb+p+M5JzQYEgLQGZ3L/K3nnVYHBTiRIhPA==",
    "requires": {
    "@ethereumjs/block": "^3.6.2",
    "ethereumjs-util": "^7.1.4",
    "merkle-patricia-tree": "^4.2.4",
    "node-fetch": "^2.6.1"
    }
    },
    "@maticnetwork/maticjs-ethers": {
    "version": "1.0.3",
    "resolved": "https://registry.npmjs.org/@maticnetwork/maticjs-ethers/-/maticjs-ethers-1.0.3.tgz",
    "integrity": "sha512-paGulmLG62We/pyOVH3Q7mZd/E/SGFKa+rXtyvpoMB8v5oFn/yTtoKvLWyIoZ8zBi4JrjSegKL+/US5+OibYwQ==",
    "requires": {
    "ethers": "^5.5.1"
    },
    "dependencies": {
    "ethers": {
    "version": "5.7.2",
    "resolved": "https://registry.npmjs.org/ethers/-/ethers-5.7.2.tgz",
    "integrity": "sha512-wswUsmWo1aOK8rR7DIKiWSw9DbLWe6x98Jrn8wcTflTVvaXhAMaB5zGAXy0GYQEQp9iO1iSHWVyARQm11zUtyg==",
    "requires": {
    "@ethersproject/abi": "5.7.0",
    "@ethersproject/abstract-provider": "5.7.0",
    "@ethersproject/abstract-signer": "5.7.0",
    "@ethersproject/address": "5.7.0",
    "@ethersproject/base64": "5.7.0",
    "@ethersproject/basex": "5.7.0",
    "@ethersproject/bignumber": "5.7.0",
    "@ethersproject/bytes": "5.7.0",
    "@ethersproject/constants": "5.7.0",
    "@ethersproject/contracts": "5.7.0",
    "@ethersproject/hash": "5.7.0",
    "@ethersproject/hdnode": "5.7.0",
    "@ethersproject/json-wallets": "5.7.0",
    "@ethersproject/keccak256": "5.7.0",
    "@ethersproject/logger": "5.7.0",
    "@ethersproject/networks": "5.7.1",
    "@ethersproject/pbkdf2": "5.7.0",
    "@ethersproject/properties": "5.7.0",
    "@ethersproject/providers": "5.7.2",
    "@ethersproject/random": "5.7.0",
    "@ethersproject/rlp": "5.7.0",
    "@ethersproject/sha2": "5.7.0",
    "@ethersproject/signing-key": "5.7.0",
    "@ethersproject/solidity": "5.7.0",
    "@ethersproject/strings": "5.7.0",
    "@ethersproject/transactions": "5.7.0",
    "@ethersproject/units": "5.7.0",
    "@ethersproject/wallet": "5.7.0",
    "@ethersproject/web": "5.7.1",
    "@ethersproject/wordlists": "5.7.0"
    }
    }
    }
    },
    "@metamask/safe-event-emitter": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/@metamask/safe-event-emitter/-/safe-event-emitter-2.0.0.tgz",
    "integrity": "sha512-/kSXhY692qiV1MXu6EeOZvg5nECLclxNXcKCxJ3cXQgYuRymRHpdx/t7JXfsK+JLjwA1e1c1/SBrlQYpusC29Q=="
    },
    "@metamask/utils": {
    "version": "3.6.0",
    "resolved": "https://registry.npmjs.org/@metamask/utils/-/utils-3.6.0.tgz",
    "integrity": "sha512-9cIRrfkWvHblSiNDVXsjivqa9Ak0RYo/1H6tqTqTbAx+oBK2Sva0lWDHxGchOqA7bySGUJKAWSNJvH6gdHZ0gQ==",
    "requires": {
    "@types/debug": "^4.1.7",
    "debug": "^4.3.4",
    "semver": "^7.3.8",
    "superstruct": "^1.0.3"
    },
    "dependencies": {
    "superstruct": {
    "version": "1.0.3",
    "resolved": "https://registry.npmjs.org/superstruct/-/superstruct-1.0.3.tgz",
    "integrity": "sha512-8iTn3oSS8nRGn+C2pgXSKPI3jmpm6FExNazNpjvqS6ZUJQCej3PUXEKM8NjHBOs54ExM+LPW/FBRhymrdcCiSg=="
    }
    }
    },
    "@motionone/animation": {
    "version": "10.16.3",
    "resolved": "https://registry.npmjs.org/@motionone/animation/-/animation-10.16.3.tgz",
    "integrity": "sha512-QUGWpLbMFLhyqKlngjZhjtxM8IqiJQjLK0DF+XOF6od9nhSvlaeEpOY/UMCRVcZn/9Tr2rZO22EkuCIjYdI74g==",
    "requires": {
    "@motionone/easing": "^10.16.3",
    "@motionone/types": "^10.16.3",
    "@motionone/utils": "^10.16.3",
    "tslib": "^2.3.1"
    }
    },
    "@motionone/dom": {
    "version": "10.16.4",
    "resolved": "https://registry.npmjs.org/@motionone/dom/-/dom-10.16.4.tgz",
    "integrity": "sha512-HPHlVo/030qpRj9R8fgY50KTN4Ko30moWRTA3L3imrsRBmob93cTYmodln49HYFbQm01lFF7X523OkKY0DX6UA==",
    "requires": {
    "@motionone/animation": "^10.16.3",
    "@motionone/generators": "^10.16.4",
    "@motionone/types": "^10.16.3",
    "@motionone/utils": "^10.16.3",
    "hey-listen": "^1.0.8",
    "tslib": "^2.3.1"
    }
    },
    "@motionone/easing": {
    "version": "10.16.3",
    "resolved": "https://registry.npmjs.org/@motionone/easing/-/easing-10.16.3.tgz",
    "integrity": "sha512-HWTMZbTmZojzwEuKT/xCdvoMPXjYSyQvuVM6jmM0yoGU6BWzsmYMeB4bn38UFf618fJCNtP9XeC/zxtKWfbr0w==",
    "requires": {
    "@motionone/utils": "^10.16.3",
    "tslib": "^2.3.1"
    }
    },
    "@motionone/generators": {
    "version": "10.16.4",
    "resolved": "https://registry.npmjs.org/@motionone/generators/-/generators-10.16.4.tgz",
    "integrity": "sha512-geFZ3w0Rm0ZXXpctWsSf3REGywmLLujEjxPYpBR0j+ymYwof0xbV6S5kGqqsDKgyWKVWpUInqQYvQfL6fRbXeg==",
    "requires": {
    "@motionone/types": "^10.16.3",
    "@motionone/utils": "^10.16.3",
    "tslib": "^2.3.1"
    }
    },
    "@motionone/svelte": {
    "version": "10.16.4",
    "resolved": "https://registry.npmjs.org/@motionone/svelte/-/svelte-10.16.4.tgz",
    "integrity": "sha512-zRVqk20lD1xqe+yEDZhMYgftsuHc25+9JSo+r0a0OWUJFocjSV9D/+UGhX4xgJsuwB9acPzXLr20w40VnY2PQA==",
    "requires": {
    "@motionone/dom": "^10.16.4",
    "tslib": "^2.3.1"
    }
    },
    "@motionone/types": {
    "version": "10.16.3",
    "resolved": "https://registry.npmjs.org/@motionone/types/-/types-10.16.3.tgz",
    "integrity": "sha512-W4jkEGFifDq73DlaZs3HUfamV2t1wM35zN/zX7Q79LfZ2sc6C0R1baUHZmqc/K5F3vSw3PavgQ6HyHLd/MXcWg=="
    },
    "@motionone/utils": {
    "version": "10.16.3",
    "resolved": "https://registry.npmjs.org/@motionone/utils/-/utils-10.16.3.tgz",
    "integrity": "sha512-WNWDksJIxQkaI9p9Z9z0+K27xdqISGNFy1SsWVGaiedTHq0iaT6iZujby8fT/ZnZxj1EOaxJtSfUPCFNU5CRoA==",
    "requires": {
    "@motionone/types": "^10.16.3",
    "hey-listen": "^1.0.8",
    "tslib": "^2.3.1"
    }
    },
    "@motionone/vue": {
    "version": "10.16.4",
    "resolved": "https://registry.npmjs.org/@motionone/vue/-/vue-10.16.4.tgz",
    "integrity": "sha512-z10PF9JV6SbjFq+/rYabM+8CVlMokgl8RFGvieSGNTmrkQanfHn+15XBrhG3BgUfvmTeSeyShfOHpG0i9zEdcg==",
    "requires": {
    "@motionone/dom": "^10.16.4",
    "tslib": "^2.3.1"
    }
    },
    "@mux/mux-player": {
    "version": "2.0.1",
    "resolved": "https://registry.npmjs.org/@mux/mux-player/-/mux-player-2.0.1.tgz",
    "integrity": "sha512-jNFdBArHW6jBiJlpZTUE/pvSZPNFDFknlZNwKZe1aAymMbr2UfptMuUk3fnfln5F8OdWxUE4Qn6MP3xKUl0P0w==",
    "requires": {
    "@mux/mux-video": "0.16.5",
    "@mux/playback-core": "0.20.2",
    "media-chrome": "^1.4.3"
    }
    },
    "@mux/mux-video": {
    "version": "0.16.5",
    "resolved": "https://registry.npmjs.org/@mux/mux-video/-/mux-video-0.16.5.tgz",
    "integrity": "sha512-YtM8A+AcYRD8AhcaensueNcUABjBJcDCg34M0rxhRIOBLaAr6Gz9qo9dRGuI0n+Rm6xD0VCRlS41D3YbJ8NNHA==",
    "requires": {
    "@mux/playback-core": "0.20.2",
    "castable-video": "0.5.2",
    "custom-media-element": "0.2.0",
    "media-tracks": ">=0.2.3"
    }
    },
    "@mux/playback-core": {
    "version": "0.20.2",
    "resolved": "https://registry.npmjs.org/@mux/playback-core/-/playback-core-0.20.2.tgz",
    "integrity": "sha512-0uRy+8Rv3PDV0f7Je/m+y56lw96iyv3baxQPDmW2JnihR60/wtIzNRJSLE5vrzsKMysWBrnJ6Mwu8WkEB1qjLQ==",
    "requires": {
    "hls.js": "^1.4.10",
    "media-tracks": "0.2.3",
    "mux-embed": "^4.27.0"
    },
    "dependencies": {
    "media-tracks": {
    "version": "0.2.3",
    "resolved": "https://registry.npmjs.org/media-tracks/-/media-tracks-0.2.3.tgz",
    "integrity": "sha512-h5HRl1tIyeV+aF59FAmHmxChmdM/Ewf/twpxZkRme1ny46owD24uTA0BmRuPoO+uzvE0lx9ZIkZj1TbXi2VCng=="
    }
    }
    },
    "@noble/curves": {
    "version": "1.0.0",
    "resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.0.0.tgz",
    "integrity": "sha512-2upgEu0iLiDVDZkNLeFV2+ht0BAVgQnEmCk6JsOch9Rp8xfkMCbvbAZlA2pBHQc73dbl+vFOXfqkf4uemdn0bw==",
    "requires": {
    "@noble/hashes": "1.3.0"
    }
    },
    "@noble/hashes": {
    "version": "1.3.0",
    "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.0.tgz",
    "integrity": "sha512-ilHEACi9DwqJB0pw7kv+Apvh50jiiSyR/cQ3y4W7lOR5mhvn/50FLUfsnfJz0BDZtl/RR16kXvptiv6q1msYZg=="
    },
    "@noble/secp256k1": {
    "version": "1.7.1",
    "resolved": "https://registry.npmjs.org/@noble/secp256k1/-/secp256k1-1.7.1.tgz",
    "integrity": "sha512-hOUk6AyBFmqVrv7k5WAw/LpszxVbj9gGN4JRkIX52fdFAj1UA61KXmZDvqVEm+pOyec3+fIeZB02LYa/pWOArw=="
    },
    "@nodelib/fs.scandir": {
    "version": "2.1.5",
    "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
    "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
    "requires": {
    "@nodelib/fs.stat": "2.0.5",
    "run-parallel": "^1.1.9"
    }
    },
    "@nodelib/fs.stat": {
    "version": "2.0.5",
    "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
    "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="
    },
    "@nodelib/fs.walk": {
    "version": "1.2.8",
    "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
    "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
    "requires": {
    "@nodelib/fs.scandir": "2.1.5",
    "fastq": "^1.6.0"
    }
    },
    "@npmcli/fs": {
    "version": "3.1.0",
    "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.0.tgz",
    "integrity": "sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==",
    "requires": {
    "semver": "^7.3.5"
    }
    },
    "@npmcli/git": {
    "version": "4.1.0",
    "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-4.1.0.tgz",
    "integrity": "sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ==",
    "requires": {
    "@npmcli/promise-spawn": "^6.0.0",
    "lru-cache": "^7.4.4",
    "npm-pick-manifest": "^8.0.0",
    "proc-log": "^3.0.0",
    "promise-inflight": "^1.0.1",
    "promise-retry": "^2.0.1",
    "semver": "^7.3.5",
    "which": "^3.0.0"
    },
    "dependencies": {
    "which": {
    "version": "3.0.1",
    "resolved": "https://registry.npmjs.org/which/-/which-3.0.1.tgz",
    "integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==",
    "requires": {
    "isexe": "^2.0.0"
    }
    }
    }
    },
    "@npmcli/installed-package-contents": {
    "version": "2.0.2",
    "resolved": "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-2.0.2.tgz",
    "integrity": "sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ==",
    "requires": {
    "npm-bundled": "^3.0.0",
    "npm-normalize-package-bin": "^3.0.0"
    }
    },
    "@npmcli/node-gyp": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-3.0.0.tgz",
    "integrity": "sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA=="
    },
    "@npmcli/promise-spawn": {
    "version": "6.0.2",
    "resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-6.0.2.tgz",
    "integrity": "sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg==",
    "requires": {
    "which": "^3.0.0"
    },
    "dependencies": {
    "which": {
    "version": "3.0.1",
    "resolved": "https://registry.npmjs.org/which/-/which-3.0.1.tgz",
    "integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==",
    "requires": {
    "isexe": "^2.0.0"
    }
    }
    }
    },
    "@npmcli/run-script": {
    "version": "6.0.2",
    "resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-6.0.2.tgz",
    "integrity": "sha512-NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA==",
    "requires": {
    "@npmcli/node-gyp": "^3.0.0",
    "@npmcli/promise-spawn": "^6.0.0",
    "node-gyp": "^9.0.0",
    "read-package-json-fast": "^3.0.0",
    "which": "^3.0.0"
    },
    "dependencies": {
    "which": {
    "version": "3.0.1",
    "resolved": "https://registry.npmjs.org/which/-/which-3.0.1.tgz",
    "integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==",
    "requires": {
    "isexe": "^2.0.0"
    }
    }
    }
    },
    "@pkgjs/parseargs": {
    "version": "0.11.0",
    "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
    "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
    "optional": true
    },
    "@pnpm/config.env-replace": {
    "version": "1.1.0",
    "resolved": "https://registry.npmjs.org/@pnpm/config.env-replace/-/config.env-replace-1.1.0.tgz",
    "integrity": "sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w=="
    },
    "@pnpm/network.ca-file": {
    "version": "1.0.2",
    "resolved": "https://registry.npmjs.org/@pnpm/network.ca-file/-/network.ca-file-1.0.2.tgz",
    "integrity": "sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==",
    "requires": {
    "graceful-fs": "4.2.10"
    }
    },
    "@pnpm/npm-conf": {
    "version": "2.2.2",
    "resolved": "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-2.2.2.tgz",
    "integrity": "sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA==",
    "requires": {
    "@pnpm/config.env-replace": "^1.1.0",
    "@pnpm/network.ca-file": "^1.0.1",
    "config-chain": "^1.1.11"
    }
    },
    "@polybase/client": {
    "version": "0.6.5",
    "resolved": "https://registry.npmjs.org/@polybase/client/-/client-0.6.5.tgz",
    "integrity": "sha512-WiVtLZZHhSZDrCLxyhX0iyXnUOlA/Exv8iy0epcKwIWsAPZxz5WfJq5+IbU/0UdW8CRocOVskmNUMDSu9Wyk5g==",
    "requires": {
    "@polybase/eth": "^0.6.5",
    "@polybase/polylang": "^0.6.0",
    "axios": "0.27.2"
    },
    "dependencies": {
    "axios": {
    "version": "0.27.2",
    "resolved": "https://registry.npmjs.org/axios/-/axios-0.27.2.tgz",
    "integrity": "sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==",
    "requires": {
    "follow-redirects": "^1.14.9",
    "form-data": "^4.0.0"
    }
    }
    }
    },
    "@polybase/eth": {
    "version": "0.6.5",
    "resolved": "https://registry.npmjs.org/@polybase/eth/-/eth-0.6.5.tgz",
    "integrity": "sha512-sXZxoSORujygx4GcpFm/fe0BWO4cZIS7eGD7eygINJ/jT31I001oq3HCIV57+WFYlvMDLIwgQuvF6t/RuvMNFQ==",
    "requires": {
    "@ethersproject/keccak256": "^5.7.0",
    "@ethersproject/strings": "^5.7.0",
    "@polybase/util": "^0.6.5"
    }
    },
    "@polybase/polylang": {
    "version": "0.6.0",
    "resolved": "https://registry.npmjs.org/@polybase/polylang/-/polylang-0.6.0.tgz",
    "integrity": "sha512-yk2JbnNkJDKs2Gnjedra7H1b8H7MCZKaOlo3n+OjjcTlqsZq8Iz472hE0umxDi74zxcsMnIb/qsR6oj6fGKrpw=="
    },
    "@polybase/util": {
    "version": "0.6.5",
    "resolved": "https://registry.npmjs.org/@polybase/util/-/util-0.6.5.tgz",
    "integrity": "sha512-mpiRwgX1NNbVJYP0GVqafNLgWuAVO4pk/mUQBazW/X+FDz7fq0OSqTnYDZ5xGH87WW+33dX8whditwJIX9YFLA==",
    "requires": {
    "@ethersproject/bytes": "^5.7.0",
    "@ethersproject/signing-key": "^5.7.0",
    "elliptic": "^6.5.4",
    "process": "^0.11.10",
    "secp256k1": "^4.0.3",
    "tweetnacl": "^1.0.3",
    "tweetnacl-util": "^0.15.1"
    }
    },
    "@safe-global/safe-apps-provider": {
    "version": "0.17.1",
    "resolved": "https://registry.npmjs.org/@safe-global/safe-apps-provider/-/safe-apps-provider-0.17.1.tgz",
    "integrity": "sha512-lYfRqrbbK1aKU1/UGkYWc/X7PgySYcumXKc5FB2uuwAs2Ghj8uETuW5BrwPqyjBknRxutFbTv+gth/JzjxAhdQ==",
    "requires": {
    "@safe-global/safe-apps-sdk": "8.0.0",
    "events": "^3.3.0"
    },
    "dependencies": {
    "@safe-global/safe-apps-sdk": {
    "version": "8.0.0",
    "resolved": "https://registry.npmjs.org/@safe-global/safe-apps-sdk/-/safe-apps-sdk-8.0.0.tgz",
    "integrity": "sha512-gYw0ki/EAuV1oSyMxpqandHjnthZjYYy+YWpTAzf8BqfXM3ItcZLpjxfg+3+mXW8HIO+3jw6T9iiqEXsqHaMMw==",
    "requires": {
    "@safe-global/safe-gateway-typescript-sdk": "^3.5.3",
    "viem": "^1.0.0"
    }
    }
    }
    },
    "@safe-global/safe-apps-sdk": {
    "version": "8.1.0",
    "resolved": "https://registry.npmjs.org/@safe-global/safe-apps-sdk/-/safe-apps-sdk-8.1.0.tgz",
    "integrity": "sha512-XJbEPuaVc7b9n23MqlF6c+ToYIS3f7P2Sel8f3cSBQ9WORE4xrSuvhMpK9fDSFqJ7by/brc+rmJR/5HViRr0/w==",
    "requires": {
    "@safe-global/safe-gateway-typescript-sdk": "^3.5.3",
    "viem": "^1.0.0"
    }
    },
    "@safe-global/safe-gateway-typescript-sdk": {
    "version": "3.12.0",
    "resolved": "https://registry.npmjs.org/@safe-global/safe-gateway-typescript-sdk/-/safe-gateway-typescript-sdk-3.12.0.tgz",
    "integrity": "sha512-hExCo62lScVC9/ztVqYEYL2pFxcqLTvB8fj0WtdP5FWrvbtEgD0pbVolchzD5bf85pbzvEwdAxSVS7EdCZxTNw=="
    },
    "@scure/base": {
    "version": "1.1.3",
    "resolved": "https://registry.npmjs.org/@scure/base/-/base-1.1.3.tgz",
    "integrity": "sha512-/+SgoRjLq7Xlf0CWuLHq2LUZeL/w65kfzAPG5NH9pcmBhs+nunQTn4gvdwgMTIXnt9b2C/1SeL2XiysZEyIC9Q=="
    },
    "@scure/bip32": {
    "version": "1.3.0",
    "resolved": "https://registry.npmjs.org/@scure/bip32/-/bip32-1.3.0.tgz",
    "integrity": "sha512-bcKpo1oj54hGholplGLpqPHRbIsnbixFtc06nwuNM5/dwSXOq/AAYoIBRsBmnZJSdfeNW5rnff7NTAz3ZCqR9Q==",
    "requires": {
    "@noble/curves": "~1.0.0",
    "@noble/hashes": "~1.3.0",
    "@scure/base": "~1.1.0"
    }
    },
    "@scure/bip39": {
    "version": "1.2.0",
    "resolved": "https://registry.npmjs.org/@scure/bip39/-/bip39-1.2.0.tgz",
    "integrity": "sha512-SX/uKq52cuxm4YFXWFaVByaSHJh2w3BnokVSeUJVCv6K7WulT9u2BuNRBhuFl8vAuYnzx9bEu9WgpcNYTrYieg==",
    "requires": {
    "@noble/hashes": "~1.3.0",
    "@scure/base": "~1.1.0"
    }
    },
    "@sigstore/bundle": {
    "version": "1.1.0",
    "resolved": "https://registry.npmjs.org/@sigstore/bundle/-/bundle-1.1.0.tgz",
    "integrity": "sha512-PFutXEy0SmQxYI4texPw3dd2KewuNqv7OuK1ZFtY2fM754yhvG2KdgwIhRnoEE2uHdtdGNQ8s0lb94dW9sELog==",
    "requires": {
    "@sigstore/protobuf-specs": "^0.2.0"
    }
    },
    "@sigstore/protobuf-specs": {
    "version": "0.2.1",
    "resolved": "https://registry.npmjs.org/@sigstore/protobuf-specs/-/protobuf-specs-0.2.1.tgz",
    "integrity": "sha512-XTWVxnWJu+c1oCshMLwnKvz8ZQJJDVOlciMfgpJBQbThVjKTCG8dwyhgLngBD2KN0ap9F/gOV8rFDEx8uh7R2A=="
    },
    "@sigstore/sign": {
    "version": "1.0.0",
    "resolved": "https://registry.npmjs.org/@sigstore/sign/-/sign-1.0.0.tgz",
    "integrity": "sha512-INxFVNQteLtcfGmcoldzV6Je0sbbfh9I16DM4yJPw3j5+TFP8X6uIiA18mvpEa9yyeycAKgPmOA3X9hVdVTPUA==",
    "requires": {
    "@sigstore/bundle": "^1.1.0",
    "@sigstore/protobuf-specs": "^0.2.0",
    "make-fetch-happen": "^11.0.1"
    }
    },
    "@sigstore/tuf": {
    "version": "1.0.3",
    "resolved": "https://registry.npmjs.org/@sigstore/tuf/-/tuf-1.0.3.tgz",
    "integrity": "sha512-2bRovzs0nJZFlCN3rXirE4gwxCn97JNjMmwpecqlbgV9WcxX7WRuIrgzx/X7Ib7MYRbyUTpBYE0s2x6AmZXnlg==",
    "requires": {
    "@sigstore/protobuf-specs": "^0.2.0",
    "tuf-js": "^1.1.7"
    }
    },
    "@sindresorhus/is": {
    "version": "5.6.0",
    "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.6.0.tgz",
    "integrity": "sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g=="
    },
    "@solana/buffer-layout": {
    "version": "4.0.1",
    "resolved": "https://registry.npmjs.org/@solana/buffer-layout/-/buffer-layout-4.0.1.tgz",
    "integrity": "sha512-E1ImOIAD1tBZFRdjeM4/pzTiTApC0AOBGwyAMS4fwIodCWArzJ3DWdoh8cKxeFM2fElkxBh2Aqts1BPC373rHA==",
    "requires": {
    "buffer": "~6.0.3"
    }
    },
    "@solana/web3.js": {
    "version": "1.87.0",
    "resolved": "https://registry.npmjs.org/@solana/web3.js/-/web3.js-1.87.0.tgz",
    "integrity": "sha512-2V5nUkK3WHK2JkFvIU0IXadvHPwScfSqpmnO114RBKux+yXdIlIcLYZphWJ2v3We5Ufugi3wBwHD9rOvVQUGJw==",
    "requires": {
    "@babel/runtime": "^7.22.6",
    "@noble/curves": "^1.2.0",
    "@noble/hashes": "^1.3.1",
    "@solana/buffer-layout": "^4.0.0",
    "agentkeepalive": "^4.3.0",
    "bigint-buffer": "^1.1.5",
    "bn.js": "^5.2.1",
    "borsh": "^0.7.0",
    "bs58": "^4.0.1",
    "buffer": "6.0.3",
    "fast-stable-stringify": "^1.0.0",
    "jayson": "^4.1.0",
    "node-fetch": "^2.6.12",
    "rpc-websockets": "^7.5.1",
    "superstruct": "^0.14.2"
    },
    "dependencies": {
    "@noble/curves": {
    "version": "1.2.0",
    "resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.2.0.tgz",
    "integrity": "sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw==",
    "requires": {
    "@noble/hashes": "1.3.2"
    }
    },
    "@noble/hashes": {
    "version": "1.3.2",
    "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.2.tgz",
    "integrity": "sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ=="
    },
    "bn.js": {
    "version": "5.2.1",
    "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz",
    "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ=="
    }
    }
    },
    "@stablelib/aead": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/@stablelib/aead/-/aead-1.0.1.tgz",
    "integrity": "sha512-q39ik6sxGHewqtO0nP4BuSe3db5G1fEJE8ukvngS2gLkBXyy6E7pLubhbYgnkDFv6V8cWaxcE4Xn0t6LWcJkyg=="
    },
    "@stablelib/binary": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/@stablelib/binary/-/binary-1.0.1.tgz",
    "integrity": "sha512-ClJWvmL6UBM/wjkvv/7m5VP3GMr9t0osr4yVgLZsLCOz4hGN9gIAFEqnJ0TsSMAN+n840nf2cHZnA5/KFqHC7Q==",
    "requires": {
    "@stablelib/int": "^1.0.1"
    }
    },
    "@stablelib/bytes": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/@stablelib/bytes/-/bytes-1.0.1.tgz",
    "integrity": "sha512-Kre4Y4kdwuqL8BR2E9hV/R5sOrUj6NanZaZis0V6lX5yzqC3hBuVSDXUIBqQv/sCpmuWRiHLwqiT1pqqjuBXoQ=="
    },
    "@stablelib/chacha": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/@stablelib/chacha/-/chacha-1.0.1.tgz",
    "integrity": "sha512-Pmlrswzr0pBzDofdFuVe1q7KdsHKhhU24e8gkEwnTGOmlC7PADzLVxGdn2PoNVBBabdg0l/IfLKg6sHAbTQugg==",
    "requires": {
    "@stablelib/binary": "^1.0.1",
    "@stablelib/wipe": "^1.0.1"
    }
    },
    "@stablelib/chacha20poly1305": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/@stablelib/chacha20poly1305/-/chacha20poly1305-1.0.1.tgz",
    "integrity": "sha512-MmViqnqHd1ymwjOQfghRKw2R/jMIGT3wySN7cthjXCBdO+qErNPUBnRzqNpnvIwg7JBCg3LdeCZZO4de/yEhVA==",
    "requires": {
    "@stablelib/aead": "^1.0.1",
    "@stablelib/binary": "^1.0.1",
    "@stablelib/chacha": "^1.0.1",
    "@stablelib/constant-time": "^1.0.1",
    "@stablelib/poly1305": "^1.0.1",
    "@stablelib/wipe": "^1.0.1"
    }
    },
    "@stablelib/constant-time": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/@stablelib/constant-time/-/constant-time-1.0.1.tgz",
    "integrity": "sha512-tNOs3uD0vSJcK6z1fvef4Y+buN7DXhzHDPqRLSXUel1UfqMB1PWNsnnAezrKfEwTLpN0cGH2p9NNjs6IqeD0eg=="
    },
    "@stablelib/ed25519": {
    "version": "1.0.3",
    "resolved": "https://registry.npmjs.org/@stablelib/ed25519/-/ed25519-1.0.3.tgz",
    "integrity": "sha512-puIMWaX9QlRsbhxfDc5i+mNPMY+0TmQEskunY1rZEBPi1acBCVQAhnsk/1Hk50DGPtVsZtAWQg4NHGlVaO9Hqg==",
    "requires": {
    "@stablelib/random": "^1.0.2",
    "@stablelib/sha512": "^1.0.1",
    "@stablelib/wipe": "^1.0.1"
    }
    },
    "@stablelib/hash": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/@stablelib/hash/-/hash-1.0.1.tgz",
    "integrity": "sha512-eTPJc/stDkdtOcrNMZ6mcMK1e6yBbqRBaNW55XA1jU8w/7QdnCF0CmMmOD1m7VSkBR44PWrMHU2l6r8YEQHMgg=="
    },
    "@stablelib/hkdf": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/@stablelib/hkdf/-/hkdf-1.0.1.tgz",
    "integrity": "sha512-SBEHYE16ZXlHuaW5RcGk533YlBj4grMeg5TooN80W3NpcHRtLZLLXvKyX0qcRFxf+BGDobJLnwkvgEwHIDBR6g==",
    "requires": {
    "@stablelib/hash": "^1.0.1",
    "@stablelib/hmac": "^1.0.1",
    "@stablelib/wipe": "^1.0.1"
    }
    },
    "@stablelib/hmac": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/@stablelib/hmac/-/hmac-1.0.1.tgz",
    "integrity": "sha512-V2APD9NSnhVpV/QMYgCVMIYKiYG6LSqw1S65wxVoirhU/51ACio6D4yDVSwMzuTJXWZoVHbDdINioBwKy5kVmA==",
    "requires": {
    "@stablelib/constant-time": "^1.0.1",
    "@stablelib/hash": "^1.0.1",
    "@stablelib/wipe": "^1.0.1"
    }
    },
    "@stablelib/int": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/@stablelib/int/-/int-1.0.1.tgz",
    "integrity": "sha512-byr69X/sDtDiIjIV6m4roLVWnNNlRGzsvxw+agj8CIEazqWGOQp2dTYgQhtyVXV9wpO6WyXRQUzLV/JRNumT2w=="
    },
    "@stablelib/keyagreement": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/@stablelib/keyagreement/-/keyagreement-1.0.1.tgz",
    "integrity": "sha512-VKL6xBwgJnI6l1jKrBAfn265cspaWBPAPEc62VBQrWHLqVgNRE09gQ/AnOEyKUWrrqfD+xSQ3u42gJjLDdMDQg==",
    "requires": {
    "@stablelib/bytes": "^1.0.1"
    }
    },
    "@stablelib/poly1305": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/@stablelib/poly1305/-/poly1305-1.0.1.tgz",
    "integrity": "sha512-1HlG3oTSuQDOhSnLwJRKeTRSAdFNVB/1djy2ZbS35rBSJ/PFqx9cf9qatinWghC2UbfOYD8AcrtbUQl8WoxabA==",
    "requires": {
    "@stablelib/constant-time": "^1.0.1",
    "@stablelib/wipe": "^1.0.1"
    }
    },
    "@stablelib/random": {
    "version": "1.0.2",
    "resolved": "https://registry.npmjs.org/@stablelib/random/-/random-1.0.2.tgz",
    "integrity": "sha512-rIsE83Xpb7clHPVRlBj8qNe5L8ISQOzjghYQm/dZ7VaM2KHYwMW5adjQjrzTZCchFnNCNhkwtnOBa9HTMJCI8w==",
    "requires": {
    "@stablelib/binary": "^1.0.1",
    "@stablelib/wipe": "^1.0.1"
    }
    },
    "@stablelib/sha256": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/@stablelib/sha256/-/sha256-1.0.1.tgz",
    "integrity": "sha512-GIIH3e6KH+91FqGV42Kcj71Uefd/QEe7Dy42sBTeqppXV95ggCcxLTk39bEr+lZfJmp+ghsR07J++ORkRELsBQ==",
    "requires": {
    "@stablelib/binary": "^1.0.1",
    "@stablelib/hash": "^1.0.1",
    "@stablelib/wipe": "^1.0.1"
    }
    },
    "@stablelib/sha512": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/@stablelib/sha512/-/sha512-1.0.1.tgz",
    "integrity": "sha512-13gl/iawHV9zvDKciLo1fQ8Bgn2Pvf7OV6amaRVKiq3pjQ3UmEpXxWiAfV8tYjUpeZroBxtyrwtdooQT/i3hzw==",
    "requires": {
    "@stablelib/binary": "^1.0.1",
    "@stablelib/hash": "^1.0.1",
    "@stablelib/wipe": "^1.0.1"
    }
    },
    "@stablelib/wipe": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/@stablelib/wipe/-/wipe-1.0.1.tgz",
    "integrity": "sha512-WfqfX/eXGiAd3RJe4VU2snh/ZPwtSjLG4ynQ/vYzvghTh7dHFcI1wl+nrkWG6lGhukOxOsUHfv8dUXr58D0ayg=="
    },
    "@stablelib/x25519": {
    "version": "1.0.3",
    "resolved": "https://registry.npmjs.org/@stablelib/x25519/-/x25519-1.0.3.tgz",
    "integrity": "sha512-KnTbKmUhPhHavzobclVJQG5kuivH+qDLpe84iRqX3CLrKp881cF160JvXJ+hjn1aMyCwYOKeIZefIH/P5cJoRw==",
    "requires": {
    "@stablelib/keyagreement": "^1.0.1",
    "@stablelib/random": "^1.0.2",
    "@stablelib/wipe": "^1.0.1"
    }
    },
    "@szmarczak/http-timer": {
    "version": "5.0.1",
    "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-5.0.1.tgz",
    "integrity": "sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==",
    "requires": {
    "defer-to-connect": "^2.0.1"
    }
    },
    "@tootallnate/once": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz",
    "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A=="
    },
    "@tufjs/canonical-json": {
    "version": "1.0.0",
    "resolved": "https://registry.npmjs.org/@tufjs/canonical-json/-/canonical-json-1.0.0.tgz",
    "integrity": "sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ=="
    },
    "@tufjs/models": {
    "version": "1.0.4",
    "resolved": "https://registry.npmjs.org/@tufjs/models/-/models-1.0.4.tgz",
    "integrity": "sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==",
    "requires": {
    "@tufjs/canonical-json": "1.0.0",
    "minimatch": "^9.0.0"
    }
    },
    "@types/abstract-leveldown": {
    "version": "7.2.3",
    "resolved": "https://registry.npmjs.org/@types/abstract-leveldown/-/abstract-leveldown-7.2.3.tgz",
    "integrity": "sha512-YAdL8tIYbiKoFjAf/0Ir3mvRJ/iFvBP/FK0I8Xa5rGWgVcq0xWOEInzlJfs6TIPWFweEOTKgNSBdxneUcHRvaw=="
    },
    "@types/bn.js": {
    "version": "5.1.2",
    "resolved": "https://registry.npmjs.org/@types/bn.js/-/bn.js-5.1.2.tgz",
    "integrity": "sha512-dkpZu0szUtn9UXTmw+e0AJFd4D2XAxDnsCLdc05SfqpqzPEBft8eQr8uaFitfo/dUUOZERaLec2hHMG87A4Dxg==",
    "requires": {
    "@types/node": "*"
    }
    },
    "@types/connect": {
    "version": "3.4.36",
    "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.36.tgz",
    "integrity": "sha512-P63Zd/JUGq+PdrM1lv0Wv5SBYeA2+CORvbrXbngriYY0jzLUWfQMQQxOhjONEz/wlHOAxOdY7CY65rgQdTjq2w==",
    "requires": {
    "@types/node": "*"
    }
    },
    "@types/debug": {
    "version": "4.1.9",
    "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.9.tgz",
    "integrity": "sha512-8Hz50m2eoS56ldRlepxSBa6PWEVCtzUo/92HgLc2qTMnotJNIm7xP+UZhyWoYsyOdd5dxZ+NZLb24rsKyFs2ow==",
    "requires": {
    "@types/ms": "*"
    }
    },
    "@types/http-cache-semantics": {
    "version": "4.0.1",
    "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz",
    "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ=="
    },
    "@types/jquery": {
    "version": "3.5.16",
    "resolved": "https://registry.npmjs.org/@types/jquery/-/jquery-3.5.16.tgz",
    "integrity": "sha512-bsI7y4ZgeMkmpG9OM710RRzDFp+w4P1RGiIt30C1mSBT+ExCleeh4HObwgArnDFELmRrOpXgSYN9VF1hj+f1lw==",
    "requires": {
    "@types/sizzle": "*"
    }
    },
    "@types/level-errors": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/@types/level-errors/-/level-errors-3.0.0.tgz",
    "integrity": "sha512-/lMtoq/Cf/2DVOm6zE6ORyOM+3ZVm/BvzEZVxUhf6bgh8ZHglXlBqxbxSlJeVp8FCbD3IVvk/VbsaNmDjrQvqQ=="
    },
    "@types/levelup": {
    "version": "4.3.3",
    "resolved": "https://registry.npmjs.org/@types/levelup/-/levelup-4.3.3.tgz",
    "integrity": "sha512-K+OTIjJcZHVlZQN1HmU64VtrC0jC3dXWQozuEIR9zVvltIk90zaGPM2AgT+fIkChpzHhFE3YnvFLCbLtzAmexA==",
    "requires": {
    "@types/abstract-leveldown": "*",
    "@types/level-errors": "*",
    "@types/node": "*"
    }
    },
    "@types/ms": {
    "version": "0.7.32",
    "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.32.tgz",
    "integrity": "sha512-xPSg0jm4mqgEkNhowKgZFBNtwoEwF6gJ4Dhww+GFpm3IgtNseHQZ5IqdNwnquZEoANxyDAKDRAdVo4Z72VvD/g=="
    },
    "@types/node": {
    "version": "20.5.1",
    "resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.1.tgz",
    "integrity": "sha512-4tT2UrL5LBqDwoed9wZ6N3umC4Yhz3W3FloMmiiG4JwmUJWpie0c7lcnUNd4gtMKuDEO4wRVS8B6Xa0uMRsMKg=="
    },
    "@types/pbkdf2": {
    "version": "3.1.0",
    "resolved": "https://registry.npmjs.org/@types/pbkdf2/-/pbkdf2-3.1.0.tgz",
    "integrity": "sha512-Cf63Rv7jCQ0LaL8tNXmEyqTHuIJxRdlS5vMh1mj5voN4+QFhVZnlZruezqpWYDiJ8UTzhP0VmeLXCmBk66YrMQ==",
    "requires": {
    "@types/node": "*"
    }
    },
    "@types/secp256k1": {
    "version": "4.0.4",
    "resolved": "https://registry.npmjs.org/@types/secp256k1/-/secp256k1-4.0.4.tgz",
    "integrity": "sha512-oN0PFsYxDZnX/qSJ5S5OwaEDTYfekhvaM5vqui2bu1AA39pKofmgL104Q29KiOXizXS2yLjSzc5YdTyMKdcy4A==",
    "requires": {
    "@types/node": "*"
    }
    },
    "@types/sizzle": {
    "version": "2.3.3",
    "resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.3.tgz",
    "integrity": "sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ=="
    },
    "@types/trusted-types": {
    "version": "2.0.4",
    "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.4.tgz",
    "integrity": "sha512-IDaobHimLQhjwsQ/NMwRVfa/yL7L/wriQPMhw1ZJall0KX6E1oxk29XMDeilW5qTIg5aoiqf5Udy8U/51aNoQQ=="
    },
    "@types/ws": {
    "version": "7.4.7",
    "resolved": "https://registry.npmjs.org/@types/ws/-/ws-7.4.7.tgz",
    "integrity": "sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww==",
    "requires": {
    "@types/node": "*"
    }
    },
    "@vue/compiler-core": {
    "version": "3.3.4",
    "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.3.4.tgz",
    "integrity": "sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==",
    "optional": true,
    "requires": {
    "@babel/parser": "^7.21.3",
    "@vue/shared": "3.3.4",
    "estree-walker": "^2.0.2",
    "source-map-js": "^1.0.2"
    }
    },
    "@vue/compiler-dom": {
    "version": "3.3.4",
    "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz",
    "integrity": "sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w==",
    "optional": true,
    "requires": {
    "@vue/compiler-core": "3.3.4",
    "@vue/shared": "3.3.4"
    }
    },
    "@vue/compiler-sfc": {
    "version": "3.3.4",
    "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.3.4.tgz",
    "integrity": "sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==",
    "optional": true,
    "requires": {
    "@babel/parser": "^7.20.15",
    "@vue/compiler-core": "3.3.4",
    "@vue/compiler-dom": "3.3.4",
    "@vue/compiler-ssr": "3.3.4",
    "@vue/reactivity-transform": "3.3.4",
    "@vue/shared": "3.3.4",
    "estree-walker": "^2.0.2",
    "magic-string": "^0.30.0",
    "postcss": "^8.1.10",
    "source-map-js": "^1.0.2"
    }
    },
    "@vue/compiler-ssr": {
    "version": "3.3.4",
    "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz",
    "integrity": "sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ==",
    "optional": true,
    "requires": {
    "@vue/compiler-dom": "3.3.4",
    "@vue/shared": "3.3.4"
    }
    },
    "@vue/reactivity": {
    "version": "3.3.4",
    "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.3.4.tgz",
    "integrity": "sha512-kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ==",
    "optional": true,
    "requires": {
    "@vue/shared": "3.3.4"
    }
    },
    "@vue/reactivity-transform": {
    "version": "3.3.4",
    "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.3.4.tgz",
    "integrity": "sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw==",
    "optional": true,
    "requires": {
    "@babel/parser": "^7.20.15",
    "@vue/compiler-core": "3.3.4",
    "@vue/shared": "3.3.4",
    "estree-walker": "^2.0.2",
    "magic-string": "^0.30.0"
    }
    },
    "@vue/runtime-core": {
    "version": "3.3.4",
    "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.3.4.tgz",
    "integrity": "sha512-R+bqxMN6pWO7zGI4OMlmvePOdP2c93GsHFM/siJI7O2nxFRzj55pLwkpCedEY+bTMgp5miZ8CxfIZo3S+gFqvA==",
    "optional": true,
    "requires": {
    "@vue/reactivity": "3.3.4",
    "@vue/shared": "3.3.4"
    }
    },
    "@vue/runtime-dom": {
    "version": "3.3.4",
    "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.3.4.tgz",
    "integrity": "sha512-Aj5bTJ3u5sFsUckRghsNjVTtxZQ1OyMWCr5dZRAPijF/0Vy4xEoRCwLyHXcj4D0UFbJ4lbx3gPTgg06K/GnPnQ==",
    "optional": true,
    "requires": {
    "@vue/runtime-core": "3.3.4",
    "@vue/shared": "3.3.4",
    "csstype": "^3.1.1"
    }
    },
    "@vue/server-renderer": {
    "version": "3.3.4",
    "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.3.4.tgz",
    "integrity": "sha512-Q6jDDzR23ViIb67v+vM1Dqntu+HUexQcsWKhhQa4ARVzxOY2HbC7QRW/ggkDBd5BU+uM1sV6XOAP0b216o34JQ==",
    "optional": true,
    "requires": {
    "@vue/compiler-ssr": "3.3.4",
    "@vue/shared": "3.3.4"
    }
    },
    "@vue/shared": {
    "version": "3.3.4",
    "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.3.4.tgz",
    "integrity": "sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==",
    "optional": true
    },
    "@wagmi/connectors": {
    "version": "3.1.2",
    "resolved": "https://registry.npmjs.org/@wagmi/connectors/-/connectors-3.1.2.tgz",
    "integrity": "sha512-IlLKErqCzQRBUcCvXGPowcczbWcvJtEG006gPsAoePNJEXCHEWoKASghgu+L/bqD7006Z6mW6zlTNjcSQJvFAg==",
    "requires": {
    "@coinbase/wallet-sdk": "^3.6.6",
    "@ledgerhq/connect-kit-loader": "^1.1.0",
    "@safe-global/safe-apps-provider": "^0.17.1",
    "@safe-global/safe-apps-sdk": "^8.0.0",
    "@walletconnect/ethereum-provider": "2.10.1",
    "@walletconnect/legacy-provider": "^2.0.0",
    "@walletconnect/modal": "2.6.2",
    "@walletconnect/utils": "2.10.1",
    "abitype": "0.8.7",
    "eventemitter3": "^4.0.7"
    }
    },
    "@wagmi/core": {
    "version": "1.4.3",
    "resolved": "https://registry.npmjs.org/@wagmi/core/-/core-1.4.3.tgz",
    "integrity": "sha512-CIV9jwv5ue+WpqmA3FvwGa+23cppe7oIaz6TRnlGm0Hm0wDImSaQSWqcsFyOPvleD29oOIJ8e3KnHINEvI64AA==",
    "requires": {
    "@wagmi/connectors": "3.1.2",
    "abitype": "0.8.7",
    "eventemitter3": "^4.0.7",
    "zustand": "^4.3.1"
    }
    },
    "@walletconnect/core": {
    "version": "2.10.1",
    "resolved": "https://registry.npmjs.org/@walletconnect/core/-/core-2.10.1.tgz",
    "integrity": "sha512-WAoXfmj+Zy5q48TnrKUjmHXJCBahzKwbul+noepRZf7JDtUAZ9IOWpUjg+UPRbfK5EiWZ0TF42S6SXidf7EHoQ==",
    "requires": {
    "@walletconnect/heartbeat": "1.2.1",
    "@walletconnect/jsonrpc-provider": "1.0.13",
    "@walletconnect/jsonrpc-types": "1.0.3",
    "@walletconnect/jsonrpc-utils": "1.0.8",
    "@walletconnect/jsonrpc-ws-connection": "1.0.13",
    "@walletconnect/keyvaluestorage": "^1.0.2",
    "@walletconnect/logger": "^2.0.1",
    "@walletconnect/relay-api": "^1.0.9",
    "@walletconnect/relay-auth": "^1.0.4",
    "@walletconnect/safe-json": "^1.0.2",
    "@walletconnect/time": "^1.0.2",
    "@walletconnect/types": "2.10.1",
    "@walletconnect/utils": "2.10.1",
    "events": "^3.3.0",
    "lodash.isequal": "4.5.0",
    "uint8arrays": "^3.1.0"
    }
    },
    "@walletconnect/crypto": {
    "version": "1.0.3",
    "resolved": "https://registry.npmjs.org/@walletconnect/crypto/-/crypto-1.0.3.tgz",
    "integrity": "sha512-+2jdORD7XQs76I2Odgr3wwrtyuLUXD/kprNVsjWRhhhdO9Mt6WqVzOPu0/t7OHSmgal8k7SoBQzUc5hu/8zL/g==",
    "requires": {
    "@walletconnect/encoding": "^1.0.2",
    "@walletconnect/environment": "^1.0.1",
    "@walletconnect/randombytes": "^1.0.3",
    "aes-js": "^3.1.2",
    "hash.js": "^1.1.7",
    "tslib": "1.14.1"
    },
    "dependencies": {
    "aes-js": {
    "version": "3.1.2",
    "resolved": "https://registry.npmjs.org/aes-js/-/aes-js-3.1.2.tgz",
    "integrity": "sha512-e5pEa2kBnBOgR4Y/p20pskXI74UEz7de8ZGVo58asOtvSVG5YAbJeELPZxOmt+Bnz3rX753YKhfIn4X4l1PPRQ=="
    },
    "tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    }
    }
    },
    "@walletconnect/encoding": {
    "version": "1.0.2",
    "resolved": "https://registry.npmjs.org/@walletconnect/encoding/-/encoding-1.0.2.tgz",
    "integrity": "sha512-CrwSBrjqJ7rpGQcTL3kU+Ief+Bcuu9PH6JLOb+wM6NITX1GTxR/MfNwnQfhLKK6xpRAyj2/nM04OOH6wS8Imag==",
    "requires": {
    "is-typedarray": "1.0.0",
    "tslib": "1.14.1",
    "typedarray-to-buffer": "3.1.5"
    },
    "dependencies": {
    "tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    }
    }
    },
    "@walletconnect/environment": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/@walletconnect/environment/-/environment-1.0.1.tgz",
    "integrity": "sha512-T426LLZtHj8e8rYnKfzsw1aG6+M0BT1ZxayMdv/p8yM0MU+eJDISqNY3/bccxRr4LrF9csq02Rhqt08Ibl0VRg==",
    "requires": {
    "tslib": "1.14.1"
    },
    "dependencies": {
    "tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    }
    }
    },
    "@walletconnect/ethereum-provider": {
    "version": "2.10.1",
    "resolved": "https://registry.npmjs.org/@walletconnect/ethereum-provider/-/ethereum-provider-2.10.1.tgz",
    "integrity": "sha512-Yhoz8EXkKzxOlBT6G+elphqCx/gkH6RxD9/ZAiy9lLc8Ng5p1gvKCVVP5zsGNE9FbkKmHd+J9JJRzn2Bw2yqtQ==",
    "requires": {
    "@walletconnect/jsonrpc-http-connection": "^1.0.7",
    "@walletconnect/jsonrpc-provider": "^1.0.13",
    "@walletconnect/jsonrpc-types": "^1.0.3",
    "@walletconnect/jsonrpc-utils": "^1.0.8",
    "@walletconnect/sign-client": "2.10.1",
    "@walletconnect/types": "2.10.1",
    "@walletconnect/universal-provider": "2.10.1",
    "@walletconnect/utils": "2.10.1",
    "events": "^3.3.0"
    }
    },
    "@walletconnect/events": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/@walletconnect/events/-/events-1.0.1.tgz",
    "integrity": "sha512-NPTqaoi0oPBVNuLv7qPaJazmGHs5JGyO8eEAk5VGKmJzDR7AHzD4k6ilox5kxk1iwiOnFopBOOMLs86Oa76HpQ==",
    "requires": {
    "keyvaluestorage-interface": "^1.0.0",
    "tslib": "1.14.1"
    },
    "dependencies": {
    "tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    }
    }
    },
    "@walletconnect/heartbeat": {
    "version": "1.2.1",
    "resolved": "https://registry.npmjs.org/@walletconnect/heartbeat/-/heartbeat-1.2.1.tgz",
    "integrity": "sha512-yVzws616xsDLJxuG/28FqtZ5rzrTA4gUjdEMTbWB5Y8V1XHRmqq4efAxCw5ie7WjbXFSUyBHaWlMR+2/CpQC5Q==",
    "requires": {
    "@walletconnect/events": "^1.0.1",
    "@walletconnect/time": "^1.0.2",
    "tslib": "1.14.1"
    },
    "dependencies": {
    "tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    }
    }
    },
    "@walletconnect/jsonrpc-http-connection": {
    "version": "1.0.7",
    "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-http-connection/-/jsonrpc-http-connection-1.0.7.tgz",
    "integrity": "sha512-qlfh8fCfu8LOM9JRR9KE0s0wxP6ZG9/Jom8M0qsoIQeKF3Ni0FyV4V1qy/cc7nfI46SLQLSl4tgWSfLiE1swyQ==",
    "requires": {
    "@walletconnect/jsonrpc-utils": "^1.0.6",
    "@walletconnect/safe-json": "^1.0.1",
    "cross-fetch": "^3.1.4",
    "tslib": "1.14.1"
    },
    "dependencies": {
    "cross-fetch": {
    "version": "3.1.8",
    "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.8.tgz",
    "integrity": "sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==",
    "requires": {
    "node-fetch": "^2.6.12"
    }
    },
    "tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    }
    }
    },
    "@walletconnect/jsonrpc-provider": {
    "version": "1.0.13",
    "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-provider/-/jsonrpc-provider-1.0.13.tgz",
    "integrity": "sha512-K73EpThqHnSR26gOyNEL+acEex3P7VWZe6KE12ZwKzAt2H4e5gldZHbjsu2QR9cLeJ8AXuO7kEMOIcRv1QEc7g==",
    "requires": {
    "@walletconnect/jsonrpc-utils": "^1.0.8",
    "@walletconnect/safe-json": "^1.0.2",
    "tslib": "1.14.1"
    },
    "dependencies": {
    "tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    }
    }
    },
    "@walletconnect/jsonrpc-types": {
    "version": "1.0.3",
    "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-types/-/jsonrpc-types-1.0.3.tgz",
    "integrity": "sha512-iIQ8hboBl3o5ufmJ8cuduGad0CQm3ZlsHtujv9Eu16xq89q+BG7Nh5VLxxUgmtpnrePgFkTwXirCTkwJH1v+Yw==",
    "requires": {
    "keyvaluestorage-interface": "^1.0.0",
    "tslib": "1.14.1"
    },
    "dependencies": {
    "tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    }
    }
    },
    "@walletconnect/jsonrpc-utils": {
    "version": "1.0.8",
    "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-utils/-/jsonrpc-utils-1.0.8.tgz",
    "integrity": "sha512-vdeb03bD8VzJUL6ZtzRYsFMq1eZQcM3EAzT0a3st59dyLfJ0wq+tKMpmGH7HlB7waD858UWgfIcudbPFsbzVdw==",
    "requires": {
    "@walletconnect/environment": "^1.0.1",
    "@walletconnect/jsonrpc-types": "^1.0.3",
    "tslib": "1.14.1"
    },
    "dependencies": {
    "tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    }
    }
    },
    "@walletconnect/jsonrpc-ws-connection": {
    "version": "1.0.13",
    "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-ws-connection/-/jsonrpc-ws-connection-1.0.13.tgz",
    "integrity": "sha512-mfOM7uFH4lGtQxG+XklYuFBj6dwVvseTt5/ahOkkmpcAEgz2umuzu7fTR+h5EmjQBdrmYyEBOWADbeaFNxdySg==",
    "requires": {
    "@walletconnect/jsonrpc-utils": "^1.0.6",
    "@walletconnect/safe-json": "^1.0.2",
    "events": "^3.3.0",
    "tslib": "1.14.1",
    "ws": "^7.5.1"
    },
    "dependencies": {
    "tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    },
    "ws": {
    "version": "7.5.9",
    "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz",
    "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==",
    "requires": {}
    }
    }
    },
    "@walletconnect/keyvaluestorage": {
    "version": "1.0.2",
    "resolved": "https://registry.npmjs.org/@walletconnect/keyvaluestorage/-/keyvaluestorage-1.0.2.tgz",
    "integrity": "sha512-U/nNG+VLWoPFdwwKx0oliT4ziKQCEoQ27L5Hhw8YOFGA2Po9A9pULUYNWhDgHkrb0gYDNt//X7wABcEWWBd3FQ==",
    "requires": {
    "safe-json-utils": "^1.1.1",
    "tslib": "1.14.1"
    },
    "dependencies": {
    "tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    }
    }
    },
    "@walletconnect/legacy-client": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/@walletconnect/legacy-client/-/legacy-client-2.0.0.tgz",
    "integrity": "sha512-v5L7rYk9loVnfvUf0mF+76bUPFaU5/Vh7mzL6/950CD/yoGdzYZ3Kj+L7mkC6HPMEGeQsBP1+sqBuiVGZ/aODA==",
    "requires": {
    "@walletconnect/crypto": "^1.0.3",
    "@walletconnect/encoding": "^1.0.2",
    "@walletconnect/jsonrpc-utils": "^1.0.4",
    "@walletconnect/legacy-types": "^2.0.0",
    "@walletconnect/legacy-utils": "^2.0.0",
    "@walletconnect/safe-json": "^1.0.1",
    "@walletconnect/window-getters": "^1.0.1",
    "@walletconnect/window-metadata": "^1.0.1",
    "detect-browser": "^5.3.0",
    "query-string": "^6.13.5"
    }
    },
    "@walletconnect/legacy-modal": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/@walletconnect/legacy-modal/-/legacy-modal-2.0.0.tgz",
    "integrity": "sha512-jckNd8lMhm4X7dX9TDdxM3bXKJnaqkRs6K2Mo5j6GmbIF9Eyx40jZ5+q457RVxvM6ciZEDT5s1wBHWdWoOo+9Q==",
    "requires": {
    "@walletconnect/legacy-types": "^2.0.0",
    "@walletconnect/legacy-utils": "^2.0.0",
    "copy-to-clipboard": "^3.3.3",
    "preact": "^10.12.0",
    "qrcode": "^1.5.1"
    }
    },
    "@walletconnect/legacy-provider": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/@walletconnect/legacy-provider/-/legacy-provider-2.0.0.tgz",
    "integrity": "sha512-A8xPebMI1A+50HbWwTpFCbwP7G+1NGKdTKyg8BUUg3h3Y9JucpC1W6w/x0v1Xw7qFEqQnz74LoIN/A3ytH9xrQ==",
    "requires": {
    "@walletconnect/jsonrpc-http-connection": "^1.0.4",
    "@walletconnect/jsonrpc-provider": "^1.0.6",
    "@walletconnect/legacy-client": "^2.0.0",
    "@walletconnect/legacy-modal": "^2.0.0",
    "@walletconnect/legacy-types": "^2.0.0",
    "@walletconnect/legacy-utils": "^2.0.0"
    }
    },
    "@walletconnect/legacy-types": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/@walletconnect/legacy-types/-/legacy-types-2.0.0.tgz",
    "integrity": "sha512-sOVrA7HUdbI1OwKyPOQU0/DdvTSVFlsXWpAk2K2WvP2erTkBWPMTJq6cv2BmKdoJ3p6gLApT7sd+jHi3OF71uw==",
    "requires": {
    "@walletconnect/jsonrpc-types": "^1.0.2"
    }
    },
    "@walletconnect/legacy-utils": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/@walletconnect/legacy-utils/-/legacy-utils-2.0.0.tgz",
    "integrity": "sha512-CPWxSVVXw0kgNCxvU126g4GiV3mzXmC8IPJ15twE46aJ1FX+RHEIfAzFMFz2F2+fEhBxL63A7dwNQKDXorRPcQ==",
    "requires": {
    "@walletconnect/encoding": "^1.0.2",
    "@walletconnect/jsonrpc-utils": "^1.0.4",
    "@walletconnect/legacy-types": "^2.0.0",
    "@walletconnect/safe-json": "^1.0.1",
    "@walletconnect/window-getters": "^1.0.1",
    "@walletconnect/window-metadata": "^1.0.1",
    "detect-browser": "^5.3.0",
    "query-string": "^6.13.5"
    }
    },
    "@walletconnect/logger": {
    "version": "2.0.1",
    "resolved": "https://registry.npmjs.org/@walletconnect/logger/-/logger-2.0.1.tgz",
    "integrity": "sha512-SsTKdsgWm+oDTBeNE/zHxxr5eJfZmE9/5yp/Ku+zJtcTAjELb3DXueWkDXmE9h8uHIbJzIb5wj5lPdzyrjT6hQ==",
    "requires": {
    "pino": "7.11.0",
    "tslib": "1.14.1"
    },
    "dependencies": {
    "tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    }
    }
    },
    "@walletconnect/modal": {
    "version": "2.6.2",
    "resolved": "https://registry.npmjs.org/@walletconnect/modal/-/modal-2.6.2.tgz",
    "integrity": "sha512-eFopgKi8AjKf/0U4SemvcYw9zlLpx9njVN8sf6DAkowC2Md0gPU/UNEbH1Wwj407pEKnEds98pKWib1NN1ACoA==",
    "requires": {
    "@walletconnect/modal-core": "2.6.2",
    "@walletconnect/modal-ui": "2.6.2"
    }
    },
    "@walletconnect/modal-core": {
    "version": "2.6.2",
    "resolved": "https://registry.npmjs.org/@walletconnect/modal-core/-/modal-core-2.6.2.tgz",
    "integrity": "sha512-cv8ibvdOJQv2B+nyxP9IIFdxvQznMz8OOr/oR/AaUZym4hjXNL/l1a2UlSQBXrVjo3xxbouMxLb3kBsHoYP2CA==",
    "requires": {
    "valtio": "1.11.2"
    }
    },
    "@walletconnect/modal-ui": {
    "version": "2.6.2",
    "resolved": "https://registry.npmjs.org/@walletconnect/modal-ui/-/modal-ui-2.6.2.tgz",
    "integrity": "sha512-rbdstM1HPGvr7jprQkyPggX7rP4XiCG85ZA+zWBEX0dVQg8PpAgRUqpeub4xQKDgY7pY/xLRXSiCVdWGqvG2HA==",
    "requires": {
    "@walletconnect/modal-core": "2.6.2",
    "lit": "2.8.0",
    "motion": "10.16.2",
    "qrcode": "1.5.3"
    }
    },
    "@walletconnect/randombytes": {
    "version": "1.0.3",
    "resolved": "https://registry.npmjs.org/@walletconnect/randombytes/-/randombytes-1.0.3.tgz",
    "integrity": "sha512-35lpzxcHFbTN3ABefC9W+uBpNZl1GC4Wpx0ed30gibfO/y9oLdy1NznbV96HARQKSBV9J9M/rrtIvf6a23jfYw==",
    "requires": {
    "@walletconnect/encoding": "^1.0.2",
    "@walletconnect/environment": "^1.0.1",
    "randombytes": "^2.1.0",
    "tslib": "1.14.1"
    },
    "dependencies": {
    "tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    }
    }
    },
    "@walletconnect/relay-api": {
    "version": "1.0.9",
    "resolved": "https://registry.npmjs.org/@walletconnect/relay-api/-/relay-api-1.0.9.tgz",
    "integrity": "sha512-Q3+rylJOqRkO1D9Su0DPE3mmznbAalYapJ9qmzDgK28mYF9alcP3UwG/og5V7l7CFOqzCLi7B8BvcBUrpDj0Rg==",
    "requires": {
    "@walletconnect/jsonrpc-types": "^1.0.2",
    "tslib": "1.14.1"
    },
    "dependencies": {
    "tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    }
    }
    },
    "@walletconnect/relay-auth": {
    "version": "1.0.4",
    "resolved": "https://registry.npmjs.org/@walletconnect/relay-auth/-/relay-auth-1.0.4.tgz",
    "integrity": "sha512-kKJcS6+WxYq5kshpPaxGHdwf5y98ZwbfuS4EE/NkQzqrDFm5Cj+dP8LofzWvjrrLkZq7Afy7WrQMXdLy8Sx7HQ==",
    "requires": {
    "@stablelib/ed25519": "^1.0.2",
    "@stablelib/random": "^1.0.1",
    "@walletconnect/safe-json": "^1.0.1",
    "@walletconnect/time": "^1.0.2",
    "tslib": "1.14.1",
    "uint8arrays": "^3.0.0"
    },
    "dependencies": {
    "tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    }
    }
    },
    "@walletconnect/safe-json": {
    "version": "1.0.2",
    "resolved": "https://registry.npmjs.org/@walletconnect/safe-json/-/safe-json-1.0.2.tgz",
    "integrity": "sha512-Ogb7I27kZ3LPC3ibn8ldyUr5544t3/STow9+lzz7Sfo808YD7SBWk7SAsdBFlYgP2zDRy2hS3sKRcuSRM0OTmA==",
    "requires": {
    "tslib": "1.14.1"
    },
    "dependencies": {
    "tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    }
    }
    },
    "@walletconnect/sign-client": {
    "version": "2.10.1",
    "resolved": "https://registry.npmjs.org/@walletconnect/sign-client/-/sign-client-2.10.1.tgz",
    "integrity": "sha512-iG3eJGi1yXeG3xGeVSSMf8wDFyx239B0prLQfy1uYDtYFb2ynnH/09oqAZyKn96W5nfQzUgM2Mz157PVdloH3Q==",
    "requires": {
    "@walletconnect/core": "2.10.1",
    "@walletconnect/events": "^1.0.1",
    "@walletconnect/heartbeat": "1.2.1",
    "@walletconnect/jsonrpc-utils": "1.0.8",
    "@walletconnect/logger": "^2.0.1",
    "@walletconnect/time": "^1.0.2",
    "@walletconnect/types": "2.10.1",
    "@walletconnect/utils": "2.10.1",
    "events": "^3.3.0"
    }
    },
    "@walletconnect/time": {
    "version": "1.0.2",
    "resolved": "https://registry.npmjs.org/@walletconnect/time/-/time-1.0.2.tgz",
    "integrity": "sha512-uzdd9woDcJ1AaBZRhqy5rNC9laqWGErfc4dxA9a87mPdKOgWMD85mcFo9dIYIts/Jwocfwn07EC6EzclKubk/g==",
    "requires": {
    "tslib": "1.14.1"
    },
    "dependencies": {
    "tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    }
    }
    },
    "@walletconnect/types": {
    "version": "2.10.1",
    "resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-2.10.1.tgz",
    "integrity": "sha512-7pccAhajQdiH2kYywjE1XI64IqRI+4ioyGy0wvz8d0UFQ/DSG3MLKR8jHf5aTOafQQ/HRLz6xvlzN4a7gIVkUQ==",
    "requires": {
    "@walletconnect/events": "^1.0.1",
    "@walletconnect/heartbeat": "1.2.1",
    "@walletconnect/jsonrpc-types": "1.0.3",
    "@walletconnect/keyvaluestorage": "^1.0.2",
    "@walletconnect/logger": "^2.0.1",
    "events": "^3.3.0"
    }
    },
    "@walletconnect/universal-provider": {
    "version": "2.10.1",
    "resolved": "https://registry.npmjs.org/@walletconnect/universal-provider/-/universal-provider-2.10.1.tgz",
    "integrity": "sha512-81QxTH/X4dRoYCz0U9iOrBYOcj7N897ONcB57wsGhEkV7Rc9htmWJq2CzeOuxvVZ+pNZkE+/aw9LrhizO1Ltxg==",
    "requires": {
    "@walletconnect/jsonrpc-http-connection": "^1.0.7",
    "@walletconnect/jsonrpc-provider": "1.0.13",
    "@walletconnect/jsonrpc-types": "^1.0.2",
    "@walletconnect/jsonrpc-utils": "^1.0.7",
    "@walletconnect/logger": "^2.0.1",
    "@walletconnect/sign-client": "2.10.1",
    "@walletconnect/types": "2.10.1",
    "@walletconnect/utils": "2.10.1",
    "events": "^3.3.0"
    }
    },
    "@walletconnect/utils": {
    "version": "2.10.1",
    "resolved": "https://registry.npmjs.org/@walletconnect/utils/-/utils-2.10.1.tgz",
    "integrity": "sha512-DM0dKgm9O58l7VqJEyV2OVv16XRePhDAReI23let6WdW1dSpw/Y/A89Lp99ZJOjLm2FxyblMRF3YRaZtHwBffw==",
    "requires": {
    "@stablelib/chacha20poly1305": "1.0.1",
    "@stablelib/hkdf": "1.0.1",
    "@stablelib/random": "^1.0.2",
    "@stablelib/sha256": "1.0.1",
    "@stablelib/x25519": "^1.0.3",
    "@walletconnect/relay-api": "^1.0.9",
    "@walletconnect/safe-json": "^1.0.2",
    "@walletconnect/time": "^1.0.2",
    "@walletconnect/types": "2.10.1",
    "@walletconnect/window-getters": "^1.0.1",
    "@walletconnect/window-metadata": "^1.0.1",
    "detect-browser": "5.3.0",
    "query-string": "7.1.3",
    "uint8arrays": "^3.1.0"
    },
    "dependencies": {
    "query-string": {
    "version": "7.1.3",
    "resolved": "https://registry.npmjs.org/query-string/-/query-string-7.1.3.tgz",
    "integrity": "sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==",
    "requires": {
    "decode-uri-component": "^0.2.2",
    "filter-obj": "^1.1.0",
    "split-on-first": "^1.0.0",
    "strict-uri-encode": "^2.0.0"
    }
    }
    }
    },
    "@walletconnect/window-getters": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/@walletconnect/window-getters/-/window-getters-1.0.1.tgz",
    "integrity": "sha512-vHp+HqzGxORPAN8gY03qnbTMnhqIwjeRJNOMOAzePRg4xVEEE2WvYsI9G2NMjOknA8hnuYbU3/hwLcKbjhc8+Q==",
    "requires": {
    "tslib": "1.14.1"
    },
    "dependencies": {
    "tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    }
    }
    },
    "@walletconnect/window-metadata": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/@walletconnect/window-metadata/-/window-metadata-1.0.1.tgz",
    "integrity": "sha512-9koTqyGrM2cqFRW517BPY/iEtUDx2r1+Pwwu5m7sJ7ka79wi3EyqhqcICk/yDmv6jAS1rjKgTKXlEhanYjijcA==",
    "requires": {
    "@walletconnect/window-getters": "^1.0.1",
    "tslib": "1.14.1"
    },
    "dependencies": {
    "tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    }
    }
    },
    "@web3modal/core": {
    "version": "3.0.2",
    "resolved": "https://registry.npmjs.org/@web3modal/core/-/core-3.0.2.tgz",
    "integrity": "sha512-Dr7ikLOgUPz3W66mCqu48Ca/GIn26Dj1CaRxIbKJzcHfMiumGGYgZRIElxAkGh9qaEMW+EylC3fIE8sPHFA1cg==",
    "requires": {
    "valtio": "1.11.2"
    }
    },
    "@web3modal/polyfills": {
    "version": "3.0.2",
    "resolved": "https://registry.npmjs.org/@web3modal/polyfills/-/polyfills-3.0.2.tgz",
    "integrity": "sha512-Br1TfkqYPLdscwJx8ZBQUMZPJ1twdNygtJrdGwU5pcrjExxN80fIrBtfMuAu0yBB/4nlNVG8tw91FZJXUKK8ew==",
    "requires": {
    "buffer": "6.0.3"
    }
    },
    "@web3modal/scaffold": {
    "version": "3.0.2",
    "resolved": "https://registry.npmjs.org/@web3modal/scaffold/-/scaffold-3.0.2.tgz",
    "integrity": "sha512-pJwm5aooVGf5CEEgypuveTicbs+a7FNwm0ru98KiJ7XUivprr2Ufu0ZXVX/n3/NQcu7SDx9UnuPUTK1HeQQnrw==",
    "requires": {
    "@web3modal/core": "3.0.2",
    "@web3modal/ui": "3.0.2",
    "lit": "2.8.0"
    }
    },
    "@web3modal/ui": {
    "version": "3.0.2",
    "resolved": "https://registry.npmjs.org/@web3modal/ui/-/ui-3.0.2.tgz",
    "integrity": "sha512-xGzbYdmzy6az6FmiJ507Hh1nBjD1llaudPlpA6Gipm/4XikSCNe3wOdH0+gQaKRqvGTFaoVrtej1Vgnoil64Og==",
    "requires": {
    "lit": "2.8.0",
    "qrcode": "1.5.3"
    }
    },
    "@web3modal/wagmi": {
    "version": "3.0.2",
    "resolved": "https://registry.npmjs.org/@web3modal/wagmi/-/wagmi-3.0.2.tgz",
    "integrity": "sha512-hYpfbAbnt/dZkjOyJLBMyk0NKip3qW8Yj8suSDm6mf01+GBYWVw2BDYBtx5C0biQxSoxR7kWu4BGzA0qAQNPJQ==",
    "requires": {
    "@web3modal/polyfills": "3.0.2",
    "@web3modal/scaffold": "3.0.2",
    "react": ">=17",
    "react-dom": ">=17",
    "vue": ">=3"
    }
    },
    "abbrev": {
    "version": "1.1.1",
    "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
    "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="
    },
    "abitype": {
    "version": "0.8.7",
    "resolved": "https://registry.npmjs.org/abitype/-/abitype-0.8.7.tgz",
    "integrity": "sha512-wQ7hV8Yg/yKmGyFpqrNZufCxbszDe5es4AZGYPBitocfSqXtjrTG9JMWFcc4N30ukl2ve48aBTwt7NJxVQdU3w==",
    "requires": {}
    },
    "abstract-leveldown": {
    "version": "6.3.0",
    "resolved": "https://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-6.3.0.tgz",
    "integrity": "sha512-TU5nlYgta8YrBMNpc9FwQzRbiXsj49gsALsXadbGHt9CROPzX5fB0rWDR5mtdpOOKa5XqRFpbj1QroPAoPzVjQ==",
    "requires": {
    "buffer": "^5.5.0",
    "immediate": "^3.2.3",
    "level-concat-iterator": "~2.0.0",
    "level-supports": "~1.0.0",
    "xtend": "~4.0.0"
    },
    "dependencies": {
    "buffer": {
    "version": "5.7.1",
    "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
    "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
    "requires": {
    "base64-js": "^1.3.1",
    "ieee754": "^1.1.13"
    }
    }
    }
    },
    "aes-js": {
    "version": "4.0.0-beta.5",
    "resolved": "https://registry.npmjs.org/aes-js/-/aes-js-4.0.0-beta.5.tgz",
    "integrity": "sha512-G965FqalsNyrPqgEGON7nIx1e/OVENSgiEIzyC63haUMuvNnwIgIjMs52hlTCKhkBny7A2ORNlfY9Zu+jmGk1Q=="
    },
    "agent-base": {
    "version": "6.0.2",
    "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
    "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
    "requires": {
    "debug": "4"
    }
    },
    "agentkeepalive": {
    "version": "4.5.0",
    "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.5.0.tgz",
    "integrity": "sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==",
    "requires": {
    "humanize-ms": "^1.2.1"
    }
    },
    "aggregate-error": {
    "version": "3.1.0",
    "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz",
    "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==",
    "requires": {
    "clean-stack": "^2.0.0",
    "indent-string": "^4.0.0"
    }
    },
    "algo-msgpack-with-bigint": {
    "version": "2.1.1",
    "resolved": "https://registry.npmjs.org/algo-msgpack-with-bigint/-/algo-msgpack-with-bigint-2.1.1.tgz",
    "integrity": "sha512-F1tGh056XczEaEAqu7s+hlZUDWwOBT70Eq0lfMpBP2YguSQVyxRbprLq5rELXKQOyOaixTWYhMeMQMzP0U5FoQ=="
    },
    "algosdk": {
    "version": "2.6.0",
    "resolved": "https://registry.npmjs.org/algosdk/-/algosdk-2.6.0.tgz",
    "integrity": "sha512-xYSb2xPG4nLPlJvqjA4ebR0s++YrjZK1+UfaEV84u2HkIwuRhEUmryDPcAuLIfTp3eyY99v/FduOK02K2Hnu8Q==",
    "requires": {
    "algo-msgpack-with-bigint": "^2.1.1",
    "buffer": "^6.0.3",
    "cross-fetch": "^4.0.0",
    "hi-base32": "^0.5.1",
    "js-sha256": "^0.9.0",
    "js-sha3": "^0.8.0",
    "js-sha512": "^0.8.0",
    "json-bigint": "^1.0.0",
    "tweetnacl": "^1.0.3",
    "vlq": "^2.0.4"
    }
    },
    "ansi-align": {
    "version": "3.0.1",
    "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz",
    "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==",
    "requires": {
    "string-width": "^4.1.0"
    }
    },
    "ansi-regex": {
    "version": "6.0.1",
    "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz",
    "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA=="
    },
    "ansi-styles": {
    "version": "4.3.0",
    "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
    "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
    "requires": {
    "color-convert": "^2.0.1"
    }
    },
    "aproba": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz",
    "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ=="
    },
    "are-we-there-yet": {
    "version": "3.0.1",
    "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz",
    "integrity": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==",
    "requires": {
    "delegates": "^1.0.0",
    "readable-stream": "^3.6.0"
    }
    },
    "argparse": {
    "version": "2.0.1",
    "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
    "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="
    },
    "array-union": {
    "version": "2.1.0",
    "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
    "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw=="
    },
    "asn1.js": {
    "version": "5.4.1",
    "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz",
    "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==",
    "requires": {
    "bn.js": "^4.0.0",
    "inherits": "^2.0.1",
    "minimalistic-assert": "^1.0.0",
    "safer-buffer": "^2.1.0"
    }
    },
    "async-mutex": {
    "version": "0.2.6",
    "resolved": "https://registry.npmjs.org/async-mutex/-/async-mutex-0.2.6.tgz",
    "integrity": "sha512-Hs4R+4SPgamu6rSGW8C7cV9gaWUKEHykfzCCvIRuaVv636Ju10ZdeUbvb4TBEW0INuq2DHZqXbK4Nd3yG4RaRw==",
    "requires": {
    "tslib": "^2.0.0"
    }
    },
    "asynckit": {
    "version": "0.4.0",
    "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
    "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="
    },
    "atomic-sleep": {
    "version": "1.0.0",
    "resolved": "https://registry.npmjs.org/atomic-sleep/-/atomic-sleep-1.0.0.tgz",
    "integrity": "sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ=="
    },
    "available-typed-arrays": {
    "version": "1.0.5",
    "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz",
    "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw=="
    },
    "axios": {
    "version": "1.4.0",
    "resolved": "https://registry.npmjs.org/axios/-/axios-1.4.0.tgz",
    "integrity": "sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA==",
    "requires": {
    "follow-redirects": "^1.15.0",
    "form-data": "^4.0.0",
    "proxy-from-env": "^1.1.0"
    }
    },
    "balanced-match": {
    "version": "1.0.2",
    "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
    "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
    },
    "base-x": {
    "version": "3.0.9",
    "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz",
    "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==",
    "requires": {
    "safe-buffer": "^5.0.1"
    }
    },
    "base64-js": {
    "version": "1.5.1",
    "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
    "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="
    },
    "bech32": {
    "version": "1.1.4",
    "resolved": "https://registry.npmjs.org/bech32/-/bech32-1.1.4.tgz",
    "integrity": "sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ=="
    },
    "bigint-buffer": {
    "version": "1.1.5",
    "resolved": "https://registry.npmjs.org/bigint-buffer/-/bigint-buffer-1.1.5.tgz",
    "integrity": "sha512-trfYco6AoZ+rKhKnxA0hgX0HAbVP/s808/EuDSe2JDzUnCp/xAsli35Orvk67UrTEcwuxZqYZDmfA2RXJgxVvA==",
    "requires": {
    "bindings": "^1.3.0"
    }
    },
    "bignumber.js": {
    "version": "9.1.2",
    "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.1.2.tgz",
    "integrity": "sha512-2/mKyZH9K85bzOEfhXDBFZTGd1CTs+5IHpeFQo9luiBG7hghdC851Pj2WAhb6E3R6b9tZj/XKhbg4fum+Kepug=="
    },
    "bind-decorator": {
    "version": "1.0.11",
    "resolved": "https://registry.npmjs.org/bind-decorator/-/bind-decorator-1.0.11.tgz",
    "integrity": "sha512-yzkH0uog6Vv/vQ9+rhSKxecnqGUZHYncg7qS7voz3Q76+TAi1SGiOKk2mlOvusQnFz9Dc4BC/NMkeXu11YgjJg=="
    },
    "bindings": {
    "version": "1.5.0",
    "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz",
    "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==",
    "requires": {
    "file-uri-to-path": "1.0.0"
    }
    },
    "blakejs": {
    "version": "1.2.1",
    "resolved": "https://registry.npmjs.org/blakejs/-/blakejs-1.2.1.tgz",
    "integrity": "sha512-QXUSXI3QVc/gJME0dBpXrag1kbzOqCjCX8/b54ntNyW6sjtoqxqRk3LTmXzaJoh71zMsDCjM+47jS7XiwN/+fQ=="
    },
    "bn.js": {
    "version": "4.12.0",
    "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz",
    "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA=="
    },
    "borsh": {
    "version": "0.7.0",
    "resolved": "https://registry.npmjs.org/borsh/-/borsh-0.7.0.tgz",
    "integrity": "sha512-CLCsZGIBCFnPtkNnieW/a8wmreDmfUtjU2m9yHrzPXIlNbqVs0AQrSatSG6vdNYUqdc83tkQi2eHfF98ubzQLA==",
    "requires": {
    "bn.js": "^5.2.0",
    "bs58": "^4.0.0",
    "text-encoding-utf-8": "^1.0.2"
    },
    "dependencies": {
    "bn.js": {
    "version": "5.2.1",
    "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz",
    "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ=="
    }
    }
    },
    "boxen": {
    "version": "7.1.1",
    "resolved": "https://registry.npmjs.org/boxen/-/boxen-7.1.1.tgz",
    "integrity": "sha512-2hCgjEmP8YLWQ130n2FerGv7rYpfBmnmp9Uy2Le1vge6X3gZIfSmEzP5QTDElFxcvVcXlEn8Aq6MU/PZygIOog==",
    "requires": {
    "ansi-align": "^3.0.1",
    "camelcase": "^7.0.1",
    "chalk": "^5.2.0",
    "cli-boxes": "^3.0.0",
    "string-width": "^5.1.2",
    "type-fest": "^2.13.0",
    "widest-line": "^4.0.1",
    "wrap-ansi": "^8.1.0"
    },
    "dependencies": {
    "chalk": {
    "version": "5.3.0",
    "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz",
    "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w=="
    },
    "emoji-regex": {
    "version": "9.2.2",
    "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
    "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="
    },
    "string-width": {
    "version": "5.1.2",
    "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
    "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
    "requires": {
    "eastasianwidth": "^0.2.0",
    "emoji-regex": "^9.2.2",
    "strip-ansi": "^7.0.1"
    }
    }
    }
    },
    "brace-expansion": {
    "version": "2.0.1",
    "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
    "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
    "requires": {
    "balanced-match": "^1.0.0"
    }
    },
    "braces": {
    "version": "3.0.2",
    "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
    "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
    "requires": {
    "fill-range": "^7.0.1"
    }
    },
    "brorand": {
    "version": "1.1.0",
    "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz",
    "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w=="
    },
    "browserify-aes": {
    "version": "1.2.0",
    "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz",
    "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==",
    "requires": {
    "buffer-xor": "^1.0.3",
    "cipher-base": "^1.0.0",
    "create-hash": "^1.1.0",
    "evp_bytestokey": "^1.0.3",
    "inherits": "^2.0.1",
    "safe-buffer": "^5.0.1"
    }
    },
    "bs58": {
    "version": "4.0.1",
    "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz",
    "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==",
    "requires": {
    "base-x": "^3.0.2"
    }
    },
    "bs58check": {
    "version": "2.1.2",
    "resolved": "https://registry.npmjs.org/bs58check/-/bs58check-2.1.2.tgz",
    "integrity": "sha512-0TS1jicxdU09dwJMNZtVAfzPi6Q6QeN0pM1Fkzrjn+XYHvzMKPU3pHVpva+769iNVSfIYWf7LJ6WR+BuuMf8cA==",
    "requires": {
    "bs58": "^4.0.0",
    "create-hash": "^1.1.0",
    "safe-buffer": "^5.1.2"
    }
    },
    "buffer": {
    "version": "6.0.3",
    "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz",
    "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==",
    "requires": {
    "base64-js": "^1.3.1",
    "ieee754": "^1.2.1"
    }
    },
    "buffer-from": {
    "version": "1.1.2",
    "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
    "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ=="
    },
    "buffer-xor": {
    "version": "1.0.3",
    "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz",
    "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ=="
    },
    "bufferutil": {
    "version": "4.0.7",
    "resolved": "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.7.tgz",
    "integrity": "sha512-kukuqc39WOHtdxtw4UScxF/WVnMFVSQVKhtx3AjZJzhd0RGZZldcrfSEbVsWWe6KNH253574cq5F+wpv0G9pJw==",
    "optional": true,
    "requires": {
    "node-gyp-build": "^4.3.0"
    }
    },
    "builtins": {
    "version": "5.0.1",
    "resolved": "https://registry.npmjs.org/builtins/-/builtins-5.0.1.tgz",
    "integrity": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==",
    "requires": {
    "semver": "^7.0.0"
    }
    },
    "cacache": {
    "version": "17.1.4",
    "resolved": "https://registry.npmjs.org/cacache/-/cacache-17.1.4.tgz",
    "integrity": "sha512-/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A==",
    "requires": {
    "@npmcli/fs": "^3.1.0",
    "fs-minipass": "^3.0.0",
    "glob": "^10.2.2",
    "lru-cache": "^7.7.1",
    "minipass": "^7.0.3",
    "minipass-collect": "^1.0.2",
    "minipass-flush": "^1.0.5",
    "minipass-pipeline": "^1.2.4",
    "p-map": "^4.0.0",
    "ssri": "^10.0.0",
    "tar": "^6.1.11",
    "unique-filename": "^3.0.0"
    },
    "dependencies": {
    "minipass": {
    "version": "7.0.3",
    "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.3.tgz",
    "integrity": "sha512-LhbbwCfz3vsb12j/WkWQPZfKTsgqIe1Nf/ti1pKjYESGLHIVjWU96G9/ljLH4F9mWNVhlQOm0VySdAWzf05dpg=="
    }
    }
    },
    "cacheable-lookup": {
    "version": "7.0.0",
    "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-7.0.0.tgz",
    "integrity": "sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w=="
    },
    "cacheable-request": {
    "version": "10.2.13",
    "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.13.tgz",
    "integrity": "sha512-3SD4rrMu1msNGEtNSt8Od6enwdo//U9s4ykmXfA2TD58kcLkCobtCDiby7kNyj7a/Q7lz/mAesAFI54rTdnvBA==",
    "requires": {
    "@types/http-cache-semantics": "^4.0.1",
    "get-stream": "^6.0.1",
    "http-cache-semantics": "^4.1.1",
    "keyv": "^4.5.3",
    "mimic-response": "^4.0.0",
    "normalize-url": "^8.0.0",
    "responselike": "^3.0.0"
    }
    },
    "call-bind": {
    "version": "1.0.2",
    "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
    "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
    "requires": {
    "function-bind": "^1.1.1",
    "get-intrinsic": "^1.0.2"
    }
    },
    "camelcase": {
    "version": "7.0.1",
    "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-7.0.1.tgz",
    "integrity": "sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw=="
    },
    "castable-video": {
    "version": "0.5.2",
    "resolved": "https://registry.npmjs.org/castable-video/-/castable-video-0.5.2.tgz",
    "integrity": "sha512-eP19NY8AF9G+Xj87R447GMkWuUc0W3DSNx5qOypH/+mr2aaHRONaIK5H4bxMgpXZslZ2vNNvCuVuKi3VdCUGEA=="
    },
    "chalk": {
    "version": "4.1.2",
    "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
    "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
    "dev": true,
    "requires": {
    "ansi-styles": "^4.1.0",
    "supports-color": "^7.1.0"
    }
    },
    "chownr": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz",
    "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ=="
    },
    "ci-info": {
    "version": "3.8.0",
    "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz",
    "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw=="
    },
    "cipher-base": {
    "version": "1.0.4",
    "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz",
    "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==",
    "requires": {
    "inherits": "^2.0.1",
    "safe-buffer": "^5.0.1"
    }
    },
    "clean-stack": {
    "version": "2.2.0",
    "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz",
    "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A=="
    },
    "cli-boxes": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-3.0.0.tgz",
    "integrity": "sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g=="
    },
    "cli-table3": {
    "version": "0.6.3",
    "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.3.tgz",
    "integrity": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==",
    "requires": {
    "@colors/colors": "1.5.0",
    "string-width": "^4.2.0"
    }
    },
    "cliui": {
    "version": "6.0.0",
    "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz",
    "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==",
    "requires": {
    "string-width": "^4.2.0",
    "strip-ansi": "^6.0.0",
    "wrap-ansi": "^6.2.0"
    },
    "dependencies": {
    "ansi-regex": {
    "version": "5.0.1",
    "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
    "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
    },
    "strip-ansi": {
    "version": "6.0.1",
    "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
    "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
    "requires": {
    "ansi-regex": "^5.0.1"
    }
    },
    "wrap-ansi": {
    "version": "6.2.0",
    "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
    "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
    "requires": {
    "ansi-styles": "^4.0.0",
    "string-width": "^4.1.0",
    "strip-ansi": "^6.0.0"
    }
    }
    }
    },
    "clsx": {
    "version": "1.2.1",
    "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz",
    "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg=="
    },
    "color-convert": {
    "version": "2.0.1",
    "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
    "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
    "requires": {
    "color-name": "~1.1.4"
    }
    },
    "color-name": {
    "version": "1.1.4",
    "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
    "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
    },
    "color-support": {
    "version": "1.1.3",
    "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz",
    "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg=="
    },
    "combined-stream": {
    "version": "1.0.8",
    "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
    "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
    "requires": {
    "delayed-stream": "~1.0.0"
    }
    },
    "commander": {
    "version": "10.0.1",
    "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz",
    "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug=="
    },
    "concat-map": {
    "version": "0.0.1",
    "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
    "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="
    },
    "config-chain": {
    "version": "1.1.13",
    "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz",
    "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==",
    "requires": {
    "ini": "^1.3.4",
    "proto-list": "~1.2.1"
    },
    "dependencies": {
    "ini": {
    "version": "1.3.8",
    "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
    "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="
    }
    }
    },
    "configstore": {
    "version": "6.0.0",
    "resolved": "https://registry.npmjs.org/configstore/-/configstore-6.0.0.tgz",
    "integrity": "sha512-cD31W1v3GqUlQvbBCGcXmd2Nj9SvLDOP1oQ0YFuLETufzSPaKp11rYBsSOm7rCsW3OnIRAFM3OxRhceaXNYHkA==",
    "requires": {
    "dot-prop": "^6.0.1",
    "graceful-fs": "^4.2.6",
    "unique-string": "^3.0.0",
    "write-file-atomic": "^3.0.3",
    "xdg-basedir": "^5.0.1"
    }
    },
    "console-control-strings": {
    "version": "1.1.0",
    "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz",
    "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ=="
    },
    "copy-to-clipboard": {
    "version": "3.3.3",
    "resolved": "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.3.3.tgz",
    "integrity": "sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==",
    "requires": {
    "toggle-selection": "^1.0.6"
    }
    },
    "core-js": {
    "version": "3.27.2",
    "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.27.2.tgz",
    "integrity": "sha512-9ashVQskuh5AZEZ1JdQWp1GqSoC1e1G87MzRqg2gIfVAQ7Qn9K+uFj8EcniUFA4P2NLZfV+TOlX1SzoKfo+s7w=="
    },
    "crc-32": {
    "version": "1.2.2",
    "resolved": "https://registry.npmjs.org/crc-32/-/crc-32-1.2.2.tgz",
    "integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ=="
    },
    "create-hash": {
    "version": "1.2.0",
    "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz",
    "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==",
    "requires": {
    "cipher-base": "^1.0.1",
    "inherits": "^2.0.1",
    "md5.js": "^1.3.4",
    "ripemd160": "^2.0.1",
    "sha.js": "^2.4.0"
    }
    },
    "create-hmac": {
    "version": "1.1.7",
    "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz",
    "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==",
    "requires": {
    "cipher-base": "^1.0.3",
    "create-hash": "^1.1.0",
    "inherits": "^2.0.1",
    "ripemd160": "^2.0.0",
    "safe-buffer": "^5.0.1",
    "sha.js": "^2.4.8"
    }
    },
    "cross-fetch": {
    "version": "4.0.0",
    "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-4.0.0.tgz",
    "integrity": "sha512-e4a5N8lVvuLgAWgnCrLr2PP0YyDOTHa9H/Rj54dirp61qXnNq46m82bRhNqIA5VccJtWBvPTFRV3TtvHUKPB1g==",
    "requires": {
    "node-fetch": "^2.6.12"
    }
    },
    "cross-spawn": {
    "version": "7.0.3",
    "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
    "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
    "requires": {
    "path-key": "^3.1.0",
    "shebang-command": "^2.0.0",
    "which": "^2.0.1"
    }
    },
    "crypto-random-string": {
    "version": "4.0.0",
    "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-4.0.0.tgz",
    "integrity": "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==",
    "requires": {
    "type-fest": "^1.0.1"
    },
    "dependencies": {
    "type-fest": {
    "version": "1.4.0",
    "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz",
    "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA=="
    }
    }
    },
    "csstype": {
    "version": "3.1.2",
    "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz",
    "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==",
    "optional": true
    },
    "custom-event-polyfill": {
    "version": "1.0.7",
    "resolved": "https://registry.npmjs.org/custom-event-polyfill/-/custom-event-polyfill-1.0.7.tgz",
    "integrity": "sha512-TDDkd5DkaZxZFM8p+1I3yAlvM3rSr1wbrOliG4yJiwinMZN8z/iGL7BTlDkrJcYTmgUSb4ywVCc3ZaUtOtC76w=="
    },
    "custom-media-element": {
    "version": "0.2.0",
    "resolved": "https://registry.npmjs.org/custom-media-element/-/custom-media-element-0.2.0.tgz",
    "integrity": "sha512-N++UzR1COFip4DrtZkS99VDCcQvVCJmbqI7qaxZtHWKdAv/RUYIOnmJbP/HHk2un0PjvtFNKHfNLiFsd9BmnMQ=="
    },
    "debug": {
    "version": "4.3.4",
    "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
    "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
    "requires": {
    "ms": "2.1.2"
    }
    },
    "decamelize": {
    "version": "1.2.0",
    "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
    "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA=="
    },
    "decode-uri-component": {
    "version": "0.2.2",
    "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz",
    "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ=="
    },
    "decompress-response": {
    "version": "6.0.0",
    "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz",
    "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==",
    "requires": {
    "mimic-response": "^3.1.0"
    },
    "dependencies": {
    "mimic-response": {
    "version": "3.1.0",
    "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz",
    "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ=="
    }
    }
    },
    "deep-extend": {
    "version": "0.6.0",
    "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz",
    "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA=="
    },
    "defer-to-connect": {
    "version": "2.0.1",
    "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz",
    "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg=="
    },
    "deferred-leveldown": {
    "version": "5.3.0",
    "resolved": "https://registry.npmjs.org/deferred-leveldown/-/deferred-leveldown-5.3.0.tgz",
    "integrity": "sha512-a59VOT+oDy7vtAbLRCZwWgxu2BaCfd5Hk7wxJd48ei7I+nsg8Orlb9CLG0PMZienk9BSUKgeAqkO2+Lw+1+Ukw==",
    "requires": {
    "abstract-leveldown": "~6.2.1",
    "inherits": "^2.0.3"
    },
    "dependencies": {
    "abstract-leveldown": {
    "version": "6.2.3",
    "resolved": "https://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-6.2.3.tgz",
    "integrity": "sha512-BsLm5vFMRUrrLeCcRc+G0t2qOaTzpoJQLOubq2XM72eNpjF5UdU5o/5NvlNhx95XHcAvcl8OMXr4mlg/fRgUXQ==",
    "requires": {
    "buffer": "^5.5.0",
    "immediate": "^3.2.3",
    "level-concat-iterator": "~2.0.0",
    "level-supports": "~1.0.0",
    "xtend": "~4.0.0"
    }
    },
    "buffer": {
    "version": "5.7.1",
    "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
    "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
    "requires": {
    "base64-js": "^1.3.1",
    "ieee754": "^1.1.13"
    }
    }
    }
    },
    "delay": {
    "version": "5.0.0",
    "resolved": "https://registry.npmjs.org/delay/-/delay-5.0.0.tgz",
    "integrity": "sha512-ReEBKkIfe4ya47wlPYf/gu5ib6yUG0/Aez0JQZQz94kiWtRQvZIQbTiehsnwHvLSWJnQdhVeqYue7Id1dKr0qw=="
    },
    "delayed-stream": {
    "version": "1.0.0",
    "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
    "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ=="
    },
    "delegates": {
    "version": "1.0.0",
    "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz",
    "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ=="
    },
    "detect-browser": {
    "version": "5.3.0",
    "resolved": "https://registry.npmjs.org/detect-browser/-/detect-browser-5.3.0.tgz",
    "integrity": "sha512-53rsFbGdwMwlF7qvCt0ypLM5V5/Mbl0szB7GPN8y9NCcbknYOeVVXdrXEq+90IwAfrrzt6Hd+u2E2ntakICU8w=="
    },
    "dijkstrajs": {
    "version": "1.0.3",
    "resolved": "https://registry.npmjs.org/dijkstrajs/-/dijkstrajs-1.0.3.tgz",
    "integrity": "sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA=="
    },
    "dir-glob": {
    "version": "3.0.1",
    "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
    "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",
    "requires": {
    "path-type": "^4.0.0"
    }
    },
    "dot-prop": {
    "version": "6.0.1",
    "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-6.0.1.tgz",
    "integrity": "sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==",
    "requires": {
    "is-obj": "^2.0.0"
    }
    },
    "duplexify": {
    "version": "4.1.2",
    "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-4.1.2.tgz",
    "integrity": "sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw==",
    "requires": {
    "end-of-stream": "^1.4.1",
    "inherits": "^2.0.3",
    "readable-stream": "^3.1.1",
    "stream-shift": "^1.0.0"
    }
    },
    "eastasianwidth": {
    "version": "0.2.0",
    "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
    "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA=="
    },
    "elliptic": {
    "version": "6.5.4",
    "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz",
    "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==",
    "requires": {
    "bn.js": "^4.11.9",
    "brorand": "^1.1.0",
    "hash.js": "^1.0.0",
    "hmac-drbg": "^1.0.1",
    "inherits": "^2.0.4",
    "minimalistic-assert": "^1.0.1",
    "minimalistic-crypto-utils": "^1.0.1"
    }
    },
    "emoji-regex": {
    "version": "8.0.0",
    "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
    "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
    },
    "encode-utf8": {
    "version": "1.0.3",
    "resolved": "https://registry.npmjs.org/encode-utf8/-/encode-utf8-1.0.3.tgz",
    "integrity": "sha512-ucAnuBEhUK4boH2HjVYG5Q2mQyPorvv0u/ocS+zhdw0S8AlHYY+GOFhP1Gio5z4icpP2ivFSvhtFjQi8+T9ppw=="
    },
    "encoding": {
    "version": "0.1.13",
    "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz",
    "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==",
    "optional": true,
    "requires": {
    "iconv-lite": "^0.6.2"
    }
    },
    "encoding-down": {
    "version": "6.3.0",
    "resolved": "https://registry.npmjs.org/encoding-down/-/encoding-down-6.3.0.tgz",
    "integrity": "sha512-QKrV0iKR6MZVJV08QY0wp1e7vF6QbhnbQhb07bwpEyuz4uZiZgPlEGdkCROuFkUwdxlFaiPIhjyarH1ee/3vhw==",
    "requires": {
    "abstract-leveldown": "^6.2.1",
    "inherits": "^2.0.3",
    "level-codec": "^9.0.0",
    "level-errors": "^2.0.0"
    }
    },
    "end-of-stream": {
    "version": "1.4.4",
    "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz",
    "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==",
    "requires": {
    "once": "^1.4.0"
    }
    },
    "env-paths": {
    "version": "2.2.1",
    "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz",
    "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A=="
    },
    "err-code": {
    "version": "2.0.3",
    "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz",
    "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA=="
    },
    "errno": {
    "version": "0.1.8",
    "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz",
    "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==",
    "requires": {
    "prr": "~1.0.1"
    }
    },
    "es6-promise": {
    "version": "4.2.8",
    "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz",
    "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w=="
    },
    "es6-promisify": {
    "version": "5.0.0",
    "resolved": "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz",
    "integrity": "sha512-C+d6UdsYDk0lMebHNR4S2NybQMMngAOnOwYBQjTOiv0MkoJMP0Myw2mgpDLBcpfCmRLxyFqYhS/CfOENq4SJhQ==",
    "requires": {
    "es6-promise": "^4.0.3"
    }
    },
    "esbuild": {
    "version": "0.18.15",
    "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.15.tgz",
    "integrity": "sha512-3WOOLhrvuTGPRzQPU6waSDWrDTnQriia72McWcn6UCi43GhCHrXH4S59hKMeez+IITmdUuUyvbU9JIp+t3xlPQ==",
    "dev": true,
    "requires": {
    "@esbuild/android-arm": "0.18.15",
    "@esbuild/android-arm64": "0.18.15",
    "@esbuild/android-x64": "0.18.15",
    "@esbuild/darwin-arm64": "0.18.15",
    "@esbuild/darwin-x64": "0.18.15",
    "@esbuild/freebsd-arm64": "0.18.15",
    "@esbuild/freebsd-x64": "0.18.15",
    "@esbuild/linux-arm": "0.18.15",
    "@esbuild/linux-arm64": "0.18.15",
    "@esbuild/linux-ia32": "0.18.15",
    "@esbuild/linux-loong64": "0.18.15",
    "@esbuild/linux-mips64el": "0.18.15",
    "@esbuild/linux-ppc64": "0.18.15",
    "@esbuild/linux-riscv64": "0.18.15",
    "@esbuild/linux-s390x": "0.18.15",
    "@esbuild/linux-x64": "0.18.15",
    "@esbuild/netbsd-x64": "0.18.15",
    "@esbuild/openbsd-x64": "0.18.15",
    "@esbuild/sunos-x64": "0.18.15",
    "@esbuild/win32-arm64": "0.18.15",
    "@esbuild/win32-ia32": "0.18.15",
    "@esbuild/win32-x64": "0.18.15"
    }
    },
    "escape-goat": {
    "version": "4.0.0",
    "resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-4.0.0.tgz",
    "integrity": "sha512-2Sd4ShcWxbx6OY1IHyla/CVNwvg7XwZVoXZHcSu9w9SReNP1EzzD5T8NWKIR38fIqEns9kDWKUQTXXAmlDrdPg=="
    },
    "estree-walker": {
    "version": "2.0.2",
    "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
    "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
    "optional": true
    },
    "eth-block-tracker": {
    "version": "6.1.0",
    "resolved": "https://registry.npmjs.org/eth-block-tracker/-/eth-block-tracker-6.1.0.tgz",
    "integrity": "sha512-K9SY8+/xMBi4M5HHTDdxnpEqEEGjbNpzHFqvxyjMZej8InV/B+CkFRKM6W+uvrFJ7m8Zd1E0qUkseU3vdIDFYQ==",
    "requires": {
    "@metamask/safe-event-emitter": "^2.0.0",
    "@metamask/utils": "^3.0.1",
    "json-rpc-random-id": "^1.0.1",
    "pify": "^3.0.0"
    }
    },
    "eth-json-rpc-filters": {
    "version": "5.1.0",
    "resolved": "https://registry.npmjs.org/eth-json-rpc-filters/-/eth-json-rpc-filters-5.1.0.tgz",
    "integrity": "sha512-fos+9xmoa1A2Ytsc9eYof17r81BjdJOUcGcgZn4K/tKdCCTb+a8ytEtwlu1op5qsXFDlgGmstTELFrDEc89qEQ==",
    "requires": {
    "@metamask/safe-event-emitter": "^2.0.0",
    "async-mutex": "^0.2.6",
    "eth-query": "^2.1.2",
    "json-rpc-engine": "^6.1.0",
    "pify": "^5.0.0"
    },
    "dependencies": {
    "pify": {
    "version": "5.0.0",
    "resolved": "https://registry.npmjs.org/pify/-/pify-5.0.0.tgz",
    "integrity": "sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA=="
    }
    }
    },
    "eth-query": {
    "version": "2.1.2",
    "resolved": "https://registry.npmjs.org/eth-query/-/eth-query-2.1.2.tgz",
    "integrity": "sha512-srES0ZcvwkR/wd5OQBRA1bIJMww1skfGS0s8wlwK3/oNP4+wnds60krvu5R1QbpRQjMmpG5OMIWro5s7gvDPsA==",
    "requires": {
    "json-rpc-random-id": "^1.0.0",
    "xtend": "^4.0.1"
    }
    },
    "eth-rpc-errors": {
    "version": "4.0.2",
    "resolved": "https://registry.npmjs.org/eth-rpc-errors/-/eth-rpc-errors-4.0.2.tgz",
    "integrity": "sha512-n+Re6Gu8XGyfFy1it0AwbD1x0MUzspQs0D5UiPs1fFPCr6WAwZM+vbIhXheBFrpgosqN9bs5PqlB4Q61U/QytQ==",
    "requires": {
    "fast-safe-stringify": "^2.0.6"
    }
    },
    "ethereum-cryptography": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-2.0.0.tgz",
    "integrity": "sha512-g25m4EtfQGjstWgVE1aIz7XYYjf3kH5kG17ULWVB5dH6uLahsoltOhACzSxyDV+fhn4gbR4xRrOXGe6r2uh4Bg==",
    "requires": {
    "@noble/curves": "1.0.0",
    "@noble/hashes": "1.3.0",
    "@scure/bip32": "1.3.0",
    "@scure/bip39": "1.2.0"
    }
    },
    "ethereumjs-util": {
    "version": "7.1.5",
    "resolved": "https://registry.npmjs.org/ethereumjs-util/-/ethereumjs-util-7.1.5.tgz",
    "integrity": "sha512-SDl5kKrQAudFBUe5OJM9Ac6WmMyYmXX/6sTmLZ3ffG2eY6ZIGBes3pEDxNN6V72WyOw4CPD5RomKdsa8DAAwLg==",
    "requires": {
    "@types/bn.js": "^5.1.0",
    "bn.js": "^5.1.2",
    "create-hash": "^1.1.2",
    "ethereum-cryptography": "^0.1.3",
    "rlp": "^2.2.4"
    },
    "dependencies": {
    "bn.js": {
    "version": "5.2.1",
    "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz",
    "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ=="
    },
    "ethereum-cryptography": {
    "version": "0.1.3",
    "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz",
    "integrity": "sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==",
    "requires": {
    "@types/pbkdf2": "^3.0.0",
    "@types/secp256k1": "^4.0.1",
    "blakejs": "^1.1.0",
    "browserify-aes": "^1.2.0",
    "bs58check": "^2.1.2",
    "create-hash": "^1.2.0",
    "create-hmac": "^1.1.7",
    "hash.js": "^1.1.7",
    "keccak": "^3.0.0",
    "pbkdf2": "^3.0.17",
    "randombytes": "^2.1.0",
    "safe-buffer": "^5.1.2",
    "scrypt-js": "^3.0.0",
    "secp256k1": "^4.0.1",
    "setimmediate": "^1.0.5"
    }
    }
    }
    },
    "ethers": {
    "version": "6.7.1",
    "resolved": "https://registry.npmjs.org/ethers/-/ethers-6.7.1.tgz",
    "integrity": "sha512-qX5kxIFMfg1i+epfgb0xF4WM7IqapIIu50pOJ17aebkxxa4BacW5jFrQRmCJpDEg2ZK2oNtR5QjrQ1WDBF29dA==",
    "requires": {
    "@adraffy/ens-normalize": "1.9.2",
    "@noble/hashes": "1.1.2",
    "@noble/secp256k1": "1.7.1",
    "@types/node": "18.15.13",
    "aes-js": "4.0.0-beta.5",
    "tslib": "2.4.0",
    "ws": "8.5.0"
    },
    "dependencies": {
    "@noble/hashes": {
    "version": "1.1.2",
    "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.1.2.tgz",
    "integrity": "sha512-KYRCASVTv6aeUi1tsF8/vpyR7zpfs3FUzy2Jqm+MU+LmUKhQ0y2FpfwqkCcxSg2ua4GALJd8k2R76WxwZGbQpA=="
    },
    "@types/node": {
    "version": "18.15.13",
    "resolved": "https://registry.npmjs.org/@types/node/-/node-18.15.13.tgz",
    "integrity": "sha512-N+0kuo9KgrUQ1Sn/ifDXsvg0TTleP7rIy4zOBGECxAljqvqfqpTfzx0Q1NUedOixRMBfe2Whhb056a42cWs26Q=="
    }
    }
    },
    "eventemitter3": {
    "version": "4.0.7",
    "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz",
    "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw=="
    },
    "events": {
    "version": "3.3.0",
    "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz",
    "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q=="
    },
    "evp_bytestokey": {
    "version": "1.0.3",
    "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz",
    "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==",
    "requires": {
    "md5.js": "^1.3.4",
    "safe-buffer": "^5.1.1"
    }
    },
    "exponential-backoff": {
    "version": "3.1.1",
    "resolved": "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.1.tgz",
    "integrity": "sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw=="
    },
    "eyes": {
    "version": "0.1.8",
    "resolved": "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz",
    "integrity": "sha512-GipyPsXO1anza0AOZdy69Im7hGFCNB7Y/NGjDlZGJ3GJJLtwNSb2vrzYrTYJRrRloVx7pl+bhUaTB8yiccPvFQ=="
    },
    "fast-glob": {
    "version": "3.3.1",
    "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz",
    "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==",
    "requires": {
    "@nodelib/fs.stat": "^2.0.2",
    "@nodelib/fs.walk": "^1.2.3",
    "glob-parent": "^5.1.2",
    "merge2": "^1.3.0",
    "micromatch": "^4.0.4"
    }
    },
    "fast-memoize": {
    "version": "2.5.2",
    "resolved": "https://registry.npmjs.org/fast-memoize/-/fast-memoize-2.5.2.tgz",
    "integrity": "sha512-Ue0LwpDYErFbmNnZSF0UH6eImUwDmogUO1jyE+JbN2gsQz/jICm1Ve7t9QT0rNSsfJt+Hs4/S3GnsDVjL4HVrw=="
    },
    "fast-redact": {
    "version": "3.3.0",
    "resolved": "https://registry.npmjs.org/fast-redact/-/fast-redact-3.3.0.tgz",
    "integrity": "sha512-6T5V1QK1u4oF+ATxs1lWUmlEk6P2T9HqJG3e2DnHOdVgZy2rFJBoEnrIedcTXlkAHU/zKC+7KETJ+KGGKwxgMQ=="
    },
    "fast-safe-stringify": {
    "version": "2.1.1",
    "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz",
    "integrity": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA=="
    },
    "fast-stable-stringify": {
    "version": "1.0.0",
    "resolved": "https://registry.npmjs.org/fast-stable-stringify/-/fast-stable-stringify-1.0.0.tgz",
    "integrity": "sha512-wpYMUmFu5f00Sm0cj2pfivpmawLZ0NKdviQ4w9zJeR8JVtOpOxHmLaJuj0vxvGqMJQWyP/COUkF75/57OKyRag=="
    },
    "fastq": {
    "version": "1.15.0",
    "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz",
    "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==",
    "requires": {
    "reusify": "^1.0.4"
    }
    },
    "file-uri-to-path": {
    "version": "1.0.0",
    "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz",
    "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw=="
    },
    "fill-range": {
    "version": "7.0.1",
    "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
    "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
    "requires": {
    "to-regex-range": "^5.0.1"
    }
    },
    "filter-obj": {
    "version": "1.1.0",
    "resolved": "https://registry.npmjs.org/filter-obj/-/filter-obj-1.1.0.tgz",
    "integrity": "sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ=="
    },
    "find-up": {
    "version": "5.0.0",
    "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
    "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
    "requires": {
    "locate-path": "^6.0.0",
    "path-exists": "^4.0.0"
    }
    },
    "follow-redirects": {
    "version": "1.15.2",
    "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz",
    "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA=="
    },
    "for-each": {
    "version": "0.3.3",
    "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz",
    "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==",
    "requires": {
    "is-callable": "^1.1.3"
    }
    },
    "foreground-child": {
    "version": "3.1.1",
    "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz",
    "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==",
    "requires": {
    "cross-spawn": "^7.0.0",
    "signal-exit": "^4.0.1"
    }
    },
    "form-data": {
    "version": "4.0.0",
    "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz",
    "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==",
    "requires": {
    "asynckit": "^0.4.0",
    "combined-stream": "^1.0.8",
    "mime-types": "^2.1.12"
    }
    },
    "form-data-encoder": {
    "version": "2.1.4",
    "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-2.1.4.tgz",
    "integrity": "sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw=="
    },
    "fp-and-or": {
    "version": "0.1.3",
    "resolved": "https://registry.npmjs.org/fp-and-or/-/fp-and-or-0.1.3.tgz",
    "integrity": "sha512-wJaE62fLaB3jCYvY2ZHjZvmKK2iiLiiehX38rz5QZxtdN8fVPJDeZUiVvJrHStdTc+23LHlyZuSEKgFc0pxi2g=="
    },
    "fs-extra": {
    "version": "10.1.0",
    "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
    "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
    "dev": true,
    "requires": {
    "graceful-fs": "^4.2.0",
    "jsonfile": "^6.0.1",
    "universalify": "^2.0.0"
    }
    },
    "fs-minipass": {
    "version": "3.0.3",
    "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-3.0.3.tgz",
    "integrity": "sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==",
    "requires": {
    "minipass": "^7.0.3"
    },
    "dependencies": {
    "minipass": {
    "version": "7.0.3",
    "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.3.tgz",
    "integrity": "sha512-LhbbwCfz3vsb12j/WkWQPZfKTsgqIe1Nf/ti1pKjYESGLHIVjWU96G9/ljLH4F9mWNVhlQOm0VySdAWzf05dpg=="
    }
    }
    },
    "fs.realpath": {
    "version": "1.0.0",
    "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
    "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
    },
    "fsevents": {
    "version": "2.3.2",
    "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
    "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
    "dev": true,
    "optional": true
    },
    "function-bind": {
    "version": "1.1.1",
    "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
    "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
    },
    "functional-red-black-tree": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz",
    "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g=="
    },
    "gauge": {
    "version": "4.0.4",
    "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz",
    "integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==",
    "requires": {
    "aproba": "^1.0.3 || ^2.0.0",
    "color-support": "^1.1.3",
    "console-control-strings": "^1.1.0",
    "has-unicode": "^2.0.1",
    "signal-exit": "^3.0.7",
    "string-width": "^4.2.3",
    "strip-ansi": "^6.0.1",
    "wide-align": "^1.1.5"
    },
    "dependencies": {
    "ansi-regex": {
    "version": "5.0.1",
    "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
    "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
    },
    "signal-exit": {
    "version": "3.0.7",
    "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
    "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="
    },
    "strip-ansi": {
    "version": "6.0.1",
    "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
    "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
    "requires": {
    "ansi-regex": "^5.0.1"
    }
    }
    }
    },
    "get-caller-file": {
    "version": "2.0.5",
    "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
    "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="
    },
    "get-intrinsic": {
    "version": "1.2.1",
    "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz",
    "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==",
    "requires": {
    "function-bind": "^1.1.1",
    "has": "^1.0.3",
    "has-proto": "^1.0.1",
    "has-symbols": "^1.0.3"
    }
    },
    "get-stdin": {
    "version": "8.0.0",
    "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz",
    "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg=="
    },
    "get-stream": {
    "version": "6.0.1",
    "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
    "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg=="
    },
    "glob": {
    "version": "10.3.3",
    "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.3.tgz",
    "integrity": "sha512-92vPiMb/iqpmEgsOoIDvTjc50wf9CCCvMzsi6W0JLPeUKE8TWP1a73PgqSrqy7iAZxaSD1YdzU7QZR5LF51MJw==",
    "requires": {
    "foreground-child": "^3.1.0",
    "jackspeak": "^2.0.3",
    "minimatch": "^9.0.1",
    "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0",
    "path-scurry": "^1.10.1"
    }
    },
    "glob-parent": {
    "version": "5.1.2",
    "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
    "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
    "requires": {
    "is-glob": "^4.0.1"
    }
    },
    "global-dirs": {
    "version": "3.0.1",
    "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.1.tgz",
    "integrity": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==",
    "requires": {
    "ini": "2.0.0"
    },
    "dependencies": {
    "ini": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz",
    "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA=="
    }
    }
    },
    "globby": {
    "version": "11.1.0",
    "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz",
    "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==",
    "requires": {
    "array-union": "^2.1.0",
    "dir-glob": "^3.0.1",
    "fast-glob": "^3.2.9",
    "ignore": "^5.2.0",
    "merge2": "^1.4.1",
    "slash": "^3.0.0"
    }
    },
    "gopd": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz",
    "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==",
    "requires": {
    "get-intrinsic": "^1.1.3"
    }
    },
    "got": {
    "version": "12.6.1",
    "resolved": "https://registry.npmjs.org/got/-/got-12.6.1.tgz",
    "integrity": "sha512-mThBblvlAF1d4O5oqyvN+ZxLAYwIJK7bpMxgYqPD9okW0C3qm5FFn7k811QrcuEBwaogR3ngOFoCfs6mRv7teQ==",
    "requires": {
    "@sindresorhus/is": "^5.2.0",
    "@szmarczak/http-timer": "^5.0.1",
    "cacheable-lookup": "^7.0.0",
    "cacheable-request": "^10.2.8",
    "decompress-response": "^6.0.0",
    "form-data-encoder": "^2.1.2",
    "get-stream": "^6.0.1",
    "http2-wrapper": "^2.1.10",
    "lowercase-keys": "^3.0.0",
    "p-cancelable": "^3.0.0",
    "responselike": "^3.0.0"
    }
    },
    "graceful-fs": {
    "version": "4.2.10",
    "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz",
    "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA=="
    },
    "has": {
    "version": "1.0.3",
    "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
    "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
    "requires": {
    "function-bind": "^1.1.1"
    }
    },
    "has-flag": {
    "version": "4.0.0",
    "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
    "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
    "dev": true
    },
    "has-proto": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz",
    "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg=="
    },
    "has-symbols": {
    "version": "1.0.3",
    "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz",
    "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A=="
    },
    "has-tostringtag": {
    "version": "1.0.0",
    "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz",
    "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==",
    "requires": {
    "has-symbols": "^1.0.2"
    }
    },
    "has-unicode": {
    "version": "2.0.1",
    "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz",
    "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ=="
    },
    "has-yarn": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-3.0.0.tgz",
    "integrity": "sha512-IrsVwUHhEULx3R8f/aA8AHuEzAorplsab/v8HBzEiIukwq5i/EC+xmOW+HfP1OaDP+2JkgT1yILHN2O3UFIbcA=="
    },
    "hash-base": {
    "version": "3.1.0",
    "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz",
    "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==",
    "requires": {
    "inherits": "^2.0.4",
    "readable-stream": "^3.6.0",
    "safe-buffer": "^5.2.0"
    }
    },
    "hash.js": {
    "version": "1.1.7",
    "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz",
    "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==",
    "requires": {
    "inherits": "^2.0.3",
    "minimalistic-assert": "^1.0.1"
    }
    },
    "hey-listen": {
    "version": "1.0.8",
    "resolved": "https://registry.npmjs.org/hey-listen/-/hey-listen-1.0.8.tgz",
    "integrity": "sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q=="
    },
    "hi-base32": {
    "version": "0.5.1",
    "resolved": "https://registry.npmjs.org/hi-base32/-/hi-base32-0.5.1.tgz",
    "integrity": "sha512-EmBBpvdYh/4XxsnUybsPag6VikPYnN30td+vQk+GI3qpahVEG9+gTkG0aXVxTjBqQ5T6ijbWIu77O+C5WFWsnA=="
    },
    "hls.js": {
    "version": "1.4.12",
    "resolved": "https://registry.npmjs.org/hls.js/-/hls.js-1.4.12.tgz",
    "integrity": "sha512-1RBpx2VihibzE3WE9kGoVCtrhhDWTzydzElk/kyRbEOLnb1WIE+3ZabM/L8BqKFTCL3pUy4QzhXgD1Q6Igr1JA=="
    },
    "hmac-drbg": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz",
    "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==",
    "requires": {
    "hash.js": "^1.0.3",
    "minimalistic-assert": "^1.0.0",
    "minimalistic-crypto-utils": "^1.0.1"
    }
    },
    "hosted-git-info": {
    "version": "5.2.1",
    "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-5.2.1.tgz",
    "integrity": "sha512-xIcQYMnhcx2Nr4JTjsFmwwnr9vldugPy9uVm0o87bjqqWMv9GaqsTeT+i99wTl0mk1uLxJtHxLb8kymqTENQsw==",
    "requires": {
    "lru-cache": "^7.5.1"
    }
    },
    "http-cache-semantics": {
    "version": "4.1.1",
    "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz",
    "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ=="
    },
    "http-proxy-agent": {
    "version": "5.0.0",
    "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz",
    "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==",
    "requires": {
    "@tootallnate/once": "2",
    "agent-base": "6",
    "debug": "4"
    }
    },
    "http2-wrapper": {
    "version": "2.2.0",
    "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.0.tgz",
    "integrity": "sha512-kZB0wxMo0sh1PehyjJUWRFEd99KC5TLjZ2cULC4f9iqJBAmKQQXEICjxl5iPJRwP40dpeHFqqhm7tYCvODpqpQ==",
    "requires": {
    "quick-lru": "^5.1.1",
    "resolve-alpn": "^1.2.0"
    }
    },
    "https-proxy-agent": {
    "version": "5.0.1",
    "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
    "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
    "requires": {
    "agent-base": "6",
    "debug": "4"
    }
    },
    "humanize-ms": {
    "version": "1.2.1",
    "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz",
    "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==",
    "requires": {
    "ms": "^2.0.0"
    }
    },
    "iconv-lite": {
    "version": "0.6.3",
    "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
    "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
    "optional": true,
    "requires": {
    "safer-buffer": ">= 2.1.2 < 3.0.0"
    }
    },
    "ieee754": {
    "version": "1.2.1",
    "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
    "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA=="
    },
    "ignore": {
    "version": "5.2.4",
    "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz",
    "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ=="
    },
    "ignore-walk": {
    "version": "6.0.3",
    "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-6.0.3.tgz",
    "integrity": "sha512-C7FfFoTA+bI10qfeydT8aZbvr91vAEU+2W5BZUlzPec47oNb07SsOfwYrtxuvOYdUApPP/Qlh4DtAO51Ekk2QA==",
    "requires": {
    "minimatch": "^9.0.0"
    }
    },
    "immediate": {
    "version": "3.3.0",
    "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.3.0.tgz",
    "integrity": "sha512-HR7EVodfFUdQCTIeySw+WDRFJlPcLOJbXfwwZ7Oom6tjsvZ3bOkCDJHehQC3nxJrv7+f9XecwazynjU8e4Vw3Q=="
    },
    "import-lazy": {
    "version": "4.0.0",
    "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz",
    "integrity": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw=="
    },
    "imurmurhash": {
    "version": "0.1.4",
    "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
    "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA=="
    },
    "indent-string": {
    "version": "4.0.0",
    "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz",
    "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg=="
    },
    "inflight": {
    "version": "1.0.6",
    "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
    "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
    "requires": {
    "once": "^1.3.0",
    "wrappy": "1"
    }
    },
    "inherits": {
    "version": "2.0.4",
    "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
    "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
    },
    "ini": {
    "version": "4.1.1",
    "resolved": "https://registry.npmjs.org/ini/-/ini-4.1.1.tgz",
    "integrity": "sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g=="
    },
    "ip": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz",
    "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ=="
    },
    "is-arguments": {
    "version": "1.1.1",
    "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz",
    "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==",
    "requires": {
    "call-bind": "^1.0.2",
    "has-tostringtag": "^1.0.0"
    }
    },
    "is-callable": {
    "version": "1.2.7",
    "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz",
    "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA=="
    },
    "is-ci": {
    "version": "3.0.1",
    "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz",
    "integrity": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==",
    "requires": {
    "ci-info": "^3.2.0"
    }
    },
    "is-core-module": {
    "version": "2.13.0",
    "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz",
    "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==",
    "requires": {
    "has": "^1.0.3"
    }
    },
    "is-extglob": {
    "version": "2.1.1",
    "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
    "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ=="
    },
    "is-fullwidth-code-point": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
    "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="
    },
    "is-generator-function": {
    "version": "1.0.10",
    "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz",
    "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==",
    "requires": {
    "has-tostringtag": "^1.0.0"
    }
    },
    "is-glob": {
    "version": "4.0.3",
    "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
    "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
    "requires": {
    "is-extglob": "^2.1.1"
    }
    },
    "is-installed-globally": {
    "version": "0.4.0",
    "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz",
    "integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==",
    "requires": {
    "global-dirs": "^3.0.0",
    "is-path-inside": "^3.0.2"
    }
    },
    "is-lambda": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz",
    "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ=="
    },
    "is-npm": {
    "version": "6.0.0",
    "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-6.0.0.tgz",
    "integrity": "sha512-JEjxbSmtPSt1c8XTkVrlujcXdKV1/tvuQ7GwKcAlyiVLeYFQ2VHat8xfrDJsIkhCdF/tZ7CiIR3sy141c6+gPQ=="
    },
    "is-number": {
    "version": "7.0.0",
    "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
    "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="
    },
    "is-obj": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz",
    "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w=="
    },
    "is-path-inside": {
    "version": "3.0.3",
    "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz",
    "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ=="
    },
    "is-typed-array": {
    "version": "1.1.12",
    "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz",
    "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==",
    "requires": {
    "which-typed-array": "^1.1.11"
    }
    },
    "is-typedarray": {
    "version": "1.0.0",
    "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
    "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA=="
    },
    "is-yarn-global": {
    "version": "0.4.1",
    "resolved": "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.4.1.tgz",
    "integrity": "sha512-/kppl+R+LO5VmhYSEWARUFjodS25D68gvj8W7z0I7OWhUla5xWu8KL6CtB2V0R6yqhnRgbcaREMr4EEM6htLPQ=="
    },
    "isexe": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
    "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="
    },
    "isomorphic-ws": {
    "version": "4.0.1",
    "resolved": "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz",
    "integrity": "sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w==",
    "requires": {}
    },
    "isows": {
    "version": "1.0.2",
    "resolved": "https://registry.npmjs.org/isows/-/isows-1.0.2.tgz",
    "integrity": "sha512-ohHPFvRjcGLLA7uqHjIcGf5M3OrzN/k9QVYMGOvCppV/HY2GZdz7oFsJHT70ZXEL7ImrOGE1F9M0SovDGSfT6Q==",
    "requires": {}
    },
    "jackspeak": {
    "version": "2.3.0",
    "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.0.tgz",
    "integrity": "sha512-uKmsITSsF4rUWQHzqaRUuyAir3fZfW3f202Ee34lz/gZCi970CPZwyQXLGNgWJvvZbvFyzeyGq0+4fcG/mBKZg==",
    "requires": {
    "@isaacs/cliui": "^8.0.2",
    "@pkgjs/parseargs": "^0.11.0"
    }
    },
    "jayson": {
    "version": "4.1.0",
    "resolved": "https://registry.npmjs.org/jayson/-/jayson-4.1.0.tgz",
    "integrity": "sha512-R6JlbyLN53Mjku329XoRT2zJAE6ZgOQ8f91ucYdMCD4nkGCF9kZSrcGXpHIU4jeKj58zUZke2p+cdQchU7Ly7A==",
    "requires": {
    "@types/connect": "^3.4.33",
    "@types/node": "^12.12.54",
    "@types/ws": "^7.4.4",
    "commander": "^2.20.3",
    "delay": "^5.0.0",
    "es6-promisify": "^5.0.0",
    "eyes": "^0.1.8",
    "isomorphic-ws": "^4.0.1",
    "json-stringify-safe": "^5.0.1",
    "JSONStream": "^1.3.5",
    "uuid": "^8.3.2",
    "ws": "^7.4.5"
    },
    "dependencies": {
    "@types/node": {
    "version": "12.20.55",
    "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz",
    "integrity": "sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ=="
    },
    "commander": {
    "version": "2.20.3",
    "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
    "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="
    },
    "ws": {
    "version": "7.5.9",
    "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz",
    "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==",
    "requires": {}
    }
    }
    },
    "jju": {
    "version": "1.4.0",
    "resolved": "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz",
    "integrity": "sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA=="
    },
    "jquery": {
    "version": "3.7.0",
    "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.7.0.tgz",
    "integrity": "sha512-umpJ0/k8X0MvD1ds0P9SfowREz2LenHsQaxSohMZ5OMNEU2r0tf8pdeEFTHMFxWVxKNyU9rTtK3CWzUCTKJUeQ=="
    },
    "js-sha256": {
    "version": "0.9.0",
    "resolved": "https://registry.npmjs.org/js-sha256/-/js-sha256-0.9.0.tgz",
    "integrity": "sha512-sga3MHh9sgQN2+pJ9VYZ+1LPwXOxuBJBA5nrR5/ofPfuiJBE2hnjsaN8se8JznOmGLN2p49Pe5U/ttafcs/apA=="
    },
    "js-sha3": {
    "version": "0.8.0",
    "resolved": "https://registry.npmjs.org/js-sha3/-/js-sha3-0.8.0.tgz",
    "integrity": "sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q=="
    },
    "js-sha512": {
    "version": "0.8.0",
    "resolved": "https://registry.npmjs.org/js-sha512/-/js-sha512-0.8.0.tgz",
    "integrity": "sha512-PWsmefG6Jkodqt+ePTvBZCSMFgN7Clckjd0O7su3I0+BW2QWUTJNzjktHsztGLhncP2h8mcF9V9Y2Ha59pAViQ=="
    },
    "js-tokens": {
    "version": "4.0.0",
    "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
    "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
    },
    "js-yaml": {
    "version": "4.1.0",
    "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
    "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
    "requires": {
    "argparse": "^2.0.1"
    }
    },
    "json-bigint": {
    "version": "1.0.0",
    "resolved": "https://registry.npmjs.org/json-bigint/-/json-bigint-1.0.0.tgz",
    "integrity": "sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ==",
    "requires": {
    "bignumber.js": "^9.0.0"
    }
    },
    "json-buffer": {
    "version": "3.0.1",
    "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
    "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ=="
    },
    "json-parse-even-better-errors": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.0.tgz",
    "integrity": "sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA=="
    },
    "json-parse-helpfulerror": {
    "version": "1.0.3",
    "resolved": "https://registry.npmjs.org/json-parse-helpfulerror/-/json-parse-helpfulerror-1.0.3.tgz",
    "integrity": "sha512-XgP0FGR77+QhUxjXkwOMkC94k3WtqEBfcnjWqhRd82qTat4SWKRE+9kUnynz/shm3I4ea2+qISvTIeGTNU7kJg==",
    "requires": {
    "jju": "^1.1.0"
    }
    },
    "json-rpc-engine": {
    "version": "6.1.0",
    "resolved": "https://registry.npmjs.org/json-rpc-engine/-/json-rpc-engine-6.1.0.tgz",
    "integrity": "sha512-NEdLrtrq1jUZyfjkr9OCz9EzCNhnRyWtt1PAnvnhwy6e8XETS0Dtc+ZNCO2gvuAoKsIn2+vCSowXTYE4CkgnAQ==",
    "requires": {
    "@metamask/safe-event-emitter": "^2.0.0",
    "eth-rpc-errors": "^4.0.2"
    }
    },
    "json-rpc-random-id": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/json-rpc-random-id/-/json-rpc-random-id-1.0.1.tgz",
    "integrity": "sha512-RJ9YYNCkhVDBuP4zN5BBtYAzEl03yq/jIIsyif0JY9qyJuQQZNeDK7anAPKKlyEtLSj2s8h6hNh2F8zO5q7ScA=="
    },
    "json-stringify-safe": {
    "version": "5.0.1",
    "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
    "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA=="
    },
    "json5": {
    "version": "2.2.3",
    "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
    "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg=="
    },
    "jsonfile": {
    "version": "6.1.0",
    "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
    "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
    "dev": true,
    "requires": {
    "graceful-fs": "^4.1.6",
    "universalify": "^2.0.0"
    }
    },
    "jsonlines": {
    "version": "0.1.1",
    "resolved": "https://registry.npmjs.org/jsonlines/-/jsonlines-0.1.1.tgz",
    "integrity": "sha512-ekDrAGso79Cvf+dtm+mL8OBI2bmAOt3gssYs833De/C9NmIpWDWyUO4zPgB5x2/OhY366dkhgfPMYfwZF7yOZA=="
    },
    "jsonparse": {
    "version": "1.3.1",
    "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz",
    "integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg=="
    },
    "JSONStream": {
    "version": "1.3.5",
    "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz",
    "integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==",
    "requires": {
    "jsonparse": "^1.2.0",
    "through": ">=2.2.7 <3"
    }
    },
    "keccak": {
    "version": "3.0.4",
    "resolved": "https://registry.npmjs.org/keccak/-/keccak-3.0.4.tgz",
    "integrity": "sha512-3vKuW0jV8J3XNTzvfyicFR5qvxrSAGl7KIhvgOu5cmWwM7tZRj3fMbj/pfIf4be7aznbc+prBWGjywox/g2Y6Q==",
    "requires": {
    "node-addon-api": "^2.0.0",
    "node-gyp-build": "^4.2.0",
    "readable-stream": "^3.6.0"
    }
    },
    "keyv": {
    "version": "4.5.3",
    "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.3.tgz",
    "integrity": "sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug==",
    "requires": {
    "json-buffer": "3.0.1"
    }
    },
    "keyvaluestorage-interface": {
    "version": "1.0.0",
    "resolved": "https://registry.npmjs.org/keyvaluestorage-interface/-/keyvaluestorage-interface-1.0.0.tgz",
    "integrity": "sha512-8t6Q3TclQ4uZynJY9IGr2+SsIGwK9JHcO6ootkHCGA0CrQCRy+VkouYNO2xicET6b9al7QKzpebNow+gkpCL8g=="
    },
    "kleur": {
    "version": "4.1.5",
    "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz",
    "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ=="
    },
    "lamejstmp": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/lamejstmp/-/lamejstmp-1.0.1.tgz",
    "integrity": "sha512-eEENqMTpiDNTaeOWWbv58KVT4uh9tP7XqpG+aODm9U2eRHwH8Hsx3OnNKxd3noVN6cHmQomv5HQ9N7tzTSVxNQ==",
    "requires": {
    "use-strict": "1.0.1"
    }
    },
    "latest-version": {
    "version": "7.0.0",
    "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-7.0.0.tgz",
    "integrity": "sha512-KvNT4XqAMzdcL6ka6Tl3i2lYeFDgXNCuIX+xNx6ZMVR1dFq+idXd9FLKNMOIx0t9mJ9/HudyX4oZWXZQ0UJHeg==",
    "requires": {
    "package-json": "^8.1.0"
    }
    },
    "level-codec": {
    "version": "9.0.2",
    "resolved": "https://registry.npmjs.org/level-codec/-/level-codec-9.0.2.tgz",
    "integrity": "sha512-UyIwNb1lJBChJnGfjmO0OR+ezh2iVu1Kas3nvBS/BzGnx79dv6g7unpKIDNPMhfdTEGoc7mC8uAu51XEtX+FHQ==",
    "requires": {
    "buffer": "^5.6.0"
    },
    "dependencies": {
    "buffer": {
    "version": "5.7.1",
    "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
    "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
    "requires": {
    "base64-js": "^1.3.1",
    "ieee754": "^1.1.13"
    }
    }
    }
    },
    "level-concat-iterator": {
    "version": "2.0.1",
    "resolved": "https://registry.npmjs.org/level-concat-iterator/-/level-concat-iterator-2.0.1.tgz",
    "integrity": "sha512-OTKKOqeav2QWcERMJR7IS9CUo1sHnke2C0gkSmcR7QuEtFNLLzHQAvnMw8ykvEcv0Qtkg0p7FOwP1v9e5Smdcw=="
    },
    "level-errors": {
    "version": "2.0.1",
    "resolved": "https://registry.npmjs.org/level-errors/-/level-errors-2.0.1.tgz",
    "integrity": "sha512-UVprBJXite4gPS+3VznfgDSU8PTRuVX0NXwoWW50KLxd2yw4Y1t2JUR5In1itQnudZqRMT9DlAM3Q//9NCjCFw==",
    "requires": {
    "errno": "~0.1.1"
    }
    },
    "level-iterator-stream": {
    "version": "4.0.2",
    "resolved": "https://registry.npmjs.org/level-iterator-stream/-/level-iterator-stream-4.0.2.tgz",
    "integrity": "sha512-ZSthfEqzGSOMWoUGhTXdX9jv26d32XJuHz/5YnuHZzH6wldfWMOVwI9TBtKcya4BKTyTt3XVA0A3cF3q5CY30Q==",
    "requires": {
    "inherits": "^2.0.4",
    "readable-stream": "^3.4.0",
    "xtend": "^4.0.2"
    }
    },
    "level-mem": {
    "version": "5.0.1",
    "resolved": "https://registry.npmjs.org/level-mem/-/level-mem-5.0.1.tgz",
    "integrity": "sha512-qd+qUJHXsGSFoHTziptAKXoLX87QjR7v2KMbqncDXPxQuCdsQlzmyX+gwrEHhlzn08vkf8TyipYyMmiC6Gobzg==",
    "requires": {
    "level-packager": "^5.0.3",
    "memdown": "^5.0.0"
    }
    },
    "level-packager": {
    "version": "5.1.1",
    "resolved": "https://registry.npmjs.org/level-packager/-/level-packager-5.1.1.tgz",
    "integrity": "sha512-HMwMaQPlTC1IlcwT3+swhqf/NUO+ZhXVz6TY1zZIIZlIR0YSn8GtAAWmIvKjNY16ZkEg/JcpAuQskxsXqC0yOQ==",
    "requires": {
    "encoding-down": "^6.3.0",
    "levelup": "^4.3.2"
    }
    },
    "level-supports": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/level-supports/-/level-supports-1.0.1.tgz",
    "integrity": "sha512-rXM7GYnW8gsl1vedTJIbzOrRv85c/2uCMpiiCzO2fndd06U/kUXEEU9evYn4zFggBOg36IsBW8LzqIpETwwQzg==",
    "requires": {
    "xtend": "^4.0.2"
    }
    },
    "level-ws": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/level-ws/-/level-ws-2.0.0.tgz",
    "integrity": "sha512-1iv7VXx0G9ec1isqQZ7y5LmoZo/ewAsyDHNA8EFDW5hqH2Kqovm33nSFkSdnLLAK+I5FlT+lo5Cw9itGe+CpQA==",
    "requires": {
    "inherits": "^2.0.3",
    "readable-stream": "^3.1.0",
    "xtend": "^4.0.1"
    }
    },
    "levelup": {
    "version": "4.4.0",
    "resolved": "https://registry.npmjs.org/levelup/-/levelup-4.4.0.tgz",
    "integrity": "sha512-94++VFO3qN95cM/d6eBXvd894oJE0w3cInq9USsyQzzoJxmiYzPAocNcuGCPGGjoXqDVJcr3C1jzt1TSjyaiLQ==",
    "requires": {
    "deferred-leveldown": "~5.3.0",
    "level-errors": "~2.0.0",
    "level-iterator-stream": "~4.0.0",
    "level-supports": "~1.0.0",
    "xtend": "~4.0.0"
    }
    },
    "lit": {
    "version": "2.8.0",
    "resolved": "https://registry.npmjs.org/lit/-/lit-2.8.0.tgz",
    "integrity": "sha512-4Sc3OFX9QHOJaHbmTMk28SYgVxLN3ePDjg7hofEft2zWlehFL3LiAuapWc4U/kYwMYJSh2hTCPZ6/LIC7ii0MA==",
    "requires": {
    "@lit/reactive-element": "^1.6.0",
    "lit-element": "^3.3.0",
    "lit-html": "^2.8.0"
    }
    },
    "lit-element": {
    "version": "3.3.3",
    "resolved": "https://registry.npmjs.org/lit-element/-/lit-element-3.3.3.tgz",
    "integrity": "sha512-XbeRxmTHubXENkV4h8RIPyr8lXc+Ff28rkcQzw3G6up2xg5E8Zu1IgOWIwBLEQsu3cOVFqdYwiVi0hv0SlpqUA==",
    "requires": {
    "@lit-labs/ssr-dom-shim": "^1.1.0",
    "@lit/reactive-element": "^1.3.0",
    "lit-html": "^2.8.0"
    }
    },
    "lit-html": {
    "version": "2.8.0",
    "resolved": "https://registry.npmjs.org/lit-html/-/lit-html-2.8.0.tgz",
    "integrity": "sha512-o9t+MQM3P4y7M7yNzqAyjp7z+mQGa4NS4CxiyLqFPyFWyc4O+nodLrkrxSaCTrla6M5YOLaT3RpbbqjszB5g3Q==",
    "requires": {
    "@types/trusted-types": "^2.0.2"
    }
    },
    "loadjs": {
    "version": "4.2.0",
    "resolved": "https://registry.npmjs.org/loadjs/-/loadjs-4.2.0.tgz",
    "integrity": "sha512-AgQGZisAlTPbTEzrHPb6q+NYBMD+DP9uvGSIjSUM5uG+0jG15cb8axWpxuOIqrmQjn6scaaH8JwloiP27b2KXA=="
    },
    "locate-path": {
    "version": "6.0.0",
    "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
    "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
    "requires": {
    "p-locate": "^5.0.0"
    }
    },
    "lodash": {
    "version": "4.17.21",
    "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
    "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="
    },
    "lodash.isequal": {
    "version": "4.5.0",
    "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz",
    "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ=="
    },
    "loose-envify": {
    "version": "1.4.0",
    "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
    "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
    "requires": {
    "js-tokens": "^3.0.0 || ^4.0.0"
    }
    },
    "lowercase-keys": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-3.0.0.tgz",
    "integrity": "sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ=="
    },
    "lru-cache": {
    "version": "7.18.3",
    "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz",
    "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA=="
    },
    "ltgt": {
    "version": "2.2.1",
    "resolved": "https://registry.npmjs.org/ltgt/-/ltgt-2.2.1.tgz",
    "integrity": "sha512-AI2r85+4MquTw9ZYqabu4nMwy9Oftlfa/e/52t9IjtfG+mGBbTNdAoZ3RQKLHR6r0wQnwZnPIEh/Ya6XTWAKNA=="
    },
    "magic-string": {
    "version": "0.30.4",
    "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.4.tgz",
    "integrity": "sha512-Q/TKtsC5BPm0kGqgBIF9oXAs/xEf2vRKiIB4wCRQTJOQIByZ1d+NnUOotvJOvNpi5RNIgVOMC3pOuaP1ZTDlVg==",
    "optional": true,
    "requires": {
    "@jridgewell/sourcemap-codec": "^1.4.15"
    }
    },
    "make-fetch-happen": {
    "version": "11.1.1",
    "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-11.1.1.tgz",
    "integrity": "sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==",
    "requires": {
    "agentkeepalive": "^4.2.1",
    "cacache": "^17.0.0",
    "http-cache-semantics": "^4.1.1",
    "http-proxy-agent": "^5.0.0",
    "https-proxy-agent": "^5.0.0",
    "is-lambda": "^1.0.1",
    "lru-cache": "^7.7.1",
    "minipass": "^5.0.0",
    "minipass-fetch": "^3.0.0",
    "minipass-flush": "^1.0.5",
    "minipass-pipeline": "^1.2.4",
    "negotiator": "^0.6.3",
    "promise-retry": "^2.0.1",
    "socks-proxy-agent": "^7.0.0",
    "ssri": "^10.0.0"
    }
    },
    "md5.js": {
    "version": "1.3.5",
    "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz",
    "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==",
    "requires": {
    "hash-base": "^3.0.0",
    "inherits": "^2.0.1",
    "safe-buffer": "^5.1.2"
    }
    },
    "media-chrome": {
    "version": "1.4.3",
    "resolved": "https://registry.npmjs.org/media-chrome/-/media-chrome-1.4.3.tgz",
    "integrity": "sha512-VpFqCOu2FLULW6TX4sluo44AolJXryHxr85UBdO+IuOltgYPuf7Lgp1F3OqJeRIeO8874d5mri/6xmI22CO9yA=="
    },
    "media-tracks": {
    "version": "0.2.4",
    "resolved": "https://registry.npmjs.org/media-tracks/-/media-tracks-0.2.4.tgz",
    "integrity": "sha512-P/TbDCYTFH5gxpQ6r99iabXOwjsFwzKRgK7wiwo64Ii6nHXYhHtwEP7A7ufmEKxkNCoHc4j3Z2hvs+lXL4wPeQ=="
    },
    "memdown": {
    "version": "5.1.0",
    "resolved": "https://registry.npmjs.org/memdown/-/memdown-5.1.0.tgz",
    "integrity": "sha512-B3J+UizMRAlEArDjWHTMmadet+UKwHd3UjMgGBkZcKAxAYVPS9o0Yeiha4qvz7iGiL2Sb3igUft6p7nbFWctpw==",
    "requires": {
    "abstract-leveldown": "~6.2.1",
    "functional-red-black-tree": "~1.0.1",
    "immediate": "~3.2.3",
    "inherits": "~2.0.1",
    "ltgt": "~2.2.0",
    "safe-buffer": "~5.2.0"
    },
    "dependencies": {
    "abstract-leveldown": {
    "version": "6.2.3",
    "resolved": "https://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-6.2.3.tgz",
    "integrity": "sha512-BsLm5vFMRUrrLeCcRc+G0t2qOaTzpoJQLOubq2XM72eNpjF5UdU5o/5NvlNhx95XHcAvcl8OMXr4mlg/fRgUXQ==",
    "requires": {
    "buffer": "^5.5.0",
    "immediate": "^3.2.3",
    "level-concat-iterator": "~2.0.0",
    "level-supports": "~1.0.0",
    "xtend": "~4.0.0"
    }
    },
    "buffer": {
    "version": "5.7.1",
    "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
    "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
    "requires": {
    "base64-js": "^1.3.1",
    "ieee754": "^1.1.13"
    }
    },
    "immediate": {
    "version": "3.2.3",
    "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.2.3.tgz",
    "integrity": "sha512-RrGCXRm/fRVqMIhqXrGEX9rRADavPiDFSoMb/k64i9XMk8uH4r/Omi5Ctierj6XzNecwDbO4WuFbDD1zmpl3Tg=="
    }
    }
    },
    "merge2": {
    "version": "1.4.1",
    "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
    "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg=="
    },
    "merkle-patricia-tree": {
    "version": "4.2.4",
    "resolved": "https://registry.npmjs.org/merkle-patricia-tree/-/merkle-patricia-tree-4.2.4.tgz",
    "integrity": "sha512-eHbf/BG6eGNsqqfbLED9rIqbsF4+sykEaBn6OLNs71tjclbMcMOk1tEPmJKcNcNCLkvbpY/lwyOlizWsqPNo8w==",
    "requires": {
    "@types/levelup": "^4.3.0",
    "ethereumjs-util": "^7.1.4",
    "level-mem": "^5.0.1",
    "level-ws": "^2.0.0",
    "readable-stream": "^3.6.0",
    "semaphore-async-await": "^1.5.1"
    }
    },
    "micromatch": {
    "version": "4.0.5",
    "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz",
    "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==",
    "requires": {
    "braces": "^3.0.2",
    "picomatch": "^2.3.1"
    }
    },
    "mime-db": {
    "version": "1.52.0",
    "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
    "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg=="
    },
    "mime-types": {
    "version": "2.1.35",
    "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
    "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
    "requires": {
    "mime-db": "1.52.0"
    }
    },
    "mimic-response": {
    "version": "4.0.0",
    "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-4.0.0.tgz",
    "integrity": "sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg=="
    },
    "minimalistic-assert": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz",
    "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A=="
    },
    "minimalistic-crypto-utils": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz",
    "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg=="
    },
    "minimatch": {
    "version": "9.0.3",
    "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz",
    "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==",
    "requires": {
    "brace-expansion": "^2.0.1"
    }
    },
    "minimist": {
    "version": "1.2.8",
    "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
    "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA=="
    },
    "minipass": {
    "version": "5.0.0",
    "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz",
    "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ=="
    },
    "minipass-collect": {
    "version": "1.0.2",
    "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz",
    "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==",
    "requires": {
    "minipass": "^3.0.0"
    },
    "dependencies": {
    "minipass": {
    "version": "3.3.6",
    "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
    "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
    "requires": {
    "yallist": "^4.0.0"
    }
    }
    }
    },
    "minipass-fetch": {
    "version": "3.0.4",
    "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.4.tgz",
    "integrity": "sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg==",
    "requires": {
    "encoding": "^0.1.13",
    "minipass": "^7.0.3",
    "minipass-sized": "^1.0.3",
    "minizlib": "^2.1.2"
    },
    "dependencies": {
    "minipass": {
    "version": "7.0.3",
    "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.3.tgz",
    "integrity": "sha512-LhbbwCfz3vsb12j/WkWQPZfKTsgqIe1Nf/ti1pKjYESGLHIVjWU96G9/ljLH4F9mWNVhlQOm0VySdAWzf05dpg=="
    }
    }
    },
    "minipass-flush": {
    "version": "1.0.5",
    "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz",
    "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==",
    "requires": {
    "minipass": "^3.0.0"
    },
    "dependencies": {
    "minipass": {
    "version": "3.3.6",
    "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
    "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
    "requires": {
    "yallist": "^4.0.0"
    }
    }
    }
    },
    "minipass-json-stream": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz",
    "integrity": "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==",
    "requires": {
    "jsonparse": "^1.3.1",
    "minipass": "^3.0.0"
    },
    "dependencies": {
    "minipass": {
    "version": "3.3.6",
    "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
    "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
    "requires": {
    "yallist": "^4.0.0"
    }
    }
    }
    },
    "minipass-pipeline": {
    "version": "1.2.4",
    "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz",
    "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==",
    "requires": {
    "minipass": "^3.0.0"
    },
    "dependencies": {
    "minipass": {
    "version": "3.3.6",
    "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
    "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
    "requires": {
    "yallist": "^4.0.0"
    }
    }
    }
    },
    "minipass-sized": {
    "version": "1.0.3",
    "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz",
    "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==",
    "requires": {
    "minipass": "^3.0.0"
    },
    "dependencies": {
    "minipass": {
    "version": "3.3.6",
    "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
    "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
    "requires": {
    "yallist": "^4.0.0"
    }
    }
    }
    },
    "minizlib": {
    "version": "2.1.2",
    "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz",
    "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==",
    "requires": {
    "minipass": "^3.0.0",
    "yallist": "^4.0.0"
    },
    "dependencies": {
    "minipass": {
    "version": "3.3.6",
    "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
    "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
    "requires": {
    "yallist": "^4.0.0"
    }
    }
    }
    },
    "mkdirp": {
    "version": "1.0.4",
    "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
    "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw=="
    },
    "motion": {
    "version": "10.16.2",
    "resolved": "https://registry.npmjs.org/motion/-/motion-10.16.2.tgz",
    "integrity": "sha512-p+PurYqfUdcJZvtnmAqu5fJgV2kR0uLFQuBKtLeFVTrYEVllI99tiOTSefVNYuip9ELTEkepIIDftNdze76NAQ==",
    "requires": {
    "@motionone/animation": "^10.15.1",
    "@motionone/dom": "^10.16.2",
    "@motionone/svelte": "^10.16.2",
    "@motionone/types": "^10.15.1",
    "@motionone/utils": "^10.15.1",
    "@motionone/vue": "^10.16.2"
    }
    },
    "ms": {
    "version": "2.1.2",
    "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
    "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
    },
    "multiformats": {
    "version": "9.9.0",
    "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-9.9.0.tgz",
    "integrity": "sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg=="
    },
    "mux-embed": {
    "version": "4.28.1",
    "resolved": "https://registry.npmjs.org/mux-embed/-/mux-embed-4.28.1.tgz",
    "integrity": "sha512-fDJK0Dn3nSqRkLj5LUyjVmFGJt4cWq0/WFq75eP+PMF1cU3lemgKkBVYkTTzx3TUDTuebW+1LZ80r9OTcSa+wQ=="
    },
    "nanoid": {
    "version": "3.3.6",
    "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz",
    "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==",
    "devOptional": true
    },
    "narrowing": {
    "version": "1.5.0",
    "resolved": "https://registry.npmjs.org/narrowing/-/narrowing-1.5.0.tgz",
    "integrity": "sha512-DUu4XdKgkfAPTAL28k79pdnshDE2W5T24QAnidSPo2F/W1TX6CjNzmEeXQfE5O1lxQvC0GYI6ZRDsLcyzugEYA==",
    "dev": true
    },
    "negotiator": {
    "version": "0.6.3",
    "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
    "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg=="
    },
    "node-addon-api": {
    "version": "2.0.2",
    "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-2.0.2.tgz",
    "integrity": "sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA=="
    },
    "node-fetch": {
    "version": "2.7.0",
    "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz",
    "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==",
    "requires": {
    "whatwg-url": "^5.0.0"
    }
    },
    "node-gyp": {
    "version": "9.4.0",
    "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-9.4.0.tgz",
    "integrity": "sha512-dMXsYP6gc9rRbejLXmTbVRYjAHw7ppswsKyMxuxJxxOHzluIO1rGp9TOQgjFJ+2MCqcOcQTOPB/8Xwhr+7s4Eg==",
    "requires": {
    "env-paths": "^2.2.0",
    "exponential-backoff": "^3.1.1",
    "glob": "^7.1.4",
    "graceful-fs": "^4.2.6",
    "make-fetch-happen": "^11.0.3",
    "nopt": "^6.0.0",
    "npmlog": "^6.0.0",
    "rimraf": "^3.0.2",
    "semver": "^7.3.5",
    "tar": "^6.1.2",
    "which": "^2.0.2"
    },
    "dependencies": {
    "brace-expansion": {
    "version": "1.1.11",
    "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
    "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
    "requires": {
    "balanced-match": "^1.0.0",
    "concat-map": "0.0.1"
    }
    },
    "glob": {
    "version": "7.2.3",
    "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
    "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
    "requires": {
    "fs.realpath": "^1.0.0",
    "inflight": "^1.0.4",
    "inherits": "2",
    "minimatch": "^3.1.1",
    "once": "^1.3.0",
    "path-is-absolute": "^1.0.0"
    }
    },
    "minimatch": {
    "version": "3.1.2",
    "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
    "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
    "requires": {
    "brace-expansion": "^1.1.7"
    }
    },
    "rimraf": {
    "version": "3.0.2",
    "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
    "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
    "requires": {
    "glob": "^7.1.3"
    }
    }
    }
    },
    "node-gyp-build": {
    "version": "4.6.0",
    "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.6.0.tgz",
    "integrity": "sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ=="
    },
    "nopt": {
    "version": "6.0.0",
    "resolved": "https://registry.npmjs.org/nopt/-/nopt-6.0.0.tgz",
    "integrity": "sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==",
    "requires": {
    "abbrev": "^1.0.0"
    }
    },
    "normalize-package-data": {
    "version": "5.0.0",
    "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-5.0.0.tgz",
    "integrity": "sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==",
    "requires": {
    "hosted-git-info": "^6.0.0",
    "is-core-module": "^2.8.1",
    "semver": "^7.3.5",
    "validate-npm-package-license": "^3.0.4"
    },
    "dependencies": {
    "hosted-git-info": {
    "version": "6.1.1",
    "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-6.1.1.tgz",
    "integrity": "sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==",
    "requires": {
    "lru-cache": "^7.5.1"
    }
    }
    }
    },
    "normalize-url": {
    "version": "8.0.0",
    "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.0.tgz",
    "integrity": "sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw=="
    },
    "npm-bundled": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-3.0.0.tgz",
    "integrity": "sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==",
    "requires": {
    "npm-normalize-package-bin": "^3.0.0"
    }
    },
    "npm-check-updates": {
    "version": "16.12.2",
    "resolved": "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-16.12.2.tgz",
    "integrity": "sha512-N0jeEcak3/+PS1O5JzwJ2+fvmQVv+084O4iRnDtcMBLcr9S7vPOBxwWgsEuNfj3shKFZRYOuh4NHB9nMenCHXA==",
    "requires": {
    "chalk": "^5.3.0",
    "cli-table3": "^0.6.3",
    "commander": "^10.0.1",
    "fast-memoize": "^2.5.2",
    "find-up": "5.0.0",
    "fp-and-or": "^0.1.3",
    "get-stdin": "^8.0.0",
    "globby": "^11.0.4",
    "hosted-git-info": "^5.1.0",
    "ini": "^4.1.1",
    "js-yaml": "^4.1.0",
    "json-parse-helpfulerror": "^1.0.3",
    "jsonlines": "^0.1.1",
    "lodash": "^4.17.21",
    "make-fetch-happen": "^11.1.1",
    "minimatch": "^9.0.3",
    "p-map": "^4.0.0",
    "pacote": "15.2.0",
    "parse-github-url": "^1.0.2",
    "progress": "^2.0.3",
    "prompts-ncu": "^3.0.0",
    "rc-config-loader": "^4.1.3",
    "remote-git-tags": "^3.0.0",
    "rimraf": "^5.0.1",
    "semver": "^7.5.4",
    "semver-utils": "^1.1.4",
    "source-map-support": "^0.5.21",
    "spawn-please": "^2.0.1",
    "strip-json-comments": "^5.0.1",
    "untildify": "^4.0.0",
    "update-notifier": "^6.0.2"
    },
    "dependencies": {
    "chalk": {
    "version": "5.3.0",
    "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz",
    "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w=="
    }
    }
    },
    "npm-install-checks": {
    "version": "6.2.0",
    "resolved": "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-6.2.0.tgz",
    "integrity": "sha512-744wat5wAAHsxa4590mWO0tJ8PKxR8ORZsH9wGpQc3nWTzozMAgBN/XyqYw7mg3yqLM8dLwEnwSfKMmXAjF69g==",
    "requires": {
    "semver": "^7.1.1"
    }
    },
    "npm-normalize-package-bin": {
    "version": "3.0.1",
    "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz",
    "integrity": "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ=="
    },
    "npm-package-arg": {
    "version": "10.1.0",
    "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-10.1.0.tgz",
    "integrity": "sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==",
    "requires": {
    "hosted-git-info": "^6.0.0",
    "proc-log": "^3.0.0",
    "semver": "^7.3.5",
    "validate-npm-package-name": "^5.0.0"
    },
    "dependencies": {
    "hosted-git-info": {
    "version": "6.1.1",
    "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-6.1.1.tgz",
    "integrity": "sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==",
    "requires": {
    "lru-cache": "^7.5.1"
    }
    }
    }
    },
    "npm-packlist": {
    "version": "7.0.4",
    "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-7.0.4.tgz",
    "integrity": "sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==",
    "requires": {
    "ignore-walk": "^6.0.0"
    }
    },
    "npm-pick-manifest": {
    "version": "8.0.2",
    "resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-8.0.2.tgz",
    "integrity": "sha512-1dKY+86/AIiq1tkKVD3l0WI+Gd3vkknVGAggsFeBkTvbhMQ1OND/LKkYv4JtXPKUJ8bOTCyLiqEg2P6QNdK+Gg==",
    "requires": {
    "npm-install-checks": "^6.0.0",
    "npm-normalize-package-bin": "^3.0.0",
    "npm-package-arg": "^10.0.0",
    "semver": "^7.3.5"
    }
    },
    "npm-registry-fetch": {
    "version": "14.0.5",
    "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-14.0.5.tgz",
    "integrity": "sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA==",
    "requires": {
    "make-fetch-happen": "^11.0.0",
    "minipass": "^5.0.0",
    "minipass-fetch": "^3.0.0",
    "minipass-json-stream": "^1.0.1",
    "minizlib": "^2.1.2",
    "npm-package-arg": "^10.0.0",
    "proc-log": "^3.0.0"
    }
    },
    "npmlog": {
    "version": "6.0.2",
    "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz",
    "integrity": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==",
    "requires": {
    "are-we-there-yet": "^3.0.0",
    "console-control-strings": "^1.1.0",
    "gauge": "^4.0.3",
    "set-blocking": "^2.0.0"
    }
    },
    "object-inspect": {
    "version": "1.12.3",
    "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz",
    "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g=="
    },
    "on-exit-leak-free": {
    "version": "0.2.0",
    "resolved": "https://registry.npmjs.org/on-exit-leak-free/-/on-exit-leak-free-0.2.0.tgz",
    "integrity": "sha512-dqaz3u44QbRXQooZLTUKU41ZrzYrcvLISVgbrzbyCMxpmSLJvZ3ZamIJIZ29P6OhZIkNIQKosdeM6t1LYbA9hg=="
    },
    "once": {
    "version": "1.4.0",
    "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
    "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
    "requires": {
    "wrappy": "1"
    }
    },
    "openpgp": {
    "version": "5.10.2",
    "resolved": "https://registry.npmjs.org/openpgp/-/openpgp-5.10.2.tgz",
    "integrity": "sha512-nRqMp4o31rBagWB02tgfKCsocXWq4uYobZf9GDVlD5rQXBq/wRIZHiDhGX1dlDAI2inkZcPd2dSZOqmtGnsK1A==",
    "requires": {
    "asn1.js": "^5.0.0"
    }
    },
    "p-cancelable": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-3.0.0.tgz",
    "integrity": "sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw=="
    },
    "p-limit": {
    "version": "3.1.0",
    "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
    "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
    "requires": {
    "yocto-queue": "^0.1.0"
    }
    },
    "p-locate": {
    "version": "5.0.0",
    "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
    "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
    "requires": {
    "p-limit": "^3.0.2"
    }
    },
    "p-map": {
    "version": "4.0.0",
    "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz",
    "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==",
    "requires": {
    "aggregate-error": "^3.0.0"
    }
    },
    "p-try": {
    "version": "2.2.0",
    "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
    "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ=="
    },
    "package-json": {
    "version": "8.1.1",
    "resolved": "https://registry.npmjs.org/package-json/-/package-json-8.1.1.tgz",
    "integrity": "sha512-cbH9IAIJHNj9uXi196JVsRlt7cHKak6u/e6AkL/bkRelZ7rlL3X1YKxsZwa36xipOEKAsdtmaG6aAJoM1fx2zA==",
    "requires": {
    "got": "^12.1.0",
    "registry-auth-token": "^5.0.1",
    "registry-url": "^6.0.0",
    "semver": "^7.3.7"
    }
    },
    "pacote": {
    "version": "15.2.0",
    "resolved": "https://registry.npmjs.org/pacote/-/pacote-15.2.0.tgz",
    "integrity": "sha512-rJVZeIwHTUta23sIZgEIM62WYwbmGbThdbnkt81ravBplQv+HjyroqnLRNH2+sLJHcGZmLRmhPwACqhfTcOmnA==",
    "requires": {
    "@npmcli/git": "^4.0.0",
    "@npmcli/installed-package-contents": "^2.0.1",
    "@npmcli/promise-spawn": "^6.0.1",
    "@npmcli/run-script": "^6.0.0",
    "cacache": "^17.0.0",
    "fs-minipass": "^3.0.0",
    "minipass": "^5.0.0",
    "npm-package-arg": "^10.0.0",
    "npm-packlist": "^7.0.0",
    "npm-pick-manifest": "^8.0.0",
    "npm-registry-fetch": "^14.0.0",
    "proc-log": "^3.0.0",
    "promise-retry": "^2.0.1",
    "read-package-json": "^6.0.0",
    "read-package-json-fast": "^3.0.0",
    "sigstore": "^1.3.0",
    "ssri": "^10.0.0",
    "tar": "^6.1.11"
    }
    },
    "parse-github-url": {
    "version": "1.0.2",
    "resolved": "https://registry.npmjs.org/parse-github-url/-/parse-github-url-1.0.2.tgz",
    "integrity": "sha512-kgBf6avCbO3Cn6+RnzRGLkUsv4ZVqv/VfAYkRsyBcgkshNvVBkRn1FEZcW0Jb+npXQWm2vHPnnOqFteZxRRGNw=="
    },
    "path-exists": {
    "version": "4.0.0",
    "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
    "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w=="
    },
    "path-is-absolute": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
    "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg=="
    },
    "path-key": {
    "version": "3.1.1",
    "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
    "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="
    },
    "path-scurry": {
    "version": "1.10.1",
    "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz",
    "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==",
    "requires": {
    "lru-cache": "^9.1.1 || ^10.0.0",
    "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
    },
    "dependencies": {
    "lru-cache": {
    "version": "10.0.1",
    "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.1.tgz",
    "integrity": "sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g=="
    }
    }
    },
    "path-type": {
    "version": "4.0.0",
    "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
    "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw=="
    },
    "pbkdf2": {
    "version": "3.1.2",
    "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz",
    "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==",
    "requires": {
    "create-hash": "^1.1.2",
    "create-hmac": "^1.1.4",
    "ripemd160": "^2.0.1",
    "safe-buffer": "^5.0.1",
    "sha.js": "^2.4.8"
    }
    },
    "picocolors": {
    "version": "1.0.0",
    "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
    "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==",
    "devOptional": true
    },
    "picomatch": {
    "version": "2.3.1",
    "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
    "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="
    },
    "pify": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
    "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg=="
    },
    "pino": {
    "version": "7.11.0",
    "resolved": "https://registry.npmjs.org/pino/-/pino-7.11.0.tgz",
    "integrity": "sha512-dMACeu63HtRLmCG8VKdy4cShCPKaYDR4youZqoSWLxl5Gu99HUw8bw75thbPv9Nip+H+QYX8o3ZJbTdVZZ2TVg==",
    "requires": {
    "atomic-sleep": "^1.0.0",
    "fast-redact": "^3.0.0",
    "on-exit-leak-free": "^0.2.0",
    "pino-abstract-transport": "v0.5.0",
    "pino-std-serializers": "^4.0.0",
    "process-warning": "^1.0.0",
    "quick-format-unescaped": "^4.0.3",
    "real-require": "^0.1.0",
    "safe-stable-stringify": "^2.1.0",
    "sonic-boom": "^2.2.1",
    "thread-stream": "^0.15.1"
    }
    },
    "pino-abstract-transport": {
    "version": "0.5.0",
    "resolved": "https://registry.npmjs.org/pino-abstract-transport/-/pino-abstract-transport-0.5.0.tgz",
    "integrity": "sha512-+KAgmVeqXYbTtU2FScx1XS3kNyfZ5TrXY07V96QnUSFqo2gAqlvmaxH67Lj7SWazqsMabf+58ctdTcBgnOLUOQ==",
    "requires": {
    "duplexify": "^4.1.2",
    "split2": "^4.0.0"
    }
    },
    "pino-std-serializers": {
    "version": "4.0.0",
    "resolved": "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-4.0.0.tgz",
    "integrity": "sha512-cK0pekc1Kjy5w9V2/n+8MkZwusa6EyyxfeQCB799CQRhRt/CqYKiWs5adeu8Shve2ZNffvfC/7J64A2PJo1W/Q=="
    },
    "plyr": {
    "version": "3.7.8",
    "resolved": "https://registry.npmjs.org/plyr/-/plyr-3.7.8.tgz",
    "integrity": "sha512-yG/EHDobwbB/uP+4Bm6eUpJ93f8xxHjjk2dYcD1Oqpe1EcuQl5tzzw9Oq+uVAzd2lkM11qZfydSiyIpiB8pgdA==",
    "requires": {
    "core-js": "^3.26.1",
    "custom-event-polyfill": "^1.0.7",
    "loadjs": "^4.2.0",
    "rangetouch": "^2.0.1",
    "url-polyfill": "^1.1.12"
    }
    },
    "pngjs": {
    "version": "5.0.0",
    "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-5.0.0.tgz",
    "integrity": "sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw=="
    },
    "postcss": {
    "version": "8.4.31",
    "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz",
    "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==",
    "devOptional": true,
    "requires": {
    "nanoid": "^3.3.6",
    "picocolors": "^1.0.0",
    "source-map-js": "^1.0.2"
    }
    },
    "preact": {
    "version": "10.18.1",
    "resolved": "https://registry.npmjs.org/preact/-/preact-10.18.1.tgz",
    "integrity": "sha512-mKUD7RRkQQM6s7Rkmi7IFkoEHjuFqRQUaXamO61E6Nn7vqF/bo7EZCmSyrUnp2UWHw0O7XjZ2eeXis+m7tf4lg=="
    },
    "proc-log": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-3.0.0.tgz",
    "integrity": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A=="
    },
    "process": {
    "version": "0.11.10",
    "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
    "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A=="
    },
    "process-warning": {
    "version": "1.0.0",
    "resolved": "https://registry.npmjs.org/process-warning/-/process-warning-1.0.0.tgz",
    "integrity": "sha512-du4wfLyj4yCZq1VupnVSZmRsPJsNuxoDQFdCFHLaYiEbFBD7QE0a+I4D7hOxrVnh78QE/YipFAj9lXHiXocV+Q=="
    },
    "progress": {
    "version": "2.0.3",
    "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz",
    "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA=="
    },
    "promise-inflight": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz",
    "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g=="
    },
    "promise-retry": {
    "version": "2.0.1",
    "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz",
    "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==",
    "requires": {
    "err-code": "^2.0.2",
    "retry": "^0.12.0"
    }
    },
    "prompts-ncu": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/prompts-ncu/-/prompts-ncu-3.0.0.tgz",
    "integrity": "sha512-qyz9UxZ5MlPKWVhWrCmSZ1ahm2GVYdjLb8og2sg0IPth1KRuhcggHGuijz0e41dkx35p1t1q3GRISGH7QGALFA==",
    "requires": {
    "kleur": "^4.0.1",
    "sisteransi": "^1.0.5"
    }
    },
    "proto-list": {
    "version": "1.2.4",
    "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz",
    "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA=="
    },
    "proxy-compare": {
    "version": "2.5.1",
    "resolved": "https://registry.npmjs.org/proxy-compare/-/proxy-compare-2.5.1.tgz",
    "integrity": "sha512-oyfc0Tx87Cpwva5ZXezSp5V9vht1c7dZBhvuV/y3ctkgMVUmiAGDVeeB0dKhGSyT0v1ZTEQYpe/RXlBVBNuCLA=="
    },
    "proxy-from-env": {
    "version": "1.1.0",
    "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
    "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg=="
    },
    "prr": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz",
    "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw=="
    },
    "pupa": {
    "version": "3.1.0",
    "resolved": "https://registry.npmjs.org/pupa/-/pupa-3.1.0.tgz",
    "integrity": "sha512-FLpr4flz5xZTSJxSeaheeMKN/EDzMdK7b8PTOC6a5PYFKTucWbdqjgqaEyH0shFiSJrVB1+Qqi4Tk19ccU6Aug==",
    "requires": {
    "escape-goat": "^4.0.0"
    }
    },
    "qrcode": {
    "version": "1.5.3",
    "resolved": "https://registry.npmjs.org/qrcode/-/qrcode-1.5.3.tgz",
    "integrity": "sha512-puyri6ApkEHYiVl4CFzo1tDkAZ+ATcnbJrJ6RiBM1Fhctdn/ix9MTE3hRph33omisEbC/2fcfemsseiKgBPKZg==",
    "requires": {
    "dijkstrajs": "^1.0.1",
    "encode-utf8": "^1.0.3",
    "pngjs": "^5.0.0",
    "yargs": "^15.3.1"
    }
    },
    "qs": {
    "version": "6.11.2",
    "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.2.tgz",
    "integrity": "sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==",
    "requires": {
    "side-channel": "^1.0.4"
    }
    },
    "query-string": {
    "version": "6.14.1",
    "resolved": "https://registry.npmjs.org/query-string/-/query-string-6.14.1.tgz",
    "integrity": "sha512-XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw==",
    "requires": {
    "decode-uri-component": "^0.2.0",
    "filter-obj": "^1.1.0",
    "split-on-first": "^1.0.0",
    "strict-uri-encode": "^2.0.0"
    }
    },
    "queue-microtask": {
    "version": "1.2.3",
    "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
    "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A=="
    },
    "quick-format-unescaped": {
    "version": "4.0.4",
    "resolved": "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-4.0.4.tgz",
    "integrity": "sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg=="
    },
    "quick-lru": {
    "version": "5.1.1",
    "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz",
    "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA=="
    },
    "randombytes": {
    "version": "2.1.0",
    "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz",
    "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==",
    "requires": {
    "safe-buffer": "^5.1.0"
    }
    },
    "rangetouch": {
    "version": "2.0.1",
    "resolved": "https://registry.npmjs.org/rangetouch/-/rangetouch-2.0.1.tgz",
    "integrity": "sha512-sln+pNSc8NGaHoLzwNBssFSf/rSYkqeBXzX1AtJlkJiUaVSJSbRAWJk+4omsXkN+EJalzkZhWQ3th1m0FpR5xA=="
    },
    "rc": {
    "version": "1.2.8",
    "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz",
    "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==",
    "requires": {
    "deep-extend": "^0.6.0",
    "ini": "~1.3.0",
    "minimist": "^1.2.0",
    "strip-json-comments": "~2.0.1"
    },
    "dependencies": {
    "ini": {
    "version": "1.3.8",
    "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
    "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="
    },
    "strip-json-comments": {
    "version": "2.0.1",
    "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
    "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ=="
    }
    }
    },
    "rc-config-loader": {
    "version": "4.1.3",
    "resolved": "https://registry.npmjs.org/rc-config-loader/-/rc-config-loader-4.1.3.tgz",
    "integrity": "sha512-kD7FqML7l800i6pS6pvLyIE2ncbk9Du8Q0gp/4hMPhJU6ZxApkoLcGD8ZeqgiAlfwZ6BlETq6qqe+12DUL207w==",
    "requires": {
    "debug": "^4.3.4",
    "js-yaml": "^4.1.0",
    "json5": "^2.2.2",
    "require-from-string": "^2.0.2"
    }
    },
    "react": {
    "version": "18.2.0",
    "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz",
    "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==",
    "requires": {
    "loose-envify": "^1.1.0"
    }
    },
    "react-dom": {
    "version": "18.2.0",
    "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz",
    "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==",
    "optional": true,
    "requires": {
    "loose-envify": "^1.1.0",
    "scheduler": "^0.23.0"
    }
    },
    "read-package-json": {
    "version": "6.0.4",
    "resolved": "https://registry.npmjs.org/read-package-json/-/read-package-json-6.0.4.tgz",
    "integrity": "sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw==",
    "requires": {
    "glob": "^10.2.2",
    "json-parse-even-better-errors": "^3.0.0",
    "normalize-package-data": "^5.0.0",
    "npm-normalize-package-bin": "^3.0.0"
    }
    },
    "read-package-json-fast": {
    "version": "3.0.2",
    "resolved": "https://registry.npmjs.org/read-package-json-fast/-/read-package-json-fast-3.0.2.tgz",
    "integrity": "sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==",
    "requires": {
    "json-parse-even-better-errors": "^3.0.0",
    "npm-normalize-package-bin": "^3.0.0"
    }
    },
    "readable-stream": {
    "version": "3.6.2",
    "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
    "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
    "requires": {
    "inherits": "^2.0.3",
    "string_decoder": "^1.1.1",
    "util-deprecate": "^1.0.1"
    }
    },
    "real-require": {
    "version": "0.1.0",
    "resolved": "https://registry.npmjs.org/real-require/-/real-require-0.1.0.tgz",
    "integrity": "sha512-r/H9MzAWtrv8aSVjPCMFpDMl5q66GqtmmRkRjpHTsp4zBAa+snZyiQNlMONiUmEJcsnaw0wCauJ2GWODr/aFkg=="
    },
    "regenerator-runtime": {
    "version": "0.14.0",
    "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz",
    "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA=="
    },
    "registry-auth-token": {
    "version": "5.0.2",
    "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-5.0.2.tgz",
    "integrity": "sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==",
    "requires": {
    "@pnpm/npm-conf": "^2.1.0"
    }
    },
    "registry-url": {
    "version": "6.0.1",
    "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-6.0.1.tgz",
    "integrity": "sha512-+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q==",
    "requires": {
    "rc": "1.2.8"
    }
    },
    "remote-git-tags": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/remote-git-tags/-/remote-git-tags-3.0.0.tgz",
    "integrity": "sha512-C9hAO4eoEsX+OXA4rla66pXZQ+TLQ8T9dttgQj18yuKlPMTVkIkdYXvlMC55IuUsIkV6DpmQYi10JKFLaU+l7w=="
    },
    "require-directory": {
    "version": "2.1.1",
    "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
    "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q=="
    },
    "require-from-string": {
    "version": "2.0.2",
    "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
    "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw=="
    },
    "require-main-filename": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz",
    "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg=="
    },
    "resolve-alpn": {
    "version": "1.2.1",
    "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz",
    "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g=="
    },
    "responselike": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/responselike/-/responselike-3.0.0.tgz",
    "integrity": "sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==",
    "requires": {
    "lowercase-keys": "^3.0.0"
    }
    },
    "retry": {
    "version": "0.12.0",
    "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz",
    "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow=="
    },
    "reusify": {
    "version": "1.0.4",
    "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
    "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw=="
    },
    "rimraf": {
    "version": "5.0.1",
    "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.1.tgz",
    "integrity": "sha512-OfFZdwtd3lZ+XZzYP/6gTACubwFcHdLRqS9UX3UwpU2dnGQYkPFISRwvM3w9IiB2w7bW5qGo/uAwE4SmXXSKvg==",
    "requires": {
    "glob": "^10.2.5"
    }
    },
    "ripemd160": {
    "version": "2.0.2",
    "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz",
    "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==",
    "requires": {
    "hash-base": "^3.0.0",
    "inherits": "^2.0.1"
    }
    },
    "rlp": {
    "version": "2.2.7",
    "resolved": "https://registry.npmjs.org/rlp/-/rlp-2.2.7.tgz",
    "integrity": "sha512-d5gdPmgQ0Z+AklL2NVXr/IoSjNZFfTVvQWzL/AM2AOcSzYP2xjlb0AC8YyCLc41MSNf6P6QVtjgPdmVtzb+4lQ==",
    "requires": {
    "bn.js": "^5.2.0"
    },
    "dependencies": {
    "bn.js": {
    "version": "5.2.1",
    "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz",
    "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ=="
    }
    }
    },
    "rollup": {
    "version": "3.28.0",
    "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.28.0.tgz",
    "integrity": "sha512-d7zhvo1OUY2SXSM6pfNjgD5+d0Nz87CUp4mt8l/GgVP3oBsPwzNvSzyu1me6BSG9JIgWNTVcafIXBIyM8yQ3yw==",
    "dev": true,
    "requires": {
    "fsevents": "~2.3.2"
    }
    },
    "rpc-websockets": {
    "version": "7.6.0",
    "resolved": "https://registry.npmjs.org/rpc-websockets/-/rpc-websockets-7.6.0.tgz",
    "integrity": "sha512-Jgcs8q6t8Go98dEulww1x7RysgTkzpCMelVxZW4hvuyFtOGpeUz9prpr2KjUa/usqxgFCd9Tu3+yhHEP9GVmiQ==",
    "requires": {
    "@babel/runtime": "^7.17.2",
    "bufferutil": "^4.0.1",
    "eventemitter3": "^4.0.7",
    "utf-8-validate": "^5.0.2",
    "uuid": "^8.3.2",
    "ws": "^8.5.0"
    }
    },
    "run-parallel": {
    "version": "1.2.0",
    "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
    "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
    "requires": {
    "queue-microtask": "^1.2.2"
    }
    },
    "rxjs": {
    "version": "6.6.7",
    "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz",
    "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==",
    "requires": {
    "tslib": "^1.9.0"
    },
    "dependencies": {
    "tslib": {
    "version": "1.14.1",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
    "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
    }
    }
    },
    "safe-buffer": {
    "version": "5.2.1",
    "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
    "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="
    },
    "safe-json-utils": {
    "version": "1.1.1",
    "resolved": "https://registry.npmjs.org/safe-json-utils/-/safe-json-utils-1.1.1.tgz",
    "integrity": "sha512-SAJWGKDs50tAbiDXLf89PDwt9XYkWyANFWVzn4dTXl5QyI8t2o/bW5/OJl3lvc2WVU4MEpTo9Yz5NVFNsp+OJQ=="
    },
    "safe-stable-stringify": {
    "version": "2.4.3",
    "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.3.tgz",
    "integrity": "sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g=="
    },
    "safer-buffer": {
    "version": "2.1.2",
    "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
    "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
    },
    "scheduler": {
    "version": "0.23.0",
    "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz",
    "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==",
    "optional": true,
    "requires": {
    "loose-envify": "^1.1.0"
    }
    },
    "scrypt-js": {
    "version": "3.0.1",
    "resolved": "https://registry.npmjs.org/scrypt-js/-/scrypt-js-3.0.1.tgz",
    "integrity": "sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA=="
    },
    "secp256k1": {
    "version": "4.0.3",
    "resolved": "https://registry.npmjs.org/secp256k1/-/secp256k1-4.0.3.tgz",
    "integrity": "sha512-NLZVf+ROMxwtEj3Xa562qgv2BK5e2WNmXPiOdVIPLgs6lyTzMvBq0aWTYMI5XCP9jZMVKOcqZLw/Wc4vDkuxhA==",
    "requires": {
    "elliptic": "^6.5.4",
    "node-addon-api": "^2.0.0",
    "node-gyp-build": "^4.2.0"
    }
    },
    "semaphore-async-await": {
    "version": "1.5.1",
    "resolved": "https://registry.npmjs.org/semaphore-async-await/-/semaphore-async-await-1.5.1.tgz",
    "integrity": "sha512-b/ptP11hETwYWpeilHXXQiV5UJNJl7ZWWooKRE5eBIYWoom6dZ0SluCIdCtKycsMtZgKWE01/qAw6jblw1YVhg=="
    },
    "semver": {
    "version": "7.5.4",
    "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz",
    "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==",
    "requires": {
    "lru-cache": "^6.0.0"
    },
    "dependencies": {
    "lru-cache": {
    "version": "6.0.0",
    "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
    "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
    "requires": {
    "yallist": "^4.0.0"
    }
    }
    }
    },
    "semver-diff": {
    "version": "4.0.0",
    "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-4.0.0.tgz",
    "integrity": "sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==",
    "requires": {
    "semver": "^7.3.5"
    }
    },
    "semver-utils": {
    "version": "1.1.4",
    "resolved": "https://registry.npmjs.org/semver-utils/-/semver-utils-1.1.4.tgz",
    "integrity": "sha512-EjnoLE5OGmDAVV/8YDoN5KiajNadjzIp9BAHOhYeQHt7j0UWxjmgsx4YD48wp4Ue1Qogq38F1GNUJNqF1kKKxA=="
    },
    "set-blocking": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
    "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw=="
    },
    "setimmediate": {
    "version": "1.0.5",
    "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz",
    "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA=="
    },
    "sha.js": {
    "version": "2.4.11",
    "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz",
    "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==",
    "requires": {
    "inherits": "^2.0.1",
    "safe-buffer": "^5.0.1"
    }
    },
    "shebang-command": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
    "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
    "requires": {
    "shebang-regex": "^3.0.0"
    }
    },
    "shebang-regex": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
    "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="
    },
    "side-channel": {
    "version": "1.0.4",
    "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz",
    "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==",
    "requires": {
    "call-bind": "^1.0.0",
    "get-intrinsic": "^1.0.2",
    "object-inspect": "^1.9.0"
    }
    },
    "signal-exit": {
    "version": "4.1.0",
    "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
    "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw=="
    },
    "sigstore": {
    "version": "1.9.0",
    "resolved": "https://registry.npmjs.org/sigstore/-/sigstore-1.9.0.tgz",
    "integrity": "sha512-0Zjz0oe37d08VeOtBIuB6cRriqXse2e8w+7yIy2XSXjshRKxbc2KkhXjL229jXSxEm7UbcjS76wcJDGQddVI9A==",
    "requires": {
    "@sigstore/bundle": "^1.1.0",
    "@sigstore/protobuf-specs": "^0.2.0",
    "@sigstore/sign": "^1.0.0",
    "@sigstore/tuf": "^1.0.3",
    "make-fetch-happen": "^11.0.1"
    }
    },
    "sisteransi": {
    "version": "1.0.5",
    "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz",
    "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg=="
    },
    "slash": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
    "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q=="
    },
    "smart-buffer": {
    "version": "4.2.0",
    "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz",
    "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg=="
    },
    "socks": {
    "version": "2.7.1",
    "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz",
    "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==",
    "requires": {
    "ip": "^2.0.0",
    "smart-buffer": "^4.2.0"
    }
    },
    "socks-proxy-agent": {
    "version": "7.0.0",
    "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz",
    "integrity": "sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==",
    "requires": {
    "agent-base": "^6.0.2",
    "debug": "^4.3.3",
    "socks": "^2.6.2"
    }
    },
    "sonic-boom": {
    "version": "2.8.0",
    "resolved": "https://registry.npmjs.org/sonic-boom/-/sonic-boom-2.8.0.tgz",
    "integrity": "sha512-kuonw1YOYYNOve5iHdSahXPOK49GqwA+LZhI6Wz/l0rP57iKyXXIHaRagOBHAPmGwJC6od2Z9zgvZ5loSgMlVg==",
    "requires": {
    "atomic-sleep": "^1.0.0"
    }
    },
    "source-map": {
    "version": "0.6.1",
    "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
    "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
    },
    "source-map-js": {
    "version": "1.0.2",
    "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz",
    "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==",
    "devOptional": true
    },
    "source-map-support": {
    "version": "0.5.21",
    "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz",
    "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==",
    "requires": {
    "buffer-from": "^1.0.0",
    "source-map": "^0.6.0"
    }
    },
    "spawn-please": {
    "version": "2.0.1",
    "resolved": "https://registry.npmjs.org/spawn-please/-/spawn-please-2.0.1.tgz",
    "integrity": "sha512-W+cFbZR2q2mMTfjz5ZGvhBAiX+e/zczFCNlbS9mxiSdYswBXwUuBUT+a0urH+xZZa8f/bs0mXHyZsZHR9hKogA==",
    "requires": {
    "cross-spawn": "^7.0.3"
    }
    },
    "spdx-correct": {
    "version": "3.2.0",
    "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz",
    "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==",
    "requires": {
    "spdx-expression-parse": "^3.0.0",
    "spdx-license-ids": "^3.0.0"
    }
    },
    "spdx-exceptions": {
    "version": "2.3.0",
    "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz",
    "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A=="
    },
    "spdx-expression-parse": {
    "version": "3.0.1",
    "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz",
    "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==",
    "requires": {
    "spdx-exceptions": "^2.1.0",
    "spdx-license-ids": "^3.0.0"
    }
    },
    "spdx-license-ids": {
    "version": "3.0.13",
    "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz",
    "integrity": "sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w=="
    },
    "split-on-first": {
    "version": "1.1.0",
    "resolved": "https://registry.npmjs.org/split-on-first/-/split-on-first-1.1.0.tgz",
    "integrity": "sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw=="
    },
    "split2": {
    "version": "4.2.0",
    "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz",
    "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg=="
    },
    "ssri": {
    "version": "10.0.5",
    "resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.5.tgz",
    "integrity": "sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==",
    "requires": {
    "minipass": "^7.0.3"
    },
    "dependencies": {
    "minipass": {
    "version": "7.0.3",
    "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.3.tgz",
    "integrity": "sha512-LhbbwCfz3vsb12j/WkWQPZfKTsgqIe1Nf/ti1pKjYESGLHIVjWU96G9/ljLH4F9mWNVhlQOm0VySdAWzf05dpg=="
    }
    }
    },
    "stream-browserify": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-3.0.0.tgz",
    "integrity": "sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==",
    "requires": {
    "inherits": "~2.0.4",
    "readable-stream": "^3.5.0"
    }
    },
    "stream-shift": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz",
    "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ=="
    },
    "strict-uri-encode": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz",
    "integrity": "sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ=="
    },
    "string_decoder": {
    "version": "1.3.0",
    "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
    "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
    "requires": {
    "safe-buffer": "~5.2.0"
    }
    },
    "string-width": {
    "version": "4.2.3",
    "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
    "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
    "requires": {
    "emoji-regex": "^8.0.0",
    "is-fullwidth-code-point": "^3.0.0",
    "strip-ansi": "^6.0.1"
    },
    "dependencies": {
    "ansi-regex": {
    "version": "5.0.1",
    "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
    "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
    },
    "strip-ansi": {
    "version": "6.0.1",
    "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
    "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
    "requires": {
    "ansi-regex": "^5.0.1"
    }
    }
    }
    },
    "string-width-cjs": {
    "version": "npm:string-width@4.2.3",
    "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
    "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
    "requires": {
    "emoji-regex": "^8.0.0",
    "is-fullwidth-code-point": "^3.0.0",
    "strip-ansi": "^6.0.1"
    },
    "dependencies": {
    "ansi-regex": {
    "version": "5.0.1",
    "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
    "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
    },
    "strip-ansi": {
    "version": "6.0.1",
    "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
    "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
    "requires": {
    "ansi-regex": "^5.0.1"
    }
    }
    }
    },
    "strip-ansi": {
    "version": "7.1.0",
    "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
    "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
    "requires": {
    "ansi-regex": "^6.0.1"
    }
    },
    "strip-ansi-cjs": {
    "version": "npm:strip-ansi@6.0.1",
    "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
    "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
    "requires": {
    "ansi-regex": "^5.0.1"
    },
    "dependencies": {
    "ansi-regex": {
    "version": "5.0.1",
    "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
    "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
    }
    }
    },
    "strip-json-comments": {
    "version": "5.0.1",
    "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-5.0.1.tgz",
    "integrity": "sha512-0fk9zBqO67Nq5M/m45qHCJxylV/DhBlIOVExqgOMiCCrzrhU6tCibRXNqE3jwJLftzE9SNuZtYbpzcO+i9FiKw=="
    },
    "superstruct": {
    "version": "0.14.2",
    "resolved": "https://registry.npmjs.org/superstruct/-/superstruct-0.14.2.tgz",
    "integrity": "sha512-nPewA6m9mR3d6k7WkZ8N8zpTWfenFH3q9pA2PkuiZxINr9DKB2+40wEQf0ixn8VaGuJ78AB6iWOtStI+/4FKZQ=="
    },
    "supports-color": {
    "version": "7.2.0",
    "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
    "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
    "dev": true,
    "requires": {
    "has-flag": "^4.0.0"
    }
    },
    "tar": {
    "version": "6.1.15",
    "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.15.tgz",
    "integrity": "sha512-/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A==",
    "requires": {
    "chownr": "^2.0.0",
    "fs-minipass": "^2.0.0",
    "minipass": "^5.0.0",
    "minizlib": "^2.1.1",
    "mkdirp": "^1.0.3",
    "yallist": "^4.0.0"
    },
    "dependencies": {
    "fs-minipass": {
    "version": "2.1.0",
    "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz",
    "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==",
    "requires": {
    "minipass": "^3.0.0"
    },
    "dependencies": {
    "minipass": {
    "version": "3.3.6",
    "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
    "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
    "requires": {
    "yallist": "^4.0.0"
    }
    }
    }
    }
    }
    },
    "text-encoding-utf-8": {
    "version": "1.0.2",
    "resolved": "https://registry.npmjs.org/text-encoding-utf-8/-/text-encoding-utf-8-1.0.2.tgz",
    "integrity": "sha512-8bw4MY9WjdsD2aMtO0OzOCY3pXGYNx2d2FfHRVUKkiCPDWjKuOlhLVASS+pD7VkLTVjW268LYJHwsnPFlBpbAg=="
    },
    "thread-stream": {
    "version": "0.15.2",
    "resolved": "https://registry.npmjs.org/thread-stream/-/thread-stream-0.15.2.tgz",
    "integrity": "sha512-UkEhKIg2pD+fjkHQKyJO3yoIvAP3N6RlNFt2dUhcS1FGvCD1cQa1M/PGknCLFIyZdtJOWQjejp7bdNqmN7zwdA==",
    "requires": {
    "real-require": "^0.1.0"
    }
    },
    "through": {
    "version": "2.3.8",
    "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
    "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg=="
    },
    "to-regex-range": {
    "version": "5.0.1",
    "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
    "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
    "requires": {
    "is-number": "^7.0.0"
    }
    },
    "toggle-selection": {
    "version": "1.0.6",
    "resolved": "https://registry.npmjs.org/toggle-selection/-/toggle-selection-1.0.6.tgz",
    "integrity": "sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ=="
    },
    "tr46": {
    "version": "0.0.3",
    "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
    "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw=="
    },
    "tslib": {
    "version": "2.4.0",
    "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz",
    "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ=="
    },
    "tuf-js": {
    "version": "1.1.7",
    "resolved": "https://registry.npmjs.org/tuf-js/-/tuf-js-1.1.7.tgz",
    "integrity": "sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg==",
    "requires": {
    "@tufjs/models": "1.0.4",
    "debug": "^4.3.4",
    "make-fetch-happen": "^11.1.1"
    }
    },
    "tweetnacl": {
    "version": "1.0.3",
    "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-1.0.3.tgz",
    "integrity": "sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw=="
    },
    "tweetnacl-util": {
    "version": "0.15.1",
    "resolved": "https://registry.npmjs.org/tweetnacl-util/-/tweetnacl-util-0.15.1.tgz",
    "integrity": "sha512-RKJBIj8lySrShN4w6i/BonWp2Z/uxwC3h4y7xsRrpP59ZboCd0GpEVsOnMDYLMmKBpYhb5TgHzZXy7wTfYFBRw=="
    },
    "type-fest": {
    "version": "2.19.0",
    "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz",
    "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA=="
    },
    "typedarray-to-buffer": {
    "version": "3.1.5",
    "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz",
    "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==",
    "requires": {
    "is-typedarray": "^1.0.0"
    }
    },
    "typescript": {
    "version": "5.1.6",
    "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.6.tgz",
    "integrity": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA=="
    },
    "uint8arrays": {
    "version": "3.1.1",
    "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-3.1.1.tgz",
    "integrity": "sha512-+QJa8QRnbdXVpHYjLoTpJIdCTiw9Ir62nocClWuXIq2JIh4Uta0cQsTSpFL678p2CN8B+XSApwcU+pQEqVpKWg==",
    "requires": {
    "multiformats": "^9.4.2"
    }
    },
    "unique-filename": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-3.0.0.tgz",
    "integrity": "sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==",
    "requires": {
    "unique-slug": "^4.0.0"
    }
    },
    "unique-names-generator": {
    "version": "4.7.1",
    "resolved": "https://registry.npmjs.org/unique-names-generator/-/unique-names-generator-4.7.1.tgz",
    "integrity": "sha512-lMx9dX+KRmG8sq6gulYYpKWZc9RlGsgBR6aoO8Qsm3qvkSJ+3rAymr+TnV8EDMrIrwuFJ4kruzMWM/OpYzPoow=="
    },
    "unique-slug": {
    "version": "4.0.0",
    "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-4.0.0.tgz",
    "integrity": "sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==",
    "requires": {
    "imurmurhash": "^0.1.4"
    }
    },
    "unique-string": {
    "version": "3.0.0",
    "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-3.0.0.tgz",
    "integrity": "sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==",
    "requires": {
    "crypto-random-string": "^4.0.0"
    }
    },
    "universalify": {
    "version": "2.0.0",
    "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
    "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
    "dev": true
    },
    "untildify": {
    "version": "4.0.0",
    "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz",
    "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw=="
    },
    "update-notifier": {
    "version": "6.0.2",
    "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-6.0.2.tgz",
    "integrity": "sha512-EDxhTEVPZZRLWYcJ4ZXjGFN0oP7qYvbXWzEgRm/Yql4dHX5wDbvh89YHP6PK1lzZJYrMtXUuZZz8XGK+U6U1og==",
    "requires": {
    "boxen": "^7.0.0",
    "chalk": "^5.0.1",
    "configstore": "^6.0.0",
    "has-yarn": "^3.0.0",
    "import-lazy": "^4.0.0",
    "is-ci": "^3.0.1",
    "is-installed-globally": "^0.4.0",
    "is-npm": "^6.0.0",
    "is-yarn-global": "^0.4.0",
    "latest-version": "^7.0.0",
    "pupa": "^3.1.0",
    "semver": "^7.3.7",
    "semver-diff": "^4.0.0",
    "xdg-basedir": "^5.1.0"
    },
    "dependencies": {
    "chalk": {
    "version": "5.3.0",
    "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz",
    "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w=="
    }
    }
    },
    "url-polyfill": {
    "version": "1.1.12",
    "resolved": "https://registry.npmjs.org/url-polyfill/-/url-polyfill-1.1.12.tgz",
    "integrity": "sha512-mYFmBHCapZjtcNHW0MDq9967t+z4Dmg5CJ0KqysK3+ZbyoNOWQHksGCTWwDhxGXllkWlOc10Xfko6v4a3ucM6A=="
    },
    "use-strict": {
    "version": "1.0.1",
    "resolved": "https://registry.npmjs.org/use-strict/-/use-strict-1.0.1.tgz",
    "integrity": "sha512-IeiWvvEXfW5ltKVMkxq6FvNf2LojMKvB2OCeja6+ct24S1XOmQw2dGr2JyndwACWAGJva9B7yPHwAmeA9QCqAQ=="
    },
    "use-sync-external-store": {
    "version": "1.2.0",
    "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz",
    "integrity": "sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==",
    "requires": {}
    },
    "utf-8-validate": {
    "version": "5.0.10",
    "resolved": "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.10.tgz",
    "integrity": "sha512-Z6czzLq4u8fPOyx7TU6X3dvUZVvoJmxSQ+IcrlmagKhilxlhZgxPK6C5Jqbkw1IDUmFTM+cz9QDnnLTwDz/2gQ==",
    "optional": true,
    "requires": {
    "node-gyp-build": "^4.3.0"
    }
    },
    "util": {
    "version": "0.12.5",
    "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz",
    "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==",
    "requires": {
    "inherits": "^2.0.3",
    "is-arguments": "^1.0.4",
    "is-generator-function": "^1.0.7",
    "is-typed-array": "^1.1.3",
    "which-typed-array": "^1.1.2"
    }
    },
    "util-deprecate": {
    "version": "1.0.2",
    "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
    "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="
    },
    "uuid": {
    "version": "8.3.2",
    "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz",
    "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg=="
    },
    "validate-npm-package-license": {
    "version": "3.0.4",
    "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz",
    "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==",
    "requires": {
    "spdx-correct": "^3.0.0",
    "spdx-expression-parse": "^3.0.0"
    }
    },
    "validate-npm-package-name": {
    "version": "5.0.0",
    "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.0.tgz",
    "integrity": "sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==",
    "requires": {
    "builtins": "^5.0.0"
    }
    },
    "valtio": {
    "version": "1.11.2",
    "resolved": "https://registry.npmjs.org/valtio/-/valtio-1.11.2.tgz",
    "integrity": "sha512-1XfIxnUXzyswPAPXo1P3Pdx2mq/pIqZICkWN60Hby0d9Iqb+MEIpqgYVlbflvHdrp2YR/q3jyKWRPJJ100yxaw==",
    "requires": {
    "proxy-compare": "2.5.1",
    "use-sync-external-store": "1.2.0"
    }
    },
    "viem": {
    "version": "1.16.0",
    "resolved": "https://registry.npmjs.org/viem/-/viem-1.16.0.tgz",
    "integrity": "sha512-noRMxaMubiLbVrZ0tXKxUKNwle0QtF0wO6kBOWnm6wg6XIqptSW7xhFzrFdDRp8Jduu5rwwkCB4Tokd5MtFRtw==",
    "requires": {
    "@adraffy/ens-normalize": "1.9.4",
    "@noble/curves": "1.2.0",
    "@noble/hashes": "1.3.2",
    "@scure/bip32": "1.3.2",
    "@scure/bip39": "1.2.1",
    "abitype": "0.9.8",
    "isows": "1.0.2",
    "ws": "8.13.0"
    },
    "dependencies": {
    "@adraffy/ens-normalize": {
    "version": "1.9.4",
    "resolved": "https://registry.npmjs.org/@adraffy/ens-normalize/-/ens-normalize-1.9.4.tgz",
    "integrity": "sha512-UK0bHA7hh9cR39V+4gl2/NnBBjoXIxkuWAPCaY4X7fbH4L/azIi7ilWOCjMUYfpJgraLUAqkRi2BqrjME8Rynw=="
    },
    "@noble/curves": {
    "version": "1.2.0",
    "resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.2.0.tgz",
    "integrity": "sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw==",
    "requires": {
    "@noble/hashes": "1.3.2"
    }
    },
    "@noble/hashes": {
    "version": "1.3.2",
    "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.2.tgz",
    "integrity": "sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ=="
    },
    "@scure/bip32": {
    "version": "1.3.2",
    "resolved": "https://registry.npmjs.org/@scure/bip32/-/bip32-1.3.2.tgz",
    "integrity": "sha512-N1ZhksgwD3OBlwTv3R6KFEcPojl/W4ElJOeCZdi+vuI5QmTFwLq3OFf2zd2ROpKvxFdgZ6hUpb0dx9bVNEwYCA==",
    "requires": {
    "@noble/curves": "~1.2.0",
    "@noble/hashes": "~1.3.2",
    "@scure/base": "~1.1.2"
    }
    },
    "@scure/bip39": {
    "version": "1.2.1",
    "resolved": "https://registry.npmjs.org/@scure/bip39/-/bip39-1.2.1.tgz",
    "integrity": "sha512-Z3/Fsz1yr904dduJD0NpiyRHhRYHdcnyh73FZWiV+/qhWi83wNJ3NWolYqCEN+ZWsUz2TWwajJggcRE9r1zUYg==",
    "requires": {
    "@noble/hashes": "~1.3.0",
    "@scure/base": "~1.1.0"
    }
    },
    "abitype": {
    "version": "0.9.8",
    "resolved": "https://registry.npmjs.org/abitype/-/abitype-0.9.8.tgz",
    "integrity": "sha512-puLifILdm+8sjyss4S+fsUN09obiT1g2YW6CtcQF+QDzxR0euzgEB29MZujC6zMk2a6SVmtttq1fc6+YFA7WYQ==",
    "requires": {}
    },
    "ws": {
    "version": "8.13.0",
    "resolved": "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz",
    "integrity": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==",
    "requires": {}
    }
    }
    },
    "vite": {
    "version": "4.4.9",
    "resolved": "https://registry.npmjs.org/vite/-/vite-4.4.9.tgz",
    "integrity": "sha512-2mbUn2LlUmNASWwSCNSJ/EG2HuSRTnVNaydp6vMCm5VIqJsjMfbIWtbH2kDuwUVW5mMUKKZvGPX/rqeqVvv1XA==",
    "dev": true,
    "requires": {
    "esbuild": "^0.18.10",
    "fsevents": "~2.3.2",
    "postcss": "^8.4.27",
    "rollup": "^3.27.1"
    }
    },
    "vite-plugin-wasm-pack": {
    "version": "0.1.12",
    "resolved": "https://registry.npmjs.org/vite-plugin-wasm-pack/-/vite-plugin-wasm-pack-0.1.12.tgz",
    "integrity": "sha512-WliYvQp9HXluir4OKGbngkcKxtYtifU11cqLurRRJGsl770Sjr1iIkp5RuvU3IC1poT4A57Z2/YgAKI2Skm7ZA==",
    "dev": true,
    "requires": {
    "chalk": "^4.1.2",
    "fs-extra": "^10.0.0",
    "narrowing": "^1.4.0"
    }
    },
    "vlq": {
    "version": "2.0.4",
    "resolved": "https://registry.npmjs.org/vlq/-/vlq-2.0.4.tgz",
    "integrity": "sha512-aodjPa2wPQFkra1G8CzJBTHXhgk3EVSwxSWXNPr1fgdFLUb8kvLV1iEb6rFgasIsjP82HWI6dsb5Io26DDnasA=="
    },
    "vue": {
    "version": "3.3.4",
    "resolved": "https://registry.npmjs.org/vue/-/vue-3.3.4.tgz",
    "integrity": "sha512-VTyEYn3yvIeY1Py0WaYGZsXnz3y5UnGi62GjVEqvEGPl6nxbOrCXbVOTQWBEJUqAyTUk2uJ5JLVnYJ6ZzGbrSw==",
    "optional": true,
    "requires": {
    "@vue/compiler-dom": "3.3.4",
    "@vue/compiler-sfc": "3.3.4",
    "@vue/runtime-dom": "3.3.4",
    "@vue/server-renderer": "3.3.4",
    "@vue/shared": "3.3.4"
    }
    },
    "webidl-conversions": {
    "version": "3.0.1",
    "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
    "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ=="
    },
    "whatwg-url": {
    "version": "5.0.0",
    "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
    "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
    "requires": {
    "tr46": "~0.0.3",
    "webidl-conversions": "^3.0.0"
    }
    },
    "which": {
    "version": "2.0.2",
    "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
    "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
    "requires": {
    "isexe": "^2.0.0"
    }
    },
    "which-module": {
    "version": "2.0.1",
    "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz",
    "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ=="
    },
    "which-typed-array": {
    "version": "1.1.11",
    "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.11.tgz",
    "integrity": "sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==",
    "requires": {
    "available-typed-arrays": "^1.0.5",
    "call-bind": "^1.0.2",
    "for-each": "^0.3.3",
    "gopd": "^1.0.1",
    "has-tostringtag": "^1.0.0"
    }
    },
    "wide-align": {
    "version": "1.1.5",
    "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz",
    "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==",
    "requires": {
    "string-width": "^1.0.2 || 2 || 3 || 4"
    }
    },
    "widest-line": {
    "version": "4.0.1",
    "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-4.0.1.tgz",
    "integrity": "sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==",
    "requires": {
    "string-width": "^5.0.1"
    },
    "dependencies": {
    "emoji-regex": {
    "version": "9.2.2",
    "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
    "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="
    },
    "string-width": {
    "version": "5.1.2",
    "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
    "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
    "requires": {
    "eastasianwidth": "^0.2.0",
    "emoji-regex": "^9.2.2",
    "strip-ansi": "^7.0.1"
    }
    }
    }
    },
    "wrap-ansi": {
    "version": "8.1.0",
    "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
    "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
    "requires": {
    "ansi-styles": "^6.1.0",
    "string-width": "^5.0.1",
    "strip-ansi": "^7.0.1"
    },
    "dependencies": {
    "ansi-styles": {
    "version": "6.2.1",
    "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz",
    "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug=="
    },
    "emoji-regex": {
    "version": "9.2.2",
    "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
    "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="
    },
    "string-width": {
    "version": "5.1.2",
    "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
    "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
    "requires": {
    "eastasianwidth": "^0.2.0",
    "emoji-regex": "^9.2.2",
    "strip-ansi": "^7.0.1"
    }
    }
    }
    },
    "wrap-ansi-cjs": {
    "version": "npm:wrap-ansi@7.0.0",
    "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
    "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
    "requires": {
    "ansi-styles": "^4.0.0",
    "string-width": "^4.1.0",
    "strip-ansi": "^6.0.0"
    },
    "dependencies": {
    "ansi-regex": {
    "version": "5.0.1",
    "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
    "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
    },
    "strip-ansi": {
    "version": "6.0.1",
    "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
    "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
    "requires": {
    "ansi-regex": "^5.0.1"
    }
    }
    }
    },
    "wrappy": {
    "version": "1.0.2",
    "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
    "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="
    },
    "write-file-atomic": {
    "version": "3.0.3",
    "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz",
    "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==",
    "requires": {
    "imurmurhash": "^0.1.4",
    "is-typedarray": "^1.0.0",
    "signal-exit": "^3.0.2",
    "typedarray-to-buffer": "^3.1.5"
    },
    "dependencies": {
    "signal-exit": {
    "version": "3.0.7",
    "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
    "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="
    }
    }
    },
    "ws": {
    "version": "8.5.0",
    "resolved": "https://registry.npmjs.org/ws/-/ws-8.5.0.tgz",
    "integrity": "sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg==",
    "requires": {}
    },
    "xdg-basedir": {
    "version": "5.1.0",
    "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-5.1.0.tgz",
    "integrity": "sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ=="
    },
    "xtend": {
    "version": "4.0.2",
    "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz",
    "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="
    },
    "y18n": {
    "version": "4.0.3",
    "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz",
    "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ=="
    },
    "yallist": {
    "version": "4.0.0",
    "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
    "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
    },
    "yargs": {
    "version": "15.4.1",
    "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz",
    "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==",
    "requires": {
    "cliui": "^6.0.0",
    "decamelize": "^1.2.0",
    "find-up": "^4.1.0",
    "get-caller-file": "^2.0.1",
    "require-directory": "^2.1.1",
    "require-main-filename": "^2.0.0",
    "set-blocking": "^2.0.0",
    "string-width": "^4.2.0",
    "which-module": "^2.0.0",
    "y18n": "^4.0.0",
    "yargs-parser": "^18.1.2"
    },
    "dependencies": {
    "find-up": {
    "version": "4.1.0",
    "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
    "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
    "requires": {
    "locate-path": "^5.0.0",
    "path-exists": "^4.0.0"
    }
    },
    "locate-path": {
    "version": "5.0.0",
    "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
    "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
    "requires": {
    "p-locate": "^4.1.0"
    }
    },
    "p-limit": {
    "version": "2.3.0",
    "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
    "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
    "requires": {
    "p-try": "^2.0.0"
    }
    },
    "p-locate": {
    "version": "4.1.0",
    "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
    "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
    "requires": {
    "p-limit": "^2.2.0"
    }
    }
    }
    },
    "yargs-parser": {
    "version": "18.1.3",
    "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz",
    "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==",
    "requires": {
    "camelcase": "^5.0.0",
    "decamelize": "^1.2.0"
    },
    "dependencies": {
    "camelcase": {
    "version": "5.3.1",
    "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
    "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="
    }
    }
    },
    "yiyi-audio-recorder": {
    "version": "1.0.8",
    "resolved": "https://registry.npmjs.org/yiyi-audio-recorder/-/yiyi-audio-recorder-1.0.8.tgz",
    "integrity": "sha512-mAlxUKa4n2wvx4ybEv0Izq30aMN9t3b9MDD98GYdnNMmhZ4BM81fYMOX/5sSpC/Jn+cDYU3gwkoYb3op0dsFMQ==",
    "requires": {
    "lamejstmp": "^1.0.1"
    }
    },
    "yocto-queue": {
    "version": "0.1.0",
    "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
    "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q=="
    },
    "zustand": {
    "version": "4.4.3",
    "resolved": "https://registry.npmjs.org/zustand/-/zustand-4.4.3.tgz",
    "integrity": "sha512-oRy+X3ZazZvLfmv6viIaQmtLOMeij1noakIsK/Y47PWYhT8glfXzQ4j0YcP5i0P0qI1A4rIB//SGROGyZhx91A==",
    "requires": {
    "use-sync-external-store": "1.2.0"
    }
    }
    }
    }
  • file addition: my-crate (d--r------)
    [0.1]
  • file addition: src (d--r------)
    [0.741776]
  • file addition: utils.rs (----------)
    [0.741798]
    pub fn set_panic_hook() {
    // When the `console_error_panic_hook` feature is enabled, we can call the
    // `set_panic_hook` function at least once during initialization, and then
    // we will get better error messages if our code ever panics.
    //
    // For more details see
    // https://github.com/rustwasm/console_error_panic_hook#readme
    #[cfg(feature = "console_error_panic_hook")]
    console_error_panic_hook::set_once();
    }
  • file addition: lib.rs (----------)
    [0.741798]
    extern crate cfg_if;
    extern crate wasm_bindgen;
    extern crate base64;
    // use rand::Rng;
    mod utils;
    // use std::convert::{TryInto};
    use cfg_if::cfg_if;
    use wasm_bindgen::prelude::*;
    use base64::{encode, decode};
    // use rand::{thread_rng, Rng};
    // use rand::rngs::OsRng;
    // use noah_x25519_dalek::x25519;
    // use noah_x25519_dalek::StaticSecret;
    // use noah_x25519_dalek::PublicKey;
    use uuid::Uuid;
    // use cosmian_crypto_core::{
    // asymmetric_crypto::{curve25519::{X25519KeyPair, X25519PublicKey, X25519PrivateKey}, DhKeyPair},
    // kdf,
    // reexport::rand_core::SeedableRng,
    // symmetric_crypto::{aes_256_gcm_pure::Aes256GcmCrypto, Dem, SymKey, key::Key},
    // CsRng, KeyTrait,
    // };
    // use passwords::PasswordGenerator;
    use wasm_bindgen::JsValue;
    // use serde_wasm_bindgen::to_value;
    use aes_gcm::{
    aead::{Aead, KeyInit, OsRng},
    Aes256Gcm, Nonce // Or `Aes128Gcm`
    };
    use rand::RngCore;
    // use js_sys::{ArrayBuffer, Float32Array, DataView};
    cfg_if! {
    if #[cfg(feature = "wee_alloc")] {
    extern crate wee_alloc;
    #[global_allocator]
    static ALLOC: wee_alloc::WeeAlloc = wee_alloc::WeeAlloc::INIT;
    }
    }
    // #[wasm_bindgen]
    // extern "C" {
    // fn alert(s: &str);
    // }
    pub fn new() {
    utils::set_panic_hook();
    // ...
    }
    #[wasm_bindgen]
    pub fn password() -> Result<String, JsValue> {
    let key = Aes256Gcm::generate_key(&mut OsRng);
    let encoded_key = base64::encode(&key);
    Ok(encoded_key)
    }
    // #[wasm_bindgen]
    // pub fn new_chat_id() -> String {
    // let pg = PasswordGenerator {
    // length: 17,
    // numbers: true,
    // lowercase_letters: true,
    // uppercase_letters: true,
    // symbols: true,
    // spaces: false,
    // exclude_similar_characters: false,
    // strict: true,
    // };
    // let password_result = pg.generate_one().unwrap();
    // // Convert the Vec<String> to a JavaScript Array
    // // let array = to_value(&password_result).map_err(JsValue::from)?;
    // password_result
    // }
    // #[wasm_bindgen]
    // pub fn password() -> String {
    // // alert(&format!("Hello,{}!", name));
    // const CHARSET: &[u8] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ\
    // abcdefghijklmnopqrstuvwxyz\
    // 0123456789){}[](*&^%$#@!~".as_bytes();
    // // let mut rng = rand::thread_rng();
    // let password_result: String = (0..60)
    // .map(|_| {
    // let idx = thread_rng().gen_range(0..CHARSET.len());
    // CHARSET[idx] as char
    // })
    // .collect();
    // return password_result
    // }
    #[wasm_bindgen]
    pub fn decode_base64(value: String) -> String {
    let decoded = base64::decode_config(&value, base64::STANDARD_NO_PAD).unwrap();
    let stringing = String::from_utf8(decoded).unwrap();
    return stringing
    }
    #[wasm_bindgen]
    pub fn decode_base64_b(value:String) -> Vec<u8>{
    let decoded = decode(value).unwrap();
    // let stringing = String::from_utf8(decoded).unwrap();
    return decoded
    }
    #[wasm_bindgen]
    pub fn encode_base64(value:String) -> String{
    let encoded = encode(value);
    return encoded
    }
    #[wasm_bindgen]
    pub fn uuid_generate() -> String {
    let id = Uuid::new_v4();
    return id.to_string()
    }
    // #[wasm_bindgen]
    // pub fn generate_public_key() -> String {
    // // let rng = rand::thread_rng();
    // // let rng = rand::thread_rng();
    // // let mut rng = OsRng;
    // let ali_secret = StaticSecret::new(&mut OsRng);
    // let sec_bytes = ali_secret.to_bytes();
    // let ali_public = PublicKey::from(&ali_secret);
    // let pub_bytes = ali_public.to_bytes();
    // let sec_enc = encode(sec_bytes);
    // let pub_enc = encode(pub_bytes);
    // let vec_pk_sk = vec![sec_enc,pub_enc];
    // return vec_pk_sk.iter().cloned().collect::<String>();
    // }
    // #[wasm_bindgen]
    // pub fn generate_shared_secret( main_secret:String, peer_pubkey:String ) -> String{
    // let sec_dec:[u8; 32]= (decode(main_secret).unwrap()).try_into().unwrap();
    // let pub_dec:[u8; 32]= (decode(peer_pubkey).unwrap()).try_into().unwrap();
    // let create_sec = StaticSecret::from(sec_dec).to_bytes();
    // let create_pub = PublicKey::from(pub_dec).to_bytes();
    // let shared_secret = x25519(create_sec, create_pub);
    // // let shared_secret = create_sec.diffie_hellman(&create_pub);
    // // let ss_by = shared_secret.as_bytes();
    // // let ss_enc = hex::encode(ss_by);
    // let ss_enc = hex::encode(shared_secret);
    // return ss_enc
    // }
    // #[wasm_bindgen]
    // pub fn generate_pubprv_keys() -> String {
    // let mut rng = CsRng::from_entropy();
    // let keypair = X25519KeyPair::new(&mut rng);
    // let pub_key = keypair.public_key().to_bytes();
    // let prv_key = keypair.private_key().to_bytes();
    // let pub_str = base64::encode( pub_key).replace("=", "");
    // let prv_str = base64::encode( prv_key).replace("=", "");
    // return format!("{},{}", pub_str, prv_str);
    // }
    #[wasm_bindgen]
    pub fn vec_to_base64(v: &[u8]) -> String {
    base64::encode(v)
    }
    #[wasm_bindgen]
    pub fn base64_to_vec(s: &str) -> Vec<u8> {
    base64::decode(s).unwrap()
    }
    #[wasm_bindgen]
    pub fn sanitize_base64(input_string: &str) -> Vec<u8> {
    let sanitized_input = html_escape::decode_html_entities(input_string);
    let decoded = base64::decode(&*sanitized_input).unwrap();
    decoded
    }
    // #[wasm_bindgen]
    // pub fn encrypt_or_decrypt_files(mode: String, public_k:String, private_k:String, file_data: Vec<u8>, additional_data:String) -> Vec<u8> {
    // let pub_decoded = base64::decode(public_k).unwrap();
    // let prv_decoded = base64::decode(private_k).unwrap();
    // let back_pub = X25519PublicKey::try_from_bytes(pub_decoded.as_slice()).expect("Failed to convert public key string to X25519PublicKey");
    // let back_other_prv = X25519PrivateKey::try_from_bytes(prv_decoded.as_slice()).expect("Failed to convert private key string to X25519PrivateKey");
    // let shared_sec = &back_pub * &back_other_prv;
    // let additional_data_bytes = Some(additional_data.as_bytes());
    // const KEY_DERIVATION_INFO: &[u8] = b"Curve25519 KDF derivation";
    // const KEY_LENGTH: usize = Aes256GcmCrypto::KEY_LENGTH;
    // let symmetric_key: Key<{ KEY_LENGTH }> = SymKey::<KEY_LENGTH>::from_bytes(kdf!(
    // KEY_LENGTH,
    // &shared_sec.to_bytes(),
    // KEY_DERIVATION_INFO
    // ));
    // match mode.as_ref() {
    // "encrypt" => {
    // let mut rng = CsRng::from_entropy();
    // // let mut result = Vec::new();
    // // let chunk_size = 10 * 1024 * 1024; // 1 MB chunk size
    // // for chunk in file_data.chunks(chunk_size) {
    // let c = Aes256GcmCrypto::encrypt(&mut rng, &symmetric_key, &file_data, additional_data_bytes).unwrap();
    // // result.extend(c);
    // // }
    // // result
    // c
    // }
    // "decrypt" => {
    // // let mut result = Vec::new();
    // // let chunk_size = 10 * 1024 * 1024; // 1 MB chunk size
    // // for chunk in file_data.chunks(chunk_size) {
    // let dec = Aes256GcmCrypto::decrypt(&symmetric_key, &file_data, additional_data_bytes).unwrap();
    // // result.extend(dec);
    // // }
    // // result
    // dec
    // }
    // _ => panic!("Invalid mode"),
    // }
    // }
    #[wasm_bindgen]
    pub fn encrypt_or_decrypt_files2(
    mode: String,
    key_k: String,
    file_data: Vec<u8>,
    ) -> Result<Vec<u8>, JsValue> {
    let key_decoded = base64::decode(&key_k).map_err(|e| JsValue::from_str(&e.to_string()))?;
    let cipher = Aes256Gcm::new_from_slice(&key_decoded).unwrap();
    let mut nonce_data = [0u8; 12];
    let mut rng = rand::thread_rng();
    rng.fill_bytes(&mut nonce_data);
    let nonce = Nonce::from_slice(&nonce_data);
    match mode.as_ref() {
    "encrypt" => {
    let ciphertext = cipher
    .encrypt(nonce, file_data.as_ref())
    .map_err(|e| JsValue::from_str(&e.to_string()))?;
    // Concatenate the nonce and ciphertext
    let mut combined = Vec::new();
    combined.extend_from_slice(&nonce_data);
    combined.extend_from_slice(&ciphertext);
    Ok(combined)
    }
    "decrypt" => {
    let (stored_nonce_data, stored_ciphertext) = file_data.split_at(12);
    let stored_nonce = Nonce::from_slice(stored_nonce_data);
    let plaintext = cipher
    .decrypt(stored_nonce, stored_ciphertext)
    .map_err(|e| JsValue::from_str(&e.to_string()))?;
    Ok(plaintext)
    }
    _ => panic!("Invalid mode"),
    }
    }
    // pub fn encrypt_or_decrypt_files_testing(
    // mode: &str,
    // key_k: &str,
    // file_data: &[u8],
    // ) -> Result<Vec<u8>, JsValue> {
    // encrypt_or_decrypt_files2(mode.to_string(), key_k.to_string(), file_data.to_vec())
    // }
    // #[cfg(test)]
    // mod tests {
    // use super::*;
    // #[test]
    // fn test_encrypt_and_decrypt() {
    // let key = Aes256Gcm::generate_key(&mut OsRng);
    // let encoded_key = base64::encode(&key);
    // let plaintext = b"Testing encryption and decryption plus 1";
    // // Test encryption
    // let encrypted_data = encrypt_or_decrypt_files_testing("encrypt", &encoded_key, plaintext).unwrap();
    // // Test decryption
    // let decrypted_data = encrypt_or_decrypt_files_testing("decrypt", &encoded_key, &encrypted_data).unwrap();
    // // Convert decrypted_data to a string and print it
    // let decrypted_string = String::from_utf8(decrypted_data.clone()).unwrap();
    // println!("Decrypted data: {}", decrypted_string);
    // assert_eq!(plaintext.to_vec(), decrypted_data);
    // }
    // }
  • file addition: Cargo.toml (----------)
    [0.741776]
    [package]
    name = "my-crate"
    version = "0.1.0"
    authors = ["Nshen <nshen121@gmail.com>"]
    edition = "2018"
    [lib]
    crate-type = ["cdylib", "rlib"]
    [dependencies]
    cfg-if = "1.0.0"
    wasm-bindgen = "0.2.84"
    #rand = { version = "0.7.3", features = ["wasm-bindgen"] }
    #rand = { version = "0.8.4", features = ["wasm-bindgen", "getrandom"] }
    getrandom = { version = "0.2", features = ["js"] }
    base64 = "0.13.1"
    hex = "0.4.3"
    #magic-crypt = "3.1.12"
    #x25519-dalek = "1.2.0"
    rand = "0.8.5"
    #noah-x25519-dalek = "4.0.0"
    uuid = { version = "1.2.2", features = ["v4", "fast-rng", "macro-diagnostics"] }
    # The `console_error_panic_hook` crate provides better debugging of panics by
    # logging them with `console.error`. This is great for development, but requires
    # all the `std::fmt` and `std::panicking` infrastructure, so isn't great for
    # code size when deploying.
    console_error_panic_hook = { version = "0.1.6", optional = true }
    # `wee_alloc` is a tiny allocator for wasm that is only ~1K in code size
    # compared to the default allocator's ~10K. It is slower than the default
    # allocator, however.
    #
    # Unfortunately, `wee_alloc` requires nightly Rust when targeting wasm for now.
    wee_alloc = { version = "0.4.5", optional = true }
    html-escape = "0.2.13"
    #cosmian_crypto_core = "6.0.0"
    sha3 = "0.10.6"
    js-sys = "0.3.61"
    #passwords = "3.1.13"
    #web-sys = "0.3.22"
    serde = { version = "1.0", features = ["derive"] }
    serde-wasm-bindgen = "0.3"
    aes-gcm = "0.10.1"
    [dev-dependencies]
    wasm-bindgen-test = "0.3.13"
    [profile.release]
    # Tell `rustc` to optimize for small code size.
    opt-level = "s"
    lto = true
    [features]
    default = ["console_error_panic_hook" ,"wee_alloc"]
  • file addition: Cargo.lock (----------)
    [0.741776]
    # This file is automatically @generated by Cargo.
    # It is not intended for manual editing.
    version = 3
    [[package]]
    name = "aead"
    version = "0.5.1"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "5c192eb8f11fc081b0fe4259ba5af04217d4e0faddd02417310a927911abd7c8"
    dependencies = [
    "crypto-common",
    "generic-array",
    ]
    [[package]]
    name = "aes"
    version = "0.8.2"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "433cfd6710c9986c576a25ca913c39d66a6474107b406f34f91d4a8923395241"
    dependencies = [
    "cfg-if 1.0.0",
    "cipher",
    "cpufeatures",
    ]
    [[package]]
    name = "aes-gcm"
    version = "0.10.1"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "82e1366e0c69c9f927b1fa5ce2c7bf9eafc8f9268c0b9800729e8b267612447c"
    dependencies = [
    "aead",
    "aes",
    "cipher",
    "ctr",
    "ghash",
    "subtle",
    ]
    [[package]]
    name = "base64"
    version = "0.13.1"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
    [[package]]
    name = "block-buffer"
    version = "0.10.3"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e"
    dependencies = [
    "generic-array",
    ]
    [[package]]
    name = "bumpalo"
    version = "3.7.0"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "9c59e7af012c713f529e7a3ee57ce9b31ddd858d4b512923602f74608b009631"
    [[package]]
    name = "cfg-if"
    version = "0.1.10"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
    [[package]]
    name = "cfg-if"
    version = "1.0.0"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
    [[package]]
    name = "cipher"
    version = "0.4.3"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "d1873270f8f7942c191139cb8a40fd228da6c3fd2fc376d7e92d47aa14aeb59e"
    dependencies = [
    "crypto-common",
    "inout",
    ]
    [[package]]
    name = "console_error_panic_hook"
    version = "0.1.6"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "b8d976903543e0c48546a91908f21588a680a8c8f984df9a5d69feccb2b2a211"
    dependencies = [
    "cfg-if 0.1.10",
    "wasm-bindgen",
    ]
    [[package]]
    name = "cpufeatures"
    version = "0.2.5"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320"
    dependencies = [
    "libc",
    ]
    [[package]]
    name = "crypto-common"
    version = "0.1.6"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
    dependencies = [
    "generic-array",
    "rand_core",
    "typenum",
    ]
    [[package]]
    name = "ctr"
    version = "0.9.2"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
    dependencies = [
    "cipher",
    ]
    [[package]]
    name = "digest"
    version = "0.10.6"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f"
    dependencies = [
    "block-buffer",
    "crypto-common",
    ]
    [[package]]
    name = "fnv"
    version = "1.0.7"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
    [[package]]
    name = "generic-array"
    version = "0.14.6"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
    dependencies = [
    "typenum",
    "version_check",
    ]
    [[package]]
    name = "getrandom"
    version = "0.2.8"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
    dependencies = [
    "cfg-if 1.0.0",
    "js-sys",
    "libc",
    "wasi",
    "wasm-bindgen",
    ]
    [[package]]
    name = "ghash"
    version = "0.5.0"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "d930750de5717d2dd0b8c0d42c076c0e884c81a73e6cab859bbd2339c71e3e40"
    dependencies = [
    "opaque-debug",
    "polyval",
    ]
    [[package]]
    name = "hex"
    version = "0.4.3"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
    [[package]]
    name = "html-escape"
    version = "0.2.13"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "6d1ad449764d627e22bfd7cd5e8868264fc9236e07c752972b4080cd351cb476"
    dependencies = [
    "utf8-width",
    ]
    [[package]]
    name = "inout"
    version = "0.1.3"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
    dependencies = [
    "generic-array",
    ]
    [[package]]
    name = "js-sys"
    version = "0.3.61"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730"
    dependencies = [
    "wasm-bindgen",
    ]
    [[package]]
    name = "keccak"
    version = "0.1.3"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "3afef3b6eff9ce9d8ff9b3601125eec7f0c8cbac7abd14f355d053fa56c98768"
    dependencies = [
    "cpufeatures",
    ]
    [[package]]
    name = "libc"
    version = "0.2.137"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "fc7fcc620a3bff7cdd7a365be3376c97191aeaccc2a603e600951e452615bf89"
    [[package]]
    name = "log"
    version = "0.4.14"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
    dependencies = [
    "cfg-if 1.0.0",
    ]
    [[package]]
    name = "memory_units"
    version = "0.4.0"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "8452105ba047068f40ff7093dd1d9da90898e63dd61736462e9cdda6a90ad3c3"
    [[package]]
    name = "my-crate"
    version = "0.1.0"
    dependencies = [
    "aes-gcm",
    "base64",
    "cfg-if 1.0.0",
    "console_error_panic_hook",
    "getrandom",
    "hex",
    "html-escape",
    "js-sys",
    "rand",
    "serde",
    "serde-wasm-bindgen",
    "sha3",
    "uuid",
    "wasm-bindgen",
    "wasm-bindgen-test",
    "wee_alloc",
    ]
    [[package]]
    name = "once_cell"
    version = "1.16.0"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860"
    [[package]]
    name = "opaque-debug"
    version = "0.3.0"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
    [[package]]
    name = "polyval"
    version = "0.6.0"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "7ef234e08c11dfcb2e56f79fd70f6f2eb7f025c0ce2333e82f4f0518ecad30c6"
    dependencies = [
    "cfg-if 1.0.0",
    "cpufeatures",
    "opaque-debug",
    "universal-hash",
    ]
    [[package]]
    name = "ppv-lite86"
    version = "0.2.17"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
    [[package]]
    name = "proc-macro2"
    version = "1.0.47"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "5ea3d908b0e36316caf9e9e2c4625cdde190a7e6f440d794667ed17a1855e725"
    dependencies = [
    "unicode-ident",
    ]
    [[package]]
    name = "quote"
    version = "1.0.23"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b"
    dependencies = [
    "proc-macro2",
    ]
    [[package]]
    name = "rand"
    version = "0.8.5"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
    dependencies = [
    "libc",
    "rand_chacha",
    "rand_core",
    ]
    [[package]]
    name = "rand_chacha"
    version = "0.3.1"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
    dependencies = [
    "ppv-lite86",
    "rand_core",
    ]
    [[package]]
    name = "rand_core"
    version = "0.6.4"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
    dependencies = [
    "getrandom",
    ]
    [[package]]
    name = "scoped-tls"
    version = "1.0.0"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
    [[package]]
    name = "serde"
    version = "1.0.152"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb"
    dependencies = [
    "serde_derive",
    ]
    [[package]]
    name = "serde-wasm-bindgen"
    version = "0.3.1"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "618365e8e586c22123d692b72a7d791d5ee697817b65a218cdf12a98870af0f7"
    dependencies = [
    "fnv",
    "js-sys",
    "serde",
    "wasm-bindgen",
    ]
    [[package]]
    name = "serde_derive"
    version = "1.0.152"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e"
    dependencies = [
    "proc-macro2",
    "quote",
    "syn",
    ]
    [[package]]
    name = "sha3"
    version = "0.10.6"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "bdf0c33fae925bdc080598b84bc15c55e7b9a4a43b3c704da051f977469691c9"
    dependencies = [
    "digest",
    "keccak",
    ]
    [[package]]
    name = "subtle"
    version = "2.4.1"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
    [[package]]
    name = "syn"
    version = "1.0.107"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5"
    dependencies = [
    "proc-macro2",
    "quote",
    "unicode-ident",
    ]
    [[package]]
    name = "typenum"
    version = "1.15.0"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
    [[package]]
    name = "unicode-ident"
    version = "1.0.5"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3"
    [[package]]
    name = "universal-hash"
    version = "0.5.0"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "7d3160b73c9a19f7e2939a2fdad446c57c1bbbbf4d919d3213ff1267a580d8b5"
    dependencies = [
    "crypto-common",
    "subtle",
    ]
    [[package]]
    name = "utf8-width"
    version = "0.1.6"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "5190c9442dcdaf0ddd50f37420417d219ae5261bbf5db120d0f9bab996c9cba1"
    [[package]]
    name = "uuid"
    version = "1.2.2"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "422ee0de9031b5b948b97a8fc04e3aa35230001a722ddd27943e0be31564ce4c"
    dependencies = [
    "getrandom",
    "rand",
    "uuid-macro-internal",
    ]
    [[package]]
    name = "uuid-macro-internal"
    version = "1.2.2"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "73bc89f2894593e665241e0052c3791999e6787b7c4831daa0a5c2e637e276d8"
    dependencies = [
    "proc-macro2",
    "quote",
    "syn",
    ]
    [[package]]
    name = "version_check"
    version = "0.9.4"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
    [[package]]
    name = "wasi"
    version = "0.11.0+wasi-snapshot-preview1"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
    [[package]]
    name = "wasm-bindgen"
    version = "0.2.84"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b"
    dependencies = [
    "cfg-if 1.0.0",
    "wasm-bindgen-macro",
    ]
    [[package]]
    name = "wasm-bindgen-backend"
    version = "0.2.84"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9"
    dependencies = [
    "bumpalo",
    "log",
    "once_cell",
    "proc-macro2",
    "quote",
    "syn",
    "wasm-bindgen-shared",
    ]
    [[package]]
    name = "wasm-bindgen-futures"
    version = "0.4.24"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "5fba7978c679d53ce2d0ac80c8c175840feb849a161664365d1287b41f2e67f1"
    dependencies = [
    "cfg-if 1.0.0",
    "js-sys",
    "wasm-bindgen",
    "web-sys",
    ]
    [[package]]
    name = "wasm-bindgen-macro"
    version = "0.2.84"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5"
    dependencies = [
    "quote",
    "wasm-bindgen-macro-support",
    ]
    [[package]]
    name = "wasm-bindgen-macro-support"
    version = "0.2.84"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6"
    dependencies = [
    "proc-macro2",
    "quote",
    "syn",
    "wasm-bindgen-backend",
    "wasm-bindgen-shared",
    ]
    [[package]]
    name = "wasm-bindgen-shared"
    version = "0.2.84"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d"
    [[package]]
    name = "wasm-bindgen-test"
    version = "0.3.24"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "8cab416a9b970464c2882ed92d55b0c33046b08e0bdc9d59b3b718acd4e1bae8"
    dependencies = [
    "console_error_panic_hook",
    "js-sys",
    "scoped-tls",
    "wasm-bindgen",
    "wasm-bindgen-futures",
    "wasm-bindgen-test-macro",
    ]
    [[package]]
    name = "wasm-bindgen-test-macro"
    version = "0.3.24"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "dd4543fc6cf3541ef0d98bf720104cc6bd856d7eba449fd2aa365ef4fed0e782"
    dependencies = [
    "proc-macro2",
    "quote",
    ]
    [[package]]
    name = "web-sys"
    version = "0.3.51"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "e828417b379f3df7111d3a2a9e5753706cae29c41f7c4029ee9fd77f3e09e582"
    dependencies = [
    "js-sys",
    "wasm-bindgen",
    ]
    [[package]]
    name = "wee_alloc"
    version = "0.4.5"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "dbb3b5a6b2bb17cb6ad44a2e68a43e8d2722c997da10e928665c72ec6c0a0b8e"
    dependencies = [
    "cfg-if 0.1.10",
    "libc",
    "memory_units",
    "winapi",
    ]
    [[package]]
    name = "winapi"
    version = "0.3.9"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
    dependencies = [
    "winapi-i686-pc-windows-gnu",
    "winapi-x86_64-pc-windows-gnu",
    ]
    [[package]]
    name = "winapi-i686-pc-windows-gnu"
    version = "0.4.0"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
    [[package]]
    name = "winapi-x86_64-pc-windows-gnu"
    version = "0.4.0"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  • file addition: index.html (----------)
    [0.1]
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8" />
    <link rel="icon" type="image/x-icon" href="https://philia-chat-pullz.b-cdn.net/philiaSocial_Icon.ico" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Welcome to philiaSocial Chat</title>
    <script src="https://polyfill.io/v3/polyfill.min.js?features=default"></script>
    <!-- Use Material Design Progress indicator -->
    <link
    href="https://unpkg.com/material-components-web@6.0.0/dist/material-components-web.css"
    rel="stylesheet"
    />
    <link rel="stylesheet" href="https://cdn.plyr.io/3.7.3/plyr.css" />
    <script src="https://unpkg.com/material-components-web@6.0.0/dist/material-components-web.min.js"></script>
    <script src="https://kit.fontawesome.com/781baba48e.js" crossorigin="anonymous"></script>
    <!-- <script src="node_modules/@ffmpeg/core/dist/ffmpeg-core.js"></script> -->
    <script src="https://cdn.jsdelivr.net/npm/@mux/mux-player"></script>
    <script defer src="https://www.gstatic.com/cv/js/sender/v1/cast_sender.js?loadCastFramework=1"></script>
    </head>
    <body>
    <div class="container_intro"></div>
    <!-- Hidden checkbox -->
    <input type="checkbox" id="modalToggle" style="display: none;">
    <!-- Modal overlay (dark background) -->
    <div class="modal-overlay">
    <!-- Modal content -->
    <div class="modal-content">
    <h4>Last updated: September 30th, 2023</h4>
    <h3>philiaSocial Chat Terms of Service</h3>
    <p>Welcome to philiaSocial Chat, a decentralized project utilizing Distributed Ledger Technology (DLT) to explore and enable peer-to-peer communication ("the App"). Please read these Terms of Service ("Terms") carefully before using our application.</p>
    <ol>
    <li>Acceptance of Terms</li>
    <ol style="list-style-type: lower-alpha;">
    <li>
    By accessing or using the App, you agree to be bound by these Terms. If you do not agree with any part of these Terms, you must not use the App.
    </li>
    </ol>
    <li>Eligibility</li>
    <ol style="list-style-type: lower-alpha;">
    <li>
    You must be at least 18 years old, or the age of legal majority in your jurisdiction of residence, to use the App. By agreeing to these Terms, you represent and warrant that you will abide by all the provisions herein.
    </li>
    </ol>
    <li>
    Description of the App
    <ol style="list-style-type: lower-alpha;">
    <li>The App operates on a decentralized network, enabling users to communicate and share their encrypted data in a peer-to-peer manner.</li>
    <li>As an experimental project, philiaSocial Chat is provided "as-is" without any warranties or representations of functionality, reliability, or fitness for a particular purpose.</li>
    </ol>
    </li>
    <li>
    Account Registration and Chat Credentials
    <ol style="list-style-type: lower-alpha;">
    <li>
    To use the App, you will need to establish a new chat space by clicking the “Create New Credentials” button available at https://chat.philia.social. Upon doing so, you will be assigned a randomly generated private key (the “Chat-Credentials”) that allows you to log in and sprout your chat space.
    </li>
    <li>
    It's crucial to securely save your Chat-Credentials, as they will not be displayed again. Chat-Credentials are not stored or maintained by philiaSocial Chat, and the App does not have custody or control over the contents of your chat space and has no ability to view, retrieve, or transfer its contents.
    </li>
    <li>
    You are solely responsible for keeping your Chat-Credentials secure and you should never share your Chat-Credentials with anyone who should not have access to your chat space. ANYONE WITH YOUR CHAT-CREDENTIALS WILL BE ABLE TO ACCESS YOUR CHAT SPACE.
    </li>
    <li>
    To access your chat space, enter your Chat-Credentials at https://chat.philia.social and click “Sign Into Chat Space.” philiaSocial Chat accepts no responsibility for, or liability to you, in connection with your use of a chat space and makes no representations or warranties regarding how the Service will operate.
    </li>
    <li>
    Losing your Chat-Credentials will result in loss of access to your chat space and all associated data. There is no way to recover lost Chat-Credentials or access your chat space without these credentials. You are solely responsible for maintaining the confidentiality of your Chat-Credentials and for all activities that occur in your chat space.
    </li>
    </ol>
    </li>
    <li>
    Data Privacy and Security
    <ol style="list-style-type: lower-alpha;">
    <li>
    philiaSocial Chat does not collect or store any personal data. All data shared within the App is controlled and managed by the users.
    </li>
    <li>
    Users are advised to exercise caution and adhere to best practices to maintain their privacy and security while using the App.
    </li>
    </ol>
    </li>
    <li>
    Usage Restrictions
    <ol style="list-style-type: lower-alpha;">
    <li>
    Users are responsible for their actions within the App and must comply with applicable laws and regulations.
    </li>
    <li>
    Unlawful activities and any actions that could damage, disable, overburden, or impair the decentralized network on which the App operates are prohibited.
    </li>
    </ol>
    </li>
    <li>
    Content
    <ol style="list-style-type: lower-alpha;">
    <li>
    You are solely responsible for the content you send through the App.
    </li>
    <li>
    You agree not to send any content that is illegal, harmful, threatening, abusive, harassing, tortious, defamatory, vulgar, obscene, libelous, invasive of another's privacy, hateful, or racially, ethnically or otherwise objectionable.
    </li>
    </ol>
    </li>
    <li>
    No Intellectual Property Claims
    <ol style="list-style-type: lower-alpha;">
    <li>
    We do not claim any intellectual property rights over the material you provide to philiaSocial Chat.
    </li>
    </ol>
    </li>
    <li>
    Changes to Terms
    <ol style="list-style-type: lower-alpha;">
    <li>
    We reserve the right to modify or replace these Terms at any time. Any changes will be posted on this page.
    </li>
    </ol>
    </li>
    <li>
    No Warranties
    <ol style="list-style-type: lower-alpha;">
    <li>
    philiaSocial Chat is provided on an "AS IS" and "AS AVAILABLE" basis without warranties of any kind, either express or implied, including but not limited to, implied warranties of merchantability, fitness for a particular purpose, or non-infringement.
    </li>
    <li>
    Neither the philiSocial Chat nor any individuals or entities associated with the project make any warranties or representations about the accuracy, reliability, completeness, or timeliness of the App’s content, services, software, text, graphics, or links.
    </li>
    <li>
    No information or advice obtained by you from the App or through the service shall create any warranty not expressly stated in these Terms.
    </li>
    <li>
    We make no representations or warranties of any kind, express or implied, about the completeness, accuracy, reliability, suitability, or availability with respect to the App or the information, products, services, or related graphics contained on the App for any purpose. Any reliance you place on such information is strictly at your own risk.
    </li>
    <li>
    We do not warrant that the App will function uninterrupted, secure or available at any particular time or location; nor do we warrant any errors or defects will be corrected, or that the App is free of viruses or other harmful components.
    </li>
    </ol>
    </li>
    <li>
    Dispute Resolution
    <ol style="list-style-type: lower-alpha;">
    <li>
    Acknowledgement of Risks
    <ol style="list-style-type: lower-roman;">
    <li>
    Users acknowledge that philiaSocial Chat is decentralized, experimental, and operates on a peer-to-peer basis without a central authority. Users understand and accept that there may be risks associated with using the App, and agree to assume all such risks.
    </li>
    </ol>
    </li>
    <li>
    No Formal Dispute Resolution
    <ol style="list-style-type: lower-roman;">
    <li>
    Due to the decentralized nature of philiaSocial Chat, there are no formal channels for dispute resolution, arbitration, or redress provided by the App or any associated entities. Users are solely responsible for resolving any disputes they may have with other users, and are encouraged to exercise caution and conduct due diligence in their interactions within the App.
    </li>
    </ol>
    </li>
    <li>
    Community Resolution
    <ol style="list-style-type: lower-roman;">
    <li>
    Users may choose to engage with the community to seek resolution for any disputes through community-driven forums or channels, if available and applicable. The App does not moderate or oversee these community-driven resolution channels and is not responsible for any outcomes resulting from such engagements.
    </li>
    </ol>
    </li>
    <li>
    Indemnification
    <ol style="list-style-type: lower-roman;">
    <li>
    Users agree to indemnify and hold harmless philiaSocial Chat, its creators, contributors, and other associated entities from any claims, damages, liabilities, losses, and expenses, including legal fees, arising out of or in relation to their use of the App or any disputes with other users.
    </li>
    </ol>
    </li>
    <li>
    Governing Law
    <ol style="list-style-type: lower-roman;">
    <li>
    Notwithstanding the decentralized nature of the App, to the extent any applicable law mandates a governing law or jurisdiction for dispute resolution, such law shall apply. Users are responsible for compliance with local laws and regulations, and acknowledge that certain jurisdictions may have laws that provide additional rights or remedies for disputes.
    </li>
    </ol>
    </li>
    <li>
    Severability
    <ol style="list-style-type: lower-roman;">
    <li>
    If any provision of this Dispute Resolution section is found to be invalid or unenforceable, the remaining provisions will continue to be valid and enforceable to the fullest extent permitted by law.
    </li>
    </ol>
    </li>
    </ol>
    </li>
    <li>
    Limitation of Liability
    <ol style="list-style-type: lower-alpha;">
    <li>
    In no event shall philiaSocial Chat, nor its contributors or those associated with the project, be liable for any indirect, incidental, special, consequential or punitive damages, including without limitation, loss of profits, data, use, goodwill, or other intangible losses, resulting from (i) your access to or use of or inability to access or use the App; (ii) any conduct or content of any third party on the App; (iii) any content obtained from the App; and (iv) unauthorized access, use or alteration of your transmissions or content, whether based on warranty, contract, tort (including negligence) or any other legal theory, whether or not we have been informed of the possibility of such damage, and even if a remedy set forth herein is found to have failed of its essential purpose.
    </li>
    <li>
    Our total liability to you for all claims arising out of or related to the use or inability to use any portion of the App or otherwise under these Terms, whether in contract, tort, or otherwise, is limited to the greater of (i) the amount you have paid to access the App or (ii) $100.
    </li>
    <li>
    You acknowledge and agree that the disclaimers and the limitations of liability set forth in these Terms reflect a reasonable and fair allocation of risk between you and philiaSocial Chat, and that these limitations are an essential basis to our ability to make the App available to you on an economically feasible basis.
    </li>
    </ol>
    </li>
    <li>
    Relationship
    <ol style="list-style-type: lower-alpha;">
    <li>
    Nothing in these Terms will be construed as creating a relationship of partnership, joint venture, agency, or employment between the parties. philiaSocial Chat shall not be responsible for the acts or omissions of a user, and the user shall not represent philiaSocial Chat, nor does it have any power or authority to speak for, represent, bind, or assume any obligation on behalf of philiaSocial Chat.
    </li>
    </ol>
    </li>
    <li>
    Class Action Waiver
    <ol style="list-style-type: lower-alpha;">
    <li>
    THE PARTIES HERETO AGREE THAT BY ENTERING INTO THIS AGREEMENT, EACH PARTY WAIVES ITS RIGHT TO PARTICIPATE IN A CLASS ACTION, PRIVATE ATTORNEY GENERAL ACTION OR OTHER REPRESENTATIVE ACTION AGAINST THE OTHER IN A COURT OR IN ARBITRATION. THE PARTIES FURTHER AGREE THAT EACH MAY BRING DISPUTES AGAINST EACH OTHER ONLY IN THEIR INDIVIDUAL CAPACITY AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING. Further, unless both parties agree otherwise, arbitration claims may not be joined or consolidated in the arbitration proceeding. In no event shall the arbitrator have authority to preside over any form of representative or class proceeding or to issue any relief that applies to any person or entity other than users individually. If this Class Action Waiver is found to be invalid or unenforceable in whole or in part, then the entirety of this Binding Arbitration section (except for this sentence) shall be null and void with respect to such proceeding, subject to the right to appeal the limitation or invalidation of the Class Action Waiver.
    </li>
    </ol>
    </li>
    <li>
    Successors; Assignment; No Third Party Beneficiaries
    <ol style="list-style-type: lower-alpha;">
    <li>
    These Terms are binding upon and will inure to the benefit of both parties and their respective successors, heirs, executors, administrators, personal representatives, and permitted assigns. You may not assign or transfer these Terms without philiaSocial Chat's prior written consent. philiaSocial Chat may assign its rights, obligations and/or these Terms at any time at its sole discretion without notice to you.
    </li>
    </ol>
    </li>
    <li>
    Notices
    <ol style="list-style-type: lower-alpha;">
    <li>
    You consent to receive all communications including notices, agreements, disclosures, or other information from philiaSocial Chat electronically. philiaSocial Chat may communicate by email or by posting to the Services. For support-related inquiries, you may email <a href="mailto:connect@philia.social">connect@philia.social</a>.
    </li>
    </ol>
    </li>
    </ol>
    <p>Nothing in these Terms or otherwise limits philiaSocial Chat’s right to object to subpoenas, claims, or other demands.</p>
    <h3>Privacy Policy philiaSocial Chat</h3>
    <ol>
    <li>
    Introduction
    <ol style="list-style-type: lower-alpha;">
    <li>
    Welcome to philiaSocial Chat. Your privacy is of paramount importance to us. This policy outlines our unwavering commitment to safeguarding your personal data, ensuring alignment with global standards including the European Union (EU) General Data Protection Regulation (GDPR), the United States privacy standards, and the California Consumer Privacy Act (CCPA).
    </li>
    </ol>
    </li>
    <li>
    Scope of Data Collection
    <ol style="list-style-type: lower-alpha;">
    <li>
    At philiaSocial Chat, we operate on a foundational principle of data minimalism: we do not collect, store, or process any personal information or data through our platform. Our services are designed to prioritize your privacy, ensuring an experience that's both safe and tailored to your needs.
    </li>
    </ol>
    </li>
    <li>
    Absence of Cookies and Tracking Mechanisms
    <ol style="list-style-type: lower-alpha;">
    <li>
    We champion a cookie-free and tracking-free environment. Our platform abstains from employing cookies, third-party tracking tools, or any other data collection mechanisms, ensuring that your interactions with our site remain entirely private and unmonitored.
    </li>
    </ol>
    </li>
    <li>
    Data Encryption, Storage, and Security
    <ol style="list-style-type: lower-alpha;">
    <li>
    Our commitment to security is unwavering. philiaSocial Chat employs the robust Aes256Gcm encryption mechanism. Messages and files, once encrypted locally, are securely uploaded to the <a href="https://www.arweave.org" target="_blank">Arweave Network</a>, a decentralized storage layer. Due to the nature of Arweave, chat data, albeit encrypted, is permanent; all communication is immutable and encrypted. The Content Identifiers (CIDs) of your data are subsequently stored on <a href="https://polybase.xyz/database" target="_blank">Polybase</a>, a decentralized database. Within Polybase's architecture, CIDs are aggregated under a singular "collection", introducing an added layer of obfuscation, enhancing message route security. The decryption key remains exclusively in the hands of the user; we neither store nor have access to it.
    </li>
    </ol>
    </li>
    <li>
    Server Logs and Retention
    <ol style="list-style-type: lower-alpha;">
    <li>
    We do not retain server logs or any other interaction data. This ensures that all user interactions with our platform are ephemeral, untraceable, and entirely private.
    </li>
    </ol>
    </li>
    <li>
    Children's Privacy
    <ol style="list-style-type: lower-alpha;">
    <li>
    Our platform is not designed for, nor do we knowingly collect information from, individuals under the age of 18. If we become aware that we have inadvertently collected personal information from a person under 18, we will take steps to delete such information promptly.
    </li>
    </ol>
    </li>
    <li>
    Changes to This Privacy Policy
    <ol style="list-style-type: lower-alpha;">
    <li>
    We may periodically update this Privacy Policy to reflect changes in our practices, technologies, legal requirements, and other factors. We encourage you to review this policy periodically to stay informed about how we safeguard your data.
    </li>
    </ol>
    </li>
    </ol>
    <!-- Neomorphic Agree button -->
    <label for="modalToggle" class="btn-neomorphic">I Accept the Terms of Service & Privacy Policy.</label>
    </div>
    </div>
    <div id="algo_button_box">
    <div class="line-break2"></div>
    <div id="form-title">
    <div id='love_matchings'>&#9825;&nbsp;&nbsp;</div>
    <div id='at_messenger'>&#64;&nbsp;&nbsp;</div>
    <div id='first_events'>&#10122;&nbsp;&nbsp;</div>
    <div id='infinity_nomads'>&#8734;</div>
    </div>
    <div class="line-break1"></div>
    <div class="digital_id">philiaSocial Chat is a self-sovereign, anonymous, chat space powered by decentralized systems.
    <div class="line-break0"></div>
    <div id="ceremony">
    Each philiaSocial Chat space has a Founder & Partner(s); the Founder generates a new set of Credentials and shares this private key with the Partner(s).
    </div>
    <div class="line-break1"></div>
    <u>Use at your own discretion.</u>
    </div>
    <div class="line-break1"></div>
    <div class="fields_algo">
    <div id="wrapper_sk_show">
    <div id="info_pop" class="boxes">
    <i class="buttons_main fa-solid fa-circle-question"></i>
    </div>
    <div id="copy_field" class="boxes buttons_main">
    Copy
    </div>
    <div id="note_pad" class="boxes buttons_main">
    Cryptgeon
    </div>
    <div id="show_hide_password" class="boxes">
    <i id="fa_eye" class="buttons_main fa-solid fa-eye"></i>
    </div>
    </div>
    <div id="original_space" class="line-break2"></div>
    <div id="anchor_info_pop"></div>
    <div id="first_task">
    <div id="input_label_button_farfalla_key" class="input_first_set">
    Sign Into Chat Space
    </div>
    <div class="line-break2"></div>
    <div id="ft_expanded_1" class="ft_expanded">
    </div>
    <div class="peer_orig_inputs">Chat-Credentials</div>
    <div class="survey_options_algo">
    <input id="association_algo_password2" type="password" name="survey_options_name" class="survey-options"/>
    </div>
    <div class="line-break2"></div>
    <div class="line-break0"></div>
    </div>
    <!-- <div class="line-break2"></div> -->
    <div id="second_task">
    <div id="input_label_button_pub_key" class="input_first_set">Create New Credentials</div>
    <div class="line-break2"></div>
    <div id="ft_expanded_2" class="ft_expanded"></div>
    </div>
    </div>
    <div class="line-break1"></div>
    <div id="third_task">
    <div id="Intro_HH">
    Wander along...
    <div class="line-break0"></div>
    ...this winding path?</div>
    <div class="line-break2"></div>
    <div id="gif_spiral"></div>
    <div class="line-break2"></div>
    <div class="line-break2"></div>
    <div id="blurred_backdrop">
    <div class="line-break2"></div>
    <!-- <button class="modal_riddles" id="creative_modal_close">
    Close
    </button> -->
    </div>
    <div id="creative_modal">
    <div id="table-container">
    <div id="the_question"></div>
    </div>
    <br>
    <div class="line-break1"></div>
    <mux-player
    stream-type="on-demand"
    playback-id="OXWvX0167ALfXf9pu67xMDW01JH7KsUgIM8C8MGpx25600"
    ></mux-player>
    <div class="line-break2"></div>
    <div id="image_riddle">
    <img id="image" src="https://philia-chat-pullz.b-cdn.net/philia_lovers_1.png" alt="Your Image">
    </div>
    <div class="line-break2"></div>
    <mux-player
    stream-type="on-demand"
    playback-id="ySsOoHDFZnsAHvAgQA02Pf2OyAKEiKjEFaptqwLNb2l4"
    ></mux-player>
    <div class="line-break2"></div>
    <div class="line-break2"></div>
    <div id="content_riddle">
    We aspire to create a haven where individuals can share their transformative journeys post-trauma through creative writing. By connecting their MetaMask wallet to the zkEVM network and adding the USDC coin, users can effortlessly submit their narratives. A small fee of 5 USDC is charged for each submission to maintain the quality of our platform by deterring spam.
    <div class="line-break1"></div>
    Our team will meticulously curate the submissions, showcasing the most sincere, thoughtful, and evocative writings. Authors of selected pieces will be featured on our esteemed list on the philiaSocial Words platform, where their work can touch the hearts of a wider audience.
    <div class="line-break1"></div>
    Moreover, within this distinguished platform, listed authors have the opportunity to receive tips from our appreciative community. This feature cultivates a culture of encouragement and recognition, further enriching the connection between authors and readers in a refined, supportive environment. Through philiaSocial Words, we aim to foster a nurturing space where the narrative of overcoming adversity is celebrated, shared, and supported.
    </div>
    <div class="line-break2"></div>
    <i class="fa-solid fa-seedling" id="info_riddles">
    </i>
    </div>
    <div id="modal_riddle_info">
    <div id="button_spacing_post1">
    <button class="closing_riddle_content" id="btn">
    </button>
    <button class="closing_riddle_content" id="zkevm_setup">
    <i class="fa-brands fa-connectdevelop" style="font-size: 20px;"></i>
    </button>
    </div>
    <div class="line-break2"></div>
    <div id="account_connected" class="neumorphic-input"> </div>
    <div class="line-break2"></div>
    <input type="text" id="email" class="neumorphic-input" placeholder="Email">
    <div class="line-break2"></div>
    <textarea id="zkevm_message" class="neumorphic-input" placeholder="Message" rows="3"></textarea>
    <div class="line-break2"></div>
    <button class="closing_riddle_content" id="ok_closing">
    <i class="fa-solid fa-house" style="font-size:20px">
    </i>
    </button>
    <button class="closing_riddle_content" id="generate_algo">
    <i class="fa-solid fa-feather-pointed" style="font-size: 20px;">
    </i>
    </button>
    </div>
    </div>
    </div>
    <!-- <div id="algo_gate"></div> -->
    <!-- </div> -->
    <div id="container_algorand">
    <!-- <div class="box"> -->
    <!-- <div class="box"> -->
    <div class="line-break1"></div>
    <div class="line-break0"></div>
    <!-- <div class="wallet_connected_wrapper"> -->
    <div id="wallet_connected_chat"></div>
    <div class="line-break1"></div>
    <div class="line-break0"></div>
    <div id="wrapper_picker">
    <div id="picker"></div> <div id="wrapper_username"></div>
    </div>
    <div class="line-break1"></div>
    <div id="fs_button_loader_wrapper1">
    <div id="wrapper_message_tools1">
    <div id="blur_mess" class="boxes">
    <i class="chat_space fa-solid fa-mask"></i>
    </div>
    <div id="add_file" class="boxes">
    <i class="chat_space fa-solid fa-plus">
    <input type="file" id="file-input" accept="audio/mpeg, audio/x-m4a, audio/wav, audio/flac, video/mp4, video/quicktime, image/png, image/jpeg, text/plain, application/pdf" style="display: none" />
    </i>
    </div>
    <div id="refresh" class="boxes">
    <i class="chat_space fa-solid fa-at"></i>
    </div>
    </div>
    </div>
    <div class="line-break0"></div>
    <div id="wallet_connected_text_id"></div>
    <!-- <div class="line-break1"></div> -->
    <div id="wrapper_glass"></div>
    <div id="in_out_messages">
    <div class="text_area_data"></div>
    <div id="text_area_landing"></div>
    </div>
    <div class="line-break0"></div>
    <div id="fs_button_loader_wrapper2">
    <div id="wrapper_message_tools2">
    <div id="latest_mess" class="boxes">
    <i class="chat_space fa-solid fa-cloud-arrow-down"></i>
    </div>
    <div id="voice_recording" class="boxes">
    <i class="chat_space fa-solid fa-microphone"></i>
    </div>
    <div id="stop_recording" class="boxes">
    <div class="chat_space" id="stop_message">Recording/Stop...</div>
    </div>
    <div id="headset" class="boxes">
    <i class="chat_space fa-solid fa-headset"></i>
    </div>
    <div id="lock_mess" class="boxes">
    <i class="chat_space fa-solid fa-paper-plane"></i>
    </div>
    </div>
    </div>
    <div id="anchor_file_names"></div>
    <!-- <textarea id="messages" name="message" placeholder="Message"></textarea> -->
    <div id="messages" contenteditable="true"></div>
    <div class="line-break1"></div>
    <!-- </div> -->
    <!-- </div> -->
    <!-- </div> -->
    <script type="module" src="/src/index.ts"></script>
    </body>
    </html>
  • file addition: icons-love.ico (----------)
    [0.1]
  • file addition: .ignore (----------)
    [0.1]
    my-crate/pkg/
    my-crate/target/
    node_modules/
    dist/