diff --git a/404.html b/404.html index 27dfcc2..feb7d64 100644 --- a/404.html +++ b/404.html @@ -3,14 +3,14 @@ -Page Not Found | YetAnotherNet - - +Page Not Found | YetAnotherNet + +
-
Skip to main content

Page Not Found

We could not find what you were looking for.

Please contact the owner of the site that linked you to the original URL and let them know their link is broken.

- - +
Skip to main content

Page Not Found

We could not find what you were looking for.

Please contact the owner of the site that linked you to the original URL and let them know their link is broken.

+ + \ No newline at end of file diff --git a/CHANGELOG/index.html b/CHANGELOG/index.html new file mode 100644 index 0000000..cc73d6c --- /dev/null +++ b/CHANGELOG/index.html @@ -0,0 +1,17 @@ + + + + + +Changelog | YetAnotherNet + + + + +
+
Skip to main content

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, +and this project adheres to Semantic Versioning.

[Unreleased]

Added

  • Unit tests with Jest
    • For Identifier
    • For SendRequest
    • For QueryResult
  • Bridge, Player, and RemoteEvent Mocking

Changed

  • Updated Rojo to v7.4.0

Fixed

  • QueryResult does not filter senders
  • Incorrect types for Incoming Middleware
  • Incorrect and inconsistent Roblox-TS Types

[0.7.0] - 2024-01-02

Added

  • Roblox Typescript API

Changed

  • Module now returns a Namespace
  • Middleware now uses two separate functions instead of configuration
  • Refactored internals
  • Improved implementation of a default channel

Fixed

  • Channel Validation fails when Channel is Unreliable
  • QueryResult returns the incorrect position

[0.6.0] - 2023-12-14

Added

  • Middleware

Changed

  • Complete overhaul of the Documentation site

Fixed

  • Incoming packets do not respect their channel

[0.5.0] - 2023-11-30

Added

  • New Routes API
  • Strict Typing
  • Unreliable Channel
  • Hooks

Changed

  • Complete API Overhaul

[0.4.0] - 2023-11-27

Changed

  • Rewrote Net:query() to use the new QueryResult type
  • Rewrote Net:send() to use the new SendRequest type
  • Exported and internal types are now more strict and are just generally improved

Fixed

  • Priority artifacts in documentation
  • Matter example game has outdated paths
  • Matter example game Replication & Formatting (#3)
  • Rojo deletes Remotes when live-syncing (#4)

[0.3.0] - 2023-09-20

Added

  • Matter Example Game AttackOfTheKillerRoombas, adapted from the official Matter Example Game.
  • TestEZ Unit Tests to separate branch

Removed

  • Removed the ReliableOrdered and ReliableUnordered Channels in favor for the new Reliable Channel. ReliableUnordered already sent and received packets in order, rendering ReliableOrdered useless and wasteful.

[0.2.5] - 2023-09-12

Fixed

  • Query never filters Players, typecheck would always fail because typeof(Player) returns Instance
  • Query filtering all Players on the server when no Player was given in the QueryParams

[0.2.4] - 2023-08-28

Fixed

  • Middleware in the start method runs only once every two frames
  • Iterator filter fails to properly filter key-value pairs by @IntegralsGetYouArea in https://github.com/YetAnotherClown/Net/pull/1
  • Iterator filter should also take a key with it's value
  • Identifiers always have the same position when the pos parameter is not given

[0.2.3] - 2023-08-28

Changed

  • Updated the Getting Started page in Documentation to highlight the need to setup on both the Server and Client with the same configuration.

Fixed

  • The typecheck in Bridge when processing the outgoing queue always fails when the recipient is of type Player.

[0.2.2] - 2023-07-17

Changed

  • Internal Naming of Functions for support for Roblox Debugging tools such as ScriptProfiler.

Fixed

  • The iterator always defaulting to sending all packet information regardless if an returnFilter was provided.
  • Net:query() returning the Sender on Clients despite the Sender always being known on the Client as Net.Server.
  • The internal filter of Net:query() never returning the Sender when type { Player } is provided as a QueryParam and only one Player has sent packets.
  • The internal filter of Net:query() filtering out Server Packets on the Client.
  • The internal QueryParams Parser mistaking the Net.Server Recipient as an Identifier.

[0.2.1] - 2023-07-3

Changed

  • Net:start() now utilizes middleware in Matter to schedule networking code.

Fixed

  • Minor issues in the Documentation.

[0.2.0] - 2023-06-21

Added

  • Configuration for Event, Priority, and the ReliableOrdered & ReliableUnordered Channels.
  • ReliableUnordered Channel

Fixed

  • Bridge using the wrong RemoteEvents.

[0.1.1] - 2023-06-16

Added

  • SendParams to the Net:send() method. See the documentation on Sending Data for information on how to use them.
  • Guard Clauses and associated Warnings to the Bridge:send() method to prevent incorrect data entering the queue.
  • Net.Server key to represent the key associated with the Server.

Changed

  • Internal Configuration type to reflect the appropriate Channel types.

Fixed

  • Bridge creating an additional RemoteEvent that is never used.
  • Linguist Syntax Highlighting and Language Stats.
+ + + + \ No newline at end of file diff --git a/api/Loop/index.html b/api/Loop/index.html index 1016cf3..8378fdf 100644 --- a/api/Loop/index.html +++ b/api/Loop/index.html @@ -13,13 +13,13 @@ For technical details, if you were to use a custom Loop object or try to integrate this Net Library in a ECS other than Matter, the ``Net.start(loop, { Route })`` function uses a similar implementation to ``Net.createHook({ Net })`` internally. -For more information on this, see [Net.createHook]."> - - +For more information on this, see [Net.createHook]."> + +
-
Skip to main content

Loop

+

Loop

A Matter Loop.

For technical details, if you were to use a custom Loop object or try to integrate this Net Library in a ECS other than Matter, @@ -37,7 +37,7 @@ "path": "lib/init.luau" } }

- - + + \ No newline at end of file diff --git a/api/Net/index.html b/api/Net/index.html index 6fe1910..6f8dc12 100644 --- a/api/Net/index.html +++ b/api/Net/index.html @@ -31,13 +31,13 @@ - Data-driven Design You can learn more about how YetAnotherNet works and how to use it by visiting [Getting Started with Routes](/docs/getting-started/routes). -Or, you can keep reading to learn more about the technical details and design choices that went into creating Net in the [Introduction](/docs/intro)."> - - +Or, you can keep reading to learn more about the technical details and design choices that went into creating Net in the [Introduction](/docs/intro)."> + +
-

Net

+

Net

YetAnotherNet is a networking library for Roblox, or rather its a library that wraps around Roblox's RemoteEvents to solve certain issues and provide new API for networking on Roblox.

Some of the issues this library solves are:

    @@ -173,7 +173,7 @@
- - + + \ No newline at end of file diff --git a/api/QueryResult/index.html b/api/QueryResult/index.html index 50fb4db..b30c955 100644 --- a/api/QueryResult/index.html +++ b/api/QueryResult/index.html @@ -33,13 +33,13 @@ ``` ::: -See [Querying Data](/docs/getting-started/routes#querying) for more information."> - - +See [Querying Data](/docs/getting-started/routes#querying) for more information."> + +
-

QueryResult

+
- - + + \ No newline at end of file diff --git a/api/Route/index.html b/api/Route/index.html index 1d87840..f44121c 100644 --- a/api/Route/index.html +++ b/api/Route/index.html @@ -7,13 +7,13 @@ See the [Intro](/docs/intro) to get started."> - - +See the [Intro](/docs/intro) to get started."> + +
-

Route

+
- - + + \ No newline at end of file diff --git a/api/SendRequest/index.html b/api/SendRequest/index.html index c0e491a..9068b15 100644 --- a/api/SendRequest/index.html +++ b/api/SendRequest/index.html @@ -3,13 +3,13 @@ -SendRequest | YetAnotherNet - - +SendRequest | YetAnotherNet + +
-

SendRequest

+

SendRequest

Allows for modification of queued packets before they're sent.

Functions

to

SendRequest:to(recipient{Player} | Player | "NET_SERVER") → ()

Modifies the recipients of the packet to the one(s) provided in the parameter.

@@ -43,7 +43,7 @@ "path": "lib/SendRequest.luau" } }
- - + + \ No newline at end of file diff --git a/api/index.html b/api/index.html index d054519..0216ca5 100644 --- a/api/index.html +++ b/api/index.html @@ -3,14 +3,14 @@ -YetAnotherNet - - +YetAnotherNet + +
- - + + \ No newline at end of file diff --git a/assets/css/styles.a761dfcd.css b/assets/css/styles.a761dfcd.css new file mode 100644 index 0000000..e3bd6d6 --- /dev/null +++ b/assets/css/styles.a761dfcd.css @@ -0,0 +1 @@ +.col,.container{padding:0 var(--ifm-spacing-horizontal);width:100%}.markdown>h2,.markdown>h3,.markdown>h4,.markdown>h5,.markdown>h6{margin-bottom:calc(var(--ifm-heading-vertical-rhythm-bottom)*var(--ifm-leading))}body,ol ol,ol ul,ul ol,ul ul{margin:0}blockquote,pre{margin:0 0 var(--ifm-spacing-vertical)}.breadcrumbs__link,.button{transition-timing-function:var(--ifm-transition-timing-default)}.button,code{vertical-align:middle}.button--outline.button--active,.button--outline:active,.button--outline:hover,:root{--ifm-button-color:var(--ifm-font-color-base-inverse)}.menu__link:hover,a{transition:color var(--ifm-transition-fast) var(--ifm-transition-timing-default)}.navbar--dark,:root{--ifm-navbar-link-hover-color:var(--ifm-color-primary)}.menu,.navbar-sidebar{overflow-x:hidden}:root,html[data-theme=dark]{--ifm-color-emphasis-500:var(--ifm-color-gray-500)}.toggleButton_gllP,html{-webkit-tap-highlight-color:transparent}.button,.dropdown__link,.searchbox,.text--truncate{white-space:nowrap}.searchbox__reset:focus,.searchbox__submit:focus,body:not(.navigation-with-keyboard) :not(input):focus{outline:0}.markdown li,body{word-wrap:break-word}.clean-list,.containsTaskList_mC6p,.details_lb9f>summary,.dropdown__menu,.menu__list{list-style:none}:root{--ifm-color-scheme:light;--ifm-dark-value:10%;--ifm-darker-value:15%;--ifm-darkest-value:30%;--ifm-light-value:15%;--ifm-lighter-value:30%;--ifm-lightest-value:50%;--ifm-contrast-background-value:90%;--ifm-contrast-foreground-value:70%;--ifm-contrast-background-dark-value:70%;--ifm-contrast-foreground-dark-value:90%;--ifm-color-primary:#3578e5;--ifm-color-secondary:#ebedf0;--ifm-color-success:#00a400;--ifm-color-info:#54c7ec;--ifm-color-warning:#ffba00;--ifm-color-danger:#fa383e;--ifm-color-primary-dark:#306cce;--ifm-color-primary-darker:#2d66c3;--ifm-color-primary-darkest:#2554a0;--ifm-color-primary-light:#538ce9;--ifm-color-primary-lighter:#72a1ed;--ifm-color-primary-lightest:#9abcf2;--ifm-color-primary-contrast-background:#ebf2fc;--ifm-color-primary-contrast-foreground:#102445;--ifm-color-secondary-dark:#d4d5d8;--ifm-color-secondary-darker:#c8c9cc;--ifm-color-secondary-darkest:#a4a6a8;--ifm-color-secondary-light:#eef0f2;--ifm-color-secondary-lighter:#f1f2f5;--ifm-color-secondary-lightest:#f5f6f8;--ifm-color-secondary-contrast-background:#fdfdfe;--ifm-color-secondary-contrast-foreground:#474748;--ifm-color-success-dark:#009400;--ifm-color-success-darker:#008b00;--ifm-color-success-darkest:#007300;--ifm-color-success-light:#26b226;--ifm-color-success-lighter:#4dbf4d;--ifm-color-success-lightest:#80d280;--ifm-color-success-contrast-background:#e6f6e6;--ifm-color-success-contrast-foreground:#003100;--ifm-color-info-dark:#4cb3d4;--ifm-color-info-darker:#47a9c9;--ifm-color-info-darkest:#3b8ba5;--ifm-color-info-light:#6ecfef;--ifm-color-info-lighter:#87d8f2;--ifm-color-info-lightest:#aae3f6;--ifm-color-info-contrast-background:#eef9fd;--ifm-color-info-contrast-foreground:#193c47;--ifm-color-warning-dark:#e6a700;--ifm-color-warning-darker:#d99e00;--ifm-color-warning-darkest:#b38200;--ifm-color-warning-light:#ffc426;--ifm-color-warning-lighter:#ffcf4d;--ifm-color-warning-lightest:#ffdd80;--ifm-color-warning-contrast-background:#fff8e6;--ifm-color-warning-contrast-foreground:#4d3800;--ifm-color-danger-dark:#e13238;--ifm-color-danger-darker:#d53035;--ifm-color-danger-darkest:#af272b;--ifm-color-danger-light:#fb565b;--ifm-color-danger-lighter:#fb7478;--ifm-color-danger-lightest:#fd9c9f;--ifm-color-danger-contrast-background:#ffebec;--ifm-color-danger-contrast-foreground:#4b1113;--ifm-color-white:#fff;--ifm-color-black:#000;--ifm-color-gray-0:var(--ifm-color-white);--ifm-color-gray-100:#f5f6f7;--ifm-color-gray-200:#ebedf0;--ifm-color-gray-300:#dadde1;--ifm-color-gray-400:#ccd0d5;--ifm-color-gray-500:#bec3c9;--ifm-color-gray-600:#8d949e;--ifm-color-gray-700:#606770;--ifm-color-gray-800:#444950;--ifm-color-gray-900:#1c1e21;--ifm-color-gray-1000:var(--ifm-color-black);--ifm-color-emphasis-0:var(--ifm-color-gray-0);--ifm-color-emphasis-100:var(--ifm-color-gray-100);--ifm-color-emphasis-200:var(--ifm-color-gray-200);--ifm-color-emphasis-300:var(--ifm-color-gray-300);--ifm-color-emphasis-400:var(--ifm-color-gray-400);--ifm-color-emphasis-600:var(--ifm-color-gray-600);--ifm-color-emphasis-700:var(--ifm-color-gray-700);--ifm-color-emphasis-800:var(--ifm-color-gray-800);--ifm-color-emphasis-900:var(--ifm-color-gray-900);--ifm-color-emphasis-1000:var(--ifm-color-gray-1000);--ifm-color-content:var(--ifm-color-emphasis-900);--ifm-color-content-inverse:var(--ifm-color-emphasis-0);--ifm-color-content-secondary:#525860;--ifm-background-color:#0000;--ifm-background-surface-color:var(--ifm-color-content-inverse);--ifm-global-border-width:1px;--ifm-global-radius:0.4rem;--ifm-hover-overlay:#0000000d;--ifm-font-color-base:var(--ifm-color-content);--ifm-font-color-base-inverse:var(--ifm-color-content-inverse);--ifm-font-color-secondary:var(--ifm-color-content-secondary);--ifm-font-family-base:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";--ifm-font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--ifm-font-size-base:100%;--ifm-font-weight-light:300;--ifm-font-weight-normal:400;--ifm-font-weight-semibold:500;--ifm-font-weight-bold:700;--ifm-font-weight-base:var(--ifm-font-weight-normal);--ifm-line-height-base:1.65;--ifm-global-spacing:1rem;--ifm-spacing-vertical:var(--ifm-global-spacing);--ifm-spacing-horizontal:var(--ifm-global-spacing);--ifm-transition-fast:200ms;--ifm-transition-slow:400ms;--ifm-transition-timing-default:cubic-bezier(0.08,0.52,0.52,1);--ifm-global-shadow-lw:0 1px 2px 0 #0000001a;--ifm-global-shadow-md:0 5px 40px #0003;--ifm-global-shadow-tl:0 12px 28px 0 #0003,0 2px 4px 0 #0000001a;--ifm-z-index-dropdown:100;--ifm-z-index-fixed:200;--ifm-z-index-overlay:400;--ifm-container-width:1140px;--ifm-container-width-xl:1320px;--ifm-code-background:#f6f7f8;--ifm-code-border-radius:var(--ifm-global-radius);--ifm-code-font-size:90%;--ifm-code-padding-horizontal:0.1rem;--ifm-code-padding-vertical:0.1rem;--ifm-pre-background:var(--ifm-code-background);--ifm-pre-border-radius:var(--ifm-code-border-radius);--ifm-pre-color:inherit;--ifm-pre-line-height:1.45;--ifm-pre-padding:1rem;--ifm-heading-color:inherit;--ifm-heading-margin-top:0;--ifm-heading-margin-bottom:var(--ifm-spacing-vertical);--ifm-heading-font-family:var(--ifm-font-family-base);--ifm-heading-font-weight:var(--ifm-font-weight-bold);--ifm-heading-line-height:1.25;--ifm-h1-font-size:2rem;--ifm-h2-font-size:1.5rem;--ifm-h3-font-size:1.25rem;--ifm-h4-font-size:1rem;--ifm-h5-font-size:0.875rem;--ifm-h6-font-size:0.85rem;--ifm-image-alignment-padding:1.25rem;--ifm-leading-desktop:1.25;--ifm-leading:calc(var(--ifm-leading-desktop)*1rem);--ifm-list-left-padding:2rem;--ifm-list-margin:1rem;--ifm-list-item-margin:0.25rem;--ifm-list-paragraph-margin:1rem;--ifm-table-cell-padding:0.75rem;--ifm-table-background:#0000;--ifm-table-stripe-background:#00000008;--ifm-table-border-width:1px;--ifm-table-border-color:var(--ifm-color-emphasis-300);--ifm-table-head-background:inherit;--ifm-table-head-color:inherit;--ifm-table-head-font-weight:var(--ifm-font-weight-bold);--ifm-table-cell-color:inherit;--ifm-link-color:var(--ifm-color-primary);--ifm-link-decoration:none;--ifm-link-hover-color:var(--ifm-link-color);--ifm-link-hover-decoration:underline;--ifm-paragraph-margin-bottom:var(--ifm-leading);--ifm-blockquote-font-size:var(--ifm-font-size-base);--ifm-blockquote-border-left-width:2px;--ifm-blockquote-padding-horizontal:var(--ifm-spacing-horizontal);--ifm-blockquote-padding-vertical:0;--ifm-blockquote-shadow:none;--ifm-blockquote-color:var(--ifm-color-emphasis-800);--ifm-blockquote-border-color:var(--ifm-color-emphasis-300);--ifm-hr-background-color:var(--ifm-color-emphasis-500);--ifm-hr-height:1px;--ifm-hr-margin-vertical:1.5rem;--ifm-scrollbar-size:7px;--ifm-scrollbar-track-background-color:#f1f1f1;--ifm-scrollbar-thumb-background-color:silver;--ifm-scrollbar-thumb-hover-background-color:#a7a7a7;--ifm-alert-background-color:inherit;--ifm-alert-border-color:inherit;--ifm-alert-border-radius:var(--ifm-global-radius);--ifm-alert-border-width:0px;--ifm-alert-border-left-width:5px;--ifm-alert-color:var(--ifm-font-color-base);--ifm-alert-padding-horizontal:var(--ifm-spacing-horizontal);--ifm-alert-padding-vertical:var(--ifm-spacing-vertical);--ifm-alert-shadow:var(--ifm-global-shadow-lw);--ifm-avatar-intro-margin:1rem;--ifm-avatar-intro-alignment:inherit;--ifm-avatar-photo-size:3rem;--ifm-badge-background-color:inherit;--ifm-badge-border-color:inherit;--ifm-badge-border-radius:var(--ifm-global-radius);--ifm-badge-border-width:var(--ifm-global-border-width);--ifm-badge-color:var(--ifm-color-white);--ifm-badge-padding-horizontal:calc(var(--ifm-spacing-horizontal)*0.5);--ifm-badge-padding-vertical:calc(var(--ifm-spacing-vertical)*0.25);--ifm-breadcrumb-border-radius:1.5rem;--ifm-breadcrumb-spacing:0.5rem;--ifm-breadcrumb-color-active:var(--ifm-color-primary);--ifm-breadcrumb-item-background-active:var(--ifm-hover-overlay);--ifm-breadcrumb-padding-horizontal:0.8rem;--ifm-breadcrumb-padding-vertical:0.4rem;--ifm-breadcrumb-size-multiplier:1;--ifm-breadcrumb-separator:url('data:image/svg+xml;utf8,');--ifm-breadcrumb-separator-filter:none;--ifm-breadcrumb-separator-size:0.5rem;--ifm-breadcrumb-separator-size-multiplier:1.25;--ifm-button-background-color:inherit;--ifm-button-border-color:var(--ifm-button-background-color);--ifm-button-border-width:var(--ifm-global-border-width);--ifm-button-font-weight:var(--ifm-font-weight-bold);--ifm-button-padding-horizontal:1.5rem;--ifm-button-padding-vertical:0.375rem;--ifm-button-size-multiplier:1;--ifm-button-transition-duration:var(--ifm-transition-fast);--ifm-button-border-radius:calc(var(--ifm-global-radius)*var(--ifm-button-size-multiplier));--ifm-button-group-spacing:2px;--ifm-card-background-color:var(--ifm-background-surface-color);--ifm-card-border-radius:calc(var(--ifm-global-radius)*2);--ifm-card-horizontal-spacing:var(--ifm-global-spacing);--ifm-card-vertical-spacing:var(--ifm-global-spacing);--ifm-toc-border-color:var(--ifm-color-emphasis-300);--ifm-toc-link-color:var(--ifm-color-content-secondary);--ifm-toc-padding-vertical:0.5rem;--ifm-toc-padding-horizontal:0.5rem;--ifm-dropdown-background-color:var(--ifm-background-surface-color);--ifm-dropdown-font-weight:var(--ifm-font-weight-semibold);--ifm-dropdown-link-color:var(--ifm-font-color-base);--ifm-dropdown-hover-background-color:var(--ifm-hover-overlay);--ifm-footer-background-color:var(--ifm-color-emphasis-100);--ifm-footer-color:inherit;--ifm-footer-link-color:var(--ifm-color-emphasis-700);--ifm-footer-link-hover-color:var(--ifm-color-primary);--ifm-footer-link-horizontal-spacing:0.5rem;--ifm-footer-padding-horizontal:calc(var(--ifm-spacing-horizontal)*2);--ifm-footer-padding-vertical:calc(var(--ifm-spacing-vertical)*2);--ifm-footer-title-color:inherit;--ifm-footer-logo-max-width:min(30rem,90vw);--ifm-hero-background-color:var(--ifm-background-surface-color);--ifm-hero-text-color:var(--ifm-color-emphasis-800);--ifm-menu-color:var(--ifm-color-emphasis-700);--ifm-menu-color-active:var(--ifm-color-primary);--ifm-menu-color-background-active:var(--ifm-hover-overlay);--ifm-menu-color-background-hover:var(--ifm-hover-overlay);--ifm-menu-link-padding-horizontal:0.75rem;--ifm-menu-link-padding-vertical:0.375rem;--ifm-menu-link-sublist-icon:url('data:image/svg+xml;utf8,');--ifm-menu-link-sublist-icon-filter:none;--ifm-navbar-background-color:var(--ifm-background-surface-color);--ifm-navbar-height:3.75rem;--ifm-navbar-item-padding-horizontal:0.75rem;--ifm-navbar-item-padding-vertical:0.25rem;--ifm-navbar-link-color:var(--ifm-font-color-base);--ifm-navbar-link-active-color:var(--ifm-link-color);--ifm-navbar-padding-horizontal:var(--ifm-spacing-horizontal);--ifm-navbar-padding-vertical:calc(var(--ifm-spacing-vertical)*0.5);--ifm-navbar-shadow:var(--ifm-global-shadow-lw);--ifm-navbar-search-input-background-color:var(--ifm-color-emphasis-200);--ifm-navbar-search-input-color:var(--ifm-color-emphasis-800);--ifm-navbar-search-input-placeholder-color:var(--ifm-color-emphasis-500);--ifm-navbar-search-input-icon:url('data:image/svg+xml;utf8,');--ifm-navbar-sidebar-width:83vw;--ifm-pagination-border-radius:var(--ifm-global-radius);--ifm-pagination-color-active:var(--ifm-color-primary);--ifm-pagination-font-size:1rem;--ifm-pagination-item-active-background:var(--ifm-hover-overlay);--ifm-pagination-page-spacing:0.2em;--ifm-pagination-padding-horizontal:calc(var(--ifm-spacing-horizontal)*1);--ifm-pagination-padding-vertical:calc(var(--ifm-spacing-vertical)*0.25);--ifm-pagination-nav-border-radius:var(--ifm-global-radius);--ifm-pagination-nav-color-hover:var(--ifm-color-primary);--ifm-pills-color-active:var(--ifm-color-primary);--ifm-pills-color-background-active:var(--ifm-hover-overlay);--ifm-pills-spacing:0.125rem;--ifm-tabs-color:var(--ifm-font-color-secondary);--ifm-tabs-color-active:var(--ifm-color-primary);--ifm-tabs-color-active-border:var(--ifm-tabs-color-active);--ifm-tabs-padding-horizontal:1rem;--ifm-tabs-padding-vertical:1rem;--docusaurus-progress-bar-color:var(--ifm-color-primary);--docusaurus-announcement-bar-height:auto;--docusaurus-tag-list-border:var(--ifm-color-emphasis-300);--docusaurus-collapse-button-bg:#0000;--docusaurus-collapse-button-bg-hover:#0000001a;--doc-sidebar-width:300px;--doc-sidebar-hidden-width:30px;--op-color:#f0b6b6}.badge--danger,.badge--info,.badge--primary,.badge--secondary,.badge--success,.badge--warning{--ifm-badge-border-color:var(--ifm-badge-background-color)}.button--link,.button--outline{--ifm-button-background-color:#0000}*,.algolia-autocomplete .ds-dropdown-menu *{box-sizing:border-box}html{-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;text-size-adjust:100%;background-color:var(--ifm-background-color);color:var(--ifm-font-color-base);color-scheme:var(--ifm-color-scheme);font:var(--ifm-font-size-base)/var(--ifm-line-height-base) var(--ifm-font-family-base);text-rendering:optimizelegibility}iframe{border:0;color-scheme:auto}.container{margin:0 auto;max-width:var(--ifm-container-width)}.container--fluid{max-width:inherit}.row{display:flex;flex-wrap:wrap;margin:0 calc(var(--ifm-spacing-horizontal)*-1)}.margin-bottom--none,.margin-vert--none,.markdown>:last-child{margin-bottom:0!important}.margin-top--none,.margin-vert--none,.tabItem_LNqP{margin-top:0!important}.row--no-gutters{margin-left:0;margin-right:0}.margin-horiz--none,.margin-right--none{margin-right:0!important}.row--no-gutters>.col{padding-left:0;padding-right:0}.row--align-top{align-items:flex-start}.row--align-bottom{align-items:flex-end}.menuExternalLink_NmtK,.row--align-center{align-items:center}.row--align-stretch{align-items:stretch}.row--align-baseline{align-items:baseline}.col{--ifm-col-width:100%;flex:1 0;margin-left:0;max-width:var(--ifm-col-width)}.padding-bottom--none,.padding-vert--none{padding-bottom:0!important}.padding-top--none,.padding-vert--none{padding-top:0!important}.padding-horiz--none,.padding-left--none{padding-left:0!important}.padding-horiz--none,.padding-right--none{padding-right:0!important}.col[class*=col--]{flex:0 0 var(--ifm-col-width)}.col--1{--ifm-col-width:8.33333%}.col--offset-1{margin-left:8.33333%}.col--2{--ifm-col-width:16.66667%}.col--offset-2{margin-left:16.66667%}.col--3{--ifm-col-width:25%}.col--offset-3{margin-left:25%}.col--4{--ifm-col-width:33.33333%}.col--offset-4{margin-left:33.33333%}.col--5{--ifm-col-width:41.66667%}.col--offset-5{margin-left:41.66667%}.col--6{--ifm-col-width:50%}.col--offset-6{margin-left:50%}.col--7{--ifm-col-width:58.33333%}.col--offset-7{margin-left:58.33333%}.col--8{--ifm-col-width:66.66667%}.col--offset-8{margin-left:66.66667%}.col--9{--ifm-col-width:75%}.col--offset-9{margin-left:75%}.col--10{--ifm-col-width:83.33333%}.col--offset-10{margin-left:83.33333%}.col--11{--ifm-col-width:91.66667%}.col--offset-11{margin-left:91.66667%}.col--12{--ifm-col-width:100%}.col--offset-12{margin-left:100%}.margin-horiz--none,.margin-left--none{margin-left:0!important}.margin--none{margin:0!important}.margin-bottom--xs,.margin-vert--xs{margin-bottom:.25rem!important}.margin-top--xs,.margin-vert--xs{margin-top:.25rem!important}.margin-horiz--xs,.margin-left--xs{margin-left:.25rem!important}.margin-horiz--xs,.margin-right--xs{margin-right:.25rem!important}.margin--xs{margin:.25rem!important}.margin-bottom--sm,.margin-vert--sm{margin-bottom:.5rem!important}.margin-top--sm,.margin-vert--sm{margin-top:.5rem!important}.margin-horiz--sm,.margin-left--sm{margin-left:.5rem!important}.margin-horiz--sm,.margin-right--sm{margin-right:.5rem!important}.margin--sm{margin:.5rem!important}.margin-bottom--md,.margin-vert--md{margin-bottom:1rem!important}.margin-top--md,.margin-vert--md{margin-top:1rem!important}.margin-horiz--md,.margin-left--md{margin-left:1rem!important}.margin-horiz--md,.margin-right--md{margin-right:1rem!important}.margin--md{margin:1rem!important}.margin-bottom--lg,.margin-vert--lg{margin-bottom:2rem!important}.margin-top--lg,.margin-vert--lg{margin-top:2rem!important}.margin-horiz--lg,.margin-left--lg{margin-left:2rem!important}.margin-horiz--lg,.margin-right--lg{margin-right:2rem!important}.margin--lg{margin:2rem!important}.margin-bottom--xl,.margin-vert--xl{margin-bottom:5rem!important}.margin-top--xl,.margin-vert--xl{margin-top:5rem!important}.margin-horiz--xl,.margin-left--xl{margin-left:5rem!important}.margin-horiz--xl,.margin-right--xl{margin-right:5rem!important}.margin--xl{margin:5rem!important}.padding--none{padding:0!important}.padding-bottom--xs,.padding-vert--xs{padding-bottom:.25rem!important}.padding-top--xs,.padding-vert--xs{padding-top:.25rem!important}.padding-horiz--xs,.padding-left--xs{padding-left:.25rem!important}.padding-horiz--xs,.padding-right--xs{padding-right:.25rem!important}.padding--xs{padding:.25rem!important}.padding-bottom--sm,.padding-vert--sm{padding-bottom:.5rem!important}.padding-top--sm,.padding-vert--sm{padding-top:.5rem!important}.padding-horiz--sm,.padding-left--sm{padding-left:.5rem!important}.padding-horiz--sm,.padding-right--sm{padding-right:.5rem!important}.padding--sm{padding:.5rem!important}.padding-bottom--md,.padding-vert--md{padding-bottom:1rem!important}.padding-top--md,.padding-vert--md{padding-top:1rem!important}.padding-horiz--md,.padding-left--md{padding-left:1rem!important}.padding-horiz--md,.padding-right--md{padding-right:1rem!important}.padding--md{padding:1rem!important}.padding-bottom--lg,.padding-vert--lg{padding-bottom:2rem!important}.padding-top--lg,.padding-vert--lg{padding-top:2rem!important}.padding-horiz--lg,.padding-left--lg{padding-left:2rem!important}.padding-horiz--lg,.padding-right--lg{padding-right:2rem!important}.padding--lg{padding:2rem!important}.padding-bottom--xl,.padding-vert--xl{padding-bottom:5rem!important}.padding-top--xl,.padding-vert--xl{padding-top:5rem!important}.padding-horiz--xl,.padding-left--xl{padding-left:5rem!important}.padding-horiz--xl,.padding-right--xl{padding-right:5rem!important}.padding--xl{padding:5rem!important}code{background-color:var(--ifm-code-background);border:.1rem solid #0000001a;border-radius:var(--ifm-code-border-radius);font-family:var(--ifm-font-family-monospace);font-size:var(--ifm-code-font-size);padding:var(--ifm-code-padding-vertical) var(--ifm-code-padding-horizontal)}a code{color:inherit}pre{background-color:var(--ifm-pre-background);border-radius:var(--ifm-pre-border-radius);color:var(--ifm-pre-color);font:var(--ifm-code-font-size)/var(--ifm-pre-line-height) var(--ifm-font-family-monospace);overflow:auto;padding:var(--ifm-pre-padding)}pre code{background-color:initial;border:none;font-size:100%;line-height:inherit;padding:0}kbd{background-color:var(--ifm-color-emphasis-0);border:1px solid var(--ifm-color-emphasis-400);border-radius:.2rem;box-shadow:inset 0 -1px 0 var(--ifm-color-emphasis-400);color:var(--ifm-color-emphasis-800);font:80% var(--ifm-font-family-monospace);padding:.15rem .3rem}h1,h2,h3,h4,h5,h6{color:var(--ifm-heading-color);font-family:var(--ifm-heading-font-family);font-weight:var(--ifm-heading-font-weight);line-height:var(--ifm-heading-line-height);margin:var(--ifm-heading-margin-top) 0 var(--ifm-heading-margin-bottom) 0}h1{font-size:var(--ifm-h1-font-size)}h2{font-size:var(--ifm-h2-font-size)}h3{font-size:var(--ifm-h3-font-size)}h4{font-size:var(--ifm-h4-font-size)}h5{font-size:var(--ifm-h5-font-size)}h6{font-size:var(--ifm-h6-font-size)}img{max-width:100%}img[align=right]{padding-left:var(--image-alignment-padding)}img[align=left]{padding-right:var(--image-alignment-padding)}.markdown{--ifm-h1-vertical-rhythm-top:3;--ifm-h2-vertical-rhythm-top:2;--ifm-h3-vertical-rhythm-top:1.5;--ifm-heading-vertical-rhythm-top:1.25;--ifm-h1-vertical-rhythm-bottom:1.25;--ifm-heading-vertical-rhythm-bottom:1}.markdown:after,.markdown:before{content:"";display:table}.markdown:after{clear:both}.markdown h1:first-child{--ifm-h1-font-size:3rem;margin-bottom:calc(var(--ifm-h1-vertical-rhythm-bottom)*var(--ifm-leading))}.markdown>h2{--ifm-h2-font-size:2rem;margin-top:calc(var(--ifm-h2-vertical-rhythm-top)*var(--ifm-leading))}.markdown>h3{--ifm-h3-font-size:1.5rem;margin-top:calc(var(--ifm-h3-vertical-rhythm-top)*var(--ifm-leading))}.markdown>h4,.markdown>h5,.markdown>h6{margin-top:calc(var(--ifm-heading-vertical-rhythm-top)*var(--ifm-leading))}.markdown>p,.markdown>pre,.markdown>ul,.tabList__CuJ{margin-bottom:var(--ifm-leading)}.markdown li>p{margin-top:var(--ifm-list-paragraph-margin)}.markdown li+li{margin-top:var(--ifm-list-item-margin)}ol,ul{margin:0 0 var(--ifm-list-margin);padding-left:var(--ifm-list-left-padding)}ol ol,ul ol{list-style-type:lower-roman}ol ol ol,ol ul ol,ul ol ol,ul ul ol{list-style-type:lower-alpha}table{border-collapse:collapse;display:block;margin-bottom:var(--ifm-spacing-vertical);overflow:auto}table thead tr{border-bottom:2px solid var(--ifm-table-border-color)}table thead,table tr:nth-child(2n){background-color:var(--ifm-table-stripe-background)}table tr{background-color:var(--ifm-table-background);border-top:var(--ifm-table-border-width) solid var(--ifm-table-border-color)}table td,table th{border:var(--ifm-table-border-width) solid var(--ifm-table-border-color);padding:var(--ifm-table-cell-padding)}table th{background-color:var(--ifm-table-head-background);color:var(--ifm-table-head-color);font-weight:var(--ifm-table-head-font-weight)}table td{color:var(--ifm-table-cell-color)}strong{font-weight:var(--ifm-font-weight-bold)}a{color:var(--ifm-link-color);text-decoration:var(--ifm-link-decoration)}a:hover{color:var(--ifm-link-hover-color);text-decoration:var(--ifm-link-hover-decoration)}.button:hover,.text--no-decoration,.text--no-decoration:hover,a:not([href]){text-decoration:none}p{margin:0 0 var(--ifm-paragraph-margin-bottom)}blockquote{border-left:var(--ifm-blockquote-border-left-width) solid var(--ifm-blockquote-border-color);box-shadow:var(--ifm-blockquote-shadow);color:var(--ifm-blockquote-color);font-size:var(--ifm-blockquote-font-size);padding:var(--ifm-blockquote-padding-vertical) var(--ifm-blockquote-padding-horizontal)}blockquote>:first-child{margin-top:0}blockquote>:last-child{margin-bottom:0}hr{background-color:var(--ifm-hr-background-color);border:0;height:var(--ifm-hr-height);margin:var(--ifm-hr-margin-vertical) 0}.shadow--lw{box-shadow:var(--ifm-global-shadow-lw)!important}.shadow--md{box-shadow:var(--ifm-global-shadow-md)!important}.shadow--tl{box-shadow:var(--ifm-global-shadow-tl)!important}.text--primary,.wordWrapButtonEnabled_EoeP .wordWrapButtonIcon_Bwma{color:var(--ifm-color-primary)}.text--secondary{color:var(--ifm-color-secondary)}.text--success{color:var(--ifm-color-success)}.text--info{color:var(--ifm-color-info)}.text--warning{color:var(--ifm-color-warning)}.text--danger{color:var(--ifm-color-danger)}.text--center{text-align:center}.text--left{text-align:left}.text--justify{text-align:justify}.text--right{text-align:right}.text--capitalize{text-transform:capitalize}.text--lowercase{text-transform:lowercase}.admonition h5,.admonitionHeading_tbUL,.alert__heading,.text--uppercase{text-transform:uppercase}.text--light{font-weight:var(--ifm-font-weight-light)}.text--normal{font-weight:var(--ifm-font-weight-normal)}.text--semibold{font-weight:var(--ifm-font-weight-semibold)}.text--bold{font-weight:var(--ifm-font-weight-bold)}.text--italic,.token.italic{font-style:italic}.text--truncate{overflow:hidden;text-overflow:ellipsis}.text--break{word-wrap:break-word!important;word-break:break-word!important}.docPage_Dpn1 .member_J0w1 code,.docTitle_mZRt,a.menu__link{word-break:break-word}.clean-btn{background:none;border:none;color:inherit;cursor:pointer;font-family:inherit;padding:0}.alert,.alert .close{color:var(--ifm-alert-foreground-color)}.clean-list{padding-left:0}.alert--primary{--ifm-alert-background-color:var(--ifm-color-primary-contrast-background);--ifm-alert-background-color-highlight:#3578e526;--ifm-alert-foreground-color:var(--ifm-color-primary-contrast-foreground);--ifm-alert-border-color:var(--ifm-color-primary-dark)}.alert--secondary{--ifm-alert-background-color:var(--ifm-color-secondary-contrast-background);--ifm-alert-background-color-highlight:#ebedf026;--ifm-alert-foreground-color:var(--ifm-color-secondary-contrast-foreground);--ifm-alert-border-color:var(--ifm-color-secondary-dark)}.alert--success{--ifm-alert-background-color:var(--ifm-color-success-contrast-background);--ifm-alert-background-color-highlight:#00a40026;--ifm-alert-foreground-color:var(--ifm-color-success-contrast-foreground);--ifm-alert-border-color:var(--ifm-color-success-dark)}.alert--info{--ifm-alert-background-color:var(--ifm-color-info-contrast-background);--ifm-alert-background-color-highlight:#54c7ec26;--ifm-alert-foreground-color:var(--ifm-color-info-contrast-foreground);--ifm-alert-border-color:var(--ifm-color-info-dark)}.alert--warning{--ifm-alert-background-color:var(--ifm-color-warning-contrast-background);--ifm-alert-background-color-highlight:#ffba0026;--ifm-alert-foreground-color:var(--ifm-color-warning-contrast-foreground);--ifm-alert-border-color:var(--ifm-color-warning-dark)}.alert--danger{--ifm-alert-background-color:var(--ifm-color-danger-contrast-background);--ifm-alert-background-color-highlight:#fa383e26;--ifm-alert-foreground-color:var(--ifm-color-danger-contrast-foreground);--ifm-alert-border-color:var(--ifm-color-danger-dark)}.alert{--ifm-code-background:var(--ifm-alert-background-color-highlight);--ifm-link-color:var(--ifm-alert-foreground-color);--ifm-link-hover-color:var(--ifm-alert-foreground-color);--ifm-link-decoration:underline;--ifm-tabs-color:var(--ifm-alert-foreground-color);--ifm-tabs-color-active:var(--ifm-alert-foreground-color);--ifm-tabs-color-active-border:var(--ifm-alert-border-color);background-color:var(--ifm-alert-background-color);border:var(--ifm-alert-border-width) solid var(--ifm-alert-border-color);border-left-width:var(--ifm-alert-border-left-width);border-radius:var(--ifm-alert-border-radius);box-shadow:var(--ifm-alert-shadow);padding:var(--ifm-alert-padding-vertical) var(--ifm-alert-padding-horizontal)}.alert__heading{align-items:center;display:flex;font:700 var(--ifm-h5-font-size)/var(--ifm-heading-line-height) var(--ifm-heading-font-family);margin-bottom:.5rem}.alert__icon{display:inline-flex;margin-right:.4em}.alert__icon svg{fill:var(--ifm-alert-foreground-color);stroke:var(--ifm-alert-foreground-color);stroke-width:0}.alert .close{margin:calc(var(--ifm-alert-padding-vertical)*-1) calc(var(--ifm-alert-padding-horizontal)*-1) 0 0;opacity:.75}.alert .close:focus,.alert .close:hover{opacity:1}.alert a{text-decoration-color:var(--ifm-alert-border-color)}.alert a:hover{text-decoration-thickness:2px}.avatar{column-gap:var(--ifm-avatar-intro-margin);display:flex}.avatar__photo{border-radius:50%;display:block;height:var(--ifm-avatar-photo-size);overflow:hidden;width:var(--ifm-avatar-photo-size)}.card--full-height,.navbar__logo img,body,html{height:100%}.avatar__photo--sm{--ifm-avatar-photo-size:2rem}.avatar__photo--lg{--ifm-avatar-photo-size:4rem}.avatar__photo--xl{--ifm-avatar-photo-size:6rem}.avatar__intro{display:flex;flex:1 1;flex-direction:column;justify-content:center;text-align:var(--ifm-avatar-intro-alignment)}.badge,.breadcrumbs__item,.breadcrumbs__link,.button,.dropdown>.navbar__link:after{display:inline-block}.avatar__name{font:700 var(--ifm-h4-font-size)/var(--ifm-heading-line-height) var(--ifm-font-family-base)}.avatar__subtitle{margin-top:.25rem}.avatar--vertical{--ifm-avatar-intro-alignment:center;--ifm-avatar-intro-margin:0.5rem;align-items:center;flex-direction:column}.badge{background-color:var(--ifm-badge-background-color);border:var(--ifm-badge-border-width) solid var(--ifm-badge-border-color);border-radius:var(--ifm-badge-border-radius);color:var(--ifm-badge-color);font-size:75%;font-weight:var(--ifm-font-weight-bold);line-height:1;padding:var(--ifm-badge-padding-vertical) var(--ifm-badge-padding-horizontal)}.badge--primary{--ifm-badge-background-color:var(--ifm-color-primary)}.badge--secondary{--ifm-badge-background-color:var(--ifm-color-secondary);color:var(--ifm-color-black)}.breadcrumbs__link,.button.button--secondary.button--outline:not(.button--active):not(:hover){color:var(--ifm-font-color-base)}.badge--success{--ifm-badge-background-color:var(--ifm-color-success)}.badge--info{--ifm-badge-background-color:var(--ifm-color-info)}.badge--warning{--ifm-badge-background-color:var(--ifm-color-warning)}.badge--danger{--ifm-badge-background-color:var(--ifm-color-danger)}.breadcrumbs{margin-bottom:0;padding-left:0}.breadcrumbs__item:not(:last-child):after{background:var(--ifm-breadcrumb-separator) center;content:" ";display:inline-block;filter:var(--ifm-breadcrumb-separator-filter);height:calc(var(--ifm-breadcrumb-separator-size)*var(--ifm-breadcrumb-size-multiplier)*var(--ifm-breadcrumb-separator-size-multiplier));margin:0 var(--ifm-breadcrumb-spacing);opacity:.5;width:calc(var(--ifm-breadcrumb-separator-size)*var(--ifm-breadcrumb-size-multiplier)*var(--ifm-breadcrumb-separator-size-multiplier))}.breadcrumbs__item--active .breadcrumbs__link{background:var(--ifm-breadcrumb-item-background-active);color:var(--ifm-breadcrumb-color-active)}.breadcrumbs__link{border-radius:var(--ifm-breadcrumb-border-radius);font-size:calc(1rem*var(--ifm-breadcrumb-size-multiplier));padding:calc(var(--ifm-breadcrumb-padding-vertical)*var(--ifm-breadcrumb-size-multiplier)) calc(var(--ifm-breadcrumb-padding-horizontal)*var(--ifm-breadcrumb-size-multiplier));transition-duration:var(--ifm-transition-fast);transition-property:background,color}.breadcrumbs__link:any-link:hover,.breadcrumbs__link:link:hover,.breadcrumbs__link:visited:hover,area.breadcrumbs__link[href]:hover{background:var(--ifm-breadcrumb-item-background-active);text-decoration:none}.breadcrumbs--sm{--ifm-breadcrumb-size-multiplier:0.8}.breadcrumbs--lg{--ifm-breadcrumb-size-multiplier:1.2}.button{background-color:var(--ifm-button-background-color);border:var(--ifm-button-border-width) solid var(--ifm-button-border-color);border-radius:var(--ifm-button-border-radius);cursor:pointer;font-size:calc(.875rem*var(--ifm-button-size-multiplier));font-weight:var(--ifm-button-font-weight);line-height:1.5;padding:calc(var(--ifm-button-padding-vertical)*var(--ifm-button-size-multiplier)) calc(var(--ifm-button-padding-horizontal)*var(--ifm-button-size-multiplier));text-align:center;transition-duration:var(--ifm-button-transition-duration);transition-property:color,background,border-color;-webkit-user-select:none;user-select:none}.searchbox__reset,.searchbox__submit{-webkit-user-select:none;position:absolute;font-size:inherit}.button,.button:hover{color:var(--ifm-button-color)}.button--outline{--ifm-button-color:var(--ifm-button-border-color)}.button--outline:hover{--ifm-button-background-color:var(--ifm-button-border-color)}.button--link{--ifm-button-border-color:#0000;color:var(--ifm-link-color);text-decoration:var(--ifm-link-decoration)}.button--link.button--active,.button--link:active,.button--link:hover{color:var(--ifm-link-hover-color);text-decoration:var(--ifm-link-hover-decoration)}.button.disabled,.button:disabled,.button[disabled]{opacity:.65;pointer-events:none}.button--sm{--ifm-button-size-multiplier:0.8}.button--lg{--ifm-button-size-multiplier:1.35}.button--block{display:block;width:100%}.button.button--secondary{color:var(--ifm-color-gray-900)}:where(.button--primary){--ifm-button-background-color:var(--ifm-color-primary);--ifm-button-border-color:var(--ifm-color-primary)}:where(.button--primary):not(.button--outline):hover{--ifm-button-background-color:var(--ifm-color-primary-dark);--ifm-button-border-color:var(--ifm-color-primary-dark)}.button--primary.button--active,.button--primary:active{--ifm-button-background-color:var(--ifm-color-primary-darker);--ifm-button-border-color:var(--ifm-color-primary-darker)}:where(.button--secondary){--ifm-button-background-color:var(--ifm-color-secondary);--ifm-button-border-color:var(--ifm-color-secondary)}:where(.button--secondary):not(.button--outline):hover{--ifm-button-background-color:var(--ifm-color-secondary-dark);--ifm-button-border-color:var(--ifm-color-secondary-dark)}.button--secondary.button--active,.button--secondary:active{--ifm-button-background-color:var(--ifm-color-secondary-darker);--ifm-button-border-color:var(--ifm-color-secondary-darker)}:where(.button--success){--ifm-button-background-color:var(--ifm-color-success);--ifm-button-border-color:var(--ifm-color-success)}:where(.button--success):not(.button--outline):hover{--ifm-button-background-color:var(--ifm-color-success-dark);--ifm-button-border-color:var(--ifm-color-success-dark)}.button--success.button--active,.button--success:active{--ifm-button-background-color:var(--ifm-color-success-darker);--ifm-button-border-color:var(--ifm-color-success-darker)}:where(.button--info){--ifm-button-background-color:var(--ifm-color-info);--ifm-button-border-color:var(--ifm-color-info)}:where(.button--info):not(.button--outline):hover{--ifm-button-background-color:var(--ifm-color-info-dark);--ifm-button-border-color:var(--ifm-color-info-dark)}.button--info.button--active,.button--info:active{--ifm-button-background-color:var(--ifm-color-info-darker);--ifm-button-border-color:var(--ifm-color-info-darker)}:where(.button--warning){--ifm-button-background-color:var(--ifm-color-warning);--ifm-button-border-color:var(--ifm-color-warning)}:where(.button--warning):not(.button--outline):hover{--ifm-button-background-color:var(--ifm-color-warning-dark);--ifm-button-border-color:var(--ifm-color-warning-dark)}.button--warning.button--active,.button--warning:active{--ifm-button-background-color:var(--ifm-color-warning-darker);--ifm-button-border-color:var(--ifm-color-warning-darker)}:where(.button--danger){--ifm-button-background-color:var(--ifm-color-danger);--ifm-button-border-color:var(--ifm-color-danger)}:where(.button--danger):not(.button--outline):hover{--ifm-button-background-color:var(--ifm-color-danger-dark);--ifm-button-border-color:var(--ifm-color-danger-dark)}.button--danger.button--active,.button--danger:active{--ifm-button-background-color:var(--ifm-color-danger-darker);--ifm-button-border-color:var(--ifm-color-danger-darker)}.button-group{display:inline-flex;gap:var(--ifm-button-group-spacing)}.button-group>.button:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.button-group>.button:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.button-group--block{display:flex;justify-content:stretch}.button-group--block>.button,.docPage_Dpn1{flex-grow:1}.card{background-color:var(--ifm-card-background-color);border-radius:var(--ifm-card-border-radius);box-shadow:var(--ifm-global-shadow-lw);display:flex;flex-direction:column;overflow:hidden}.card__image{padding-top:var(--ifm-card-vertical-spacing)}.card__image:first-child{padding-top:0}.card__body,.card__footer,.card__header{padding:var(--ifm-card-vertical-spacing) var(--ifm-card-horizontal-spacing)}.card__body:not(:last-child),.card__footer:not(:last-child),.card__header:not(:last-child){padding-bottom:0}.card__body>:last-child,.card__footer>:last-child,.card__header>:last-child{margin-bottom:0}.card__footer{margin-top:auto}.table-of-contents{font-size:.8rem;margin-bottom:0;padding:var(--ifm-toc-padding-vertical) 0}.table-of-contents,.table-of-contents ul{list-style:none;padding-left:var(--ifm-toc-padding-horizontal)}.table-of-contents li{margin:var(--ifm-toc-padding-vertical) var(--ifm-toc-padding-horizontal)}.table-of-contents__left-border{border-left:1px solid var(--ifm-toc-border-color)}.table-of-contents__link{color:var(--ifm-toc-link-color);display:block}.table-of-contents__link--active,.table-of-contents__link--active code,.table-of-contents__link:hover,.table-of-contents__link:hover code{color:var(--ifm-color-primary);text-decoration:none}.close{color:var(--ifm-color-black);float:right;font-size:1.5rem;font-weight:var(--ifm-font-weight-bold);line-height:1;opacity:.5;padding:1rem;transition:opacity var(--ifm-transition-fast) var(--ifm-transition-timing-default)}.close:hover{opacity:.7}.close:focus,.theme-code-block-highlighted-line .codeLineNumber_Tfdd:before{opacity:.8}.dropdown{display:inline-flex;font-weight:var(--ifm-dropdown-font-weight);position:relative;vertical-align:top}.dropdown--hoverable:hover .dropdown__menu,.dropdown--show .dropdown__menu{opacity:1;pointer-events:all;transform:translateY(-1px);visibility:visible}#nprogress,.dropdown__menu,.navbar__item.dropdown .navbar__link:not([href]){pointer-events:none}.dropdown--right .dropdown__menu{left:inherit;right:0}.dropdown--nocaret .navbar__link:after{content:none!important}.dropdown__menu{background-color:var(--ifm-dropdown-background-color);border-radius:var(--ifm-global-radius);box-shadow:var(--ifm-global-shadow-md);left:0;max-height:80vh;min-width:10rem;opacity:0;overflow-y:auto;padding:.5rem;position:absolute;top:calc(100% - var(--ifm-navbar-item-padding-vertical) + .3rem);transform:translateY(-.625rem);transition-duration:var(--ifm-transition-fast);transition-property:opacity,transform,visibility;transition-timing-function:var(--ifm-transition-timing-default);visibility:hidden;z-index:var(--ifm-z-index-dropdown)}.menu__caret,.menu__link,.menu__list-item-collapsible{border-radius:.25rem;transition:background var(--ifm-transition-fast) var(--ifm-transition-timing-default)}.dropdown__link{border-radius:.25rem;color:var(--ifm-dropdown-link-color);display:block;font-size:.875rem;margin-top:.2rem;padding:.25rem .5rem}.dropdown__link--active,.dropdown__link:hover{background-color:var(--ifm-dropdown-hover-background-color);color:var(--ifm-dropdown-link-color);text-decoration:none}.dropdown__link--active,.dropdown__link--active:hover{--ifm-dropdown-link-color:var(--ifm-link-color)}.dropdown>.navbar__link:after{border-color:currentcolor #0000;border-style:solid;border-width:.4em .4em 0;content:"";margin-left:.3em;position:relative;top:2px;transform:translateY(-50%)}.footer{background-color:var(--ifm-footer-background-color);color:var(--ifm-footer-color);padding:var(--ifm-footer-padding-vertical) var(--ifm-footer-padding-horizontal)}.footer--dark{--ifm-footer-background-color:#303846;--ifm-footer-color:var(--ifm-footer-link-color);--ifm-footer-link-color:var(--ifm-color-secondary);--ifm-footer-title-color:var(--ifm-color-white)}.footer__links{margin-bottom:1rem}.footer__link-item{color:var(--ifm-footer-link-color);line-height:2}.footer__link-item:hover{color:var(--ifm-footer-link-hover-color)}.footer__link-separator{margin:0 var(--ifm-footer-link-horizontal-spacing)}.footer__logo{margin-top:1rem;max-width:var(--ifm-footer-logo-max-width)}.footer__title{color:var(--ifm-footer-title-color);font:700 var(--ifm-h4-font-size)/var(--ifm-heading-line-height) var(--ifm-font-family-base);margin-bottom:var(--ifm-heading-margin-bottom)}.menu,.navbar__link{font-weight:var(--ifm-font-weight-semibold)}.docItemContainer_Djhp article>:first-child,.docItemContainer_Djhp header+*,.footer__item{margin-top:0}.admonitionContent_S0QG>:last-child,.collapsibleContent_i85q>:last-child,.footer__items,.tabItem_Ymn6>:last-child{margin-bottom:0}.codeBlockStandalone_MEMb,[type=checkbox]{padding:0}.hero{align-items:center;background-color:var(--ifm-hero-background-color);color:var(--ifm-hero-text-color);display:flex;padding:4rem 2rem}.hero--primary{--ifm-hero-background-color:var(--ifm-color-primary);--ifm-hero-text-color:var(--ifm-font-color-base-inverse)}.hero--dark{--ifm-hero-background-color:#303846;--ifm-hero-text-color:var(--ifm-color-white)}.hero__title{font-size:3rem}.hero__subtitle{font-size:1.5rem}.menu__list{margin:0;padding-left:0}.menu__caret,.menu__link{padding:var(--ifm-menu-link-padding-vertical) var(--ifm-menu-link-padding-horizontal)}.menu__list .menu__list{flex:0 0 100%;margin-top:.25rem;padding-left:var(--ifm-menu-link-padding-horizontal)}.menu__list-item:not(:first-child){margin-top:.25rem}.menu__list-item--collapsed .menu__list{height:0;overflow:hidden}.details_lb9f[data-collapsed=false].isBrowser_bmU9>summary:before,.details_lb9f[open]:not(.isBrowser_bmU9)>summary:before,.menu__list-item--collapsed .menu__caret:before,.menu__list-item--collapsed .menu__link--sublist:after{transform:rotate(90deg)}.menu__list-item-collapsible{display:flex;flex-wrap:wrap;position:relative}.menu__caret:hover,.menu__link:hover,.menu__list-item-collapsible--active,.menu__list-item-collapsible:hover{background:var(--ifm-menu-color-background-hover)}.menu__list-item-collapsible .menu__link--active,.menu__list-item-collapsible .menu__link:hover{background:none!important}.menu__caret,.menu__link{align-items:center;display:flex}.menu__link{color:var(--ifm-menu-color);flex:1;line-height:1.25}.menu__link:hover{color:var(--ifm-menu-color);text-decoration:none}.menu__caret:before,.menu__link--sublist-caret:after{height:1.25rem;transform:rotate(180deg);transition:transform var(--ifm-transition-fast) linear;width:1.25rem;content:"";filter:var(--ifm-menu-link-sublist-icon-filter)}.menu__link--sublist-caret:after{background:var(--ifm-menu-link-sublist-icon) 50%/2rem 2rem;margin-left:auto;min-width:1.25rem}.menu__link--active,.menu__link--active:hover{color:var(--ifm-menu-color-active)}.navbar__brand,.navbar__link{color:var(--ifm-navbar-link-color)}.menu__link--active:not(.menu__link--sublist){background-color:var(--ifm-menu-color-background-active)}.menu__caret:before{background:var(--ifm-menu-link-sublist-icon) 50%/2rem 2rem}.navbar--dark,html[data-theme=dark]{--ifm-menu-link-sublist-icon-filter:invert(100%) sepia(94%) saturate(17%) hue-rotate(223deg) brightness(104%) contrast(98%)}.navbar{background-color:var(--ifm-navbar-background-color);box-shadow:var(--ifm-navbar-shadow);height:var(--ifm-navbar-height);padding:var(--ifm-navbar-padding-vertical) var(--ifm-navbar-padding-horizontal)}.docPageContainer_wNNk,.navbar,.navbar>.container,.navbar>.container-fluid{display:flex}.navbar--fixed-top{position:sticky;top:0;z-index:var(--ifm-z-index-fixed)}.navbar-sidebar,.navbar-sidebar__backdrop{bottom:0;opacity:0;position:fixed;transition-timing-function:ease-in-out;left:0;top:0}.navbar__inner{display:flex;flex-wrap:wrap;justify-content:space-between;width:100%}.navbar__brand{align-items:center;display:flex;margin-right:1rem;min-width:0}.navbar__brand:hover{color:var(--ifm-navbar-link-hover-color);text-decoration:none}.announcementBarContent_xLdY,.navbar__title{flex:1 1 auto}.navbar__toggle{display:none;margin-right:.5rem}.navbar__logo{flex:0 0 auto;height:2rem;margin-right:.5rem}.navbar__items{align-items:center;display:flex;flex:1;min-width:0}.navbar__items--center{flex:0 0 auto}.navbar__items--center .navbar__brand{margin:0}.navbar__items--center+.navbar__items--right{flex:1}.navbar__items--right{flex:0 0 auto;justify-content:flex-end}.navbar__items--right>:last-child{padding-right:0}.navbar__item{display:inline-block;padding:var(--ifm-navbar-item-padding-vertical) var(--ifm-navbar-item-padding-horizontal)}.navbar__link--active,.navbar__link:hover{color:var(--ifm-navbar-link-hover-color);text-decoration:none}.navbar--dark,.navbar--primary{--ifm-menu-color:var(--ifm-color-gray-300);--ifm-navbar-link-color:var(--ifm-color-gray-100);--ifm-navbar-search-input-background-color:#ffffff1a;--ifm-navbar-search-input-placeholder-color:#ffffff80;color:var(--ifm-color-white)}.navbar--dark{--ifm-navbar-background-color:#242526;--ifm-menu-color-background-active:#ffffff0d;--ifm-navbar-search-input-color:var(--ifm-color-white)}.navbar--primary{--ifm-navbar-background-color:var(--ifm-color-primary);--ifm-navbar-link-hover-color:var(--ifm-color-white);--ifm-menu-color-active:var(--ifm-color-white);--ifm-navbar-search-input-color:var(--ifm-color-emphasis-500)}.navbar__search-input{-webkit-appearance:none;appearance:none;background:var(--ifm-navbar-search-input-background-color) var(--ifm-navbar-search-input-icon) no-repeat .75rem center/1rem 1rem;border:none;border-radius:2rem;color:var(--ifm-navbar-search-input-color);cursor:text;display:inline-block;font-size:.9rem;height:2rem;padding:0 .5rem 0 2.25rem;width:12.5rem}.navbar__search-input::placeholder{color:var(--ifm-navbar-search-input-placeholder-color)}.navbar-sidebar{background-color:var(--ifm-navbar-background-color);box-shadow:var(--ifm-global-shadow-md);transform:translate3d(-100%,0,0);transition-duration:.25s;transition-property:opacity,visibility,transform;visibility:hidden;width:var(--ifm-navbar-sidebar-width)}.navbar-sidebar--show .navbar-sidebar,.navbar-sidebar__items{transform:translateZ(0)}.badge_Ba2I:hover .badgeToolTipTail_H9D_:after,.badge_Ba2I:hover .badgeTooltip_cWXP,.navbar-sidebar--show .navbar-sidebar,.navbar-sidebar--show .navbar-sidebar__backdrop{opacity:1;visibility:visible}.navbar-sidebar__backdrop{background-color:#0009;right:0;transition-duration:.1s;transition-property:opacity,visibility;visibility:hidden}.navbar-sidebar__brand{align-items:center;box-shadow:var(--ifm-navbar-shadow);display:flex;flex:1;height:var(--ifm-navbar-height);padding:var(--ifm-navbar-padding-vertical) var(--ifm-navbar-padding-horizontal)}.navbar-sidebar__items{display:flex;height:calc(100% - var(--ifm-navbar-height));transition:transform var(--ifm-transition-fast) ease-in-out}.navbar-sidebar__items--show-secondary{transform:translate3d(calc((var(--ifm-navbar-sidebar-width))*-1),0,0)}.navbar-sidebar__item{flex-shrink:0;padding:.5rem;width:calc(var(--ifm-navbar-sidebar-width))}.navbar-sidebar__back{background:var(--ifm-menu-color-background-active);font-size:15px;font-weight:var(--ifm-button-font-weight);margin:0 0 .2rem -.5rem;padding:.6rem 1.5rem;position:relative;text-align:left;top:-.5rem;width:calc(100% + 1rem)}.navbar-sidebar__close{display:flex;margin-left:auto}.pagination{column-gap:var(--ifm-pagination-page-spacing);display:flex;font-size:var(--ifm-pagination-font-size);padding-left:0}.pagination--sm{--ifm-pagination-font-size:0.8rem;--ifm-pagination-padding-horizontal:0.8rem;--ifm-pagination-padding-vertical:0.2rem}.pagination--lg{--ifm-pagination-font-size:1.2rem;--ifm-pagination-padding-horizontal:1.2rem;--ifm-pagination-padding-vertical:0.3rem}.pagination__item{display:inline-flex}.pagination__item>span{padding:var(--ifm-pagination-padding-vertical)}.pagination__item--active .pagination__link{color:var(--ifm-pagination-color-active)}.pagination__item--active .pagination__link,.pagination__item:not(.pagination__item--active):hover .pagination__link{background:var(--ifm-pagination-item-active-background)}.pagination__item--disabled,.pagination__item[disabled]{opacity:.25;pointer-events:none}.pagination__link{border-radius:var(--ifm-pagination-border-radius);color:var(--ifm-font-color-base);display:inline-block;padding:var(--ifm-pagination-padding-vertical) var(--ifm-pagination-padding-horizontal);transition:background var(--ifm-transition-fast) var(--ifm-transition-timing-default)}.pagination__link:hover,.sourceButton_sEho:focus,.sourceButton_sEho:hover{text-decoration:none}.pagination-nav{grid-gap:var(--ifm-spacing-horizontal);display:grid;gap:var(--ifm-spacing-horizontal);grid-template-columns:repeat(2,1fr)}.pagination-nav__link{border:1px solid var(--ifm-color-emphasis-300);border-radius:var(--ifm-pagination-nav-border-radius);display:block;height:100%;line-height:var(--ifm-heading-line-height);padding:var(--ifm-global-spacing);transition:border-color var(--ifm-transition-fast) var(--ifm-transition-timing-default)}.pagination-nav__link:hover{border-color:var(--ifm-pagination-nav-color-hover);text-decoration:none}.pagination-nav__link--next{grid-column:2/3;text-align:right}.pagination-nav__label{font-size:var(--ifm-h4-font-size);font-weight:var(--ifm-heading-font-weight);word-break:break-word}.pagination-nav__link--prev .pagination-nav__label:before{content:"« "}.pagination-nav__link--next .pagination-nav__label:after{content:" »"}.pagination-nav__sublabel{color:var(--ifm-color-content-secondary);font-size:var(--ifm-h5-font-size);font-weight:var(--ifm-font-weight-semibold);margin-bottom:.25rem}.pills__item,.tabs{font-weight:var(--ifm-font-weight-bold)}.pills{display:flex;gap:var(--ifm-pills-spacing);padding-left:0}.pills__item{border-radius:.5rem;cursor:pointer;display:inline-block;padding:.25rem 1rem;transition:background var(--ifm-transition-fast) var(--ifm-transition-timing-default)}.pills__item--active{color:var(--ifm-pills-color-active)}.pills__item--active,.pills__item:not(.pills__item--active):hover{background:var(--ifm-pills-color-background-active)}.pills--block{justify-content:stretch}.pills--block .pills__item{flex-grow:1;text-align:center}.tabs{color:var(--ifm-tabs-color);display:flex;margin-bottom:0;overflow-x:auto;padding-left:0}.tabs__item{border-bottom:3px solid #0000;border-radius:var(--ifm-global-radius);cursor:pointer;display:inline-flex;padding:var(--ifm-tabs-padding-vertical) var(--ifm-tabs-padding-horizontal);transition:background-color var(--ifm-transition-fast) var(--ifm-transition-timing-default)}.tabs__item--active{border-bottom-color:var(--ifm-tabs-color-active-border);border-bottom-left-radius:0;border-bottom-right-radius:0;color:var(--ifm-tabs-color-active)}.tabs__item:hover{background-color:var(--ifm-hover-overlay)}.tabs--block{justify-content:stretch}.tabs--block .tabs__item{flex-grow:1;justify-content:center}html[data-theme=dark]{--ifm-color-scheme:dark;--ifm-color-emphasis-0:var(--ifm-color-gray-1000);--ifm-color-emphasis-100:var(--ifm-color-gray-900);--ifm-color-emphasis-200:var(--ifm-color-gray-800);--ifm-color-emphasis-300:var(--ifm-color-gray-700);--ifm-color-emphasis-400:var(--ifm-color-gray-600);--ifm-color-emphasis-600:var(--ifm-color-gray-400);--ifm-color-emphasis-700:var(--ifm-color-gray-300);--ifm-color-emphasis-800:var(--ifm-color-gray-200);--ifm-color-emphasis-900:var(--ifm-color-gray-100);--ifm-color-emphasis-1000:var(--ifm-color-gray-0);--ifm-background-color:#1b1b1d;--ifm-background-surface-color:#242526;--ifm-hover-overlay:#ffffff0d;--ifm-color-content:#e3e3e3;--ifm-color-content-secondary:#fff;--ifm-breadcrumb-separator-filter:invert(64%) sepia(11%) saturate(0%) hue-rotate(149deg) brightness(99%) contrast(95%);--ifm-code-background:#ffffff1a;--ifm-scrollbar-track-background-color:#444;--ifm-scrollbar-thumb-background-color:#686868;--ifm-scrollbar-thumb-hover-background-color:#7a7a7a;--ifm-table-stripe-background:#ffffff12;--ifm-toc-border-color:var(--ifm-color-emphasis-200);--ifm-color-primary-contrast-background:#102445;--ifm-color-primary-contrast-foreground:#ebf2fc;--ifm-color-secondary-contrast-background:#474748;--ifm-color-secondary-contrast-foreground:#fdfdfe;--ifm-color-success-contrast-background:#003100;--ifm-color-success-contrast-foreground:#e6f6e6;--ifm-color-info-contrast-background:#193c47;--ifm-color-info-contrast-foreground:#eef9fd;--ifm-color-warning-contrast-background:#4d3800;--ifm-color-warning-contrast-foreground:#fff8e6;--ifm-color-danger-contrast-background:#4b1113;--ifm-color-danger-contrast-foreground:#ffebec}#nprogress .bar{background:var(--docusaurus-progress-bar-color);height:2px;left:0;position:fixed;top:0;width:100%;z-index:1031}#nprogress .peg{box-shadow:0 0 10px var(--docusaurus-progress-bar-color),0 0 5px var(--docusaurus-progress-bar-color);height:100%;opacity:1;position:absolute;right:0;transform:rotate(3deg) translateY(-4px);width:100px}.navbar__search{margin-left:1rem}#docusaurus-base-url-issue-banner-container,.docSidebarContainer_b6E3,.sidebarLogo_isFc,.themedImage_ToTc,[data-theme=dark] .lightToggleIcon_pyhR,[data-theme=light] .darkToggleIcon_wfgR,html[data-announcement-bar-initially-dismissed=true] .announcementBar_mb4j{display:none}.skipToContent_fXgn{background-color:var(--ifm-background-surface-color);color:var(--ifm-color-emphasis-900);left:100%;padding:calc(var(--ifm-global-spacing)/2) var(--ifm-global-spacing);position:fixed;top:1rem;z-index:calc(var(--ifm-z-index-fixed) + 1)}.skipToContent_fXgn:focus{box-shadow:var(--ifm-global-shadow-md);left:1rem}.closeButton_CVFx{line-height:0;padding:0}.content_knG7{font-size:85%;padding:5px 0;text-align:center}.content_knG7 a{color:inherit;text-decoration:underline}.announcementBar_mb4j{align-items:center;background-color:var(--ifm-color-white);border-bottom:1px solid var(--ifm-color-emphasis-100);color:var(--ifm-color-black);display:flex;height:var(--docusaurus-announcement-bar-height)}.announcementBarPlaceholder_vyr4{flex:0 0 10px}.announcementBarClose_gvF7{align-self:stretch;flex:0 0 30px}.toggle_vylO{height:2rem;width:2rem}.toggleButton_gllP{align-items:center;border-radius:50%;display:flex;height:100%;justify-content:center;transition:background var(--ifm-transition-fast);width:100%}.toggleButton_gllP:hover{background:var(--ifm-color-emphasis-200)}.toggleButtonDisabled_aARS{cursor:not-allowed}[data-theme=dark] .themedImage--dark_i4oU,[data-theme=light] .themedImage--light_HNdA{display:initial}.iconExternalLink_nPIU{margin-left:.3rem}.iconLanguage_nlXk{margin-right:5px;vertical-align:text-bottom}.navbarHideable_m1mJ{transition:transform var(--ifm-transition-fast) ease}.navbarHidden_jGov{transform:translate3d(0,calc(-100% - 2px),0)}.footerLogoLink_BH7S{opacity:.5;transition:opacity var(--ifm-transition-fast) var(--ifm-transition-timing-default)}.footerLogoLink_BH7S:hover,.hash-link:focus,:hover>.hash-link{opacity:1}.mainWrapper_z2l0{display:flex;flex:1 0 auto;flex-direction:column}.docusaurus-mt-lg{margin-top:3rem}#__docusaurus{display:flex;flex-direction:column;min-height:100%}.iconEdit_Z9Sw{margin-right:.3em;vertical-align:sub}.tag_zVej{border:1px solid var(--docusaurus-tag-list-border);transition:border var(--ifm-transition-fast)}.tag_zVej:hover{--docusaurus-tag-list-border:var(--ifm-link-color);text-decoration:none}.tagRegular_sFm0{border-radius:var(--ifm-global-radius);font-size:90%;padding:.2rem .5rem .3rem}.tagWithCount_h2kH{align-items:center;border-left:0;display:flex;padding:0 .5rem 0 1rem;position:relative}.tagWithCount_h2kH:after,.tagWithCount_h2kH:before{border:1px solid var(--docusaurus-tag-list-border);content:"";position:absolute;top:50%;transition:inherit}.tagWithCount_h2kH:before{border-bottom:0;border-right:0;height:1.18rem;right:100%;transform:translate(50%,-50%) rotate(-45deg);width:1.18rem}.tagWithCount_h2kH:after{border-radius:50%;height:.5rem;left:0;transform:translateY(-50%);width:.5rem}.tagWithCount_h2kH span{background:var(--ifm-color-secondary);border-radius:var(--ifm-global-radius);color:var(--ifm-color-black);font-size:.7rem;line-height:1.2;margin-left:.3rem;padding:.1rem .4rem}.memberString_GwaU p,.tags_jXut{display:inline}.tag_QGVx{display:inline-block;margin:0 .4rem .5rem 0}.lastUpdated_vwxv{font-size:smaller;font-style:italic;margin-top:.2rem}.backToTopButton_sjWU{background-color:var(--ifm-color-emphasis-200);border-radius:50%;bottom:1.3rem;box-shadow:var(--ifm-global-shadow-lw);height:3rem;opacity:0;position:fixed;right:1.3rem;transform:scale(0);transition:all var(--ifm-transition-fast) var(--ifm-transition-timing-default);visibility:hidden;width:3rem;z-index:calc(var(--ifm-z-index-fixed) - 1)}.backToTopButton_sjWU:after{background-color:var(--ifm-color-emphasis-1000);content:" ";display:inline-block;height:100%;-webkit-mask:var(--ifm-menu-link-sublist-icon) 50%/2rem 2rem no-repeat;mask:var(--ifm-menu-link-sublist-icon) 50%/2rem 2rem no-repeat;width:100%}.backToTopButtonShow_xfvO{opacity:1;transform:scale(1);visibility:visible}[data-theme=dark]:root{--docusaurus-collapse-button-bg:#ffffff0d;--docusaurus-collapse-button-bg-hover:#ffffff1a}.collapseSidebarButton_PEFL{display:none;margin:0}.docMainContainer_HJE1,.docMainContainer_gTbr,.docPage_Dpn1,.docPage__5DB{display:flex;width:100%}.docsWrapper_BCFX{display:flex;flex:1 0 auto}[data-theme=dark],[data-theme=light]{--ifm-hero-background-color:#1f242b}.heroBanner_e1Bh{overflow:hidden;padding:4rem 0;position:relative;text-align:left}.buttons_VwD3,.mdxPageWrapper_j9I6{justify-content:center}.buttons_VwD3,.features_WS6B{align-items:center;display:flex}.features_WS6B{padding:2rem 0;width:100%}.feature_moa3{align-items:start;display:flex;justify-content:center;text-align:justify}.searchbox,.searchbox__input{box-sizing:border-box;display:inline-block}.feature_moa3:nth-of-type(2n){flex-direction:row-reverse}.featureImage_YrBe{max-height:100%;max-width:100%}.featureText_Nx12{max-width:50%;padding-top:70px}.algolia-docsearch-suggestion{border-bottom-color:#3a3dd1}.algolia-docsearch-suggestion--category-header{background-color:#4b54de}.algolia-docsearch-suggestion--highlight{color:#3a33d1}.algolia-docsearch-suggestion--category-header .algolia-docsearch-suggestion--highlight{background-color:#4d47d5}.aa-cursor .algolia-docsearch-suggestion--content{color:#272296}.aa-cursor .algolia-docsearch-suggestion{background:#ebebfb}.searchbox{height:32px!important;position:relative;visibility:visible!important;width:200px}.searchbox .algolia-autocomplete{display:block;height:100%;width:100%}.searchbox__wrapper{height:100%;position:relative;width:100%;z-index:999}.searchbox__input{-webkit-appearance:none;appearance:none;background:#fff!important;border:0;border-radius:16px;box-shadow:inset 0 0 0 1px #ccc;font-size:12px;height:100%;padding:0 26px 0 32px;transition:box-shadow .4s,background .4s;vertical-align:middle;white-space:normal;width:100%}.searchbox__input::-webkit-search-cancel-button,.searchbox__input::-webkit-search-decoration,.searchbox__input::-webkit-search-results-button,.searchbox__input::-webkit-search-results-decoration{display:none}.searchbox__input:hover{box-shadow:inset 0 0 0 1px #b3b3b3}.searchbox__input:active,.searchbox__input:focus{background:#fff;box-shadow:inset 0 0 0 1px #aaa;outline:0}.searchbox__input::placeholder{color:#aaa}.searchbox__submit{background-color:#458ee100;border:0;border-radius:16px 0 0 16px;height:100%;left:0;margin:0;padding:0;right:inherit;text-align:center;top:0;user-select:none;vertical-align:middle;width:32px}.searchbox__submit:before{content:"";display:inline-block;height:100%;margin-right:-4px;vertical-align:middle}.algolia-autocomplete .ds-dropdown-menu .ds-suggestion,.privateCheckboxLabel_Vmvs:hover,.searchbox__submit:active,.searchbox__submit:hover{cursor:pointer}.searchbox__submit svg{fill:#6d7e96;height:14px;vertical-align:middle;width:14px}.searchbox__reset{fill:#00000080;background:none;border:0;cursor:pointer;display:block;margin:0;padding:0;right:8px;top:8px;user-select:none}.searchbox__reset.hide{display:none}.searchbox__reset svg{display:block;height:8px;margin:4px;width:8px}.searchbox__input:valid~.searchbox__reset{animation-duration:.15s;animation-name:a;display:block}@keyframes a{0%{opacity:0;transform:translate3d(-20%,0,0)}to{opacity:1;transform:none}}.algolia-autocomplete .ds-dropdown-menu:before{background:#373940;border-radius:2px;border-right:1px solid #373940;border-top:1px solid #373940;content:"";display:block;height:14px;position:absolute;top:-7px;transform:rotate(-45deg);width:14px;z-index:1000}.algolia-autocomplete .ds-dropdown-menu{box-shadow:0 1px 0 0 #0003,0 2px 3px 0 #0000001a}.algolia-autocomplete .ds-dropdown-menu .ds-suggestions{position:relative;z-index:1000}.algolia-autocomplete .ds-dropdown-menu [class^=ds-dataset-]{background:#fff;border-radius:4px;overflow:auto;padding:0;position:relative}.algolia-autocomplete .algolia-docsearch-suggestion{display:block;overflow:hidden;padding:0;position:relative;text-decoration:none}.algolia-autocomplete .ds-cursor .algolia-docsearch-suggestion--wrapper{background:#f1f1f1;box-shadow:inset -2px 0 0 #61dafb}.algolia-autocomplete .algolia-docsearch-suggestion--highlight{background:#ffe564;padding:.1em .05em}.algolia-autocomplete .algolia-docsearch-suggestion--category-header .algolia-docsearch-suggestion--category-header-lvl0 .algolia-docsearch-suggestion--highlight,.algolia-autocomplete .algolia-docsearch-suggestion--category-header .algolia-docsearch-suggestion--category-header-lvl1 .algolia-docsearch-suggestion--highlight{background:inherit;color:inherit}.algolia-autocomplete .algolia-docsearch-suggestion--text .algolia-docsearch-suggestion--highlight{background:inherit;box-shadow:inset 0 -2px 0 0 #458ee1cc;color:inherit;padding:0 0 1px}.algolia-autocomplete .algolia-docsearch-suggestion--content{cursor:pointer;display:block;float:right;padding:5.33333px 0 5.33333px 10.66667px;position:relative;width:70%}.algolia-autocomplete .algolia-docsearch-suggestion--content:before{background:#ececec;content:"";display:block;height:100%;left:-1px;position:absolute;top:0;width:1px}.algolia-autocomplete .algolia-docsearch-suggestion--category-header{background-color:#373940;color:#fff;display:none;font-size:14px;font-weight:700;letter-spacing:.08em;margin:0;padding:5px 8px;position:relative;text-transform:uppercase}.algolia-autocomplete .algolia-docsearch-suggestion--wrapper{background-color:#fff;float:left;padding:8px 0 0;width:100%}.algolia-autocomplete .algolia-docsearch-suggestion--subcategory-column{word-wrap:break-word;color:#777;display:none;float:left;font-size:.9em;padding:5.33333px 10.66667px;position:relative;text-align:right;width:30%}.algolia-autocomplete .algolia-docsearch-suggestion--subcategory-column:before{background:#ececec;content:"";display:block;height:100%;position:absolute;right:0;top:0;width:1px}.algolia-autocomplete .algolia-docsearch-suggestion.algolia-docsearch-suggestion__main .algolia-docsearch-suggestion--category-header,.algolia-autocomplete .algolia-docsearch-suggestion.algolia-docsearch-suggestion__secondary{display:block}.algolia-autocomplete .algolia-docsearch-suggestion--no-results:before,.algolia-autocomplete .algolia-docsearch-suggestion--subcategory-inline{display:none}.algolia-autocomplete .algolia-docsearch-suggestion--subcategory-column .algolia-docsearch-suggestion--highlight{background-color:inherit;color:inherit}.algolia-autocomplete .algolia-docsearch-suggestion--title{color:#02060c;font-size:.9em;font-weight:700;margin-bottom:4px}.algolia-autocomplete .algolia-docsearch-suggestion--text{color:#63676d;display:block;font-size:.85em;line-height:1.2em;padding-right:2px}.algolia-autocomplete .algolia-docsearch-suggestion--no-results{background-color:#373940;font-size:1.2em;margin-top:-8px;padding:8px 0;text-align:center;width:100%}.algolia-autocomplete .algolia-docsearch-suggestion--no-results .algolia-docsearch-suggestion--text{color:#fff;margin-top:4px}.algolia-autocomplete .algolia-docsearch-suggestion code{background-color:#ebebeb;border:none;border-radius:3px;color:#222;font-family:source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace;font-size:90%;padding:1px 5px}.algolia-autocomplete .algolia-docsearch-suggestion code .algolia-docsearch-suggestion--highlight{background:none}.algolia-autocomplete .algolia-docsearch-suggestion.algolia-docsearch-suggestion__main .algolia-docsearch-suggestion--category-header{color:#fff;display:block}.algolia-autocomplete .algolia-docsearch-suggestion.algolia-docsearch-suggestion__secondary .algolia-docsearch-suggestion--subcategory-column,.tocCollapsibleContent_vkbj a{display:block}.algolia-autocomplete .algolia-docsearch-footer{background-color:#fff;float:right;font-size:0;height:30px;line-height:0;width:100%;z-index:2000}.algolia-autocomplete .algolia-docsearch-footer--logo{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 130 18'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath fill='url(%2523a)' d='M59.4.02h13.3a2.37 2.37 0 0 1 2.38 2.37V15.6a2.37 2.37 0 0 1-2.38 2.36H59.4a2.37 2.37 0 0 1-2.38-2.36V2.38A2.37 2.37 0 0 1 59.4.02z'/%3E%3Cpath fill='%2523FFF' d='M66.26 4.56c-2.82 0-5.1 2.27-5.1 5.08 0 2.8 2.28 5.07 5.1 5.07 2.8 0 5.1-2.26 5.1-5.07 0-2.8-2.28-5.07-5.1-5.07zm0 8.65c-2 0-3.6-1.6-3.6-3.56 0-1.97 1.6-3.58 3.6-3.58 1.98 0 3.6 1.6 3.6 3.58a3.58 3.58 0 0 1-3.6 3.57zm0-6.4v2.66c0 .07.08.13.15.1l2.4-1.24c.04-.02.06-.1.03-.14a2.96 2.96 0 0 0-2.46-1.5.1.1 0 0 0-.1.1zm-3.33-1.96-.3-.3a.78.78 0 0 0-1.12 0l-.36.36a.77.77 0 0 0 0 1.1l.3.3c.05.05.13.04.17 0 .2-.25.4-.5.6-.7.23-.23.46-.43.7-.6.07-.04.07-.1.03-.16zm5-.8V3.4a.78.78 0 0 0-.78-.78h-1.83a.78.78 0 0 0-.78.78v.63c0 .07.06.12.14.1a5.74 5.74 0 0 1 1.58-.22c.52 0 1.04.07 1.54.2a.1.1 0 0 0 .13-.1z'/%3E%3Cpath fill='%2523182359' d='M102.16 13.76c0 1.46-.37 2.52-1.12 3.2-.75.67-1.9 1-3.44 1-.56 0-1.74-.1-2.67-.3l.34-1.7c.78.17 1.82.2 2.36.2.86 0 1.48-.16 1.84-.5.37-.36.55-.88.55-1.57v-.35a6.37 6.37 0 0 1-.84.3 4.15 4.15 0 0 1-1.2.17 4.5 4.5 0 0 1-1.6-.28 3.38 3.38 0 0 1-1.26-.82 3.74 3.74 0 0 1-.8-1.35c-.2-.54-.3-1.5-.3-2.2 0-.67.1-1.5.3-2.06a3.92 3.92 0 0 1 .9-1.43 4.12 4.12 0 0 1 1.45-.92 5.3 5.3 0 0 1 1.94-.37c.7 0 1.35.1 1.97.2a15.86 15.86 0 0 1 1.6.33v8.46zm-5.95-4.2c0 .9.2 1.88.6 2.3.4.4.9.62 1.53.62.34 0 .66-.05.96-.15a2.75 2.75 0 0 0 .73-.33V6.7a8.53 8.53 0 0 0-1.42-.17c-.76-.02-1.36.3-1.77.8-.4.5-.62 1.4-.62 2.23zm16.13 0c0 .72-.1 1.26-.32 1.85a4.4 4.4 0 0 1-.9 1.53c-.38.42-.85.75-1.4.98-.54.24-1.4.37-1.8.37-.43 0-1.27-.13-1.8-.36a4.1 4.1 0 0 1-1.4-.97 4.5 4.5 0 0 1-.92-1.52 5.04 5.04 0 0 1-.33-1.84c0-.72.1-1.4.32-2 .22-.6.53-1.1.92-1.5.4-.43.86-.75 1.4-.98a4.55 4.55 0 0 1 1.78-.34 4.7 4.7 0 0 1 1.8.34c.54.23 1 .55 1.4.97.38.42.68.92.9 1.5.23.6.35 1.3.35 2zm-2.2 0c0-.92-.2-1.7-.6-2.22-.38-.54-.94-.8-1.64-.8-.72 0-1.27.26-1.67.8-.4.54-.58 1.3-.58 2.22 0 .93.2 1.56.6 2.1.38.54.94.8 1.64.8s1.25-.26 1.65-.8c.4-.55.6-1.17.6-2.1zm6.97 4.7c-3.5.02-3.5-2.8-3.5-3.27L113.57.92l2.15-.34v10c0 .25 0 1.87 1.37 1.88v1.8zm3.77 0h-2.15v-9.2l2.15-.33v9.54zM119.8 3.74c.7 0 1.3-.58 1.3-1.3 0-.7-.58-1.3-1.3-1.3-.73 0-1.3.6-1.3 1.3 0 .72.58 1.3 1.3 1.3zm6.43 1c.7 0 1.3.1 1.78.27.5.18.88.42 1.17.73.28.3.5.74.6 1.18.13.46.2.95.2 1.5v5.47a25.24 25.24 0 0 1-1.5.25c-.67.1-1.42.15-2.25.15a6.83 6.83 0 0 1-1.52-.16 3.2 3.2 0 0 1-1.18-.5 2.46 2.46 0 0 1-.76-.9c-.18-.37-.27-.9-.27-1.44 0-.52.1-.85.3-1.2.2-.37.48-.67.83-.9a3.6 3.6 0 0 1 1.23-.5 7.07 7.07 0 0 1 2.2-.1l.83.16V8.4c0-.25-.03-.48-.1-.7a1.5 1.5 0 0 0-.3-.58c-.15-.18-.34-.3-.58-.4a2.54 2.54 0 0 0-.92-.17c-.5 0-.94.06-1.35.13-.4.08-.75.16-1 .25l-.27-1.74c.27-.1.67-.18 1.2-.28a9.34 9.34 0 0 1 1.65-.14zm.18 7.74c.66 0 1.15-.04 1.5-.1V10.2a5.1 5.1 0 0 0-2-.1c-.23.03-.45.1-.64.2a1.17 1.17 0 0 0-.47.38c-.13.17-.18.26-.18.52 0 .5.17.8.5.98.32.2.74.3 1.3.3zM84.1 4.8c.72 0 1.3.08 1.8.26.48.17.87.42 1.15.73.3.3.5.72.6 1.17.14.45.2.94.2 1.47v5.48a25.24 25.24 0 0 1-1.5.26c-.67.1-1.42.14-2.25.14a6.83 6.83 0 0 1-1.52-.16 3.2 3.2 0 0 1-1.18-.5 2.46 2.46 0 0 1-.76-.9c-.18-.38-.27-.9-.27-1.44 0-.53.1-.86.3-1.22.2-.36.5-.65.84-.88a3.6 3.6 0 0 1 1.24-.5 7.07 7.07 0 0 1 2.2-.1c.26.03.54.08.84.15v-.35c0-.24-.03-.48-.1-.7a1.5 1.5 0 0 0-.3-.58c-.15-.17-.34-.3-.58-.4a2.54 2.54 0 0 0-.9-.15c-.5 0-.96.05-1.37.12-.4.07-.75.15-1 .24l-.26-1.75c.27-.08.67-.17 1.18-.26a8.9 8.9 0 0 1 1.66-.15zm.2 7.73c.65 0 1.14-.04 1.48-.1v-2.17a5.1 5.1 0 0 0-1.98-.1c-.24.03-.46.1-.65.18a1.17 1.17 0 0 0-.47.4c-.12.17-.17.26-.17.52 0 .5.18.8.5.98.32.2.75.3 1.3.3zm8.68 1.74c-3.5 0-3.5-2.82-3.5-3.28L89.45.92 91.6.6v10c0 .25 0 1.87 1.38 1.88v1.8z'/%3E%3Cpath fill='%25231D3657' d='M5.03 11.03c0 .7-.26 1.24-.76 1.64-.5.4-1.2.6-2.1.6-.88 0-1.6-.14-2.17-.42v-1.2c.36.16.74.3 1.14.38.4.1.78.15 1.13.15.5 0 .88-.1 1.12-.3a.94.94 0 0 0 .35-.77.98.98 0 0 0-.33-.74c-.22-.2-.68-.44-1.37-.72-.72-.3-1.22-.62-1.52-1C.23 8.27.1 7.82.1 7.3c0-.65.22-1.17.7-1.55.46-.37 1.08-.56 1.86-.56.76 0 1.5.16 2.25.48l-.4 1.05c-.7-.3-1.32-.44-1.87-.44-.4 0-.73.08-.94.26a.9.9 0 0 0-.33.72c0 .2.04.38.12.52.08.15.22.3.42.4.2.14.55.3 1.06.52.58.24 1 .47 1.27.67.27.2.47.44.6.7.12.26.18.57.18.92zM9 13.27c-.92 0-1.64-.27-2.16-.8-.52-.55-.78-1.3-.78-2.24 0-.97.24-1.73.72-2.3.5-.54 1.15-.82 2-.82.78 0 1.4.25 1.85.72.46.48.7 1.14.7 1.97v.67H7.35c0 .58.17 1.02.46 1.33.3.3.7.47 1.24.47.36 0 .68-.04.98-.1a5.1 5.1 0 0 0 .98-.33v1.02a3.87 3.87 0 0 1-.94.32 5.72 5.72 0 0 1-1.08.1zm-.22-5.2c-.4 0-.73.12-.97.38s-.37.62-.42 1.1h2.7c0-.48-.13-.85-.36-1.1-.23-.26-.54-.38-.94-.38zm7.7 5.1-.26-.84h-.05c-.28.36-.57.6-.86.74-.28.13-.65.2-1.1.2-.6 0-1.05-.16-1.38-.48-.32-.32-.5-.77-.5-1.34 0-.62.24-1.08.7-1.4.45-.3 1.14-.47 2.07-.5l1.02-.03V9.2c0-.37-.1-.65-.27-.84-.17-.2-.45-.28-.82-.28-.3 0-.6.04-.88.13a6.68 6.68 0 0 0-.8.33l-.4-.9a4.4 4.4 0 0 1 1.05-.4 4.86 4.86 0 0 1 1.08-.12c.76 0 1.33.18 1.7.5.4.33.6.85.6 1.56v4h-.9zm-1.9-.87c.47 0 .83-.13 1.1-.38.3-.26.43-.62.43-1.08v-.52l-.76.03c-.6.03-1.02.13-1.3.3s-.4.45-.4.82c0 .26.08.47.24.6.16.16.4.23.7.23zm7.57-5.2c.25 0 .46.03.62.06l-.12 1.18a2.38 2.38 0 0 0-.56-.06c-.5 0-.92.16-1.24.5-.3.32-.47.75-.47 1.27v3.1h-1.27V7.23h1l.16 1.05h.05c.2-.36.45-.64.77-.85a1.83 1.83 0 0 1 1.02-.3zm4.12 6.17c-.9 0-1.58-.27-2.05-.8-.47-.52-.7-1.27-.7-2.25 0-1 .24-1.77.73-2.3.5-.54 1.2-.8 2.12-.8.63 0 1.2.1 1.7.34l-.4 1c-.52-.2-.96-.3-1.3-.3-1.04 0-1.55.68-1.55 2.05 0 .67.13 1.17.38 1.5.26.34.64.5 1.13.5a3.23 3.23 0 0 0 1.6-.4v1.1a2.53 2.53 0 0 1-.73.28 4.36 4.36 0 0 1-.93.08zm8.28-.1h-1.27V9.5c0-.45-.1-.8-.28-1.02-.18-.23-.47-.34-.88-.34-.53 0-.9.16-1.16.48-.25.3-.38.85-.38 1.6v2.94h-1.26V4.8h1.26v2.12c0 .34-.02.7-.06 1.1h.08a1.76 1.76 0 0 1 .72-.67c.3-.16.66-.24 1.07-.24 1.43 0 2.15.74 2.15 2.2v3.86zM42.2 7.1c.74 0 1.32.28 1.73.82.4.53.62 1.3.62 2.26 0 .97-.2 1.73-.63 2.27-.42.54-1 .82-1.75.82s-1.33-.27-1.75-.8h-.08l-.23.7h-.94V4.8h1.26v2l-.02.64-.03.56h.05c.4-.6 1-.9 1.78-.9zm-.33 1.04c-.5 0-.88.15-1.1.45-.22.3-.34.8-.35 1.5v.08c0 .72.12 1.24.35 1.57.23.32.6.48 1.12.48.44 0 .78-.17 1-.53.24-.35.36-.87.36-1.53 0-1.35-.47-2.03-1.4-2.03zm3.24-.92h1.4l1.2 3.37c.18.47.3.92.36 1.34h.04l.18-.72 1.37-4H51l-2.53 6.73c-.46 1.23-1.23 1.85-2.3 1.85-.3 0-.56-.03-.83-.1v-1c.2.05.4.08.65.08.6 0 1.03-.36 1.28-1.06l.22-.56-2.4-5.94z'/%3E%3C/g%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;background-size:100%;display:block;height:100%;margin-left:auto;margin-right:5px;overflow:hidden;text-indent:-9000px;width:110px}.tocCollapsibleButton_TO0P{align-items:center;display:flex;font-size:inherit;justify-content:space-between;padding:.4rem .8rem;width:100%}.tocCollapsibleButton_TO0P:after{background:var(--ifm-menu-link-sublist-icon) 50% 50%/2rem 2rem no-repeat;content:"";filter:var(--ifm-menu-link-sublist-icon-filter);height:1.25rem;transform:rotate(180deg);transition:transform var(--ifm-transition-fast);width:1.25rem}.privateCheckboxControl_Ov8U:hover,.sourceButtonText_Vh0m:focus,.sourceButtonText_Vh0m:hover{background:var(--ifm-menu-color-background-active)}.tocCollapsibleButtonExpanded_MG3E:after,.tocCollapsibleExpanded_sAul{transform:none}.tocCollapsible_ETCw{background-color:var(--ifm-menu-color-background-active);border-radius:var(--ifm-global-radius);margin:1rem 0}.buttonGroup__atx button,.codeBlockContainer_Ckt0{background:var(--prism-background-color);color:var(--prism-color)}.tocCollapsibleContent_vkbj>ul{border-left:none;border-top:1px solid var(--ifm-color-emphasis-300);font-size:15px;padding:.2rem 0}.tocCollapsibleContent_vkbj ul li{margin:.4rem .8rem}.codeBlockContainer_Ckt0{border-radius:var(--ifm-code-border-radius);box-shadow:var(--ifm-global-shadow-lw);margin-bottom:var(--ifm-leading)}.codeBlockContent_biex{border-radius:inherit;direction:ltr;position:relative}.codeBlockTitle_Ktv7{border-bottom:1px solid var(--ifm-color-emphasis-300);border-top-left-radius:inherit;border-top-right-radius:inherit;font-size:var(--ifm-code-font-size);font-weight:500;padding:.75rem var(--ifm-pre-padding)}.codeBlock_bY9V{--ifm-pre-background:var(--prism-background-color);margin:0;padding:0}.codeBlockTitle_Ktv7+.codeBlockContent_biex .codeBlock_bY9V{border-top-left-radius:0;border-top-right-radius:0}.codeBlockLines_e6Vv{float:left;font:inherit;min-width:100%;padding:var(--ifm-pre-padding)}.codeBlockLinesWithNumbering_o6Pm{display:table;padding:var(--ifm-pre-padding) 0}.buttonGroup__atx{column-gap:.2rem;display:flex;position:absolute;right:calc(var(--ifm-pre-padding)/2);top:calc(var(--ifm-pre-padding)/2)}.buttonGroup__atx button{align-items:center;border:1px solid var(--ifm-color-emphasis-300);border-radius:var(--ifm-global-radius);display:flex;line-height:0;opacity:0;padding:.4rem;transition:opacity .2s ease-in-out}.buttonGroup__atx button:focus-visible,.buttonGroup__atx button:hover{opacity:1!important}.theme-code-block:hover .buttonGroup__atx button{opacity:.4}:where(:root){--docusaurus-highlighted-code-line-bg:#484d5b}:where([data-theme=dark]){--docusaurus-highlighted-code-line-bg:#646464}.theme-code-block-highlighted-line{background-color:var(--docusaurus-highlighted-code-line-bg);display:block;margin:0 calc(var(--ifm-pre-padding)*-1);padding:0 var(--ifm-pre-padding)}.codeLine_lJS_{counter-increment:a;display:table-row}.codeLineNumber_Tfdd{background:var(--ifm-pre-background);display:table-cell;left:0;overflow-wrap:normal;padding:0 var(--ifm-pre-padding);position:sticky;text-align:right;width:1%}.codeLineNumber_Tfdd:before{content:counter(a);opacity:.4}.codeLineContent_feaV{padding-right:var(--ifm-pre-padding)}.theme-code-block:hover .copyButtonCopied_obH4{opacity:1!important}.copyButtonIcons_eSgA{height:1.125rem;position:relative;width:1.125rem}.copyButtonIcon_y97N,.copyButtonSuccessIcon_LjdS{fill:currentColor;height:inherit;left:0;opacity:inherit;position:absolute;top:0;transition:.15s;width:inherit}.copyButtonSuccessIcon_LjdS{color:#00d600;left:50%;opacity:0;top:50%;transform:translate(-50%,-50%) scale(.33)}.copyButtonCopied_obH4 .copyButtonIcon_y97N{opacity:0;transform:scale(.33)}.copyButtonCopied_obH4 .copyButtonSuccessIcon_LjdS{opacity:1;transform:translate(-50%,-50%) scale(1);transition-delay:75ms}.wordWrapButtonIcon_Bwma{height:1.2rem;width:1.2rem}.details_lb9f{--docusaurus-details-summary-arrow-size:0.38rem;--docusaurus-details-transition:transform 200ms ease;--docusaurus-details-decoration-color:grey}.details_lb9f>summary{cursor:pointer;padding-left:1rem;position:relative}.details_lb9f>summary::-webkit-details-marker{display:none}.details_lb9f>summary:before{border-color:#0000 #0000 #0000 var(--docusaurus-details-decoration-color);border-style:solid;border-width:var(--docusaurus-details-summary-arrow-size);content:"";left:0;position:absolute;top:.45rem;transform:rotate(0);transform-origin:calc(var(--docusaurus-details-summary-arrow-size)/2) 50%;transition:var(--docusaurus-details-transition)}.collapsibleContent_i85q{border-top:1px solid var(--docusaurus-details-decoration-color);margin-top:1rem;padding-top:1rem}.anchorWithStickyNavbar_LWe7{scroll-margin-top:calc(var(--ifm-navbar-height) + .5rem)}.anchorWithHideOnScrollNavbar_WYt5{scroll-margin-top:.5rem}.hash-link{opacity:0;padding-left:.5rem;transition:opacity var(--ifm-transition-fast);-webkit-user-select:none;user-select:none}.hash-link:before{content:"#"}.details_b_Ee{--docusaurus-details-decoration-color:var(--ifm-alert-border-color);--docusaurus-details-transition:transform var(--ifm-transition-fast) ease;border:1px solid var(--ifm-alert-border-color);margin:0 0 var(--ifm-spacing-vertical)}:not(.containsTaskList_mC6p>li)>.containsTaskList_mC6p{padding-left:0}.img_ev3q{height:auto}.tableOfContents_bqdL{max-height:calc(100vh - var(--ifm-navbar-height) - 2rem);overflow-y:auto;position:sticky;top:calc(var(--ifm-navbar-height) + 1rem)}[data-theme=dark]{--op-color:#bd7b7b}.navbar-sidebar__backdrop{width:100vw}.divider_rE5g{border-top:1px solid var(--ifm-color-emphasis-300);margin:1rem 0}.inlineDescription_G7Er{color:#9093a2;font-size:1rem;margin-left:10px}.memberString_GwaU{font-size:1.3rem;margin-bottom:2rem;margin-left:1rem}.inset_uKQm{margin-left:3rem}.docPage_Dpn1 .member_J0w1 h3{display:inline-block;font-family:inherit;font-size:var(--ifm-h2-font-size);margin:0 .25rem 1rem 0}.docPage_Dpn1 .member_J0w1 h3 code{display:"inline"}.privateToggle_lmfE{grid-gap:.25em;color:var(--color);display:grid;float:right;font-size:1.25rem;grid-template-columns:min-content auto}.privateCheckboxContainer_psRa{align-items:center;display:grid;grid-template-areas:"c"}.privateCheckboxContainer_psRa>*{grid-area:c}.privateCheckboxInternal_IKP2{height:1em;opacity:0;width:1em}.privateToggle_lmfE:focus-within{outline:var(--ifm-font-color-base) auto 1px}.privateCheckboxInternal_IKP2:checked+.privateCheckboxControl_Ov8U svg{transform:scale(1)}.privateCheckboxControl_Ov8U{border:1px solid var(--ifm-font-color-base);border-radius:.25em;display:inline-grid;height:1em;isolation:isolate;width:1em}.privateCheckboxControl_Ov8U svg{transform:scale(0);transform-origin:center;transition:transform .1s ease-in 25ms}.privateCheckboxControl_Ov8U:hover{cursor:pointer}.privateCheckboxLabel_Vmvs{font-size:1rem}.repositoryDetailsContainer_BPdw{float:right}.sourceButton_sEho{display:inline-block;margin-left:.5rem}.sourceButtonText_Vh0m{align-items:center;background:var(--ifm-menu-color-background);border:1px solid var(--ifm-font-color-base);border-radius:30px;color:var(--ifm-font-color-base);display:flex;font-family:var(--ifm-font-family-monospace);font-weight:var(--ifm-heading-font-weight);height:24px;justify-content:center;width:40px}.member_J0w1 .releaseVersion_EonW{color:var(--ifm-color-emphasis-500);display:inline-block}.memberString_GwaU code,.member_J0w1 h3 code{background:none;border:none;display:inline-block;padding:0}.member_J0w1 code.op_lSLc{color:var(--op-color)}.member_J0w1 code.blue_P4bS,.token.function,.token.function-name{color:#82aaff}.member_J0w1 code.green_DgR4{color:#10ac84}.member_J0w1 code.purple_ieR2,.token.atrule,.token.id,.token.important,.token.keyword,.token.selector{color:#c792ea}.member_J0w1 code.yellow_QJap,.token.builtin,.token.class,.token.class-name,.token.color,.token.constant,.token.hexcode,.token.property,.token.symbol{color:#ffcb6b}.member_J0w1 code.orange_DrV2,.token.boolean,.token.number,.token.unit,.token.url{color:#f78c6c}.member_J0w1 code.cyan_dehK,.token.entity,.token.operator,.token.punctuation,.token.url{color:#89ddff}.member_J0w1 code.red_AwJO{color:#ff5874}.errorTable_jfN8{display:table;width:100%}.errorTable_jfN8 td,.errorTable_jfN8 th,.errorTable_jfN8 tr{border:none}.errorTable_jfN8 tbody tr:nth-child(odd){background:var(--ifm-table-stripe-background)}.errorTable_jfN8 tbody tr:nth-child(2n){background:var(--ifm-table-background)}pre[class*=language-][class*=language-]{background:#292d3e;margin:1rem 0;padding:1rem}code[class*=language-][class*=language-]{display:block;white-space:pre-wrap;width:100%}.docPage_Dpn1 h2{font-size:2.3rem}.docItemContainer_Wv98{margin:0 auto;padding:0 .5rem}.docItemContainer_Wv98 img{display:block;margin:0 auto}.docTitle_mZRt{display:inline-block;font-size:3rem;margin-bottom:calc(var(--ifm-leading-desktop)*var(--ifm-leading))}.docSidebarContainer_o_re{border-right:1px solid var(--ifm-toc-border-color);-webkit-clip-path:inset(0);clip-path:inset(0);display:block;margin-top:calc(var(--ifm-navbar-height)*-1);transition:width var(--ifm-transition-fast) ease;width:var(--doc-sidebar-width);will-change:width}.docSidebarContainerHidden_NK0V{cursor:pointer;width:var(--doc-sidebar-hidden-width)}.luaClassTags_EipM{display:inline-block;margin-left:2rem;margin-top:-.5rem}.badge_Ba2I{display:inline-block;font-size:1.2rem;font-weight:300;margin:0 .5rem;white-space:nowrap}.badge_Ba2I svg{height:1.8rem;vertical-align:middle;width:1.8rem}.badge_Ba2I .badgeTooltip_cWXP{background-color:#555;border-radius:6px;color:#fff;font-size:.9rem;left:0;margin:0 auto;opacity:0;padding:4px 5px;position:absolute;right:0;text-align:center;transform:translateY(-105%);transition:opacity .3s;visibility:hidden;white-space:pre-wrap;width:285px;z-index:1}.badge_Ba2I .badgeToolTipTail_H9D_{height:0;position:relative;width:0}.badge_Ba2I .badgeToolTipTail_H9D_:after{border:9px solid #0000;border-top-color:#555;content:"";left:6%;opacity:0;position:absolute;top:-27%;transition:opacity .35s;visibility:hidden}.docTag__6UZ{align-items:center;border-style:solid;border-width:1px;border-left:0;display:inline-block;margin:0 .8rem;padding:0 .5rem 0 1rem;position:relative;transition:border var(--ifm-transition-fast)}.docTag__6UZ:after,.docTag__6UZ:before{border-color:inherit;border-style:solid;content:"";position:absolute;top:50%;transition:inherit}.docTag__6UZ:before{border-width:1px;border-bottom:0;border-right:0;height:1.18rem;right:100%;transform:translate(50%,-50%) rotate(-45deg);width:1.18rem}.docTag__6UZ:after{border-radius:50%;border-width:1px;height:.5rem;left:0;transform:translateY(-50%);width:.5rem}.docTag__6UZ span{background:var(--ifm-color-secondary);border-radius:var(--ifm-global-radius);color:var(--ifm-color-black);font-size:.7rem;line-height:1.2;margin-left:.3rem;padding:.1rem .4rem}.admonition h5{margin-bottom:8px;margin-top:0}.admonition-icon,.admonitionIcon_kALy{display:inline-block;margin-right:.4em;vertical-align:middle}.admonition-icon svg{stroke-width:0;stroke:var(--ifm-alert-foreground-color);fill:var(--ifm-alert-foreground-color);display:inline-block;height:22px;width:22px}.admonition,.admonition_LlT9{margin-bottom:1em}code[class*=language-],pre[class*=language-]{word-wrap:normal;background:none;border-radius:.3em;color:#eff;font-family:Consolas,Monaco,Andale Mono,Ubuntu Mono,monospace;font-size:1em;-webkit-hyphens:none;hyphens:none;line-height:1.5;tab-size:4;text-align:left;white-space:pre;word-break:normal;word-spacing:normal}pre[class*=language-]{margin:.5em 0;overflow:auto;padding:2em}:not(pre)>code[class*=language-],pre[class*=language-]{background:#263238}:not(pre)>code[class*=language-]{padding:.1em;white-space:normal}.token.script.language-javascript{color:#eff}.token.block-comment,.token.cdata,.token.comment,.token.doctype,.token.prolog{color:#546e7a}.token.attr-name,.token.deleted,.token.namespace{color:#bb80b3}.token.attr-value,.token.attribute,.token.char,.token.inserted,.token.pseudo-class,.token.pseudo-element,.token.regex,.token.string,.token.variable{color:#c3e88d}.token.tag{color:#f07178}.token.deleted,.token.parameter{color:#ff5370}.token.bold,.token.important{font-weight:700}.token.entity{cursor:help}.admonitionHeading_tbUL{font:var(--ifm-heading-font-weight) var(--ifm-h5-font-size)/var(--ifm-heading-line-height) var(--ifm-heading-font-family);margin-bottom:.3rem}.admonitionHeading_tbUL code{text-transform:none}.admonitionIcon_kALy svg{fill:var(--ifm-alert-foreground-color);display:inline-block;height:1.6em;width:1.6em}.breadcrumbHomeIcon_YNFT{height:1.1rem;position:relative;top:1px;vertical-align:top;width:1.1rem}.breadcrumbsContainer_Z_bl{--ifm-breadcrumb-size-multiplier:0.8;margin-bottom:.8rem}@media (min-width:601px){.algolia-autocomplete.algolia-autocomplete-right .ds-dropdown-menu{left:inherit!important;right:0!important}.algolia-autocomplete.algolia-autocomplete-right .ds-dropdown-menu:before{right:48px}.algolia-autocomplete .ds-dropdown-menu{background:#0000;border:none;border-radius:4px;height:auto;margin:6px 0 0;max-width:600px;min-width:500px;padding:0;position:relative;text-align:left;top:-6px;z-index:999}}@media (min-width:768px){.algolia-docsearch-suggestion{border-bottom-color:#7671df}.algolia-docsearch-suggestion--subcategory-column{border-right-color:#7671df;color:#4e4726}}@media (min-width:997px){.collapseSidebarButton_PEFL,.expandButton_m80_{background-color:var(--docusaurus-collapse-button-bg)}:root{--docusaurus-announcement-bar-height:30px}.announcementBarClose_gvF7,.announcementBarPlaceholder_vyr4{flex-basis:50px}.searchBox_ZlJk{padding:var(--ifm-navbar-item-padding-vertical) var(--ifm-navbar-item-padding-horizontal)}.lastUpdated_vwxv{text-align:right}.collapseSidebarButton_PEFL{border:1px solid var(--ifm-toc-border-color);border-radius:0;bottom:0;display:block!important;height:40px;position:sticky}.collapseSidebarButtonIcon_kv0_{margin-top:4px;transform:rotate(180deg)}.expandButtonIcon_BlDH,.expandSidebarButtonIcon_pCsX,[dir=rtl] .collapseSidebarButtonIcon_kv0_{transform:rotate(0)}.collapseSidebarButton_PEFL:focus,.collapseSidebarButton_PEFL:hover,.expandButton_m80_:focus,.expandButton_m80_:hover{background-color:var(--docusaurus-collapse-button-bg-hover)}.menuHtmlItem_M9Kj{padding:var(--ifm-menu-link-padding-vertical) var(--ifm-menu-link-padding-horizontal)}.menu_SIkG{flex-grow:1;padding:.5rem}@supports (scrollbar-gutter:stable){.menu_SIkG{padding:.5rem 0 .5rem .5rem;scrollbar-gutter:stable}}.menuWithAnnouncementBar_GW3s{margin-bottom:var(--docusaurus-announcement-bar-height)}.sidebar_njMd{display:flex;flex-direction:column;height:100%;padding-top:var(--ifm-navbar-height);width:var(--doc-sidebar-width)}.sidebarWithHideableNavbar_wUlq{padding-top:0}.sidebarHidden_VK0M{opacity:0;visibility:hidden}.sidebarLogo_isFc{align-items:center;color:inherit!important;display:flex!important;margin:0 var(--ifm-navbar-padding-horizontal);max-height:var(--ifm-navbar-height);min-height:var(--ifm-navbar-height);text-decoration:none!important}.sidebarLogo_isFc img{height:2rem;margin-right:.5rem}.expandButton_m80_{align-items:center;display:flex;height:100%;justify-content:center;position:absolute;right:0;top:0;transition:background-color var(--ifm-transition-fast) ease;width:100%}.collapsedDocSidebar_m0D2,.sidebarViewport_Xe31{height:100%;max-height:100vh;position:sticky;top:0}.docSidebarContainer_b6E3,.docSidebarContainer_o_re{border-right:1px solid var(--ifm-toc-border-color);margin-top:calc(var(--ifm-navbar-height)*-1);transition:width var(--ifm-transition-fast) ease;will-change:width}[dir=rtl] .expandButtonIcon_BlDH,html[dir=rtl] .expandSidebarButtonIcon_pCsX{transform:rotate(180deg)}.docSidebarContainer_b6E3{-webkit-clip-path:inset(0);clip-path:inset(0);display:block;width:var(--doc-sidebar-width)}.docSidebarContainerHidden_b3ry{cursor:pointer;width:var(--doc-sidebar-hidden-width)}.docMainContainer_HJE1,.docMainContainer_gTbr{flex-grow:1;max-width:calc(100% - var(--doc-sidebar-width))}.docMainContainerEnhanced_Uz_u,.docMainContainerEnhanced_ujlH{max-width:calc(100% - var(--doc-sidebar-hidden-width))}.docItemWrapperEnhanced_czyv{max-width:calc(var(--ifm-container-width) + var(--doc-sidebar-width))!important}.tocMobile_ITEo,.tocMobile_oUs_{display:none}.docSidebarContainer_o_re{-webkit-clip-path:inset(0);clip-path:inset(0);width:var(--doc-sidebar-width)}.docSidebarContainerHidden_NK0V{cursor:pointer;width:var(--doc-sidebar-hidden-width)!important}.docItemCol_MU3C,.docItemCol_VOVn{max-width:75%!important}.collapsedDocSidebar_m0D2{align-items:center;display:flex;justify-content:center;transition:background-color var(--ifm-transition-fast) ease}.collapsedDocSidebar_m0D2:focus,.collapsedDocSidebar_m0D2:hover{background-color:var(--ifm-color-emphasis-200)}html[data-theme=dark] .collapsedDocSidebar_m0D2:focus,html[data-theme=dark] .collapsedDocSidebar_m0D2:hover{background-color:var(--collapse-button-bg-color-dark)}.docItemWrapperEnhanced_CKOS{max-width:calc(var(--ifm-container-width) + var(--doc-sidebar-width))}pre[class*=language-][class*=language-]{padding:1.5rem}.badge_Ba2I .badgeTooltip_cWXP{left:auto;margin:none;right:auto}}@media (min-width:1440px){.container{max-width:var(--ifm-container-width-xl)}}@media screen and (max-width:997px){.docSidebarContainer_o_re{display:none}}@media (max-width:996px){.col{--ifm-col-width:100%;flex-basis:var(--ifm-col-width);margin-left:0}.footer{--ifm-footer-padding-horizontal:0}.colorModeToggle_DEke,.footer__link-separator,.navbar__item,.tableOfContents_bqdL{display:none}.footer__col{margin-bottom:calc(var(--ifm-spacing-vertical)*3)}.footer__link-item{display:block}.hero{padding-left:0;padding-right:0}.navbar>.container,.navbar>.container-fluid{padding:0}.navbar__toggle{display:inherit}.navbar__search-input{width:9rem}.pills--block,.tabs--block{flex-direction:column}.searchBox_ZlJk{position:absolute;right:var(--ifm-navbar-padding-horizontal)}.docItemContainer_F8PC{padding:0 .3rem}.docSidebarContainer_o_re{margin-top:0}}@media screen and (max-width:966px){.heroBanner_e1Bh{padding:2rem}}@media (max-width:600px){.algolia-autocomplete .ds-dropdown-menu{display:block;left:auto!important;max-height:calc(100% - 5rem);max-width:calc(100% - 2rem);position:fixed!important;right:1rem!important;top:50px!important;width:600px;z-index:100}.algolia-autocomplete .ds-dropdown-menu:before{right:6rem}}@media (max-width:576px){.markdown h1:first-child{--ifm-h1-font-size:2rem}.markdown>h2{--ifm-h2-font-size:1.5rem}.markdown>h3{--ifm-h3-font-size:1.25rem}}@media (hover:hover){.backToTopButton_sjWU:hover{background-color:var(--ifm-color-emphasis-300)}}@media (pointer:fine){.thin-scrollbar{scrollbar-width:thin}.thin-scrollbar::-webkit-scrollbar{height:var(--ifm-scrollbar-size);width:var(--ifm-scrollbar-size)}.thin-scrollbar::-webkit-scrollbar-track{background:var(--ifm-scrollbar-track-background-color);border-radius:10px}.thin-scrollbar::-webkit-scrollbar-thumb{background:var(--ifm-scrollbar-thumb-background-color);border-radius:10px}.thin-scrollbar::-webkit-scrollbar-thumb:hover{background:var(--ifm-scrollbar-thumb-hover-background-color)}}@media print{.announcementBar_mb4j,.footer,.menu,.navbar,.pagination-nav,.table-of-contents,.tocMobile_ITEo{display:none}.tabs{page-break-inside:avoid}.codeBlockLines_e6Vv{white-space:pre-wrap}} \ No newline at end of file diff --git a/assets/css/styles.b524ca4a.css b/assets/css/styles.b524ca4a.css deleted file mode 100644 index f427f82..0000000 --- a/assets/css/styles.b524ca4a.css +++ /dev/null @@ -1 +0,0 @@ -.col,.container{padding:0 var(--ifm-spacing-horizontal);width:100%}.markdown>h2,.markdown>h3,.markdown>h4,.markdown>h5,.markdown>h6{margin-bottom:calc(var(--ifm-heading-vertical-rhythm-bottom)*var(--ifm-leading))}body,ol ol,ol ul,ul ol,ul ul{margin:0}blockquote,pre{margin:0 0 var(--ifm-spacing-vertical)}.breadcrumbs__link,.button{transition-timing-function:var(--ifm-transition-timing-default)}.button,code{vertical-align:middle}.button--outline.button--active,.button--outline:active,.button--outline:hover,:root{--ifm-button-color:var(--ifm-font-color-base-inverse)}.menu__link:hover,a{transition:color var(--ifm-transition-fast) var(--ifm-transition-timing-default)}.navbar--dark,:root{--ifm-navbar-link-hover-color:var(--ifm-color-primary)}.menu,.navbar-sidebar{overflow-x:hidden}:root,html[data-theme=dark]{--ifm-color-emphasis-500:var(--ifm-color-gray-500)}.toggleButton_gllP,html{-webkit-tap-highlight-color:transparent}.button,.dropdown__link,.searchbox,.text--truncate{white-space:nowrap}.searchbox__reset:focus,.searchbox__submit:focus,body:not(.navigation-with-keyboard) :not(input):focus{outline:0}.markdown li,body{word-wrap:break-word}.clean-list,.containsTaskList_mC6p,.details_lb9f>summary,.dropdown__menu,.menu__list{list-style:none}:root{--ifm-color-scheme:light;--ifm-dark-value:10%;--ifm-darker-value:15%;--ifm-darkest-value:30%;--ifm-light-value:15%;--ifm-lighter-value:30%;--ifm-lightest-value:50%;--ifm-contrast-background-value:90%;--ifm-contrast-foreground-value:70%;--ifm-contrast-background-dark-value:70%;--ifm-contrast-foreground-dark-value:90%;--ifm-color-primary:#3578e5;--ifm-color-secondary:#ebedf0;--ifm-color-success:#00a400;--ifm-color-info:#54c7ec;--ifm-color-warning:#ffba00;--ifm-color-danger:#fa383e;--ifm-color-primary-dark:#306cce;--ifm-color-primary-darker:#2d66c3;--ifm-color-primary-darkest:#2554a0;--ifm-color-primary-light:#538ce9;--ifm-color-primary-lighter:#72a1ed;--ifm-color-primary-lightest:#9abcf2;--ifm-color-primary-contrast-background:#ebf2fc;--ifm-color-primary-contrast-foreground:#102445;--ifm-color-secondary-dark:#d4d5d8;--ifm-color-secondary-darker:#c8c9cc;--ifm-color-secondary-darkest:#a4a6a8;--ifm-color-secondary-light:#eef0f2;--ifm-color-secondary-lighter:#f1f2f5;--ifm-color-secondary-lightest:#f5f6f8;--ifm-color-secondary-contrast-background:#fdfdfe;--ifm-color-secondary-contrast-foreground:#474748;--ifm-color-success-dark:#009400;--ifm-color-success-darker:#008b00;--ifm-color-success-darkest:#007300;--ifm-color-success-light:#26b226;--ifm-color-success-lighter:#4dbf4d;--ifm-color-success-lightest:#80d280;--ifm-color-success-contrast-background:#e6f6e6;--ifm-color-success-contrast-foreground:#003100;--ifm-color-info-dark:#4cb3d4;--ifm-color-info-darker:#47a9c9;--ifm-color-info-darkest:#3b8ba5;--ifm-color-info-light:#6ecfef;--ifm-color-info-lighter:#87d8f2;--ifm-color-info-lightest:#aae3f6;--ifm-color-info-contrast-background:#eef9fd;--ifm-color-info-contrast-foreground:#193c47;--ifm-color-warning-dark:#e6a700;--ifm-color-warning-darker:#d99e00;--ifm-color-warning-darkest:#b38200;--ifm-color-warning-light:#ffc426;--ifm-color-warning-lighter:#ffcf4d;--ifm-color-warning-lightest:#ffdd80;--ifm-color-warning-contrast-background:#fff8e6;--ifm-color-warning-contrast-foreground:#4d3800;--ifm-color-danger-dark:#e13238;--ifm-color-danger-darker:#d53035;--ifm-color-danger-darkest:#af272b;--ifm-color-danger-light:#fb565b;--ifm-color-danger-lighter:#fb7478;--ifm-color-danger-lightest:#fd9c9f;--ifm-color-danger-contrast-background:#ffebec;--ifm-color-danger-contrast-foreground:#4b1113;--ifm-color-white:#fff;--ifm-color-black:#000;--ifm-color-gray-0:var(--ifm-color-white);--ifm-color-gray-100:#f5f6f7;--ifm-color-gray-200:#ebedf0;--ifm-color-gray-300:#dadde1;--ifm-color-gray-400:#ccd0d5;--ifm-color-gray-500:#bec3c9;--ifm-color-gray-600:#8d949e;--ifm-color-gray-700:#606770;--ifm-color-gray-800:#444950;--ifm-color-gray-900:#1c1e21;--ifm-color-gray-1000:var(--ifm-color-black);--ifm-color-emphasis-0:var(--ifm-color-gray-0);--ifm-color-emphasis-100:var(--ifm-color-gray-100);--ifm-color-emphasis-200:var(--ifm-color-gray-200);--ifm-color-emphasis-300:var(--ifm-color-gray-300);--ifm-color-emphasis-400:var(--ifm-color-gray-400);--ifm-color-emphasis-600:var(--ifm-color-gray-600);--ifm-color-emphasis-700:var(--ifm-color-gray-700);--ifm-color-emphasis-800:var(--ifm-color-gray-800);--ifm-color-emphasis-900:var(--ifm-color-gray-900);--ifm-color-emphasis-1000:var(--ifm-color-gray-1000);--ifm-color-content:var(--ifm-color-emphasis-900);--ifm-color-content-inverse:var(--ifm-color-emphasis-0);--ifm-color-content-secondary:#525860;--ifm-background-color:#0000;--ifm-background-surface-color:var(--ifm-color-content-inverse);--ifm-global-border-width:1px;--ifm-global-radius:0.4rem;--ifm-hover-overlay:#0000000d;--ifm-font-color-base:var(--ifm-color-content);--ifm-font-color-base-inverse:var(--ifm-color-content-inverse);--ifm-font-color-secondary:var(--ifm-color-content-secondary);--ifm-font-family-base:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";--ifm-font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--ifm-font-size-base:100%;--ifm-font-weight-light:300;--ifm-font-weight-normal:400;--ifm-font-weight-semibold:500;--ifm-font-weight-bold:700;--ifm-font-weight-base:var(--ifm-font-weight-normal);--ifm-line-height-base:1.65;--ifm-global-spacing:1rem;--ifm-spacing-vertical:var(--ifm-global-spacing);--ifm-spacing-horizontal:var(--ifm-global-spacing);--ifm-transition-fast:200ms;--ifm-transition-slow:400ms;--ifm-transition-timing-default:cubic-bezier(0.08,0.52,0.52,1);--ifm-global-shadow-lw:0 1px 2px 0 #0000001a;--ifm-global-shadow-md:0 5px 40px #0003;--ifm-global-shadow-tl:0 12px 28px 0 #0003,0 2px 4px 0 #0000001a;--ifm-z-index-dropdown:100;--ifm-z-index-fixed:200;--ifm-z-index-overlay:400;--ifm-container-width:1140px;--ifm-container-width-xl:1320px;--ifm-code-background:#f6f7f8;--ifm-code-border-radius:var(--ifm-global-radius);--ifm-code-font-size:90%;--ifm-code-padding-horizontal:0.1rem;--ifm-code-padding-vertical:0.1rem;--ifm-pre-background:var(--ifm-code-background);--ifm-pre-border-radius:var(--ifm-code-border-radius);--ifm-pre-color:inherit;--ifm-pre-line-height:1.45;--ifm-pre-padding:1rem;--ifm-heading-color:inherit;--ifm-heading-margin-top:0;--ifm-heading-margin-bottom:var(--ifm-spacing-vertical);--ifm-heading-font-family:var(--ifm-font-family-base);--ifm-heading-font-weight:var(--ifm-font-weight-bold);--ifm-heading-line-height:1.25;--ifm-h1-font-size:2rem;--ifm-h2-font-size:1.5rem;--ifm-h3-font-size:1.25rem;--ifm-h4-font-size:1rem;--ifm-h5-font-size:0.875rem;--ifm-h6-font-size:0.85rem;--ifm-image-alignment-padding:1.25rem;--ifm-leading-desktop:1.25;--ifm-leading:calc(var(--ifm-leading-desktop)*1rem);--ifm-list-left-padding:2rem;--ifm-list-margin:1rem;--ifm-list-item-margin:0.25rem;--ifm-list-paragraph-margin:1rem;--ifm-table-cell-padding:0.75rem;--ifm-table-background:#0000;--ifm-table-stripe-background:#00000008;--ifm-table-border-width:1px;--ifm-table-border-color:var(--ifm-color-emphasis-300);--ifm-table-head-background:inherit;--ifm-table-head-color:inherit;--ifm-table-head-font-weight:var(--ifm-font-weight-bold);--ifm-table-cell-color:inherit;--ifm-link-color:var(--ifm-color-primary);--ifm-link-decoration:none;--ifm-link-hover-color:var(--ifm-link-color);--ifm-link-hover-decoration:underline;--ifm-paragraph-margin-bottom:var(--ifm-leading);--ifm-blockquote-font-size:var(--ifm-font-size-base);--ifm-blockquote-border-left-width:2px;--ifm-blockquote-padding-horizontal:var(--ifm-spacing-horizontal);--ifm-blockquote-padding-vertical:0;--ifm-blockquote-shadow:none;--ifm-blockquote-color:var(--ifm-color-emphasis-800);--ifm-blockquote-border-color:var(--ifm-color-emphasis-300);--ifm-hr-background-color:var(--ifm-color-emphasis-500);--ifm-hr-height:1px;--ifm-hr-margin-vertical:1.5rem;--ifm-scrollbar-size:7px;--ifm-scrollbar-track-background-color:#f1f1f1;--ifm-scrollbar-thumb-background-color:silver;--ifm-scrollbar-thumb-hover-background-color:#a7a7a7;--ifm-alert-background-color:inherit;--ifm-alert-border-color:inherit;--ifm-alert-border-radius:var(--ifm-global-radius);--ifm-alert-border-width:0px;--ifm-alert-border-left-width:5px;--ifm-alert-color:var(--ifm-font-color-base);--ifm-alert-padding-horizontal:var(--ifm-spacing-horizontal);--ifm-alert-padding-vertical:var(--ifm-spacing-vertical);--ifm-alert-shadow:var(--ifm-global-shadow-lw);--ifm-avatar-intro-margin:1rem;--ifm-avatar-intro-alignment:inherit;--ifm-avatar-photo-size:3rem;--ifm-badge-background-color:inherit;--ifm-badge-border-color:inherit;--ifm-badge-border-radius:var(--ifm-global-radius);--ifm-badge-border-width:var(--ifm-global-border-width);--ifm-badge-color:var(--ifm-color-white);--ifm-badge-padding-horizontal:calc(var(--ifm-spacing-horizontal)*0.5);--ifm-badge-padding-vertical:calc(var(--ifm-spacing-vertical)*0.25);--ifm-breadcrumb-border-radius:1.5rem;--ifm-breadcrumb-spacing:0.5rem;--ifm-breadcrumb-color-active:var(--ifm-color-primary);--ifm-breadcrumb-item-background-active:var(--ifm-hover-overlay);--ifm-breadcrumb-padding-horizontal:0.8rem;--ifm-breadcrumb-padding-vertical:0.4rem;--ifm-breadcrumb-size-multiplier:1;--ifm-breadcrumb-separator:url('data:image/svg+xml;utf8,');--ifm-breadcrumb-separator-filter:none;--ifm-breadcrumb-separator-size:0.5rem;--ifm-breadcrumb-separator-size-multiplier:1.25;--ifm-button-background-color:inherit;--ifm-button-border-color:var(--ifm-button-background-color);--ifm-button-border-width:var(--ifm-global-border-width);--ifm-button-font-weight:var(--ifm-font-weight-bold);--ifm-button-padding-horizontal:1.5rem;--ifm-button-padding-vertical:0.375rem;--ifm-button-size-multiplier:1;--ifm-button-transition-duration:var(--ifm-transition-fast);--ifm-button-border-radius:calc(var(--ifm-global-radius)*var(--ifm-button-size-multiplier));--ifm-button-group-spacing:2px;--ifm-card-background-color:var(--ifm-background-surface-color);--ifm-card-border-radius:calc(var(--ifm-global-radius)*2);--ifm-card-horizontal-spacing:var(--ifm-global-spacing);--ifm-card-vertical-spacing:var(--ifm-global-spacing);--ifm-toc-border-color:var(--ifm-color-emphasis-300);--ifm-toc-link-color:var(--ifm-color-content-secondary);--ifm-toc-padding-vertical:0.5rem;--ifm-toc-padding-horizontal:0.5rem;--ifm-dropdown-background-color:var(--ifm-background-surface-color);--ifm-dropdown-font-weight:var(--ifm-font-weight-semibold);--ifm-dropdown-link-color:var(--ifm-font-color-base);--ifm-dropdown-hover-background-color:var(--ifm-hover-overlay);--ifm-footer-background-color:var(--ifm-color-emphasis-100);--ifm-footer-color:inherit;--ifm-footer-link-color:var(--ifm-color-emphasis-700);--ifm-footer-link-hover-color:var(--ifm-color-primary);--ifm-footer-link-horizontal-spacing:0.5rem;--ifm-footer-padding-horizontal:calc(var(--ifm-spacing-horizontal)*2);--ifm-footer-padding-vertical:calc(var(--ifm-spacing-vertical)*2);--ifm-footer-title-color:inherit;--ifm-footer-logo-max-width:min(30rem,90vw);--ifm-hero-background-color:var(--ifm-background-surface-color);--ifm-hero-text-color:var(--ifm-color-emphasis-800);--ifm-menu-color:var(--ifm-color-emphasis-700);--ifm-menu-color-active:var(--ifm-color-primary);--ifm-menu-color-background-active:var(--ifm-hover-overlay);--ifm-menu-color-background-hover:var(--ifm-hover-overlay);--ifm-menu-link-padding-horizontal:0.75rem;--ifm-menu-link-padding-vertical:0.375rem;--ifm-menu-link-sublist-icon:url('data:image/svg+xml;utf8,');--ifm-menu-link-sublist-icon-filter:none;--ifm-navbar-background-color:var(--ifm-background-surface-color);--ifm-navbar-height:3.75rem;--ifm-navbar-item-padding-horizontal:0.75rem;--ifm-navbar-item-padding-vertical:0.25rem;--ifm-navbar-link-color:var(--ifm-font-color-base);--ifm-navbar-link-active-color:var(--ifm-link-color);--ifm-navbar-padding-horizontal:var(--ifm-spacing-horizontal);--ifm-navbar-padding-vertical:calc(var(--ifm-spacing-vertical)*0.5);--ifm-navbar-shadow:var(--ifm-global-shadow-lw);--ifm-navbar-search-input-background-color:var(--ifm-color-emphasis-200);--ifm-navbar-search-input-color:var(--ifm-color-emphasis-800);--ifm-navbar-search-input-placeholder-color:var(--ifm-color-emphasis-500);--ifm-navbar-search-input-icon:url('data:image/svg+xml;utf8,');--ifm-navbar-sidebar-width:83vw;--ifm-pagination-border-radius:var(--ifm-global-radius);--ifm-pagination-color-active:var(--ifm-color-primary);--ifm-pagination-font-size:1rem;--ifm-pagination-item-active-background:var(--ifm-hover-overlay);--ifm-pagination-page-spacing:0.2em;--ifm-pagination-padding-horizontal:calc(var(--ifm-spacing-horizontal)*1);--ifm-pagination-padding-vertical:calc(var(--ifm-spacing-vertical)*0.25);--ifm-pagination-nav-border-radius:var(--ifm-global-radius);--ifm-pagination-nav-color-hover:var(--ifm-color-primary);--ifm-pills-color-active:var(--ifm-color-primary);--ifm-pills-color-background-active:var(--ifm-hover-overlay);--ifm-pills-spacing:0.125rem;--ifm-tabs-color:var(--ifm-font-color-secondary);--ifm-tabs-color-active:var(--ifm-color-primary);--ifm-tabs-color-active-border:var(--ifm-tabs-color-active);--ifm-tabs-padding-horizontal:1rem;--ifm-tabs-padding-vertical:1rem;--docusaurus-progress-bar-color:var(--ifm-color-primary);--docusaurus-announcement-bar-height:auto;--docusaurus-tag-list-border:var(--ifm-color-emphasis-300);--docusaurus-collapse-button-bg:#0000;--docusaurus-collapse-button-bg-hover:#0000001a;--doc-sidebar-width:300px;--doc-sidebar-hidden-width:30px;--op-color:#f0b6b6}.badge--danger,.badge--info,.badge--primary,.badge--secondary,.badge--success,.badge--warning{--ifm-badge-border-color:var(--ifm-badge-background-color)}.button--link,.button--outline{--ifm-button-background-color:#0000}*,.algolia-autocomplete .ds-dropdown-menu *{box-sizing:border-box}html{-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;text-size-adjust:100%;background-color:var(--ifm-background-color);color:var(--ifm-font-color-base);color-scheme:var(--ifm-color-scheme);font:var(--ifm-font-size-base)/var(--ifm-line-height-base) var(--ifm-font-family-base);text-rendering:optimizelegibility}iframe{border:0;color-scheme:auto}.container{margin:0 auto;max-width:var(--ifm-container-width)}.container--fluid{max-width:inherit}.row{display:flex;flex-wrap:wrap;margin:0 calc(var(--ifm-spacing-horizontal)*-1)}.margin-bottom--none,.margin-vert--none,.markdown>:last-child{margin-bottom:0!important}.margin-top--none,.margin-vert--none,.tabItem_LNqP{margin-top:0!important}.row--no-gutters{margin-left:0;margin-right:0}.margin-horiz--none,.margin-right--none{margin-right:0!important}.row--no-gutters>.col{padding-left:0;padding-right:0}.row--align-top{align-items:flex-start}.row--align-bottom{align-items:flex-end}.menuExternalLink_NmtK,.row--align-center{align-items:center}.row--align-stretch{align-items:stretch}.row--align-baseline{align-items:baseline}.col{--ifm-col-width:100%;flex:1 0;margin-left:0;max-width:var(--ifm-col-width)}.padding-bottom--none,.padding-vert--none{padding-bottom:0!important}.padding-top--none,.padding-vert--none{padding-top:0!important}.padding-horiz--none,.padding-left--none{padding-left:0!important}.padding-horiz--none,.padding-right--none{padding-right:0!important}.col[class*=col--]{flex:0 0 var(--ifm-col-width)}.col--1{--ifm-col-width:8.33333%}.col--offset-1{margin-left:8.33333%}.col--2{--ifm-col-width:16.66667%}.col--offset-2{margin-left:16.66667%}.col--3{--ifm-col-width:25%}.col--offset-3{margin-left:25%}.col--4{--ifm-col-width:33.33333%}.col--offset-4{margin-left:33.33333%}.col--5{--ifm-col-width:41.66667%}.col--offset-5{margin-left:41.66667%}.col--6{--ifm-col-width:50%}.col--offset-6{margin-left:50%}.col--7{--ifm-col-width:58.33333%}.col--offset-7{margin-left:58.33333%}.col--8{--ifm-col-width:66.66667%}.col--offset-8{margin-left:66.66667%}.col--9{--ifm-col-width:75%}.col--offset-9{margin-left:75%}.col--10{--ifm-col-width:83.33333%}.col--offset-10{margin-left:83.33333%}.col--11{--ifm-col-width:91.66667%}.col--offset-11{margin-left:91.66667%}.col--12{--ifm-col-width:100%}.col--offset-12{margin-left:100%}.margin-horiz--none,.margin-left--none{margin-left:0!important}.margin--none{margin:0!important}.margin-bottom--xs,.margin-vert--xs{margin-bottom:.25rem!important}.margin-top--xs,.margin-vert--xs{margin-top:.25rem!important}.margin-horiz--xs,.margin-left--xs{margin-left:.25rem!important}.margin-horiz--xs,.margin-right--xs{margin-right:.25rem!important}.margin--xs{margin:.25rem!important}.margin-bottom--sm,.margin-vert--sm{margin-bottom:.5rem!important}.margin-top--sm,.margin-vert--sm{margin-top:.5rem!important}.margin-horiz--sm,.margin-left--sm{margin-left:.5rem!important}.margin-horiz--sm,.margin-right--sm{margin-right:.5rem!important}.margin--sm{margin:.5rem!important}.margin-bottom--md,.margin-vert--md{margin-bottom:1rem!important}.margin-top--md,.margin-vert--md{margin-top:1rem!important}.margin-horiz--md,.margin-left--md{margin-left:1rem!important}.margin-horiz--md,.margin-right--md{margin-right:1rem!important}.margin--md{margin:1rem!important}.margin-bottom--lg,.margin-vert--lg{margin-bottom:2rem!important}.margin-top--lg,.margin-vert--lg{margin-top:2rem!important}.margin-horiz--lg,.margin-left--lg{margin-left:2rem!important}.margin-horiz--lg,.margin-right--lg{margin-right:2rem!important}.margin--lg{margin:2rem!important}.margin-bottom--xl,.margin-vert--xl{margin-bottom:5rem!important}.margin-top--xl,.margin-vert--xl{margin-top:5rem!important}.margin-horiz--xl,.margin-left--xl{margin-left:5rem!important}.margin-horiz--xl,.margin-right--xl{margin-right:5rem!important}.margin--xl{margin:5rem!important}.padding--none{padding:0!important}.padding-bottom--xs,.padding-vert--xs{padding-bottom:.25rem!important}.padding-top--xs,.padding-vert--xs{padding-top:.25rem!important}.padding-horiz--xs,.padding-left--xs{padding-left:.25rem!important}.padding-horiz--xs,.padding-right--xs{padding-right:.25rem!important}.padding--xs{padding:.25rem!important}.padding-bottom--sm,.padding-vert--sm{padding-bottom:.5rem!important}.padding-top--sm,.padding-vert--sm{padding-top:.5rem!important}.padding-horiz--sm,.padding-left--sm{padding-left:.5rem!important}.padding-horiz--sm,.padding-right--sm{padding-right:.5rem!important}.padding--sm{padding:.5rem!important}.padding-bottom--md,.padding-vert--md{padding-bottom:1rem!important}.padding-top--md,.padding-vert--md{padding-top:1rem!important}.padding-horiz--md,.padding-left--md{padding-left:1rem!important}.padding-horiz--md,.padding-right--md{padding-right:1rem!important}.padding--md{padding:1rem!important}.padding-bottom--lg,.padding-vert--lg{padding-bottom:2rem!important}.padding-top--lg,.padding-vert--lg{padding-top:2rem!important}.padding-horiz--lg,.padding-left--lg{padding-left:2rem!important}.padding-horiz--lg,.padding-right--lg{padding-right:2rem!important}.padding--lg{padding:2rem!important}.padding-bottom--xl,.padding-vert--xl{padding-bottom:5rem!important}.padding-top--xl,.padding-vert--xl{padding-top:5rem!important}.padding-horiz--xl,.padding-left--xl{padding-left:5rem!important}.padding-horiz--xl,.padding-right--xl{padding-right:5rem!important}.padding--xl{padding:5rem!important}code{background-color:var(--ifm-code-background);border:.1rem solid #0000001a;border-radius:var(--ifm-code-border-radius);font-family:var(--ifm-font-family-monospace);font-size:var(--ifm-code-font-size);padding:var(--ifm-code-padding-vertical) var(--ifm-code-padding-horizontal)}a code{color:inherit}pre{background-color:var(--ifm-pre-background);border-radius:var(--ifm-pre-border-radius);color:var(--ifm-pre-color);font:var(--ifm-code-font-size)/var(--ifm-pre-line-height) var(--ifm-font-family-monospace);overflow:auto;padding:var(--ifm-pre-padding)}pre code{background-color:initial;border:none;font-size:100%;line-height:inherit;padding:0}kbd{background-color:var(--ifm-color-emphasis-0);border:1px solid var(--ifm-color-emphasis-400);border-radius:.2rem;box-shadow:inset 0 -1px 0 var(--ifm-color-emphasis-400);color:var(--ifm-color-emphasis-800);font:80% var(--ifm-font-family-monospace);padding:.15rem .3rem}h1,h2,h3,h4,h5,h6{color:var(--ifm-heading-color);font-family:var(--ifm-heading-font-family);font-weight:var(--ifm-heading-font-weight);line-height:var(--ifm-heading-line-height);margin:var(--ifm-heading-margin-top) 0 var(--ifm-heading-margin-bottom) 0}h1{font-size:var(--ifm-h1-font-size)}h2{font-size:var(--ifm-h2-font-size)}h3{font-size:var(--ifm-h3-font-size)}h4{font-size:var(--ifm-h4-font-size)}h5{font-size:var(--ifm-h5-font-size)}h6{font-size:var(--ifm-h6-font-size)}img{max-width:100%}img[align=right]{padding-left:var(--image-alignment-padding)}img[align=left]{padding-right:var(--image-alignment-padding)}.markdown{--ifm-h1-vertical-rhythm-top:3;--ifm-h2-vertical-rhythm-top:2;--ifm-h3-vertical-rhythm-top:1.5;--ifm-heading-vertical-rhythm-top:1.25;--ifm-h1-vertical-rhythm-bottom:1.25;--ifm-heading-vertical-rhythm-bottom:1}.markdown:after,.markdown:before{content:"";display:table}.markdown:after{clear:both}.markdown h1:first-child{--ifm-h1-font-size:3rem;margin-bottom:calc(var(--ifm-h1-vertical-rhythm-bottom)*var(--ifm-leading))}.markdown>h2{--ifm-h2-font-size:2rem;margin-top:calc(var(--ifm-h2-vertical-rhythm-top)*var(--ifm-leading))}.markdown>h3{--ifm-h3-font-size:1.5rem;margin-top:calc(var(--ifm-h3-vertical-rhythm-top)*var(--ifm-leading))}.markdown>h4,.markdown>h5,.markdown>h6{margin-top:calc(var(--ifm-heading-vertical-rhythm-top)*var(--ifm-leading))}.markdown>p,.markdown>pre,.markdown>ul,.tabList__CuJ{margin-bottom:var(--ifm-leading)}.markdown li>p{margin-top:var(--ifm-list-paragraph-margin)}.markdown li+li{margin-top:var(--ifm-list-item-margin)}ol,ul{margin:0 0 var(--ifm-list-margin);padding-left:var(--ifm-list-left-padding)}ol ol,ul ol{list-style-type:lower-roman}ol ol ol,ol ul ol,ul ol ol,ul ul ol{list-style-type:lower-alpha}table{border-collapse:collapse;display:block;margin-bottom:var(--ifm-spacing-vertical);overflow:auto}table thead tr{border-bottom:2px solid var(--ifm-table-border-color)}table thead,table tr:nth-child(2n){background-color:var(--ifm-table-stripe-background)}table tr{background-color:var(--ifm-table-background);border-top:var(--ifm-table-border-width) solid var(--ifm-table-border-color)}table td,table th{border:var(--ifm-table-border-width) solid var(--ifm-table-border-color);padding:var(--ifm-table-cell-padding)}table th{background-color:var(--ifm-table-head-background);color:var(--ifm-table-head-color);font-weight:var(--ifm-table-head-font-weight)}table td{color:var(--ifm-table-cell-color)}strong{font-weight:var(--ifm-font-weight-bold)}a{color:var(--ifm-link-color);text-decoration:var(--ifm-link-decoration)}a:hover{color:var(--ifm-link-hover-color);text-decoration:var(--ifm-link-hover-decoration)}.button:hover,.text--no-decoration,.text--no-decoration:hover,a:not([href]){text-decoration:none}p{margin:0 0 var(--ifm-paragraph-margin-bottom)}blockquote{border-left:var(--ifm-blockquote-border-left-width) solid var(--ifm-blockquote-border-color);box-shadow:var(--ifm-blockquote-shadow);color:var(--ifm-blockquote-color);font-size:var(--ifm-blockquote-font-size);padding:var(--ifm-blockquote-padding-vertical) var(--ifm-blockquote-padding-horizontal)}blockquote>:first-child{margin-top:0}blockquote>:last-child{margin-bottom:0}hr{background-color:var(--ifm-hr-background-color);border:0;height:var(--ifm-hr-height);margin:var(--ifm-hr-margin-vertical) 0}.shadow--lw{box-shadow:var(--ifm-global-shadow-lw)!important}.shadow--md{box-shadow:var(--ifm-global-shadow-md)!important}.shadow--tl{box-shadow:var(--ifm-global-shadow-tl)!important}.text--primary,.wordWrapButtonEnabled_EoeP .wordWrapButtonIcon_Bwma{color:var(--ifm-color-primary)}.text--secondary{color:var(--ifm-color-secondary)}.text--success{color:var(--ifm-color-success)}.text--info{color:var(--ifm-color-info)}.text--warning{color:var(--ifm-color-warning)}.text--danger{color:var(--ifm-color-danger)}.text--center{text-align:center}.text--left{text-align:left}.text--justify{text-align:justify}.text--right{text-align:right}.text--capitalize{text-transform:capitalize}.text--lowercase{text-transform:lowercase}.admonition h5,.admonitionHeading_tbUL,.alert__heading,.text--uppercase{text-transform:uppercase}.text--light{font-weight:var(--ifm-font-weight-light)}.text--normal{font-weight:var(--ifm-font-weight-normal)}.text--semibold{font-weight:var(--ifm-font-weight-semibold)}.text--bold{font-weight:var(--ifm-font-weight-bold)}.text--italic,.token.italic{font-style:italic}.text--truncate{overflow:hidden;text-overflow:ellipsis}.text--break{word-wrap:break-word!important;word-break:break-word!important}.docPage_Dpn1 .member_J0w1 code,.docTitle_mZRt,a.menu__link{word-break:break-word}.clean-btn{background:none;border:none;color:inherit;cursor:pointer;font-family:inherit;padding:0}.alert,.alert .close{color:var(--ifm-alert-foreground-color)}.clean-list{padding-left:0}.alert--primary{--ifm-alert-background-color:var(--ifm-color-primary-contrast-background);--ifm-alert-background-color-highlight:#3578e526;--ifm-alert-foreground-color:var(--ifm-color-primary-contrast-foreground);--ifm-alert-border-color:var(--ifm-color-primary-dark)}.alert--secondary{--ifm-alert-background-color:var(--ifm-color-secondary-contrast-background);--ifm-alert-background-color-highlight:#ebedf026;--ifm-alert-foreground-color:var(--ifm-color-secondary-contrast-foreground);--ifm-alert-border-color:var(--ifm-color-secondary-dark)}.alert--success{--ifm-alert-background-color:var(--ifm-color-success-contrast-background);--ifm-alert-background-color-highlight:#00a40026;--ifm-alert-foreground-color:var(--ifm-color-success-contrast-foreground);--ifm-alert-border-color:var(--ifm-color-success-dark)}.alert--info{--ifm-alert-background-color:var(--ifm-color-info-contrast-background);--ifm-alert-background-color-highlight:#54c7ec26;--ifm-alert-foreground-color:var(--ifm-color-info-contrast-foreground);--ifm-alert-border-color:var(--ifm-color-info-dark)}.alert--warning{--ifm-alert-background-color:var(--ifm-color-warning-contrast-background);--ifm-alert-background-color-highlight:#ffba0026;--ifm-alert-foreground-color:var(--ifm-color-warning-contrast-foreground);--ifm-alert-border-color:var(--ifm-color-warning-dark)}.alert--danger{--ifm-alert-background-color:var(--ifm-color-danger-contrast-background);--ifm-alert-background-color-highlight:#fa383e26;--ifm-alert-foreground-color:var(--ifm-color-danger-contrast-foreground);--ifm-alert-border-color:var(--ifm-color-danger-dark)}.alert{--ifm-code-background:var(--ifm-alert-background-color-highlight);--ifm-link-color:var(--ifm-alert-foreground-color);--ifm-link-hover-color:var(--ifm-alert-foreground-color);--ifm-link-decoration:underline;--ifm-tabs-color:var(--ifm-alert-foreground-color);--ifm-tabs-color-active:var(--ifm-alert-foreground-color);--ifm-tabs-color-active-border:var(--ifm-alert-border-color);background-color:var(--ifm-alert-background-color);border:var(--ifm-alert-border-width) solid var(--ifm-alert-border-color);border-left-width:var(--ifm-alert-border-left-width);border-radius:var(--ifm-alert-border-radius);box-shadow:var(--ifm-alert-shadow);padding:var(--ifm-alert-padding-vertical) var(--ifm-alert-padding-horizontal)}.alert__heading{align-items:center;display:flex;font:700 var(--ifm-h5-font-size)/var(--ifm-heading-line-height) var(--ifm-heading-font-family);margin-bottom:.5rem}.alert__icon{display:inline-flex;margin-right:.4em}.alert__icon svg{fill:var(--ifm-alert-foreground-color);stroke:var(--ifm-alert-foreground-color);stroke-width:0}.alert .close{margin:calc(var(--ifm-alert-padding-vertical)*-1) calc(var(--ifm-alert-padding-horizontal)*-1) 0 0;opacity:.75}.alert .close:focus,.alert .close:hover{opacity:1}.alert a{text-decoration-color:var(--ifm-alert-border-color)}.alert a:hover{text-decoration-thickness:2px}.avatar{column-gap:var(--ifm-avatar-intro-margin);display:flex}.avatar__photo{border-radius:50%;display:block;height:var(--ifm-avatar-photo-size);overflow:hidden;width:var(--ifm-avatar-photo-size)}.card--full-height,.navbar__logo img,body,html{height:100%}.avatar__photo--sm{--ifm-avatar-photo-size:2rem}.avatar__photo--lg{--ifm-avatar-photo-size:4rem}.avatar__photo--xl{--ifm-avatar-photo-size:6rem}.avatar__intro{display:flex;flex:1 1;flex-direction:column;justify-content:center;text-align:var(--ifm-avatar-intro-alignment)}.badge,.breadcrumbs__item,.breadcrumbs__link,.button,.dropdown>.navbar__link:after{display:inline-block}.avatar__name{font:700 var(--ifm-h4-font-size)/var(--ifm-heading-line-height) var(--ifm-font-family-base)}.avatar__subtitle{margin-top:.25rem}.avatar--vertical{--ifm-avatar-intro-alignment:center;--ifm-avatar-intro-margin:0.5rem;align-items:center;flex-direction:column}.badge{background-color:var(--ifm-badge-background-color);border:var(--ifm-badge-border-width) solid var(--ifm-badge-border-color);border-radius:var(--ifm-badge-border-radius);color:var(--ifm-badge-color);font-size:75%;font-weight:var(--ifm-font-weight-bold);line-height:1;padding:var(--ifm-badge-padding-vertical) var(--ifm-badge-padding-horizontal)}.badge--primary{--ifm-badge-background-color:var(--ifm-color-primary)}.badge--secondary{--ifm-badge-background-color:var(--ifm-color-secondary);color:var(--ifm-color-black)}.breadcrumbs__link,.button.button--secondary.button--outline:not(.button--active):not(:hover){color:var(--ifm-font-color-base)}.badge--success{--ifm-badge-background-color:var(--ifm-color-success)}.badge--info{--ifm-badge-background-color:var(--ifm-color-info)}.badge--warning{--ifm-badge-background-color:var(--ifm-color-warning)}.badge--danger{--ifm-badge-background-color:var(--ifm-color-danger)}.breadcrumbs{margin-bottom:0;padding-left:0}.breadcrumbs__item:not(:last-child):after{background:var(--ifm-breadcrumb-separator) center;content:" ";display:inline-block;filter:var(--ifm-breadcrumb-separator-filter);height:calc(var(--ifm-breadcrumb-separator-size)*var(--ifm-breadcrumb-size-multiplier)*var(--ifm-breadcrumb-separator-size-multiplier));margin:0 var(--ifm-breadcrumb-spacing);opacity:.5;width:calc(var(--ifm-breadcrumb-separator-size)*var(--ifm-breadcrumb-size-multiplier)*var(--ifm-breadcrumb-separator-size-multiplier))}.breadcrumbs__item--active .breadcrumbs__link{background:var(--ifm-breadcrumb-item-background-active);color:var(--ifm-breadcrumb-color-active)}.breadcrumbs__link{border-radius:var(--ifm-breadcrumb-border-radius);font-size:calc(1rem*var(--ifm-breadcrumb-size-multiplier));padding:calc(var(--ifm-breadcrumb-padding-vertical)*var(--ifm-breadcrumb-size-multiplier)) calc(var(--ifm-breadcrumb-padding-horizontal)*var(--ifm-breadcrumb-size-multiplier));transition-duration:var(--ifm-transition-fast);transition-property:background,color}.breadcrumbs__link:any-link:hover,.breadcrumbs__link:link:hover,.breadcrumbs__link:visited:hover,area.breadcrumbs__link[href]:hover{background:var(--ifm-breadcrumb-item-background-active);text-decoration:none}.breadcrumbs--sm{--ifm-breadcrumb-size-multiplier:0.8}.breadcrumbs--lg{--ifm-breadcrumb-size-multiplier:1.2}.button{background-color:var(--ifm-button-background-color);border:var(--ifm-button-border-width) solid var(--ifm-button-border-color);border-radius:var(--ifm-button-border-radius);cursor:pointer;font-size:calc(.875rem*var(--ifm-button-size-multiplier));font-weight:var(--ifm-button-font-weight);line-height:1.5;padding:calc(var(--ifm-button-padding-vertical)*var(--ifm-button-size-multiplier)) calc(var(--ifm-button-padding-horizontal)*var(--ifm-button-size-multiplier));text-align:center;transition-duration:var(--ifm-button-transition-duration);transition-property:color,background,border-color;-webkit-user-select:none;user-select:none}.searchbox__reset,.searchbox__submit{-webkit-user-select:none;position:absolute;font-size:inherit}.button,.button:hover{color:var(--ifm-button-color)}.button--outline{--ifm-button-color:var(--ifm-button-border-color)}.button--outline:hover{--ifm-button-background-color:var(--ifm-button-border-color)}.button--link{--ifm-button-border-color:#0000;color:var(--ifm-link-color);text-decoration:var(--ifm-link-decoration)}.button--link.button--active,.button--link:active,.button--link:hover{color:var(--ifm-link-hover-color);text-decoration:var(--ifm-link-hover-decoration)}.button.disabled,.button:disabled,.button[disabled]{opacity:.65;pointer-events:none}.button--sm{--ifm-button-size-multiplier:0.8}.button--lg{--ifm-button-size-multiplier:1.35}.button--block{display:block;width:100%}.button.button--secondary{color:var(--ifm-color-gray-900)}:where(.button--primary){--ifm-button-background-color:var(--ifm-color-primary);--ifm-button-border-color:var(--ifm-color-primary)}:where(.button--primary):not(.button--outline):hover{--ifm-button-background-color:var(--ifm-color-primary-dark);--ifm-button-border-color:var(--ifm-color-primary-dark)}.button--primary.button--active,.button--primary:active{--ifm-button-background-color:var(--ifm-color-primary-darker);--ifm-button-border-color:var(--ifm-color-primary-darker)}:where(.button--secondary){--ifm-button-background-color:var(--ifm-color-secondary);--ifm-button-border-color:var(--ifm-color-secondary)}:where(.button--secondary):not(.button--outline):hover{--ifm-button-background-color:var(--ifm-color-secondary-dark);--ifm-button-border-color:var(--ifm-color-secondary-dark)}.button--secondary.button--active,.button--secondary:active{--ifm-button-background-color:var(--ifm-color-secondary-darker);--ifm-button-border-color:var(--ifm-color-secondary-darker)}:where(.button--success){--ifm-button-background-color:var(--ifm-color-success);--ifm-button-border-color:var(--ifm-color-success)}:where(.button--success):not(.button--outline):hover{--ifm-button-background-color:var(--ifm-color-success-dark);--ifm-button-border-color:var(--ifm-color-success-dark)}.button--success.button--active,.button--success:active{--ifm-button-background-color:var(--ifm-color-success-darker);--ifm-button-border-color:var(--ifm-color-success-darker)}:where(.button--info){--ifm-button-background-color:var(--ifm-color-info);--ifm-button-border-color:var(--ifm-color-info)}:where(.button--info):not(.button--outline):hover{--ifm-button-background-color:var(--ifm-color-info-dark);--ifm-button-border-color:var(--ifm-color-info-dark)}.button--info.button--active,.button--info:active{--ifm-button-background-color:var(--ifm-color-info-darker);--ifm-button-border-color:var(--ifm-color-info-darker)}:where(.button--warning){--ifm-button-background-color:var(--ifm-color-warning);--ifm-button-border-color:var(--ifm-color-warning)}:where(.button--warning):not(.button--outline):hover{--ifm-button-background-color:var(--ifm-color-warning-dark);--ifm-button-border-color:var(--ifm-color-warning-dark)}.button--warning.button--active,.button--warning:active{--ifm-button-background-color:var(--ifm-color-warning-darker);--ifm-button-border-color:var(--ifm-color-warning-darker)}:where(.button--danger){--ifm-button-background-color:var(--ifm-color-danger);--ifm-button-border-color:var(--ifm-color-danger)}:where(.button--danger):not(.button--outline):hover{--ifm-button-background-color:var(--ifm-color-danger-dark);--ifm-button-border-color:var(--ifm-color-danger-dark)}.button--danger.button--active,.button--danger:active{--ifm-button-background-color:var(--ifm-color-danger-darker);--ifm-button-border-color:var(--ifm-color-danger-darker)}.button-group{display:inline-flex;gap:var(--ifm-button-group-spacing)}.button-group>.button:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.button-group>.button:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.button-group--block{display:flex;justify-content:stretch}.button-group--block>.button,.docPage_Dpn1{flex-grow:1}.card{background-color:var(--ifm-card-background-color);border-radius:var(--ifm-card-border-radius);box-shadow:var(--ifm-global-shadow-lw);display:flex;flex-direction:column;overflow:hidden}.card__image{padding-top:var(--ifm-card-vertical-spacing)}.card__image:first-child{padding-top:0}.card__body,.card__footer,.card__header{padding:var(--ifm-card-vertical-spacing) var(--ifm-card-horizontal-spacing)}.card__body:not(:last-child),.card__footer:not(:last-child),.card__header:not(:last-child){padding-bottom:0}.card__body>:last-child,.card__footer>:last-child,.card__header>:last-child{margin-bottom:0}.card__footer{margin-top:auto}.table-of-contents{font-size:.8rem;margin-bottom:0;padding:var(--ifm-toc-padding-vertical) 0}.table-of-contents,.table-of-contents ul{list-style:none;padding-left:var(--ifm-toc-padding-horizontal)}.table-of-contents li{margin:var(--ifm-toc-padding-vertical) var(--ifm-toc-padding-horizontal)}.table-of-contents__left-border{border-left:1px solid var(--ifm-toc-border-color)}.table-of-contents__link{color:var(--ifm-toc-link-color);display:block}.table-of-contents__link--active,.table-of-contents__link--active code,.table-of-contents__link:hover,.table-of-contents__link:hover code{color:var(--ifm-color-primary);text-decoration:none}.close{color:var(--ifm-color-black);float:right;font-size:1.5rem;font-weight:var(--ifm-font-weight-bold);line-height:1;opacity:.5;padding:1rem;transition:opacity var(--ifm-transition-fast) var(--ifm-transition-timing-default)}.close:hover{opacity:.7}.close:focus,.theme-code-block-highlighted-line .codeLineNumber_Tfdd:before{opacity:.8}.dropdown{display:inline-flex;font-weight:var(--ifm-dropdown-font-weight);position:relative;vertical-align:top}.dropdown--hoverable:hover .dropdown__menu,.dropdown--show .dropdown__menu{opacity:1;pointer-events:all;transform:translateY(-1px);visibility:visible}#nprogress,.dropdown__menu,.navbar__item.dropdown .navbar__link:not([href]){pointer-events:none}.dropdown--right .dropdown__menu{left:inherit;right:0}.dropdown--nocaret .navbar__link:after{content:none!important}.dropdown__menu{background-color:var(--ifm-dropdown-background-color);border-radius:var(--ifm-global-radius);box-shadow:var(--ifm-global-shadow-md);left:0;max-height:80vh;min-width:10rem;opacity:0;overflow-y:auto;padding:.5rem;position:absolute;top:calc(100% - var(--ifm-navbar-item-padding-vertical) + .3rem);transform:translateY(-.625rem);transition-duration:var(--ifm-transition-fast);transition-property:opacity,transform,visibility;transition-timing-function:var(--ifm-transition-timing-default);visibility:hidden;z-index:var(--ifm-z-index-dropdown)}.menu__caret,.menu__link,.menu__list-item-collapsible{border-radius:.25rem;transition:background var(--ifm-transition-fast) var(--ifm-transition-timing-default)}.dropdown__link{border-radius:.25rem;color:var(--ifm-dropdown-link-color);display:block;font-size:.875rem;margin-top:.2rem;padding:.25rem .5rem}.dropdown__link--active,.dropdown__link:hover{background-color:var(--ifm-dropdown-hover-background-color);color:var(--ifm-dropdown-link-color);text-decoration:none}.dropdown__link--active,.dropdown__link--active:hover{--ifm-dropdown-link-color:var(--ifm-link-color)}.dropdown>.navbar__link:after{border-color:currentcolor #0000;border-style:solid;border-width:.4em .4em 0;content:"";margin-left:.3em;position:relative;top:2px;transform:translateY(-50%)}.footer{background-color:var(--ifm-footer-background-color);color:var(--ifm-footer-color);padding:var(--ifm-footer-padding-vertical) var(--ifm-footer-padding-horizontal)}.footer--dark{--ifm-footer-background-color:#303846;--ifm-footer-color:var(--ifm-footer-link-color);--ifm-footer-link-color:var(--ifm-color-secondary);--ifm-footer-title-color:var(--ifm-color-white)}.footer__links{margin-bottom:1rem}.footer__link-item{color:var(--ifm-footer-link-color);line-height:2}.footer__link-item:hover{color:var(--ifm-footer-link-hover-color)}.footer__link-separator{margin:0 var(--ifm-footer-link-horizontal-spacing)}.footer__logo{margin-top:1rem;max-width:var(--ifm-footer-logo-max-width)}.footer__title{color:var(--ifm-footer-title-color);font:700 var(--ifm-h4-font-size)/var(--ifm-heading-line-height) var(--ifm-font-family-base);margin-bottom:var(--ifm-heading-margin-bottom)}.menu,.navbar__link{font-weight:var(--ifm-font-weight-semibold)}.docTag__6UZ span,.tagWithCount_h2kH span{line-height:1.2;color:var(--ifm-color-black)}.docItemContainer_Djhp article>:first-child,.docItemContainer_Djhp header+*,.footer__item{margin-top:0}.admonitionContent_S0QG>:last-child,.collapsibleContent_i85q>:last-child,.footer__items,.tabItem_Ymn6>:last-child{margin-bottom:0}.codeBlockStandalone_MEMb,[type=checkbox]{padding:0}.hero{align-items:center;background-color:var(--ifm-hero-background-color);color:var(--ifm-hero-text-color);display:flex;padding:4rem 2rem}.hero--primary{--ifm-hero-background-color:var(--ifm-color-primary);--ifm-hero-text-color:var(--ifm-font-color-base-inverse)}.hero--dark{--ifm-hero-background-color:#303846;--ifm-hero-text-color:var(--ifm-color-white)}.hero__title{font-size:3rem}.hero__subtitle{font-size:1.5rem}.menu__list{margin:0;padding-left:0}.menu__caret,.menu__link{padding:var(--ifm-menu-link-padding-vertical) var(--ifm-menu-link-padding-horizontal)}.menu__list .menu__list{flex:0 0 100%;margin-top:.25rem;padding-left:var(--ifm-menu-link-padding-horizontal)}.menu__list-item:not(:first-child){margin-top:.25rem}.menu__list-item--collapsed .menu__list{height:0;overflow:hidden}.details_lb9f[data-collapsed=false].isBrowser_bmU9>summary:before,.details_lb9f[open]:not(.isBrowser_bmU9)>summary:before,.menu__list-item--collapsed .menu__caret:before,.menu__list-item--collapsed .menu__link--sublist:after{transform:rotate(90deg)}.menu__list-item-collapsible{display:flex;flex-wrap:wrap;position:relative}.menu__caret:hover,.menu__link:hover,.menu__list-item-collapsible--active,.menu__list-item-collapsible:hover{background:var(--ifm-menu-color-background-hover)}.menu__list-item-collapsible .menu__link--active,.menu__list-item-collapsible .menu__link:hover{background:none!important}.menu__caret,.menu__link{align-items:center;display:flex}.menu__link{color:var(--ifm-menu-color);flex:1;line-height:1.25}.menu__link:hover{color:var(--ifm-menu-color);text-decoration:none}.menu__caret:before,.menu__link--sublist-caret:after{height:1.25rem;transform:rotate(180deg);transition:transform var(--ifm-transition-fast) linear;width:1.25rem;content:"";filter:var(--ifm-menu-link-sublist-icon-filter)}.menu__link--sublist-caret:after{background:var(--ifm-menu-link-sublist-icon) 50%/2rem 2rem;margin-left:auto;min-width:1.25rem}.menu__link--active,.menu__link--active:hover{color:var(--ifm-menu-color-active)}.navbar__brand,.navbar__link{color:var(--ifm-navbar-link-color)}.menu__link--active:not(.menu__link--sublist){background-color:var(--ifm-menu-color-background-active)}.menu__caret:before{background:var(--ifm-menu-link-sublist-icon) 50%/2rem 2rem}.navbar--dark,html[data-theme=dark]{--ifm-menu-link-sublist-icon-filter:invert(100%) sepia(94%) saturate(17%) hue-rotate(223deg) brightness(104%) contrast(98%)}.navbar{background-color:var(--ifm-navbar-background-color);box-shadow:var(--ifm-navbar-shadow);height:var(--ifm-navbar-height);padding:var(--ifm-navbar-padding-vertical) var(--ifm-navbar-padding-horizontal)}.docPageContainer_wNNk,.navbar,.navbar>.container,.navbar>.container-fluid{display:flex}.navbar--fixed-top{position:sticky;top:0;z-index:var(--ifm-z-index-fixed)}.navbar-sidebar,.navbar-sidebar__backdrop{bottom:0;opacity:0;position:fixed;transition-timing-function:ease-in-out;left:0;top:0}.navbar__inner{display:flex;flex-wrap:wrap;justify-content:space-between;width:100%}.navbar__brand{align-items:center;display:flex;margin-right:1rem;min-width:0}.navbar__brand:hover{color:var(--ifm-navbar-link-hover-color);text-decoration:none}.announcementBarContent_xLdY,.navbar__title{flex:1 1 auto}.navbar__toggle{display:none;margin-right:.5rem}.navbar__logo{flex:0 0 auto;height:2rem;margin-right:.5rem}.navbar__items{align-items:center;display:flex;flex:1;min-width:0}.navbar__items--center{flex:0 0 auto}.navbar__items--center .navbar__brand{margin:0}.navbar__items--center+.navbar__items--right{flex:1}.navbar__items--right{flex:0 0 auto;justify-content:flex-end}.navbar__items--right>:last-child{padding-right:0}.navbar__item{display:inline-block;padding:var(--ifm-navbar-item-padding-vertical) var(--ifm-navbar-item-padding-horizontal)}.navbar__link--active,.navbar__link:hover{color:var(--ifm-navbar-link-hover-color);text-decoration:none}.navbar--dark,.navbar--primary{--ifm-menu-color:var(--ifm-color-gray-300);--ifm-navbar-link-color:var(--ifm-color-gray-100);--ifm-navbar-search-input-background-color:#ffffff1a;--ifm-navbar-search-input-placeholder-color:#ffffff80;color:var(--ifm-color-white)}.navbar--dark{--ifm-navbar-background-color:#242526;--ifm-menu-color-background-active:#ffffff0d;--ifm-navbar-search-input-color:var(--ifm-color-white)}.navbar--primary{--ifm-navbar-background-color:var(--ifm-color-primary);--ifm-navbar-link-hover-color:var(--ifm-color-white);--ifm-menu-color-active:var(--ifm-color-white);--ifm-navbar-search-input-color:var(--ifm-color-emphasis-500)}.navbar__search-input{-webkit-appearance:none;appearance:none;background:var(--ifm-navbar-search-input-background-color) var(--ifm-navbar-search-input-icon) no-repeat .75rem center/1rem 1rem;border:none;border-radius:2rem;color:var(--ifm-navbar-search-input-color);cursor:text;display:inline-block;font-size:.9rem;height:2rem;padding:0 .5rem 0 2.25rem;width:12.5rem}.navbar__search-input::placeholder{color:var(--ifm-navbar-search-input-placeholder-color)}.navbar-sidebar{background-color:var(--ifm-navbar-background-color);box-shadow:var(--ifm-global-shadow-md);transform:translate3d(-100%,0,0);transition-duration:.25s;transition-property:opacity,visibility,transform;visibility:hidden;width:var(--ifm-navbar-sidebar-width)}.navbar-sidebar--show .navbar-sidebar,.navbar-sidebar__items{transform:translateZ(0)}.badge_Ba2I:hover .badgeToolTipTail_H9D_:after,.badge_Ba2I:hover .badgeTooltip_cWXP,.navbar-sidebar--show .navbar-sidebar,.navbar-sidebar--show .navbar-sidebar__backdrop{opacity:1;visibility:visible}.navbar-sidebar__backdrop{background-color:#0009;right:0;transition-duration:.1s;transition-property:opacity,visibility;visibility:hidden}.navbar-sidebar__brand{align-items:center;box-shadow:var(--ifm-navbar-shadow);display:flex;flex:1;height:var(--ifm-navbar-height);padding:var(--ifm-navbar-padding-vertical) var(--ifm-navbar-padding-horizontal)}.navbar-sidebar__items{display:flex;height:calc(100% - var(--ifm-navbar-height));transition:transform var(--ifm-transition-fast) ease-in-out}.navbar-sidebar__items--show-secondary{transform:translate3d(calc((var(--ifm-navbar-sidebar-width))*-1),0,0)}.navbar-sidebar__item{flex-shrink:0;padding:.5rem;width:calc(var(--ifm-navbar-sidebar-width))}.navbar-sidebar__back{background:var(--ifm-menu-color-background-active);font-size:15px;font-weight:var(--ifm-button-font-weight);margin:0 0 .2rem -.5rem;padding:.6rem 1.5rem;position:relative;text-align:left;top:-.5rem;width:calc(100% + 1rem)}.navbar-sidebar__close{display:flex;margin-left:auto}.pagination{column-gap:var(--ifm-pagination-page-spacing);display:flex;font-size:var(--ifm-pagination-font-size);padding-left:0}.pagination--sm{--ifm-pagination-font-size:0.8rem;--ifm-pagination-padding-horizontal:0.8rem;--ifm-pagination-padding-vertical:0.2rem}.pagination--lg{--ifm-pagination-font-size:1.2rem;--ifm-pagination-padding-horizontal:1.2rem;--ifm-pagination-padding-vertical:0.3rem}.pagination__item{display:inline-flex}.pagination__item>span{padding:var(--ifm-pagination-padding-vertical)}.pagination__item--active .pagination__link{color:var(--ifm-pagination-color-active)}.pagination__item--active .pagination__link,.pagination__item:not(.pagination__item--active):hover .pagination__link{background:var(--ifm-pagination-item-active-background)}.pagination__item--disabled,.pagination__item[disabled]{opacity:.25;pointer-events:none}.pagination__link{border-radius:var(--ifm-pagination-border-radius);color:var(--ifm-font-color-base);display:inline-block;padding:var(--ifm-pagination-padding-vertical) var(--ifm-pagination-padding-horizontal);transition:background var(--ifm-transition-fast) var(--ifm-transition-timing-default)}.pagination__link:hover,.sourceButton_sEho:focus,.sourceButton_sEho:hover{text-decoration:none}.pagination-nav{grid-gap:var(--ifm-spacing-horizontal);display:grid;gap:var(--ifm-spacing-horizontal);grid-template-columns:repeat(2,1fr)}.pagination-nav__link{border:1px solid var(--ifm-color-emphasis-300);border-radius:var(--ifm-pagination-nav-border-radius);display:block;height:100%;line-height:var(--ifm-heading-line-height);padding:var(--ifm-global-spacing);transition:border-color var(--ifm-transition-fast) var(--ifm-transition-timing-default)}.pagination-nav__link:hover{border-color:var(--ifm-pagination-nav-color-hover);text-decoration:none}.pagination-nav__link--next{grid-column:2/3;text-align:right}.pagination-nav__label{font-size:var(--ifm-h4-font-size);font-weight:var(--ifm-heading-font-weight);word-break:break-word}.pagination-nav__link--prev .pagination-nav__label:before{content:"« "}.pagination-nav__link--next .pagination-nav__label:after{content:" »"}.pagination-nav__sublabel{color:var(--ifm-color-content-secondary);font-size:var(--ifm-h5-font-size);font-weight:var(--ifm-font-weight-semibold);margin-bottom:.25rem}.pills__item,.tabs{font-weight:var(--ifm-font-weight-bold)}.pills{display:flex;gap:var(--ifm-pills-spacing);padding-left:0}.pills__item{border-radius:.5rem;cursor:pointer;display:inline-block;padding:.25rem 1rem;transition:background var(--ifm-transition-fast) var(--ifm-transition-timing-default)}.pills__item--active{color:var(--ifm-pills-color-active)}.pills__item--active,.pills__item:not(.pills__item--active):hover{background:var(--ifm-pills-color-background-active)}.pills--block{justify-content:stretch}.pills--block .pills__item{flex-grow:1;text-align:center}.tabs{color:var(--ifm-tabs-color);display:flex;margin-bottom:0;overflow-x:auto;padding-left:0}.tabs__item{border-bottom:3px solid #0000;border-radius:var(--ifm-global-radius);cursor:pointer;display:inline-flex;padding:var(--ifm-tabs-padding-vertical) var(--ifm-tabs-padding-horizontal);transition:background-color var(--ifm-transition-fast) var(--ifm-transition-timing-default)}.tabs__item--active{border-bottom-color:var(--ifm-tabs-color-active-border);border-bottom-left-radius:0;border-bottom-right-radius:0;color:var(--ifm-tabs-color-active)}.tabs__item:hover{background-color:var(--ifm-hover-overlay)}.tabs--block{justify-content:stretch}.tabs--block .tabs__item{flex-grow:1;justify-content:center}html[data-theme=dark]{--ifm-color-scheme:dark;--ifm-color-emphasis-0:var(--ifm-color-gray-1000);--ifm-color-emphasis-100:var(--ifm-color-gray-900);--ifm-color-emphasis-200:var(--ifm-color-gray-800);--ifm-color-emphasis-300:var(--ifm-color-gray-700);--ifm-color-emphasis-400:var(--ifm-color-gray-600);--ifm-color-emphasis-600:var(--ifm-color-gray-400);--ifm-color-emphasis-700:var(--ifm-color-gray-300);--ifm-color-emphasis-800:var(--ifm-color-gray-200);--ifm-color-emphasis-900:var(--ifm-color-gray-100);--ifm-color-emphasis-1000:var(--ifm-color-gray-0);--ifm-background-color:#1b1b1d;--ifm-background-surface-color:#242526;--ifm-hover-overlay:#ffffff0d;--ifm-color-content:#e3e3e3;--ifm-color-content-secondary:#fff;--ifm-breadcrumb-separator-filter:invert(64%) sepia(11%) saturate(0%) hue-rotate(149deg) brightness(99%) contrast(95%);--ifm-code-background:#ffffff1a;--ifm-scrollbar-track-background-color:#444;--ifm-scrollbar-thumb-background-color:#686868;--ifm-scrollbar-thumb-hover-background-color:#7a7a7a;--ifm-table-stripe-background:#ffffff12;--ifm-toc-border-color:var(--ifm-color-emphasis-200);--ifm-color-primary-contrast-background:#102445;--ifm-color-primary-contrast-foreground:#ebf2fc;--ifm-color-secondary-contrast-background:#474748;--ifm-color-secondary-contrast-foreground:#fdfdfe;--ifm-color-success-contrast-background:#003100;--ifm-color-success-contrast-foreground:#e6f6e6;--ifm-color-info-contrast-background:#193c47;--ifm-color-info-contrast-foreground:#eef9fd;--ifm-color-warning-contrast-background:#4d3800;--ifm-color-warning-contrast-foreground:#fff8e6;--ifm-color-danger-contrast-background:#4b1113;--ifm-color-danger-contrast-foreground:#ffebec}#nprogress .bar{background:var(--docusaurus-progress-bar-color);height:2px;left:0;position:fixed;top:0;width:100%;z-index:1031}#nprogress .peg{box-shadow:0 0 10px var(--docusaurus-progress-bar-color),0 0 5px var(--docusaurus-progress-bar-color);height:100%;opacity:1;position:absolute;right:0;transform:rotate(3deg) translateY(-4px);width:100px}.navbar__search{margin-left:1rem}#docusaurus-base-url-issue-banner-container,.docSidebarContainer_b6E3,.sidebarLogo_isFc,.themedImage_ToTc,[data-theme=dark] .lightToggleIcon_pyhR,[data-theme=light] .darkToggleIcon_wfgR,html[data-announcement-bar-initially-dismissed=true] .announcementBar_mb4j{display:none}.skipToContent_fXgn{background-color:var(--ifm-background-surface-color);color:var(--ifm-color-emphasis-900);left:100%;padding:calc(var(--ifm-global-spacing)/2) var(--ifm-global-spacing);position:fixed;top:1rem;z-index:calc(var(--ifm-z-index-fixed) + 1)}.skipToContent_fXgn:focus{box-shadow:var(--ifm-global-shadow-md);left:1rem}.closeButton_CVFx{line-height:0;padding:0}.content_knG7{font-size:85%;padding:5px 0;text-align:center}.content_knG7 a{color:inherit;text-decoration:underline}.announcementBar_mb4j{align-items:center;background-color:var(--ifm-color-white);border-bottom:1px solid var(--ifm-color-emphasis-100);color:var(--ifm-color-black);display:flex;height:var(--docusaurus-announcement-bar-height)}.announcementBarPlaceholder_vyr4{flex:0 0 10px}.announcementBarClose_gvF7{align-self:stretch;flex:0 0 30px}.toggle_vylO{height:2rem;width:2rem}.toggleButton_gllP{align-items:center;border-radius:50%;display:flex;height:100%;justify-content:center;transition:background var(--ifm-transition-fast);width:100%}.toggleButton_gllP:hover{background:var(--ifm-color-emphasis-200)}.toggleButtonDisabled_aARS{cursor:not-allowed}[data-theme=dark] .themedImage--dark_i4oU,[data-theme=light] .themedImage--light_HNdA{display:initial}.iconExternalLink_nPIU{margin-left:.3rem}.iconLanguage_nlXk{margin-right:5px;vertical-align:text-bottom}.navbarHideable_m1mJ{transition:transform var(--ifm-transition-fast) ease}.navbarHidden_jGov{transform:translate3d(0,calc(-100% - 2px),0)}.footerLogoLink_BH7S{opacity:.5;transition:opacity var(--ifm-transition-fast) var(--ifm-transition-timing-default)}.footerLogoLink_BH7S:hover,.hash-link:focus,:hover>.hash-link{opacity:1}.mainWrapper_z2l0{display:flex;flex:1 0 auto;flex-direction:column}.docusaurus-mt-lg{margin-top:3rem}#__docusaurus{display:flex;flex-direction:column;min-height:100%}.iconEdit_Z9Sw{margin-right:.3em;vertical-align:sub}.tag_zVej{border:1px solid var(--docusaurus-tag-list-border);transition:border var(--ifm-transition-fast)}.tag_zVej:hover{--docusaurus-tag-list-border:var(--ifm-link-color);text-decoration:none}.tagRegular_sFm0{border-radius:var(--ifm-global-radius);font-size:90%;padding:.2rem .5rem .3rem}.tagWithCount_h2kH{align-items:center;border-left:0;display:flex;padding:0 .5rem 0 1rem;position:relative}.tagWithCount_h2kH:after,.tagWithCount_h2kH:before{border:1px solid var(--docusaurus-tag-list-border);content:"";position:absolute;top:50%;transition:inherit}.tagWithCount_h2kH:before{border-bottom:0;border-right:0;height:1.18rem;right:100%;transform:translate(50%,-50%) rotate(-45deg);width:1.18rem}.tagWithCount_h2kH:after{border-radius:50%;height:.5rem;left:0;transform:translateY(-50%);width:.5rem}.tagWithCount_h2kH span{background:var(--ifm-color-secondary);border-radius:var(--ifm-global-radius);font-size:.7rem;margin-left:.3rem;padding:.1rem .4rem}.memberString_GwaU p,.tags_jXut{display:inline}.tag_QGVx{display:inline-block;margin:0 .4rem .5rem 0}.lastUpdated_vwxv{font-size:smaller;font-style:italic;margin-top:.2rem}.backToTopButton_sjWU{background-color:var(--ifm-color-emphasis-200);border-radius:50%;bottom:1.3rem;box-shadow:var(--ifm-global-shadow-lw);height:3rem;opacity:0;position:fixed;right:1.3rem;transform:scale(0);transition:all var(--ifm-transition-fast) var(--ifm-transition-timing-default);visibility:hidden;width:3rem;z-index:calc(var(--ifm-z-index-fixed) - 1)}.backToTopButton_sjWU:after{background-color:var(--ifm-color-emphasis-1000);content:" ";display:inline-block;height:100%;-webkit-mask:var(--ifm-menu-link-sublist-icon) 50%/2rem 2rem no-repeat;mask:var(--ifm-menu-link-sublist-icon) 50%/2rem 2rem no-repeat;width:100%}.backToTopButtonShow_xfvO{opacity:1;transform:scale(1);visibility:visible}[data-theme=dark]:root{--docusaurus-collapse-button-bg:#ffffff0d;--docusaurus-collapse-button-bg-hover:#ffffff1a}.collapseSidebarButton_PEFL{display:none;margin:0}.docMainContainer_HJE1,.docMainContainer_gTbr,.docPage_Dpn1,.docPage__5DB{display:flex;width:100%}.docsWrapper_BCFX{display:flex;flex:1 0 auto}[data-theme=dark],[data-theme=light]{--ifm-hero-background-color:#1f242b}.heroBanner_e1Bh{overflow:hidden;padding:4rem 0;position:relative;text-align:left}.buttons_VwD3{justify-content:center}.buttons_VwD3,.features_WS6B{align-items:center;display:flex}.features_WS6B{padding:2rem 0;width:100%}.feature_moa3{align-items:start;display:flex;justify-content:center;text-align:justify}.searchbox,.searchbox__input{box-sizing:border-box;display:inline-block}.feature_moa3:nth-of-type(2n){flex-direction:row-reverse}.featureImage_YrBe{max-height:100%;max-width:100%}.featureText_Nx12{max-width:50%;padding-top:70px}.algolia-docsearch-suggestion{border-bottom-color:#3a3dd1}.algolia-docsearch-suggestion--category-header{background-color:#4b54de}.algolia-docsearch-suggestion--highlight{color:#3a33d1}.algolia-docsearch-suggestion--category-header .algolia-docsearch-suggestion--highlight{background-color:#4d47d5}.aa-cursor .algolia-docsearch-suggestion--content{color:#272296}.aa-cursor .algolia-docsearch-suggestion{background:#ebebfb}.searchbox{height:32px!important;position:relative;visibility:visible!important;width:200px}.searchbox .algolia-autocomplete{display:block;height:100%;width:100%}.searchbox__wrapper{height:100%;position:relative;width:100%;z-index:999}.searchbox__input{-webkit-appearance:none;appearance:none;background:#fff!important;border:0;border-radius:16px;box-shadow:inset 0 0 0 1px #ccc;font-size:12px;height:100%;padding:0 26px 0 32px;transition:box-shadow .4s,background .4s;vertical-align:middle;white-space:normal;width:100%}.searchbox__input::-webkit-search-cancel-button,.searchbox__input::-webkit-search-decoration,.searchbox__input::-webkit-search-results-button,.searchbox__input::-webkit-search-results-decoration{display:none}.searchbox__input:hover{box-shadow:inset 0 0 0 1px #b3b3b3}.searchbox__input:active,.searchbox__input:focus{background:#fff;box-shadow:inset 0 0 0 1px #aaa;outline:0}.searchbox__input::placeholder{color:#aaa}.searchbox__submit{background-color:#458ee100;border:0;border-radius:16px 0 0 16px;height:100%;left:0;margin:0;padding:0;right:inherit;text-align:center;top:0;user-select:none;vertical-align:middle;width:32px}.searchbox__submit:before{content:"";display:inline-block;height:100%;margin-right:-4px;vertical-align:middle}.algolia-autocomplete .ds-dropdown-menu .ds-suggestion,.privateCheckboxLabel_Vmvs:hover,.searchbox__submit:active,.searchbox__submit:hover{cursor:pointer}.searchbox__submit svg{fill:#6d7e96;height:14px;vertical-align:middle;width:14px}.searchbox__reset{fill:#00000080;background:none;border:0;cursor:pointer;display:block;margin:0;padding:0;right:8px;top:8px;user-select:none}.divider_rE5g,.tocCollapsibleContent_vkbj>ul{border-top:1px solid var(--ifm-color-emphasis-300)}.searchbox__reset.hide{display:none}.searchbox__reset svg{display:block;height:8px;margin:4px;width:8px}.searchbox__input:valid~.searchbox__reset{animation-duration:.15s;animation-name:a;display:block}@keyframes a{0%{opacity:0;transform:translate3d(-20%,0,0)}to{opacity:1;transform:none}}.algolia-autocomplete .ds-dropdown-menu:before{background:#373940;border-radius:2px;border-right:1px solid #373940;border-top:1px solid #373940;content:"";display:block;height:14px;position:absolute;top:-7px;transform:rotate(-45deg);width:14px;z-index:1000}.algolia-autocomplete .ds-dropdown-menu{box-shadow:0 1px 0 0 #0003,0 2px 3px 0 #0000001a}.algolia-autocomplete .ds-dropdown-menu .ds-suggestions{position:relative;z-index:1000}.algolia-autocomplete .ds-dropdown-menu [class^=ds-dataset-]{background:#fff;border-radius:4px;overflow:auto;padding:0;position:relative}.algolia-autocomplete .algolia-docsearch-suggestion{display:block;overflow:hidden;padding:0;position:relative;text-decoration:none}.algolia-autocomplete .ds-cursor .algolia-docsearch-suggestion--wrapper{background:#f1f1f1;box-shadow:inset -2px 0 0 #61dafb}.algolia-autocomplete .algolia-docsearch-suggestion--highlight{background:#ffe564;padding:.1em .05em}.algolia-autocomplete .algolia-docsearch-suggestion--category-header .algolia-docsearch-suggestion--category-header-lvl0 .algolia-docsearch-suggestion--highlight,.algolia-autocomplete .algolia-docsearch-suggestion--category-header .algolia-docsearch-suggestion--category-header-lvl1 .algolia-docsearch-suggestion--highlight{background:inherit;color:inherit}.algolia-autocomplete .algolia-docsearch-suggestion--text .algolia-docsearch-suggestion--highlight{background:inherit;box-shadow:inset 0 -2px 0 0 #458ee1cc;color:inherit;padding:0 0 1px}.algolia-autocomplete .algolia-docsearch-suggestion--content{cursor:pointer;display:block;float:right;padding:5.33333px 0 5.33333px 10.66667px;position:relative;width:70%}.algolia-autocomplete .algolia-docsearch-suggestion--content:before{background:#ececec;content:"";display:block;height:100%;left:-1px;position:absolute;top:0;width:1px}.algolia-autocomplete .algolia-docsearch-suggestion--category-header{background-color:#373940;color:#fff;display:none;font-size:14px;font-weight:700;letter-spacing:.08em;margin:0;padding:5px 8px;position:relative;text-transform:uppercase}.algolia-autocomplete .algolia-docsearch-suggestion--wrapper{background-color:#fff;float:left;padding:8px 0 0;width:100%}.algolia-autocomplete .algolia-docsearch-suggestion--subcategory-column{word-wrap:break-word;color:#777;display:none;float:left;font-size:.9em;padding:5.33333px 10.66667px;position:relative;text-align:right;width:30%}.algolia-autocomplete .algolia-docsearch-suggestion--subcategory-column:before{background:#ececec;content:"";display:block;height:100%;position:absolute;right:0;top:0;width:1px}.algolia-autocomplete .algolia-docsearch-suggestion.algolia-docsearch-suggestion__main .algolia-docsearch-suggestion--category-header,.algolia-autocomplete .algolia-docsearch-suggestion.algolia-docsearch-suggestion__secondary{display:block}.algolia-autocomplete .algolia-docsearch-suggestion--no-results:before,.algolia-autocomplete .algolia-docsearch-suggestion--subcategory-inline{display:none}.algolia-autocomplete .algolia-docsearch-suggestion--subcategory-column .algolia-docsearch-suggestion--highlight{background-color:inherit;color:inherit}.algolia-autocomplete .algolia-docsearch-suggestion--title{color:#02060c;font-size:.9em;font-weight:700;margin-bottom:4px}.algolia-autocomplete .algolia-docsearch-suggestion--text{color:#63676d;display:block;font-size:.85em;line-height:1.2em;padding-right:2px}.algolia-autocomplete .algolia-docsearch-suggestion--no-results{background-color:#373940;font-size:1.2em;margin-top:-8px;padding:8px 0;text-align:center;width:100%}.algolia-autocomplete .algolia-docsearch-suggestion--no-results .algolia-docsearch-suggestion--text{color:#fff;margin-top:4px}.algolia-autocomplete .algolia-docsearch-suggestion code{background-color:#ebebeb;border:none;border-radius:3px;color:#222;font-family:source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace;font-size:90%;padding:1px 5px}.algolia-autocomplete .algolia-docsearch-suggestion code .algolia-docsearch-suggestion--highlight{background:none}.algolia-autocomplete .algolia-docsearch-suggestion.algolia-docsearch-suggestion__main .algolia-docsearch-suggestion--category-header{color:#fff;display:block}.algolia-autocomplete .algolia-docsearch-suggestion.algolia-docsearch-suggestion__secondary .algolia-docsearch-suggestion--subcategory-column,.tocCollapsibleContent_vkbj a{display:block}.algolia-autocomplete .algolia-docsearch-footer{background-color:#fff;float:right;font-size:0;height:30px;line-height:0;width:100%;z-index:2000}.algolia-autocomplete .algolia-docsearch-footer--logo{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 130 18'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath fill='url(%2523a)' d='M59.4.02h13.3a2.37 2.37 0 0 1 2.38 2.37V15.6a2.37 2.37 0 0 1-2.38 2.36H59.4a2.37 2.37 0 0 1-2.38-2.36V2.38A2.37 2.37 0 0 1 59.4.02z'/%3E%3Cpath fill='%2523FFF' d='M66.26 4.56c-2.82 0-5.1 2.27-5.1 5.08 0 2.8 2.28 5.07 5.1 5.07 2.8 0 5.1-2.26 5.1-5.07 0-2.8-2.28-5.07-5.1-5.07zm0 8.65c-2 0-3.6-1.6-3.6-3.56 0-1.97 1.6-3.58 3.6-3.58 1.98 0 3.6 1.6 3.6 3.58a3.58 3.58 0 0 1-3.6 3.57zm0-6.4v2.66c0 .07.08.13.15.1l2.4-1.24c.04-.02.06-.1.03-.14a2.96 2.96 0 0 0-2.46-1.5.1.1 0 0 0-.1.1zm-3.33-1.96-.3-.3a.78.78 0 0 0-1.12 0l-.36.36a.77.77 0 0 0 0 1.1l.3.3c.05.05.13.04.17 0 .2-.25.4-.5.6-.7.23-.23.46-.43.7-.6.07-.04.07-.1.03-.16zm5-.8V3.4a.78.78 0 0 0-.78-.78h-1.83a.78.78 0 0 0-.78.78v.63c0 .07.06.12.14.1a5.74 5.74 0 0 1 1.58-.22c.52 0 1.04.07 1.54.2a.1.1 0 0 0 .13-.1z'/%3E%3Cpath fill='%2523182359' d='M102.16 13.76c0 1.46-.37 2.52-1.12 3.2-.75.67-1.9 1-3.44 1-.56 0-1.74-.1-2.67-.3l.34-1.7c.78.17 1.82.2 2.36.2.86 0 1.48-.16 1.84-.5.37-.36.55-.88.55-1.57v-.35a6.37 6.37 0 0 1-.84.3 4.15 4.15 0 0 1-1.2.17 4.5 4.5 0 0 1-1.6-.28 3.38 3.38 0 0 1-1.26-.82 3.74 3.74 0 0 1-.8-1.35c-.2-.54-.3-1.5-.3-2.2 0-.67.1-1.5.3-2.06a3.92 3.92 0 0 1 .9-1.43 4.12 4.12 0 0 1 1.45-.92 5.3 5.3 0 0 1 1.94-.37c.7 0 1.35.1 1.97.2a15.86 15.86 0 0 1 1.6.33v8.46zm-5.95-4.2c0 .9.2 1.88.6 2.3.4.4.9.62 1.53.62.34 0 .66-.05.96-.15a2.75 2.75 0 0 0 .73-.33V6.7a8.53 8.53 0 0 0-1.42-.17c-.76-.02-1.36.3-1.77.8-.4.5-.62 1.4-.62 2.23zm16.13 0c0 .72-.1 1.26-.32 1.85a4.4 4.4 0 0 1-.9 1.53c-.38.42-.85.75-1.4.98-.54.24-1.4.37-1.8.37-.43 0-1.27-.13-1.8-.36a4.1 4.1 0 0 1-1.4-.97 4.5 4.5 0 0 1-.92-1.52 5.04 5.04 0 0 1-.33-1.84c0-.72.1-1.4.32-2 .22-.6.53-1.1.92-1.5.4-.43.86-.75 1.4-.98a4.55 4.55 0 0 1 1.78-.34 4.7 4.7 0 0 1 1.8.34c.54.23 1 .55 1.4.97.38.42.68.92.9 1.5.23.6.35 1.3.35 2zm-2.2 0c0-.92-.2-1.7-.6-2.22-.38-.54-.94-.8-1.64-.8-.72 0-1.27.26-1.67.8-.4.54-.58 1.3-.58 2.22 0 .93.2 1.56.6 2.1.38.54.94.8 1.64.8s1.25-.26 1.65-.8c.4-.55.6-1.17.6-2.1zm6.97 4.7c-3.5.02-3.5-2.8-3.5-3.27L113.57.92l2.15-.34v10c0 .25 0 1.87 1.37 1.88v1.8zm3.77 0h-2.15v-9.2l2.15-.33v9.54zM119.8 3.74c.7 0 1.3-.58 1.3-1.3 0-.7-.58-1.3-1.3-1.3-.73 0-1.3.6-1.3 1.3 0 .72.58 1.3 1.3 1.3zm6.43 1c.7 0 1.3.1 1.78.27.5.18.88.42 1.17.73.28.3.5.74.6 1.18.13.46.2.95.2 1.5v5.47a25.24 25.24 0 0 1-1.5.25c-.67.1-1.42.15-2.25.15a6.83 6.83 0 0 1-1.52-.16 3.2 3.2 0 0 1-1.18-.5 2.46 2.46 0 0 1-.76-.9c-.18-.37-.27-.9-.27-1.44 0-.52.1-.85.3-1.2.2-.37.48-.67.83-.9a3.6 3.6 0 0 1 1.23-.5 7.07 7.07 0 0 1 2.2-.1l.83.16V8.4c0-.25-.03-.48-.1-.7a1.5 1.5 0 0 0-.3-.58c-.15-.18-.34-.3-.58-.4a2.54 2.54 0 0 0-.92-.17c-.5 0-.94.06-1.35.13-.4.08-.75.16-1 .25l-.27-1.74c.27-.1.67-.18 1.2-.28a9.34 9.34 0 0 1 1.65-.14zm.18 7.74c.66 0 1.15-.04 1.5-.1V10.2a5.1 5.1 0 0 0-2-.1c-.23.03-.45.1-.64.2a1.17 1.17 0 0 0-.47.38c-.13.17-.18.26-.18.52 0 .5.17.8.5.98.32.2.74.3 1.3.3zM84.1 4.8c.72 0 1.3.08 1.8.26.48.17.87.42 1.15.73.3.3.5.72.6 1.17.14.45.2.94.2 1.47v5.48a25.24 25.24 0 0 1-1.5.26c-.67.1-1.42.14-2.25.14a6.83 6.83 0 0 1-1.52-.16 3.2 3.2 0 0 1-1.18-.5 2.46 2.46 0 0 1-.76-.9c-.18-.38-.27-.9-.27-1.44 0-.53.1-.86.3-1.22.2-.36.5-.65.84-.88a3.6 3.6 0 0 1 1.24-.5 7.07 7.07 0 0 1 2.2-.1c.26.03.54.08.84.15v-.35c0-.24-.03-.48-.1-.7a1.5 1.5 0 0 0-.3-.58c-.15-.17-.34-.3-.58-.4a2.54 2.54 0 0 0-.9-.15c-.5 0-.96.05-1.37.12-.4.07-.75.15-1 .24l-.26-1.75c.27-.08.67-.17 1.18-.26a8.9 8.9 0 0 1 1.66-.15zm.2 7.73c.65 0 1.14-.04 1.48-.1v-2.17a5.1 5.1 0 0 0-1.98-.1c-.24.03-.46.1-.65.18a1.17 1.17 0 0 0-.47.4c-.12.17-.17.26-.17.52 0 .5.18.8.5.98.32.2.75.3 1.3.3zm8.68 1.74c-3.5 0-3.5-2.82-3.5-3.28L89.45.92 91.6.6v10c0 .25 0 1.87 1.38 1.88v1.8z'/%3E%3Cpath fill='%25231D3657' d='M5.03 11.03c0 .7-.26 1.24-.76 1.64-.5.4-1.2.6-2.1.6-.88 0-1.6-.14-2.17-.42v-1.2c.36.16.74.3 1.14.38.4.1.78.15 1.13.15.5 0 .88-.1 1.12-.3a.94.94 0 0 0 .35-.77.98.98 0 0 0-.33-.74c-.22-.2-.68-.44-1.37-.72-.72-.3-1.22-.62-1.52-1C.23 8.27.1 7.82.1 7.3c0-.65.22-1.17.7-1.55.46-.37 1.08-.56 1.86-.56.76 0 1.5.16 2.25.48l-.4 1.05c-.7-.3-1.32-.44-1.87-.44-.4 0-.73.08-.94.26a.9.9 0 0 0-.33.72c0 .2.04.38.12.52.08.15.22.3.42.4.2.14.55.3 1.06.52.58.24 1 .47 1.27.67.27.2.47.44.6.7.12.26.18.57.18.92zM9 13.27c-.92 0-1.64-.27-2.16-.8-.52-.55-.78-1.3-.78-2.24 0-.97.24-1.73.72-2.3.5-.54 1.15-.82 2-.82.78 0 1.4.25 1.85.72.46.48.7 1.14.7 1.97v.67H7.35c0 .58.17 1.02.46 1.33.3.3.7.47 1.24.47.36 0 .68-.04.98-.1a5.1 5.1 0 0 0 .98-.33v1.02a3.87 3.87 0 0 1-.94.32 5.72 5.72 0 0 1-1.08.1zm-.22-5.2c-.4 0-.73.12-.97.38s-.37.62-.42 1.1h2.7c0-.48-.13-.85-.36-1.1-.23-.26-.54-.38-.94-.38zm7.7 5.1-.26-.84h-.05c-.28.36-.57.6-.86.74-.28.13-.65.2-1.1.2-.6 0-1.05-.16-1.38-.48-.32-.32-.5-.77-.5-1.34 0-.62.24-1.08.7-1.4.45-.3 1.14-.47 2.07-.5l1.02-.03V9.2c0-.37-.1-.65-.27-.84-.17-.2-.45-.28-.82-.28-.3 0-.6.04-.88.13a6.68 6.68 0 0 0-.8.33l-.4-.9a4.4 4.4 0 0 1 1.05-.4 4.86 4.86 0 0 1 1.08-.12c.76 0 1.33.18 1.7.5.4.33.6.85.6 1.56v4h-.9zm-1.9-.87c.47 0 .83-.13 1.1-.38.3-.26.43-.62.43-1.08v-.52l-.76.03c-.6.03-1.02.13-1.3.3s-.4.45-.4.82c0 .26.08.47.24.6.16.16.4.23.7.23zm7.57-5.2c.25 0 .46.03.62.06l-.12 1.18a2.38 2.38 0 0 0-.56-.06c-.5 0-.92.16-1.24.5-.3.32-.47.75-.47 1.27v3.1h-1.27V7.23h1l.16 1.05h.05c.2-.36.45-.64.77-.85a1.83 1.83 0 0 1 1.02-.3zm4.12 6.17c-.9 0-1.58-.27-2.05-.8-.47-.52-.7-1.27-.7-2.25 0-1 .24-1.77.73-2.3.5-.54 1.2-.8 2.12-.8.63 0 1.2.1 1.7.34l-.4 1c-.52-.2-.96-.3-1.3-.3-1.04 0-1.55.68-1.55 2.05 0 .67.13 1.17.38 1.5.26.34.64.5 1.13.5a3.23 3.23 0 0 0 1.6-.4v1.1a2.53 2.53 0 0 1-.73.28 4.36 4.36 0 0 1-.93.08zm8.28-.1h-1.27V9.5c0-.45-.1-.8-.28-1.02-.18-.23-.47-.34-.88-.34-.53 0-.9.16-1.16.48-.25.3-.38.85-.38 1.6v2.94h-1.26V4.8h1.26v2.12c0 .34-.02.7-.06 1.1h.08a1.76 1.76 0 0 1 .72-.67c.3-.16.66-.24 1.07-.24 1.43 0 2.15.74 2.15 2.2v3.86zM42.2 7.1c.74 0 1.32.28 1.73.82.4.53.62 1.3.62 2.26 0 .97-.2 1.73-.63 2.27-.42.54-1 .82-1.75.82s-1.33-.27-1.75-.8h-.08l-.23.7h-.94V4.8h1.26v2l-.02.64-.03.56h.05c.4-.6 1-.9 1.78-.9zm-.33 1.04c-.5 0-.88.15-1.1.45-.22.3-.34.8-.35 1.5v.08c0 .72.12 1.24.35 1.57.23.32.6.48 1.12.48.44 0 .78-.17 1-.53.24-.35.36-.87.36-1.53 0-1.35-.47-2.03-1.4-2.03zm3.24-.92h1.4l1.2 3.37c.18.47.3.92.36 1.34h.04l.18-.72 1.37-4H51l-2.53 6.73c-.46 1.23-1.23 1.85-2.3 1.85-.3 0-.56-.03-.83-.1v-1c.2.05.4.08.65.08.6 0 1.03-.36 1.28-1.06l.22-.56-2.4-5.94z'/%3E%3C/g%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;background-size:100%;display:block;height:100%;margin-left:auto;margin-right:5px;overflow:hidden;text-indent:-9000px;width:110px}.tocCollapsibleButton_TO0P{align-items:center;display:flex;font-size:inherit;justify-content:space-between;padding:.4rem .8rem;width:100%}.tocCollapsibleButton_TO0P:after{background:var(--ifm-menu-link-sublist-icon) 50% 50%/2rem 2rem no-repeat;content:"";filter:var(--ifm-menu-link-sublist-icon-filter);height:1.25rem;transform:rotate(180deg);transition:transform var(--ifm-transition-fast);width:1.25rem}.privateCheckboxControl_Ov8U:hover,.sourceButtonText_Vh0m:focus,.sourceButtonText_Vh0m:hover{background:var(--ifm-menu-color-background-active)}.tocCollapsibleButtonExpanded_MG3E:after,.tocCollapsibleExpanded_sAul{transform:none}.tocCollapsible_ETCw{background-color:var(--ifm-menu-color-background-active);border-radius:var(--ifm-global-radius);margin:1rem 0}.tocCollapsibleContent_vkbj>ul{border-left:none;font-size:15px;padding:.2rem 0}.tocCollapsibleContent_vkbj ul li{margin:.4rem .8rem}.anchorWithStickyNavbar_LWe7{scroll-margin-top:calc(var(--ifm-navbar-height) + .5rem)}.anchorWithHideOnScrollNavbar_WYt5{scroll-margin-top:.5rem}.hash-link{opacity:0;padding-left:.5rem;transition:opacity var(--ifm-transition-fast);-webkit-user-select:none;user-select:none}.hash-link:before{content:"#"}.tableOfContents_bqdL{max-height:calc(100vh - var(--ifm-navbar-height) - 2rem);overflow-y:auto;position:sticky;top:calc(var(--ifm-navbar-height) + 1rem)}[data-theme=dark]{--op-color:#bd7b7b}.navbar-sidebar__backdrop{width:100vw}.divider_rE5g{margin:1rem 0}.inlineDescription_G7Er{color:#9093a2;font-size:1rem;margin-left:10px}.memberString_GwaU{font-size:1.3rem;margin-bottom:2rem;margin-left:1rem}.inset_uKQm{margin-left:3rem}.docPage_Dpn1 .member_J0w1 h3{display:inline-block;font-family:inherit;font-size:var(--ifm-h2-font-size);margin:0 .25rem 1rem 0}.docPage_Dpn1 .member_J0w1 h3 code{display:"inline"}.privateToggle_lmfE{grid-gap:.25em;color:var(--color);display:grid;float:right;font-size:1.25rem;grid-template-columns:min-content auto}.privateCheckboxContainer_psRa{align-items:center;display:grid;grid-template-areas:"c"}.privateCheckboxContainer_psRa>*{grid-area:c}.privateCheckboxInternal_IKP2{height:1em;opacity:0;width:1em}.privateToggle_lmfE:focus-within{outline:var(--ifm-font-color-base) auto 1px}.privateCheckboxInternal_IKP2:checked+.privateCheckboxControl_Ov8U svg{transform:scale(1)}.privateCheckboxControl_Ov8U{border:1px solid var(--ifm-font-color-base);border-radius:.25em;display:inline-grid;height:1em;isolation:isolate;width:1em}.privateCheckboxControl_Ov8U svg{transform:scale(0);transform-origin:center;transition:transform .1s ease-in 25ms}.privateCheckboxControl_Ov8U:hover{cursor:pointer}.privateCheckboxLabel_Vmvs{font-size:1rem}.repositoryDetailsContainer_BPdw{float:right}.sourceButton_sEho{display:inline-block;margin-left:.5rem}.sourceButtonText_Vh0m{align-items:center;background:var(--ifm-menu-color-background);border:1px solid var(--ifm-font-color-base);border-radius:30px;color:var(--ifm-font-color-base);display:flex;font-family:var(--ifm-font-family-monospace);font-weight:var(--ifm-heading-font-weight);height:24px;justify-content:center;width:40px}.member_J0w1 .releaseVersion_EonW{color:var(--ifm-color-emphasis-500);display:inline-block}.memberString_GwaU code,.member_J0w1 h3 code{background:none;border:none;display:inline-block;padding:0}.member_J0w1 code.op_lSLc{color:var(--op-color)}.member_J0w1 code.blue_P4bS,.token.function,.token.function-name{color:#82aaff}.member_J0w1 code.green_DgR4{color:#10ac84}.member_J0w1 code.purple_ieR2,.token.atrule,.token.id,.token.important,.token.keyword,.token.selector{color:#c792ea}.member_J0w1 code.yellow_QJap,.token.builtin,.token.class,.token.class-name,.token.color,.token.constant,.token.hexcode,.token.property,.token.symbol{color:#ffcb6b}.member_J0w1 code.orange_DrV2,.token.boolean,.token.number,.token.unit,.token.url{color:#f78c6c}.member_J0w1 code.cyan_dehK,.token.entity,.token.operator,.token.punctuation,.token.url{color:#89ddff}.member_J0w1 code.red_AwJO{color:#ff5874}.errorTable_jfN8{display:table;width:100%}.errorTable_jfN8 td,.errorTable_jfN8 th,.errorTable_jfN8 tr{border:none}.errorTable_jfN8 tbody tr:nth-child(odd){background:var(--ifm-table-stripe-background)}.errorTable_jfN8 tbody tr:nth-child(2n){background:var(--ifm-table-background)}pre[class*=language-][class*=language-]{background:#292d3e;margin:1rem 0;padding:1rem}code[class*=language-][class*=language-]{display:block;white-space:pre-wrap;width:100%}.docPage_Dpn1 h2{font-size:2.3rem}.docItemContainer_Wv98{margin:0 auto;padding:0 .5rem}.docItemContainer_Wv98 img{display:block;margin:0 auto}.docTitle_mZRt{display:inline-block;font-size:3rem;margin-bottom:calc(var(--ifm-leading-desktop)*var(--ifm-leading))}.docSidebarContainer_o_re{border-right:1px solid var(--ifm-toc-border-color);-webkit-clip-path:inset(0);clip-path:inset(0);display:block;margin-top:calc(var(--ifm-navbar-height)*-1);transition:width var(--ifm-transition-fast) ease;width:var(--doc-sidebar-width);will-change:width}.docSidebarContainerHidden_NK0V{cursor:pointer;width:var(--doc-sidebar-hidden-width)}.luaClassTags_EipM{display:inline-block;margin-left:2rem;margin-top:-.5rem}.badge_Ba2I{display:inline-block;font-size:1.2rem;font-weight:300;margin:0 .5rem;white-space:nowrap}.badge_Ba2I svg{height:1.8rem;vertical-align:middle;width:1.8rem}.badge_Ba2I .badgeTooltip_cWXP{background-color:#555;border-radius:6px;color:#fff;font-size:.9rem;left:0;margin:0 auto;opacity:0;padding:4px 5px;position:absolute;right:0;text-align:center;transform:translateY(-105%);transition:opacity .3s;visibility:hidden;white-space:pre-wrap;width:285px;z-index:1}.badge_Ba2I .badgeToolTipTail_H9D_{height:0;position:relative;width:0}.badge_Ba2I .badgeToolTipTail_H9D_:after{border:9px solid #0000;border-top-color:#555;content:"";left:6%;opacity:0;position:absolute;top:-27%;transition:opacity .35s;visibility:hidden}.docTag__6UZ{align-items:center;border-style:solid;border-width:1px;border-left:0;display:inline-block;margin:0 .8rem;padding:0 .5rem 0 1rem;position:relative;transition:border var(--ifm-transition-fast)}.docTag__6UZ:after,.docTag__6UZ:before{border-color:inherit;border-style:solid;content:"";position:absolute;top:50%;transition:inherit}.docTag__6UZ:before{border-width:1px;border-bottom:0;border-right:0;height:1.18rem;right:100%;transform:translate(50%,-50%) rotate(-45deg);width:1.18rem}.docTag__6UZ:after{border-radius:50%;border-width:1px;height:.5rem;left:0;transform:translateY(-50%);width:.5rem}.docTag__6UZ span{background:var(--ifm-color-secondary);border-radius:var(--ifm-global-radius);font-size:.7rem;margin-left:.3rem;padding:.1rem .4rem}.admonition h5{margin-bottom:8px;margin-top:0}.admonition-icon,.admonitionIcon_kALy{display:inline-block;margin-right:.4em;vertical-align:middle}.admonition-icon svg{stroke-width:0;stroke:var(--ifm-alert-foreground-color);fill:var(--ifm-alert-foreground-color);display:inline-block;height:22px;width:22px}.admonition,.admonition_LlT9{margin-bottom:1em}code[class*=language-],pre[class*=language-]{word-wrap:normal;background:none;border-radius:.3em;color:#eff;font-family:Consolas,Monaco,Andale Mono,Ubuntu Mono,monospace;font-size:1em;-webkit-hyphens:none;hyphens:none;line-height:1.5;tab-size:4;text-align:left;white-space:pre;word-break:normal;word-spacing:normal}pre[class*=language-]{margin:.5em 0;overflow:auto;padding:2em}:not(pre)>code[class*=language-],pre[class*=language-]{background:#263238}.buttonGroup__atx button,.codeBlockContainer_Ckt0{background:var(--prism-background-color);color:var(--prism-color)}:not(pre)>code[class*=language-]{padding:.1em;white-space:normal}.token.script.language-javascript{color:#eff}.token.block-comment,.token.cdata,.token.comment,.token.doctype,.token.prolog{color:#546e7a}.token.attr-name,.token.deleted,.token.namespace{color:#bb80b3}.token.attr-value,.token.attribute,.token.char,.token.inserted,.token.pseudo-class,.token.pseudo-element,.token.regex,.token.string,.token.variable{color:#c3e88d}.token.tag{color:#f07178}.token.deleted,.token.parameter{color:#ff5370}.token.bold,.token.important{font-weight:700}.token.entity{cursor:help}.codeBlockContainer_Ckt0{border-radius:var(--ifm-code-border-radius);box-shadow:var(--ifm-global-shadow-lw);margin-bottom:var(--ifm-leading)}.codeBlockContent_biex{border-radius:inherit;direction:ltr;position:relative}.codeBlockTitle_Ktv7{border-bottom:1px solid var(--ifm-color-emphasis-300);border-top-left-radius:inherit;border-top-right-radius:inherit;font-size:var(--ifm-code-font-size);font-weight:500;padding:.75rem var(--ifm-pre-padding)}.codeBlock_bY9V{--ifm-pre-background:var(--prism-background-color);margin:0;padding:0}.codeBlockTitle_Ktv7+.codeBlockContent_biex .codeBlock_bY9V{border-top-left-radius:0;border-top-right-radius:0}.codeBlockLines_e6Vv{float:left;font:inherit;min-width:100%;padding:var(--ifm-pre-padding)}.codeBlockLinesWithNumbering_o6Pm{display:table;padding:var(--ifm-pre-padding) 0}.buttonGroup__atx{column-gap:.2rem;display:flex;position:absolute;right:calc(var(--ifm-pre-padding)/2);top:calc(var(--ifm-pre-padding)/2)}.buttonGroup__atx button{align-items:center;border:1px solid var(--ifm-color-emphasis-300);border-radius:var(--ifm-global-radius);display:flex;line-height:0;opacity:0;padding:.4rem;transition:opacity .2s ease-in-out}.buttonGroup__atx button:focus-visible,.buttonGroup__atx button:hover{opacity:1!important}.theme-code-block:hover .buttonGroup__atx button{opacity:.4}:where(:root){--docusaurus-highlighted-code-line-bg:#484d5b}:where([data-theme=dark]){--docusaurus-highlighted-code-line-bg:#646464}.theme-code-block-highlighted-line{background-color:var(--docusaurus-highlighted-code-line-bg);display:block;margin:0 calc(var(--ifm-pre-padding)*-1);padding:0 var(--ifm-pre-padding)}.codeLine_lJS_{counter-increment:a;display:table-row}.codeLineNumber_Tfdd{background:var(--ifm-pre-background);display:table-cell;left:0;overflow-wrap:normal;padding:0 var(--ifm-pre-padding);position:sticky;text-align:right;width:1%}.codeLineNumber_Tfdd:before{content:counter(a);opacity:.4}.codeLineContent_feaV{padding-right:var(--ifm-pre-padding)}.theme-code-block:hover .copyButtonCopied_obH4{opacity:1!important}.copyButtonIcons_eSgA{height:1.125rem;position:relative;width:1.125rem}.copyButtonIcon_y97N,.copyButtonSuccessIcon_LjdS{fill:currentColor;height:inherit;left:0;opacity:inherit;position:absolute;top:0;transition:.15s;width:inherit}.copyButtonSuccessIcon_LjdS{color:#00d600;left:50%;opacity:0;top:50%;transform:translate(-50%,-50%) scale(.33)}.copyButtonCopied_obH4 .copyButtonIcon_y97N{opacity:0;transform:scale(.33)}.copyButtonCopied_obH4 .copyButtonSuccessIcon_LjdS{opacity:1;transform:translate(-50%,-50%) scale(1);transition-delay:75ms}.wordWrapButtonIcon_Bwma{height:1.2rem;width:1.2rem}.details_lb9f{--docusaurus-details-summary-arrow-size:0.38rem;--docusaurus-details-transition:transform 200ms ease;--docusaurus-details-decoration-color:grey}.details_lb9f>summary{cursor:pointer;padding-left:1rem;position:relative}.details_lb9f>summary::-webkit-details-marker{display:none}.details_lb9f>summary:before{border-color:#0000 #0000 #0000 var(--docusaurus-details-decoration-color);border-style:solid;border-width:var(--docusaurus-details-summary-arrow-size);content:"";left:0;position:absolute;top:.45rem;transform:rotate(0);transform-origin:calc(var(--docusaurus-details-summary-arrow-size)/2) 50%;transition:var(--docusaurus-details-transition)}.collapsibleContent_i85q{border-top:1px solid var(--docusaurus-details-decoration-color);margin-top:1rem;padding-top:1rem}.details_b_Ee{--docusaurus-details-decoration-color:var(--ifm-alert-border-color);--docusaurus-details-transition:transform var(--ifm-transition-fast) ease;border:1px solid var(--ifm-alert-border-color);margin:0 0 var(--ifm-spacing-vertical)}:not(.containsTaskList_mC6p>li)>.containsTaskList_mC6p{padding-left:0}.img_ev3q{height:auto}.admonitionHeading_tbUL{font:var(--ifm-heading-font-weight) var(--ifm-h5-font-size)/var(--ifm-heading-line-height) var(--ifm-heading-font-family);margin-bottom:.3rem}.admonitionHeading_tbUL code{text-transform:none}.admonitionIcon_kALy svg{fill:var(--ifm-alert-foreground-color);display:inline-block;height:1.6em;width:1.6em}.breadcrumbHomeIcon_YNFT{height:1.1rem;position:relative;top:1px;vertical-align:top;width:1.1rem}.breadcrumbsContainer_Z_bl{--ifm-breadcrumb-size-multiplier:0.8;margin-bottom:.8rem}@media (min-width:601px){.algolia-autocomplete.algolia-autocomplete-right .ds-dropdown-menu{left:inherit!important;right:0!important}.algolia-autocomplete.algolia-autocomplete-right .ds-dropdown-menu:before{right:48px}.algolia-autocomplete .ds-dropdown-menu{background:#0000;border:none;border-radius:4px;height:auto;margin:6px 0 0;max-width:600px;min-width:500px;padding:0;position:relative;text-align:left;top:-6px;z-index:999}}@media (min-width:768px){.algolia-docsearch-suggestion{border-bottom-color:#7671df}.algolia-docsearch-suggestion--subcategory-column{border-right-color:#7671df;color:#4e4726}}@media (min-width:997px){.collapseSidebarButton_PEFL,.expandButton_m80_{background-color:var(--docusaurus-collapse-button-bg)}:root{--docusaurus-announcement-bar-height:30px}.announcementBarClose_gvF7,.announcementBarPlaceholder_vyr4{flex-basis:50px}.searchBox_ZlJk{padding:var(--ifm-navbar-item-padding-vertical) var(--ifm-navbar-item-padding-horizontal)}.lastUpdated_vwxv{text-align:right}.collapseSidebarButton_PEFL{border:1px solid var(--ifm-toc-border-color);border-radius:0;bottom:0;display:block!important;height:40px;position:sticky}.collapseSidebarButtonIcon_kv0_{margin-top:4px;transform:rotate(180deg)}.expandButtonIcon_BlDH,.expandSidebarButtonIcon_pCsX,[dir=rtl] .collapseSidebarButtonIcon_kv0_{transform:rotate(0)}.collapseSidebarButton_PEFL:focus,.collapseSidebarButton_PEFL:hover,.expandButton_m80_:focus,.expandButton_m80_:hover{background-color:var(--docusaurus-collapse-button-bg-hover)}.menuHtmlItem_M9Kj{padding:var(--ifm-menu-link-padding-vertical) var(--ifm-menu-link-padding-horizontal)}.menu_SIkG{flex-grow:1;padding:.5rem}@supports (scrollbar-gutter:stable){.menu_SIkG{padding:.5rem 0 .5rem .5rem;scrollbar-gutter:stable}}.menuWithAnnouncementBar_GW3s{margin-bottom:var(--docusaurus-announcement-bar-height)}.sidebar_njMd{display:flex;flex-direction:column;height:100%;padding-top:var(--ifm-navbar-height);width:var(--doc-sidebar-width)}.sidebarWithHideableNavbar_wUlq{padding-top:0}.sidebarHidden_VK0M{opacity:0;visibility:hidden}.sidebarLogo_isFc{align-items:center;color:inherit!important;display:flex!important;margin:0 var(--ifm-navbar-padding-horizontal);max-height:var(--ifm-navbar-height);min-height:var(--ifm-navbar-height);text-decoration:none!important}.sidebarLogo_isFc img{height:2rem;margin-right:.5rem}.expandButton_m80_{align-items:center;display:flex;height:100%;justify-content:center;position:absolute;right:0;top:0;transition:background-color var(--ifm-transition-fast) ease;width:100%}.collapsedDocSidebar_m0D2,.sidebarViewport_Xe31{height:100%;max-height:100vh;position:sticky;top:0}.docSidebarContainer_b6E3,.docSidebarContainer_o_re{border-right:1px solid var(--ifm-toc-border-color);margin-top:calc(var(--ifm-navbar-height)*-1);transition:width var(--ifm-transition-fast) ease;will-change:width}[dir=rtl] .expandButtonIcon_BlDH,html[dir=rtl] .expandSidebarButtonIcon_pCsX{transform:rotate(180deg)}.docSidebarContainer_b6E3{-webkit-clip-path:inset(0);clip-path:inset(0);display:block;width:var(--doc-sidebar-width)}.docSidebarContainerHidden_b3ry{cursor:pointer;width:var(--doc-sidebar-hidden-width)}.docMainContainer_HJE1,.docMainContainer_gTbr{flex-grow:1;max-width:calc(100% - var(--doc-sidebar-width))}.docMainContainerEnhanced_Uz_u,.docMainContainerEnhanced_ujlH{max-width:calc(100% - var(--doc-sidebar-hidden-width))}.docItemWrapperEnhanced_czyv{max-width:calc(var(--ifm-container-width) + var(--doc-sidebar-width))!important}.tocMobile_ITEo,.tocMobile_oUs_{display:none}.docSidebarContainer_o_re{-webkit-clip-path:inset(0);clip-path:inset(0);width:var(--doc-sidebar-width)}.docSidebarContainerHidden_NK0V{cursor:pointer;width:var(--doc-sidebar-hidden-width)!important}.docItemCol_MU3C,.docItemCol_VOVn{max-width:75%!important}.collapsedDocSidebar_m0D2{align-items:center;display:flex;justify-content:center;transition:background-color var(--ifm-transition-fast) ease}.collapsedDocSidebar_m0D2:focus,.collapsedDocSidebar_m0D2:hover{background-color:var(--ifm-color-emphasis-200)}html[data-theme=dark] .collapsedDocSidebar_m0D2:focus,html[data-theme=dark] .collapsedDocSidebar_m0D2:hover{background-color:var(--collapse-button-bg-color-dark)}.docItemWrapperEnhanced_CKOS{max-width:calc(var(--ifm-container-width) + var(--doc-sidebar-width))}pre[class*=language-][class*=language-]{padding:1.5rem}.badge_Ba2I .badgeTooltip_cWXP{left:auto;margin:none;right:auto}}@media (min-width:1440px){.container{max-width:var(--ifm-container-width-xl)}}@media screen and (max-width:997px){.docSidebarContainer_o_re{display:none}}@media (max-width:996px){.col{--ifm-col-width:100%;flex-basis:var(--ifm-col-width);margin-left:0}.footer{--ifm-footer-padding-horizontal:0}.colorModeToggle_DEke,.footer__link-separator,.navbar__item,.tableOfContents_bqdL{display:none}.footer__col{margin-bottom:calc(var(--ifm-spacing-vertical)*3)}.footer__link-item{display:block}.hero{padding-left:0;padding-right:0}.navbar>.container,.navbar>.container-fluid{padding:0}.navbar__toggle{display:inherit}.navbar__search-input{width:9rem}.pills--block,.tabs--block{flex-direction:column}.searchBox_ZlJk{position:absolute;right:var(--ifm-navbar-padding-horizontal)}.docItemContainer_F8PC{padding:0 .3rem}.docSidebarContainer_o_re{margin-top:0}}@media screen and (max-width:966px){.heroBanner_e1Bh{padding:2rem}}@media (max-width:600px){.algolia-autocomplete .ds-dropdown-menu{display:block;left:auto!important;max-height:calc(100% - 5rem);max-width:calc(100% - 2rem);position:fixed!important;right:1rem!important;top:50px!important;width:600px;z-index:100}.algolia-autocomplete .ds-dropdown-menu:before{right:6rem}}@media (max-width:576px){.markdown h1:first-child{--ifm-h1-font-size:2rem}.markdown>h2{--ifm-h2-font-size:1.5rem}.markdown>h3{--ifm-h3-font-size:1.25rem}}@media (hover:hover){.backToTopButton_sjWU:hover{background-color:var(--ifm-color-emphasis-300)}}@media (pointer:fine){.thin-scrollbar{scrollbar-width:thin}.thin-scrollbar::-webkit-scrollbar{height:var(--ifm-scrollbar-size);width:var(--ifm-scrollbar-size)}.thin-scrollbar::-webkit-scrollbar-track{background:var(--ifm-scrollbar-track-background-color);border-radius:10px}.thin-scrollbar::-webkit-scrollbar-thumb{background:var(--ifm-scrollbar-thumb-background-color);border-radius:10px}.thin-scrollbar::-webkit-scrollbar-thumb:hover{background:var(--ifm-scrollbar-thumb-hover-background-color)}}@media print{.announcementBar_mb4j,.footer,.menu,.navbar,.pagination-nav,.table-of-contents,.tocMobile_ITEo{display:none}.tabs{page-break-inside:avoid}.codeBlockLines_e6Vv{white-space:pre-wrap}} \ No newline at end of file diff --git a/assets/js/17896441.3a9cb538.js b/assets/js/17896441.3a9cb538.js deleted file mode 100644 index bb8d70c..0000000 --- a/assets/js/17896441.3a9cb538.js +++ /dev/null @@ -1 +0,0 @@ -(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[918],{3905:(e,t,n)=>{"use strict";n.d(t,{Zo:()=>d,kt:()=>f});var a=n(67294);function o(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function r(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,a)}return n}function l(e){for(var t=1;t=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);for(a=0;a=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}var s=a.createContext({}),i=function(e){var t=a.useContext(s),n=t;return e&&(n="function"==typeof e?e(t):l(l({},t),e)),n},d=function(e){var t=i(e.components);return a.createElement(s.Provider,{value:t},e.children)},m="mdxType",u={inlineCode:"code",wrapper:function(e){var t=e.children;return a.createElement(a.Fragment,{},t)}},p=a.forwardRef((function(e,t){var n=e.components,o=e.mdxType,r=e.originalType,s=e.parentName,d=c(e,["components","mdxType","originalType","parentName"]),m=i(n),p=o,f=m["".concat(s,".").concat(p)]||m[p]||u[p]||r;return n?a.createElement(f,l(l({ref:t},d),{},{components:n})):a.createElement(f,l({ref:t},d))}));function f(e,t){var n=arguments,o=t&&t.mdxType;if("string"==typeof e||o){var r=n.length,l=new Array(r);l[0]=p;var c={};for(var s in t)hasOwnProperty.call(t,s)&&(c[s]=t[s]);c.originalType=e,c[m]="string"==typeof e?e:o,l[1]=c;for(var i=2;i{"use strict";n.r(t),n.d(t,{default:()=>st});var a=n(67294),o=n(1944),r=n(902);const l=a.createContext(null);function c(e){let{children:t,content:n}=e;const o=function(e){return(0,a.useMemo)((()=>({metadata:e.metadata,frontMatter:e.frontMatter,assets:e.assets,contentTitle:e.contentTitle,toc:e.toc})),[e])}(n);return a.createElement(l.Provider,{value:o},t)}function s(){const e=(0,a.useContext)(l);if(null===e)throw new r.i6("DocProvider");return e}function i(){const{metadata:e,frontMatter:t,assets:n}=s();return a.createElement(o.d,{title:e.title,description:e.description,keywords:t.keywords,image:n.image??t.image})}var d=n(86010),m=n(87524),u=n(87462),p=n(95999),f=n(39960);function h(e){const{permalink:t,title:n,subLabel:o,isNext:r}=e;return a.createElement(f.Z,{className:(0,d.Z)("pagination-nav__link",r?"pagination-nav__link--next":"pagination-nav__link--prev"),to:t},o&&a.createElement("div",{className:"pagination-nav__sublabel"},o),a.createElement("div",{className:"pagination-nav__label"},n))}function g(e){const{previous:t,next:n}=e;return a.createElement("nav",{className:"pagination-nav docusaurus-mt-lg","aria-label":(0,p.I)({id:"theme.docs.paginator.navAriaLabel",message:"Docs pages navigation",description:"The ARIA label for the docs pagination"})},t&&a.createElement(h,(0,u.Z)({},t,{subLabel:a.createElement(p.Z,{id:"theme.docs.paginator.previous",description:"The label used to navigate to the previous doc"},"Previous")})),n&&a.createElement(h,(0,u.Z)({},n,{subLabel:a.createElement(p.Z,{id:"theme.docs.paginator.next",description:"The label used to navigate to the next doc"},"Next"),isNext:!0})))}function b(){const{metadata:e}=s();return a.createElement(g,{previous:e.previous,next:e.next})}var v=n(52263),E=n(94104),y=n(35281),k=n(60373),N=n(74477);const C={unreleased:function(e){let{siteTitle:t,versionMetadata:n}=e;return a.createElement(p.Z,{id:"theme.docs.versions.unreleasedVersionLabel",description:"The label used to tell the user that he's browsing an unreleased doc version",values:{siteTitle:t,versionLabel:a.createElement("b",null,n.label)}},"This is unreleased documentation for {siteTitle} {versionLabel} version.")},unmaintained:function(e){let{siteTitle:t,versionMetadata:n}=e;return a.createElement(p.Z,{id:"theme.docs.versions.unmaintainedVersionLabel",description:"The label used to tell the user that he's browsing an unmaintained doc version",values:{siteTitle:t,versionLabel:a.createElement("b",null,n.label)}},"This is documentation for {siteTitle} {versionLabel}, which is no longer actively maintained.")}};function L(e){const t=C[e.versionMetadata.banner];return a.createElement(t,e)}function T(e){let{versionLabel:t,to:n,onClick:o}=e;return a.createElement(p.Z,{id:"theme.docs.versions.latestVersionSuggestionLabel",description:"The label used to tell the user to check the latest version",values:{versionLabel:t,latestVersionLink:a.createElement("b",null,a.createElement(f.Z,{to:n,onClick:o},a.createElement(p.Z,{id:"theme.docs.versions.latestVersionLinkLabel",description:"The label used for the latest version suggestion link label"},"latest version")))}},"For up-to-date documentation, see the {latestVersionLink} ({versionLabel}).")}function Z(e){let{className:t,versionMetadata:n}=e;const{siteConfig:{title:o}}=(0,v.Z)(),{pluginId:r}=(0,E.gA)({failfast:!0}),{savePreferredVersionName:l}=(0,k.J)(r),{latestDocSuggestion:c,latestVersionSuggestion:s}=(0,E.Jo)(r),i=c??(m=s).docs.find((e=>e.id===m.mainDocId));var m;return a.createElement("div",{className:(0,d.Z)(t,y.k.docs.docVersionBanner,"alert alert--warning margin-bottom--md"),role:"alert"},a.createElement("div",null,a.createElement(L,{siteTitle:o,versionMetadata:n})),a.createElement("div",{className:"margin-top--md"},a.createElement(T,{versionLabel:s.label,to:i.path,onClick:()=>l(s.name)})))}function _(e){let{className:t}=e;const n=(0,N.E)();return n.banner?a.createElement(Z,{className:t,versionMetadata:n}):null}function w(e){let{className:t}=e;const n=(0,N.E)();return n.badge?a.createElement("span",{className:(0,d.Z)(t,y.k.docs.docVersionBadge,"badge badge--secondary")},a.createElement(p.Z,{id:"theme.docs.versionBadge.label",values:{versionLabel:n.label}},"Version: {versionLabel}")):null}function B(e){let{lastUpdatedAt:t,formattedLastUpdatedAt:n}=e;return a.createElement(p.Z,{id:"theme.lastUpdated.atDate",description:"The words used to describe on which date a page has been last updated",values:{date:a.createElement("b",null,a.createElement("time",{dateTime:new Date(1e3*t).toISOString()},n))}}," on {date}")}function x(e){let{lastUpdatedBy:t}=e;return a.createElement(p.Z,{id:"theme.lastUpdated.byUser",description:"The words used to describe by who the page has been last updated",values:{user:a.createElement("b",null,t)}}," by {user}")}function O(e){let{lastUpdatedAt:t,formattedLastUpdatedAt:n,lastUpdatedBy:o}=e;return a.createElement("span",{className:y.k.common.lastUpdated},a.createElement(p.Z,{id:"theme.lastUpdated.lastUpdatedAtBy",description:"The sentence used to display when a page has been last updated, and by who",values:{atDate:t&&n?a.createElement(B,{lastUpdatedAt:t,formattedLastUpdatedAt:n}):"",byUser:o?a.createElement(x,{lastUpdatedBy:o}):""}},"Last updated{atDate}{byUser}"),!1)}const H={iconEdit:"iconEdit_Z9Sw"};function A(e){let{className:t,...n}=e;return a.createElement("svg",(0,u.Z)({fill:"currentColor",height:"20",width:"20",viewBox:"0 0 40 40",className:(0,d.Z)(H.iconEdit,t),"aria-hidden":"true"},n),a.createElement("g",null,a.createElement("path",{d:"m34.5 11.7l-3 3.1-6.3-6.3 3.1-3q0.5-0.5 1.2-0.5t1.1 0.5l3.9 3.9q0.5 0.4 0.5 1.1t-0.5 1.2z m-29.5 17.1l18.4-18.5 6.3 6.3-18.4 18.4h-6.3v-6.2z"})))}function j(e){let{editUrl:t}=e;return a.createElement("a",{href:t,target:"_blank",rel:"noreferrer noopener",className:y.k.common.editThisPage},a.createElement(A,null),a.createElement(p.Z,{id:"theme.common.editThisPage",description:"The link label to edit the current page"},"Edit this page"))}const I={tag:"tag_zVej",tagRegular:"tagRegular_sFm0",tagWithCount:"tagWithCount_h2kH"};function S(e){let{permalink:t,label:n,count:o}=e;return a.createElement(f.Z,{href:t,className:(0,d.Z)(I.tag,o?I.tagWithCount:I.tagRegular)},n,o&&a.createElement("span",null,o))}const M={tags:"tags_jXut",tag:"tag_QGVx"};function P(e){let{tags:t}=e;return a.createElement(a.Fragment,null,a.createElement("b",null,a.createElement(p.Z,{id:"theme.tags.tagsListLabel",description:"The label alongside a tag list"},"Tags:")),a.createElement("ul",{className:(0,d.Z)(M.tags,"padding--none","margin-left--sm")},t.map((e=>{let{label:t,permalink:n}=e;return a.createElement("li",{key:n,className:M.tag},a.createElement(S,{label:t,permalink:n}))}))))}const U={lastUpdated:"lastUpdated_vwxv"};function z(e){return a.createElement("div",{className:(0,d.Z)(y.k.docs.docFooterTagsRow,"row margin-bottom--sm")},a.createElement("div",{className:"col"},a.createElement(P,e)))}function V(e){let{editUrl:t,lastUpdatedAt:n,lastUpdatedBy:o,formattedLastUpdatedAt:r}=e;return a.createElement("div",{className:(0,d.Z)(y.k.docs.docFooterEditMetaRow,"row")},a.createElement("div",{className:"col"},t&&a.createElement(j,{editUrl:t})),a.createElement("div",{className:(0,d.Z)("col",U.lastUpdated)},(n||o)&&a.createElement(O,{lastUpdatedAt:n,formattedLastUpdatedAt:r,lastUpdatedBy:o})))}function D(){const{metadata:e}=s(),{editUrl:t,lastUpdatedAt:n,formattedLastUpdatedAt:o,lastUpdatedBy:r,tags:l}=e,c=l.length>0,i=!!(t||n||r);return c||i?a.createElement("footer",{className:(0,d.Z)(y.k.docs.docFooter,"docusaurus-mt-lg")},c&&a.createElement(z,{tags:l}),i&&a.createElement(V,{editUrl:t,lastUpdatedAt:n,lastUpdatedBy:r,formattedLastUpdatedAt:o})):null}var R=n(69286);const W={tocMobile:"tocMobile_ITEo"};function $(){const{toc:e,frontMatter:t}=s();return a.createElement(R.Z,{toc:e,minHeadingLevel:t.toc_min_heading_level,maxHeadingLevel:t.toc_max_heading_level,className:(0,d.Z)(y.k.docs.docTocMobile,W.tocMobile)})}var F=n(39407);function q(){const{toc:e,frontMatter:t}=s();return a.createElement(F.Z,{toc:e,minHeadingLevel:t.toc_min_heading_level,maxHeadingLevel:t.toc_max_heading_level,className:y.k.docs.docTocDesktop})}var G=n(92503),Y=n(3905),J=n(35742);var Q=n(72389),X=n(92949),K=n(86668);function ee(){const{prism:e}=(0,K.L)(),{colorMode:t}=(0,X.I)(),n=e.theme,a=e.darkTheme||n;return"dark"===t?a:n}var te=n(87594),ne=n.n(te);const ae=/title=(?["'])(?.*?)\1/,oe=/\{(?<range>[\d,-]+)\}/,re={js:{start:"\\/\\/",end:""},jsBlock:{start:"\\/\\*",end:"\\*\\/"},jsx:{start:"\\{\\s*\\/\\*",end:"\\*\\/\\s*\\}"},bash:{start:"#",end:""},html:{start:"\x3c!--",end:"--\x3e"}};function le(e,t){const n=e.map((e=>{const{start:n,end:a}=re[e];return`(?:${n}\\s*(${t.flatMap((e=>[e.line,e.block?.start,e.block?.end].filter(Boolean))).join("|")})\\s*${a})`})).join("|");return new RegExp(`^\\s*(?:${n})\\s*$`)}function ce(e,t){let n=e.replace(/\n$/,"");const{language:a,magicComments:o,metastring:r}=t;if(r&&oe.test(r)){const e=r.match(oe).groups.range;if(0===o.length)throw new Error(`A highlight range has been given in code block's metastring (\`\`\` ${r}), but no magic comment config is available. Docusaurus applies the first magic comment entry's className for metastring ranges.`);const t=o[0].className,a=ne()(e).filter((e=>e>0)).map((e=>[e-1,[t]]));return{lineClassNames:Object.fromEntries(a),code:n}}if(void 0===a)return{lineClassNames:{},code:n};const l=function(e,t){switch(e){case"js":case"javascript":case"ts":case"typescript":return le(["js","jsBlock"],t);case"jsx":case"tsx":return le(["js","jsBlock","jsx"],t);case"html":return le(["js","jsBlock","html"],t);case"python":case"py":case"bash":return le(["bash"],t);case"markdown":case"md":return le(["html","jsx","bash"],t);default:return le(Object.keys(re),t)}}(a,o),c=n.split("\n"),s=Object.fromEntries(o.map((e=>[e.className,{start:0,range:""}]))),i=Object.fromEntries(o.filter((e=>e.line)).map((e=>{let{className:t,line:n}=e;return[n,t]}))),d=Object.fromEntries(o.filter((e=>e.block)).map((e=>{let{className:t,block:n}=e;return[n.start,t]}))),m=Object.fromEntries(o.filter((e=>e.block)).map((e=>{let{className:t,block:n}=e;return[n.end,t]})));for(let p=0;p<c.length;){const e=c[p].match(l);if(!e){p+=1;continue}const t=e.slice(1).find((e=>void 0!==e));i[t]?s[i[t]].range+=`${p},`:d[t]?s[d[t]].start=p:m[t]&&(s[m[t]].range+=`${s[m[t]].start}-${p-1},`),c.splice(p,1)}n=c.join("\n");const u={};return Object.entries(s).forEach((e=>{let[t,{range:n}]=e;ne()(n).forEach((e=>{u[e]??=[],u[e].push(t)}))})),{lineClassNames:u,code:n}}const se={codeBlockContainer:"codeBlockContainer_Ckt0"};function ie(e){let{as:t,...n}=e;const o=function(e){const t={color:"--prism-color",backgroundColor:"--prism-background-color"},n={};return Object.entries(e.plain).forEach((e=>{let[a,o]=e;const r=t[a];r&&"string"==typeof o&&(n[r]=o)})),n}(ee());return a.createElement(t,(0,u.Z)({},n,{style:o,className:(0,d.Z)(n.className,se.codeBlockContainer,y.k.common.codeBlock)}))}const de={codeBlockContent:"codeBlockContent_biex",codeBlockTitle:"codeBlockTitle_Ktv7",codeBlock:"codeBlock_bY9V",codeBlockStandalone:"codeBlockStandalone_MEMb",codeBlockLines:"codeBlockLines_e6Vv",codeBlockLinesWithNumbering:"codeBlockLinesWithNumbering_o6Pm",buttonGroup:"buttonGroup__atx"};function me(e){let{children:t,className:n}=e;return a.createElement(ie,{as:"pre",tabIndex:0,className:(0,d.Z)(de.codeBlockStandalone,"thin-scrollbar",n)},a.createElement("code",{className:de.codeBlockLines},t))}const ue={attributes:!0,characterData:!0,childList:!0,subtree:!0};function pe(e,t){const[n,o]=(0,a.useState)(),l=(0,a.useCallback)((()=>{o(e.current?.closest("[role=tabpanel][hidden]"))}),[e,o]);(0,a.useEffect)((()=>{l()}),[l]),function(e,t,n){void 0===n&&(n=ue);const o=(0,r.zX)(t),l=(0,r.Ql)(n);(0,a.useEffect)((()=>{const t=new MutationObserver(o);return e&&t.observe(e,l),()=>t.disconnect()}),[e,o,l])}(n,(e=>{e.forEach((e=>{"attributes"===e.type&&"hidden"===e.attributeName&&(t(),l())}))}),{attributes:!0,characterData:!1,childList:!1,subtree:!1})}const fe={plain:{backgroundColor:"#2a2734",color:"#9a86fd"},styles:[{types:["comment","prolog","doctype","cdata","punctuation"],style:{color:"#6c6783"}},{types:["namespace"],style:{opacity:.7}},{types:["tag","operator","number"],style:{color:"#e09142"}},{types:["property","function"],style:{color:"#9a86fd"}},{types:["tag-id","selector","atrule-id"],style:{color:"#eeebff"}},{types:["attr-name"],style:{color:"#c4b9fe"}},{types:["boolean","string","entity","url","attr-value","keyword","control","directive","unit","statement","regex","atrule","placeholder","variable"],style:{color:"#ffcc99"}},{types:["deleted"],style:{textDecorationLine:"line-through"}},{types:["inserted"],style:{textDecorationLine:"underline"}},{types:["italic"],style:{fontStyle:"italic"}},{types:["important","bold"],style:{fontWeight:"bold"}},{types:["important"],style:{color:"#c4b9fe"}}]};var he={Prism:n(87410).Z,theme:fe};function ge(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function be(){return be=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(e[a]=n[a])}return e},be.apply(this,arguments)}var ve=/\r\n|\r|\n/,Ee=function(e){0===e.length?e.push({types:["plain"],content:"\n",empty:!0}):1===e.length&&""===e[0].content&&(e[0].content="\n",e[0].empty=!0)},ye=function(e,t){var n=e.length;return n>0&&e[n-1]===t?e:e.concat(t)},ke=function(e,t){var n=e.plain,a=Object.create(null),o=e.styles.reduce((function(e,n){var a=n.languages,o=n.style;return a&&!a.includes(t)||n.types.forEach((function(t){var n=be({},e[t],o);e[t]=n})),e}),a);return o.root=n,o.plain=be({},n,{backgroundColor:null}),o};function Ne(e,t){var n={};for(var a in e)Object.prototype.hasOwnProperty.call(e,a)&&-1===t.indexOf(a)&&(n[a]=e[a]);return n}const Ce=function(e){function t(){for(var t=this,n=[],a=arguments.length;a--;)n[a]=arguments[a];e.apply(this,n),ge(this,"getThemeDict",(function(e){if(void 0!==t.themeDict&&e.theme===t.prevTheme&&e.language===t.prevLanguage)return t.themeDict;t.prevTheme=e.theme,t.prevLanguage=e.language;var n=e.theme?ke(e.theme,e.language):void 0;return t.themeDict=n})),ge(this,"getLineProps",(function(e){var n=e.key,a=e.className,o=e.style,r=be({},Ne(e,["key","className","style","line"]),{className:"token-line",style:void 0,key:void 0}),l=t.getThemeDict(t.props);return void 0!==l&&(r.style=l.plain),void 0!==o&&(r.style=void 0!==r.style?be({},r.style,o):o),void 0!==n&&(r.key=n),a&&(r.className+=" "+a),r})),ge(this,"getStyleForToken",(function(e){var n=e.types,a=e.empty,o=n.length,r=t.getThemeDict(t.props);if(void 0!==r){if(1===o&&"plain"===n[0])return a?{display:"inline-block"}:void 0;if(1===o&&!a)return r[n[0]];var l=a?{display:"inline-block"}:{},c=n.map((function(e){return r[e]}));return Object.assign.apply(Object,[l].concat(c))}})),ge(this,"getTokenProps",(function(e){var n=e.key,a=e.className,o=e.style,r=e.token,l=be({},Ne(e,["key","className","style","token"]),{className:"token "+r.types.join(" "),children:r.content,style:t.getStyleForToken(r),key:void 0});return void 0!==o&&(l.style=void 0!==l.style?be({},l.style,o):o),void 0!==n&&(l.key=n),a&&(l.className+=" "+a),l})),ge(this,"tokenize",(function(e,t,n,a){var o={code:t,grammar:n,language:a,tokens:[]};e.hooks.run("before-tokenize",o);var r=o.tokens=e.tokenize(o.code,o.grammar,o.language);return e.hooks.run("after-tokenize",o),r}))}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.render=function(){var e=this.props,t=e.Prism,n=e.language,a=e.code,o=e.children,r=this.getThemeDict(this.props),l=t.languages[n];return o({tokens:function(e){for(var t=[[]],n=[e],a=[0],o=[e.length],r=0,l=0,c=[],s=[c];l>-1;){for(;(r=a[l]++)<o[l];){var i=void 0,d=t[l],m=n[l][r];if("string"==typeof m?(d=l>0?d:["plain"],i=m):(d=ye(d,m.type),m.alias&&(d=ye(d,m.alias)),i=m.content),"string"==typeof i){var u=i.split(ve),p=u.length;c.push({types:d,content:u[0]});for(var f=1;f<p;f++)Ee(c),s.push(c=[]),c.push({types:d,content:u[f]})}else l++,t.push(d),n.push(i),a.push(0),o.push(i.length)}l--,t.pop(),n.pop(),a.pop(),o.pop()}return Ee(c),s}(void 0!==l?this.tokenize(t,a,l,n):[a]),className:"prism-code language-"+n,style:void 0!==r?r.root:{},getLineProps:this.getLineProps,getTokenProps:this.getTokenProps})},t}(a.Component),Le={codeLine:"codeLine_lJS_",codeLineNumber:"codeLineNumber_Tfdd",codeLineContent:"codeLineContent_feaV"};function Te(e){let{line:t,classNames:n,showLineNumbers:o,getLineProps:r,getTokenProps:l}=e;1===t.length&&"\n"===t[0].content&&(t[0].content="");const c=r({line:t,className:(0,d.Z)(n,o&&Le.codeLine)}),s=t.map(((e,t)=>a.createElement("span",(0,u.Z)({key:t},l({token:e,key:t})))));return a.createElement("span",c,o?a.createElement(a.Fragment,null,a.createElement("span",{className:Le.codeLineNumber}),a.createElement("span",{className:Le.codeLineContent},s)):s,a.createElement("br",null))}const Ze={copyButtonCopied:"copyButtonCopied_obH4",copyButtonIcons:"copyButtonIcons_eSgA",copyButtonIcon:"copyButtonIcon_y97N",copyButtonSuccessIcon:"copyButtonSuccessIcon_LjdS"};function _e(e){let{code:t,className:n}=e;const[o,r]=(0,a.useState)(!1),l=(0,a.useRef)(void 0),c=(0,a.useCallback)((()=>{!function(e,{target:t=document.body}={}){const n=document.createElement("textarea"),a=document.activeElement;n.value=e,n.setAttribute("readonly",""),n.style.contain="strict",n.style.position="absolute",n.style.left="-9999px",n.style.fontSize="12pt";const o=document.getSelection();let r=!1;o.rangeCount>0&&(r=o.getRangeAt(0)),t.append(n),n.select(),n.selectionStart=0,n.selectionEnd=e.length;let l=!1;try{l=document.execCommand("copy")}catch{}n.remove(),r&&(o.removeAllRanges(),o.addRange(r)),a&&a.focus()}(t),r(!0),l.current=window.setTimeout((()=>{r(!1)}),1e3)}),[t]);return(0,a.useEffect)((()=>()=>window.clearTimeout(l.current)),[]),a.createElement("button",{type:"button","aria-label":o?(0,p.I)({id:"theme.CodeBlock.copied",message:"Copied",description:"The copied button label on code blocks"}):(0,p.I)({id:"theme.CodeBlock.copyButtonAriaLabel",message:"Copy code to clipboard",description:"The ARIA label for copy code blocks button"}),title:(0,p.I)({id:"theme.CodeBlock.copy",message:"Copy",description:"The copy button label on code blocks"}),className:(0,d.Z)("clean-btn",n,Ze.copyButton,o&&Ze.copyButtonCopied),onClick:c},a.createElement("span",{className:Ze.copyButtonIcons,"aria-hidden":"true"},a.createElement("svg",{className:Ze.copyButtonIcon,viewBox:"0 0 24 24"},a.createElement("path",{d:"M19,21H8V7H19M19,5H8A2,2 0 0,0 6,7V21A2,2 0 0,0 8,23H19A2,2 0 0,0 21,21V7A2,2 0 0,0 19,5M16,1H4A2,2 0 0,0 2,3V17H4V3H16V1Z"})),a.createElement("svg",{className:Ze.copyButtonSuccessIcon,viewBox:"0 0 24 24"},a.createElement("path",{d:"M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z"}))))}const we={wordWrapButtonIcon:"wordWrapButtonIcon_Bwma",wordWrapButtonEnabled:"wordWrapButtonEnabled_EoeP"};function Be(e){let{className:t,onClick:n,isEnabled:o}=e;const r=(0,p.I)({id:"theme.CodeBlock.wordWrapToggle",message:"Toggle word wrap",description:"The title attribute for toggle word wrapping button of code block lines"});return a.createElement("button",{type:"button",onClick:n,className:(0,d.Z)("clean-btn",t,o&&we.wordWrapButtonEnabled),"aria-label":r,title:r},a.createElement("svg",{className:we.wordWrapButtonIcon,viewBox:"0 0 24 24","aria-hidden":"true"},a.createElement("path",{fill:"currentColor",d:"M4 19h6v-2H4v2zM20 5H4v2h16V5zm-3 6H4v2h13.25c1.1 0 2 .9 2 2s-.9 2-2 2H15v-2l-3 3l3 3v-2h2c2.21 0 4-1.79 4-4s-1.79-4-4-4z"})))}function xe(e){let{children:t,className:n="",metastring:o,title:r,showLineNumbers:l,language:c}=e;const{prism:{defaultLanguage:s,magicComments:i}}=(0,K.L)(),m=c??function(e){const t=e.split(" ").find((e=>e.startsWith("language-")));return t?.replace(/language-/,"")}(n)??s,p=ee(),f=function(){const[e,t]=(0,a.useState)(!1),[n,o]=(0,a.useState)(!1),r=(0,a.useRef)(null),l=(0,a.useCallback)((()=>{const n=r.current.querySelector("code");e?n.removeAttribute("style"):(n.style.whiteSpace="pre-wrap",n.style.overflowWrap="anywhere"),t((e=>!e))}),[r,e]),c=(0,a.useCallback)((()=>{const{scrollWidth:e,clientWidth:t}=r.current,n=e>t||r.current.querySelector("code").hasAttribute("style");o(n)}),[r]);return pe(r,c),(0,a.useEffect)((()=>{c()}),[e,c]),(0,a.useEffect)((()=>(window.addEventListener("resize",c,{passive:!0}),()=>{window.removeEventListener("resize",c)})),[c]),{codeBlockRef:r,isEnabled:e,isCodeScrollable:n,toggle:l}}(),h=function(e){return e?.match(ae)?.groups.title??""}(o)||r,{lineClassNames:g,code:b}=ce(t,{metastring:o,language:m,magicComments:i}),v=l??function(e){return Boolean(e?.includes("showLineNumbers"))}(o);return a.createElement(ie,{as:"div",className:(0,d.Z)(n,m&&!n.includes(`language-${m}`)&&`language-${m}`)},h&&a.createElement("div",{className:de.codeBlockTitle},h),a.createElement("div",{className:de.codeBlockContent},a.createElement(Ce,(0,u.Z)({},he,{theme:p,code:b,language:m??"text"}),(e=>{let{className:t,tokens:n,getLineProps:o,getTokenProps:r}=e;return a.createElement("pre",{tabIndex:0,ref:f.codeBlockRef,className:(0,d.Z)(t,de.codeBlock,"thin-scrollbar")},a.createElement("code",{className:(0,d.Z)(de.codeBlockLines,v&&de.codeBlockLinesWithNumbering)},n.map(((e,t)=>a.createElement(Te,{key:t,line:e,getLineProps:o,getTokenProps:r,classNames:g[t],showLineNumbers:v})))))})),a.createElement("div",{className:de.buttonGroup},(f.isEnabled||f.isCodeScrollable)&&a.createElement(Be,{className:de.codeButton,onClick:()=>f.toggle(),isEnabled:f.isEnabled}),a.createElement(_e,{className:de.codeButton,code:b}))))}function Oe(e){let{children:t,...n}=e;const o=(0,Q.Z)(),r=function(e){return a.Children.toArray(e).some((e=>(0,a.isValidElement)(e)))?e:Array.isArray(e)?e.join(""):e}(t),l="string"==typeof r?xe:me;return a.createElement(l,(0,u.Z)({key:String(o)},n),r)}var He=n(86043);const Ae={details:"details_lb9f",isBrowser:"isBrowser_bmU9",collapsibleContent:"collapsibleContent_i85q"};function je(e){return!!e&&("SUMMARY"===e.tagName||je(e.parentElement))}function Ie(e,t){return!!e&&(e===t||Ie(e.parentElement,t))}function Se(e){let{summary:t,children:n,...o}=e;const r=(0,Q.Z)(),l=(0,a.useRef)(null),{collapsed:c,setCollapsed:s}=(0,He.u)({initialState:!o.open}),[i,m]=(0,a.useState)(o.open);return a.createElement("details",(0,u.Z)({},o,{ref:l,open:i,"data-collapsed":c,className:(0,d.Z)(Ae.details,r&&Ae.isBrowser,o.className),onMouseDown:e=>{je(e.target)&&e.detail>1&&e.preventDefault()},onClick:e=>{e.stopPropagation();const t=e.target;je(t)&&Ie(t,l.current)&&(e.preventDefault(),c?(s(!1),m(!0)):s(!0))}}),t??a.createElement("summary",null,"Details"),a.createElement(He.z,{lazy:!1,collapsed:c,disableSSRStyle:!0,onCollapseTransitionEnd:e=>{s(e),m(!e)}},a.createElement("div",{className:Ae.collapsibleContent},n)))}const Me={details:"details_b_Ee"},Pe="alert alert--info";function Ue(e){let{...t}=e;return a.createElement(Se,(0,u.Z)({},t,{className:(0,d.Z)(Pe,Me.details,t.className)}))}function ze(e){return a.createElement(G.Z,e)}const Ve={containsTaskList:"containsTaskList_mC6p"};const De={img:"img_ev3q"};const Re={admonition:"admonition_LlT9",admonitionHeading:"admonitionHeading_tbUL",admonitionIcon:"admonitionIcon_kALy",admonitionContent:"admonitionContent_S0QG"};const We={note:{infimaClassName:"secondary",iconComponent:function(){return a.createElement("svg",{viewBox:"0 0 14 16"},a.createElement("path",{fillRule:"evenodd",d:"M6.3 5.69a.942.942 0 0 1-.28-.7c0-.28.09-.52.28-.7.19-.18.42-.28.7-.28.28 0 .52.09.7.28.18.19.28.42.28.7 0 .28-.09.52-.28.7a1 1 0 0 1-.7.3c-.28 0-.52-.11-.7-.3zM8 7.99c-.02-.25-.11-.48-.31-.69-.2-.19-.42-.3-.69-.31H6c-.27.02-.48.13-.69.31-.2.2-.3.44-.31.69h1v3c.02.27.11.5.31.69.2.2.42.31.69.31h1c.27 0 .48-.11.69-.31.2-.19.3-.42.31-.69H8V7.98v.01zM7 2.3c-3.14 0-5.7 2.54-5.7 5.68 0 3.14 2.56 5.7 5.7 5.7s5.7-2.55 5.7-5.7c0-3.15-2.56-5.69-5.7-5.69v.01zM7 .98c3.86 0 7 3.14 7 7s-3.14 7-7 7-7-3.12-7-7 3.14-7 7-7z"}))},label:a.createElement(p.Z,{id:"theme.admonition.note",description:"The default label used for the Note admonition (:::note)"},"note")},tip:{infimaClassName:"success",iconComponent:function(){return a.createElement("svg",{viewBox:"0 0 12 16"},a.createElement("path",{fillRule:"evenodd",d:"M6.5 0C3.48 0 1 2.19 1 5c0 .92.55 2.25 1 3 1.34 2.25 1.78 2.78 2 4v1h5v-1c.22-1.22.66-1.75 2-4 .45-.75 1-2.08 1-3 0-2.81-2.48-5-5.5-5zm3.64 7.48c-.25.44-.47.8-.67 1.11-.86 1.41-1.25 2.06-1.45 3.23-.02.05-.02.11-.02.17H5c0-.06 0-.13-.02-.17-.2-1.17-.59-1.83-1.45-3.23-.2-.31-.42-.67-.67-1.11C2.44 6.78 2 5.65 2 5c0-2.2 2.02-4 4.5-4 1.22 0 2.36.42 3.22 1.19C10.55 2.94 11 3.94 11 5c0 .66-.44 1.78-.86 2.48zM4 14h5c-.23 1.14-1.3 2-2.5 2s-2.27-.86-2.5-2z"}))},label:a.createElement(p.Z,{id:"theme.admonition.tip",description:"The default label used for the Tip admonition (:::tip)"},"tip")},danger:{infimaClassName:"danger",iconComponent:function(){return a.createElement("svg",{viewBox:"0 0 12 16"},a.createElement("path",{fillRule:"evenodd",d:"M5.05.31c.81 2.17.41 3.38-.52 4.31C3.55 5.67 1.98 6.45.9 7.98c-1.45 2.05-1.7 6.53 3.53 7.7-2.2-1.16-2.67-4.52-.3-6.61-.61 2.03.53 3.33 1.94 2.86 1.39-.47 2.3.53 2.27 1.67-.02.78-.31 1.44-1.13 1.81 3.42-.59 4.78-3.42 4.78-5.56 0-2.84-2.53-3.22-1.25-5.61-1.52.13-2.03 1.13-1.89 2.75.09 1.08-1.02 1.8-1.86 1.33-.67-.41-.66-1.19-.06-1.78C8.18 5.31 8.68 2.45 5.05.32L5.03.3l.02.01z"}))},label:a.createElement(p.Z,{id:"theme.admonition.danger",description:"The default label used for the Danger admonition (:::danger)"},"danger")},info:{infimaClassName:"info",iconComponent:function(){return a.createElement("svg",{viewBox:"0 0 14 16"},a.createElement("path",{fillRule:"evenodd",d:"M7 2.3c3.14 0 5.7 2.56 5.7 5.7s-2.56 5.7-5.7 5.7A5.71 5.71 0 0 1 1.3 8c0-3.14 2.56-5.7 5.7-5.7zM7 1C3.14 1 0 4.14 0 8s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm1 3H6v5h2V4zm0 6H6v2h2v-2z"}))},label:a.createElement(p.Z,{id:"theme.admonition.info",description:"The default label used for the Info admonition (:::info)"},"info")},caution:{infimaClassName:"warning",iconComponent:function(){return a.createElement("svg",{viewBox:"0 0 16 16"},a.createElement("path",{fillRule:"evenodd",d:"M8.893 1.5c-.183-.31-.52-.5-.887-.5s-.703.19-.886.5L.138 13.499a.98.98 0 0 0 0 1.001c.193.31.53.501.886.501h13.964c.367 0 .704-.19.877-.5a1.03 1.03 0 0 0 .01-1.002L8.893 1.5zm.133 11.497H6.987v-2.003h2.039v2.003zm0-3.004H6.987V5.987h2.039v4.006z"}))},label:a.createElement(p.Z,{id:"theme.admonition.caution",description:"The default label used for the Caution admonition (:::caution)"},"caution")}},$e={secondary:"note",important:"info",success:"tip",warning:"danger"};function Fe(e){const{mdxAdmonitionTitle:t,rest:n}=function(e){const t=a.Children.toArray(e),n=t.find((e=>a.isValidElement(e)&&"mdxAdmonitionTitle"===e.props?.mdxType)),o=a.createElement(a.Fragment,null,t.filter((e=>e!==n)));return{mdxAdmonitionTitle:n,rest:o}}(e.children);return{...e,title:e.title??t,children:n}}const qe={head:function(e){const t=a.Children.map(e.children,(e=>a.isValidElement(e)?function(e){if(e.props?.mdxType&&e.props.originalType){const{mdxType:t,originalType:n,...o}=e.props;return a.createElement(e.props.originalType,o)}return e}(e):e));return a.createElement(J.Z,e,t)},code:function(e){const t=["a","abbr","b","br","button","cite","code","del","dfn","em","i","img","input","ins","kbd","label","object","output","q","ruby","s","small","span","strong","sub","sup","time","u","var","wbr"];return a.Children.toArray(e.children).every((e=>"string"==typeof e&&!e.includes("\n")||(0,a.isValidElement)(e)&&t.includes(e.props?.mdxType)))?a.createElement("code",e):a.createElement(Oe,e)},a:function(e){return a.createElement(f.Z,e)},pre:function(e){return a.createElement(Oe,(0,a.isValidElement)(e.children)&&"code"===e.children.props?.originalType?e.children.props:{...e})},details:function(e){const t=a.Children.toArray(e.children),n=t.find((e=>a.isValidElement(e)&&"summary"===e.props?.mdxType)),o=a.createElement(a.Fragment,null,t.filter((e=>e!==n)));return a.createElement(Ue,(0,u.Z)({},e,{summary:n}),o)},ul:function(e){return a.createElement("ul",(0,u.Z)({},e,{className:(t=e.className,(0,d.Z)(t,t?.includes("contains-task-list")&&Ve.containsTaskList))}));var t},img:function(e){return a.createElement("img",(0,u.Z)({loading:"lazy"},e,{className:(t=e.className,(0,d.Z)(t,De.img))}));var t},h1:e=>a.createElement(ze,(0,u.Z)({as:"h1"},e)),h2:e=>a.createElement(ze,(0,u.Z)({as:"h2"},e)),h3:e=>a.createElement(ze,(0,u.Z)({as:"h3"},e)),h4:e=>a.createElement(ze,(0,u.Z)({as:"h4"},e)),h5:e=>a.createElement(ze,(0,u.Z)({as:"h5"},e)),h6:e=>a.createElement(ze,(0,u.Z)({as:"h6"},e)),admonition:function(e){const{children:t,type:n,title:o,icon:r}=Fe(e),l=function(e){const t=$e[e]??e,n=We[t];return n||(console.warn(`No admonition config found for admonition type "${t}". Using Info as fallback.`),We.info)}(n),c=o??l.label,{iconComponent:s}=l,i=r??a.createElement(s,null);return a.createElement("div",{className:(0,d.Z)(y.k.common.admonition,y.k.common.admonitionType(e.type),"alert",`alert--${l.infimaClassName}`,Re.admonition)},a.createElement("div",{className:Re.admonitionHeading},a.createElement("span",{className:Re.admonitionIcon},i),c),a.createElement("div",{className:Re.admonitionContent},t))},mermaid:()=>null};function Ge(e){let{children:t}=e;return a.createElement(Y.Zo,{components:qe},t)}function Ye(e){let{children:t}=e;const n=function(){const{metadata:e,frontMatter:t,contentTitle:n}=s();return t.hide_title||void 0!==n?null:e.title}();return a.createElement("div",{className:(0,d.Z)(y.k.docs.docMarkdown,"markdown")},n&&a.createElement("header",null,a.createElement(G.Z,{as:"h1"},n)),a.createElement(Ge,null,t))}var Je=n(53438),Qe=n(48596),Xe=n(44996);function Ke(e){return a.createElement("svg",(0,u.Z)({viewBox:"0 0 24 24"},e),a.createElement("path",{d:"M10 19v-5h4v5c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-7h1.7c.46 0 .68-.57.33-.87L12.67 3.6c-.38-.34-.96-.34-1.34 0l-8.36 7.53c-.34.3-.13.87.33.87H5v7c0 .55.45 1 1 1h3c.55 0 1-.45 1-1z",fill:"currentColor"}))}const et={breadcrumbHomeIcon:"breadcrumbHomeIcon_YNFT"};function tt(){const e=(0,Xe.Z)("/");return a.createElement("li",{className:"breadcrumbs__item"},a.createElement(f.Z,{"aria-label":(0,p.I)({id:"theme.docs.breadcrumbs.home",message:"Home page",description:"The ARIA label for the home page in the breadcrumbs"}),className:"breadcrumbs__link",href:e},a.createElement(Ke,{className:et.breadcrumbHomeIcon})))}const nt={breadcrumbsContainer:"breadcrumbsContainer_Z_bl"};function at(e){let{children:t,href:n,isLast:o}=e;const r="breadcrumbs__link";return o?a.createElement("span",{className:r,itemProp:"name"},t):n?a.createElement(f.Z,{className:r,href:n,itemProp:"item"},a.createElement("span",{itemProp:"name"},t)):a.createElement("span",{className:r},t)}function ot(e){let{children:t,active:n,index:o,addMicrodata:r}=e;return a.createElement("li",(0,u.Z)({},r&&{itemScope:!0,itemProp:"itemListElement",itemType:"https://schema.org/ListItem"},{className:(0,d.Z)("breadcrumbs__item",{"breadcrumbs__item--active":n})}),t,a.createElement("meta",{itemProp:"position",content:String(o+1)}))}function rt(){const e=(0,Je.s1)(),t=(0,Qe.Ns)();return e?a.createElement("nav",{className:(0,d.Z)(y.k.docs.docBreadcrumbs,nt.breadcrumbsContainer),"aria-label":(0,p.I)({id:"theme.docs.breadcrumbs.navAriaLabel",message:"Breadcrumbs",description:"The ARIA label for the breadcrumbs"})},a.createElement("ul",{className:"breadcrumbs",itemScope:!0,itemType:"https://schema.org/BreadcrumbList"},t&&a.createElement(tt,null),e.map(((t,n)=>{const o=n===e.length-1;return a.createElement(ot,{key:n,active:o,index:n,addMicrodata:!!t.href},a.createElement(at,{href:t.href,isLast:o},t.label))})))):null}const lt={docItemContainer:"docItemContainer_Djhp",docItemCol:"docItemCol_VOVn"};function ct(e){let{children:t}=e;const n=function(){const{frontMatter:e,toc:t}=s(),n=(0,m.i)(),o=e.hide_table_of_contents,r=!o&&t.length>0;return{hidden:o,mobile:r?a.createElement($,null):void 0,desktop:!r||"desktop"!==n&&"ssr"!==n?void 0:a.createElement(q,null)}}();return a.createElement("div",{className:"row"},a.createElement("div",{className:(0,d.Z)("col",!n.hidden&<.docItemCol)},a.createElement(_,null),a.createElement("div",{className:lt.docItemContainer},a.createElement("article",null,a.createElement(rt,null),a.createElement(w,null),n.mobile,a.createElement(Ye,null,t),a.createElement(D,null)),a.createElement(b,null))),n.desktop&&a.createElement("div",{className:"col col--3"},n.desktop))}function st(e){const t=`docs-doc-id-${e.content.metadata.unversionedId}`,n=e.content;return a.createElement(c,{content:e.content},a.createElement(o.FG,{className:t},a.createElement(i,null),a.createElement(ct,null,a.createElement(n,null))))}},92503:(e,t,n)=>{"use strict";n.d(t,{Z:()=>d});var a=n(87462),o=n(67294),r=n(86010),l=n(95999),c=n(86668),s=n(39960);const i={anchorWithStickyNavbar:"anchorWithStickyNavbar_LWe7",anchorWithHideOnScrollNavbar:"anchorWithHideOnScrollNavbar_WYt5"};function d(e){let{as:t,id:n,...d}=e;const{navbar:{hideOnScroll:m}}=(0,c.L)();if("h1"===t||!n)return o.createElement(t,(0,a.Z)({},d,{id:void 0}));const u=(0,l.I)({id:"theme.common.headingLinkTitle",message:"Direct link to {heading}",description:"Title for link to heading"},{heading:"string"==typeof d.children?d.children:n});return o.createElement(t,(0,a.Z)({},d,{className:(0,r.Z)("anchor",m?i.anchorWithHideOnScrollNavbar:i.anchorWithStickyNavbar,d.className),id:n}),d.children,o.createElement(s.Z,{className:"hash-link",to:`#${n}`,"aria-label":u,title:u},"\u200b"))}},69286:(e,t,n)=>{"use strict";n.d(t,{Z:()=>u});var a=n(67294),o=n(86010),r=n(86043),l=n(93743),c=n(87462),s=n(95999);const i={tocCollapsibleButton:"tocCollapsibleButton_TO0P",tocCollapsibleButtonExpanded:"tocCollapsibleButtonExpanded_MG3E"};function d(e){let{collapsed:t,...n}=e;return a.createElement("button",(0,c.Z)({type:"button"},n,{className:(0,o.Z)("clean-btn",i.tocCollapsibleButton,!t&&i.tocCollapsibleButtonExpanded,n.className)}),a.createElement(s.Z,{id:"theme.TOCCollapsible.toggleButtonLabel",description:"The label used by the button on the collapsible TOC component"},"On this page"))}const m={tocCollapsible:"tocCollapsible_ETCw",tocCollapsibleContent:"tocCollapsibleContent_vkbj",tocCollapsibleExpanded:"tocCollapsibleExpanded_sAul"};function u(e){let{toc:t,className:n,minHeadingLevel:c,maxHeadingLevel:s}=e;const{collapsed:i,toggleCollapsed:u}=(0,r.u)({initialState:!0});return a.createElement("div",{className:(0,o.Z)(m.tocCollapsible,!i&&m.tocCollapsibleExpanded,n)},a.createElement(d,{collapsed:i,onClick:u}),a.createElement(r.z,{lazy:!0,className:m.tocCollapsibleContent,collapsed:i},a.createElement(l.Z,{toc:t,minHeadingLevel:c,maxHeadingLevel:s})))}},93743:(e,t,n)=>{"use strict";n.d(t,{Z:()=>f});var a=n(87462),o=n(67294),r=n(86668);function l(e){const t=e.map((e=>({...e,parentIndex:-1,children:[]}))),n=Array(7).fill(-1);t.forEach(((e,t)=>{const a=n.slice(2,e.level);e.parentIndex=Math.max(...a),n[e.level]=t}));const a=[];return t.forEach((e=>{const{parentIndex:n,...o}=e;n>=0?t[n].children.push(o):a.push(o)})),a}function c(e){let{toc:t,minHeadingLevel:n,maxHeadingLevel:a}=e;return t.flatMap((e=>{const t=c({toc:e.children,minHeadingLevel:n,maxHeadingLevel:a});return function(e){return e.level>=n&&e.level<=a}(e)?[{...e,children:t}]:t}))}function s(e){const t=e.getBoundingClientRect();return t.top===t.bottom?s(e.parentNode):t}function i(e,t){let{anchorTopOffset:n}=t;const a=e.find((e=>s(e).top>=n));if(a){return function(e){return e.top>0&&e.bottom<window.innerHeight/2}(s(a))?a:e[e.indexOf(a)-1]??null}return e[e.length-1]??null}function d(){const e=(0,o.useRef)(0),{navbar:{hideOnScroll:t}}=(0,r.L)();return(0,o.useEffect)((()=>{e.current=t?0:document.querySelector(".navbar").clientHeight}),[t]),e}function m(e){const t=(0,o.useRef)(void 0),n=d();(0,o.useEffect)((()=>{if(!e)return()=>{};const{linkClassName:a,linkActiveClassName:o,minHeadingLevel:r,maxHeadingLevel:l}=e;function c(){const e=function(e){return Array.from(document.getElementsByClassName(e))}(a),c=function(e){let{minHeadingLevel:t,maxHeadingLevel:n}=e;const a=[];for(let o=t;o<=n;o+=1)a.push(`h${o}.anchor`);return Array.from(document.querySelectorAll(a.join()))}({minHeadingLevel:r,maxHeadingLevel:l}),s=i(c,{anchorTopOffset:n.current}),d=e.find((e=>s&&s.id===function(e){return decodeURIComponent(e.href.substring(e.href.indexOf("#")+1))}(e)));e.forEach((e=>{!function(e,n){n?(t.current&&t.current!==e&&t.current.classList.remove(o),e.classList.add(o),t.current=e):e.classList.remove(o)}(e,e===d)}))}return document.addEventListener("scroll",c),document.addEventListener("resize",c),c(),()=>{document.removeEventListener("scroll",c),document.removeEventListener("resize",c)}}),[e,n])}function u(e){let{toc:t,className:n,linkClassName:a,isChild:r}=e;return t.length?o.createElement("ul",{className:r?void 0:n},t.map((e=>o.createElement("li",{key:e.id},o.createElement("a",{href:`#${e.id}`,className:a??void 0,dangerouslySetInnerHTML:{__html:e.value}}),o.createElement(u,{isChild:!0,toc:e.children,className:n,linkClassName:a}))))):null}const p=o.memo(u);function f(e){let{toc:t,className:n="table-of-contents table-of-contents__left-border",linkClassName:s="table-of-contents__link",linkActiveClassName:i,minHeadingLevel:d,maxHeadingLevel:u,...f}=e;const h=(0,r.L)(),g=d??h.tableOfContents.minHeadingLevel,b=u??h.tableOfContents.maxHeadingLevel,v=function(e){let{toc:t,minHeadingLevel:n,maxHeadingLevel:a}=e;return(0,o.useMemo)((()=>c({toc:l(t),minHeadingLevel:n,maxHeadingLevel:a})),[t,n,a])}({toc:t,minHeadingLevel:g,maxHeadingLevel:b});return m((0,o.useMemo)((()=>{if(s&&i)return{linkClassName:s,linkActiveClassName:i,minHeadingLevel:g,maxHeadingLevel:b}}),[s,i,g,b])),o.createElement(p,(0,a.Z)({toc:v,className:n,linkClassName:s},f))}},39407:(e,t,n)=>{"use strict";n.d(t,{Z:()=>d});var a=n(87462),o=n(67294),r=n(86010),l=n(93743);const c={tableOfContents:"tableOfContents_bqdL",docItemContainer:"docItemContainer_F8PC"},s="table-of-contents__link toc-highlight",i="table-of-contents__link--active";function d(e){let{className:t,...n}=e;return o.createElement("div",{className:(0,r.Z)(c.tableOfContents,"thin-scrollbar",t)},o.createElement(l.Z,(0,a.Z)({},n,{linkClassName:s,linkActiveClassName:i})))}},74477:(e,t,n)=>{"use strict";n.d(t,{E:()=>c,q:()=>l});var a=n(67294),o=n(902);const r=a.createContext(null);function l(e){let{children:t,version:n}=e;return a.createElement(r.Provider,{value:n},t)}function c(){const e=(0,a.useContext)(r);if(null===e)throw new o.i6("DocsVersionProvider");return e}},87594:(e,t)=>{function n(e){let t,n=[];for(let a of e.split(",").map((e=>e.trim())))if(/^-?\d+$/.test(a))n.push(parseInt(a,10));else if(t=a.match(/^(-?\d+)(-|\.\.\.?|\u2025|\u2026|\u22EF)(-?\d+)$/)){let[e,a,o,r]=t;if(a&&r){a=parseInt(a),r=parseInt(r);const e=a<r?1:-1;"-"!==o&&".."!==o&&"\u2025"!==o||(r+=e);for(let t=a;t!==r;t+=e)n.push(t)}}return n}t.default=n,e.exports=n}}]); \ No newline at end of file diff --git a/assets/js/17896441.baadba73.js b/assets/js/17896441.baadba73.js new file mode 100644 index 0000000..4308cef --- /dev/null +++ b/assets/js/17896441.baadba73.js @@ -0,0 +1 @@ +"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[918],{15462:(e,t,a)=>{a.r(t),a.d(t,{default:()=>ie});var n=a(67294),l=a(1944),r=a(902);const o=n.createContext(null);function s(e){let{children:t,content:a}=e;const l=function(e){return(0,n.useMemo)((()=>({metadata:e.metadata,frontMatter:e.frontMatter,assets:e.assets,contentTitle:e.contentTitle,toc:e.toc})),[e])}(a);return n.createElement(o.Provider,{value:l},t)}function c(){const e=(0,n.useContext)(o);if(null===e)throw new r.i6("DocProvider");return e}function i(){const{metadata:e,frontMatter:t,assets:a}=c();return n.createElement(l.d,{title:e.title,description:e.description,keywords:t.keywords,image:a.image??t.image})}var d=a(86010),m=a(87524),u=a(87462),b=a(95999),p=a(39960);function E(e){const{permalink:t,title:a,subLabel:l,isNext:r}=e;return n.createElement(p.Z,{className:(0,d.Z)("pagination-nav__link",r?"pagination-nav__link--next":"pagination-nav__link--prev"),to:t},l&&n.createElement("div",{className:"pagination-nav__sublabel"},l),n.createElement("div",{className:"pagination-nav__label"},a))}function h(e){const{previous:t,next:a}=e;return n.createElement("nav",{className:"pagination-nav docusaurus-mt-lg","aria-label":(0,b.I)({id:"theme.docs.paginator.navAriaLabel",message:"Docs pages navigation",description:"The ARIA label for the docs pagination"})},t&&n.createElement(E,(0,u.Z)({},t,{subLabel:n.createElement(b.Z,{id:"theme.docs.paginator.previous",description:"The label used to navigate to the previous doc"},"Previous")})),a&&n.createElement(E,(0,u.Z)({},a,{subLabel:n.createElement(b.Z,{id:"theme.docs.paginator.next",description:"The label used to navigate to the next doc"},"Next"),isNext:!0})))}function v(){const{metadata:e}=c();return n.createElement(h,{previous:e.previous,next:e.next})}var g=a(52263),f=a(94104),_=a(35281),N=a(60373),Z=a(74477);const k={unreleased:function(e){let{siteTitle:t,versionMetadata:a}=e;return n.createElement(b.Z,{id:"theme.docs.versions.unreleasedVersionLabel",description:"The label used to tell the user that he's browsing an unreleased doc version",values:{siteTitle:t,versionLabel:n.createElement("b",null,a.label)}},"This is unreleased documentation for {siteTitle} {versionLabel} version.")},unmaintained:function(e){let{siteTitle:t,versionMetadata:a}=e;return n.createElement(b.Z,{id:"theme.docs.versions.unmaintainedVersionLabel",description:"The label used to tell the user that he's browsing an unmaintained doc version",values:{siteTitle:t,versionLabel:n.createElement("b",null,a.label)}},"This is documentation for {siteTitle} {versionLabel}, which is no longer actively maintained.")}};function C(e){const t=k[e.versionMetadata.banner];return n.createElement(t,e)}function L(e){let{versionLabel:t,to:a,onClick:l}=e;return n.createElement(b.Z,{id:"theme.docs.versions.latestVersionSuggestionLabel",description:"The label used to tell the user to check the latest version",values:{versionLabel:t,latestVersionLink:n.createElement("b",null,n.createElement(p.Z,{to:a,onClick:l},n.createElement(b.Z,{id:"theme.docs.versions.latestVersionLinkLabel",description:"The label used for the latest version suggestion link label"},"latest version")))}},"For up-to-date documentation, see the {latestVersionLink} ({versionLabel}).")}function T(e){let{className:t,versionMetadata:a}=e;const{siteConfig:{title:l}}=(0,g.Z)(),{pluginId:r}=(0,f.gA)({failfast:!0}),{savePreferredVersionName:o}=(0,N.J)(r),{latestDocSuggestion:s,latestVersionSuggestion:c}=(0,f.Jo)(r),i=s??(m=c).docs.find((e=>e.id===m.mainDocId));var m;return n.createElement("div",{className:(0,d.Z)(t,_.k.docs.docVersionBanner,"alert alert--warning margin-bottom--md"),role:"alert"},n.createElement("div",null,n.createElement(C,{siteTitle:l,versionMetadata:a})),n.createElement("div",{className:"margin-top--md"},n.createElement(L,{versionLabel:c.label,to:i.path,onClick:()=>o(c.name)})))}function U(e){let{className:t}=e;const a=(0,Z.E)();return a.banner?n.createElement(T,{className:t,versionMetadata:a}):null}function w(e){let{className:t}=e;const a=(0,Z.E)();return a.badge?n.createElement("span",{className:(0,d.Z)(t,_.k.docs.docVersionBadge,"badge badge--secondary")},n.createElement(b.Z,{id:"theme.docs.versionBadge.label",values:{versionLabel:a.label}},"Version: {versionLabel}")):null}function x(e){let{lastUpdatedAt:t,formattedLastUpdatedAt:a}=e;return n.createElement(b.Z,{id:"theme.lastUpdated.atDate",description:"The words used to describe on which date a page has been last updated",values:{date:n.createElement("b",null,n.createElement("time",{dateTime:new Date(1e3*t).toISOString()},a))}}," on {date}")}function y(e){let{lastUpdatedBy:t}=e;return n.createElement(b.Z,{id:"theme.lastUpdated.byUser",description:"The words used to describe by who the page has been last updated",values:{user:n.createElement("b",null,t)}}," by {user}")}function A(e){let{lastUpdatedAt:t,formattedLastUpdatedAt:a,lastUpdatedBy:l}=e;return n.createElement("span",{className:_.k.common.lastUpdated},n.createElement(b.Z,{id:"theme.lastUpdated.lastUpdatedAtBy",description:"The sentence used to display when a page has been last updated, and by who",values:{atDate:t&&a?n.createElement(x,{lastUpdatedAt:t,formattedLastUpdatedAt:a}):"",byUser:l?n.createElement(y,{lastUpdatedBy:l}):""}},"Last updated{atDate}{byUser}"),!1)}const M={iconEdit:"iconEdit_Z9Sw"};function B(e){let{className:t,...a}=e;return n.createElement("svg",(0,u.Z)({fill:"currentColor",height:"20",width:"20",viewBox:"0 0 40 40",className:(0,d.Z)(M.iconEdit,t),"aria-hidden":"true"},a),n.createElement("g",null,n.createElement("path",{d:"m34.5 11.7l-3 3.1-6.3-6.3 3.1-3q0.5-0.5 1.2-0.5t1.1 0.5l3.9 3.9q0.5 0.4 0.5 1.1t-0.5 1.2z m-29.5 17.1l18.4-18.5 6.3 6.3-18.4 18.4h-6.3v-6.2z"})))}function I(e){let{editUrl:t}=e;return n.createElement("a",{href:t,target:"_blank",rel:"noreferrer noopener",className:_.k.common.editThisPage},n.createElement(B,null),n.createElement(b.Z,{id:"theme.common.editThisPage",description:"The link label to edit the current page"},"Edit this page"))}const V={tag:"tag_zVej",tagRegular:"tagRegular_sFm0",tagWithCount:"tagWithCount_h2kH"};function H(e){let{permalink:t,label:a,count:l}=e;return n.createElement(p.Z,{href:t,className:(0,d.Z)(V.tag,l?V.tagWithCount:V.tagRegular)},a,l&&n.createElement("span",null,l))}const P={tags:"tags_jXut",tag:"tag_QGVx"};function D(e){let{tags:t}=e;return n.createElement(n.Fragment,null,n.createElement("b",null,n.createElement(b.Z,{id:"theme.tags.tagsListLabel",description:"The label alongside a tag list"},"Tags:")),n.createElement("ul",{className:(0,d.Z)(P.tags,"padding--none","margin-left--sm")},t.map((e=>{let{label:t,permalink:a}=e;return n.createElement("li",{key:a,className:P.tag},n.createElement(H,{label:t,permalink:a}))}))))}const S={lastUpdated:"lastUpdated_vwxv"};function F(e){return n.createElement("div",{className:(0,d.Z)(_.k.docs.docFooterTagsRow,"row margin-bottom--sm")},n.createElement("div",{className:"col"},n.createElement(D,e)))}function R(e){let{editUrl:t,lastUpdatedAt:a,lastUpdatedBy:l,formattedLastUpdatedAt:r}=e;return n.createElement("div",{className:(0,d.Z)(_.k.docs.docFooterEditMetaRow,"row")},n.createElement("div",{className:"col"},t&&n.createElement(I,{editUrl:t})),n.createElement("div",{className:(0,d.Z)("col",S.lastUpdated)},(a||l)&&n.createElement(A,{lastUpdatedAt:a,formattedLastUpdatedAt:r,lastUpdatedBy:l})))}function z(){const{metadata:e}=c(),{editUrl:t,lastUpdatedAt:a,formattedLastUpdatedAt:l,lastUpdatedBy:r,tags:o}=e,s=o.length>0,i=!!(t||a||r);return s||i?n.createElement("footer",{className:(0,d.Z)(_.k.docs.docFooter,"docusaurus-mt-lg")},s&&n.createElement(F,{tags:o}),i&&n.createElement(R,{editUrl:t,lastUpdatedAt:a,lastUpdatedBy:r,formattedLastUpdatedAt:l})):null}var O=a(69286);const j={tocMobile:"tocMobile_ITEo"};function q(){const{toc:e,frontMatter:t}=c();return n.createElement(O.Z,{toc:e,minHeadingLevel:t.toc_min_heading_level,maxHeadingLevel:t.toc_max_heading_level,className:(0,d.Z)(_.k.docs.docTocMobile,j.tocMobile)})}var G=a(39407);function W(){const{toc:e,frontMatter:t}=c();return n.createElement(G.Z,{toc:e,minHeadingLevel:t.toc_min_heading_level,maxHeadingLevel:t.toc_max_heading_level,className:_.k.docs.docTocDesktop})}var J=a(92503),Q=a(46146);function X(e){let{children:t}=e;const a=function(){const{metadata:e,frontMatter:t,contentTitle:a}=c();return t.hide_title||void 0!==a?null:e.title}();return n.createElement("div",{className:(0,d.Z)(_.k.docs.docMarkdown,"markdown")},a&&n.createElement("header",null,n.createElement(J.Z,{as:"h1"},a)),n.createElement(Q.Z,null,t))}var Y=a(53438),$=a(48596),K=a(44996);function ee(e){return n.createElement("svg",(0,u.Z)({viewBox:"0 0 24 24"},e),n.createElement("path",{d:"M10 19v-5h4v5c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-7h1.7c.46 0 .68-.57.33-.87L12.67 3.6c-.38-.34-.96-.34-1.34 0l-8.36 7.53c-.34.3-.13.87.33.87H5v7c0 .55.45 1 1 1h3c.55 0 1-.45 1-1z",fill:"currentColor"}))}const te={breadcrumbHomeIcon:"breadcrumbHomeIcon_YNFT"};function ae(){const e=(0,K.Z)("/");return n.createElement("li",{className:"breadcrumbs__item"},n.createElement(p.Z,{"aria-label":(0,b.I)({id:"theme.docs.breadcrumbs.home",message:"Home page",description:"The ARIA label for the home page in the breadcrumbs"}),className:"breadcrumbs__link",href:e},n.createElement(ee,{className:te.breadcrumbHomeIcon})))}const ne={breadcrumbsContainer:"breadcrumbsContainer_Z_bl"};function le(e){let{children:t,href:a,isLast:l}=e;const r="breadcrumbs__link";return l?n.createElement("span",{className:r,itemProp:"name"},t):a?n.createElement(p.Z,{className:r,href:a,itemProp:"item"},n.createElement("span",{itemProp:"name"},t)):n.createElement("span",{className:r},t)}function re(e){let{children:t,active:a,index:l,addMicrodata:r}=e;return n.createElement("li",(0,u.Z)({},r&&{itemScope:!0,itemProp:"itemListElement",itemType:"https://schema.org/ListItem"},{className:(0,d.Z)("breadcrumbs__item",{"breadcrumbs__item--active":a})}),t,n.createElement("meta",{itemProp:"position",content:String(l+1)}))}function oe(){const e=(0,Y.s1)(),t=(0,$.Ns)();return e?n.createElement("nav",{className:(0,d.Z)(_.k.docs.docBreadcrumbs,ne.breadcrumbsContainer),"aria-label":(0,b.I)({id:"theme.docs.breadcrumbs.navAriaLabel",message:"Breadcrumbs",description:"The ARIA label for the breadcrumbs"})},n.createElement("ul",{className:"breadcrumbs",itemScope:!0,itemType:"https://schema.org/BreadcrumbList"},t&&n.createElement(ae,null),e.map(((t,a)=>{const l=a===e.length-1;return n.createElement(re,{key:a,active:l,index:a,addMicrodata:!!t.href},n.createElement(le,{href:t.href,isLast:l},t.label))})))):null}const se={docItemContainer:"docItemContainer_Djhp",docItemCol:"docItemCol_VOVn"};function ce(e){let{children:t}=e;const a=function(){const{frontMatter:e,toc:t}=c(),a=(0,m.i)(),l=e.hide_table_of_contents,r=!l&&t.length>0;return{hidden:l,mobile:r?n.createElement(q,null):void 0,desktop:!r||"desktop"!==a&&"ssr"!==a?void 0:n.createElement(W,null)}}();return n.createElement("div",{className:"row"},n.createElement("div",{className:(0,d.Z)("col",!a.hidden&&se.docItemCol)},n.createElement(U,null),n.createElement("div",{className:se.docItemContainer},n.createElement("article",null,n.createElement(oe,null),n.createElement(w,null),a.mobile,n.createElement(X,null,t),n.createElement(z,null)),n.createElement(v,null))),a.desktop&&n.createElement("div",{className:"col col--3"},a.desktop))}function ie(e){const t=`docs-doc-id-${e.content.metadata.unversionedId}`,a=e.content;return n.createElement(s,{content:e.content},n.createElement(l.FG,{className:t},n.createElement(i,null),n.createElement(ce,null,n.createElement(a,null))))}},69286:(e,t,a)=>{a.d(t,{Z:()=>u});var n=a(67294),l=a(86010),r=a(86043),o=a(93743),s=a(87462),c=a(95999);const i={tocCollapsibleButton:"tocCollapsibleButton_TO0P",tocCollapsibleButtonExpanded:"tocCollapsibleButtonExpanded_MG3E"};function d(e){let{collapsed:t,...a}=e;return n.createElement("button",(0,s.Z)({type:"button"},a,{className:(0,l.Z)("clean-btn",i.tocCollapsibleButton,!t&&i.tocCollapsibleButtonExpanded,a.className)}),n.createElement(c.Z,{id:"theme.TOCCollapsible.toggleButtonLabel",description:"The label used by the button on the collapsible TOC component"},"On this page"))}const m={tocCollapsible:"tocCollapsible_ETCw",tocCollapsibleContent:"tocCollapsibleContent_vkbj",tocCollapsibleExpanded:"tocCollapsibleExpanded_sAul"};function u(e){let{toc:t,className:a,minHeadingLevel:s,maxHeadingLevel:c}=e;const{collapsed:i,toggleCollapsed:u}=(0,r.u)({initialState:!0});return n.createElement("div",{className:(0,l.Z)(m.tocCollapsible,!i&&m.tocCollapsibleExpanded,a)},n.createElement(d,{collapsed:i,onClick:u}),n.createElement(r.z,{lazy:!0,className:m.tocCollapsibleContent,collapsed:i},n.createElement(o.Z,{toc:t,minHeadingLevel:s,maxHeadingLevel:c})))}},74477:(e,t,a)=>{a.d(t,{E:()=>s,q:()=>o});var n=a(67294),l=a(902);const r=n.createContext(null);function o(e){let{children:t,version:a}=e;return n.createElement(r.Provider,{value:a},t)}function s(){const e=(0,n.useContext)(r);if(null===e)throw new l.i6("DocsVersionProvider");return e}}}]); \ No newline at end of file diff --git a/assets/js/1f391b9e.324eb1d3.js b/assets/js/1f391b9e.324eb1d3.js new file mode 100644 index 0000000..750a481 --- /dev/null +++ b/assets/js/1f391b9e.324eb1d3.js @@ -0,0 +1 @@ +"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[85],{14247:(e,t,a)=>{a.r(t),a.d(t,{default:()=>d});var l=a(67294),n=a(86010),c=a(1944),r=a(35281),m=a(34510),s=a(46146),i=a(39407);const o={mdxPageWrapper:"mdxPageWrapper_j9I6"};function d(e){const{content:t}=e,{metadata:{title:a,description:d,frontMatter:p}}=t,{wrapperClassName:g,hide_table_of_contents:u}=p;return l.createElement(c.FG,{className:(0,n.Z)(g??r.k.wrapper.mdxPages,r.k.page.mdxPage)},l.createElement(c.d,{title:a,description:d}),l.createElement(m.Z,null,l.createElement("main",{className:"container container--fluid margin-vert--lg"},l.createElement("div",{className:(0,n.Z)("row",o.mdxPageWrapper)},l.createElement("div",{className:(0,n.Z)("col",!u&&"col--8")},l.createElement("article",null,l.createElement(s.Z,null,l.createElement(t,null)))),!u&&t.toc.length>0&&l.createElement("div",{className:"col col--2"},l.createElement(i.Z,{toc:t.toc,minHeadingLevel:p.toc_min_heading_level,maxHeadingLevel:p.toc_max_heading_level}))))))}}}]); \ No newline at end of file diff --git a/assets/js/289.3adf4ac8.js b/assets/js/289.3adf4ac8.js new file mode 100644 index 0000000..14fb48b --- /dev/null +++ b/assets/js/289.3adf4ac8.js @@ -0,0 +1 @@ +(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[289],{3905:(e,t,n)=>{"use strict";n.d(t,{Zo:()=>u,kt:()=>f});var o=n(67294);function a(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function r(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,o)}return n}function c(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?r(Object(n),!0).forEach((function(t){a(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):r(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function l(e,t){if(null==e)return{};var n,o,a=function(e,t){if(null==e)return{};var n,o,a={},r=Object.keys(e);for(o=0;o<r.length;o++)n=r[o],t.indexOf(n)>=0||(a[n]=e[n]);return a}(e,t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);for(o=0;o<r.length;o++)n=r[o],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(a[n]=e[n])}return a}var i=o.createContext({}),s=function(e){var t=o.useContext(i),n=t;return e&&(n="function"==typeof e?e(t):c(c({},t),e)),n},u=function(e){var t=s(e.components);return o.createElement(i.Provider,{value:t},e.children)},m="mdxType",d={inlineCode:"code",wrapper:function(e){var t=e.children;return o.createElement(o.Fragment,{},t)}},p=o.forwardRef((function(e,t){var n=e.components,a=e.mdxType,r=e.originalType,i=e.parentName,u=l(e,["components","mdxType","originalType","parentName"]),m=s(n),p=a,f=m["".concat(i,".").concat(p)]||m[p]||d[p]||r;return n?o.createElement(f,c(c({ref:t},u),{},{components:n})):o.createElement(f,c({ref:t},u))}));function f(e,t){var n=arguments,a=t&&t.mdxType;if("string"==typeof e||a){var r=n.length,c=new Array(r);c[0]=p;var l={};for(var i in t)hasOwnProperty.call(t,i)&&(l[i]=t[i]);l.originalType=e,l[m]="string"==typeof e?e:a,c[1]=l;for(var s=2;s<r;s++)c[s]=n[s];return o.createElement.apply(null,c)}return o.createElement.apply(null,n)}p.displayName="MDXCreateElement"},92503:(e,t,n)=>{"use strict";n.d(t,{Z:()=>u});var o=n(87462),a=n(67294),r=n(86010),c=n(95999),l=n(86668),i=n(39960);const s={anchorWithStickyNavbar:"anchorWithStickyNavbar_LWe7",anchorWithHideOnScrollNavbar:"anchorWithHideOnScrollNavbar_WYt5"};function u(e){let{as:t,id:n,...u}=e;const{navbar:{hideOnScroll:m}}=(0,l.L)();if("h1"===t||!n)return a.createElement(t,(0,o.Z)({},u,{id:void 0}));const d=(0,c.I)({id:"theme.common.headingLinkTitle",message:"Direct link to {heading}",description:"Title for link to heading"},{heading:"string"==typeof u.children?u.children:n});return a.createElement(t,(0,o.Z)({},u,{className:(0,r.Z)("anchor",m?s.anchorWithHideOnScrollNavbar:s.anchorWithStickyNavbar,u.className),id:n}),u.children,a.createElement(i.Z,{className:"hash-link",to:`#${n}`,"aria-label":d,title:d},"\u200b"))}},46146:(e,t,n)=>{"use strict";n.d(t,{Z:()=>ue});var o=n(67294),a=n(3905),r=n(87462),c=n(35742);var l=n(72389),i=n(86010),s=n(92949),u=n(86668);function m(){const{prism:e}=(0,u.L)(),{colorMode:t}=(0,s.I)(),n=e.theme,o=e.darkTheme||n;return"dark"===t?o:n}var d=n(35281),p=n(87594),f=n.n(p);const h=/title=(?<quote>["'])(?<title>.*?)\1/,g=/\{(?<range>[\d,-]+)\}/,y={js:{start:"\\/\\/",end:""},jsBlock:{start:"\\/\\*",end:"\\*\\/"},jsx:{start:"\\{\\s*\\/\\*",end:"\\*\\/\\s*\\}"},bash:{start:"#",end:""},html:{start:"\x3c!--",end:"--\x3e"}};function v(e,t){const n=e.map((e=>{const{start:n,end:o}=y[e];return`(?:${n}\\s*(${t.flatMap((e=>[e.line,e.block?.start,e.block?.end].filter(Boolean))).join("|")})\\s*${o})`})).join("|");return new RegExp(`^\\s*(?:${n})\\s*$`)}function b(e,t){let n=e.replace(/\n$/,"");const{language:o,magicComments:a,metastring:r}=t;if(r&&g.test(r)){const e=r.match(g).groups.range;if(0===a.length)throw new Error(`A highlight range has been given in code block's metastring (\`\`\` ${r}), but no magic comment config is available. Docusaurus applies the first magic comment entry's className for metastring ranges.`);const t=a[0].className,o=f()(e).filter((e=>e>0)).map((e=>[e-1,[t]]));return{lineClassNames:Object.fromEntries(o),code:n}}if(void 0===o)return{lineClassNames:{},code:n};const c=function(e,t){switch(e){case"js":case"javascript":case"ts":case"typescript":return v(["js","jsBlock"],t);case"jsx":case"tsx":return v(["js","jsBlock","jsx"],t);case"html":return v(["js","jsBlock","html"],t);case"python":case"py":case"bash":return v(["bash"],t);case"markdown":case"md":return v(["html","jsx","bash"],t);default:return v(Object.keys(y),t)}}(o,a),l=n.split("\n"),i=Object.fromEntries(a.map((e=>[e.className,{start:0,range:""}]))),s=Object.fromEntries(a.filter((e=>e.line)).map((e=>{let{className:t,line:n}=e;return[n,t]}))),u=Object.fromEntries(a.filter((e=>e.block)).map((e=>{let{className:t,block:n}=e;return[n.start,t]}))),m=Object.fromEntries(a.filter((e=>e.block)).map((e=>{let{className:t,block:n}=e;return[n.end,t]})));for(let p=0;p<l.length;){const e=l[p].match(c);if(!e){p+=1;continue}const t=e.slice(1).find((e=>void 0!==e));s[t]?i[s[t]].range+=`${p},`:u[t]?i[u[t]].start=p:m[t]&&(i[m[t]].range+=`${i[m[t]].start}-${p-1},`),l.splice(p,1)}n=l.join("\n");const d={};return Object.entries(i).forEach((e=>{let[t,{range:n}]=e;f()(n).forEach((e=>{d[e]??=[],d[e].push(t)}))})),{lineClassNames:d,code:n}}const E={codeBlockContainer:"codeBlockContainer_Ckt0"};function k(e){let{as:t,...n}=e;const a=function(e){const t={color:"--prism-color",backgroundColor:"--prism-background-color"},n={};return Object.entries(e.plain).forEach((e=>{let[o,a]=e;const r=t[o];r&&"string"==typeof a&&(n[r]=a)})),n}(m());return o.createElement(t,(0,r.Z)({},n,{style:a,className:(0,i.Z)(n.className,E.codeBlockContainer,d.k.common.codeBlock)}))}const N={codeBlockContent:"codeBlockContent_biex",codeBlockTitle:"codeBlockTitle_Ktv7",codeBlock:"codeBlock_bY9V",codeBlockStandalone:"codeBlockStandalone_MEMb",codeBlockLines:"codeBlockLines_e6Vv",codeBlockLinesWithNumbering:"codeBlockLinesWithNumbering_o6Pm",buttonGroup:"buttonGroup__atx"};function C(e){let{children:t,className:n}=e;return o.createElement(k,{as:"pre",tabIndex:0,className:(0,i.Z)(N.codeBlockStandalone,"thin-scrollbar",n)},o.createElement("code",{className:N.codeBlockLines},t))}var L=n(902);const w={attributes:!0,characterData:!0,childList:!0,subtree:!0};function B(e,t){const[n,a]=(0,o.useState)(),r=(0,o.useCallback)((()=>{a(e.current?.closest("[role=tabpanel][hidden]"))}),[e,a]);(0,o.useEffect)((()=>{r()}),[r]),function(e,t,n){void 0===n&&(n=w);const a=(0,L.zX)(t),r=(0,L.Ql)(n);(0,o.useEffect)((()=>{const t=new MutationObserver(a);return e&&t.observe(e,r),()=>t.disconnect()}),[e,a,r])}(n,(e=>{e.forEach((e=>{"attributes"===e.type&&"hidden"===e.attributeName&&(t(),r())}))}),{attributes:!0,characterData:!1,childList:!1,subtree:!1})}const T={plain:{backgroundColor:"#2a2734",color:"#9a86fd"},styles:[{types:["comment","prolog","doctype","cdata","punctuation"],style:{color:"#6c6783"}},{types:["namespace"],style:{opacity:.7}},{types:["tag","operator","number"],style:{color:"#e09142"}},{types:["property","function"],style:{color:"#9a86fd"}},{types:["tag-id","selector","atrule-id"],style:{color:"#eeebff"}},{types:["attr-name"],style:{color:"#c4b9fe"}},{types:["boolean","string","entity","url","attr-value","keyword","control","directive","unit","statement","regex","atrule","placeholder","variable"],style:{color:"#ffcc99"}},{types:["deleted"],style:{textDecorationLine:"line-through"}},{types:["inserted"],style:{textDecorationLine:"underline"}},{types:["italic"],style:{fontStyle:"italic"}},{types:["important","bold"],style:{fontWeight:"bold"}},{types:["important"],style:{color:"#c4b9fe"}}]};var x={Prism:n(87410).Z,theme:T};function O(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Z(){return Z=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var o in n)Object.prototype.hasOwnProperty.call(n,o)&&(e[o]=n[o])}return e},Z.apply(this,arguments)}var j=/\r\n|\r|\n/,H=function(e){0===e.length?e.push({types:["plain"],content:"\n",empty:!0}):1===e.length&&""===e[0].content&&(e[0].content="\n",e[0].empty=!0)},_=function(e,t){var n=e.length;return n>0&&e[n-1]===t?e:e.concat(t)},S=function(e,t){var n=e.plain,o=Object.create(null),a=e.styles.reduce((function(e,n){var o=n.languages,a=n.style;return o&&!o.includes(t)||n.types.forEach((function(t){var n=Z({},e[t],a);e[t]=n})),e}),o);return a.root=n,a.plain=Z({},n,{backgroundColor:null}),a};function I(e,t){var n={};for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&-1===t.indexOf(o)&&(n[o]=e[o]);return n}const A=function(e){function t(){for(var t=this,n=[],o=arguments.length;o--;)n[o]=arguments[o];e.apply(this,n),O(this,"getThemeDict",(function(e){if(void 0!==t.themeDict&&e.theme===t.prevTheme&&e.language===t.prevLanguage)return t.themeDict;t.prevTheme=e.theme,t.prevLanguage=e.language;var n=e.theme?S(e.theme,e.language):void 0;return t.themeDict=n})),O(this,"getLineProps",(function(e){var n=e.key,o=e.className,a=e.style,r=Z({},I(e,["key","className","style","line"]),{className:"token-line",style:void 0,key:void 0}),c=t.getThemeDict(t.props);return void 0!==c&&(r.style=c.plain),void 0!==a&&(r.style=void 0!==r.style?Z({},r.style,a):a),void 0!==n&&(r.key=n),o&&(r.className+=" "+o),r})),O(this,"getStyleForToken",(function(e){var n=e.types,o=e.empty,a=n.length,r=t.getThemeDict(t.props);if(void 0!==r){if(1===a&&"plain"===n[0])return o?{display:"inline-block"}:void 0;if(1===a&&!o)return r[n[0]];var c=o?{display:"inline-block"}:{},l=n.map((function(e){return r[e]}));return Object.assign.apply(Object,[c].concat(l))}})),O(this,"getTokenProps",(function(e){var n=e.key,o=e.className,a=e.style,r=e.token,c=Z({},I(e,["key","className","style","token"]),{className:"token "+r.types.join(" "),children:r.content,style:t.getStyleForToken(r),key:void 0});return void 0!==a&&(c.style=void 0!==c.style?Z({},c.style,a):a),void 0!==n&&(c.key=n),o&&(c.className+=" "+o),c})),O(this,"tokenize",(function(e,t,n,o){var a={code:t,grammar:n,language:o,tokens:[]};e.hooks.run("before-tokenize",a);var r=a.tokens=e.tokenize(a.code,a.grammar,a.language);return e.hooks.run("after-tokenize",a),r}))}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.render=function(){var e=this.props,t=e.Prism,n=e.language,o=e.code,a=e.children,r=this.getThemeDict(this.props),c=t.languages[n];return a({tokens:function(e){for(var t=[[]],n=[e],o=[0],a=[e.length],r=0,c=0,l=[],i=[l];c>-1;){for(;(r=o[c]++)<a[c];){var s=void 0,u=t[c],m=n[c][r];if("string"==typeof m?(u=c>0?u:["plain"],s=m):(u=_(u,m.type),m.alias&&(u=_(u,m.alias)),s=m.content),"string"==typeof s){var d=s.split(j),p=d.length;l.push({types:u,content:d[0]});for(var f=1;f<p;f++)H(l),i.push(l=[]),l.push({types:u,content:d[f]})}else c++,t.push(u),n.push(s),o.push(0),a.push(s.length)}c--,t.pop(),n.pop(),o.pop(),a.pop()}return H(l),i}(void 0!==c?this.tokenize(t,o,c,n):[o]),className:"prism-code language-"+n,style:void 0!==r?r.root:{},getLineProps:this.getLineProps,getTokenProps:this.getTokenProps})},t}(o.Component),P={codeLine:"codeLine_lJS_",codeLineNumber:"codeLineNumber_Tfdd",codeLineContent:"codeLineContent_feaV"};function z(e){let{line:t,classNames:n,showLineNumbers:a,getLineProps:c,getTokenProps:l}=e;1===t.length&&"\n"===t[0].content&&(t[0].content="");const s=c({line:t,className:(0,i.Z)(n,a&&P.codeLine)}),u=t.map(((e,t)=>o.createElement("span",(0,r.Z)({key:t},l({token:e,key:t})))));return o.createElement("span",s,a?o.createElement(o.Fragment,null,o.createElement("span",{className:P.codeLineNumber}),o.createElement("span",{className:P.codeLineContent},u)):u,o.createElement("br",null))}var M=n(95999);const D={copyButtonCopied:"copyButtonCopied_obH4",copyButtonIcons:"copyButtonIcons_eSgA",copyButtonIcon:"copyButtonIcon_y97N",copyButtonSuccessIcon:"copyButtonSuccessIcon_LjdS"};function W(e){let{code:t,className:n}=e;const[a,r]=(0,o.useState)(!1),c=(0,o.useRef)(void 0),l=(0,o.useCallback)((()=>{!function(e,{target:t=document.body}={}){const n=document.createElement("textarea"),o=document.activeElement;n.value=e,n.setAttribute("readonly",""),n.style.contain="strict",n.style.position="absolute",n.style.left="-9999px",n.style.fontSize="12pt";const a=document.getSelection();let r=!1;a.rangeCount>0&&(r=a.getRangeAt(0)),t.append(n),n.select(),n.selectionStart=0,n.selectionEnd=e.length;let c=!1;try{c=document.execCommand("copy")}catch{}n.remove(),r&&(a.removeAllRanges(),a.addRange(r)),o&&o.focus()}(t),r(!0),c.current=window.setTimeout((()=>{r(!1)}),1e3)}),[t]);return(0,o.useEffect)((()=>()=>window.clearTimeout(c.current)),[]),o.createElement("button",{type:"button","aria-label":a?(0,M.I)({id:"theme.CodeBlock.copied",message:"Copied",description:"The copied button label on code blocks"}):(0,M.I)({id:"theme.CodeBlock.copyButtonAriaLabel",message:"Copy code to clipboard",description:"The ARIA label for copy code blocks button"}),title:(0,M.I)({id:"theme.CodeBlock.copy",message:"Copy",description:"The copy button label on code blocks"}),className:(0,i.Z)("clean-btn",n,D.copyButton,a&&D.copyButtonCopied),onClick:l},o.createElement("span",{className:D.copyButtonIcons,"aria-hidden":"true"},o.createElement("svg",{className:D.copyButtonIcon,viewBox:"0 0 24 24"},o.createElement("path",{d:"M19,21H8V7H19M19,5H8A2,2 0 0,0 6,7V21A2,2 0 0,0 8,23H19A2,2 0 0,0 21,21V7A2,2 0 0,0 19,5M16,1H4A2,2 0 0,0 2,3V17H4V3H16V1Z"})),o.createElement("svg",{className:D.copyButtonSuccessIcon,viewBox:"0 0 24 24"},o.createElement("path",{d:"M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z"}))))}const R={wordWrapButtonIcon:"wordWrapButtonIcon_Bwma",wordWrapButtonEnabled:"wordWrapButtonEnabled_EoeP"};function V(e){let{className:t,onClick:n,isEnabled:a}=e;const r=(0,M.I)({id:"theme.CodeBlock.wordWrapToggle",message:"Toggle word wrap",description:"The title attribute for toggle word wrapping button of code block lines"});return o.createElement("button",{type:"button",onClick:n,className:(0,i.Z)("clean-btn",t,a&&R.wordWrapButtonEnabled),"aria-label":r,title:r},o.createElement("svg",{className:R.wordWrapButtonIcon,viewBox:"0 0 24 24","aria-hidden":"true"},o.createElement("path",{fill:"currentColor",d:"M4 19h6v-2H4v2zM20 5H4v2h16V5zm-3 6H4v2h13.25c1.1 0 2 .9 2 2s-.9 2-2 2H15v-2l-3 3l3 3v-2h2c2.21 0 4-1.79 4-4s-1.79-4-4-4z"})))}function $(e){let{children:t,className:n="",metastring:a,title:c,showLineNumbers:l,language:s}=e;const{prism:{defaultLanguage:d,magicComments:p}}=(0,u.L)(),f=s??function(e){const t=e.split(" ").find((e=>e.startsWith("language-")));return t?.replace(/language-/,"")}(n)??d,g=m(),y=function(){const[e,t]=(0,o.useState)(!1),[n,a]=(0,o.useState)(!1),r=(0,o.useRef)(null),c=(0,o.useCallback)((()=>{const n=r.current.querySelector("code");e?n.removeAttribute("style"):(n.style.whiteSpace="pre-wrap",n.style.overflowWrap="anywhere"),t((e=>!e))}),[r,e]),l=(0,o.useCallback)((()=>{const{scrollWidth:e,clientWidth:t}=r.current,n=e>t||r.current.querySelector("code").hasAttribute("style");a(n)}),[r]);return B(r,l),(0,o.useEffect)((()=>{l()}),[e,l]),(0,o.useEffect)((()=>(window.addEventListener("resize",l,{passive:!0}),()=>{window.removeEventListener("resize",l)})),[l]),{codeBlockRef:r,isEnabled:e,isCodeScrollable:n,toggle:c}}(),v=function(e){return e?.match(h)?.groups.title??""}(a)||c,{lineClassNames:E,code:C}=b(t,{metastring:a,language:f,magicComments:p}),L=l??function(e){return Boolean(e?.includes("showLineNumbers"))}(a);return o.createElement(k,{as:"div",className:(0,i.Z)(n,f&&!n.includes(`language-${f}`)&&`language-${f}`)},v&&o.createElement("div",{className:N.codeBlockTitle},v),o.createElement("div",{className:N.codeBlockContent},o.createElement(A,(0,r.Z)({},x,{theme:g,code:C,language:f??"text"}),(e=>{let{className:t,tokens:n,getLineProps:a,getTokenProps:r}=e;return o.createElement("pre",{tabIndex:0,ref:y.codeBlockRef,className:(0,i.Z)(t,N.codeBlock,"thin-scrollbar")},o.createElement("code",{className:(0,i.Z)(N.codeBlockLines,L&&N.codeBlockLinesWithNumbering)},n.map(((e,t)=>o.createElement(z,{key:t,line:e,getLineProps:a,getTokenProps:r,classNames:E[t],showLineNumbers:L})))))})),o.createElement("div",{className:N.buttonGroup},(y.isEnabled||y.isCodeScrollable)&&o.createElement(V,{className:N.codeButton,onClick:()=>y.toggle(),isEnabled:y.isEnabled}),o.createElement(W,{className:N.codeButton,code:C}))))}function q(e){let{children:t,...n}=e;const a=(0,l.Z)(),c=function(e){return o.Children.toArray(e).some((e=>(0,o.isValidElement)(e)))?e:Array.isArray(e)?e.join(""):e}(t),i="string"==typeof c?$:C;return o.createElement(i,(0,r.Z)({key:String(a)},n),c)}var F=n(39960);var U=n(86043);const G={details:"details_lb9f",isBrowser:"isBrowser_bmU9",collapsibleContent:"collapsibleContent_i85q"};function Y(e){return!!e&&("SUMMARY"===e.tagName||Y(e.parentElement))}function Q(e,t){return!!e&&(e===t||Q(e.parentElement,t))}function X(e){let{summary:t,children:n,...a}=e;const c=(0,l.Z)(),s=(0,o.useRef)(null),{collapsed:u,setCollapsed:m}=(0,U.u)({initialState:!a.open}),[d,p]=(0,o.useState)(a.open);return o.createElement("details",(0,r.Z)({},a,{ref:s,open:d,"data-collapsed":u,className:(0,i.Z)(G.details,c&&G.isBrowser,a.className),onMouseDown:e=>{Y(e.target)&&e.detail>1&&e.preventDefault()},onClick:e=>{e.stopPropagation();const t=e.target;Y(t)&&Q(t,s.current)&&(e.preventDefault(),u?(m(!1),p(!0)):m(!0))}}),t??o.createElement("summary",null,"Details"),o.createElement(U.z,{lazy:!1,collapsed:u,disableSSRStyle:!0,onCollapseTransitionEnd:e=>{m(e),p(!e)}},o.createElement("div",{className:G.collapsibleContent},n)))}const J={details:"details_b_Ee"},K="alert alert--info";function ee(e){let{...t}=e;return o.createElement(X,(0,r.Z)({},t,{className:(0,i.Z)(K,J.details,t.className)}))}var te=n(92503);function ne(e){return o.createElement(te.Z,e)}const oe={containsTaskList:"containsTaskList_mC6p"};const ae={img:"img_ev3q"};const re={admonition:"admonition_LlT9",admonitionHeading:"admonitionHeading_tbUL",admonitionIcon:"admonitionIcon_kALy",admonitionContent:"admonitionContent_S0QG"};const ce={note:{infimaClassName:"secondary",iconComponent:function(){return o.createElement("svg",{viewBox:"0 0 14 16"},o.createElement("path",{fillRule:"evenodd",d:"M6.3 5.69a.942.942 0 0 1-.28-.7c0-.28.09-.52.28-.7.19-.18.42-.28.7-.28.28 0 .52.09.7.28.18.19.28.42.28.7 0 .28-.09.52-.28.7a1 1 0 0 1-.7.3c-.28 0-.52-.11-.7-.3zM8 7.99c-.02-.25-.11-.48-.31-.69-.2-.19-.42-.3-.69-.31H6c-.27.02-.48.13-.69.31-.2.2-.3.44-.31.69h1v3c.02.27.11.5.31.69.2.2.42.31.69.31h1c.27 0 .48-.11.69-.31.2-.19.3-.42.31-.69H8V7.98v.01zM7 2.3c-3.14 0-5.7 2.54-5.7 5.68 0 3.14 2.56 5.7 5.7 5.7s5.7-2.55 5.7-5.7c0-3.15-2.56-5.69-5.7-5.69v.01zM7 .98c3.86 0 7 3.14 7 7s-3.14 7-7 7-7-3.12-7-7 3.14-7 7-7z"}))},label:o.createElement(M.Z,{id:"theme.admonition.note",description:"The default label used for the Note admonition (:::note)"},"note")},tip:{infimaClassName:"success",iconComponent:function(){return o.createElement("svg",{viewBox:"0 0 12 16"},o.createElement("path",{fillRule:"evenodd",d:"M6.5 0C3.48 0 1 2.19 1 5c0 .92.55 2.25 1 3 1.34 2.25 1.78 2.78 2 4v1h5v-1c.22-1.22.66-1.75 2-4 .45-.75 1-2.08 1-3 0-2.81-2.48-5-5.5-5zm3.64 7.48c-.25.44-.47.8-.67 1.11-.86 1.41-1.25 2.06-1.45 3.23-.02.05-.02.11-.02.17H5c0-.06 0-.13-.02-.17-.2-1.17-.59-1.83-1.45-3.23-.2-.31-.42-.67-.67-1.11C2.44 6.78 2 5.65 2 5c0-2.2 2.02-4 4.5-4 1.22 0 2.36.42 3.22 1.19C10.55 2.94 11 3.94 11 5c0 .66-.44 1.78-.86 2.48zM4 14h5c-.23 1.14-1.3 2-2.5 2s-2.27-.86-2.5-2z"}))},label:o.createElement(M.Z,{id:"theme.admonition.tip",description:"The default label used for the Tip admonition (:::tip)"},"tip")},danger:{infimaClassName:"danger",iconComponent:function(){return o.createElement("svg",{viewBox:"0 0 12 16"},o.createElement("path",{fillRule:"evenodd",d:"M5.05.31c.81 2.17.41 3.38-.52 4.31C3.55 5.67 1.98 6.45.9 7.98c-1.45 2.05-1.7 6.53 3.53 7.7-2.2-1.16-2.67-4.52-.3-6.61-.61 2.03.53 3.33 1.94 2.86 1.39-.47 2.3.53 2.27 1.67-.02.78-.31 1.44-1.13 1.81 3.42-.59 4.78-3.42 4.78-5.56 0-2.84-2.53-3.22-1.25-5.61-1.52.13-2.03 1.13-1.89 2.75.09 1.08-1.02 1.8-1.86 1.33-.67-.41-.66-1.19-.06-1.78C8.18 5.31 8.68 2.45 5.05.32L5.03.3l.02.01z"}))},label:o.createElement(M.Z,{id:"theme.admonition.danger",description:"The default label used for the Danger admonition (:::danger)"},"danger")},info:{infimaClassName:"info",iconComponent:function(){return o.createElement("svg",{viewBox:"0 0 14 16"},o.createElement("path",{fillRule:"evenodd",d:"M7 2.3c3.14 0 5.7 2.56 5.7 5.7s-2.56 5.7-5.7 5.7A5.71 5.71 0 0 1 1.3 8c0-3.14 2.56-5.7 5.7-5.7zM7 1C3.14 1 0 4.14 0 8s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm1 3H6v5h2V4zm0 6H6v2h2v-2z"}))},label:o.createElement(M.Z,{id:"theme.admonition.info",description:"The default label used for the Info admonition (:::info)"},"info")},caution:{infimaClassName:"warning",iconComponent:function(){return o.createElement("svg",{viewBox:"0 0 16 16"},o.createElement("path",{fillRule:"evenodd",d:"M8.893 1.5c-.183-.31-.52-.5-.887-.5s-.703.19-.886.5L.138 13.499a.98.98 0 0 0 0 1.001c.193.31.53.501.886.501h13.964c.367 0 .704-.19.877-.5a1.03 1.03 0 0 0 .01-1.002L8.893 1.5zm.133 11.497H6.987v-2.003h2.039v2.003zm0-3.004H6.987V5.987h2.039v4.006z"}))},label:o.createElement(M.Z,{id:"theme.admonition.caution",description:"The default label used for the Caution admonition (:::caution)"},"caution")}},le={secondary:"note",important:"info",success:"tip",warning:"danger"};function ie(e){const{mdxAdmonitionTitle:t,rest:n}=function(e){const t=o.Children.toArray(e),n=t.find((e=>o.isValidElement(e)&&"mdxAdmonitionTitle"===e.props?.mdxType)),a=o.createElement(o.Fragment,null,t.filter((e=>e!==n)));return{mdxAdmonitionTitle:n,rest:a}}(e.children);return{...e,title:e.title??t,children:n}}const se={head:function(e){const t=o.Children.map(e.children,(e=>o.isValidElement(e)?function(e){if(e.props?.mdxType&&e.props.originalType){const{mdxType:t,originalType:n,...a}=e.props;return o.createElement(e.props.originalType,a)}return e}(e):e));return o.createElement(c.Z,e,t)},code:function(e){const t=["a","abbr","b","br","button","cite","code","del","dfn","em","i","img","input","ins","kbd","label","object","output","q","ruby","s","small","span","strong","sub","sup","time","u","var","wbr"];return o.Children.toArray(e.children).every((e=>"string"==typeof e&&!e.includes("\n")||(0,o.isValidElement)(e)&&t.includes(e.props?.mdxType)))?o.createElement("code",e):o.createElement(q,e)},a:function(e){return o.createElement(F.Z,e)},pre:function(e){return o.createElement(q,(0,o.isValidElement)(e.children)&&"code"===e.children.props?.originalType?e.children.props:{...e})},details:function(e){const t=o.Children.toArray(e.children),n=t.find((e=>o.isValidElement(e)&&"summary"===e.props?.mdxType)),a=o.createElement(o.Fragment,null,t.filter((e=>e!==n)));return o.createElement(ee,(0,r.Z)({},e,{summary:n}),a)},ul:function(e){return o.createElement("ul",(0,r.Z)({},e,{className:(t=e.className,(0,i.Z)(t,t?.includes("contains-task-list")&&oe.containsTaskList))}));var t},img:function(e){return o.createElement("img",(0,r.Z)({loading:"lazy"},e,{className:(t=e.className,(0,i.Z)(t,ae.img))}));var t},h1:e=>o.createElement(ne,(0,r.Z)({as:"h1"},e)),h2:e=>o.createElement(ne,(0,r.Z)({as:"h2"},e)),h3:e=>o.createElement(ne,(0,r.Z)({as:"h3"},e)),h4:e=>o.createElement(ne,(0,r.Z)({as:"h4"},e)),h5:e=>o.createElement(ne,(0,r.Z)({as:"h5"},e)),h6:e=>o.createElement(ne,(0,r.Z)({as:"h6"},e)),admonition:function(e){const{children:t,type:n,title:a,icon:r}=ie(e),c=function(e){const t=le[e]??e,n=ce[t];return n||(console.warn(`No admonition config found for admonition type "${t}". Using Info as fallback.`),ce.info)}(n),l=a??c.label,{iconComponent:s}=c,u=r??o.createElement(s,null);return o.createElement("div",{className:(0,i.Z)(d.k.common.admonition,d.k.common.admonitionType(e.type),"alert",`alert--${c.infimaClassName}`,re.admonition)},o.createElement("div",{className:re.admonitionHeading},o.createElement("span",{className:re.admonitionIcon},u),l),o.createElement("div",{className:re.admonitionContent},t))},mermaid:()=>null};function ue(e){let{children:t}=e;return o.createElement(a.Zo,{components:se},t)}},93743:(e,t,n)=>{"use strict";n.d(t,{Z:()=>f});var o=n(87462),a=n(67294),r=n(86668);function c(e){const t=e.map((e=>({...e,parentIndex:-1,children:[]}))),n=Array(7).fill(-1);t.forEach(((e,t)=>{const o=n.slice(2,e.level);e.parentIndex=Math.max(...o),n[e.level]=t}));const o=[];return t.forEach((e=>{const{parentIndex:n,...a}=e;n>=0?t[n].children.push(a):o.push(a)})),o}function l(e){let{toc:t,minHeadingLevel:n,maxHeadingLevel:o}=e;return t.flatMap((e=>{const t=l({toc:e.children,minHeadingLevel:n,maxHeadingLevel:o});return function(e){return e.level>=n&&e.level<=o}(e)?[{...e,children:t}]:t}))}function i(e){const t=e.getBoundingClientRect();return t.top===t.bottom?i(e.parentNode):t}function s(e,t){let{anchorTopOffset:n}=t;const o=e.find((e=>i(e).top>=n));if(o){return function(e){return e.top>0&&e.bottom<window.innerHeight/2}(i(o))?o:e[e.indexOf(o)-1]??null}return e[e.length-1]??null}function u(){const e=(0,a.useRef)(0),{navbar:{hideOnScroll:t}}=(0,r.L)();return(0,a.useEffect)((()=>{e.current=t?0:document.querySelector(".navbar").clientHeight}),[t]),e}function m(e){const t=(0,a.useRef)(void 0),n=u();(0,a.useEffect)((()=>{if(!e)return()=>{};const{linkClassName:o,linkActiveClassName:a,minHeadingLevel:r,maxHeadingLevel:c}=e;function l(){const e=function(e){return Array.from(document.getElementsByClassName(e))}(o),l=function(e){let{minHeadingLevel:t,maxHeadingLevel:n}=e;const o=[];for(let a=t;a<=n;a+=1)o.push(`h${a}.anchor`);return Array.from(document.querySelectorAll(o.join()))}({minHeadingLevel:r,maxHeadingLevel:c}),i=s(l,{anchorTopOffset:n.current}),u=e.find((e=>i&&i.id===function(e){return decodeURIComponent(e.href.substring(e.href.indexOf("#")+1))}(e)));e.forEach((e=>{!function(e,n){n?(t.current&&t.current!==e&&t.current.classList.remove(a),e.classList.add(a),t.current=e):e.classList.remove(a)}(e,e===u)}))}return document.addEventListener("scroll",l),document.addEventListener("resize",l),l(),()=>{document.removeEventListener("scroll",l),document.removeEventListener("resize",l)}}),[e,n])}function d(e){let{toc:t,className:n,linkClassName:o,isChild:r}=e;return t.length?a.createElement("ul",{className:r?void 0:n},t.map((e=>a.createElement("li",{key:e.id},a.createElement("a",{href:`#${e.id}`,className:o??void 0,dangerouslySetInnerHTML:{__html:e.value}}),a.createElement(d,{isChild:!0,toc:e.children,className:n,linkClassName:o}))))):null}const p=a.memo(d);function f(e){let{toc:t,className:n="table-of-contents table-of-contents__left-border",linkClassName:i="table-of-contents__link",linkActiveClassName:s,minHeadingLevel:u,maxHeadingLevel:d,...f}=e;const h=(0,r.L)(),g=u??h.tableOfContents.minHeadingLevel,y=d??h.tableOfContents.maxHeadingLevel,v=function(e){let{toc:t,minHeadingLevel:n,maxHeadingLevel:o}=e;return(0,a.useMemo)((()=>l({toc:c(t),minHeadingLevel:n,maxHeadingLevel:o})),[t,n,o])}({toc:t,minHeadingLevel:g,maxHeadingLevel:y});return m((0,a.useMemo)((()=>{if(i&&s)return{linkClassName:i,linkActiveClassName:s,minHeadingLevel:g,maxHeadingLevel:y}}),[i,s,g,y])),a.createElement(p,(0,o.Z)({toc:v,className:n,linkClassName:i},f))}},39407:(e,t,n)=>{"use strict";n.d(t,{Z:()=>u});var o=n(87462),a=n(67294),r=n(86010),c=n(93743);const l={tableOfContents:"tableOfContents_bqdL",docItemContainer:"docItemContainer_F8PC"},i="table-of-contents__link toc-highlight",s="table-of-contents__link--active";function u(e){let{className:t,...n}=e;return a.createElement("div",{className:(0,r.Z)(l.tableOfContents,"thin-scrollbar",t)},a.createElement(c.Z,(0,o.Z)({},n,{linkClassName:i,linkActiveClassName:s})))}},87594:(e,t)=>{function n(e){let t,n=[];for(let o of e.split(",").map((e=>e.trim())))if(/^-?\d+$/.test(o))n.push(parseInt(o,10));else if(t=o.match(/^(-?\d+)(-|\.\.\.?|\u2025|\u2026|\u22EF)(-?\d+)$/)){let[e,o,a,r]=t;if(o&&r){o=parseInt(o),r=parseInt(r);const e=o<r?1:-1;"-"!==a&&".."!==a&&"\u2025"!==a||(r+=e);for(let t=o;t!==r;t+=e)n.push(t)}}return n}t.default=n,e.exports=n}}]); \ No newline at end of file diff --git a/assets/js/8deedfb8.0ecdcee4.js b/assets/js/8deedfb8.0ecdcee4.js new file mode 100644 index 0000000..7ff3466 --- /dev/null +++ b/assets/js/8deedfb8.0ecdcee4.js @@ -0,0 +1 @@ +"use strict";(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[556],{3905:(e,t,l)=>{l.d(t,{Zo:()=>p,kt:()=>m});var n=l(67294);function a(e,t,l){return t in e?Object.defineProperty(e,t,{value:l,enumerable:!0,configurable:!0,writable:!0}):e[t]=l,e}function i(e,t){var l=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),l.push.apply(l,n)}return l}function r(e){for(var t=1;t<arguments.length;t++){var l=null!=arguments[t]?arguments[t]:{};t%2?i(Object(l),!0).forEach((function(t){a(e,t,l[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(l)):i(Object(l)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(l,t))}))}return e}function d(e,t){if(null==e)return{};var l,n,a=function(e,t){if(null==e)return{};var l,n,a={},i=Object.keys(e);for(n=0;n<i.length;n++)l=i[n],t.indexOf(l)>=0||(a[l]=e[l]);return a}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)l=i[n],t.indexOf(l)>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(a[l]=e[l])}return a}var o=n.createContext({}),u=function(e){var t=n.useContext(o),l=t;return e&&(l="function"==typeof e?e(t):r(r({},t),e)),l},p=function(e){var t=u(e.components);return n.createElement(o.Provider,{value:t},e.children)},h="mdxType",s={inlineCode:"code",wrapper:function(e){var t=e.children;return n.createElement(n.Fragment,{},t)}},k=n.forwardRef((function(e,t){var l=e.components,a=e.mdxType,i=e.originalType,o=e.parentName,p=d(e,["components","mdxType","originalType","parentName"]),h=u(l),k=a,m=h["".concat(o,".").concat(k)]||h[k]||s[k]||i;return l?n.createElement(m,r(r({ref:t},p),{},{components:l})):n.createElement(m,r({ref:t},p))}));function m(e,t){var l=arguments,a=t&&t.mdxType;if("string"==typeof e||a){var i=l.length,r=new Array(i);r[0]=k;var d={};for(var o in t)hasOwnProperty.call(t,o)&&(d[o]=t[o]);d.originalType=e,d[h]="string"==typeof e?e:a,r[1]=d;for(var u=2;u<i;u++)r[u]=l[u];return n.createElement.apply(null,r)}return n.createElement.apply(null,l)}k.displayName="MDXCreateElement"},26437:(e,t,l)=>{l.r(t),l.d(t,{contentTitle:()=>r,default:()=>h,frontMatter:()=>i,metadata:()=>d,toc:()=>o});var n=l(87462),a=(l(67294),l(3905));const i={},r="Changelog",d={type:"mdx",permalink:"/YetAnotherNet/CHANGELOG",source:"@site/pages/CHANGELOG.md",title:"Changelog",description:"All notable changes to this project will be documented in this file.",frontMatter:{}},o=[{value:"Unreleased",id:"unreleased",level:2},{value:"Added",id:"added",level:3},{value:"Changed",id:"changed",level:3},{value:"Fixed",id:"fixed",level:3},{value:"0.7.0 - 2024-01-02",id:"070---2024-01-02",level:2},{value:"Added",id:"added-1",level:3},{value:"Changed",id:"changed-1",level:3},{value:"Fixed",id:"fixed-1",level:3},{value:"0.6.0 - 2023-12-14",id:"060---2023-12-14",level:2},{value:"Added",id:"added-2",level:3},{value:"Changed",id:"changed-2",level:3},{value:"Fixed",id:"fixed-2",level:3},{value:"0.5.0 - 2023-11-30",id:"050---2023-11-30",level:2},{value:"Added",id:"added-3",level:3},{value:"Changed",id:"changed-3",level:3},{value:"0.4.0 - 2023-11-27",id:"040---2023-11-27",level:2},{value:"Changed",id:"changed-4",level:3},{value:"Fixed",id:"fixed-3",level:3},{value:"0.3.0 - 2023-09-20",id:"030---2023-09-20",level:2},{value:"Added",id:"added-4",level:3},{value:"Removed",id:"removed",level:3},{value:"0.2.5 - 2023-09-12",id:"025---2023-09-12",level:2},{value:"Fixed",id:"fixed-4",level:3},{value:"0.2.4 - 2023-08-28",id:"024---2023-08-28",level:2},{value:"Fixed",id:"fixed-5",level:3},{value:"0.2.3 - 2023-08-28",id:"023---2023-08-28",level:2},{value:"Changed",id:"changed-5",level:3},{value:"Fixed",id:"fixed-6",level:3},{value:"0.2.2 - 2023-07-17",id:"022---2023-07-17",level:2},{value:"Changed",id:"changed-6",level:3},{value:"Fixed",id:"fixed-7",level:3},{value:"0.2.1 - 2023-07-3",id:"021---2023-07-3",level:2},{value:"Changed",id:"changed-7",level:3},{value:"Fixed",id:"fixed-8",level:3},{value:"0.2.0 - 2023-06-21",id:"020---2023-06-21",level:2},{value:"Added",id:"added-5",level:3},{value:"Fixed",id:"fixed-9",level:3},{value:"0.1.1 - 2023-06-16",id:"011---2023-06-16",level:2},{value:"Added",id:"added-6",level:3},{value:"Changed",id:"changed-8",level:3},{value:"Fixed",id:"fixed-10",level:3}],u={toc:o},p="wrapper";function h(e){let{components:t,...l}=e;return(0,a.kt)(p,(0,n.Z)({},u,l,{components:t,mdxType:"MDXLayout"}),(0,a.kt)("h1",{id:"changelog"},"Changelog"),(0,a.kt)("p",null,"All notable changes to this project will be documented in this file."),(0,a.kt)("p",null,"The format is based on ",(0,a.kt)("a",{parentName:"p",href:"https://keepachangelog.com/en/1.0.0/"},"Keep a Changelog"),",\nand this project adheres to ",(0,a.kt)("a",{parentName:"p",href:"https://semver.org/spec/v2.0.0.html"},"Semantic Versioning"),"."),(0,a.kt)("h2",{id:"unreleased"},"[Unreleased]"),(0,a.kt)("h3",{id:"added"},"Added"),(0,a.kt)("ul",null,(0,a.kt)("li",{parentName:"ul"},"Unit tests with Jest",(0,a.kt)("ul",{parentName:"li"},(0,a.kt)("li",{parentName:"ul"},"For Identifier"),(0,a.kt)("li",{parentName:"ul"},"For SendRequest"),(0,a.kt)("li",{parentName:"ul"},"For QueryResult"))),(0,a.kt)("li",{parentName:"ul"},"Bridge, Player, and RemoteEvent Mocking")),(0,a.kt)("h3",{id:"changed"},"Changed"),(0,a.kt)("ul",null,(0,a.kt)("li",{parentName:"ul"},"Updated Rojo to v7.4.0")),(0,a.kt)("h3",{id:"fixed"},"Fixed"),(0,a.kt)("ul",null,(0,a.kt)("li",{parentName:"ul"},"QueryResult does not filter senders"),(0,a.kt)("li",{parentName:"ul"},"Incorrect types for Incoming Middleware"),(0,a.kt)("li",{parentName:"ul"},"Incorrect and inconsistent Roblox-TS Types")),(0,a.kt)("h2",{id:"070---2024-01-02"},"[0.7.0]"," - 2024-01-02"),(0,a.kt)("h3",{id:"added-1"},"Added"),(0,a.kt)("ul",null,(0,a.kt)("li",{parentName:"ul"},"Roblox Typescript API")),(0,a.kt)("h3",{id:"changed-1"},"Changed"),(0,a.kt)("ul",null,(0,a.kt)("li",{parentName:"ul"},"Module now returns a Namespace"),(0,a.kt)("li",{parentName:"ul"},"Middleware now uses two separate functions instead of configuration"),(0,a.kt)("li",{parentName:"ul"},"Refactored internals"),(0,a.kt)("li",{parentName:"ul"},"Improved implementation of a default channel")),(0,a.kt)("h3",{id:"fixed-1"},"Fixed"),(0,a.kt)("ul",null,(0,a.kt)("li",{parentName:"ul"},"Channel Validation fails when Channel is Unreliable"),(0,a.kt)("li",{parentName:"ul"},"QueryResult returns the incorrect position")),(0,a.kt)("h2",{id:"060---2023-12-14"},"[0.6.0]"," - 2023-12-14"),(0,a.kt)("h3",{id:"added-2"},"Added"),(0,a.kt)("ul",null,(0,a.kt)("li",{parentName:"ul"},"Middleware")),(0,a.kt)("h3",{id:"changed-2"},"Changed"),(0,a.kt)("ul",null,(0,a.kt)("li",{parentName:"ul"},"Complete overhaul of the Documentation site")),(0,a.kt)("h3",{id:"fixed-2"},"Fixed"),(0,a.kt)("ul",null,(0,a.kt)("li",{parentName:"ul"},"Incoming packets do not respect their channel")),(0,a.kt)("h2",{id:"050---2023-11-30"},"[0.5.0]"," - 2023-11-30"),(0,a.kt)("h3",{id:"added-3"},"Added"),(0,a.kt)("ul",null,(0,a.kt)("li",{parentName:"ul"},"New Routes API"),(0,a.kt)("li",{parentName:"ul"},"Strict Typing"),(0,a.kt)("li",{parentName:"ul"},"Unreliable Channel"),(0,a.kt)("li",{parentName:"ul"},"Hooks")),(0,a.kt)("h3",{id:"changed-3"},"Changed"),(0,a.kt)("ul",null,(0,a.kt)("li",{parentName:"ul"},"Complete API Overhaul")),(0,a.kt)("h2",{id:"040---2023-11-27"},"[0.4.0]"," - 2023-11-27"),(0,a.kt)("h3",{id:"changed-4"},"Changed"),(0,a.kt)("ul",null,(0,a.kt)("li",{parentName:"ul"},"Rewrote ",(0,a.kt)("inlineCode",{parentName:"li"},"Net:query()")," to use the new ",(0,a.kt)("inlineCode",{parentName:"li"},"QueryResult")," type"),(0,a.kt)("li",{parentName:"ul"},"Rewrote ",(0,a.kt)("inlineCode",{parentName:"li"},"Net:send()")," to use the new ",(0,a.kt)("inlineCode",{parentName:"li"},"SendRequest")," type"),(0,a.kt)("li",{parentName:"ul"},"Exported and internal types are now more strict and are just generally improved")),(0,a.kt)("h3",{id:"fixed-3"},"Fixed"),(0,a.kt)("ul",null,(0,a.kt)("li",{parentName:"ul"},(0,a.kt)("inlineCode",{parentName:"li"},"Priority")," artifacts in documentation"),(0,a.kt)("li",{parentName:"ul"},"Matter example game has outdated paths"),(0,a.kt)("li",{parentName:"ul"},"Matter example game Replication & Formatting (#3)"),(0,a.kt)("li",{parentName:"ul"},"Rojo deletes Remotes when live-syncing (#4)")),(0,a.kt)("h2",{id:"030---2023-09-20"},"[0.3.0]"," - 2023-09-20"),(0,a.kt)("h3",{id:"added-4"},"Added"),(0,a.kt)("ul",null,(0,a.kt)("li",{parentName:"ul"},"Matter Example Game AttackOfTheKillerRoombas, adapted from the official Matter Example Game."),(0,a.kt)("li",{parentName:"ul"},"TestEZ Unit Tests to separate branch")),(0,a.kt)("h3",{id:"removed"},"Removed"),(0,a.kt)("ul",null,(0,a.kt)("li",{parentName:"ul"},"Removed the ",(0,a.kt)("inlineCode",{parentName:"li"},"ReliableOrdered")," and ",(0,a.kt)("inlineCode",{parentName:"li"},"ReliableUnordered")," Channels in favor for the new ",(0,a.kt)("inlineCode",{parentName:"li"},"Reliable")," Channel. ReliableUnordered already sent and received packets in order, rendering ReliableOrdered useless and wasteful.")),(0,a.kt)("h2",{id:"025---2023-09-12"},"[0.2.5]"," - 2023-09-12"),(0,a.kt)("h3",{id:"fixed-4"},"Fixed"),(0,a.kt)("ul",null,(0,a.kt)("li",{parentName:"ul"},"Query never filters Players, typecheck would always fail because ",(0,a.kt)("inlineCode",{parentName:"li"},"typeof(Player)")," returns ",(0,a.kt)("inlineCode",{parentName:"li"},"Instance")),(0,a.kt)("li",{parentName:"ul"},"Query filtering all Players on the server when no Player was given in the QueryParams")),(0,a.kt)("h2",{id:"024---2023-08-28"},"[0.2.4]"," - 2023-08-28"),(0,a.kt)("h3",{id:"fixed-5"},"Fixed"),(0,a.kt)("ul",null,(0,a.kt)("li",{parentName:"ul"},"Middleware in the ",(0,a.kt)("inlineCode",{parentName:"li"},"start")," method runs only once every two frames"),(0,a.kt)("li",{parentName:"ul"},"Iterator filter fails to properly filter key-value pairs by @IntegralsGetYouArea in ",(0,a.kt)("a",{parentName:"li",href:"https://github.com/YetAnotherClown/Net/pull/1"},"https://github.com/YetAnotherClown/Net/pull/1")),(0,a.kt)("li",{parentName:"ul"},"Iterator filter should also take a key with it's value"),(0,a.kt)("li",{parentName:"ul"},"Identifiers always have the same position when the ",(0,a.kt)("inlineCode",{parentName:"li"},"pos")," parameter is not given")),(0,a.kt)("h2",{id:"023---2023-08-28"},"[0.2.3]"," - 2023-08-28"),(0,a.kt)("h3",{id:"changed-5"},"Changed"),(0,a.kt)("ul",null,(0,a.kt)("li",{parentName:"ul"},"Updated the Getting Started page in Documentation to highlight the need to setup on both the Server and Client with the same configuration.")),(0,a.kt)("h3",{id:"fixed-6"},"Fixed"),(0,a.kt)("ul",null,(0,a.kt)("li",{parentName:"ul"},"The typecheck in Bridge when processing the outgoing queue always fails when the recipient is of type Player.")),(0,a.kt)("h2",{id:"022---2023-07-17"},"[0.2.2]"," - 2023-07-17"),(0,a.kt)("h3",{id:"changed-6"},"Changed"),(0,a.kt)("ul",null,(0,a.kt)("li",{parentName:"ul"},"Internal Naming of Functions for support for Roblox Debugging tools such as ScriptProfiler.")),(0,a.kt)("h3",{id:"fixed-7"},"Fixed"),(0,a.kt)("ul",null,(0,a.kt)("li",{parentName:"ul"},"The iterator always defaulting to sending all packet information regardless if an ",(0,a.kt)("inlineCode",{parentName:"li"},"returnFilter")," was provided."),(0,a.kt)("li",{parentName:"ul"},(0,a.kt)("inlineCode",{parentName:"li"},"Net:query()")," returning the Sender on Clients despite the Sender always being known on the Client as ",(0,a.kt)("inlineCode",{parentName:"li"},"Net.Server"),"."),(0,a.kt)("li",{parentName:"ul"},"The internal filter of ",(0,a.kt)("inlineCode",{parentName:"li"},"Net:query()")," never returning the Sender when type ",(0,a.kt)("inlineCode",{parentName:"li"},"{ Player }")," is provided as a QueryParam and only one ",(0,a.kt)("inlineCode",{parentName:"li"},"Player")," has sent packets."),(0,a.kt)("li",{parentName:"ul"},"The internal filter of ",(0,a.kt)("inlineCode",{parentName:"li"},"Net:query()")," filtering out Server Packets on the Client."),(0,a.kt)("li",{parentName:"ul"},"The internal ",(0,a.kt)("inlineCode",{parentName:"li"},"QueryParams")," Parser mistaking the ",(0,a.kt)("inlineCode",{parentName:"li"},"Net.Server")," Recipient as an Identifier.")),(0,a.kt)("h2",{id:"021---2023-07-3"},"[0.2.1]"," - 2023-07-3"),(0,a.kt)("h3",{id:"changed-7"},"Changed"),(0,a.kt)("ul",null,(0,a.kt)("li",{parentName:"ul"},(0,a.kt)("inlineCode",{parentName:"li"},"Net:start()")," now utilizes middleware in Matter to schedule networking code.")),(0,a.kt)("h3",{id:"fixed-8"},"Fixed"),(0,a.kt)("ul",null,(0,a.kt)("li",{parentName:"ul"},"Minor issues in the Documentation.")),(0,a.kt)("h2",{id:"020---2023-06-21"},"[0.2.0]"," - 2023-06-21"),(0,a.kt)("h3",{id:"added-5"},"Added"),(0,a.kt)("ul",null,(0,a.kt)("li",{parentName:"ul"},"Configuration for Event, Priority, and the ReliableOrdered & ReliableUnordered Channels."),(0,a.kt)("li",{parentName:"ul"},"ReliableUnordered Channel")),(0,a.kt)("h3",{id:"fixed-9"},"Fixed"),(0,a.kt)("ul",null,(0,a.kt)("li",{parentName:"ul"},"Bridge using the wrong RemoteEvents.")),(0,a.kt)("h2",{id:"011---2023-06-16"},"[0.1.1]"," - 2023-06-16"),(0,a.kt)("h3",{id:"added-6"},"Added"),(0,a.kt)("ul",null,(0,a.kt)("li",{parentName:"ul"},(0,a.kt)("inlineCode",{parentName:"li"},"SendParams")," to the ",(0,a.kt)("inlineCode",{parentName:"li"},"Net:send()")," method. See the documentation on ",(0,a.kt)("a",{parentName:"li",href:"https://yetanotherclown.github.io/Net/docs/handling-data/sending-data"},"Sending Data")," for information on how to use them."),(0,a.kt)("li",{parentName:"ul"},"Guard Clauses and associated Warnings to the ",(0,a.kt)("inlineCode",{parentName:"li"},"Bridge:send()")," method to prevent incorrect data entering the queue."),(0,a.kt)("li",{parentName:"ul"},(0,a.kt)("inlineCode",{parentName:"li"},"Net.Server")," key to represent the key associated with the Server.")),(0,a.kt)("h3",{id:"changed-8"},"Changed"),(0,a.kt)("ul",null,(0,a.kt)("li",{parentName:"ul"},"Internal Configuration type to reflect the appropriate Channel types.")),(0,a.kt)("h3",{id:"fixed-10"},"Fixed"),(0,a.kt)("ul",null,(0,a.kt)("li",{parentName:"ul"},"Bridge creating an additional RemoteEvent that is never used."),(0,a.kt)("li",{parentName:"ul"},"Linguist Syntax Highlighting and Language Stats.")))}h.isMDXComponent=!0}}]); \ No newline at end of file diff --git a/assets/js/main.0795cfb3.js b/assets/js/main.0795cfb3.js new file mode 100644 index 0000000..e48a8c1 --- /dev/null +++ b/assets/js/main.0795cfb3.js @@ -0,0 +1,2 @@ +/*! For license information please see main.0795cfb3.js.LICENSE.txt */ +(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[179],{723:(e,t,n)=>{"use strict";n.d(t,{Z:()=>p});var r=n(67294),a=n(87462),o=n(68356),i=n.n(o),l=n(16887);const s={"07e366dd":[()=>Promise.all([n.e(532),n.e(959)]).then(n.bind(n,65701)),"@site/docs/getting-started/routes.mdx",65701],"0e384e19":[()=>n.e(671).then(n.bind(n,59881)),"@site/docs/intro.md",59881],"10069cb2":[()=>Promise.all([n.e(532),n.e(54)]).then(n.bind(n,95033)),"@site/docs/getting-started/middleware.mdx",95033],"12579bbd":[()=>Promise.all([n.e(532),n.e(549)]).then(n.bind(n,81117)),"C:\\Users\\thefa\\AppData\\Local\\moonwave\\Cache\\YetAnotherNet\\node_modules\\docusaurus-plugin-moonwave\\src\\components\\LuaClass.js",81117],"136137d4":[()=>Promise.all([n.e(532),n.e(771)]).then(n.bind(n,76253)),"@site/docs/getting-started/hooks.mdx",76253],16750545:[()=>n.e(661).then(n.t.bind(n,95569,19)),"C:\\Users\\thefa\\AppData\\Local\\moonwave\\Cache\\YetAnotherNet\\.docusaurus\\docusaurus-plugin-moonwave\\moonwave\\Net-toc.json",95569],17896441:[()=>Promise.all([n.e(532),n.e(289),n.e(918)]).then(n.bind(n,15462)),"@theme/DocItem",15462],"1be78505":[()=>Promise.all([n.e(532),n.e(514)]).then(n.bind(n,90606)),"@theme/DocPage",90606],"1d56ba4b":[()=>n.e(836).then(n.t.bind(n,85492,19)),"C:\\Users\\thefa\\AppData\\Local\\moonwave\\Cache\\YetAnotherNet\\.docusaurus\\docusaurus-plugin-moonwave\\moonwave\\typeLinks.json",85492],"1f391b9e":[()=>Promise.all([n.e(532),n.e(289),n.e(85)]).then(n.bind(n,14247)),"@theme/MDXPage",14247],"203435e1":[()=>n.e(670).then(n.t.bind(n,80827,19)),"C:\\Users\\thefa\\AppData\\Local\\moonwave\\Cache\\YetAnotherNet\\.docusaurus\\docusaurus-plugin-moonwave\\moonwave\\Route.json",80827],"3af131fb":[()=>n.e(354).then(n.t.bind(n,62497,19)),"C:\\Users\\thefa\\AppData\\Local\\moonwave\\Cache\\YetAnotherNet\\.docusaurus\\docusaurus-plugin-moonwave\\moonwave\\Route-toc.json",62497],"3efd06ed":[()=>n.e(785).then(n.t.bind(n,75797,19)),"C:\\Users\\thefa\\AppData\\Local\\moonwave\\Cache\\YetAnotherNet\\.docusaurus\\docusaurus-plugin-moonwave\\moonwave\\QueryResult.json",75797],"40568db5":[()=>n.e(275).then(n.t.bind(n,83769,19)),"C:\\Users\\thefa\\AppData\\Local\\moonwave\\Cache\\YetAnotherNet\\.docusaurus\\docusaurus-plugin-content-docs\\default\\plugin-route-context-module-100.json",83769],"40ed88ed":[()=>n.e(473).then(n.t.bind(n,63891,19)),"C:\\Users\\thefa\\AppData\\Local\\moonwave\\Cache\\YetAnotherNet\\.docusaurus\\docusaurus-plugin-moonwave\\moonwave\\options.json",63891],"47263fc8":[()=>n.e(293).then(n.t.bind(n,24777,19)),"C:\\Users\\thefa\\AppData\\Local\\moonwave\\Cache\\YetAnotherNet\\.docusaurus\\docusaurus-plugin-moonwave\\moonwave\\Loop-toc.json",24777],"4ece04dd":[()=>n.e(345).then(n.t.bind(n,64760,19)),"C:\\Users\\thefa\\AppData\\Local\\moonwave\\Cache\\YetAnotherNet\\.docusaurus\\docusaurus-plugin-moonwave\\moonwave\\Net.json",64760],"5e9f5e1a":[()=>Promise.resolve().then(n.bind(n,36809)),"@generated/docusaurus.config",36809],"65c42d40":[()=>Promise.all([n.e(532),n.e(331)]).then(n.bind(n,53029)),"@site/docs/setup/other.mdx",53029],"8deedfb8":[()=>n.e(556).then(n.bind(n,26437)),"@site/pages/CHANGELOG.md",26437],"935f2afb":[()=>n.e(53).then(n.t.bind(n,1109,19)),"~docs/default/version-current-metadata-prop-751.json",1109],ab90f3a6:[()=>n.e(201).then(n.t.bind(n,60826,19)),"C:\\Users\\thefa\\AppData\\Local\\moonwave\\Cache\\YetAnotherNet\\.docusaurus\\docusaurus-plugin-moonwave\\moonwave\\Loop.json",60826],b6823f28:[()=>n.e(676).then(n.t.bind(n,15745,19)),"C:\\Users\\thefa\\AppData\\Local\\moonwave\\Cache\\YetAnotherNet\\.docusaurus\\docusaurus-plugin-content-pages\\default\\plugin-route-context-module-100.json",15745],b96e1a06:[()=>n.e(255).then(n.t.bind(n,53283,19)),"C:\\Users\\thefa\\AppData\\Local\\moonwave\\Cache\\YetAnotherNet\\.docusaurus\\docusaurus-plugin-moonwave\\moonwave\\QueryResult-toc.json",53283],d3874e59:[()=>Promise.all([n.e(532),n.e(374)]).then(n.bind(n,52897)),"@site/pages/index.js",52897],d39e7a11:[()=>n.e(827).then(n.t.bind(n,88653,19)),"C:\\Users\\thefa\\AppData\\Local\\moonwave\\Cache\\YetAnotherNet\\.docusaurus\\docusaurus-plugin-moonwave\\moonwave\\SendRequest.json",88653],d652b126:[()=>n.e(635).then(n.t.bind(n,88303,19)),"C:\\Users\\thefa\\AppData\\Local\\moonwave\\Cache\\YetAnotherNet\\.docusaurus\\docusaurus-plugin-moonwave\\moonwave\\plugin-route-context-module-100.json",88303],eea81e43:[()=>n.e(928).then(n.t.bind(n,83522,19)),"C:\\Users\\thefa\\AppData\\Local\\moonwave\\Cache\\YetAnotherNet\\.docusaurus\\docusaurus-plugin-moonwave\\moonwave\\SendRequest-toc.json",83522],f14628b2:[()=>Promise.all([n.e(532),n.e(970)]).then(n.bind(n,48755)),"@site/docs/setup/matter.mdx",48755],f1be467e:[()=>n.e(23).then(n.bind(n,23424)),"C:\\Users\\thefa\\AppData\\Local\\moonwave\\Cache\\YetAnotherNet\\node_modules\\docusaurus-plugin-moonwave\\src\\components\\Redirect.js",23424],f23d5c98:[()=>n.e(753).then(n.bind(n,25283)),"@site/docs/setup/ecr.md",25283],fae45763:[()=>n.e(844).then(n.t.bind(n,7636,19)),"C:\\Users\\thefa\\AppData\\Local\\moonwave\\Cache\\YetAnotherNet\\.docusaurus\\docusaurus-plugin-moonwave\\moonwave\\sidebar.json",7636]};function u(e){let{error:t,retry:n,pastDelay:a}=e;return t?r.createElement("div",{style:{textAlign:"center",color:"#fff",backgroundColor:"#fa383e",borderColor:"#fa383e",borderStyle:"solid",borderRadius:"0.25rem",borderWidth:"1px",boxSizing:"border-box",display:"block",padding:"1rem",flex:"0 0 50%",marginLeft:"25%",marginRight:"25%",marginTop:"5rem",maxWidth:"50%",width:"100%"}},r.createElement("p",null,String(t)),r.createElement("div",null,r.createElement("button",{type:"button",onClick:n},"Retry"))):a?r.createElement("div",{style:{display:"flex",justifyContent:"center",alignItems:"center",height:"100vh"}},r.createElement("svg",{id:"loader",style:{width:128,height:110,position:"absolute",top:"calc(100vh - 64%)"},viewBox:"0 0 45 45",xmlns:"http://www.w3.org/2000/svg",stroke:"#61dafb"},r.createElement("g",{fill:"none",fillRule:"evenodd",transform:"translate(1 1)",strokeWidth:"2"},r.createElement("circle",{cx:"22",cy:"22",r:"6",strokeOpacity:"0"},r.createElement("animate",{attributeName:"r",begin:"1.5s",dur:"3s",values:"6;22",calcMode:"linear",repeatCount:"indefinite"}),r.createElement("animate",{attributeName:"stroke-opacity",begin:"1.5s",dur:"3s",values:"1;0",calcMode:"linear",repeatCount:"indefinite"}),r.createElement("animate",{attributeName:"stroke-width",begin:"1.5s",dur:"3s",values:"2;0",calcMode:"linear",repeatCount:"indefinite"})),r.createElement("circle",{cx:"22",cy:"22",r:"6",strokeOpacity:"0"},r.createElement("animate",{attributeName:"r",begin:"3s",dur:"3s",values:"6;22",calcMode:"linear",repeatCount:"indefinite"}),r.createElement("animate",{attributeName:"stroke-opacity",begin:"3s",dur:"3s",values:"1;0",calcMode:"linear",repeatCount:"indefinite"}),r.createElement("animate",{attributeName:"stroke-width",begin:"3s",dur:"3s",values:"2;0",calcMode:"linear",repeatCount:"indefinite"})),r.createElement("circle",{cx:"22",cy:"22",r:"8"},r.createElement("animate",{attributeName:"r",begin:"0s",dur:"1.5s",values:"6;1;2;3;4;5;6",calcMode:"linear",repeatCount:"indefinite"}))))):null}var c=n(99670),d=n(30226);function f(e,t){if("*"===e)return i()({loading:u,loader:()=>n.e(972).then(n.bind(n,4972)),modules:["@theme/NotFound"],webpack:()=>[4972],render(e,t){const n=e.default;return r.createElement(d.z,{value:{plugin:{name:"native",id:"default"}}},r.createElement(n,t))}});const o=l[`${e}-${t}`],f={},p=[],m=[],h=(0,c.Z)(o);return Object.entries(h).forEach((e=>{let[t,n]=e;const r=s[n];r&&(f[t]=r[0],p.push(r[1]),m.push(r[2]))})),i().Map({loading:u,loader:f,modules:p,webpack:()=>m,render(t,n){const i=JSON.parse(JSON.stringify(o));Object.entries(t).forEach((t=>{let[n,r]=t;const a=r.default;if(!a)throw new Error(`The page component at ${e} doesn't have a default export. This makes it impossible to render anything. Consider default-exporting a React component.`);"object"!=typeof a&&"function"!=typeof a||Object.keys(r).filter((e=>"default"!==e)).forEach((e=>{a[e]=r[e]}));let o=i;const l=n.split(".");l.slice(0,-1).forEach((e=>{o=o[e]})),o[l[l.length-1]]=a}));const l=i.__comp;delete i.__comp;const s=i.__context;return delete i.__context,r.createElement(d.z,{value:s},r.createElement(l,(0,a.Z)({},i,n)))}})}const p=[{path:"/YetAnotherNet/api/",component:f("/YetAnotherNet/api/","db9"),exact:!0},{path:"/YetAnotherNet/api/Loop",component:f("/YetAnotherNet/api/Loop","b88"),exact:!0},{path:"/YetAnotherNet/api/Net",component:f("/YetAnotherNet/api/Net","693"),exact:!0},{path:"/YetAnotherNet/api/QueryResult",component:f("/YetAnotherNet/api/QueryResult","093"),exact:!0},{path:"/YetAnotherNet/api/Route",component:f("/YetAnotherNet/api/Route","63b"),exact:!0},{path:"/YetAnotherNet/api/SendRequest",component:f("/YetAnotherNet/api/SendRequest","847"),exact:!0},{path:"/YetAnotherNet/CHANGELOG",component:f("/YetAnotherNet/CHANGELOG","1fc"),exact:!0},{path:"/YetAnotherNet/docs",component:f("/YetAnotherNet/docs","983"),routes:[{path:"/YetAnotherNet/docs/getting-started/hooks",component:f("/YetAnotherNet/docs/getting-started/hooks","55d"),exact:!0,sidebar:"defaultSidebar"},{path:"/YetAnotherNet/docs/getting-started/middleware",component:f("/YetAnotherNet/docs/getting-started/middleware","a58"),exact:!0,sidebar:"defaultSidebar"},{path:"/YetAnotherNet/docs/getting-started/routes",component:f("/YetAnotherNet/docs/getting-started/routes","75a"),exact:!0,sidebar:"defaultSidebar"},{path:"/YetAnotherNet/docs/intro",component:f("/YetAnotherNet/docs/intro","d90"),exact:!0,sidebar:"defaultSidebar"},{path:"/YetAnotherNet/docs/setup/ecr",component:f("/YetAnotherNet/docs/setup/ecr","b05"),exact:!0,sidebar:"defaultSidebar"},{path:"/YetAnotherNet/docs/setup/matter",component:f("/YetAnotherNet/docs/setup/matter","d0b"),exact:!0,sidebar:"defaultSidebar"},{path:"/YetAnotherNet/docs/setup/other",component:f("/YetAnotherNet/docs/setup/other","06d"),exact:!0,sidebar:"defaultSidebar"}]},{path:"/YetAnotherNet/",component:f("/YetAnotherNet/","613"),exact:!0},{path:"*",component:f("*")}]},98934:(e,t,n)=>{"use strict";n.d(t,{_:()=>a,t:()=>o});var r=n(67294);const a=r.createContext(!1);function o(e){let{children:t}=e;const[n,o]=(0,r.useState)(!1);return(0,r.useEffect)((()=>{o(!0)}),[]),r.createElement(a.Provider,{value:n},t)}},49383:(e,t,n)=>{"use strict";var r=n(67294),a=n(73935),o=n(73727),i=n(70405),l=n(10412);const s=[n(32497),n(3310),n(18320),n(34197)];var u=n(723),c=n(16550),d=n(18790);function f(e){let{children:t}=e;return r.createElement(r.Fragment,null,t)}var p=n(87462),m=n(35742),h=n(52263),g=n(44996),b=n(86668),v=n(1944),y=n(94711),w=n(19727),E=n(43320),k=n(90197);function S(){const{i18n:{defaultLocale:e,localeConfigs:t}}=(0,h.Z)(),n=(0,y.l)();return r.createElement(m.Z,null,Object.entries(t).map((e=>{let[t,{htmlLang:a}]=e;return r.createElement("link",{key:t,rel:"alternate",href:n.createUrl({locale:t,fullyQualified:!0}),hrefLang:a})})),r.createElement("link",{rel:"alternate",href:n.createUrl({locale:e,fullyQualified:!0}),hrefLang:"x-default"}))}function x(e){let{permalink:t}=e;const{siteConfig:{url:n}}=(0,h.Z)(),a=function(){const{siteConfig:{url:e}}=(0,h.Z)(),{pathname:t}=(0,c.TH)();return e+(0,g.Z)(t)}(),o=t?`${n}${t}`:a;return r.createElement(m.Z,null,r.createElement("meta",{property:"og:url",content:o}),r.createElement("link",{rel:"canonical",href:o}))}function C(){const{i18n:{currentLocale:e}}=(0,h.Z)(),{metadata:t,image:n}=(0,b.L)();return r.createElement(r.Fragment,null,r.createElement(m.Z,null,r.createElement("meta",{name:"twitter:card",content:"summary_large_image"}),r.createElement("body",{className:w.h})),n&&r.createElement(v.d,{image:n}),r.createElement(x,null),r.createElement(S,null),r.createElement(k.Z,{tag:E.HX,locale:e}),r.createElement(m.Z,null,t.map(((e,t)=>r.createElement("meta",(0,p.Z)({key:t},e))))))}const _=new Map;function T(e){if(_.has(e.pathname))return{...e,pathname:_.get(e.pathname)};if((0,d.f)(u.Z,e.pathname).some((e=>{let{route:t}=e;return!0===t.exact})))return _.set(e.pathname,e.pathname),e;const t=e.pathname.trim().replace(/(?:\/index)?\.html$/,"")||"/";return _.set(e.pathname,t),{...e,pathname:t}}var A=n(98934),N=n(58940);function L(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];const a=s.map((t=>{const r=t.default?.[e]??t[e];return r?.(...n)}));return()=>a.forEach((e=>e?.()))}const O=function(e){let{children:t,location:n,previousLocation:a}=e;return(0,r.useLayoutEffect)((()=>{a!==n&&(!function(e){let{location:t,previousLocation:n}=e;if(!n)return;const r=t.pathname===n.pathname,a=t.hash===n.hash,o=t.search===n.search;if(r&&a&&!o)return;const{hash:i}=t;if(i){const e=decodeURIComponent(i.substring(1)),t=document.getElementById(e);t?.scrollIntoView()}else window.scrollTo(0,0)}({location:n,previousLocation:a}),L("onRouteDidUpdate",{previousLocation:a,location:n}))}),[a,n]),t};function P(e){const t=Array.from(new Set([e,decodeURI(e)])).map((e=>(0,d.f)(u.Z,e))).flat();return Promise.all(t.map((e=>e.route.component.preload?.())))}class R extends r.Component{constructor(e){super(e),this.previousLocation=void 0,this.routeUpdateCleanupCb=void 0,this.previousLocation=null,this.routeUpdateCleanupCb=l.Z.canUseDOM?L("onRouteUpdate",{previousLocation:null,location:this.props.location}):()=>{},this.state={nextRouteHasLoaded:!0}}shouldComponentUpdate(e,t){if(e.location===this.props.location)return t.nextRouteHasLoaded;const n=e.location;return this.previousLocation=this.props.location,this.setState({nextRouteHasLoaded:!1}),this.routeUpdateCleanupCb=L("onRouteUpdate",{previousLocation:this.previousLocation,location:n}),P(n.pathname).then((()=>{this.routeUpdateCleanupCb(),this.setState({nextRouteHasLoaded:!0})})).catch((e=>{console.warn(e),window.location.reload()})),!1}render(){const{children:e,location:t}=this.props;return r.createElement(O,{previousLocation:this.previousLocation,location:t},r.createElement(c.AW,{location:t,render:()=>e}))}}const I=R,D="docusaurus-base-url-issue-banner-container",M="docusaurus-base-url-issue-banner",F="docusaurus-base-url-issue-banner-suggestion-container",B="__DOCUSAURUS_INSERT_BASEURL_BANNER";function U(e){return`\nwindow['${B}'] = true;\n\ndocument.addEventListener('DOMContentLoaded', maybeInsertBanner);\n\nfunction maybeInsertBanner() {\n var shouldInsert = window['${B}'];\n shouldInsert && insertBanner();\n}\n\nfunction insertBanner() {\n var bannerContainer = document.getElementById('${D}');\n if (!bannerContainer) {\n return;\n }\n var bannerHtml = ${JSON.stringify(function(e){return`\n<div id="${M}" style="border: thick solid red; background-color: rgb(255, 230, 179); margin: 20px; padding: 20px; font-size: 20px;">\n <p style="font-weight: bold; font-size: 30px;">Your Docusaurus site did not load properly.</p>\n <p>A very common reason is a wrong site <a href="https://docusaurus.io/docs/docusaurus.config.js/#baseurl" style="font-weight: bold;">baseUrl configuration</a>.</p>\n <p>Current configured baseUrl = <span style="font-weight: bold; color: red;">${e}</span> ${"/"===e?" (default value)":""}</p>\n <p>We suggest trying baseUrl = <span id="${F}" style="font-weight: bold; color: green;"></span></p>\n</div>\n`}(e)).replace(/</g,"\\<")};\n bannerContainer.innerHTML = bannerHtml;\n var suggestionContainer = document.getElementById('${F}');\n var actualHomePagePath = window.location.pathname;\n var suggestedBaseUrl = actualHomePagePath.substr(-1) === '/'\n ? actualHomePagePath\n : actualHomePagePath + '/';\n suggestionContainer.innerHTML = suggestedBaseUrl;\n}\n`}function $(){const{siteConfig:{baseUrl:e}}=(0,h.Z)();return(0,r.useLayoutEffect)((()=>{window[B]=!1}),[]),r.createElement(r.Fragment,null,!l.Z.canUseDOM&&r.createElement(m.Z,null,r.createElement("script",null,U(e))),r.createElement("div",{id:D}))}function j(){const{siteConfig:{baseUrl:e,baseUrlIssueBanner:t}}=(0,h.Z)(),{pathname:n}=(0,c.TH)();return t&&n===e?r.createElement($,null):null}function z(){const{siteConfig:{favicon:e,title:t,noIndex:n},i18n:{currentLocale:a,localeConfigs:o}}=(0,h.Z)(),i=(0,g.Z)(e),{htmlLang:l,direction:s}=o[a];return r.createElement(m.Z,null,r.createElement("html",{lang:l,dir:s}),r.createElement("title",null,t),r.createElement("meta",{property:"og:title",content:t}),r.createElement("meta",{name:"viewport",content:"width=device-width, initial-scale=1.0"}),n&&r.createElement("meta",{name:"robots",content:"noindex, nofollow"}),e&&r.createElement("link",{rel:"icon",href:i}))}var Z=n(44763);function H(){const e=(0,d.H)(u.Z),t=(0,c.TH)();return r.createElement(Z.Z,null,r.createElement(N.M,null,r.createElement(A.t,null,r.createElement(f,null,r.createElement(z,null),r.createElement(C,null),r.createElement(j,null),r.createElement(I,{location:T(t)},e)))))}var Y=n(16887);const V=function(e){try{return document.createElement("link").relList.supports(e)}catch{return!1}}("prefetch")?function(e){return new Promise(((t,n)=>{if("undefined"==typeof document)return void n();const r=document.createElement("link");r.setAttribute("rel","prefetch"),r.setAttribute("href",e),r.onload=()=>t(),r.onerror=()=>n();const a=document.getElementsByTagName("head")[0]??document.getElementsByName("script")[0]?.parentNode;a?.appendChild(r)}))}:function(e){return new Promise(((t,n)=>{const r=new XMLHttpRequest;r.open("GET",e,!0),r.withCredentials=!0,r.onload=()=>{200===r.status?t():n()},r.send(null)}))};var G=n(99670);const W=new Set,q=new Set,K=()=>navigator.connection?.effectiveType.includes("2g")||navigator.connection?.saveData,Q={prefetch(e){if(!(e=>!K()&&!q.has(e)&&!W.has(e))(e))return!1;W.add(e);const t=(0,d.f)(u.Z,e).flatMap((e=>{return t=e.route.path,Object.entries(Y).filter((e=>{let[n]=e;return n.replace(/-[^-]+$/,"")===t})).flatMap((e=>{let[,t]=e;return Object.values((0,G.Z)(t))}));var t}));return Promise.all(t.map((e=>{const t=n.gca(e);return t&&!t.includes("undefined")?V(t).catch((()=>{})):Promise.resolve()})))},preload:e=>!!(e=>!K()&&!q.has(e))(e)&&(q.add(e),P(e))},X=Object.freeze(Q);if(l.Z.canUseDOM){window.docusaurus=X;const e=a.hydrate;P(window.location.pathname).then((()=>{e(r.createElement(i.B6,null,r.createElement(o.VK,null,r.createElement(H,null))),document.getElementById("__docusaurus"))}))}},58940:(e,t,n)=>{"use strict";n.d(t,{_:()=>c,M:()=>d});var r=n(67294),a=n(36809);const o=JSON.parse('{"docusaurus-lunr-search":{"default":{"fileNames":{"searchDoc":"search-doc-1707379851867.json","lunrIndex":"lunr-index-1707379851867.json"}}},"docusaurus-plugin-content-docs":{"default":{"path":"/YetAnotherNet/docs","versions":[{"name":"current","label":"Next","isLast":true,"path":"/YetAnotherNet/docs","mainDocId":"intro","docs":[{"id":"getting-started/hooks","path":"/YetAnotherNet/docs/getting-started/hooks","sidebar":"defaultSidebar"},{"id":"getting-started/middleware","path":"/YetAnotherNet/docs/getting-started/middleware","sidebar":"defaultSidebar"},{"id":"getting-started/routes","path":"/YetAnotherNet/docs/getting-started/routes","sidebar":"defaultSidebar"},{"id":"intro","path":"/YetAnotherNet/docs/intro","sidebar":"defaultSidebar"},{"id":"setup/ecr","path":"/YetAnotherNet/docs/setup/ecr","sidebar":"defaultSidebar"},{"id":"setup/matter","path":"/YetAnotherNet/docs/setup/matter","sidebar":"defaultSidebar"},{"id":"setup/other","path":"/YetAnotherNet/docs/setup/other","sidebar":"defaultSidebar"}],"draftIds":[],"sidebars":{"defaultSidebar":{"link":{"path":"/YetAnotherNet/docs/intro","label":"intro"}}}}],"breadcrumbs":true}}}'),i=JSON.parse('{"defaultLocale":"en","locales":["en"],"path":"i18n","currentLocale":"en","localeConfigs":{"en":{"label":"English","direction":"ltr","htmlLang":"en","calendar":"gregory","path":"en"}}}');var l=n(57529);const s=JSON.parse('{"docusaurusVersion":"2.3.1","siteVersion":"0.0.0","pluginVersions":{"docusaurus-plugin-content-docs":{"type":"package","name":"@docusaurus/plugin-content-docs","version":"2.3.1"},"docusaurus-plugin-content-pages":{"type":"package","name":"@docusaurus/plugin-content-pages","version":"2.3.1"},"docusaurus-plugin-sitemap":{"type":"package","name":"@docusaurus/plugin-sitemap","version":"2.3.1"},"docusaurus-theme-classic":{"type":"package","name":"@docusaurus/theme-classic","version":"2.3.1"},"docusaurus-plugin-moonwave":{"type":"package","name":"docusaurus-plugin-moonwave","version":"1.1.2"},"docusaurus-lunr-search":{"type":"package","name":"docusaurus-lunr-search","version":"2.3.2"}}}'),u={siteConfig:a.default,siteMetadata:s,globalData:o,i18n:i,codeTranslations:l},c=r.createContext(u);function d(e){let{children:t}=e;return r.createElement(c.Provider,{value:u},t)}},44763:(e,t,n)=>{"use strict";n.d(t,{Z:()=>c});var r=n(67294),a=n(10412),o=n(35742),i=n(34510);function l(e){let{error:t,tryAgain:n}=e;return r.createElement("div",{style:{display:"flex",flexDirection:"column",justifyContent:"center",alignItems:"center",height:"50vh",width:"100%",fontSize:"20px"}},r.createElement("h1",null,"This page crashed."),r.createElement("p",null,t.message),r.createElement("button",{type:"button",onClick:n},"Try again"))}function s(e){let{error:t,tryAgain:n}=e;return r.createElement(c,{fallback:()=>r.createElement(l,{error:t,tryAgain:n})},r.createElement(o.Z,null,r.createElement("title",null,"Page Error")),r.createElement(i.Z,null,r.createElement(l,{error:t,tryAgain:n})))}const u=e=>r.createElement(s,e);class c extends r.Component{constructor(e){super(e),this.state={error:null}}componentDidCatch(e){a.Z.canUseDOM&&this.setState({error:e})}render(){const{children:e}=this.props,{error:t}=this.state;if(t){const e={error:t,tryAgain:()=>this.setState({error:null})};return(this.props.fallback??u)(e)}return e??null}}},10412:(e,t,n)=>{"use strict";n.d(t,{Z:()=>a});const r="undefined"!=typeof window&&"document"in window&&"createElement"in window.document,a={canUseDOM:r,canUseEventListeners:r&&("addEventListener"in window||"attachEvent"in window),canUseIntersectionObserver:r&&"IntersectionObserver"in window,canUseViewport:r&&"screen"in window}},35742:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var r=n(67294),a=n(70405);function o(e){return r.createElement(a.ql,e)}},39960:(e,t,n)=>{"use strict";n.d(t,{Z:()=>h});var r=n(87462),a=n(67294),o=n(73727),i=n(18780),l=n(52263),s=n(13919),u=n(10412);const c=a.createContext({collectLink:()=>{}}),d=()=>(0,a.useContext)(c);var f=n(44996);const p=e=>e.startsWith("/");function m(e,t){let{isNavLink:n,to:c,href:m,activeClassName:h,isActive:g,"data-noBrokenLinkCheck":b,autoAddBaseUrl:v=!0,...y}=e;const{siteConfig:{trailingSlash:w,baseUrl:E}}=(0,l.Z)(),{withBaseUrl:k}=(0,f.C)(),S=d(),x=(0,a.useRef)(null);(0,a.useImperativeHandle)(t,(()=>x.current));const C=c||m;const _=(0,s.Z)(C),T=C?.replace("pathname://","");let A=void 0!==T?(N=T,v&&p(N)?k(N):N):void 0;var N;A&&_&&(A=(0,i.applyTrailingSlash)(A,{trailingSlash:w,baseUrl:E}));const L=(0,a.useRef)(!1),O=n?o.OL:o.rU,P=u.Z.canUseIntersectionObserver,R=(0,a.useRef)(),I=()=>{L.current||null==A||(window.docusaurus.preload(A),L.current=!0)};(0,a.useEffect)((()=>(!P&&_&&null!=A&&window.docusaurus.prefetch(A),()=>{P&&R.current&&R.current.disconnect()})),[R,A,P,_]);const D=A?.startsWith("#")??!1,M=!A||!_||D;return M||b||S.collectLink(A),M?a.createElement("a",(0,r.Z)({ref:x,href:A},C&&!_&&{target:"_blank",rel:"noopener noreferrer"},y)):a.createElement(O,(0,r.Z)({},y,{onMouseEnter:I,onTouchStart:I,innerRef:e=>{x.current=e,P&&e&&_&&(R.current=new window.IntersectionObserver((t=>{t.forEach((t=>{e===t.target&&(t.isIntersecting||t.intersectionRatio>0)&&(R.current.unobserve(e),R.current.disconnect(),null!=A&&window.docusaurus.prefetch(A))}))})),R.current.observe(e))},to:A},n&&{isActive:g,activeClassName:h}))}const h=a.forwardRef(m)},95999:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s,I:()=>l});var r=n(67294);function a(e,t){const n=e.split(/(\{\w+\})/).map(((e,n)=>{if(n%2==1){const n=t?.[e.slice(1,-1)];if(void 0!==n)return n}return e}));return n.some((e=>(0,r.isValidElement)(e)))?n.map(((e,t)=>(0,r.isValidElement)(e)?r.cloneElement(e,{key:t}):e)).filter((e=>""!==e)):n.join("")}var o=n(57529);function i(e){let{id:t,message:n}=e;if(void 0===t&&void 0===n)throw new Error("Docusaurus translation declarations must have at least a translation id or a default translation message");return o[t??n]??n??t}function l(e,t){let{message:n,id:r}=e;return a(i({message:n,id:r}),t)}function s(e){let{children:t,id:n,values:o}=e;if(t&&"string"!=typeof t)throw console.warn("Illegal <Translate> children",t),new Error("The Docusaurus <Translate> component only accept simple string values");const l=i({message:t,id:n});return r.createElement(r.Fragment,null,a(l,o))}},29935:(e,t,n)=>{"use strict";n.d(t,{m:()=>r});const r="default"},13919:(e,t,n)=>{"use strict";function r(e){return/^(?:\w*:|\/\/)/.test(e)}function a(e){return void 0!==e&&!r(e)}n.d(t,{Z:()=>a,b:()=>r})},44996:(e,t,n)=>{"use strict";n.d(t,{C:()=>i,Z:()=>l});var r=n(67294),a=n(52263),o=n(13919);function i(){const{siteConfig:{baseUrl:e,url:t}}=(0,a.Z)(),n=(0,r.useCallback)(((n,r)=>function(e,t,n,r){let{forcePrependBaseUrl:a=!1,absolute:i=!1}=void 0===r?{}:r;if(!n||n.startsWith("#")||(0,o.b)(n))return n;if(a)return t+n.replace(/^\//,"");if(n===t.replace(/\/$/,""))return t;const l=n.startsWith(t)?n:t+n.replace(/^\//,"");return i?e+l:l}(t,e,n,r)),[t,e]);return{withBaseUrl:n}}function l(e,t){void 0===t&&(t={});const{withBaseUrl:n}=i();return n(e,t)}},52263:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var r=n(67294),a=n(58940);function o(){return(0,r.useContext)(a._)}},28084:(e,t,n)=>{"use strict";n.d(t,{OD:()=>o,eZ:()=>i});var r=n(52263),a=n(29935);function o(e,t){void 0===t&&(t={});const n=function(){const{globalData:e}=(0,r.Z)();return e}()[e];if(!n&&t.failfast)throw new Error(`Docusaurus plugin global data not found for "${e}" plugin.`);return n}function i(e,t,n){void 0===t&&(t=a.m),void 0===n&&(n={});const r=o(e),i=r?.[t];if(!i&&n.failfast)throw new Error(`Docusaurus plugin global data not found for "${e}" plugin with id "${t}".`);return i}},72389:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var r=n(67294),a=n(98934);function o(){return(0,r.useContext)(a._)}},99670:(e,t,n)=>{"use strict";n.d(t,{Z:()=>a});const r=e=>"object"==typeof e&&!!e&&Object.keys(e).length>0;function a(e){const t=".",n={};return function e(a,o){Object.entries(a).forEach((a=>{let[i,l]=a;const s=o?`${o}${t}${i}`:i;r(l)?e(l,s):n[s]=l}))}(e),n}},30226:(e,t,n)=>{"use strict";n.d(t,{_:()=>a,z:()=>o});var r=n(67294);const a=r.createContext(null);function o(e){let{children:t,value:n}=e;const o=r.useContext(a),i=(0,r.useMemo)((()=>function(e){let{parent:t,value:n}=e;if(!t){if(!n)throw new Error("Unexpected: no Docusaurus route context found");if(!("plugin"in n))throw new Error("Unexpected: Docusaurus topmost route context has no `plugin` attribute");return n}const r={...t.data,...n?.data};return{plugin:t.plugin,data:r}}({parent:o,value:n})),[o,n]);return r.createElement(a.Provider,{value:i},t)}},94104:(e,t,n)=>{"use strict";n.d(t,{Iw:()=>p,gA:()=>c,_r:()=>s,Jo:()=>m,zh:()=>u,yW:()=>f,gB:()=>d});var r=n(16550),a=n(28084);const o=e=>e.versions.find((e=>e.isLast));function i(e,t){const n=function(e,t){const n=o(e);return[...e.versions.filter((e=>e!==n)),n].find((e=>!!(0,r.LX)(t,{path:e.path,exact:!1,strict:!1})))}(e,t),a=n?.docs.find((e=>!!(0,r.LX)(t,{path:e.path,exact:!0,strict:!1})));return{activeVersion:n,activeDoc:a,alternateDocVersions:a?function(t){const n={};return e.versions.forEach((e=>{e.docs.forEach((r=>{r.id===t&&(n[e.name]=r)}))})),n}(a.id):{}}}const l={},s=()=>(0,a.OD)("docusaurus-plugin-content-docs")??l,u=e=>(0,a.eZ)("docusaurus-plugin-content-docs",e,{failfast:!0});function c(e){void 0===e&&(e={});const t=s(),{pathname:n}=(0,r.TH)();return function(e,t,n){void 0===n&&(n={});const a=Object.entries(e).sort(((e,t)=>t[1].path.localeCompare(e[1].path))).find((e=>{let[,n]=e;return!!(0,r.LX)(t,{path:n.path,exact:!1,strict:!1})})),o=a?{pluginId:a[0],pluginData:a[1]}:void 0;if(!o&&n.failfast)throw new Error(`Can't find active docs plugin for "${t}" pathname, while it was expected to be found. Maybe you tried to use a docs feature that can only be used on a docs-related page? Existing docs plugin paths are: ${Object.values(e).map((e=>e.path)).join(", ")}`);return o}(t,n,e)}function d(e){return u(e).versions}function f(e){const t=u(e);return o(t)}function p(e){const t=u(e),{pathname:n}=(0,r.TH)();return i(t,n)}function m(e){const t=u(e),{pathname:n}=(0,r.TH)();return function(e,t){const n=o(e);return{latestDocSuggestion:i(e,t).alternateDocVersions[n.name],latestVersionSuggestion:n}}(t,n)}},18320:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>o});var r=n(74865),a=n.n(r);a().configure({showSpinner:!1});const o={onRouteUpdate(e){let{location:t,previousLocation:n}=e;if(n&&t.pathname!==n.pathname){const e=window.setTimeout((()=>{a().start()}),200);return()=>window.clearTimeout(e)}},onRouteDidUpdate(){a().done()}}},3310:(e,t,n)=>{"use strict";n.r(t);var r=n(87410),a=n(36809);!function(e){const{themeConfig:{prism:t}}=a.default,{additionalLanguages:r}=t;globalThis.Prism=e,r.forEach((e=>{n(33003)(`./prism-${e}`)})),delete globalThis.Prism}(r.Z)},39471:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var r=n(67294);const a={iconExternalLink:"iconExternalLink_nPIU"};function o(e){let{width:t=13.5,height:n=13.5}=e;return r.createElement("svg",{width:t,height:n,"aria-hidden":"true",viewBox:"0 0 24 24",className:a.iconExternalLink},r.createElement("path",{fill:"currentColor",d:"M21 13v10h-21v-19h12v2h-10v15h17v-8h2zm3-12h-10.988l4.035 4-6.977 7.07 2.828 2.828 6.977-7.07 4.125 4.172v-11z"}))}},34510:(e,t,n)=>{"use strict";n.d(t,{Z:()=>ut});var r=n(67294),a=n(86010),o=n(44763),i=n(1944),l=n(87462),s=n(16550),u=n(95999),c=n(85936);const d="docusaurus_skipToContent_fallback";function f(e){e.setAttribute("tabindex","-1"),e.focus(),e.removeAttribute("tabindex")}function p(){const e=(0,r.useRef)(null),{action:t}=(0,s.k6)(),n=(0,r.useCallback)((e=>{e.preventDefault();const t=document.querySelector("main:first-of-type")??document.getElementById(d);t&&f(t)}),[]);return(0,c.S)((n=>{let{location:r}=n;e.current&&!r.hash&&"PUSH"===t&&f(e.current)})),{containerRef:e,onClick:n}}const m=(0,u.I)({id:"theme.common.skipToMainContent",description:"The skip to content label used for accessibility, allowing to rapidly navigate to main content with keyboard tab/enter navigation",message:"Skip to main content"});function h(e){const t=e.children??m,{containerRef:n,onClick:a}=p();return r.createElement("div",{ref:n,role:"region","aria-label":m},r.createElement("a",(0,l.Z)({},e,{href:`#${d}`,onClick:a}),t))}var g=n(35281),b=n(19727);const v={skipToContent:"skipToContent_fXgn"};function y(){return r.createElement(h,{className:v.skipToContent})}var w=n(86668),E=n(59689);function k(e){let{width:t=21,height:n=21,color:a="currentColor",strokeWidth:o=1.2,className:i,...s}=e;return r.createElement("svg",(0,l.Z)({viewBox:"0 0 15 15",width:t,height:n},s),r.createElement("g",{stroke:a,strokeWidth:o},r.createElement("path",{d:"M.75.75l13.5 13.5M14.25.75L.75 14.25"})))}const S={closeButton:"closeButton_CVFx"};function x(e){return r.createElement("button",(0,l.Z)({type:"button","aria-label":(0,u.I)({id:"theme.AnnouncementBar.closeButtonAriaLabel",message:"Close",description:"The ARIA label for close button of announcement bar"})},e,{className:(0,a.Z)("clean-btn close",S.closeButton,e.className)}),r.createElement(k,{width:14,height:14,strokeWidth:3.1}))}const C={content:"content_knG7"};function _(e){const{announcementBar:t}=(0,w.L)(),{content:n}=t;return r.createElement("div",(0,l.Z)({},e,{className:(0,a.Z)(C.content,e.className),dangerouslySetInnerHTML:{__html:n}}))}const T={announcementBar:"announcementBar_mb4j",announcementBarPlaceholder:"announcementBarPlaceholder_vyr4",announcementBarClose:"announcementBarClose_gvF7",announcementBarContent:"announcementBarContent_xLdY"};function A(){const{announcementBar:e}=(0,w.L)(),{isActive:t,close:n}=(0,E.nT)();if(!t)return null;const{backgroundColor:a,textColor:o,isCloseable:i}=e;return r.createElement("div",{className:T.announcementBar,style:{backgroundColor:a,color:o},role:"banner"},i&&r.createElement("div",{className:T.announcementBarPlaceholder}),r.createElement(_,{className:T.announcementBarContent}),i&&r.createElement(x,{onClick:n,className:T.announcementBarClose}))}var N=n(93163),L=n(12466);var O=n(902),P=n(13102);const R=r.createContext(null);function I(e){let{children:t}=e;const n=function(){const e=(0,N.e)(),t=(0,P.HY)(),[n,a]=(0,r.useState)(!1),o=null!==t.component,i=(0,O.D9)(o);return(0,r.useEffect)((()=>{o&&!i&&a(!0)}),[o,i]),(0,r.useEffect)((()=>{o?e.shown||a(!0):a(!1)}),[e.shown,o]),(0,r.useMemo)((()=>[n,a]),[n])}();return r.createElement(R.Provider,{value:n},t)}function D(e){if(e.component){const t=e.component;return r.createElement(t,e.props)}}function M(){const e=(0,r.useContext)(R);if(!e)throw new O.i6("NavbarSecondaryMenuDisplayProvider");const[t,n]=e,a=(0,r.useCallback)((()=>n(!1)),[n]),o=(0,P.HY)();return(0,r.useMemo)((()=>({shown:t,hide:a,content:D(o)})),[a,o,t])}function F(e){let{header:t,primaryMenu:n,secondaryMenu:o}=e;const{shown:i}=M();return r.createElement("div",{className:"navbar-sidebar"},t,r.createElement("div",{className:(0,a.Z)("navbar-sidebar__items",{"navbar-sidebar__items--show-secondary":i})},r.createElement("div",{className:"navbar-sidebar__item menu"},n),r.createElement("div",{className:"navbar-sidebar__item menu"},o)))}var B=n(92949),U=n(72389);function $(e){return r.createElement("svg",(0,l.Z)({viewBox:"0 0 24 24",width:24,height:24},e),r.createElement("path",{fill:"currentColor",d:"M12,9c1.65,0,3,1.35,3,3s-1.35,3-3,3s-3-1.35-3-3S10.35,9,12,9 M12,7c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5 S14.76,7,12,7L12,7z M2,13l2,0c0.55,0,1-0.45,1-1s-0.45-1-1-1l-2,0c-0.55,0-1,0.45-1,1S1.45,13,2,13z M20,13l2,0c0.55,0,1-0.45,1-1 s-0.45-1-1-1l-2,0c-0.55,0-1,0.45-1,1S19.45,13,20,13z M11,2v2c0,0.55,0.45,1,1,1s1-0.45,1-1V2c0-0.55-0.45-1-1-1S11,1.45,11,2z M11,20v2c0,0.55,0.45,1,1,1s1-0.45,1-1v-2c0-0.55-0.45-1-1-1C11.45,19,11,19.45,11,20z M5.99,4.58c-0.39-0.39-1.03-0.39-1.41,0 c-0.39,0.39-0.39,1.03,0,1.41l1.06,1.06c0.39,0.39,1.03,0.39,1.41,0s0.39-1.03,0-1.41L5.99,4.58z M18.36,16.95 c-0.39-0.39-1.03-0.39-1.41,0c-0.39,0.39-0.39,1.03,0,1.41l1.06,1.06c0.39,0.39,1.03,0.39,1.41,0c0.39-0.39,0.39-1.03,0-1.41 L18.36,16.95z M19.42,5.99c0.39-0.39,0.39-1.03,0-1.41c-0.39-0.39-1.03-0.39-1.41,0l-1.06,1.06c-0.39,0.39-0.39,1.03,0,1.41 s1.03,0.39,1.41,0L19.42,5.99z M7.05,18.36c0.39-0.39,0.39-1.03,0-1.41c-0.39-0.39-1.03-0.39-1.41,0l-1.06,1.06 c-0.39,0.39-0.39,1.03,0,1.41s1.03,0.39,1.41,0L7.05,18.36z"}))}function j(e){return r.createElement("svg",(0,l.Z)({viewBox:"0 0 24 24",width:24,height:24},e),r.createElement("path",{fill:"currentColor",d:"M9.37,5.51C9.19,6.15,9.1,6.82,9.1,7.5c0,4.08,3.32,7.4,7.4,7.4c0.68,0,1.35-0.09,1.99-0.27C17.45,17.19,14.93,19,12,19 c-3.86,0-7-3.14-7-7C5,9.07,6.81,6.55,9.37,5.51z M12,3c-4.97,0-9,4.03-9,9s4.03,9,9,9s9-4.03,9-9c0-0.46-0.04-0.92-0.1-1.36 c-0.98,1.37-2.58,2.26-4.4,2.26c-2.98,0-5.4-2.42-5.4-5.4c0-1.81,0.89-3.42,2.26-4.4C12.92,3.04,12.46,3,12,3L12,3z"}))}const z={toggle:"toggle_vylO",toggleButton:"toggleButton_gllP",darkToggleIcon:"darkToggleIcon_wfgR",lightToggleIcon:"lightToggleIcon_pyhR",toggleButtonDisabled:"toggleButtonDisabled_aARS"};function Z(e){let{className:t,value:n,onChange:o}=e;const i=(0,U.Z)(),l=(0,u.I)({message:"Switch between dark and light mode (currently {mode})",id:"theme.colorToggle.ariaLabel",description:"The ARIA label for the navbar color mode toggle"},{mode:"dark"===n?(0,u.I)({message:"dark mode",id:"theme.colorToggle.ariaLabel.mode.dark",description:"The name for the dark color mode"}):(0,u.I)({message:"light mode",id:"theme.colorToggle.ariaLabel.mode.light",description:"The name for the light color mode"})});return r.createElement("div",{className:(0,a.Z)(z.toggle,t)},r.createElement("button",{className:(0,a.Z)("clean-btn",z.toggleButton,!i&&z.toggleButtonDisabled),type:"button",onClick:()=>o("dark"===n?"light":"dark"),disabled:!i,title:l,"aria-label":l,"aria-live":"polite"},r.createElement($,{className:(0,a.Z)(z.toggleIcon,z.lightToggleIcon)}),r.createElement(j,{className:(0,a.Z)(z.toggleIcon,z.darkToggleIcon)})))}const H=r.memo(Z);function Y(e){let{className:t}=e;const n=(0,w.L)().colorMode.disableSwitch,{colorMode:a,setColorMode:o}=(0,B.I)();return n?null:r.createElement(H,{className:t,value:a,onChange:o})}var V=n(21327);function G(){return r.createElement(V.Z,{className:"navbar__brand",imageClassName:"navbar__logo",titleClassName:"navbar__title text--truncate"})}function W(){const e=(0,N.e)();return r.createElement("button",{type:"button","aria-label":(0,u.I)({id:"theme.docs.sidebar.closeSidebarButtonAriaLabel",message:"Close navigation bar",description:"The ARIA label for close button of mobile sidebar"}),className:"clean-btn navbar-sidebar__close",onClick:()=>e.toggle()},r.createElement(k,{color:"var(--ifm-color-emphasis-600)"}))}function q(){return r.createElement("div",{className:"navbar-sidebar__brand"},r.createElement(G,null),r.createElement(Y,{className:"margin-right--md"}),r.createElement(W,null))}var K=n(39960),Q=n(44996),X=n(13919);function J(e,t){return void 0!==e&&void 0!==t&&new RegExp(e,"gi").test(t)}var ee=n(39471);function te(e){let{activeBasePath:t,activeBaseRegex:n,to:a,href:o,label:i,html:s,isDropdownLink:u,prependBaseUrlToHref:c,...d}=e;const f=(0,Q.Z)(a),p=(0,Q.Z)(t),m=(0,Q.Z)(o,{forcePrependBaseUrl:!0}),h=i&&o&&!(0,X.Z)(o),g=s?{dangerouslySetInnerHTML:{__html:s}}:{children:r.createElement(r.Fragment,null,i,h&&r.createElement(ee.Z,u&&{width:12,height:12}))};return o?r.createElement(K.Z,(0,l.Z)({href:c?m:o},d,g)):r.createElement(K.Z,(0,l.Z)({to:f,isNavLink:!0},(t||n)&&{isActive:(e,t)=>n?J(n,t.pathname):t.pathname.startsWith(p)},d,g))}function ne(e){let{className:t,isDropdownItem:n=!1,...o}=e;const i=r.createElement(te,(0,l.Z)({className:(0,a.Z)(n?"dropdown__link":"navbar__item navbar__link",t),isDropdownLink:n},o));return n?r.createElement("li",null,i):i}function re(e){let{className:t,isDropdownItem:n,...o}=e;return r.createElement("li",{className:"menu__list-item"},r.createElement(te,(0,l.Z)({className:(0,a.Z)("menu__link",t)},o)))}function ae(e){let{mobile:t=!1,position:n,...a}=e;const o=t?re:ne;return r.createElement(o,(0,l.Z)({},a,{activeClassName:a.activeClassName??(t?"menu__link--active":"navbar__link--active")}))}var oe=n(86043),ie=n(48596),le=n(52263);function se(e,t){return e.some((e=>function(e,t){return!!(0,ie.Mg)(e.to,t)||!!J(e.activeBaseRegex,t)||!(!e.activeBasePath||!t.startsWith(e.activeBasePath))}(e,t)))}function ue(e){let{items:t,position:n,className:o,onClick:i,...s}=e;const u=(0,r.useRef)(null),[c,d]=(0,r.useState)(!1);return(0,r.useEffect)((()=>{const e=e=>{u.current&&!u.current.contains(e.target)&&d(!1)};return document.addEventListener("mousedown",e),document.addEventListener("touchstart",e),()=>{document.removeEventListener("mousedown",e),document.removeEventListener("touchstart",e)}}),[u]),r.createElement("div",{ref:u,className:(0,a.Z)("navbar__item","dropdown","dropdown--hoverable",{"dropdown--right":"right"===n,"dropdown--show":c})},r.createElement(te,(0,l.Z)({"aria-haspopup":"true","aria-expanded":c,role:"button",href:s.to?void 0:"#",className:(0,a.Z)("navbar__link",o)},s,{onClick:s.to?void 0:e=>e.preventDefault(),onKeyDown:e=>{"Enter"===e.key&&(e.preventDefault(),d(!c))}}),s.children??s.label),r.createElement("ul",{className:"dropdown__menu"},t.map(((e,n)=>r.createElement(Te,(0,l.Z)({isDropdownItem:!0,onKeyDown:e=>{if(n===t.length-1&&"Tab"===e.key){e.preventDefault(),d(!1);const t=u.current.nextElementSibling;if(t){(t instanceof HTMLAnchorElement?t:t.querySelector("a")).focus()}}},activeClassName:"dropdown__link--active"},e,{key:n}))))))}function ce(e){let{items:t,className:n,position:o,onClick:i,...u}=e;const c=function(){const{siteConfig:{baseUrl:e}}=(0,le.Z)(),{pathname:t}=(0,s.TH)();return t.replace(e,"/")}(),d=se(t,c),{collapsed:f,toggleCollapsed:p,setCollapsed:m}=(0,oe.u)({initialState:()=>!d});return(0,r.useEffect)((()=>{d&&m(!d)}),[c,d,m]),r.createElement("li",{className:(0,a.Z)("menu__list-item",{"menu__list-item--collapsed":f})},r.createElement(te,(0,l.Z)({role:"button",className:(0,a.Z)("menu__link menu__link--sublist menu__link--sublist-caret",n)},u,{onClick:e=>{e.preventDefault(),p()}}),u.children??u.label),r.createElement(oe.z,{lazy:!0,as:"ul",className:"menu__list",collapsed:f},t.map(((e,t)=>r.createElement(Te,(0,l.Z)({mobile:!0,isDropdownItem:!0,onClick:i,activeClassName:"menu__link--active"},e,{key:t}))))))}function de(e){let{mobile:t=!1,...n}=e;const a=t?ce:ue;return r.createElement(a,n)}var fe=n(94711);function pe(e){let{width:t=20,height:n=20,...a}=e;return r.createElement("svg",(0,l.Z)({viewBox:"0 0 24 24",width:t,height:n,"aria-hidden":!0},a),r.createElement("path",{fill:"currentColor",d:"M12.87 15.07l-2.54-2.51.03-.03c1.74-1.94 2.98-4.17 3.71-6.53H17V4h-7V2H8v2H1v1.99h11.17C11.5 7.92 10.44 9.75 9 11.35 8.07 10.32 7.3 9.19 6.69 8h-2c.73 1.63 1.73 3.17 2.98 4.56l-5.09 5.02L4 19l5-5 3.11 3.11.76-2.04zM18.5 10h-2L12 22h2l1.12-3h4.75L21 22h2l-4.5-12zm-2.62 7l1.62-4.33L19.12 17h-3.24z"}))}const me={iconLanguage:"iconLanguage_nlXk"};var he=n(94184),ge=n.n(he),be=n(28084);const ve=e=>{const t=(0,r.useRef)(!1),a=(0,r.useRef)(null),[o,i]=(0,r.useState)(!1),l=(0,s.k6)(),{siteConfig:u={}}=(0,le.Z)(),c=(0,U.Z)(),{baseUrl:d}=u,f=(0,be.eZ)("docusaurus-lunr-search"),p=()=>{t.current||(Promise.all([fetch(`${d}${f.fileNames.searchDoc}`).then((e=>e.json())),fetch(`${d}${f.fileNames.lunrIndex}`).then((e=>e.json())),Promise.all([n.e(878),n.e(339)]).then(n.bind(n,30894)),Promise.all([n.e(532),n.e(343)]).then(n.bind(n,53343))]).then((e=>{let[t,n,{default:r}]=e;0!==t.length&&(((e,t,n)=>{new n({searchDocs:e,searchIndex:t,baseUrl:d,inputSelector:"#search_input_react",handleSelected:(e,t,n)=>{const r=n.url||"/";document.createElement("a").href=r,l.push(r)}})})(t,n,r),i(!0))})),t.current=!0)},m=(0,r.useCallback)((t=>{a.current.contains(t.target)||a.current.focus(),e.handleSearchBarToggle&&e.handleSearchBarToggle(!e.isSearchBarExpanded)}),[e.isSearchBarExpanded]);return c&&p(),r.createElement("div",{className:"navbar__search",key:"search-box"},r.createElement("span",{"aria-label":"expand searchbar",role:"button",className:ge()("search-icon",{"search-icon-hidden":e.isSearchBarExpanded}),onClick:m,onKeyDown:m,tabIndex:0}),r.createElement("input",{id:"search_input_react",type:"search",placeholder:o?"Search":"Loading...","aria-label":"Search",className:ge()("navbar__search-input",{"search-bar-expanded":e.isSearchBarExpanded},{"search-bar":!e.isSearchBarExpanded}),onClick:p,onMouseOver:p,onFocus:m,onBlur:m,ref:a,disabled:!o}))},ye={searchBox:"searchBox_ZlJk"};function we(e){let{children:t,className:n}=e;return r.createElement("div",{className:(0,a.Z)(n,ye.searchBox)},t)}var Ee=n(94104),ke=n(53438);const Se=e=>e.docs.find((t=>t.id===e.mainDocId));var xe=n(60373);const Ce=e=>e.docs.find((t=>t.id===e.mainDocId));const _e={default:ae,localeDropdown:function(e){let{mobile:t,dropdownItemsBefore:n,dropdownItemsAfter:a,...o}=e;const{i18n:{currentLocale:i,locales:c,localeConfigs:d}}=(0,le.Z)(),f=(0,fe.l)(),{search:p,hash:m}=(0,s.TH)(),h=[...n,...c.map((e=>{const n=`${`pathname://${f.createUrl({locale:e,fullyQualified:!1})}`}${p}${m}`;return{label:d[e].label,lang:d[e].htmlLang,to:n,target:"_self",autoAddBaseUrl:!1,className:e===i?t?"menu__link--active":"dropdown__link--active":""}})),...a],g=t?(0,u.I)({message:"Languages",id:"theme.navbar.mobileLanguageDropdown.label",description:"The label for the mobile language switcher dropdown"}):d[i].label;return r.createElement(de,(0,l.Z)({},o,{mobile:t,label:r.createElement(r.Fragment,null,r.createElement(pe,{className:me.iconLanguage}),g),items:h}))},search:function(e){let{mobile:t,className:n}=e;return t?null:r.createElement(we,{className:n},r.createElement(ve,null))},dropdown:de,html:function(e){let{value:t,className:n,mobile:o=!1,isDropdownItem:i=!1}=e;const l=i?"li":"div";return r.createElement(l,{className:(0,a.Z)({navbar__item:!o&&!i,"menu__list-item":o},n),dangerouslySetInnerHTML:{__html:t}})},doc:function(e){let{docId:t,label:n,docsPluginId:a,...o}=e;const{activeDoc:i}=(0,Ee.Iw)(a),s=(0,ke.vY)(t,a);return null===s?null:r.createElement(ae,(0,l.Z)({exact:!0},o,{isActive:()=>i?.path===s.path||!!i?.sidebar&&i.sidebar===s.sidebar,label:n??s.id,to:s.path}))},docSidebar:function(e){let{sidebarId:t,label:n,docsPluginId:a,...o}=e;const{activeDoc:i}=(0,Ee.Iw)(a),s=(0,ke.oz)(t,a).link;if(!s)throw new Error(`DocSidebarNavbarItem: Sidebar with ID "${t}" doesn't have anything to be linked to.`);return r.createElement(ae,(0,l.Z)({exact:!0},o,{isActive:()=>i?.sidebar===t,label:n??s.label,to:s.path}))},docsVersion:function(e){let{label:t,to:n,docsPluginId:a,...o}=e;const i=(0,ke.lO)(a)[0],s=t??i.label,u=n??Se(i).path;return r.createElement(ae,(0,l.Z)({},o,{label:s,to:u}))},docsVersionDropdown:function(e){let{mobile:t,docsPluginId:n,dropdownActiveClassDisabled:a,dropdownItemsBefore:o,dropdownItemsAfter:i,...c}=e;const{search:d,hash:f}=(0,s.TH)(),p=(0,Ee.Iw)(n),m=(0,Ee.gB)(n),{savePreferredVersionName:h}=(0,xe.J)(n),g=[...o,...m.map((e=>{const t=p.alternateDocVersions[e.name]??Ce(e);return{label:e.label,to:`${t.path}${d}${f}`,isActive:()=>e===p.activeVersion,onClick:()=>h(e.name)}})),...i],b=(0,ke.lO)(n)[0],v=t&&g.length>1?(0,u.I)({id:"theme.navbar.mobileVersionsDropdown.label",message:"Versions",description:"The label for the navbar versions dropdown on mobile view"}):b.label,y=t&&g.length>1?void 0:Ce(b).path;return g.length<=1?r.createElement(ae,(0,l.Z)({},c,{mobile:t,label:v,to:y,isActive:a?()=>!1:void 0})):r.createElement(de,(0,l.Z)({},c,{mobile:t,label:v,to:y,items:g,isActive:a?()=>!1:void 0}))}};function Te(e){let{type:t,...n}=e;const a=function(e,t){return e&&"default"!==e?e:"items"in t?"dropdown":"default"}(t,n),o=_e[a];if(!o)throw new Error(`No NavbarItem component found for type "${t}".`);return r.createElement(o,n)}function Ae(){const e=(0,N.e)(),t=(0,w.L)().navbar.items;return r.createElement("ul",{className:"menu__list"},t.map(((t,n)=>r.createElement(Te,(0,l.Z)({mobile:!0},t,{onClick:()=>e.toggle(),key:n})))))}function Ne(e){return r.createElement("button",(0,l.Z)({},e,{type:"button",className:"clean-btn navbar-sidebar__back"}),r.createElement(u.Z,{id:"theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel",description:"The label of the back button to return to main menu, inside the mobile navbar sidebar secondary menu (notably used to display the docs sidebar)"},"\u2190 Back to main menu"))}function Le(){const e=0===(0,w.L)().navbar.items.length,t=M();return r.createElement(r.Fragment,null,!e&&r.createElement(Ne,{onClick:()=>t.hide()}),t.content)}function Oe(){const e=(0,N.e)();var t;return void 0===(t=e.shown)&&(t=!0),(0,r.useEffect)((()=>(document.body.style.overflow=t?"hidden":"visible",()=>{document.body.style.overflow="visible"})),[t]),e.shouldRender?r.createElement(F,{header:r.createElement(q,null),primaryMenu:r.createElement(Ae,null),secondaryMenu:r.createElement(Le,null)}):null}const Pe={navbarHideable:"navbarHideable_m1mJ",navbarHidden:"navbarHidden_jGov"};function Re(e){return r.createElement("div",(0,l.Z)({role:"presentation"},e,{className:(0,a.Z)("navbar-sidebar__backdrop",e.className)}))}function Ie(e){let{children:t}=e;const{navbar:{hideOnScroll:n,style:o}}=(0,w.L)(),i=(0,N.e)(),{navbarRef:l,isNavbarVisible:s}=function(e){const[t,n]=(0,r.useState)(e),a=(0,r.useRef)(!1),o=(0,r.useRef)(0),i=(0,r.useCallback)((e=>{null!==e&&(o.current=e.getBoundingClientRect().height)}),[]);return(0,L.RF)(((t,r)=>{let{scrollY:i}=t;if(!e)return;if(i<o.current)return void n(!0);if(a.current)return void(a.current=!1);const l=r?.scrollY,s=document.documentElement.scrollHeight-o.current,u=window.innerHeight;l&&i>=l?n(!1):i+u<s&&n(!0)})),(0,c.S)((t=>{if(!e)return;const r=t.location.hash;if(r?document.getElementById(r.substring(1)):void 0)return a.current=!0,void n(!1);n(!0)})),{navbarRef:i,isNavbarVisible:t}}(n);return r.createElement("nav",{ref:l,"aria-label":(0,u.I)({id:"theme.NavBar.navAriaLabel",message:"Main",description:"The ARIA label for the main navigation"}),className:(0,a.Z)("navbar","navbar--fixed-top",n&&[Pe.navbarHideable,!s&&Pe.navbarHidden],{"navbar--dark":"dark"===o,"navbar--primary":"primary"===o,"navbar-sidebar--show":i.shown})},t,r.createElement(Re,{onClick:i.toggle}),r.createElement(Oe,null))}const De="right";function Me(e){let{width:t=30,height:n=30,className:a,...o}=e;return r.createElement("svg",(0,l.Z)({className:a,width:t,height:n,viewBox:"0 0 30 30","aria-hidden":"true"},o),r.createElement("path",{stroke:"currentColor",strokeLinecap:"round",strokeMiterlimit:"10",strokeWidth:"2",d:"M4 7h22M4 15h22M4 23h22"}))}function Fe(){const{toggle:e,shown:t}=(0,N.e)();return r.createElement("button",{onClick:e,"aria-label":(0,u.I)({id:"theme.docs.sidebar.toggleSidebarButtonAriaLabel",message:"Toggle navigation bar",description:"The ARIA label for hamburger menu button of mobile navigation"}),"aria-expanded":t,className:"navbar__toggle clean-btn",type:"button"},r.createElement(Me,null))}const Be={colorModeToggle:"colorModeToggle_DEke"};function Ue(e){let{items:t}=e;return r.createElement(r.Fragment,null,t.map(((e,t)=>r.createElement(Te,(0,l.Z)({},e,{key:t})))))}function $e(e){let{left:t,right:n}=e;return r.createElement("div",{className:"navbar__inner"},r.createElement("div",{className:"navbar__items"},t),r.createElement("div",{className:"navbar__items navbar__items--right"},n))}function je(){const e=(0,N.e)(),t=(0,w.L)().navbar.items,[n,a]=function(e){function t(e){return"left"===(e.position??De)}return[e.filter(t),e.filter((e=>!t(e)))]}(t),o=t.find((e=>"search"===e.type));return r.createElement($e,{left:r.createElement(r.Fragment,null,!e.disabled&&r.createElement(Fe,null),r.createElement(G,null),r.createElement(Ue,{items:n})),right:r.createElement(r.Fragment,null,r.createElement(Ue,{items:a}),r.createElement(Y,{className:Be.colorModeToggle}),!o&&r.createElement(we,null,r.createElement(ve,null)))})}function ze(){return r.createElement(Ie,null,r.createElement(je,null))}function Ze(e){let{item:t}=e;const{to:n,href:a,label:o,prependBaseUrlToHref:i,...s}=t,u=(0,Q.Z)(n),c=(0,Q.Z)(a,{forcePrependBaseUrl:!0});return r.createElement(K.Z,(0,l.Z)({className:"footer__link-item"},a?{href:i?c:a}:{to:u},s),o,a&&!(0,X.Z)(a)&&r.createElement(ee.Z,null))}function He(e){let{item:t}=e;return t.html?r.createElement("li",{className:"footer__item",dangerouslySetInnerHTML:{__html:t.html}}):r.createElement("li",{key:t.href??t.to,className:"footer__item"},r.createElement(Ze,{item:t}))}function Ye(e){let{column:t}=e;return r.createElement("div",{className:"col footer__col"},r.createElement("div",{className:"footer__title"},t.title),r.createElement("ul",{className:"footer__items clean-list"},t.items.map(((e,t)=>r.createElement(He,{key:t,item:e})))))}function Ve(e){let{columns:t}=e;return r.createElement("div",{className:"row footer__links"},t.map(((e,t)=>r.createElement(Ye,{key:t,column:e}))))}function Ge(){return r.createElement("span",{className:"footer__link-separator"},"\xb7")}function We(e){let{item:t}=e;return t.html?r.createElement("span",{className:"footer__link-item",dangerouslySetInnerHTML:{__html:t.html}}):r.createElement(Ze,{item:t})}function qe(e){let{links:t}=e;return r.createElement("div",{className:"footer__links text--center"},r.createElement("div",{className:"footer__links"},t.map(((e,n)=>r.createElement(r.Fragment,{key:n},r.createElement(We,{item:e}),t.length!==n+1&&r.createElement(Ge,null))))))}function Ke(e){let{links:t}=e;return function(e){return"title"in e[0]}(t)?r.createElement(Ve,{columns:t}):r.createElement(qe,{links:t})}var Qe=n(50941);const Xe={footerLogoLink:"footerLogoLink_BH7S"};function Je(e){let{logo:t}=e;const{withBaseUrl:n}=(0,Q.C)(),o={light:n(t.src),dark:n(t.srcDark??t.src)};return r.createElement(Qe.Z,{className:(0,a.Z)("footer__logo",t.className),alt:t.alt,sources:o,width:t.width,height:t.height,style:t.style})}function et(e){let{logo:t}=e;return t.href?r.createElement(K.Z,{href:t.href,className:Xe.footerLogoLink,target:t.target},r.createElement(Je,{logo:t})):r.createElement(Je,{logo:t})}function tt(e){let{copyright:t}=e;return r.createElement("div",{className:"footer__copyright",dangerouslySetInnerHTML:{__html:t}})}function nt(e){let{style:t,links:n,logo:o,copyright:i}=e;return r.createElement("footer",{className:(0,a.Z)("footer",{"footer--dark":"dark"===t})},r.createElement("div",{className:"container container-fluid"},n,(o||i)&&r.createElement("div",{className:"footer__bottom text--center"},o&&r.createElement("div",{className:"margin-bottom--sm"},o),i)))}function rt(){const{footer:e}=(0,w.L)();if(!e)return null;const{copyright:t,links:n,logo:a,style:o}=e;return r.createElement(nt,{style:o,links:n&&n.length>0&&r.createElement(Ke,{links:n}),logo:a&&r.createElement(et,{logo:a}),copyright:t&&r.createElement(tt,{copyright:t})})}const at=r.memo(rt),ot=(0,O.Qc)([B.S,E.pl,L.OC,xe.L5,i.VC,function(e){let{children:t}=e;return r.createElement(P.n2,null,r.createElement(N.M,null,r.createElement(I,null,t)))}]);function it(e){let{children:t}=e;return r.createElement(ot,null,t)}function lt(e){let{error:t,tryAgain:n}=e;return r.createElement("main",{className:"container margin-vert--xl"},r.createElement("div",{className:"row"},r.createElement("div",{className:"col col--6 col--offset-3"},r.createElement("h1",{className:"hero__title"},r.createElement(u.Z,{id:"theme.ErrorPageContent.title",description:"The title of the fallback page when the page crashed"},"This page crashed.")),r.createElement("p",null,t.message),r.createElement("div",null,r.createElement("button",{type:"button",onClick:n},r.createElement(u.Z,{id:"theme.ErrorPageContent.tryAgain",description:"The label of the button to try again when the page crashed"},"Try again"))))))}const st={mainWrapper:"mainWrapper_z2l0"};function ut(e){const{children:t,noFooter:n,wrapperClassName:l,title:s,description:u}=e;return(0,b.t)(),r.createElement(it,null,r.createElement(i.d,{title:s,description:u}),r.createElement(y,null),r.createElement(A,null),r.createElement(ze,null),r.createElement("div",{id:d,className:(0,a.Z)(g.k.wrapper.main,st.mainWrapper,l)},r.createElement(o.Z,{fallback:e=>r.createElement(lt,e)},t)),!n&&r.createElement(at,null))}},21327:(e,t,n)=>{"use strict";n.d(t,{Z:()=>d});var r=n(87462),a=n(67294),o=n(39960),i=n(44996),l=n(52263),s=n(86668),u=n(50941);function c(e){let{logo:t,alt:n,imageClassName:r}=e;const o={light:(0,i.Z)(t.src),dark:(0,i.Z)(t.srcDark||t.src)},l=a.createElement(u.Z,{className:t.className,sources:o,height:t.height,width:t.width,alt:n,style:t.style});return r?a.createElement("div",{className:r},l):l}function d(e){const{siteConfig:{title:t}}=(0,l.Z)(),{navbar:{title:n,logo:u}}=(0,s.L)(),{imageClassName:d,titleClassName:f,...p}=e,m=(0,i.Z)(u?.href||"/"),h=n?"":t,g=u?.alt??h;return a.createElement(o.Z,(0,r.Z)({to:m},p,u?.target&&{target:u.target}),u&&a.createElement(c,{logo:u,alt:g,imageClassName:d}),null!=n&&a.createElement("b",{className:f},n))}},90197:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var r=n(67294),a=n(35742);function o(e){let{locale:t,version:n,tag:o}=e;const i=t;return r.createElement(a.Z,null,t&&r.createElement("meta",{name:"docusaurus_locale",content:t}),n&&r.createElement("meta",{name:"docusaurus_version",content:n}),o&&r.createElement("meta",{name:"docusaurus_tag",content:o}),i&&r.createElement("meta",{name:"docsearch:language",content:i}),n&&r.createElement("meta",{name:"docsearch:version",content:n}),o&&r.createElement("meta",{name:"docsearch:docusaurus_tag",content:o}))}},50941:(e,t,n)=>{"use strict";n.d(t,{Z:()=>u});var r=n(87462),a=n(67294),o=n(86010),i=n(72389),l=n(92949);const s={themedImage:"themedImage_ToTc","themedImage--light":"themedImage--light_HNdA","themedImage--dark":"themedImage--dark_i4oU"};function u(e){const t=(0,i.Z)(),{colorMode:n}=(0,l.I)(),{sources:u,className:c,alt:d,...f}=e,p=t?"dark"===n?["dark"]:["light"]:["light","dark"];return a.createElement(a.Fragment,null,p.map((e=>a.createElement("img",(0,r.Z)({key:e,src:u[e],alt:d,className:(0,o.Z)(s.themedImage,s[`themedImage--${e}`],c)},f)))))}},86043:(e,t,n)=>{"use strict";n.d(t,{u:()=>l,z:()=>h});var r=n(87462),a=n(67294),o=n(10412);const i="ease-in-out";function l(e){let{initialState:t}=e;const[n,r]=(0,a.useState)(t??!1),o=(0,a.useCallback)((()=>{r((e=>!e))}),[]);return{collapsed:n,setCollapsed:r,toggleCollapsed:o}}const s={display:"none",overflow:"hidden",height:"0px"},u={display:"block",overflow:"visible",height:"auto"};function c(e,t){const n=t?s:u;e.style.display=n.display,e.style.overflow=n.overflow,e.style.height=n.height}function d(e){let{collapsibleRef:t,collapsed:n,animation:r}=e;const o=(0,a.useRef)(!1);(0,a.useEffect)((()=>{const e=t.current;function a(){const t=e.scrollHeight,n=r?.duration??function(e){const t=e/36;return Math.round(10*(4+15*t**.25+t/5))}(t);return{transition:`height ${n}ms ${r?.easing??i}`,height:`${t}px`}}function l(){const t=a();e.style.transition=t.transition,e.style.height=t.height}if(!o.current)return c(e,n),void(o.current=!0);return e.style.willChange="height",function(){const t=requestAnimationFrame((()=>{n?(l(),requestAnimationFrame((()=>{e.style.height=s.height,e.style.overflow=s.overflow}))):(e.style.display="block",requestAnimationFrame((()=>{l()})))}));return()=>cancelAnimationFrame(t)}()}),[t,n,r])}function f(e){if(!o.Z.canUseDOM)return e?s:u}function p(e){let{as:t="div",collapsed:n,children:r,animation:o,onCollapseTransitionEnd:i,className:l,disableSSRStyle:s}=e;const u=(0,a.useRef)(null);return d({collapsibleRef:u,collapsed:n,animation:o}),a.createElement(t,{ref:u,style:s?void 0:f(n),onTransitionEnd:e=>{"height"===e.propertyName&&(c(u.current,n),i?.(n))},className:l},r)}function m(e){let{collapsed:t,...n}=e;const[o,i]=(0,a.useState)(!t),[l,s]=(0,a.useState)(t);return(0,a.useLayoutEffect)((()=>{t||i(!0)}),[t]),(0,a.useLayoutEffect)((()=>{o&&s(t)}),[o,t]),o?a.createElement(p,(0,r.Z)({},n,{collapsed:l})):null}function h(e){let{lazy:t,...n}=e;const r=t?m:p;return a.createElement(r,n)}},59689:(e,t,n)=>{"use strict";n.d(t,{nT:()=>m,pl:()=>p});var r=n(67294),a=n(72389),o=n(50012),i=n(902),l=n(86668);const s=(0,o.WA)("docusaurus.announcement.dismiss"),u=(0,o.WA)("docusaurus.announcement.id"),c=()=>"true"===s.get(),d=e=>s.set(String(e)),f=r.createContext(null);function p(e){let{children:t}=e;const n=function(){const{announcementBar:e}=(0,l.L)(),t=(0,a.Z)(),[n,o]=(0,r.useState)((()=>!!t&&c()));(0,r.useEffect)((()=>{o(c())}),[]);const i=(0,r.useCallback)((()=>{d(!0),o(!0)}),[]);return(0,r.useEffect)((()=>{if(!e)return;const{id:t}=e;let n=u.get();"annoucement-bar"===n&&(n="announcement-bar");const r=t!==n;u.set(t),r&&d(!1),!r&&c()||o(!1)}),[e]),(0,r.useMemo)((()=>({isActive:!!e&&!n,close:i})),[e,n,i])}();return r.createElement(f.Provider,{value:n},t)}function m(){const e=(0,r.useContext)(f);if(!e)throw new i.i6("AnnouncementBarProvider");return e}},92949:(e,t,n)=>{"use strict";n.d(t,{I:()=>g,S:()=>h});var r=n(67294),a=n(10412),o=n(902),i=n(50012),l=n(86668);const s=r.createContext(void 0),u="theme",c=(0,i.WA)(u),d={light:"light",dark:"dark"},f=e=>e===d.dark?d.dark:d.light,p=e=>a.Z.canUseDOM?f(document.documentElement.getAttribute("data-theme")):f(e),m=e=>{c.set(f(e))};function h(e){let{children:t}=e;const n=function(){const{colorMode:{defaultMode:e,disableSwitch:t,respectPrefersColorScheme:n}}=(0,l.L)(),[a,o]=(0,r.useState)(p(e));(0,r.useEffect)((()=>{t&&c.del()}),[t]);const i=(0,r.useCallback)((function(t,r){void 0===r&&(r={});const{persist:a=!0}=r;t?(o(t),a&&m(t)):(o(n?window.matchMedia("(prefers-color-scheme: dark)").matches?d.dark:d.light:e),c.del())}),[n,e]);(0,r.useEffect)((()=>{document.documentElement.setAttribute("data-theme",f(a))}),[a]),(0,r.useEffect)((()=>{if(t)return;const e=e=>{if(e.key!==u)return;const t=c.get();null!==t&&i(f(t))};return window.addEventListener("storage",e),()=>window.removeEventListener("storage",e)}),[t,i]);const s=(0,r.useRef)(!1);return(0,r.useEffect)((()=>{if(t&&!n)return;const e=window.matchMedia("(prefers-color-scheme: dark)"),r=()=>{window.matchMedia("print").matches||s.current?s.current=window.matchMedia("print").matches:i(null)};return e.addListener(r),()=>e.removeListener(r)}),[i,t,n]),(0,r.useMemo)((()=>({colorMode:a,setColorMode:i,get isDarkTheme(){return a===d.dark},setLightTheme(){i(d.light)},setDarkTheme(){i(d.dark)}})),[a,i])}();return r.createElement(s.Provider,{value:n},t)}function g(){const e=(0,r.useContext)(s);if(null==e)throw new o.i6("ColorModeProvider","Please see https://docusaurus.io/docs/api/themes/configuration#use-color-mode.");return e}},60373:(e,t,n)=>{"use strict";n.d(t,{J:()=>v,L5:()=>g});var r=n(67294),a=n(94104),o=n(29935),i=n(86668),l=n(53438),s=n(902),u=n(50012);const c=e=>`docs-preferred-version-${e}`,d={save:(e,t,n)=>{(0,u.WA)(c(e),{persistence:t}).set(n)},read:(e,t)=>(0,u.WA)(c(e),{persistence:t}).get(),clear:(e,t)=>{(0,u.WA)(c(e),{persistence:t}).del()}},f=e=>Object.fromEntries(e.map((e=>[e,{preferredVersionName:null}])));const p=r.createContext(null);function m(){const e=(0,a._r)(),t=(0,i.L)().docs.versionPersistence,n=(0,r.useMemo)((()=>Object.keys(e)),[e]),[o,l]=(0,r.useState)((()=>f(n)));(0,r.useEffect)((()=>{l(function(e){let{pluginIds:t,versionPersistence:n,allDocsData:r}=e;function a(e){const t=d.read(e,n);return r[e].versions.some((e=>e.name===t))?{preferredVersionName:t}:(d.clear(e,n),{preferredVersionName:null})}return Object.fromEntries(t.map((e=>[e,a(e)])))}({allDocsData:e,versionPersistence:t,pluginIds:n}))}),[e,t,n]);return[o,(0,r.useMemo)((()=>({savePreferredVersion:function(e,n){d.save(e,t,n),l((t=>({...t,[e]:{preferredVersionName:n}})))}})),[t])]}function h(e){let{children:t}=e;const n=m();return r.createElement(p.Provider,{value:n},t)}function g(e){let{children:t}=e;return l.cE?r.createElement(h,null,t):r.createElement(r.Fragment,null,t)}function b(){const e=(0,r.useContext)(p);if(!e)throw new s.i6("DocsPreferredVersionContextProvider");return e}function v(e){void 0===e&&(e=o.m);const t=(0,a.zh)(e),[n,i]=b(),{preferredVersionName:l}=n[e];return{preferredVersion:t.versions.find((e=>e.name===l))??null,savePreferredVersionName:(0,r.useCallback)((t=>{i.savePreferredVersion(e,t)}),[i,e])}}},1116:(e,t,n)=>{"use strict";n.d(t,{V:()=>s,b:()=>l});var r=n(67294),a=n(902);const o=Symbol("EmptyContext"),i=r.createContext(o);function l(e){let{children:t,name:n,items:a}=e;const o=(0,r.useMemo)((()=>n&&a?{name:n,items:a}:null),[n,a]);return r.createElement(i.Provider,{value:o},t)}function s(){const e=(0,r.useContext)(i);if(e===o)throw new a.i6("DocsSidebarProvider");return e}},93163:(e,t,n)=>{"use strict";n.d(t,{M:()=>d,e:()=>f});var r=n(67294),a=n(13102),o=n(87524),i=n(91980),l=n(86668),s=n(902);const u=r.createContext(void 0);function c(){const e=function(){const e=(0,a.HY)(),{items:t}=(0,l.L)().navbar;return 0===t.length&&!e.component}(),t=(0,o.i)(),n=!e&&"mobile"===t,[s,u]=(0,r.useState)(!1);(0,i.Rb)((()=>{if(s)return u(!1),!1}));const c=(0,r.useCallback)((()=>{u((e=>!e))}),[]);return(0,r.useEffect)((()=>{"desktop"===t&&u(!1)}),[t]),(0,r.useMemo)((()=>({disabled:e,shouldRender:n,toggle:c,shown:s})),[e,n,c,s])}function d(e){let{children:t}=e;const n=c();return r.createElement(u.Provider,{value:n},t)}function f(){const e=r.useContext(u);if(void 0===e)throw new s.i6("NavbarMobileSidebarProvider");return e}},13102:(e,t,n)=>{"use strict";n.d(t,{HY:()=>l,Zo:()=>s,n2:()=>i});var r=n(67294),a=n(902);const o=r.createContext(null);function i(e){let{children:t}=e;const n=(0,r.useState)({component:null,props:null});return r.createElement(o.Provider,{value:n},t)}function l(){const e=(0,r.useContext)(o);if(!e)throw new a.i6("NavbarSecondaryMenuContentProvider");return e[0]}function s(e){let{component:t,props:n}=e;const i=(0,r.useContext)(o);if(!i)throw new a.i6("NavbarSecondaryMenuContentProvider");const[,l]=i,s=(0,a.Ql)(n);return(0,r.useEffect)((()=>{l({component:t,props:s})}),[l,t,s]),(0,r.useEffect)((()=>()=>l({component:null,props:null})),[l]),null}},19727:(e,t,n)=>{"use strict";n.d(t,{h:()=>a,t:()=>o});var r=n(67294);const a="navigation-with-keyboard";function o(){(0,r.useEffect)((()=>{function e(e){"keydown"===e.type&&"Tab"===e.key&&document.body.classList.add(a),"mousedown"===e.type&&document.body.classList.remove(a)}return document.addEventListener("keydown",e),document.addEventListener("mousedown",e),()=>{document.body.classList.remove(a),document.removeEventListener("keydown",e),document.removeEventListener("mousedown",e)}}),[])}},87524:(e,t,n)=>{"use strict";n.d(t,{i:()=>u});var r=n(67294),a=n(10412);const o={desktop:"desktop",mobile:"mobile",ssr:"ssr"},i=996;function l(){return a.Z.canUseDOM?window.innerWidth>i?o.desktop:o.mobile:o.ssr}const s=!1;function u(){const[e,t]=(0,r.useState)((()=>s?"ssr":l()));return(0,r.useEffect)((()=>{function e(){t(l())}const n=s?window.setTimeout(e,1e3):void 0;return window.addEventListener("resize",e),()=>{window.removeEventListener("resize",e),clearTimeout(n)}}),[]),e}},35281:(e,t,n)=>{"use strict";n.d(t,{k:()=>r});const r={page:{blogListPage:"blog-list-page",blogPostPage:"blog-post-page",blogTagsListPage:"blog-tags-list-page",blogTagPostListPage:"blog-tags-post-list-page",docsDocPage:"docs-doc-page",docsTagsListPage:"docs-tags-list-page",docsTagDocListPage:"docs-tags-doc-list-page",mdxPage:"mdx-page"},wrapper:{main:"main-wrapper",blogPages:"blog-wrapper",docsPages:"docs-wrapper",mdxPages:"mdx-wrapper"},common:{editThisPage:"theme-edit-this-page",lastUpdated:"theme-last-updated",backToTopButton:"theme-back-to-top-button",codeBlock:"theme-code-block",admonition:"theme-admonition",admonitionType:e=>`theme-admonition-${e}`},layout:{},docs:{docVersionBanner:"theme-doc-version-banner",docVersionBadge:"theme-doc-version-badge",docBreadcrumbs:"theme-doc-breadcrumbs",docMarkdown:"theme-doc-markdown",docTocMobile:"theme-doc-toc-mobile",docTocDesktop:"theme-doc-toc-desktop",docFooter:"theme-doc-footer",docFooterTagsRow:"theme-doc-footer-tags-row",docFooterEditMetaRow:"theme-doc-footer-edit-meta-row",docSidebarContainer:"theme-doc-sidebar-container",docSidebarMenu:"theme-doc-sidebar-menu",docSidebarItemCategory:"theme-doc-sidebar-item-category",docSidebarItemLink:"theme-doc-sidebar-item-link",docSidebarItemCategoryLevel:e=>`theme-doc-sidebar-item-category-level-${e}`,docSidebarItemLinkLevel:e=>`theme-doc-sidebar-item-link-level-${e}`},blog:{}}},53438:(e,t,n)=>{"use strict";n.d(t,{Wl:()=>f,_F:()=>h,cE:()=>d,hI:()=>E,lO:()=>v,oz:()=>y,s1:()=>b,vY:()=>w});var r=n(67294),a=n(16550),o=n(18790),i=n(94104),l=n(60373),s=n(1116),u=n(67392),c=n(48596);const d=!!i._r;function f(e){if(e.href)return e.href;for(const t of e.items){if("link"===t.type)return t.href;if("category"===t.type){const e=f(t);if(e)return e}}}const p=(e,t)=>void 0!==e&&(0,c.Mg)(e,t),m=(e,t)=>e.some((e=>h(e,t)));function h(e,t){return"link"===e.type?p(e.href,t):"category"===e.type&&(p(e.href,t)||m(e.items,t))}function g(e){let{sidebarItems:t,pathname:n,onlyCategories:r=!1}=e;const a=[];return function e(t){for(const o of t)if("category"===o.type&&((0,c.Mg)(o.href,n)||e(o.items))||"link"===o.type&&(0,c.Mg)(o.href,n)){return r&&"category"!==o.type||a.unshift(o),!0}return!1}(t),a}function b(){const e=(0,s.V)(),{pathname:t}=(0,a.TH)(),n=(0,i.gA)()?.pluginData.breadcrumbs;return!1!==n&&e?g({sidebarItems:e.items,pathname:t}):null}function v(e){const{activeVersion:t}=(0,i.Iw)(e),{preferredVersion:n}=(0,l.J)(e),a=(0,i.yW)(e);return(0,r.useMemo)((()=>(0,u.j)([t,n,a].filter(Boolean))),[t,n,a])}function y(e,t){const n=v(t);return(0,r.useMemo)((()=>{const t=n.flatMap((e=>e.sidebars?Object.entries(e.sidebars):[])),r=t.find((t=>t[0]===e));if(!r)throw new Error(`Can't find any sidebar with id "${e}" in version${n.length>1?"s":""} ${n.map((e=>e.name)).join(", ")}".\n Available sidebar ids are:\n - ${Object.keys(t).join("\n- ")}`);return r[1]}),[e,n])}function w(e,t){const n=v(t);return(0,r.useMemo)((()=>{const t=n.flatMap((e=>e.docs)),r=t.find((t=>t.id===e));if(!r){if(n.flatMap((e=>e.draftIds)).includes(e))return null;throw new Error(`DocNavbarItem: couldn't find any doc with id "${e}" in version${n.length>1?"s":""} ${n.map((e=>e.name)).join(", ")}".\nAvailable doc ids are:\n- ${(0,u.j)(t.map((e=>e.id))).join("\n- ")}`)}return r}),[e,n])}function E(e){let{route:t,versionMetadata:n}=e;const r=(0,a.TH)(),i=t.routes,l=i.find((e=>(0,a.LX)(r.pathname,e)));if(!l)return null;const s=l.sidebar,u=s?n.docsSidebars[s]:void 0;return{docElement:(0,o.H)(i),sidebarName:s,sidebarItems:u}}},91980:(e,t,n)=>{"use strict";n.d(t,{Rb:()=>l,_X:()=>s});var r=n(67294),a=n(16550),o=n(61688),i=n(902);function l(e){!function(e){const t=(0,a.k6)(),n=(0,i.zX)(e);(0,r.useEffect)((()=>t.block(((e,t)=>n(e,t)))),[t,n])}(((t,n)=>{if("POP"===n)return e(t,n)}))}function s(e){return function(e){const t=(0,a.k6)();return(0,o.useSyncExternalStore)(t.listen,(()=>e(t)),(()=>e(t)))}((t=>null===e?null:new URLSearchParams(t.location.search).get(e)))}},67392:(e,t,n)=>{"use strict";function r(e,t){return void 0===t&&(t=(e,t)=>e===t),e.filter(((n,r)=>e.findIndex((e=>t(e,n)))!==r))}function a(e){return Array.from(new Set(e))}n.d(t,{j:()=>a,l:()=>r})},1944:(e,t,n)=>{"use strict";n.d(t,{FG:()=>f,d:()=>c,VC:()=>p});var r=n(67294),a=n(86010),o=n(35742),i=n(30226);function l(){const e=r.useContext(i._);if(!e)throw new Error("Unexpected: no Docusaurus route context found");return e}var s=n(44996),u=n(52263);function c(e){let{title:t,description:n,keywords:a,image:i,children:l}=e;const c=function(e){const{siteConfig:t}=(0,u.Z)(),{title:n,titleDelimiter:r}=t;return e?.trim().length?`${e.trim()} ${r} ${n}`:n}(t),{withBaseUrl:d}=(0,s.C)(),f=i?d(i,{absolute:!0}):void 0;return r.createElement(o.Z,null,t&&r.createElement("title",null,c),t&&r.createElement("meta",{property:"og:title",content:c}),n&&r.createElement("meta",{name:"description",content:n}),n&&r.createElement("meta",{property:"og:description",content:n}),a&&r.createElement("meta",{name:"keywords",content:Array.isArray(a)?a.join(","):a}),f&&r.createElement("meta",{property:"og:image",content:f}),f&&r.createElement("meta",{name:"twitter:image",content:f}),l)}const d=r.createContext(void 0);function f(e){let{className:t,children:n}=e;const i=r.useContext(d),l=(0,a.Z)(i,t);return r.createElement(d.Provider,{value:l},r.createElement(o.Z,null,r.createElement("html",{className:l})),n)}function p(e){let{children:t}=e;const n=l(),o=`plugin-${n.plugin.name.replace(/docusaurus-(?:plugin|theme)-(?:content-)?/gi,"")}`;const i=`plugin-id-${n.plugin.id}`;return r.createElement(f,{className:(0,a.Z)(o,i)},t)}},902:(e,t,n)=>{"use strict";n.d(t,{D9:()=>i,Qc:()=>u,Ql:()=>s,i6:()=>l,zX:()=>o});var r=n(67294);const a=n(10412).Z.canUseDOM?r.useLayoutEffect:r.useEffect;function o(e){const t=(0,r.useRef)(e);return a((()=>{t.current=e}),[e]),(0,r.useCallback)((function(){return t.current(...arguments)}),[])}function i(e){const t=(0,r.useRef)();return a((()=>{t.current=e})),t.current}class l extends Error{constructor(e,t){super(),this.name="ReactContextError",this.message=`Hook ${this.stack?.split("\n")[1]?.match(/at (?:\w+\.)?(?<name>\w+)/)?.groups.name??""} is called outside the <${e}>. ${t??""}`}}function s(e){const t=Object.entries(e);return t.sort(((e,t)=>e[0].localeCompare(t[0]))),(0,r.useMemo)((()=>e),t.flat())}function u(e){return t=>{let{children:n}=t;return r.createElement(r.Fragment,null,e.reduceRight(((e,t)=>r.createElement(t,null,e)),n))}}},48596:(e,t,n)=>{"use strict";n.d(t,{Mg:()=>i,Ns:()=>l});var r=n(67294),a=n(723),o=n(52263);function i(e,t){const n=e=>(!e||e.endsWith("/")?e:`${e}/`)?.toLowerCase();return n(e)===n(t)}function l(){const{baseUrl:e}=(0,o.Z)().siteConfig;return(0,r.useMemo)((()=>function(e){let{baseUrl:t,routes:n}=e;function r(e){return e.path===t&&!0===e.exact}function a(e){return e.path===t&&!e.exact}return function e(t){if(0===t.length)return;return t.find(r)||e(t.filter(a).flatMap((e=>e.routes??[])))}(n)}({routes:a.Z,baseUrl:e})),[e])}},12466:(e,t,n)=>{"use strict";n.d(t,{Ct:()=>p,OC:()=>s,RF:()=>d,o5:()=>f});var r=n(67294),a=n(10412),o=n(72389),i=n(902);const l=r.createContext(void 0);function s(e){let{children:t}=e;const n=function(){const e=(0,r.useRef)(!0);return(0,r.useMemo)((()=>({scrollEventsEnabledRef:e,enableScrollEvents:()=>{e.current=!0},disableScrollEvents:()=>{e.current=!1}})),[])}();return r.createElement(l.Provider,{value:n},t)}function u(){const e=(0,r.useContext)(l);if(null==e)throw new i.i6("ScrollControllerProvider");return e}const c=()=>a.Z.canUseDOM?{scrollX:window.pageXOffset,scrollY:window.pageYOffset}:null;function d(e,t){void 0===t&&(t=[]);const{scrollEventsEnabledRef:n}=u(),a=(0,r.useRef)(c()),o=(0,i.zX)(e);(0,r.useEffect)((()=>{const e=()=>{if(!n.current)return;const e=c();o(e,a.current),a.current=e},t={passive:!0};return e(),window.addEventListener("scroll",e,t),()=>window.removeEventListener("scroll",e,t)}),[o,n,...t])}function f(){const e=u(),t=function(){const e=(0,r.useRef)({elem:null,top:0}),t=(0,r.useCallback)((t=>{e.current={elem:t,top:t.getBoundingClientRect().top}}),[]),n=(0,r.useCallback)((()=>{const{current:{elem:t,top:n}}=e;if(!t)return{restored:!1};const r=t.getBoundingClientRect().top-n;return r&&window.scrollBy({left:0,top:r}),e.current={elem:null,top:0},{restored:0!==r}}),[]);return(0,r.useMemo)((()=>({save:t,restore:n})),[n,t])}(),n=(0,r.useRef)(void 0),a=(0,r.useCallback)((r=>{t.save(r),e.disableScrollEvents(),n.current=()=>{const{restored:r}=t.restore();if(n.current=void 0,r){const t=()=>{e.enableScrollEvents(),window.removeEventListener("scroll",t)};window.addEventListener("scroll",t)}else e.enableScrollEvents()}}),[e,t]);return(0,r.useLayoutEffect)((()=>{queueMicrotask((()=>n.current?.()))})),{blockElementScrollPositionUntilNextRender:a}}function p(){const e=(0,r.useRef)(null),t=(0,o.Z)()&&"smooth"===getComputedStyle(document.documentElement).scrollBehavior;return{startScroll:n=>{e.current=t?function(e){return window.scrollTo({top:e,behavior:"smooth"}),()=>{}}(n):function(e){let t=null;const n=document.documentElement.scrollTop>e;return function r(){const a=document.documentElement.scrollTop;(n&&a>e||!n&&a<e)&&(t=requestAnimationFrame(r),window.scrollTo(0,Math.floor(.85*(a-e))+e))}(),()=>t&&cancelAnimationFrame(t)}(n)},cancelScroll:()=>e.current?.()}}},43320:(e,t,n)=>{"use strict";n.d(t,{HX:()=>r,os:()=>a});n(52263);const r="default";function a(e,t){return`docs-${e}-${t}`}},50012:(e,t,n)=>{"use strict";n.d(t,{Nk:()=>d,WA:()=>c});var r=n(67294),a=n(61688);const o="localStorage";function i(e){let{key:t,oldValue:n,newValue:r,storage:a}=e;if(n===r)return;const o=document.createEvent("StorageEvent");o.initStorageEvent("storage",!1,!1,t,n,r,window.location.href,a),window.dispatchEvent(o)}function l(e){if(void 0===e&&(e=o),"undefined"==typeof window)throw new Error("Browser storage is not available on Node.js/Docusaurus SSR process.");if("none"===e)return null;try{return window[e]}catch(n){return t=n,s||(console.warn("Docusaurus browser storage is not available.\nPossible reasons: running Docusaurus in an iframe, in an incognito browser session, or using too strict browser privacy settings.",t),s=!0),null}var t}let s=!1;const u={get:()=>null,set:()=>{},del:()=>{},listen:()=>()=>{}};function c(e,t){if("undefined"==typeof window)return function(e){function t(){throw new Error(`Illegal storage API usage for storage key "${e}".\nDocusaurus storage APIs are not supposed to be called on the server-rendering process.\nPlease only call storage APIs in effects and event handlers.`)}return{get:t,set:t,del:t,listen:t}}(e);const n=l(t?.persistence);return null===n?u:{get:()=>{try{return n.getItem(e)}catch(t){return console.error(`Docusaurus storage error, can't get key=${e}`,t),null}},set:t=>{try{const r=n.getItem(e);n.setItem(e,t),i({key:e,oldValue:r,newValue:t,storage:n})}catch(r){console.error(`Docusaurus storage error, can't set ${e}=${t}`,r)}},del:()=>{try{const t=n.getItem(e);n.removeItem(e),i({key:e,oldValue:t,newValue:null,storage:n})}catch(t){console.error(`Docusaurus storage error, can't delete key=${e}`,t)}},listen:t=>{try{const r=r=>{r.storageArea===n&&r.key===e&&t(r)};return window.addEventListener("storage",r),()=>window.removeEventListener("storage",r)}catch(r){return console.error(`Docusaurus storage error, can't listen for changes of key=${e}`,r),()=>{}}}}}function d(e,t){const n=(0,r.useRef)((()=>null===e?u:c(e,t))).current(),o=(0,r.useCallback)((e=>"undefined"==typeof window?()=>{}:n.listen(e)),[n]);return[(0,a.useSyncExternalStore)(o,(()=>"undefined"==typeof window?null:n.get()),(()=>null)),n]}},94711:(e,t,n)=>{"use strict";n.d(t,{l:()=>o});var r=n(52263),a=n(16550);function o(){const{siteConfig:{baseUrl:e,url:t},i18n:{defaultLocale:n,currentLocale:o}}=(0,r.Z)(),{pathname:i}=(0,a.TH)(),l=o===n?e:e.replace(`/${o}/`,"/"),s=i.replace(e,"");return{createUrl:function(e){let{locale:r,fullyQualified:a}=e;return`${a?t:""}${function(e){return e===n?`${l}`:`${l}${e}/`}(r)}${s}`}}}},85936:(e,t,n)=>{"use strict";n.d(t,{S:()=>i});var r=n(67294),a=n(16550),o=n(902);function i(e){const t=(0,a.TH)(),n=(0,o.D9)(t),i=(0,o.zX)(e);(0,r.useEffect)((()=>{n&&t!==n&&i({location:t,previousLocation:n})}),[i,t,n])}},86668:(e,t,n)=>{"use strict";n.d(t,{L:()=>a});var r=n(52263);function a(){return(0,r.Z)().siteConfig.themeConfig}},8802:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e,t){const{trailingSlash:n,baseUrl:r}=t;if(e.startsWith("#"))return e;if(void 0===n)return e;const[a]=e.split(/[#?]/),o="/"===a||a===r?a:(i=a,n?function(e){return e.endsWith("/")?e:`${e}/`}(i):function(e){return e.endsWith("/")?e.slice(0,-1):e}(i));var i;return e.replace(a,o)}},18780:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.applyTrailingSlash=t.blogPostContainerID=void 0,t.blogPostContainerID="post-content";var a=n(8802);Object.defineProperty(t,"applyTrailingSlash",{enumerable:!0,get:function(){return r(a).default}})},94184:(e,t)=>{var n;!function(){"use strict";var r={}.hasOwnProperty;function a(){for(var e=[],t=0;t<arguments.length;t++){var n=arguments[t];if(n){var o=typeof n;if("string"===o||"number"===o)e.push(n);else if(Array.isArray(n)){if(n.length){var i=a.apply(null,n);i&&e.push(i)}}else if("object"===o){if(n.toString!==Object.prototype.toString&&!n.toString.toString().includes("[native code]")){e.push(n.toString());continue}for(var l in n)r.call(n,l)&&n[l]&&e.push(l)}}}return e.join(" ")}e.exports?(a.default=a,e.exports=a):void 0===(n=function(){return a}.apply(t,[]))||(e.exports=n)}()},86010:(e,t,n)=>{"use strict";function r(e){var t,n,a="";if("string"==typeof e||"number"==typeof e)a+=e;else if("object"==typeof e)if(Array.isArray(e))for(t=0;t<e.length;t++)e[t]&&(n=r(e[t]))&&(a&&(a+=" "),a+=n);else for(t in e)e[t]&&(a&&(a+=" "),a+=t);return a}n.d(t,{Z:()=>a});const a=function(){for(var e,t,n=0,a="";n<arguments.length;)(e=arguments[n++])&&(t=r(e))&&(a&&(a+=" "),a+=t);return a}},42358:(e,t,n)=>{"use strict";n.d(t,{lX:()=>S,q_:()=>N,ob:()=>h,PP:()=>O,Ep:()=>m,Hp:()=>g});var r=n(87462);function a(e){return"/"===e.charAt(0)}function o(e,t){for(var n=t,r=n+1,a=e.length;r<a;n+=1,r+=1)e[n]=e[r];e.pop()}const i=function(e,t){void 0===t&&(t="");var n,r=e&&e.split("/")||[],i=t&&t.split("/")||[],l=e&&a(e),s=t&&a(t),u=l||s;if(e&&a(e)?i=r:r.length&&(i.pop(),i=i.concat(r)),!i.length)return"/";if(i.length){var c=i[i.length-1];n="."===c||".."===c||""===c}else n=!1;for(var d=0,f=i.length;f>=0;f--){var p=i[f];"."===p?o(i,f):".."===p?(o(i,f),d++):d&&(o(i,f),d--)}if(!u)for(;d--;d)i.unshift("..");!u||""===i[0]||i[0]&&a(i[0])||i.unshift("");var m=i.join("/");return n&&"/"!==m.substr(-1)&&(m+="/"),m};function l(e){return e.valueOf?e.valueOf():Object.prototype.valueOf.call(e)}const s=function e(t,n){if(t===n)return!0;if(null==t||null==n)return!1;if(Array.isArray(t))return Array.isArray(n)&&t.length===n.length&&t.every((function(t,r){return e(t,n[r])}));if("object"==typeof t||"object"==typeof n){var r=l(t),a=l(n);return r!==t||a!==n?e(r,a):Object.keys(Object.assign({},t,n)).every((function(r){return e(t[r],n[r])}))}return!1};var u=n(38776);function c(e){return"/"===e.charAt(0)?e:"/"+e}function d(e){return"/"===e.charAt(0)?e.substr(1):e}function f(e,t){return function(e,t){return 0===e.toLowerCase().indexOf(t.toLowerCase())&&-1!=="/?#".indexOf(e.charAt(t.length))}(e,t)?e.substr(t.length):e}function p(e){return"/"===e.charAt(e.length-1)?e.slice(0,-1):e}function m(e){var t=e.pathname,n=e.search,r=e.hash,a=t||"/";return n&&"?"!==n&&(a+="?"===n.charAt(0)?n:"?"+n),r&&"#"!==r&&(a+="#"===r.charAt(0)?r:"#"+r),a}function h(e,t,n,a){var o;"string"==typeof e?(o=function(e){var t=e||"/",n="",r="",a=t.indexOf("#");-1!==a&&(r=t.substr(a),t=t.substr(0,a));var o=t.indexOf("?");return-1!==o&&(n=t.substr(o),t=t.substr(0,o)),{pathname:t,search:"?"===n?"":n,hash:"#"===r?"":r}}(e),o.state=t):(void 0===(o=(0,r.Z)({},e)).pathname&&(o.pathname=""),o.search?"?"!==o.search.charAt(0)&&(o.search="?"+o.search):o.search="",o.hash?"#"!==o.hash.charAt(0)&&(o.hash="#"+o.hash):o.hash="",void 0!==t&&void 0===o.state&&(o.state=t));try{o.pathname=decodeURI(o.pathname)}catch(l){throw l instanceof URIError?new URIError('Pathname "'+o.pathname+'" could not be decoded. This is likely caused by an invalid percent-encoding.'):l}return n&&(o.key=n),a?o.pathname?"/"!==o.pathname.charAt(0)&&(o.pathname=i(o.pathname,a.pathname)):o.pathname=a.pathname:o.pathname||(o.pathname="/"),o}function g(e,t){return e.pathname===t.pathname&&e.search===t.search&&e.hash===t.hash&&e.key===t.key&&s(e.state,t.state)}function b(){var e=null;var t=[];return{setPrompt:function(t){return e=t,function(){e===t&&(e=null)}},confirmTransitionTo:function(t,n,r,a){if(null!=e){var o="function"==typeof e?e(t,n):e;"string"==typeof o?"function"==typeof r?r(o,a):a(!0):a(!1!==o)}else a(!0)},appendListener:function(e){var n=!0;function r(){n&&e.apply(void 0,arguments)}return t.push(r),function(){n=!1,t=t.filter((function(e){return e!==r}))}},notifyListeners:function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];t.forEach((function(e){return e.apply(void 0,n)}))}}}var v=!("undefined"==typeof window||!window.document||!window.document.createElement);function y(e,t){t(window.confirm(e))}var w="popstate",E="hashchange";function k(){try{return window.history.state||{}}catch(e){return{}}}function S(e){void 0===e&&(e={}),v||(0,u.Z)(!1);var t,n=window.history,a=(-1===(t=window.navigator.userAgent).indexOf("Android 2.")&&-1===t.indexOf("Android 4.0")||-1===t.indexOf("Mobile Safari")||-1!==t.indexOf("Chrome")||-1!==t.indexOf("Windows Phone"))&&window.history&&"pushState"in window.history,o=!(-1===window.navigator.userAgent.indexOf("Trident")),i=e,l=i.forceRefresh,s=void 0!==l&&l,d=i.getUserConfirmation,g=void 0===d?y:d,S=i.keyLength,x=void 0===S?6:S,C=e.basename?p(c(e.basename)):"";function _(e){var t=e||{},n=t.key,r=t.state,a=window.location,o=a.pathname+a.search+a.hash;return C&&(o=f(o,C)),h(o,r,n)}function T(){return Math.random().toString(36).substr(2,x)}var A=b();function N(e){(0,r.Z)(j,e),j.length=n.length,A.notifyListeners(j.location,j.action)}function L(e){(function(e){return void 0===e.state&&-1===navigator.userAgent.indexOf("CriOS")})(e)||R(_(e.state))}function O(){R(_(k()))}var P=!1;function R(e){if(P)P=!1,N();else{A.confirmTransitionTo(e,"POP",g,(function(t){t?N({action:"POP",location:e}):function(e){var t=j.location,n=D.indexOf(t.key);-1===n&&(n=0);var r=D.indexOf(e.key);-1===r&&(r=0);var a=n-r;a&&(P=!0,F(a))}(e)}))}}var I=_(k()),D=[I.key];function M(e){return C+m(e)}function F(e){n.go(e)}var B=0;function U(e){1===(B+=e)&&1===e?(window.addEventListener(w,L),o&&window.addEventListener(E,O)):0===B&&(window.removeEventListener(w,L),o&&window.removeEventListener(E,O))}var $=!1;var j={length:n.length,action:"POP",location:I,createHref:M,push:function(e,t){var r="PUSH",o=h(e,t,T(),j.location);A.confirmTransitionTo(o,r,g,(function(e){if(e){var t=M(o),i=o.key,l=o.state;if(a)if(n.pushState({key:i,state:l},null,t),s)window.location.href=t;else{var u=D.indexOf(j.location.key),c=D.slice(0,u+1);c.push(o.key),D=c,N({action:r,location:o})}else window.location.href=t}}))},replace:function(e,t){var r="REPLACE",o=h(e,t,T(),j.location);A.confirmTransitionTo(o,r,g,(function(e){if(e){var t=M(o),i=o.key,l=o.state;if(a)if(n.replaceState({key:i,state:l},null,t),s)window.location.replace(t);else{var u=D.indexOf(j.location.key);-1!==u&&(D[u]=o.key),N({action:r,location:o})}else window.location.replace(t)}}))},go:F,goBack:function(){F(-1)},goForward:function(){F(1)},block:function(e){void 0===e&&(e=!1);var t=A.setPrompt(e);return $||(U(1),$=!0),function(){return $&&($=!1,U(-1)),t()}},listen:function(e){var t=A.appendListener(e);return U(1),function(){U(-1),t()}}};return j}var x="hashchange",C={hashbang:{encodePath:function(e){return"!"===e.charAt(0)?e:"!/"+d(e)},decodePath:function(e){return"!"===e.charAt(0)?e.substr(1):e}},noslash:{encodePath:d,decodePath:c},slash:{encodePath:c,decodePath:c}};function _(e){var t=e.indexOf("#");return-1===t?e:e.slice(0,t)}function T(){var e=window.location.href,t=e.indexOf("#");return-1===t?"":e.substring(t+1)}function A(e){window.location.replace(_(window.location.href)+"#"+e)}function N(e){void 0===e&&(e={}),v||(0,u.Z)(!1);var t=window.history,n=(window.navigator.userAgent.indexOf("Firefox"),e),a=n.getUserConfirmation,o=void 0===a?y:a,i=n.hashType,l=void 0===i?"slash":i,s=e.basename?p(c(e.basename)):"",d=C[l],g=d.encodePath,w=d.decodePath;function E(){var e=w(T());return s&&(e=f(e,s)),h(e)}var k=b();function S(e){(0,r.Z)($,e),$.length=t.length,k.notifyListeners($.location,$.action)}var N=!1,L=null;function O(){var e,t,n=T(),r=g(n);if(n!==r)A(r);else{var a=E(),i=$.location;if(!N&&(t=a,(e=i).pathname===t.pathname&&e.search===t.search&&e.hash===t.hash))return;if(L===m(a))return;L=null,function(e){if(N)N=!1,S();else{var t="POP";k.confirmTransitionTo(e,t,o,(function(n){n?S({action:t,location:e}):function(e){var t=$.location,n=D.lastIndexOf(m(t));-1===n&&(n=0);var r=D.lastIndexOf(m(e));-1===r&&(r=0);var a=n-r;a&&(N=!0,M(a))}(e)}))}}(a)}}var P=T(),R=g(P);P!==R&&A(R);var I=E(),D=[m(I)];function M(e){t.go(e)}var F=0;function B(e){1===(F+=e)&&1===e?window.addEventListener(x,O):0===F&&window.removeEventListener(x,O)}var U=!1;var $={length:t.length,action:"POP",location:I,createHref:function(e){var t=document.querySelector("base"),n="";return t&&t.getAttribute("href")&&(n=_(window.location.href)),n+"#"+g(s+m(e))},push:function(e,t){var n="PUSH",r=h(e,void 0,void 0,$.location);k.confirmTransitionTo(r,n,o,(function(e){if(e){var t=m(r),a=g(s+t);if(T()!==a){L=t,function(e){window.location.hash=e}(a);var o=D.lastIndexOf(m($.location)),i=D.slice(0,o+1);i.push(t),D=i,S({action:n,location:r})}else S()}}))},replace:function(e,t){var n="REPLACE",r=h(e,void 0,void 0,$.location);k.confirmTransitionTo(r,n,o,(function(e){if(e){var t=m(r),a=g(s+t);T()!==a&&(L=t,A(a));var o=D.indexOf(m($.location));-1!==o&&(D[o]=t),S({action:n,location:r})}}))},go:M,goBack:function(){M(-1)},goForward:function(){M(1)},block:function(e){void 0===e&&(e=!1);var t=k.setPrompt(e);return U||(B(1),U=!0),function(){return U&&(U=!1,B(-1)),t()}},listen:function(e){var t=k.appendListener(e);return B(1),function(){B(-1),t()}}};return $}function L(e,t,n){return Math.min(Math.max(e,t),n)}function O(e){void 0===e&&(e={});var t=e,n=t.getUserConfirmation,a=t.initialEntries,o=void 0===a?["/"]:a,i=t.initialIndex,l=void 0===i?0:i,s=t.keyLength,u=void 0===s?6:s,c=b();function d(e){(0,r.Z)(w,e),w.length=w.entries.length,c.notifyListeners(w.location,w.action)}function f(){return Math.random().toString(36).substr(2,u)}var p=L(l,0,o.length-1),g=o.map((function(e){return h(e,void 0,"string"==typeof e?f():e.key||f())})),v=m;function y(e){var t=L(w.index+e,0,w.entries.length-1),r=w.entries[t];c.confirmTransitionTo(r,"POP",n,(function(e){e?d({action:"POP",location:r,index:t}):d()}))}var w={length:g.length,action:"POP",location:g[p],index:p,entries:g,createHref:v,push:function(e,t){var r="PUSH",a=h(e,t,f(),w.location);c.confirmTransitionTo(a,r,n,(function(e){if(e){var t=w.index+1,n=w.entries.slice(0);n.length>t?n.splice(t,n.length-t,a):n.push(a),d({action:r,location:a,index:t,entries:n})}}))},replace:function(e,t){var r="REPLACE",a=h(e,t,f(),w.location);c.confirmTransitionTo(a,r,n,(function(e){e&&(w.entries[w.index]=a,d({action:r,location:a}))}))},go:y,goBack:function(){y(-1)},goForward:function(){y(1)},canGo:function(e){var t=w.index+e;return t>=0&&t<w.entries.length},block:function(e){return void 0===e&&(e=!1),c.setPrompt(e)},listen:function(e){return c.appendListener(e)}};return w}},8679:(e,t,n)=>{"use strict";var r=n(59864),a={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},o={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},i={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},l={};function s(e){return r.isMemo(e)?i:l[e.$$typeof]||a}l[r.ForwardRef]={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},l[r.Memo]=i;var u=Object.defineProperty,c=Object.getOwnPropertyNames,d=Object.getOwnPropertySymbols,f=Object.getOwnPropertyDescriptor,p=Object.getPrototypeOf,m=Object.prototype;e.exports=function e(t,n,r){if("string"!=typeof n){if(m){var a=p(n);a&&a!==m&&e(t,a,r)}var i=c(n);d&&(i=i.concat(d(n)));for(var l=s(t),h=s(n),g=0;g<i.length;++g){var b=i[g];if(!(o[b]||r&&r[b]||h&&h[b]||l&&l[b])){var v=f(n,b);try{u(t,b,v)}catch(y){}}}}return t}},41143:e=>{"use strict";e.exports=function(e,t,n,r,a,o,i,l){if(!e){var s;if(void 0===t)s=new Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var u=[n,r,a,o,i,l],c=0;(s=new Error(t.replace(/%s/g,(function(){return u[c++]})))).name="Invariant Violation"}throw s.framesToPop=1,s}}},5826:e=>{e.exports=Array.isArray||function(e){return"[object Array]"==Object.prototype.toString.call(e)}},32497:(e,t,n)=>{"use strict";n.r(t)},34197:(e,t,n)=>{"use strict";n.r(t)},74865:function(e,t,n){var r,a;r=function(){var e,t,n={version:"0.2.0"},r=n.settings={minimum:.08,easing:"ease",positionUsing:"",speed:200,trickle:!0,trickleRate:.02,trickleSpeed:800,showSpinner:!0,barSelector:'[role="bar"]',spinnerSelector:'[role="spinner"]',parent:"body",template:'<div class="bar" role="bar"><div class="peg"></div></div><div class="spinner" role="spinner"><div class="spinner-icon"></div></div>'};function a(e,t,n){return e<t?t:e>n?n:e}function o(e){return 100*(-1+e)}function i(e,t,n){var a;return(a="translate3d"===r.positionUsing?{transform:"translate3d("+o(e)+"%,0,0)"}:"translate"===r.positionUsing?{transform:"translate("+o(e)+"%,0)"}:{"margin-left":o(e)+"%"}).transition="all "+t+"ms "+n,a}n.configure=function(e){var t,n;for(t in e)void 0!==(n=e[t])&&e.hasOwnProperty(t)&&(r[t]=n);return this},n.status=null,n.set=function(e){var t=n.isStarted();e=a(e,r.minimum,1),n.status=1===e?null:e;var o=n.render(!t),u=o.querySelector(r.barSelector),c=r.speed,d=r.easing;return o.offsetWidth,l((function(t){""===r.positionUsing&&(r.positionUsing=n.getPositioningCSS()),s(u,i(e,c,d)),1===e?(s(o,{transition:"none",opacity:1}),o.offsetWidth,setTimeout((function(){s(o,{transition:"all "+c+"ms linear",opacity:0}),setTimeout((function(){n.remove(),t()}),c)}),c)):setTimeout(t,c)})),this},n.isStarted=function(){return"number"==typeof n.status},n.start=function(){n.status||n.set(0);var e=function(){setTimeout((function(){n.status&&(n.trickle(),e())}),r.trickleSpeed)};return r.trickle&&e(),this},n.done=function(e){return e||n.status?n.inc(.3+.5*Math.random()).set(1):this},n.inc=function(e){var t=n.status;return t?("number"!=typeof e&&(e=(1-t)*a(Math.random()*t,.1,.95)),t=a(t+e,0,.994),n.set(t)):n.start()},n.trickle=function(){return n.inc(Math.random()*r.trickleRate)},e=0,t=0,n.promise=function(r){return r&&"resolved"!==r.state()?(0===t&&n.start(),e++,t++,r.always((function(){0==--t?(e=0,n.done()):n.set((e-t)/e)})),this):this},n.render=function(e){if(n.isRendered())return document.getElementById("nprogress");c(document.documentElement,"nprogress-busy");var t=document.createElement("div");t.id="nprogress",t.innerHTML=r.template;var a,i=t.querySelector(r.barSelector),l=e?"-100":o(n.status||0),u=document.querySelector(r.parent);return s(i,{transition:"all 0 linear",transform:"translate3d("+l+"%,0,0)"}),r.showSpinner||(a=t.querySelector(r.spinnerSelector))&&p(a),u!=document.body&&c(u,"nprogress-custom-parent"),u.appendChild(t),t},n.remove=function(){d(document.documentElement,"nprogress-busy"),d(document.querySelector(r.parent),"nprogress-custom-parent");var e=document.getElementById("nprogress");e&&p(e)},n.isRendered=function(){return!!document.getElementById("nprogress")},n.getPositioningCSS=function(){var e=document.body.style,t="WebkitTransform"in e?"Webkit":"MozTransform"in e?"Moz":"msTransform"in e?"ms":"OTransform"in e?"O":"";return t+"Perspective"in e?"translate3d":t+"Transform"in e?"translate":"margin"};var l=function(){var e=[];function t(){var n=e.shift();n&&n(t)}return function(n){e.push(n),1==e.length&&t()}}(),s=function(){var e=["Webkit","O","Moz","ms"],t={};function n(e){return e.replace(/^-ms-/,"ms-").replace(/-([\da-z])/gi,(function(e,t){return t.toUpperCase()}))}function r(t){var n=document.body.style;if(t in n)return t;for(var r,a=e.length,o=t.charAt(0).toUpperCase()+t.slice(1);a--;)if((r=e[a]+o)in n)return r;return t}function a(e){return e=n(e),t[e]||(t[e]=r(e))}function o(e,t,n){t=a(t),e.style[t]=n}return function(e,t){var n,r,a=arguments;if(2==a.length)for(n in t)void 0!==(r=t[n])&&t.hasOwnProperty(n)&&o(e,n,r);else o(e,a[1],a[2])}}();function u(e,t){return("string"==typeof e?e:f(e)).indexOf(" "+t+" ")>=0}function c(e,t){var n=f(e),r=n+t;u(n,t)||(e.className=r.substring(1))}function d(e,t){var n,r=f(e);u(e,t)&&(n=r.replace(" "+t+" "," "),e.className=n.substring(1,n.length-1))}function f(e){return(" "+(e.className||"")+" ").replace(/\s+/gi," ")}function p(e){e&&e.parentNode&&e.parentNode.removeChild(e)}return n},void 0===(a="function"==typeof r?r.call(t,n,t,e):r)||(e.exports=a)},27418:e=>{"use strict";var t=Object.getOwnPropertySymbols,n=Object.prototype.hasOwnProperty,r=Object.prototype.propertyIsEnumerable;e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var r={};return"abcdefghijklmnopqrst".split("").forEach((function(e){r[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},r)).join("")}catch(a){return!1}}()?Object.assign:function(e,a){for(var o,i,l=function(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}(e),s=1;s<arguments.length;s++){for(var u in o=Object(arguments[s]))n.call(o,u)&&(l[u]=o[u]);if(t){i=t(o);for(var c=0;c<i.length;c++)r.call(o,i[c])&&(l[i[c]]=o[i[c]])}}return l}},14779:(e,t,n)=>{var r=n(5826);e.exports=p,e.exports.parse=o,e.exports.compile=function(e,t){return l(o(e,t),t)},e.exports.tokensToFunction=l,e.exports.tokensToRegExp=f;var a=new RegExp(["(\\\\.)","([\\/.])?(?:(?:\\:(\\w+)(?:\\(((?:\\\\.|[^\\\\()])+)\\))?|\\(((?:\\\\.|[^\\\\()])+)\\))([+*?])?|(\\*))"].join("|"),"g");function o(e,t){for(var n,r=[],o=0,i=0,l="",c=t&&t.delimiter||"/";null!=(n=a.exec(e));){var d=n[0],f=n[1],p=n.index;if(l+=e.slice(i,p),i=p+d.length,f)l+=f[1];else{var m=e[i],h=n[2],g=n[3],b=n[4],v=n[5],y=n[6],w=n[7];l&&(r.push(l),l="");var E=null!=h&&null!=m&&m!==h,k="+"===y||"*"===y,S="?"===y||"*"===y,x=n[2]||c,C=b||v;r.push({name:g||o++,prefix:h||"",delimiter:x,optional:S,repeat:k,partial:E,asterisk:!!w,pattern:C?u(C):w?".*":"[^"+s(x)+"]+?"})}}return i<e.length&&(l+=e.substr(i)),l&&r.push(l),r}function i(e){return encodeURI(e).replace(/[\/?#]/g,(function(e){return"%"+e.charCodeAt(0).toString(16).toUpperCase()}))}function l(e,t){for(var n=new Array(e.length),a=0;a<e.length;a++)"object"==typeof e[a]&&(n[a]=new RegExp("^(?:"+e[a].pattern+")$",d(t)));return function(t,a){for(var o="",l=t||{},s=(a||{}).pretty?i:encodeURIComponent,u=0;u<e.length;u++){var c=e[u];if("string"!=typeof c){var d,f=l[c.name];if(null==f){if(c.optional){c.partial&&(o+=c.prefix);continue}throw new TypeError('Expected "'+c.name+'" to be defined')}if(r(f)){if(!c.repeat)throw new TypeError('Expected "'+c.name+'" to not repeat, but received `'+JSON.stringify(f)+"`");if(0===f.length){if(c.optional)continue;throw new TypeError('Expected "'+c.name+'" to not be empty')}for(var p=0;p<f.length;p++){if(d=s(f[p]),!n[u].test(d))throw new TypeError('Expected all "'+c.name+'" to match "'+c.pattern+'", but received `'+JSON.stringify(d)+"`");o+=(0===p?c.prefix:c.delimiter)+d}}else{if(d=c.asterisk?encodeURI(f).replace(/[?#]/g,(function(e){return"%"+e.charCodeAt(0).toString(16).toUpperCase()})):s(f),!n[u].test(d))throw new TypeError('Expected "'+c.name+'" to match "'+c.pattern+'", but received "'+d+'"');o+=c.prefix+d}}else o+=c}return o}}function s(e){return e.replace(/([.+*?=^!:${}()[\]|\/\\])/g,"\\$1")}function u(e){return e.replace(/([=!:$\/()])/g,"\\$1")}function c(e,t){return e.keys=t,e}function d(e){return e&&e.sensitive?"":"i"}function f(e,t,n){r(t)||(n=t||n,t=[]);for(var a=(n=n||{}).strict,o=!1!==n.end,i="",l=0;l<e.length;l++){var u=e[l];if("string"==typeof u)i+=s(u);else{var f=s(u.prefix),p="(?:"+u.pattern+")";t.push(u),u.repeat&&(p+="(?:"+f+p+")*"),i+=p=u.optional?u.partial?f+"("+p+")?":"(?:"+f+"("+p+"))?":f+"("+p+")"}}var m=s(n.delimiter||"/"),h=i.slice(-m.length)===m;return a||(i=(h?i.slice(0,-m.length):i)+"(?:"+m+"(?=$))?"),i+=o?"$":a&&h?"":"(?="+m+"|$)",c(new RegExp("^"+i,d(n)),t)}function p(e,t,n){return r(t)||(n=t||n,t=[]),n=n||{},e instanceof RegExp?function(e,t){var n=e.source.match(/\((?!\?)/g);if(n)for(var r=0;r<n.length;r++)t.push({name:r,prefix:null,delimiter:null,optional:!1,repeat:!1,partial:!1,asterisk:!1,pattern:null});return c(e,t)}(e,t):r(e)?function(e,t,n){for(var r=[],a=0;a<e.length;a++)r.push(p(e[a],t,n).source);return c(new RegExp("(?:"+r.join("|")+")",d(n)),t)}(e,t,n):function(e,t,n){return f(o(e,n),t,n)}(e,t,n)}},87410:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var r=function(){var e=/(?:^|\s)lang(?:uage)?-([\w-]+)(?=\s|$)/i,t=0,n={},r={util:{encode:function e(t){return t instanceof a?new a(t.type,e(t.content),t.alias):Array.isArray(t)?t.map(e):t.replace(/&/g,"&").replace(/</g,"<").replace(/\u00a0/g," ")},type:function(e){return Object.prototype.toString.call(e).slice(8,-1)},objId:function(e){return e.__id||Object.defineProperty(e,"__id",{value:++t}),e.__id},clone:function e(t,n){var a,o;switch(n=n||{},r.util.type(t)){case"Object":if(o=r.util.objId(t),n[o])return n[o];for(var i in a={},n[o]=a,t)t.hasOwnProperty(i)&&(a[i]=e(t[i],n));return a;case"Array":return o=r.util.objId(t),n[o]?n[o]:(a=[],n[o]=a,t.forEach((function(t,r){a[r]=e(t,n)})),a);default:return t}},getLanguage:function(t){for(;t;){var n=e.exec(t.className);if(n)return n[1].toLowerCase();t=t.parentElement}return"none"},setLanguage:function(t,n){t.className=t.className.replace(RegExp(e,"gi"),""),t.classList.add("language-"+n)},isActive:function(e,t,n){for(var r="no-"+t;e;){var a=e.classList;if(a.contains(t))return!0;if(a.contains(r))return!1;e=e.parentElement}return!!n}},languages:{plain:n,plaintext:n,text:n,txt:n,extend:function(e,t){var n=r.util.clone(r.languages[e]);for(var a in t)n[a]=t[a];return n},insertBefore:function(e,t,n,a){var o=(a=a||r.languages)[e],i={};for(var l in o)if(o.hasOwnProperty(l)){if(l==t)for(var s in n)n.hasOwnProperty(s)&&(i[s]=n[s]);n.hasOwnProperty(l)||(i[l]=o[l])}var u=a[e];return a[e]=i,r.languages.DFS(r.languages,(function(t,n){n===u&&t!=e&&(this[t]=i)})),i},DFS:function e(t,n,a,o){o=o||{};var i=r.util.objId;for(var l in t)if(t.hasOwnProperty(l)){n.call(t,l,t[l],a||l);var s=t[l],u=r.util.type(s);"Object"!==u||o[i(s)]?"Array"!==u||o[i(s)]||(o[i(s)]=!0,e(s,n,l,o)):(o[i(s)]=!0,e(s,n,null,o))}}},plugins:{},highlight:function(e,t,n){var o={code:e,grammar:t,language:n};return r.hooks.run("before-tokenize",o),o.tokens=r.tokenize(o.code,o.grammar),r.hooks.run("after-tokenize",o),a.stringify(r.util.encode(o.tokens),o.language)},tokenize:function(e,t){var n=t.rest;if(n){for(var r in n)t[r]=n[r];delete t.rest}var a=new l;return s(a,a.head,e),i(e,a,t,a.head,0),function(e){var t=[],n=e.head.next;for(;n!==e.tail;)t.push(n.value),n=n.next;return t}(a)},hooks:{all:{},add:function(e,t){var n=r.hooks.all;n[e]=n[e]||[],n[e].push(t)},run:function(e,t){var n=r.hooks.all[e];if(n&&n.length)for(var a,o=0;a=n[o++];)a(t)}},Token:a};function a(e,t,n,r){this.type=e,this.content=t,this.alias=n,this.length=0|(r||"").length}function o(e,t,n,r){e.lastIndex=t;var a=e.exec(n);if(a&&r&&a[1]){var o=a[1].length;a.index+=o,a[0]=a[0].slice(o)}return a}function i(e,t,n,l,c,d){for(var f in n)if(n.hasOwnProperty(f)&&n[f]){var p=n[f];p=Array.isArray(p)?p:[p];for(var m=0;m<p.length;++m){if(d&&d.cause==f+","+m)return;var h=p[m],g=h.inside,b=!!h.lookbehind,v=!!h.greedy,y=h.alias;if(v&&!h.pattern.global){var w=h.pattern.toString().match(/[imsuy]*$/)[0];h.pattern=RegExp(h.pattern.source,w+"g")}for(var E=h.pattern||h,k=l.next,S=c;k!==t.tail&&!(d&&S>=d.reach);S+=k.value.length,k=k.next){var x=k.value;if(t.length>e.length)return;if(!(x instanceof a)){var C,_=1;if(v){if(!(C=o(E,S,e,b))||C.index>=e.length)break;var T=C.index,A=C.index+C[0].length,N=S;for(N+=k.value.length;T>=N;)N+=(k=k.next).value.length;if(S=N-=k.value.length,k.value instanceof a)continue;for(var L=k;L!==t.tail&&(N<A||"string"==typeof L.value);L=L.next)_++,N+=L.value.length;_--,x=e.slice(S,N),C.index-=S}else if(!(C=o(E,0,x,b)))continue;T=C.index;var O=C[0],P=x.slice(0,T),R=x.slice(T+O.length),I=S+x.length;d&&I>d.reach&&(d.reach=I);var D=k.prev;if(P&&(D=s(t,D,P),S+=P.length),u(t,D,_),k=s(t,D,new a(f,g?r.tokenize(O,g):O,y,O)),R&&s(t,k,R),_>1){var M={cause:f+","+m,reach:I};i(e,t,n,k.prev,S,M),d&&M.reach>d.reach&&(d.reach=M.reach)}}}}}}function l(){var e={value:null,prev:null,next:null},t={value:null,prev:e,next:null};e.next=t,this.head=e,this.tail=t,this.length=0}function s(e,t,n){var r=t.next,a={value:n,prev:t,next:r};return t.next=a,r.prev=a,e.length++,a}function u(e,t,n){for(var r=t.next,a=0;a<n&&r!==e.tail;a++)r=r.next;t.next=r,r.prev=t,e.length-=a}return a.stringify=function e(t,n){if("string"==typeof t)return t;if(Array.isArray(t)){var a="";return t.forEach((function(t){a+=e(t,n)})),a}var o={type:t.type,content:e(t.content,n),tag:"span",classes:["token",t.type],attributes:{},language:n},i=t.alias;i&&(Array.isArray(i)?Array.prototype.push.apply(o.classes,i):o.classes.push(i)),r.hooks.run("wrap",o);var l="";for(var s in o.attributes)l+=" "+s+'="'+(o.attributes[s]||"").replace(/"/g,""")+'"';return"<"+o.tag+' class="'+o.classes.join(" ")+'"'+l+">"+o.content+"</"+o.tag+">"},r}(),a=r;r.default=r,a.languages.markup={comment:{pattern:/<!--(?:(?!<!--)[\s\S])*?-->/,greedy:!0},prolog:{pattern:/<\?[\s\S]+?\?>/,greedy:!0},doctype:{pattern:/<!DOCTYPE(?:[^>"'[\]]|"[^"]*"|'[^']*')+(?:\[(?:[^<"'\]]|"[^"]*"|'[^']*'|<(?!!--)|<!--(?:[^-]|-(?!->))*-->)*\]\s*)?>/i,greedy:!0,inside:{"internal-subset":{pattern:/(^[^\[]*\[)[\s\S]+(?=\]>$)/,lookbehind:!0,greedy:!0,inside:null},string:{pattern:/"[^"]*"|'[^']*'/,greedy:!0},punctuation:/^<!|>$|[[\]]/,"doctype-tag":/^DOCTYPE/i,name:/[^\s<>'"]+/}},cdata:{pattern:/<!\[CDATA\[[\s\S]*?\]\]>/i,greedy:!0},tag:{pattern:/<\/?(?!\d)[^\s>\/=$<%]+(?:\s(?:\s*[^\s>\/=]+(?:\s*=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+(?=[\s>]))|(?=[\s/>])))+)?\s*\/?>/,greedy:!0,inside:{tag:{pattern:/^<\/?[^\s>\/]+/,inside:{punctuation:/^<\/?/,namespace:/^[^\s>\/:]+:/}},"special-attr":[],"attr-value":{pattern:/=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+)/,inside:{punctuation:[{pattern:/^=/,alias:"attr-equals"},/"|'/]}},punctuation:/\/?>/,"attr-name":{pattern:/[^\s>\/]+/,inside:{namespace:/^[^\s>\/:]+:/}}}},entity:[{pattern:/&[\da-z]{1,8};/i,alias:"named-entity"},/&#x?[\da-f]{1,8};/i]},a.languages.markup.tag.inside["attr-value"].inside.entity=a.languages.markup.entity,a.languages.markup.doctype.inside["internal-subset"].inside=a.languages.markup,a.hooks.add("wrap",(function(e){"entity"===e.type&&(e.attributes.title=e.content.replace(/&/,"&"))})),Object.defineProperty(a.languages.markup.tag,"addInlined",{value:function(e,t){var n={};n["language-"+t]={pattern:/(^<!\[CDATA\[)[\s\S]+?(?=\]\]>$)/i,lookbehind:!0,inside:a.languages[t]},n.cdata=/^<!\[CDATA\[|\]\]>$/i;var r={"included-cdata":{pattern:/<!\[CDATA\[[\s\S]*?\]\]>/i,inside:n}};r["language-"+t]={pattern:/[\s\S]+/,inside:a.languages[t]};var o={};o[e]={pattern:RegExp(/(<__[^>]*>)(?:<!\[CDATA\[(?:[^\]]|\](?!\]>))*\]\]>|(?!<!\[CDATA\[)[\s\S])*?(?=<\/__>)/.source.replace(/__/g,(function(){return e})),"i"),lookbehind:!0,greedy:!0,inside:r},a.languages.insertBefore("markup","cdata",o)}}),Object.defineProperty(a.languages.markup.tag,"addAttribute",{value:function(e,t){a.languages.markup.tag.inside["special-attr"].push({pattern:RegExp(/(^|["'\s])/.source+"(?:"+e+")"+/\s*=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+(?=[\s>]))/.source,"i"),lookbehind:!0,inside:{"attr-name":/^[^\s=]+/,"attr-value":{pattern:/=[\s\S]+/,inside:{value:{pattern:/(^=\s*(["']|(?!["'])))\S[\s\S]*(?=\2$)/,lookbehind:!0,alias:[t,"language-"+t],inside:a.languages[t]},punctuation:[{pattern:/^=/,alias:"attr-equals"},/"|'/]}}}})}}),a.languages.html=a.languages.markup,a.languages.mathml=a.languages.markup,a.languages.svg=a.languages.markup,a.languages.xml=a.languages.extend("markup",{}),a.languages.ssml=a.languages.xml,a.languages.atom=a.languages.xml,a.languages.rss=a.languages.xml,function(e){var t="\\b(?:BASH|BASHOPTS|BASH_ALIASES|BASH_ARGC|BASH_ARGV|BASH_CMDS|BASH_COMPLETION_COMPAT_DIR|BASH_LINENO|BASH_REMATCH|BASH_SOURCE|BASH_VERSINFO|BASH_VERSION|COLORTERM|COLUMNS|COMP_WORDBREAKS|DBUS_SESSION_BUS_ADDRESS|DEFAULTS_PATH|DESKTOP_SESSION|DIRSTACK|DISPLAY|EUID|GDMSESSION|GDM_LANG|GNOME_KEYRING_CONTROL|GNOME_KEYRING_PID|GPG_AGENT_INFO|GROUPS|HISTCONTROL|HISTFILE|HISTFILESIZE|HISTSIZE|HOME|HOSTNAME|HOSTTYPE|IFS|INSTANCE|JOB|LANG|LANGUAGE|LC_ADDRESS|LC_ALL|LC_IDENTIFICATION|LC_MEASUREMENT|LC_MONETARY|LC_NAME|LC_NUMERIC|LC_PAPER|LC_TELEPHONE|LC_TIME|LESSCLOSE|LESSOPEN|LINES|LOGNAME|LS_COLORS|MACHTYPE|MAILCHECK|MANDATORY_PATH|NO_AT_BRIDGE|OLDPWD|OPTERR|OPTIND|ORBIT_SOCKETDIR|OSTYPE|PAPERSIZE|PATH|PIPESTATUS|PPID|PS1|PS2|PS3|PS4|PWD|RANDOM|REPLY|SECONDS|SELINUX_INIT|SESSION|SESSIONTYPE|SESSION_MANAGER|SHELL|SHELLOPTS|SHLVL|SSH_AUTH_SOCK|TERM|UID|UPSTART_EVENTS|UPSTART_INSTANCE|UPSTART_JOB|UPSTART_SESSION|USER|WINDOWID|XAUTHORITY|XDG_CONFIG_DIRS|XDG_CURRENT_DESKTOP|XDG_DATA_DIRS|XDG_GREETER_DATA_DIR|XDG_MENU_PREFIX|XDG_RUNTIME_DIR|XDG_SEAT|XDG_SEAT_PATH|XDG_SESSION_DESKTOP|XDG_SESSION_ID|XDG_SESSION_PATH|XDG_SESSION_TYPE|XDG_VTNR|XMODIFIERS)\\b",n={pattern:/(^(["']?)\w+\2)[ \t]+\S.*/,lookbehind:!0,alias:"punctuation",inside:null},r={bash:n,environment:{pattern:RegExp("\\$"+t),alias:"constant"},variable:[{pattern:/\$?\(\([\s\S]+?\)\)/,greedy:!0,inside:{variable:[{pattern:/(^\$\(\([\s\S]+)\)\)/,lookbehind:!0},/^\$\(\(/],number:/\b0x[\dA-Fa-f]+\b|(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:[Ee]-?\d+)?/,operator:/--|\+\+|\*\*=?|<<=?|>>=?|&&|\|\||[=!+\-*/%<>^&|]=?|[?~:]/,punctuation:/\(\(?|\)\)?|,|;/}},{pattern:/\$\((?:\([^)]+\)|[^()])+\)|`[^`]+`/,greedy:!0,inside:{variable:/^\$\(|^`|\)$|`$/}},{pattern:/\$\{[^}]+\}/,greedy:!0,inside:{operator:/:[-=?+]?|[!\/]|##?|%%?|\^\^?|,,?/,punctuation:/[\[\]]/,environment:{pattern:RegExp("(\\{)"+t),lookbehind:!0,alias:"constant"}}},/\$(?:\w+|[#?*!@$])/],entity:/\\(?:[abceEfnrtv\\"]|O?[0-7]{1,3}|U[0-9a-fA-F]{8}|u[0-9a-fA-F]{4}|x[0-9a-fA-F]{1,2})/};e.languages.bash={shebang:{pattern:/^#!\s*\/.*/,alias:"important"},comment:{pattern:/(^|[^"{\\$])#.*/,lookbehind:!0},"function-name":[{pattern:/(\bfunction\s+)[\w-]+(?=(?:\s*\(?:\s*\))?\s*\{)/,lookbehind:!0,alias:"function"},{pattern:/\b[\w-]+(?=\s*\(\s*\)\s*\{)/,alias:"function"}],"for-or-select":{pattern:/(\b(?:for|select)\s+)\w+(?=\s+in\s)/,alias:"variable",lookbehind:!0},"assign-left":{pattern:/(^|[\s;|&]|[<>]\()\w+(?=\+?=)/,inside:{environment:{pattern:RegExp("(^|[\\s;|&]|[<>]\\()"+t),lookbehind:!0,alias:"constant"}},alias:"variable",lookbehind:!0},string:[{pattern:/((?:^|[^<])<<-?\s*)(\w+)\s[\s\S]*?(?:\r?\n|\r)\2/,lookbehind:!0,greedy:!0,inside:r},{pattern:/((?:^|[^<])<<-?\s*)(["'])(\w+)\2\s[\s\S]*?(?:\r?\n|\r)\3/,lookbehind:!0,greedy:!0,inside:{bash:n}},{pattern:/(^|[^\\](?:\\\\)*)"(?:\\[\s\S]|\$\([^)]+\)|\$(?!\()|`[^`]+`|[^"\\`$])*"/,lookbehind:!0,greedy:!0,inside:r},{pattern:/(^|[^$\\])'[^']*'/,lookbehind:!0,greedy:!0},{pattern:/\$'(?:[^'\\]|\\[\s\S])*'/,greedy:!0,inside:{entity:r.entity}}],environment:{pattern:RegExp("\\$?"+t),alias:"constant"},variable:r.variable,function:{pattern:/(^|[\s;|&]|[<>]\()(?:add|apropos|apt|apt-cache|apt-get|aptitude|aspell|automysqlbackup|awk|basename|bash|bc|bconsole|bg|bzip2|cal|cat|cfdisk|chgrp|chkconfig|chmod|chown|chroot|cksum|clear|cmp|column|comm|composer|cp|cron|crontab|csplit|curl|cut|date|dc|dd|ddrescue|debootstrap|df|diff|diff3|dig|dir|dircolors|dirname|dirs|dmesg|docker|docker-compose|du|egrep|eject|env|ethtool|expand|expect|expr|fdformat|fdisk|fg|fgrep|file|find|fmt|fold|format|free|fsck|ftp|fuser|gawk|git|gparted|grep|groupadd|groupdel|groupmod|groups|grub-mkconfig|gzip|halt|head|hg|history|host|hostname|htop|iconv|id|ifconfig|ifdown|ifup|import|install|ip|jobs|join|kill|killall|less|link|ln|locate|logname|logrotate|look|lpc|lpr|lprint|lprintd|lprintq|lprm|ls|lsof|lynx|make|man|mc|mdadm|mkconfig|mkdir|mke2fs|mkfifo|mkfs|mkisofs|mknod|mkswap|mmv|more|most|mount|mtools|mtr|mutt|mv|nano|nc|netstat|nice|nl|node|nohup|notify-send|npm|nslookup|op|open|parted|passwd|paste|pathchk|ping|pkill|pnpm|podman|podman-compose|popd|pr|printcap|printenv|ps|pushd|pv|quota|quotacheck|quotactl|ram|rar|rcp|reboot|remsync|rename|renice|rev|rm|rmdir|rpm|rsync|scp|screen|sdiff|sed|sendmail|seq|service|sftp|sh|shellcheck|shuf|shutdown|sleep|slocate|sort|split|ssh|stat|strace|su|sudo|sum|suspend|swapon|sync|tac|tail|tar|tee|time|timeout|top|touch|tr|traceroute|tsort|tty|umount|uname|unexpand|uniq|units|unrar|unshar|unzip|update-grub|uptime|useradd|userdel|usermod|users|uudecode|uuencode|v|vcpkg|vdir|vi|vim|virsh|vmstat|wait|watch|wc|wget|whereis|which|who|whoami|write|xargs|xdg-open|yarn|yes|zenity|zip|zsh|zypper)(?=$|[)\s;|&])/,lookbehind:!0},keyword:{pattern:/(^|[\s;|&]|[<>]\()(?:case|do|done|elif|else|esac|fi|for|function|if|in|select|then|until|while)(?=$|[)\s;|&])/,lookbehind:!0},builtin:{pattern:/(^|[\s;|&]|[<>]\()(?:\.|:|alias|bind|break|builtin|caller|cd|command|continue|declare|echo|enable|eval|exec|exit|export|getopts|hash|help|let|local|logout|mapfile|printf|pwd|read|readarray|readonly|return|set|shift|shopt|source|test|times|trap|type|typeset|ulimit|umask|unalias|unset)(?=$|[)\s;|&])/,lookbehind:!0,alias:"class-name"},boolean:{pattern:/(^|[\s;|&]|[<>]\()(?:false|true)(?=$|[)\s;|&])/,lookbehind:!0},"file-descriptor":{pattern:/\B&\d\b/,alias:"important"},operator:{pattern:/\d?<>|>\||\+=|=[=~]?|!=?|<<[<-]?|[&\d]?>>|\d[<>]&?|[<>][&=]?|&[>&]?|\|[&|]?/,inside:{"file-descriptor":{pattern:/^\d/,alias:"important"}}},punctuation:/\$?\(\(?|\)\)?|\.\.|[{}[\];\\]/,number:{pattern:/(^|\s)(?:[1-9]\d*|0)(?:[.,]\d+)?\b/,lookbehind:!0}},n.inside=e.languages.bash;for(var a=["comment","function-name","for-or-select","assign-left","string","environment","function","keyword","builtin","boolean","file-descriptor","operator","punctuation","number"],o=r.variable[1].inside,i=0;i<a.length;i++)o[a[i]]=e.languages.bash[a[i]];e.languages.shell=e.languages.bash}(a),a.languages.clike={comment:[{pattern:/(^|[^\\])\/\*[\s\S]*?(?:\*\/|$)/,lookbehind:!0,greedy:!0},{pattern:/(^|[^\\:])\/\/.*/,lookbehind:!0,greedy:!0}],string:{pattern:/(["'])(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,greedy:!0},"class-name":{pattern:/(\b(?:class|extends|implements|instanceof|interface|new|trait)\s+|\bcatch\s+\()[\w.\\]+/i,lookbehind:!0,inside:{punctuation:/[.\\]/}},keyword:/\b(?:break|catch|continue|do|else|finally|for|function|if|in|instanceof|new|null|return|throw|try|while)\b/,boolean:/\b(?:false|true)\b/,function:/\b\w+(?=\()/,number:/\b0x[\da-f]+\b|(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:e[+-]?\d+)?/i,operator:/[<>]=?|[!=]=?=?|--?|\+\+?|&&?|\|\|?|[?*/~^%]/,punctuation:/[{}[\];(),.:]/},a.languages.c=a.languages.extend("clike",{comment:{pattern:/\/\/(?:[^\r\n\\]|\\(?:\r\n?|\n|(?![\r\n])))*|\/\*[\s\S]*?(?:\*\/|$)/,greedy:!0},string:{pattern:/"(?:\\(?:\r\n|[\s\S])|[^"\\\r\n])*"/,greedy:!0},"class-name":{pattern:/(\b(?:enum|struct)\s+(?:__attribute__\s*\(\([\s\S]*?\)\)\s*)?)\w+|\b[a-z]\w*_t\b/,lookbehind:!0},keyword:/\b(?:_Alignas|_Alignof|_Atomic|_Bool|_Complex|_Generic|_Imaginary|_Noreturn|_Static_assert|_Thread_local|__attribute__|asm|auto|break|case|char|const|continue|default|do|double|else|enum|extern|float|for|goto|if|inline|int|long|register|return|short|signed|sizeof|static|struct|switch|typedef|typeof|union|unsigned|void|volatile|while)\b/,function:/\b[a-z_]\w*(?=\s*\()/i,number:/(?:\b0x(?:[\da-f]+(?:\.[\da-f]*)?|\.[\da-f]+)(?:p[+-]?\d+)?|(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:e[+-]?\d+)?)[ful]{0,4}/i,operator:/>>=?|<<=?|->|([-+&|:])\1|[?:~]|[-+*/%&|^!=<>]=?/}),a.languages.insertBefore("c","string",{char:{pattern:/'(?:\\(?:\r\n|[\s\S])|[^'\\\r\n]){0,32}'/,greedy:!0}}),a.languages.insertBefore("c","string",{macro:{pattern:/(^[\t ]*)#\s*[a-z](?:[^\r\n\\/]|\/(?!\*)|\/\*(?:[^*]|\*(?!\/))*\*\/|\\(?:\r\n|[\s\S]))*/im,lookbehind:!0,greedy:!0,alias:"property",inside:{string:[{pattern:/^(#\s*include\s*)<[^>]+>/,lookbehind:!0},a.languages.c.string],char:a.languages.c.char,comment:a.languages.c.comment,"macro-name":[{pattern:/(^#\s*define\s+)\w+\b(?!\()/i,lookbehind:!0},{pattern:/(^#\s*define\s+)\w+\b(?=\()/i,lookbehind:!0,alias:"function"}],directive:{pattern:/^(#\s*)[a-z]+/,lookbehind:!0,alias:"keyword"},"directive-hash":/^#/,punctuation:/##|\\(?=[\r\n])/,expression:{pattern:/\S[\s\S]*/,inside:a.languages.c}}}}),a.languages.insertBefore("c","function",{constant:/\b(?:EOF|NULL|SEEK_CUR|SEEK_END|SEEK_SET|__DATE__|__FILE__|__LINE__|__TIMESTAMP__|__TIME__|__func__|stderr|stdin|stdout)\b/}),delete a.languages.c.boolean,function(e){var t=/\b(?:alignas|alignof|asm|auto|bool|break|case|catch|char|char16_t|char32_t|char8_t|class|co_await|co_return|co_yield|compl|concept|const|const_cast|consteval|constexpr|constinit|continue|decltype|default|delete|do|double|dynamic_cast|else|enum|explicit|export|extern|final|float|for|friend|goto|if|import|inline|int|int16_t|int32_t|int64_t|int8_t|long|module|mutable|namespace|new|noexcept|nullptr|operator|override|private|protected|public|register|reinterpret_cast|requires|return|short|signed|sizeof|static|static_assert|static_cast|struct|switch|template|this|thread_local|throw|try|typedef|typeid|typename|uint16_t|uint32_t|uint64_t|uint8_t|union|unsigned|using|virtual|void|volatile|wchar_t|while)\b/,n=/\b(?!<keyword>)\w+(?:\s*\.\s*\w+)*\b/.source.replace(/<keyword>/g,(function(){return t.source}));e.languages.cpp=e.languages.extend("c",{"class-name":[{pattern:RegExp(/(\b(?:class|concept|enum|struct|typename)\s+)(?!<keyword>)\w+/.source.replace(/<keyword>/g,(function(){return t.source}))),lookbehind:!0},/\b[A-Z]\w*(?=\s*::\s*\w+\s*\()/,/\b[A-Z_]\w*(?=\s*::\s*~\w+\s*\()/i,/\b\w+(?=\s*<(?:[^<>]|<(?:[^<>]|<[^<>]*>)*>)*>\s*::\s*\w+\s*\()/],keyword:t,number:{pattern:/(?:\b0b[01']+|\b0x(?:[\da-f']+(?:\.[\da-f']*)?|\.[\da-f']+)(?:p[+-]?[\d']+)?|(?:\b[\d']+(?:\.[\d']*)?|\B\.[\d']+)(?:e[+-]?[\d']+)?)[ful]{0,4}/i,greedy:!0},operator:/>>=?|<<=?|->|--|\+\+|&&|\|\||[?:~]|<=>|[-+*/%&|^!=<>]=?|\b(?:and|and_eq|bitand|bitor|not|not_eq|or|or_eq|xor|xor_eq)\b/,boolean:/\b(?:false|true)\b/}),e.languages.insertBefore("cpp","string",{module:{pattern:RegExp(/(\b(?:import|module)\s+)/.source+"(?:"+/"(?:\\(?:\r\n|[\s\S])|[^"\\\r\n])*"|<[^<>\r\n]*>/.source+"|"+/<mod-name>(?:\s*:\s*<mod-name>)?|:\s*<mod-name>/.source.replace(/<mod-name>/g,(function(){return n}))+")"),lookbehind:!0,greedy:!0,inside:{string:/^[<"][\s\S]+/,operator:/:/,punctuation:/\./}},"raw-string":{pattern:/R"([^()\\ ]{0,16})\([\s\S]*?\)\1"/,alias:"string",greedy:!0}}),e.languages.insertBefore("cpp","keyword",{"generic-function":{pattern:/\b(?!operator\b)[a-z_]\w*\s*<(?:[^<>]|<[^<>]*>)*>(?=\s*\()/i,inside:{function:/^\w+/,generic:{pattern:/<[\s\S]+/,alias:"class-name",inside:e.languages.cpp}}}}),e.languages.insertBefore("cpp","operator",{"double-colon":{pattern:/::/,alias:"punctuation"}}),e.languages.insertBefore("cpp","class-name",{"base-clause":{pattern:/(\b(?:class|struct)\s+\w+\s*:\s*)[^;{}"'\s]+(?:\s+[^;{}"'\s]+)*(?=\s*[;{])/,lookbehind:!0,greedy:!0,inside:e.languages.extend("cpp",{})}}),e.languages.insertBefore("inside","double-colon",{"class-name":/\b[a-z_]\w*\b(?!\s*::)/i},e.languages.cpp["base-clause"])}(a),function(e){var t=/(?:"(?:\\(?:\r\n|[\s\S])|[^"\\\r\n])*"|'(?:\\(?:\r\n|[\s\S])|[^'\\\r\n])*')/;e.languages.css={comment:/\/\*[\s\S]*?\*\//,atrule:{pattern:/@[\w-](?:[^;{\s]|\s+(?![\s{]))*(?:;|(?=\s*\{))/,inside:{rule:/^@[\w-]+/,"selector-function-argument":{pattern:/(\bselector\s*\(\s*(?![\s)]))(?:[^()\s]|\s+(?![\s)])|\((?:[^()]|\([^()]*\))*\))+(?=\s*\))/,lookbehind:!0,alias:"selector"},keyword:{pattern:/(^|[^\w-])(?:and|not|only|or)(?![\w-])/,lookbehind:!0}}},url:{pattern:RegExp("\\burl\\((?:"+t.source+"|"+/(?:[^\\\r\n()"']|\\[\s\S])*/.source+")\\)","i"),greedy:!0,inside:{function:/^url/i,punctuation:/^\(|\)$/,string:{pattern:RegExp("^"+t.source+"$"),alias:"url"}}},selector:{pattern:RegExp("(^|[{}\\s])[^{}\\s](?:[^{};\"'\\s]|\\s+(?![\\s{])|"+t.source+")*(?=\\s*\\{)"),lookbehind:!0},string:{pattern:t,greedy:!0},property:{pattern:/(^|[^-\w\xA0-\uFFFF])(?!\s)[-_a-z\xA0-\uFFFF](?:(?!\s)[-\w\xA0-\uFFFF])*(?=\s*:)/i,lookbehind:!0},important:/!important\b/i,function:{pattern:/(^|[^-a-z0-9])[-a-z0-9]+(?=\()/i,lookbehind:!0},punctuation:/[(){};:,]/},e.languages.css.atrule.inside.rest=e.languages.css;var n=e.languages.markup;n&&(n.tag.addInlined("style","css"),n.tag.addAttribute("style","css"))}(a),function(e){var t,n=/("|')(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/;e.languages.css.selector={pattern:e.languages.css.selector.pattern,lookbehind:!0,inside:t={"pseudo-element":/:(?:after|before|first-letter|first-line|selection)|::[-\w]+/,"pseudo-class":/:[-\w]+/,class:/\.[-\w]+/,id:/#[-\w]+/,attribute:{pattern:RegExp("\\[(?:[^[\\]\"']|"+n.source+")*\\]"),greedy:!0,inside:{punctuation:/^\[|\]$/,"case-sensitivity":{pattern:/(\s)[si]$/i,lookbehind:!0,alias:"keyword"},namespace:{pattern:/^(\s*)(?:(?!\s)[-*\w\xA0-\uFFFF])*\|(?!=)/,lookbehind:!0,inside:{punctuation:/\|$/}},"attr-name":{pattern:/^(\s*)(?:(?!\s)[-\w\xA0-\uFFFF])+/,lookbehind:!0},"attr-value":[n,{pattern:/(=\s*)(?:(?!\s)[-\w\xA0-\uFFFF])+(?=\s*$)/,lookbehind:!0}],operator:/[|~*^$]?=/}},"n-th":[{pattern:/(\(\s*)[+-]?\d*[\dn](?:\s*[+-]\s*\d+)?(?=\s*\))/,lookbehind:!0,inside:{number:/[\dn]+/,operator:/[+-]/}},{pattern:/(\(\s*)(?:even|odd)(?=\s*\))/i,lookbehind:!0}],combinator:/>|\+|~|\|\|/,punctuation:/[(),]/}},e.languages.css.atrule.inside["selector-function-argument"].inside=t,e.languages.insertBefore("css","property",{variable:{pattern:/(^|[^-\w\xA0-\uFFFF])--(?!\s)[-_a-z\xA0-\uFFFF](?:(?!\s)[-\w\xA0-\uFFFF])*/i,lookbehind:!0}});var r={pattern:/(\b\d+)(?:%|[a-z]+(?![\w-]))/,lookbehind:!0},a={pattern:/(^|[^\w.-])-?(?:\d+(?:\.\d+)?|\.\d+)/,lookbehind:!0};e.languages.insertBefore("css","function",{operator:{pattern:/(\s)[+\-*\/](?=\s)/,lookbehind:!0},hexcode:{pattern:/\B#[\da-f]{3,8}\b/i,alias:"color"},color:[{pattern:/(^|[^\w-])(?:AliceBlue|AntiqueWhite|Aqua|Aquamarine|Azure|Beige|Bisque|Black|BlanchedAlmond|Blue|BlueViolet|Brown|BurlyWood|CadetBlue|Chartreuse|Chocolate|Coral|CornflowerBlue|Cornsilk|Crimson|Cyan|DarkBlue|DarkCyan|DarkGoldenRod|DarkGr[ae]y|DarkGreen|DarkKhaki|DarkMagenta|DarkOliveGreen|DarkOrange|DarkOrchid|DarkRed|DarkSalmon|DarkSeaGreen|DarkSlateBlue|DarkSlateGr[ae]y|DarkTurquoise|DarkViolet|DeepPink|DeepSkyBlue|DimGr[ae]y|DodgerBlue|FireBrick|FloralWhite|ForestGreen|Fuchsia|Gainsboro|GhostWhite|Gold|GoldenRod|Gr[ae]y|Green|GreenYellow|HoneyDew|HotPink|IndianRed|Indigo|Ivory|Khaki|Lavender|LavenderBlush|LawnGreen|LemonChiffon|LightBlue|LightCoral|LightCyan|LightGoldenRodYellow|LightGr[ae]y|LightGreen|LightPink|LightSalmon|LightSeaGreen|LightSkyBlue|LightSlateGr[ae]y|LightSteelBlue|LightYellow|Lime|LimeGreen|Linen|Magenta|Maroon|MediumAquaMarine|MediumBlue|MediumOrchid|MediumPurple|MediumSeaGreen|MediumSlateBlue|MediumSpringGreen|MediumTurquoise|MediumVioletRed|MidnightBlue|MintCream|MistyRose|Moccasin|NavajoWhite|Navy|OldLace|Olive|OliveDrab|Orange|OrangeRed|Orchid|PaleGoldenRod|PaleGreen|PaleTurquoise|PaleVioletRed|PapayaWhip|PeachPuff|Peru|Pink|Plum|PowderBlue|Purple|Red|RosyBrown|RoyalBlue|SaddleBrown|Salmon|SandyBrown|SeaGreen|SeaShell|Sienna|Silver|SkyBlue|SlateBlue|SlateGr[ae]y|Snow|SpringGreen|SteelBlue|Tan|Teal|Thistle|Tomato|Transparent|Turquoise|Violet|Wheat|White|WhiteSmoke|Yellow|YellowGreen)(?![\w-])/i,lookbehind:!0},{pattern:/\b(?:hsl|rgb)\(\s*\d{1,3}\s*,\s*\d{1,3}%?\s*,\s*\d{1,3}%?\s*\)\B|\b(?:hsl|rgb)a\(\s*\d{1,3}\s*,\s*\d{1,3}%?\s*,\s*\d{1,3}%?\s*,\s*(?:0|0?\.\d+|1)\s*\)\B/i,inside:{unit:r,number:a,function:/[\w-]+(?=\()/,punctuation:/[(),]/}}],entity:/\\[\da-f]{1,8}/i,unit:r,number:a})}(a),a.languages.javascript=a.languages.extend("clike",{"class-name":[a.languages.clike["class-name"],{pattern:/(^|[^$\w\xA0-\uFFFF])(?!\s)[_$A-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\.(?:constructor|prototype))/,lookbehind:!0}],keyword:[{pattern:/((?:^|\})\s*)catch\b/,lookbehind:!0},{pattern:/(^|[^.]|\.\.\.\s*)\b(?:as|assert(?=\s*\{)|async(?=\s*(?:function\b|\(|[$\w\xA0-\uFFFF]|$))|await|break|case|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally(?=\s*(?:\{|$))|for|from(?=\s*(?:['"]|$))|function|(?:get|set)(?=\s*(?:[#\[$\w\xA0-\uFFFF]|$))|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|static|super|switch|this|throw|try|typeof|undefined|var|void|while|with|yield)\b/,lookbehind:!0}],function:/#?(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*(?:\.\s*(?:apply|bind|call)\s*)?\()/,number:{pattern:RegExp(/(^|[^\w$])/.source+"(?:"+/NaN|Infinity/.source+"|"+/0[bB][01]+(?:_[01]+)*n?/.source+"|"+/0[oO][0-7]+(?:_[0-7]+)*n?/.source+"|"+/0[xX][\dA-Fa-f]+(?:_[\dA-Fa-f]+)*n?/.source+"|"+/\d+(?:_\d+)*n/.source+"|"+/(?:\d+(?:_\d+)*(?:\.(?:\d+(?:_\d+)*)?)?|\.\d+(?:_\d+)*)(?:[Ee][+-]?\d+(?:_\d+)*)?/.source+")"+/(?![\w$])/.source),lookbehind:!0},operator:/--|\+\+|\*\*=?|=>|&&=?|\|\|=?|[!=]==|<<=?|>>>?=?|[-+*/%&|^!=<>]=?|\.{3}|\?\?=?|\?\.?|[~:]/}),a.languages.javascript["class-name"][0].pattern=/(\b(?:class|extends|implements|instanceof|interface|new)\s+)[\w.\\]+/,a.languages.insertBefore("javascript","keyword",{regex:{pattern:/((?:^|[^$\w\xA0-\uFFFF."'\])\s]|\b(?:return|yield))\s*)\/(?:\[(?:[^\]\\\r\n]|\\.)*\]|\\.|[^/\\\[\r\n])+\/[dgimyus]{0,7}(?=(?:\s|\/\*(?:[^*]|\*(?!\/))*\*\/)*(?:$|[\r\n,.;:})\]]|\/\/))/,lookbehind:!0,greedy:!0,inside:{"regex-source":{pattern:/^(\/)[\s\S]+(?=\/[a-z]*$)/,lookbehind:!0,alias:"language-regex",inside:a.languages.regex},"regex-delimiter":/^\/|\/$/,"regex-flags":/^[a-z]+$/}},"function-variable":{pattern:/#?(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*[=:]\s*(?:async\s*)?(?:\bfunction\b|(?:\((?:[^()]|\([^()]*\))*\)|(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*)\s*=>))/,alias:"function"},parameter:[{pattern:/(function(?:\s+(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*)?\s*\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\))/,lookbehind:!0,inside:a.languages.javascript},{pattern:/(^|[^$\w\xA0-\uFFFF])(?!\s)[_$a-z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*=>)/i,lookbehind:!0,inside:a.languages.javascript},{pattern:/(\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\)\s*=>)/,lookbehind:!0,inside:a.languages.javascript},{pattern:/((?:\b|\s|^)(?!(?:as|async|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally|for|from|function|get|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|set|static|super|switch|this|throw|try|typeof|undefined|var|void|while|with|yield)(?![$\w\xA0-\uFFFF]))(?:(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*\s*)\(\s*|\]\s*\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\)\s*\{)/,lookbehind:!0,inside:a.languages.javascript}],constant:/\b[A-Z](?:[A-Z_]|\dx?)*\b/}),a.languages.insertBefore("javascript","string",{hashbang:{pattern:/^#!.*/,greedy:!0,alias:"comment"},"template-string":{pattern:/`(?:\\[\s\S]|\$\{(?:[^{}]|\{(?:[^{}]|\{[^}]*\})*\})+\}|(?!\$\{)[^\\`])*`/,greedy:!0,inside:{"template-punctuation":{pattern:/^`|`$/,alias:"string"},interpolation:{pattern:/((?:^|[^\\])(?:\\{2})*)\$\{(?:[^{}]|\{(?:[^{}]|\{[^}]*\})*\})+\}/,lookbehind:!0,inside:{"interpolation-punctuation":{pattern:/^\$\{|\}$/,alias:"punctuation"},rest:a.languages.javascript}},string:/[\s\S]+/}},"string-property":{pattern:/((?:^|[,{])[ \t]*)(["'])(?:\\(?:\r\n|[\s\S])|(?!\2)[^\\\r\n])*\2(?=\s*:)/m,lookbehind:!0,greedy:!0,alias:"property"}}),a.languages.insertBefore("javascript","operator",{"literal-property":{pattern:/((?:^|[,{])[ \t]*)(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*:)/m,lookbehind:!0,alias:"property"}}),a.languages.markup&&(a.languages.markup.tag.addInlined("script","javascript"),a.languages.markup.tag.addAttribute(/on(?:abort|blur|change|click|composition(?:end|start|update)|dblclick|error|focus(?:in|out)?|key(?:down|up)|load|mouse(?:down|enter|leave|move|out|over|up)|reset|resize|scroll|select|slotchange|submit|unload|wheel)/.source,"javascript")),a.languages.js=a.languages.javascript,function(e){var t=/#(?!\{).+/,n={pattern:/#\{[^}]+\}/,alias:"variable"};e.languages.coffeescript=e.languages.extend("javascript",{comment:t,string:[{pattern:/'(?:\\[\s\S]|[^\\'])*'/,greedy:!0},{pattern:/"(?:\\[\s\S]|[^\\"])*"/,greedy:!0,inside:{interpolation:n}}],keyword:/\b(?:and|break|by|catch|class|continue|debugger|delete|do|each|else|extend|extends|false|finally|for|if|in|instanceof|is|isnt|let|loop|namespace|new|no|not|null|of|off|on|or|own|return|super|switch|then|this|throw|true|try|typeof|undefined|unless|until|when|while|window|with|yes|yield)\b/,"class-member":{pattern:/@(?!\d)\w+/,alias:"variable"}}),e.languages.insertBefore("coffeescript","comment",{"multiline-comment":{pattern:/###[\s\S]+?###/,alias:"comment"},"block-regex":{pattern:/\/{3}[\s\S]*?\/{3}/,alias:"regex",inside:{comment:t,interpolation:n}}}),e.languages.insertBefore("coffeescript","string",{"inline-javascript":{pattern:/`(?:\\[\s\S]|[^\\`])*`/,inside:{delimiter:{pattern:/^`|`$/,alias:"punctuation"},script:{pattern:/[\s\S]+/,alias:"language-javascript",inside:e.languages.javascript}}},"multiline-string":[{pattern:/'''[\s\S]*?'''/,greedy:!0,alias:"string"},{pattern:/"""[\s\S]*?"""/,greedy:!0,alias:"string",inside:{interpolation:n}}]}),e.languages.insertBefore("coffeescript","keyword",{property:/(?!\d)\w+(?=\s*:(?!:))/}),delete e.languages.coffeescript["template-string"],e.languages.coffee=e.languages.coffeescript}(a),function(e){var t=/[*&][^\s[\]{},]+/,n=/!(?:<[\w\-%#;/?:@&=+$,.!~*'()[\]]+>|(?:[a-zA-Z\d-]*!)?[\w\-%#;/?:@&=+$.~*'()]+)?/,r="(?:"+n.source+"(?:[ \t]+"+t.source+")?|"+t.source+"(?:[ \t]+"+n.source+")?)",a=/(?:[^\s\x00-\x08\x0e-\x1f!"#%&'*,\-:>?@[\]`{|}\x7f-\x84\x86-\x9f\ud800-\udfff\ufffe\uffff]|[?:-]<PLAIN>)(?:[ \t]*(?:(?![#:])<PLAIN>|:<PLAIN>))*/.source.replace(/<PLAIN>/g,(function(){return/[^\s\x00-\x08\x0e-\x1f,[\]{}\x7f-\x84\x86-\x9f\ud800-\udfff\ufffe\uffff]/.source})),o=/"(?:[^"\\\r\n]|\\.)*"|'(?:[^'\\\r\n]|\\.)*'/.source;function i(e,t){t=(t||"").replace(/m/g,"")+"m";var n=/([:\-,[{]\s*(?:\s<<prop>>[ \t]+)?)(?:<<value>>)(?=[ \t]*(?:$|,|\]|\}|(?:[\r\n]\s*)?#))/.source.replace(/<<prop>>/g,(function(){return r})).replace(/<<value>>/g,(function(){return e}));return RegExp(n,t)}e.languages.yaml={scalar:{pattern:RegExp(/([\-:]\s*(?:\s<<prop>>[ \t]+)?[|>])[ \t]*(?:((?:\r?\n|\r)[ \t]+)\S[^\r\n]*(?:\2[^\r\n]+)*)/.source.replace(/<<prop>>/g,(function(){return r}))),lookbehind:!0,alias:"string"},comment:/#.*/,key:{pattern:RegExp(/((?:^|[:\-,[{\r\n?])[ \t]*(?:<<prop>>[ \t]+)?)<<key>>(?=\s*:\s)/.source.replace(/<<prop>>/g,(function(){return r})).replace(/<<key>>/g,(function(){return"(?:"+a+"|"+o+")"}))),lookbehind:!0,greedy:!0,alias:"atrule"},directive:{pattern:/(^[ \t]*)%.+/m,lookbehind:!0,alias:"important"},datetime:{pattern:i(/\d{4}-\d\d?-\d\d?(?:[tT]|[ \t]+)\d\d?:\d{2}:\d{2}(?:\.\d*)?(?:[ \t]*(?:Z|[-+]\d\d?(?::\d{2})?))?|\d{4}-\d{2}-\d{2}|\d\d?:\d{2}(?::\d{2}(?:\.\d*)?)?/.source),lookbehind:!0,alias:"number"},boolean:{pattern:i(/false|true/.source,"i"),lookbehind:!0,alias:"important"},null:{pattern:i(/null|~/.source,"i"),lookbehind:!0,alias:"important"},string:{pattern:i(o),lookbehind:!0,greedy:!0},number:{pattern:i(/[+-]?(?:0x[\da-f]+|0o[0-7]+|(?:\d+(?:\.\d*)?|\.\d+)(?:e[+-]?\d+)?|\.inf|\.nan)/.source,"i"),lookbehind:!0},tag:n,important:t,punctuation:/---|[:[\]{}\-,|>?]|\.\.\./},e.languages.yml=e.languages.yaml}(a),function(e){var t=/(?:\\.|[^\\\n\r]|(?:\n|\r\n?)(?![\r\n]))/.source;function n(e){return e=e.replace(/<inner>/g,(function(){return t})),RegExp(/((?:^|[^\\])(?:\\{2})*)/.source+"(?:"+e+")")}var r=/(?:\\.|``(?:[^`\r\n]|`(?!`))+``|`[^`\r\n]+`|[^\\|\r\n`])+/.source,a=/\|?__(?:\|__)+\|?(?:(?:\n|\r\n?)|(?![\s\S]))/.source.replace(/__/g,(function(){return r})),o=/\|?[ \t]*:?-{3,}:?[ \t]*(?:\|[ \t]*:?-{3,}:?[ \t]*)+\|?(?:\n|\r\n?)/.source;e.languages.markdown=e.languages.extend("markup",{}),e.languages.insertBefore("markdown","prolog",{"front-matter-block":{pattern:/(^(?:\s*[\r\n])?)---(?!.)[\s\S]*?[\r\n]---(?!.)/,lookbehind:!0,greedy:!0,inside:{punctuation:/^---|---$/,"front-matter":{pattern:/\S+(?:\s+\S+)*/,alias:["yaml","language-yaml"],inside:e.languages.yaml}}},blockquote:{pattern:/^>(?:[\t ]*>)*/m,alias:"punctuation"},table:{pattern:RegExp("^"+a+o+"(?:"+a+")*","m"),inside:{"table-data-rows":{pattern:RegExp("^("+a+o+")(?:"+a+")*$"),lookbehind:!0,inside:{"table-data":{pattern:RegExp(r),inside:e.languages.markdown},punctuation:/\|/}},"table-line":{pattern:RegExp("^("+a+")"+o+"$"),lookbehind:!0,inside:{punctuation:/\||:?-{3,}:?/}},"table-header-row":{pattern:RegExp("^"+a+"$"),inside:{"table-header":{pattern:RegExp(r),alias:"important",inside:e.languages.markdown},punctuation:/\|/}}}},code:[{pattern:/((?:^|\n)[ \t]*\n|(?:^|\r\n?)[ \t]*\r\n?)(?: {4}|\t).+(?:(?:\n|\r\n?)(?: {4}|\t).+)*/,lookbehind:!0,alias:"keyword"},{pattern:/^```[\s\S]*?^```$/m,greedy:!0,inside:{"code-block":{pattern:/^(```.*(?:\n|\r\n?))[\s\S]+?(?=(?:\n|\r\n?)^```$)/m,lookbehind:!0},"code-language":{pattern:/^(```).+/,lookbehind:!0},punctuation:/```/}}],title:[{pattern:/\S.*(?:\n|\r\n?)(?:==+|--+)(?=[ \t]*$)/m,alias:"important",inside:{punctuation:/==+$|--+$/}},{pattern:/(^\s*)#.+/m,lookbehind:!0,alias:"important",inside:{punctuation:/^#+|#+$/}}],hr:{pattern:/(^\s*)([*-])(?:[\t ]*\2){2,}(?=\s*$)/m,lookbehind:!0,alias:"punctuation"},list:{pattern:/(^\s*)(?:[*+-]|\d+\.)(?=[\t ].)/m,lookbehind:!0,alias:"punctuation"},"url-reference":{pattern:/!?\[[^\]]+\]:[\t ]+(?:\S+|<(?:\\.|[^>\\])+>)(?:[\t ]+(?:"(?:\\.|[^"\\])*"|'(?:\\.|[^'\\])*'|\((?:\\.|[^)\\])*\)))?/,inside:{variable:{pattern:/^(!?\[)[^\]]+/,lookbehind:!0},string:/(?:"(?:\\.|[^"\\])*"|'(?:\\.|[^'\\])*'|\((?:\\.|[^)\\])*\))$/,punctuation:/^[\[\]!:]|[<>]/},alias:"url"},bold:{pattern:n(/\b__(?:(?!_)<inner>|_(?:(?!_)<inner>)+_)+__\b|\*\*(?:(?!\*)<inner>|\*(?:(?!\*)<inner>)+\*)+\*\*/.source),lookbehind:!0,greedy:!0,inside:{content:{pattern:/(^..)[\s\S]+(?=..$)/,lookbehind:!0,inside:{}},punctuation:/\*\*|__/}},italic:{pattern:n(/\b_(?:(?!_)<inner>|__(?:(?!_)<inner>)+__)+_\b|\*(?:(?!\*)<inner>|\*\*(?:(?!\*)<inner>)+\*\*)+\*/.source),lookbehind:!0,greedy:!0,inside:{content:{pattern:/(^.)[\s\S]+(?=.$)/,lookbehind:!0,inside:{}},punctuation:/[*_]/}},strike:{pattern:n(/(~~?)(?:(?!~)<inner>)+\2/.source),lookbehind:!0,greedy:!0,inside:{content:{pattern:/(^~~?)[\s\S]+(?=\1$)/,lookbehind:!0,inside:{}},punctuation:/~~?/}},"code-snippet":{pattern:/(^|[^\\`])(?:``[^`\r\n]+(?:`[^`\r\n]+)*``(?!`)|`[^`\r\n]+`(?!`))/,lookbehind:!0,greedy:!0,alias:["code","keyword"]},url:{pattern:n(/!?\[(?:(?!\])<inner>)+\](?:\([^\s)]+(?:[\t ]+"(?:\\.|[^"\\])*")?\)|[ \t]?\[(?:(?!\])<inner>)+\])/.source),lookbehind:!0,greedy:!0,inside:{operator:/^!/,content:{pattern:/(^\[)[^\]]+(?=\])/,lookbehind:!0,inside:{}},variable:{pattern:/(^\][ \t]?\[)[^\]]+(?=\]$)/,lookbehind:!0},url:{pattern:/(^\]\()[^\s)]+/,lookbehind:!0},string:{pattern:/(^[ \t]+)"(?:\\.|[^"\\])*"(?=\)$)/,lookbehind:!0}}}}),["url","bold","italic","strike"].forEach((function(t){["url","bold","italic","strike","code-snippet"].forEach((function(n){t!==n&&(e.languages.markdown[t].inside.content.inside[n]=e.languages.markdown[n])}))})),e.hooks.add("after-tokenize",(function(e){"markdown"!==e.language&&"md"!==e.language||function e(t){if(t&&"string"!=typeof t)for(var n=0,r=t.length;n<r;n++){var a=t[n];if("code"===a.type){var o=a.content[1],i=a.content[3];if(o&&i&&"code-language"===o.type&&"code-block"===i.type&&"string"==typeof o.content){var l=o.content.replace(/\b#/g,"sharp").replace(/\b\+\+/g,"pp"),s="language-"+(l=(/[a-z][\w-]*/i.exec(l)||[""])[0].toLowerCase());i.alias?"string"==typeof i.alias?i.alias=[i.alias,s]:i.alias.push(s):i.alias=[s]}}else e(a.content)}}(e.tokens)})),e.hooks.add("wrap",(function(t){if("code-block"===t.type){for(var n="",r=0,a=t.classes.length;r<a;r++){var o=t.classes[r],u=/language-(.+)/.exec(o);if(u){n=u[1];break}}var c,d=e.languages[n];if(d)t.content=e.highlight((c=t.content,c.replace(i,"").replace(/&(\w{1,8}|#x?[\da-f]{1,8});/gi,(function(e,t){var n;if("#"===(t=t.toLowerCase())[0])return n="x"===t[1]?parseInt(t.slice(2),16):Number(t.slice(1)),s(n);var r=l[t];return r||e}))),d,n);else if(n&&"none"!==n&&e.plugins.autoloader){var f="md-"+(new Date).valueOf()+"-"+Math.floor(1e16*Math.random());t.attributes.id=f,e.plugins.autoloader.loadLanguages(n,(function(){var t=document.getElementById(f);t&&(t.innerHTML=e.highlight(t.textContent,e.languages[n],n))}))}}}));var i=RegExp(e.languages.markup.tag.pattern.source,"gi"),l={amp:"&",lt:"<",gt:">",quot:'"'},s=String.fromCodePoint||String.fromCharCode;e.languages.md=e.languages.markdown}(a),a.languages.graphql={comment:/#.*/,description:{pattern:/(?:"""(?:[^"]|(?!""")")*"""|"(?:\\.|[^\\"\r\n])*")(?=\s*[a-z_])/i,greedy:!0,alias:"string",inside:{"language-markdown":{pattern:/(^"(?:"")?)(?!\1)[\s\S]+(?=\1$)/,lookbehind:!0,inside:a.languages.markdown}}},string:{pattern:/"""(?:[^"]|(?!""")")*"""|"(?:\\.|[^\\"\r\n])*"/,greedy:!0},number:/(?:\B-|\b)\d+(?:\.\d+)?(?:e[+-]?\d+)?\b/i,boolean:/\b(?:false|true)\b/,variable:/\$[a-z_]\w*/i,directive:{pattern:/@[a-z_]\w*/i,alias:"function"},"attr-name":{pattern:/\b[a-z_]\w*(?=\s*(?:\((?:[^()"]|"(?:\\.|[^\\"\r\n])*")*\))?:)/i,greedy:!0},"atom-input":{pattern:/\b[A-Z]\w*Input\b/,alias:"class-name"},scalar:/\b(?:Boolean|Float|ID|Int|String)\b/,constant:/\b[A-Z][A-Z_\d]*\b/,"class-name":{pattern:/(\b(?:enum|implements|interface|on|scalar|type|union)\s+|&\s*|:\s*|\[)[A-Z_]\w*/,lookbehind:!0},fragment:{pattern:/(\bfragment\s+|\.{3}\s*(?!on\b))[a-zA-Z_]\w*/,lookbehind:!0,alias:"function"},"definition-mutation":{pattern:/(\bmutation\s+)[a-zA-Z_]\w*/,lookbehind:!0,alias:"function"},"definition-query":{pattern:/(\bquery\s+)[a-zA-Z_]\w*/,lookbehind:!0,alias:"function"},keyword:/\b(?:directive|enum|extend|fragment|implements|input|interface|mutation|on|query|repeatable|scalar|schema|subscription|type|union)\b/,operator:/[!=|&]|\.{3}/,"property-query":/\w+(?=\s*\()/,object:/\w+(?=\s*\{)/,punctuation:/[!(){}\[\]:=,]/,property:/\w+/},a.hooks.add("after-tokenize",(function(e){if("graphql"===e.language)for(var t=e.tokens.filter((function(e){return"string"!=typeof e&&"comment"!==e.type&&"scalar"!==e.type})),n=0;n<t.length;){var r=t[n++];if("keyword"===r.type&&"mutation"===r.content){var a=[];if(d(["definition-mutation","punctuation"])&&"("===c(1).content){n+=2;var o=f(/^\($/,/^\)$/);if(-1===o)continue;for(;n<o;n++){var i=c(0);"variable"===i.type&&(p(i,"variable-input"),a.push(i.content))}n=o+1}if(d(["punctuation","property-query"])&&"{"===c(0).content&&(n++,p(c(0),"property-mutation"),a.length>0)){var l=f(/^\{$/,/^\}$/);if(-1===l)continue;for(var s=n;s<l;s++){var u=t[s];"variable"===u.type&&a.indexOf(u.content)>=0&&p(u,"variable-input")}}}}function c(e){return t[n+e]}function d(e,t){t=t||0;for(var n=0;n<e.length;n++){var r=c(n+t);if(!r||r.type!==e[n])return!1}return!0}function f(e,r){for(var a=1,o=n;o<t.length;o++){var i=t[o],l=i.content;if("punctuation"===i.type&&"string"==typeof l)if(e.test(l))a++;else if(r.test(l)&&0===--a)return o}return-1}function p(e,t){var n=e.alias;n?Array.isArray(n)||(e.alias=n=[n]):e.alias=n=[],n.push(t)}})),a.languages.sql={comment:{pattern:/(^|[^\\])(?:\/\*[\s\S]*?\*\/|(?:--|\/\/|#).*)/,lookbehind:!0},variable:[{pattern:/@(["'`])(?:\\[\s\S]|(?!\1)[^\\])+\1/,greedy:!0},/@[\w.$]+/],string:{pattern:/(^|[^@\\])("|')(?:\\[\s\S]|(?!\2)[^\\]|\2\2)*\2/,greedy:!0,lookbehind:!0},identifier:{pattern:/(^|[^@\\])`(?:\\[\s\S]|[^`\\]|``)*`/,greedy:!0,lookbehind:!0,inside:{punctuation:/^`|`$/}},function:/\b(?:AVG|COUNT|FIRST|FORMAT|LAST|LCASE|LEN|MAX|MID|MIN|MOD|NOW|ROUND|SUM|UCASE)(?=\s*\()/i,keyword:/\b(?:ACTION|ADD|AFTER|ALGORITHM|ALL|ALTER|ANALYZE|ANY|APPLY|AS|ASC|AUTHORIZATION|AUTO_INCREMENT|BACKUP|BDB|BEGIN|BERKELEYDB|BIGINT|BINARY|BIT|BLOB|BOOL|BOOLEAN|BREAK|BROWSE|BTREE|BULK|BY|CALL|CASCADED?|CASE|CHAIN|CHAR(?:ACTER|SET)?|CHECK(?:POINT)?|CLOSE|CLUSTERED|COALESCE|COLLATE|COLUMNS?|COMMENT|COMMIT(?:TED)?|COMPUTE|CONNECT|CONSISTENT|CONSTRAINT|CONTAINS(?:TABLE)?|CONTINUE|CONVERT|CREATE|CROSS|CURRENT(?:_DATE|_TIME|_TIMESTAMP|_USER)?|CURSOR|CYCLE|DATA(?:BASES?)?|DATE(?:TIME)?|DAY|DBCC|DEALLOCATE|DEC|DECIMAL|DECLARE|DEFAULT|DEFINER|DELAYED|DELETE|DELIMITERS?|DENY|DESC|DESCRIBE|DETERMINISTIC|DISABLE|DISCARD|DISK|DISTINCT|DISTINCTROW|DISTRIBUTED|DO|DOUBLE|DROP|DUMMY|DUMP(?:FILE)?|DUPLICATE|ELSE(?:IF)?|ENABLE|ENCLOSED|END|ENGINE|ENUM|ERRLVL|ERRORS|ESCAPED?|EXCEPT|EXEC(?:UTE)?|EXISTS|EXIT|EXPLAIN|EXTENDED|FETCH|FIELDS|FILE|FILLFACTOR|FIRST|FIXED|FLOAT|FOLLOWING|FOR(?: EACH ROW)?|FORCE|FOREIGN|FREETEXT(?:TABLE)?|FROM|FULL|FUNCTION|GEOMETRY(?:COLLECTION)?|GLOBAL|GOTO|GRANT|GROUP|HANDLER|HASH|HAVING|HOLDLOCK|HOUR|IDENTITY(?:COL|_INSERT)?|IF|IGNORE|IMPORT|INDEX|INFILE|INNER|INNODB|INOUT|INSERT|INT|INTEGER|INTERSECT|INTERVAL|INTO|INVOKER|ISOLATION|ITERATE|JOIN|KEYS?|KILL|LANGUAGE|LAST|LEAVE|LEFT|LEVEL|LIMIT|LINENO|LINES|LINESTRING|LOAD|LOCAL|LOCK|LONG(?:BLOB|TEXT)|LOOP|MATCH(?:ED)?|MEDIUM(?:BLOB|INT|TEXT)|MERGE|MIDDLEINT|MINUTE|MODE|MODIFIES|MODIFY|MONTH|MULTI(?:LINESTRING|POINT|POLYGON)|NATIONAL|NATURAL|NCHAR|NEXT|NO|NONCLUSTERED|NULLIF|NUMERIC|OFF?|OFFSETS?|ON|OPEN(?:DATASOURCE|QUERY|ROWSET)?|OPTIMIZE|OPTION(?:ALLY)?|ORDER|OUT(?:ER|FILE)?|OVER|PARTIAL|PARTITION|PERCENT|PIVOT|PLAN|POINT|POLYGON|PRECEDING|PRECISION|PREPARE|PREV|PRIMARY|PRINT|PRIVILEGES|PROC(?:EDURE)?|PUBLIC|PURGE|QUICK|RAISERROR|READS?|REAL|RECONFIGURE|REFERENCES|RELEASE|RENAME|REPEAT(?:ABLE)?|REPLACE|REPLICATION|REQUIRE|RESIGNAL|RESTORE|RESTRICT|RETURN(?:ING|S)?|REVOKE|RIGHT|ROLLBACK|ROUTINE|ROW(?:COUNT|GUIDCOL|S)?|RTREE|RULE|SAVE(?:POINT)?|SCHEMA|SECOND|SELECT|SERIAL(?:IZABLE)?|SESSION(?:_USER)?|SET(?:USER)?|SHARE|SHOW|SHUTDOWN|SIMPLE|SMALLINT|SNAPSHOT|SOME|SONAME|SQL|START(?:ING)?|STATISTICS|STATUS|STRIPED|SYSTEM_USER|TABLES?|TABLESPACE|TEMP(?:ORARY|TABLE)?|TERMINATED|TEXT(?:SIZE)?|THEN|TIME(?:STAMP)?|TINY(?:BLOB|INT|TEXT)|TOP?|TRAN(?:SACTIONS?)?|TRIGGER|TRUNCATE|TSEQUAL|TYPES?|UNBOUNDED|UNCOMMITTED|UNDEFINED|UNION|UNIQUE|UNLOCK|UNPIVOT|UNSIGNED|UPDATE(?:TEXT)?|USAGE|USE|USER|USING|VALUES?|VAR(?:BINARY|CHAR|CHARACTER|YING)|VIEW|WAITFOR|WARNINGS|WHEN|WHERE|WHILE|WITH(?: ROLLUP|IN)?|WORK|WRITE(?:TEXT)?|YEAR)\b/i,boolean:/\b(?:FALSE|NULL|TRUE)\b/i,number:/\b0x[\da-f]+\b|\b\d+(?:\.\d*)?|\B\.\d+\b/i,operator:/[-+*\/=%^~]|&&?|\|\|?|!=?|<(?:=>?|<|>)?|>[>=]?|\b(?:AND|BETWEEN|DIV|ILIKE|IN|IS|LIKE|NOT|OR|REGEXP|RLIKE|SOUNDS LIKE|XOR)\b/i,punctuation:/[;[\]()`,.]/},function(e){var t=e.languages.javascript["template-string"],n=t.pattern.source,r=t.inside.interpolation,a=r.inside["interpolation-punctuation"],o=r.pattern.source;function i(t,r){if(e.languages[t])return{pattern:RegExp("((?:"+r+")\\s*)"+n),lookbehind:!0,greedy:!0,inside:{"template-punctuation":{pattern:/^`|`$/,alias:"string"},"embedded-code":{pattern:/[\s\S]+/,alias:t}}}}function l(e,t){return"___"+t.toUpperCase()+"_"+e+"___"}function s(t,n,r){var a={code:t,grammar:n,language:r};return e.hooks.run("before-tokenize",a),a.tokens=e.tokenize(a.code,a.grammar),e.hooks.run("after-tokenize",a),a.tokens}function u(t){var n={};n["interpolation-punctuation"]=a;var o=e.tokenize(t,n);if(3===o.length){var i=[1,1];i.push.apply(i,s(o[1],e.languages.javascript,"javascript")),o.splice.apply(o,i)}return new e.Token("interpolation",o,r.alias,t)}function c(t,n,r){var a=e.tokenize(t,{interpolation:{pattern:RegExp(o),lookbehind:!0}}),i=0,c={},d=s(a.map((function(e){if("string"==typeof e)return e;for(var n,a=e.content;-1!==t.indexOf(n=l(i++,r)););return c[n]=a,n})).join(""),n,r),f=Object.keys(c);return i=0,function e(t){for(var n=0;n<t.length;n++){if(i>=f.length)return;var r=t[n];if("string"==typeof r||"string"==typeof r.content){var a=f[i],o="string"==typeof r?r:r.content,l=o.indexOf(a);if(-1!==l){++i;var s=o.substring(0,l),d=u(c[a]),p=o.substring(l+a.length),m=[];if(s&&m.push(s),m.push(d),p){var h=[p];e(h),m.push.apply(m,h)}"string"==typeof r?(t.splice.apply(t,[n,1].concat(m)),n+=m.length-1):r.content=m}}else{var g=r.content;Array.isArray(g)?e(g):e([g])}}}(d),new e.Token(r,d,"language-"+r,t)}e.languages.javascript["template-string"]=[i("css",/\b(?:styled(?:\([^)]*\))?(?:\s*\.\s*\w+(?:\([^)]*\))*)*|css(?:\s*\.\s*(?:global|resolve))?|createGlobalStyle|keyframes)/.source),i("html",/\bhtml|\.\s*(?:inner|outer)HTML\s*\+?=/.source),i("svg",/\bsvg/.source),i("markdown",/\b(?:markdown|md)/.source),i("graphql",/\b(?:gql|graphql(?:\s*\.\s*experimental)?)/.source),i("sql",/\bsql/.source),t].filter(Boolean);var d={javascript:!0,js:!0,typescript:!0,ts:!0,jsx:!0,tsx:!0};function f(e){return"string"==typeof e?e:Array.isArray(e)?e.map(f).join(""):f(e.content)}e.hooks.add("after-tokenize",(function(t){t.language in d&&function t(n){for(var r=0,a=n.length;r<a;r++){var o=n[r];if("string"!=typeof o){var i=o.content;if(Array.isArray(i))if("template-string"===o.type){var l=i[1];if(3===i.length&&"string"!=typeof l&&"embedded-code"===l.type){var s=f(l),u=l.alias,d=Array.isArray(u)?u[0]:u,p=e.languages[d];if(!p)continue;i[1]=c(s,p,d)}}else t(i);else"string"!=typeof i&&t([i])}}}(t.tokens)}))}(a),function(e){e.languages.typescript=e.languages.extend("javascript",{"class-name":{pattern:/(\b(?:class|extends|implements|instanceof|interface|new|type)\s+)(?!keyof\b)(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?:\s*<(?:[^<>]|<(?:[^<>]|<[^<>]*>)*>)*>)?/,lookbehind:!0,greedy:!0,inside:null},builtin:/\b(?:Array|Function|Promise|any|boolean|console|never|number|string|symbol|unknown)\b/}),e.languages.typescript.keyword.push(/\b(?:abstract|declare|is|keyof|readonly|require)\b/,/\b(?:asserts|infer|interface|module|namespace|type)\b(?=\s*(?:[{_$a-zA-Z\xA0-\uFFFF]|$))/,/\btype\b(?=\s*(?:[\{*]|$))/),delete e.languages.typescript.parameter,delete e.languages.typescript["literal-property"];var t=e.languages.extend("typescript",{});delete t["class-name"],e.languages.typescript["class-name"].inside=t,e.languages.insertBefore("typescript","function",{decorator:{pattern:/@[$\w\xA0-\uFFFF]+/,inside:{at:{pattern:/^@/,alias:"operator"},function:/^[\s\S]+/}},"generic-function":{pattern:/#?(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*\s*<(?:[^<>]|<(?:[^<>]|<[^<>]*>)*>)*>(?=\s*\()/,greedy:!0,inside:{function:/^#?(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*/,generic:{pattern:/<[\s\S]+/,alias:"class-name",inside:t}}}}),e.languages.ts=e.languages.typescript}(a),function(e){function t(e,t){return RegExp(e.replace(/<ID>/g,(function(){return/(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*/.source})),t)}e.languages.insertBefore("javascript","function-variable",{"method-variable":{pattern:RegExp("(\\.\\s*)"+e.languages.javascript["function-variable"].pattern.source),lookbehind:!0,alias:["function-variable","method","function","property-access"]}}),e.languages.insertBefore("javascript","function",{method:{pattern:RegExp("(\\.\\s*)"+e.languages.javascript.function.source),lookbehind:!0,alias:["function","property-access"]}}),e.languages.insertBefore("javascript","constant",{"known-class-name":[{pattern:/\b(?:(?:Float(?:32|64)|(?:Int|Uint)(?:8|16|32)|Uint8Clamped)?Array|ArrayBuffer|BigInt|Boolean|DataView|Date|Error|Function|Intl|JSON|(?:Weak)?(?:Map|Set)|Math|Number|Object|Promise|Proxy|Reflect|RegExp|String|Symbol|WebAssembly)\b/,alias:"class-name"},{pattern:/\b(?:[A-Z]\w*)Error\b/,alias:"class-name"}]}),e.languages.insertBefore("javascript","keyword",{imports:{pattern:t(/(\bimport\b\s*)(?:<ID>(?:\s*,\s*(?:\*\s*as\s+<ID>|\{[^{}]*\}))?|\*\s*as\s+<ID>|\{[^{}]*\})(?=\s*\bfrom\b)/.source),lookbehind:!0,inside:e.languages.javascript},exports:{pattern:t(/(\bexport\b\s*)(?:\*(?:\s*as\s+<ID>)?(?=\s*\bfrom\b)|\{[^{}]*\})/.source),lookbehind:!0,inside:e.languages.javascript}}),e.languages.javascript.keyword.unshift({pattern:/\b(?:as|default|export|from|import)\b/,alias:"module"},{pattern:/\b(?:await|break|catch|continue|do|else|finally|for|if|return|switch|throw|try|while|yield)\b/,alias:"control-flow"},{pattern:/\bnull\b/,alias:["null","nil"]},{pattern:/\bundefined\b/,alias:"nil"}),e.languages.insertBefore("javascript","operator",{spread:{pattern:/\.{3}/,alias:"operator"},arrow:{pattern:/=>/,alias:"operator"}}),e.languages.insertBefore("javascript","punctuation",{"property-access":{pattern:t(/(\.\s*)#?<ID>/.source),lookbehind:!0},"maybe-class-name":{pattern:/(^|[^$\w\xA0-\uFFFF])[A-Z][$\w\xA0-\uFFFF]+/,lookbehind:!0},dom:{pattern:/\b(?:document|(?:local|session)Storage|location|navigator|performance|window)\b/,alias:"variable"},console:{pattern:/\bconsole(?=\s*\.)/,alias:"class-name"}});for(var n=["function","function-variable","method","method-variable","property-access"],r=0;r<n.length;r++){var a=n[r],o=e.languages.javascript[a];"RegExp"===e.util.type(o)&&(o=e.languages.javascript[a]={pattern:o});var i=o.inside||{};o.inside=i,i["maybe-class-name"]=/^[A-Z][\s\S]*/}}(a),function(e){var t=e.util.clone(e.languages.javascript),n=/(?:\s|\/\/.*(?!.)|\/\*(?:[^*]|\*(?!\/))\*\/)/.source,r=/(?:\{(?:\{(?:\{[^{}]*\}|[^{}])*\}|[^{}])*\})/.source,a=/(?:\{<S>*\.{3}(?:[^{}]|<BRACES>)*\})/.source;function o(e,t){return e=e.replace(/<S>/g,(function(){return n})).replace(/<BRACES>/g,(function(){return r})).replace(/<SPREAD>/g,(function(){return a})),RegExp(e,t)}a=o(a).source,e.languages.jsx=e.languages.extend("markup",t),e.languages.jsx.tag.pattern=o(/<\/?(?:[\w.:-]+(?:<S>+(?:[\w.:$-]+(?:=(?:"(?:\\[\s\S]|[^\\"])*"|'(?:\\[\s\S]|[^\\'])*'|[^\s{'"/>=]+|<BRACES>))?|<SPREAD>))*<S>*\/?)?>/.source),e.languages.jsx.tag.inside.tag.pattern=/^<\/?[^\s>\/]*/,e.languages.jsx.tag.inside["attr-value"].pattern=/=(?!\{)(?:"(?:\\[\s\S]|[^\\"])*"|'(?:\\[\s\S]|[^\\'])*'|[^\s'">]+)/,e.languages.jsx.tag.inside.tag.inside["class-name"]=/^[A-Z]\w*(?:\.[A-Z]\w*)*$/,e.languages.jsx.tag.inside.comment=t.comment,e.languages.insertBefore("inside","attr-name",{spread:{pattern:o(/<SPREAD>/.source),inside:e.languages.jsx}},e.languages.jsx.tag),e.languages.insertBefore("inside","special-attr",{script:{pattern:o(/=<BRACES>/.source),alias:"language-javascript",inside:{"script-punctuation":{pattern:/^=(?=\{)/,alias:"punctuation"},rest:e.languages.jsx}}},e.languages.jsx.tag);var i=function(e){return e?"string"==typeof e?e:"string"==typeof e.content?e.content:e.content.map(i).join(""):""},l=function(t){for(var n=[],r=0;r<t.length;r++){var a=t[r],o=!1;if("string"!=typeof a&&("tag"===a.type&&a.content[0]&&"tag"===a.content[0].type?"</"===a.content[0].content[0].content?n.length>0&&n[n.length-1].tagName===i(a.content[0].content[1])&&n.pop():"/>"===a.content[a.content.length-1].content||n.push({tagName:i(a.content[0].content[1]),openedBraces:0}):n.length>0&&"punctuation"===a.type&&"{"===a.content?n[n.length-1].openedBraces++:n.length>0&&n[n.length-1].openedBraces>0&&"punctuation"===a.type&&"}"===a.content?n[n.length-1].openedBraces--:o=!0),(o||"string"==typeof a)&&n.length>0&&0===n[n.length-1].openedBraces){var s=i(a);r<t.length-1&&("string"==typeof t[r+1]||"plain-text"===t[r+1].type)&&(s+=i(t[r+1]),t.splice(r+1,1)),r>0&&("string"==typeof t[r-1]||"plain-text"===t[r-1].type)&&(s=i(t[r-1])+s,t.splice(r-1,1),r--),t[r]=new e.Token("plain-text",s,null,s)}a.content&&"string"!=typeof a.content&&l(a.content)}};e.hooks.add("after-tokenize",(function(e){"jsx"!==e.language&&"tsx"!==e.language||l(e.tokens)}))}(a),function(e){e.languages.diff={coord:[/^(?:\*{3}|-{3}|\+{3}).*$/m,/^@@.*@@$/m,/^\d.*$/m]};var t={"deleted-sign":"-","deleted-arrow":"<","inserted-sign":"+","inserted-arrow":">",unchanged:" ",diff:"!"};Object.keys(t).forEach((function(n){var r=t[n],a=[];/^\w+$/.test(n)||a.push(/\w+/.exec(n)[0]),"diff"===n&&a.push("bold"),e.languages.diff[n]={pattern:RegExp("^(?:["+r+"].*(?:\r\n?|\n|(?![\\s\\S])))+","m"),alias:a,inside:{line:{pattern:/(.)(?=[\s\S]).*(?:\r\n?|\n)?/,lookbehind:!0},prefix:{pattern:/[\s\S]/,alias:/\w+/.exec(n)[0]}}}})),Object.defineProperty(e.languages.diff,"PREFIXES",{value:t})}(a),a.languages.git={comment:/^#.*/m,deleted:/^[-\u2013].*/m,inserted:/^\+.*/m,string:/("|')(?:\\.|(?!\1)[^\\\r\n])*\1/,command:{pattern:/^.*\$ git .*$/m,inside:{parameter:/\s--?\w+/}},coord:/^@@.*@@$/m,"commit-sha1":/^commit \w{40}$/m},a.languages.go=a.languages.extend("clike",{string:{pattern:/(^|[^\\])"(?:\\.|[^"\\\r\n])*"|`[^`]*`/,lookbehind:!0,greedy:!0},keyword:/\b(?:break|case|chan|const|continue|default|defer|else|fallthrough|for|func|go(?:to)?|if|import|interface|map|package|range|return|select|struct|switch|type|var)\b/,boolean:/\b(?:_|false|iota|nil|true)\b/,number:[/\b0(?:b[01_]+|o[0-7_]+)i?\b/i,/\b0x(?:[a-f\d_]+(?:\.[a-f\d_]*)?|\.[a-f\d_]+)(?:p[+-]?\d+(?:_\d+)*)?i?(?!\w)/i,/(?:\b\d[\d_]*(?:\.[\d_]*)?|\B\.\d[\d_]*)(?:e[+-]?[\d_]+)?i?(?!\w)/i],operator:/[*\/%^!=]=?|\+[=+]?|-[=-]?|\|[=|]?|&(?:=|&|\^=?)?|>(?:>=?|=)?|<(?:<=?|=|-)?|:=|\.\.\./,builtin:/\b(?:append|bool|byte|cap|close|complex|complex(?:64|128)|copy|delete|error|float(?:32|64)|u?int(?:8|16|32|64)?|imag|len|make|new|panic|print(?:ln)?|real|recover|rune|string|uintptr)\b/}),a.languages.insertBefore("go","string",{char:{pattern:/'(?:\\.|[^'\\\r\n]){0,10}'/,greedy:!0}}),delete a.languages.go["class-name"],function(e){function t(e,t){return"___"+e.toUpperCase()+t+"___"}Object.defineProperties(e.languages["markup-templating"]={},{buildPlaceholders:{value:function(n,r,a,o){if(n.language===r){var i=n.tokenStack=[];n.code=n.code.replace(a,(function(e){if("function"==typeof o&&!o(e))return e;for(var a,l=i.length;-1!==n.code.indexOf(a=t(r,l));)++l;return i[l]=e,a})),n.grammar=e.languages.markup}}},tokenizePlaceholders:{value:function(n,r){if(n.language===r&&n.tokenStack){n.grammar=e.languages[r];var a=0,o=Object.keys(n.tokenStack);!function i(l){for(var s=0;s<l.length&&!(a>=o.length);s++){var u=l[s];if("string"==typeof u||u.content&&"string"==typeof u.content){var c=o[a],d=n.tokenStack[c],f="string"==typeof u?u:u.content,p=t(r,c),m=f.indexOf(p);if(m>-1){++a;var h=f.substring(0,m),g=new e.Token(r,e.tokenize(d,n.grammar),"language-"+r,d),b=f.substring(m+p.length),v=[];h&&v.push.apply(v,i([h])),v.push(g),b&&v.push.apply(v,i([b])),"string"==typeof u?l.splice.apply(l,[s,1].concat(v)):u.content=v}}else u.content&&i(u.content)}return l}(n.tokens)}}}})}(a),function(e){e.languages.handlebars={comment:/\{\{![\s\S]*?\}\}/,delimiter:{pattern:/^\{\{\{?|\}\}\}?$/,alias:"punctuation"},string:/(["'])(?:\\.|(?!\1)[^\\\r\n])*\1/,number:/\b0x[\dA-Fa-f]+\b|(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:[Ee][+-]?\d+)?/,boolean:/\b(?:false|true)\b/,block:{pattern:/^(\s*(?:~\s*)?)[#\/]\S+?(?=\s*(?:~\s*)?$|\s)/,lookbehind:!0,alias:"keyword"},brackets:{pattern:/\[[^\]]+\]/,inside:{punctuation:/\[|\]/,variable:/[\s\S]+/}},punctuation:/[!"#%&':()*+,.\/;<=>@\[\\\]^`{|}~]/,variable:/[^!"#%&'()*+,\/;<=>@\[\\\]^`{|}~\s]+/},e.hooks.add("before-tokenize",(function(t){e.languages["markup-templating"].buildPlaceholders(t,"handlebars",/\{\{\{[\s\S]+?\}\}\}|\{\{[\s\S]+?\}\}/g)})),e.hooks.add("after-tokenize",(function(t){e.languages["markup-templating"].tokenizePlaceholders(t,"handlebars")})),e.languages.hbs=e.languages.handlebars}(a),a.languages.json={property:{pattern:/(^|[^\\])"(?:\\.|[^\\"\r\n])*"(?=\s*:)/,lookbehind:!0,greedy:!0},string:{pattern:/(^|[^\\])"(?:\\.|[^\\"\r\n])*"(?!\s*:)/,lookbehind:!0,greedy:!0},comment:{pattern:/\/\/.*|\/\*[\s\S]*?(?:\*\/|$)/,greedy:!0},number:/-?\b\d+(?:\.\d+)?(?:e[+-]?\d+)?\b/i,punctuation:/[{}[\],]/,operator:/:/,boolean:/\b(?:false|true)\b/,null:{pattern:/\bnull\b/,alias:"keyword"}},a.languages.webmanifest=a.languages.json,a.languages.less=a.languages.extend("css",{comment:[/\/\*[\s\S]*?\*\//,{pattern:/(^|[^\\])\/\/.*/,lookbehind:!0}],atrule:{pattern:/@[\w-](?:\((?:[^(){}]|\([^(){}]*\))*\)|[^(){};\s]|\s+(?!\s))*?(?=\s*\{)/,inside:{punctuation:/[:()]/}},selector:{pattern:/(?:@\{[\w-]+\}|[^{};\s@])(?:@\{[\w-]+\}|\((?:[^(){}]|\([^(){}]*\))*\)|[^(){};@\s]|\s+(?!\s))*?(?=\s*\{)/,inside:{variable:/@+[\w-]+/}},property:/(?:@\{[\w-]+\}|[\w-])+(?:\+_?)?(?=\s*:)/,operator:/[+\-*\/]/}),a.languages.insertBefore("less","property",{variable:[{pattern:/@[\w-]+\s*:/,inside:{punctuation:/:/}},/@@?[\w-]+/],"mixin-usage":{pattern:/([{;]\s*)[.#](?!\d)[\w-].*?(?=[(;])/,lookbehind:!0,alias:"function"}}),a.languages.makefile={comment:{pattern:/(^|[^\\])#(?:\\(?:\r\n|[\s\S])|[^\\\r\n])*/,lookbehind:!0},string:{pattern:/(["'])(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,greedy:!0},"builtin-target":{pattern:/\.[A-Z][^:#=\s]+(?=\s*:(?!=))/,alias:"builtin"},target:{pattern:/^(?:[^:=\s]|[ \t]+(?![\s:]))+(?=\s*:(?!=))/m,alias:"symbol",inside:{variable:/\$+(?:(?!\$)[^(){}:#=\s]+|(?=[({]))/}},variable:/\$+(?:(?!\$)[^(){}:#=\s]+|\([@*%<^+?][DF]\)|(?=[({]))/,keyword:/-include\b|\b(?:define|else|endef|endif|export|ifn?def|ifn?eq|include|override|private|sinclude|undefine|unexport|vpath)\b/,function:{pattern:/(\()(?:abspath|addsuffix|and|basename|call|dir|error|eval|file|filter(?:-out)?|findstring|firstword|flavor|foreach|guile|if|info|join|lastword|load|notdir|or|origin|patsubst|realpath|shell|sort|strip|subst|suffix|value|warning|wildcard|word(?:list|s)?)(?=[ \t])/,lookbehind:!0},operator:/(?:::|[?:+!])?=|[|@]/,punctuation:/[:;(){}]/},a.languages.objectivec=a.languages.extend("c",{string:{pattern:/@?"(?:\\(?:\r\n|[\s\S])|[^"\\\r\n])*"/,greedy:!0},keyword:/\b(?:asm|auto|break|case|char|const|continue|default|do|double|else|enum|extern|float|for|goto|if|in|inline|int|long|register|return|self|short|signed|sizeof|static|struct|super|switch|typedef|typeof|union|unsigned|void|volatile|while)\b|(?:@interface|@end|@implementation|@protocol|@class|@public|@protected|@private|@property|@try|@catch|@finally|@throw|@synthesize|@dynamic|@selector)\b/,operator:/-[->]?|\+\+?|!=?|<<?=?|>>?=?|==?|&&?|\|\|?|[~^%?*\/@]/}),delete a.languages.objectivec["class-name"],a.languages.objc=a.languages.objectivec,a.languages.ocaml={comment:{pattern:/\(\*[\s\S]*?\*\)/,greedy:!0},char:{pattern:/'(?:[^\\\r\n']|\\(?:.|[ox]?[0-9a-f]{1,3}))'/i,greedy:!0},string:[{pattern:/"(?:\\(?:[\s\S]|\r\n)|[^\\\r\n"])*"/,greedy:!0},{pattern:/\{([a-z_]*)\|[\s\S]*?\|\1\}/,greedy:!0}],number:[/\b(?:0b[01][01_]*|0o[0-7][0-7_]*)\b/i,/\b0x[a-f0-9][a-f0-9_]*(?:\.[a-f0-9_]*)?(?:p[+-]?\d[\d_]*)?(?!\w)/i,/\b\d[\d_]*(?:\.[\d_]*)?(?:e[+-]?\d[\d_]*)?(?!\w)/i],directive:{pattern:/\B#\w+/,alias:"property"},label:{pattern:/\B~\w+/,alias:"property"},"type-variable":{pattern:/\B'\w+/,alias:"function"},variant:{pattern:/`\w+/,alias:"symbol"},keyword:/\b(?:as|assert|begin|class|constraint|do|done|downto|else|end|exception|external|for|fun|function|functor|if|in|include|inherit|initializer|lazy|let|match|method|module|mutable|new|nonrec|object|of|open|private|rec|sig|struct|then|to|try|type|val|value|virtual|when|where|while|with)\b/,boolean:/\b(?:false|true)\b/,"operator-like-punctuation":{pattern:/\[[<>|]|[>|]\]|\{<|>\}/,alias:"punctuation"},operator:/\.[.~]|:[=>]|[=<>@^|&+\-*\/$%!?~][!$%&*+\-.\/:<=>?@^|~]*|\b(?:and|asr|land|lor|lsl|lsr|lxor|mod|or)\b/,punctuation:/;;|::|[(){}\[\].,:;#]|\b_\b/},a.languages.python={comment:{pattern:/(^|[^\\])#.*/,lookbehind:!0,greedy:!0},"string-interpolation":{pattern:/(?:f|fr|rf)(?:("""|''')[\s\S]*?\1|("|')(?:\\.|(?!\2)[^\\\r\n])*\2)/i,greedy:!0,inside:{interpolation:{pattern:/((?:^|[^{])(?:\{\{)*)\{(?!\{)(?:[^{}]|\{(?!\{)(?:[^{}]|\{(?!\{)(?:[^{}])+\})+\})+\}/,lookbehind:!0,inside:{"format-spec":{pattern:/(:)[^:(){}]+(?=\}$)/,lookbehind:!0},"conversion-option":{pattern:/![sra](?=[:}]$)/,alias:"punctuation"},rest:null}},string:/[\s\S]+/}},"triple-quoted-string":{pattern:/(?:[rub]|br|rb)?("""|''')[\s\S]*?\1/i,greedy:!0,alias:"string"},string:{pattern:/(?:[rub]|br|rb)?("|')(?:\\.|(?!\1)[^\\\r\n])*\1/i,greedy:!0},function:{pattern:/((?:^|\s)def[ \t]+)[a-zA-Z_]\w*(?=\s*\()/g,lookbehind:!0},"class-name":{pattern:/(\bclass\s+)\w+/i,lookbehind:!0},decorator:{pattern:/(^[\t ]*)@\w+(?:\.\w+)*/m,lookbehind:!0,alias:["annotation","punctuation"],inside:{punctuation:/\./}},keyword:/\b(?:_(?=\s*:)|and|as|assert|async|await|break|case|class|continue|def|del|elif|else|except|exec|finally|for|from|global|if|import|in|is|lambda|match|nonlocal|not|or|pass|print|raise|return|try|while|with|yield)\b/,builtin:/\b(?:__import__|abs|all|any|apply|ascii|basestring|bin|bool|buffer|bytearray|bytes|callable|chr|classmethod|cmp|coerce|compile|complex|delattr|dict|dir|divmod|enumerate|eval|execfile|file|filter|float|format|frozenset|getattr|globals|hasattr|hash|help|hex|id|input|int|intern|isinstance|issubclass|iter|len|list|locals|long|map|max|memoryview|min|next|object|oct|open|ord|pow|property|range|raw_input|reduce|reload|repr|reversed|round|set|setattr|slice|sorted|staticmethod|str|sum|super|tuple|type|unichr|unicode|vars|xrange|zip)\b/,boolean:/\b(?:False|None|True)\b/,number:/\b0(?:b(?:_?[01])+|o(?:_?[0-7])+|x(?:_?[a-f0-9])+)\b|(?:\b\d+(?:_\d+)*(?:\.(?:\d+(?:_\d+)*)?)?|\B\.\d+(?:_\d+)*)(?:e[+-]?\d+(?:_\d+)*)?j?(?!\w)/i,operator:/[-+%=]=?|!=|:=|\*\*?=?|\/\/?=?|<[<=>]?|>[=>]?|[&|^~]/,punctuation:/[{}[\];(),.:]/},a.languages.python["string-interpolation"].inside.interpolation.inside.rest=a.languages.python,a.languages.py=a.languages.python,a.languages.reason=a.languages.extend("clike",{string:{pattern:/"(?:\\(?:\r\n|[\s\S])|[^\\\r\n"])*"/,greedy:!0},"class-name":/\b[A-Z]\w*/,keyword:/\b(?:and|as|assert|begin|class|constraint|do|done|downto|else|end|exception|external|for|fun|function|functor|if|in|include|inherit|initializer|lazy|let|method|module|mutable|new|nonrec|object|of|open|or|private|rec|sig|struct|switch|then|to|try|type|val|virtual|when|while|with)\b/,operator:/\.{3}|:[:=]|\|>|->|=(?:==?|>)?|<=?|>=?|[|^?'#!~`]|[+\-*\/]\.?|\b(?:asr|land|lor|lsl|lsr|lxor|mod)\b/}),a.languages.insertBefore("reason","class-name",{char:{pattern:/'(?:\\x[\da-f]{2}|\\o[0-3][0-7][0-7]|\\\d{3}|\\.|[^'\\\r\n])'/,greedy:!0},constructor:/\b[A-Z]\w*\b(?!\s*\.)/,label:{pattern:/\b[a-z]\w*(?=::)/,alias:"symbol"}}),delete a.languages.reason.function,function(e){e.languages.sass=e.languages.extend("css",{comment:{pattern:/^([ \t]*)\/[\/*].*(?:(?:\r?\n|\r)\1[ \t].+)*/m,lookbehind:!0,greedy:!0}}),e.languages.insertBefore("sass","atrule",{"atrule-line":{pattern:/^(?:[ \t]*)[@+=].+/m,greedy:!0,inside:{atrule:/(?:@[\w-]+|[+=])/}}}),delete e.languages.sass.atrule;var t=/\$[-\w]+|#\{\$[-\w]+\}/,n=[/[+*\/%]|[=!]=|<=?|>=?|\b(?:and|not|or)\b/,{pattern:/(\s)-(?=\s)/,lookbehind:!0}];e.languages.insertBefore("sass","property",{"variable-line":{pattern:/^[ \t]*\$.+/m,greedy:!0,inside:{punctuation:/:/,variable:t,operator:n}},"property-line":{pattern:/^[ \t]*(?:[^:\s]+ *:.*|:[^:\s].*)/m,greedy:!0,inside:{property:[/[^:\s]+(?=\s*:)/,{pattern:/(:)[^:\s]+/,lookbehind:!0}],punctuation:/:/,variable:t,operator:n,important:e.languages.sass.important}}}),delete e.languages.sass.property,delete e.languages.sass.important,e.languages.insertBefore("sass","punctuation",{selector:{pattern:/^([ \t]*)\S(?:,[^,\r\n]+|[^,\r\n]*)(?:,[^,\r\n]+)*(?:,(?:\r?\n|\r)\1[ \t]+\S(?:,[^,\r\n]+|[^,\r\n]*)(?:,[^,\r\n]+)*)*/m,lookbehind:!0,greedy:!0}})}(a),a.languages.scss=a.languages.extend("css",{comment:{pattern:/(^|[^\\])(?:\/\*[\s\S]*?\*\/|\/\/.*)/,lookbehind:!0},atrule:{pattern:/@[\w-](?:\([^()]+\)|[^()\s]|\s+(?!\s))*?(?=\s+[{;])/,inside:{rule:/@[\w-]+/}},url:/(?:[-a-z]+-)?url(?=\()/i,selector:{pattern:/(?=\S)[^@;{}()]?(?:[^@;{}()\s]|\s+(?!\s)|#\{\$[-\w]+\})+(?=\s*\{(?:\}|\s|[^}][^:{}]*[:{][^}]))/,inside:{parent:{pattern:/&/,alias:"important"},placeholder:/%[-\w]+/,variable:/\$[-\w]+|#\{\$[-\w]+\}/}},property:{pattern:/(?:[-\w]|\$[-\w]|#\{\$[-\w]+\})+(?=\s*:)/,inside:{variable:/\$[-\w]+|#\{\$[-\w]+\}/}}}),a.languages.insertBefore("scss","atrule",{keyword:[/@(?:content|debug|each|else(?: if)?|extend|for|forward|function|if|import|include|mixin|return|use|warn|while)\b/i,{pattern:/( )(?:from|through)(?= )/,lookbehind:!0}]}),a.languages.insertBefore("scss","important",{variable:/\$[-\w]+|#\{\$[-\w]+\}/}),a.languages.insertBefore("scss","function",{"module-modifier":{pattern:/\b(?:as|hide|show|with)\b/i,alias:"keyword"},placeholder:{pattern:/%[-\w]+/,alias:"selector"},statement:{pattern:/\B!(?:default|optional)\b/i,alias:"keyword"},boolean:/\b(?:false|true)\b/,null:{pattern:/\bnull\b/,alias:"keyword"},operator:{pattern:/(\s)(?:[-+*\/%]|[=!]=|<=?|>=?|and|not|or)(?=\s)/,lookbehind:!0}}),a.languages.scss.atrule.inside.rest=a.languages.scss,function(e){var t={pattern:/(\b\d+)(?:%|[a-z]+)/,lookbehind:!0},n={pattern:/(^|[^\w.-])-?(?:\d+(?:\.\d+)?|\.\d+)/,lookbehind:!0},r={comment:{pattern:/(^|[^\\])(?:\/\*[\s\S]*?\*\/|\/\/.*)/,lookbehind:!0},url:{pattern:/\burl\((["']?).*?\1\)/i,greedy:!0},string:{pattern:/("|')(?:(?!\1)[^\\\r\n]|\\(?:\r\n|[\s\S]))*\1/,greedy:!0},interpolation:null,func:null,important:/\B!(?:important|optional)\b/i,keyword:{pattern:/(^|\s+)(?:(?:else|for|if|return|unless)(?=\s|$)|@[\w-]+)/,lookbehind:!0},hexcode:/#[\da-f]{3,6}/i,color:[/\b(?:AliceBlue|AntiqueWhite|Aqua|Aquamarine|Azure|Beige|Bisque|Black|BlanchedAlmond|Blue|BlueViolet|Brown|BurlyWood|CadetBlue|Chartreuse|Chocolate|Coral|CornflowerBlue|Cornsilk|Crimson|Cyan|DarkBlue|DarkCyan|DarkGoldenRod|DarkGr[ae]y|DarkGreen|DarkKhaki|DarkMagenta|DarkOliveGreen|DarkOrange|DarkOrchid|DarkRed|DarkSalmon|DarkSeaGreen|DarkSlateBlue|DarkSlateGr[ae]y|DarkTurquoise|DarkViolet|DeepPink|DeepSkyBlue|DimGr[ae]y|DodgerBlue|FireBrick|FloralWhite|ForestGreen|Fuchsia|Gainsboro|GhostWhite|Gold|GoldenRod|Gr[ae]y|Green|GreenYellow|HoneyDew|HotPink|IndianRed|Indigo|Ivory|Khaki|Lavender|LavenderBlush|LawnGreen|LemonChiffon|LightBlue|LightCoral|LightCyan|LightGoldenRodYellow|LightGr[ae]y|LightGreen|LightPink|LightSalmon|LightSeaGreen|LightSkyBlue|LightSlateGr[ae]y|LightSteelBlue|LightYellow|Lime|LimeGreen|Linen|Magenta|Maroon|MediumAquaMarine|MediumBlue|MediumOrchid|MediumPurple|MediumSeaGreen|MediumSlateBlue|MediumSpringGreen|MediumTurquoise|MediumVioletRed|MidnightBlue|MintCream|MistyRose|Moccasin|NavajoWhite|Navy|OldLace|Olive|OliveDrab|Orange|OrangeRed|Orchid|PaleGoldenRod|PaleGreen|PaleTurquoise|PaleVioletRed|PapayaWhip|PeachPuff|Peru|Pink|Plum|PowderBlue|Purple|Red|RosyBrown|RoyalBlue|SaddleBrown|Salmon|SandyBrown|SeaGreen|SeaShell|Sienna|Silver|SkyBlue|SlateBlue|SlateGr[ae]y|Snow|SpringGreen|SteelBlue|Tan|Teal|Thistle|Tomato|Transparent|Turquoise|Violet|Wheat|White|WhiteSmoke|Yellow|YellowGreen)\b/i,{pattern:/\b(?:hsl|rgb)\(\s*\d{1,3}\s*,\s*\d{1,3}%?\s*,\s*\d{1,3}%?\s*\)\B|\b(?:hsl|rgb)a\(\s*\d{1,3}\s*,\s*\d{1,3}%?\s*,\s*\d{1,3}%?\s*,\s*(?:0|0?\.\d+|1)\s*\)\B/i,inside:{unit:t,number:n,function:/[\w-]+(?=\()/,punctuation:/[(),]/}}],entity:/\\[\da-f]{1,8}/i,unit:t,boolean:/\b(?:false|true)\b/,operator:[/~|[+!\/%<>?=]=?|[-:]=|\*[*=]?|\.{2,3}|&&|\|\||\B-\B|\b(?:and|in|is(?: a| defined| not|nt)?|not|or)\b/],number:n,punctuation:/[{}()\[\];:,]/};r.interpolation={pattern:/\{[^\r\n}:]+\}/,alias:"variable",inside:{delimiter:{pattern:/^\{|\}$/,alias:"punctuation"},rest:r}},r.func={pattern:/[\w-]+\([^)]*\).*/,inside:{function:/^[^(]+/,rest:r}},e.languages.stylus={"atrule-declaration":{pattern:/(^[ \t]*)@.+/m,lookbehind:!0,inside:{atrule:/^@[\w-]+/,rest:r}},"variable-declaration":{pattern:/(^[ \t]*)[\w$-]+\s*.?=[ \t]*(?:\{[^{}]*\}|\S.*|$)/m,lookbehind:!0,inside:{variable:/^\S+/,rest:r}},statement:{pattern:/(^[ \t]*)(?:else|for|if|return|unless)[ \t].+/m,lookbehind:!0,inside:{keyword:/^\S+/,rest:r}},"property-declaration":{pattern:/((?:^|\{)([ \t]*))(?:[\w-]|\{[^}\r\n]+\})+(?:\s*:\s*|[ \t]+)(?!\s)[^{\r\n]*(?:;|[^{\r\n,]$(?!(?:\r?\n|\r)(?:\{|\2[ \t])))/m,lookbehind:!0,inside:{property:{pattern:/^[^\s:]+/,inside:{interpolation:r.interpolation}},rest:r}},selector:{pattern:/(^[ \t]*)(?:(?=\S)(?:[^{}\r\n:()]|::?[\w-]+(?:\([^)\r\n]*\)|(?![\w-]))|\{[^}\r\n]+\})+)(?:(?:\r?\n|\r)(?:\1(?:(?=\S)(?:[^{}\r\n:()]|::?[\w-]+(?:\([^)\r\n]*\)|(?![\w-]))|\{[^}\r\n]+\})+)))*(?:,$|\{|(?=(?:\r?\n|\r)(?:\{|\1[ \t])))/m,lookbehind:!0,inside:{interpolation:r.interpolation,comment:r.comment,punctuation:/[{},]/}},func:r.func,string:r.string,comment:{pattern:/(^|[^\\])(?:\/\*[\s\S]*?\*\/|\/\/.*)/,lookbehind:!0,greedy:!0},interpolation:r.interpolation,punctuation:/[{}()\[\];:.]/}}(a),function(e){var t=e.util.clone(e.languages.typescript);e.languages.tsx=e.languages.extend("jsx",t),delete e.languages.tsx.parameter,delete e.languages.tsx["literal-property"];var n=e.languages.tsx.tag;n.pattern=RegExp(/(^|[^\w$]|(?=<\/))/.source+"(?:"+n.pattern.source+")",n.pattern.flags),n.lookbehind=!0}(a),a.languages.wasm={comment:[/\(;[\s\S]*?;\)/,{pattern:/;;.*/,greedy:!0}],string:{pattern:/"(?:\\[\s\S]|[^"\\])*"/,greedy:!0},keyword:[{pattern:/\b(?:align|offset)=/,inside:{operator:/=/}},{pattern:/\b(?:(?:f32|f64|i32|i64)(?:\.(?:abs|add|and|ceil|clz|const|convert_[su]\/i(?:32|64)|copysign|ctz|demote\/f64|div(?:_[su])?|eqz?|extend_[su]\/i32|floor|ge(?:_[su])?|gt(?:_[su])?|le(?:_[su])?|load(?:(?:8|16|32)_[su])?|lt(?:_[su])?|max|min|mul|neg?|nearest|or|popcnt|promote\/f32|reinterpret\/[fi](?:32|64)|rem_[su]|rot[lr]|shl|shr_[su]|sqrt|store(?:8|16|32)?|sub|trunc(?:_[su]\/f(?:32|64))?|wrap\/i64|xor))?|memory\.(?:grow|size))\b/,inside:{punctuation:/\./}},/\b(?:anyfunc|block|br(?:_if|_table)?|call(?:_indirect)?|data|drop|elem|else|end|export|func|get_(?:global|local)|global|if|import|local|loop|memory|module|mut|nop|offset|param|result|return|select|set_(?:global|local)|start|table|tee_local|then|type|unreachable)\b/],variable:/\$[\w!#$%&'*+\-./:<=>?@\\^`|~]+/,number:/[+-]?\b(?:\d(?:_?\d)*(?:\.\d(?:_?\d)*)?(?:[eE][+-]?\d(?:_?\d)*)?|0x[\da-fA-F](?:_?[\da-fA-F])*(?:\.[\da-fA-F](?:_?[\da-fA-D])*)?(?:[pP][+-]?\d(?:_?\d)*)?)\b|\binf\b|\bnan(?::0x[\da-fA-F](?:_?[\da-fA-D])*)?\b/,punctuation:/[()]/};const o=a},66841:()=>{Prism.languages.lua={comment:/^#!.+|--(?:\[(=*)\[[\s\S]*?\]\1\]|.*)/m,string:{pattern:/(["'])(?:(?!\1)[^\\\r\n]|\\z(?:\r\n|\s)|\\(?:\r\n|[^z]))*\1|\[(=*)\[[\s\S]*?\]\2\]/,greedy:!0},number:/\b0x[a-f\d]+(?:\.[a-f\d]*)?(?:p[+-]?\d+)?\b|\b\d+(?:\.\B|(?:\.\d*)?(?:e[+-]?\d+)?\b)|\B\.\d+(?:e[+-]?\d+)?\b/i,keyword:/\b(?:and|break|do|else|elseif|end|false|for|function|goto|if|in|local|nil|not|or|repeat|return|then|true|until|while)\b/,function:/(?!\d)\w+(?=\s*(?:[({]))/,operator:[/[-+*%^&|#]|\/\/?|<[<=]?|>[>=]?|[=~]=?/,{pattern:/(^|[^.])\.\.(?!\.)/,lookbehind:!0}],punctuation:/[\[\](){},;]|\.+|:+/}},33003:(e,t,n)=>{var r={"./prism-lua":66841};function a(e){var t=o(e);return n(t)}function o(e){if(!n.o(r,e)){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return r[e]}a.keys=function(){return Object.keys(r)},a.resolve=o,e.exports=a,a.id=33003},92703:(e,t,n)=>{"use strict";var r=n(50414);function a(){}function o(){}o.resetWarningCache=a,e.exports=function(){function e(e,t,n,a,o,i){if(i!==r){var l=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw l.name="Invariant Violation",l}}function t(){return e}e.isRequired=e;var n={array:e,bigint:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:o,resetWarningCache:a};return n.PropTypes=n,n}},45697:(e,t,n)=>{e.exports=n(92703)()},50414:e=>{"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},64448:(e,t,n)=>{"use strict";var r=n(67294),a=n(27418),o=n(63840);function i(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n<arguments.length;n++)t+="&args[]="+encodeURIComponent(arguments[n]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}if(!r)throw Error(i(227));var l=new Set,s={};function u(e,t){c(e,t),c(e+"Capture",t)}function c(e,t){for(s[e]=t,e=0;e<t.length;e++)l.add(t[e])}var d=!("undefined"==typeof window||void 0===window.document||void 0===window.document.createElement),f=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,p=Object.prototype.hasOwnProperty,m={},h={};function g(e,t,n,r,a,o,i){this.acceptsBooleans=2===t||3===t||4===t,this.attributeName=r,this.attributeNamespace=a,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=o,this.removeEmptyString=i}var b={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach((function(e){b[e]=new g(e,0,!1,e,null,!1,!1)})),[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach((function(e){var t=e[0];b[t]=new g(t,1,!1,e[1],null,!1,!1)})),["contentEditable","draggable","spellCheck","value"].forEach((function(e){b[e]=new g(e,2,!1,e.toLowerCase(),null,!1,!1)})),["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach((function(e){b[e]=new g(e,2,!1,e,null,!1,!1)})),"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach((function(e){b[e]=new g(e,3,!1,e.toLowerCase(),null,!1,!1)})),["checked","multiple","muted","selected"].forEach((function(e){b[e]=new g(e,3,!0,e,null,!1,!1)})),["capture","download"].forEach((function(e){b[e]=new g(e,4,!1,e,null,!1,!1)})),["cols","rows","size","span"].forEach((function(e){b[e]=new g(e,6,!1,e,null,!1,!1)})),["rowSpan","start"].forEach((function(e){b[e]=new g(e,5,!1,e.toLowerCase(),null,!1,!1)}));var v=/[\-:]([a-z])/g;function y(e){return e[1].toUpperCase()}function w(e,t,n,r){var a=b.hasOwnProperty(t)?b[t]:null;(null!==a?0===a.type:!r&&(2<t.length&&("o"===t[0]||"O"===t[0])&&("n"===t[1]||"N"===t[1])))||(function(e,t,n,r){if(null==t||function(e,t,n,r){if(null!==n&&0===n.type)return!1;switch(typeof t){case"function":case"symbol":return!0;case"boolean":return!r&&(null!==n?!n.acceptsBooleans:"data-"!==(e=e.toLowerCase().slice(0,5))&&"aria-"!==e);default:return!1}}(e,t,n,r))return!0;if(r)return!1;if(null!==n)switch(n.type){case 3:return!t;case 4:return!1===t;case 5:return isNaN(t);case 6:return isNaN(t)||1>t}return!1}(t,n,a,r)&&(n=null),r||null===a?function(e){return!!p.call(h,e)||!p.call(m,e)&&(f.test(e)?h[e]=!0:(m[e]=!0,!1))}(t)&&(null===n?e.removeAttribute(t):e.setAttribute(t,""+n)):a.mustUseProperty?e[a.propertyName]=null===n?3!==a.type&&"":n:(t=a.attributeName,r=a.attributeNamespace,null===n?e.removeAttribute(t):(n=3===(a=a.type)||4===a&&!0===n?"":""+n,r?e.setAttributeNS(r,t,n):e.setAttribute(t,n))))}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach((function(e){var t=e.replace(v,y);b[t]=new g(t,1,!1,e,null,!1,!1)})),"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach((function(e){var t=e.replace(v,y);b[t]=new g(t,1,!1,e,"http://www.w3.org/1999/xlink",!1,!1)})),["xml:base","xml:lang","xml:space"].forEach((function(e){var t=e.replace(v,y);b[t]=new g(t,1,!1,e,"http://www.w3.org/XML/1998/namespace",!1,!1)})),["tabIndex","crossOrigin"].forEach((function(e){b[e]=new g(e,1,!1,e.toLowerCase(),null,!1,!1)})),b.xlinkHref=new g("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1),["src","href","action","formAction"].forEach((function(e){b[e]=new g(e,1,!1,e.toLowerCase(),null,!0,!0)}));var E=r.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,k=60103,S=60106,x=60107,C=60108,_=60114,T=60109,A=60110,N=60112,L=60113,O=60120,P=60115,R=60116,I=60121,D=60128,M=60129,F=60130,B=60131;if("function"==typeof Symbol&&Symbol.for){var U=Symbol.for;k=U("react.element"),S=U("react.portal"),x=U("react.fragment"),C=U("react.strict_mode"),_=U("react.profiler"),T=U("react.provider"),A=U("react.context"),N=U("react.forward_ref"),L=U("react.suspense"),O=U("react.suspense_list"),P=U("react.memo"),R=U("react.lazy"),I=U("react.block"),U("react.scope"),D=U("react.opaque.id"),M=U("react.debug_trace_mode"),F=U("react.offscreen"),B=U("react.legacy_hidden")}var $,j="function"==typeof Symbol&&Symbol.iterator;function z(e){return null===e||"object"!=typeof e?null:"function"==typeof(e=j&&e[j]||e["@@iterator"])?e:null}function Z(e){if(void 0===$)try{throw Error()}catch(n){var t=n.stack.trim().match(/\n( *(at )?)/);$=t&&t[1]||""}return"\n"+$+e}var H=!1;function Y(e,t){if(!e||H)return"";H=!0;var n=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{if(t)if(t=function(){throw Error()},Object.defineProperty(t.prototype,"props",{set:function(){throw Error()}}),"object"==typeof Reflect&&Reflect.construct){try{Reflect.construct(t,[])}catch(s){var r=s}Reflect.construct(e,[],t)}else{try{t.call()}catch(s){r=s}e.call(t.prototype)}else{try{throw Error()}catch(s){r=s}e()}}catch(s){if(s&&r&&"string"==typeof s.stack){for(var a=s.stack.split("\n"),o=r.stack.split("\n"),i=a.length-1,l=o.length-1;1<=i&&0<=l&&a[i]!==o[l];)l--;for(;1<=i&&0<=l;i--,l--)if(a[i]!==o[l]){if(1!==i||1!==l)do{if(i--,0>--l||a[i]!==o[l])return"\n"+a[i].replace(" at new "," at ")}while(1<=i&&0<=l);break}}}finally{H=!1,Error.prepareStackTrace=n}return(e=e?e.displayName||e.name:"")?Z(e):""}function V(e){switch(e.tag){case 5:return Z(e.type);case 16:return Z("Lazy");case 13:return Z("Suspense");case 19:return Z("SuspenseList");case 0:case 2:case 15:return e=Y(e.type,!1);case 11:return e=Y(e.type.render,!1);case 22:return e=Y(e.type._render,!1);case 1:return e=Y(e.type,!0);default:return""}}function G(e){if(null==e)return null;if("function"==typeof e)return e.displayName||e.name||null;if("string"==typeof e)return e;switch(e){case x:return"Fragment";case S:return"Portal";case _:return"Profiler";case C:return"StrictMode";case L:return"Suspense";case O:return"SuspenseList"}if("object"==typeof e)switch(e.$$typeof){case A:return(e.displayName||"Context")+".Consumer";case T:return(e._context.displayName||"Context")+".Provider";case N:var t=e.render;return t=t.displayName||t.name||"",e.displayName||(""!==t?"ForwardRef("+t+")":"ForwardRef");case P:return G(e.type);case I:return G(e._render);case R:t=e._payload,e=e._init;try{return G(e(t))}catch(n){}}return null}function W(e){switch(typeof e){case"boolean":case"number":case"object":case"string":case"undefined":return e;default:return""}}function q(e){var t=e.type;return(e=e.nodeName)&&"input"===e.toLowerCase()&&("checkbox"===t||"radio"===t)}function K(e){e._valueTracker||(e._valueTracker=function(e){var t=q(e)?"checked":"value",n=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),r=""+e[t];if(!e.hasOwnProperty(t)&&void 0!==n&&"function"==typeof n.get&&"function"==typeof n.set){var a=n.get,o=n.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return a.call(this)},set:function(e){r=""+e,o.call(this,e)}}),Object.defineProperty(e,t,{enumerable:n.enumerable}),{getValue:function(){return r},setValue:function(e){r=""+e},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}(e))}function Q(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),r="";return e&&(r=q(e)?e.checked?"true":"false":e.value),(e=r)!==n&&(t.setValue(e),!0)}function X(e){if(void 0===(e=e||("undefined"!=typeof document?document:void 0)))return null;try{return e.activeElement||e.body}catch(t){return e.body}}function J(e,t){var n=t.checked;return a({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:null!=n?n:e._wrapperState.initialChecked})}function ee(e,t){var n=null==t.defaultValue?"":t.defaultValue,r=null!=t.checked?t.checked:t.defaultChecked;n=W(null!=t.value?t.value:n),e._wrapperState={initialChecked:r,initialValue:n,controlled:"checkbox"===t.type||"radio"===t.type?null!=t.checked:null!=t.value}}function te(e,t){null!=(t=t.checked)&&w(e,"checked",t,!1)}function ne(e,t){te(e,t);var n=W(t.value),r=t.type;if(null!=n)"number"===r?(0===n&&""===e.value||e.value!=n)&&(e.value=""+n):e.value!==""+n&&(e.value=""+n);else if("submit"===r||"reset"===r)return void e.removeAttribute("value");t.hasOwnProperty("value")?ae(e,t.type,n):t.hasOwnProperty("defaultValue")&&ae(e,t.type,W(t.defaultValue)),null==t.checked&&null!=t.defaultChecked&&(e.defaultChecked=!!t.defaultChecked)}function re(e,t,n){if(t.hasOwnProperty("value")||t.hasOwnProperty("defaultValue")){var r=t.type;if(!("submit"!==r&&"reset"!==r||void 0!==t.value&&null!==t.value))return;t=""+e._wrapperState.initialValue,n||t===e.value||(e.value=t),e.defaultValue=t}""!==(n=e.name)&&(e.name=""),e.defaultChecked=!!e._wrapperState.initialChecked,""!==n&&(e.name=n)}function ae(e,t,n){"number"===t&&X(e.ownerDocument)===e||(null==n?e.defaultValue=""+e._wrapperState.initialValue:e.defaultValue!==""+n&&(e.defaultValue=""+n))}function oe(e,t){return e=a({children:void 0},t),(t=function(e){var t="";return r.Children.forEach(e,(function(e){null!=e&&(t+=e)})),t}(t.children))&&(e.children=t),e}function ie(e,t,n,r){if(e=e.options,t){t={};for(var a=0;a<n.length;a++)t["$"+n[a]]=!0;for(n=0;n<e.length;n++)a=t.hasOwnProperty("$"+e[n].value),e[n].selected!==a&&(e[n].selected=a),a&&r&&(e[n].defaultSelected=!0)}else{for(n=""+W(n),t=null,a=0;a<e.length;a++){if(e[a].value===n)return e[a].selected=!0,void(r&&(e[a].defaultSelected=!0));null!==t||e[a].disabled||(t=e[a])}null!==t&&(t.selected=!0)}}function le(e,t){if(null!=t.dangerouslySetInnerHTML)throw Error(i(91));return a({},t,{value:void 0,defaultValue:void 0,children:""+e._wrapperState.initialValue})}function se(e,t){var n=t.value;if(null==n){if(n=t.children,t=t.defaultValue,null!=n){if(null!=t)throw Error(i(92));if(Array.isArray(n)){if(!(1>=n.length))throw Error(i(93));n=n[0]}t=n}null==t&&(t=""),n=t}e._wrapperState={initialValue:W(n)}}function ue(e,t){var n=W(t.value),r=W(t.defaultValue);null!=n&&((n=""+n)!==e.value&&(e.value=n),null==t.defaultValue&&e.defaultValue!==n&&(e.defaultValue=n)),null!=r&&(e.defaultValue=""+r)}function ce(e){var t=e.textContent;t===e._wrapperState.initialValue&&""!==t&&null!==t&&(e.value=t)}var de={html:"http://www.w3.org/1999/xhtml",mathml:"http://www.w3.org/1998/Math/MathML",svg:"http://www.w3.org/2000/svg"};function fe(e){switch(e){case"svg":return"http://www.w3.org/2000/svg";case"math":return"http://www.w3.org/1998/Math/MathML";default:return"http://www.w3.org/1999/xhtml"}}function pe(e,t){return null==e||"http://www.w3.org/1999/xhtml"===e?fe(t):"http://www.w3.org/2000/svg"===e&&"foreignObject"===t?"http://www.w3.org/1999/xhtml":e}var me,he,ge=(he=function(e,t){if(e.namespaceURI!==de.svg||"innerHTML"in e)e.innerHTML=t;else{for((me=me||document.createElement("div")).innerHTML="<svg>"+t.valueOf().toString()+"</svg>",t=me.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}},"undefined"!=typeof MSApp&&MSApp.execUnsafeLocalFunction?function(e,t,n,r){MSApp.execUnsafeLocalFunction((function(){return he(e,t)}))}:he);function be(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&3===n.nodeType)return void(n.nodeValue=t)}e.textContent=t}var ve={animationIterationCount:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},ye=["Webkit","ms","Moz","O"];function we(e,t,n){return null==t||"boolean"==typeof t||""===t?"":n||"number"!=typeof t||0===t||ve.hasOwnProperty(e)&&ve[e]?(""+t).trim():t+"px"}function Ee(e,t){for(var n in e=e.style,t)if(t.hasOwnProperty(n)){var r=0===n.indexOf("--"),a=we(n,t[n],r);"float"===n&&(n="cssFloat"),r?e.setProperty(n,a):e[n]=a}}Object.keys(ve).forEach((function(e){ye.forEach((function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),ve[t]=ve[e]}))}));var ke=a({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function Se(e,t){if(t){if(ke[e]&&(null!=t.children||null!=t.dangerouslySetInnerHTML))throw Error(i(137,e));if(null!=t.dangerouslySetInnerHTML){if(null!=t.children)throw Error(i(60));if("object"!=typeof t.dangerouslySetInnerHTML||!("__html"in t.dangerouslySetInnerHTML))throw Error(i(61))}if(null!=t.style&&"object"!=typeof t.style)throw Error(i(62))}}function xe(e,t){if(-1===e.indexOf("-"))return"string"==typeof t.is;switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}function Ce(e){return(e=e.target||e.srcElement||window).correspondingUseElement&&(e=e.correspondingUseElement),3===e.nodeType?e.parentNode:e}var _e=null,Te=null,Ae=null;function Ne(e){if(e=na(e)){if("function"!=typeof _e)throw Error(i(280));var t=e.stateNode;t&&(t=aa(t),_e(e.stateNode,e.type,t))}}function Le(e){Te?Ae?Ae.push(e):Ae=[e]:Te=e}function Oe(){if(Te){var e=Te,t=Ae;if(Ae=Te=null,Ne(e),t)for(e=0;e<t.length;e++)Ne(t[e])}}function Pe(e,t){return e(t)}function Re(e,t,n,r,a){return e(t,n,r,a)}function Ie(){}var De=Pe,Me=!1,Fe=!1;function Be(){null===Te&&null===Ae||(Ie(),Oe())}function Ue(e,t){var n=e.stateNode;if(null===n)return null;var r=aa(n);if(null===r)return null;n=r[t];e:switch(t){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":case"onMouseEnter":(r=!r.disabled)||(r=!("button"===(e=e.type)||"input"===e||"select"===e||"textarea"===e)),e=!r;break e;default:e=!1}if(e)return null;if(n&&"function"!=typeof n)throw Error(i(231,t,typeof n));return n}var $e=!1;if(d)try{var je={};Object.defineProperty(je,"passive",{get:function(){$e=!0}}),window.addEventListener("test",je,je),window.removeEventListener("test",je,je)}catch(he){$e=!1}function ze(e,t,n,r,a,o,i,l,s){var u=Array.prototype.slice.call(arguments,3);try{t.apply(n,u)}catch(c){this.onError(c)}}var Ze=!1,He=null,Ye=!1,Ve=null,Ge={onError:function(e){Ze=!0,He=e}};function We(e,t,n,r,a,o,i,l,s){Ze=!1,He=null,ze.apply(Ge,arguments)}function qe(e){var t=e,n=e;if(e.alternate)for(;t.return;)t=t.return;else{e=t;do{0!=(1026&(t=e).flags)&&(n=t.return),e=t.return}while(e)}return 3===t.tag?n:null}function Ke(e){if(13===e.tag){var t=e.memoizedState;if(null===t&&(null!==(e=e.alternate)&&(t=e.memoizedState)),null!==t)return t.dehydrated}return null}function Qe(e){if(qe(e)!==e)throw Error(i(188))}function Xe(e){if(e=function(e){var t=e.alternate;if(!t){if(null===(t=qe(e)))throw Error(i(188));return t!==e?null:e}for(var n=e,r=t;;){var a=n.return;if(null===a)break;var o=a.alternate;if(null===o){if(null!==(r=a.return)){n=r;continue}break}if(a.child===o.child){for(o=a.child;o;){if(o===n)return Qe(a),e;if(o===r)return Qe(a),t;o=o.sibling}throw Error(i(188))}if(n.return!==r.return)n=a,r=o;else{for(var l=!1,s=a.child;s;){if(s===n){l=!0,n=a,r=o;break}if(s===r){l=!0,r=a,n=o;break}s=s.sibling}if(!l){for(s=o.child;s;){if(s===n){l=!0,n=o,r=a;break}if(s===r){l=!0,r=o,n=a;break}s=s.sibling}if(!l)throw Error(i(189))}}if(n.alternate!==r)throw Error(i(190))}if(3!==n.tag)throw Error(i(188));return n.stateNode.current===n?e:t}(e),!e)return null;for(var t=e;;){if(5===t.tag||6===t.tag)return t;if(t.child)t.child.return=t,t=t.child;else{if(t===e)break;for(;!t.sibling;){if(!t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}}return null}function Je(e,t){for(var n=e.alternate;null!==t;){if(t===e||t===n)return!0;t=t.return}return!1}var et,tt,nt,rt,at=!1,ot=[],it=null,lt=null,st=null,ut=new Map,ct=new Map,dt=[],ft="mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset submit".split(" ");function pt(e,t,n,r,a){return{blockedOn:e,domEventName:t,eventSystemFlags:16|n,nativeEvent:a,targetContainers:[r]}}function mt(e,t){switch(e){case"focusin":case"focusout":it=null;break;case"dragenter":case"dragleave":lt=null;break;case"mouseover":case"mouseout":st=null;break;case"pointerover":case"pointerout":ut.delete(t.pointerId);break;case"gotpointercapture":case"lostpointercapture":ct.delete(t.pointerId)}}function ht(e,t,n,r,a,o){return null===e||e.nativeEvent!==o?(e=pt(t,n,r,a,o),null!==t&&(null!==(t=na(t))&&tt(t)),e):(e.eventSystemFlags|=r,t=e.targetContainers,null!==a&&-1===t.indexOf(a)&&t.push(a),e)}function gt(e){var t=ta(e.target);if(null!==t){var n=qe(t);if(null!==n)if(13===(t=n.tag)){if(null!==(t=Ke(n)))return e.blockedOn=t,void rt(e.lanePriority,(function(){o.unstable_runWithPriority(e.priority,(function(){nt(n)}))}))}else if(3===t&&n.stateNode.hydrate)return void(e.blockedOn=3===n.tag?n.stateNode.containerInfo:null)}e.blockedOn=null}function bt(e){if(null!==e.blockedOn)return!1;for(var t=e.targetContainers;0<t.length;){var n=Xt(e.domEventName,e.eventSystemFlags,t[0],e.nativeEvent);if(null!==n)return null!==(t=na(n))&&tt(t),e.blockedOn=n,!1;t.shift()}return!0}function vt(e,t,n){bt(e)&&n.delete(t)}function yt(){for(at=!1;0<ot.length;){var e=ot[0];if(null!==e.blockedOn){null!==(e=na(e.blockedOn))&&et(e);break}for(var t=e.targetContainers;0<t.length;){var n=Xt(e.domEventName,e.eventSystemFlags,t[0],e.nativeEvent);if(null!==n){e.blockedOn=n;break}t.shift()}null===e.blockedOn&&ot.shift()}null!==it&&bt(it)&&(it=null),null!==lt&&bt(lt)&&(lt=null),null!==st&&bt(st)&&(st=null),ut.forEach(vt),ct.forEach(vt)}function wt(e,t){e.blockedOn===t&&(e.blockedOn=null,at||(at=!0,o.unstable_scheduleCallback(o.unstable_NormalPriority,yt)))}function Et(e){function t(t){return wt(t,e)}if(0<ot.length){wt(ot[0],e);for(var n=1;n<ot.length;n++){var r=ot[n];r.blockedOn===e&&(r.blockedOn=null)}}for(null!==it&&wt(it,e),null!==lt&&wt(lt,e),null!==st&&wt(st,e),ut.forEach(t),ct.forEach(t),n=0;n<dt.length;n++)(r=dt[n]).blockedOn===e&&(r.blockedOn=null);for(;0<dt.length&&null===(n=dt[0]).blockedOn;)gt(n),null===n.blockedOn&&dt.shift()}function kt(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n["Webkit"+e]="webkit"+t,n["Moz"+e]="moz"+t,n}var St={animationend:kt("Animation","AnimationEnd"),animationiteration:kt("Animation","AnimationIteration"),animationstart:kt("Animation","AnimationStart"),transitionend:kt("Transition","TransitionEnd")},xt={},Ct={};function _t(e){if(xt[e])return xt[e];if(!St[e])return e;var t,n=St[e];for(t in n)if(n.hasOwnProperty(t)&&t in Ct)return xt[e]=n[t];return e}d&&(Ct=document.createElement("div").style,"AnimationEvent"in window||(delete St.animationend.animation,delete St.animationiteration.animation,delete St.animationstart.animation),"TransitionEvent"in window||delete St.transitionend.transition);var Tt=_t("animationend"),At=_t("animationiteration"),Nt=_t("animationstart"),Lt=_t("transitionend"),Ot=new Map,Pt=new Map,Rt=["abort","abort",Tt,"animationEnd",At,"animationIteration",Nt,"animationStart","canplay","canPlay","canplaythrough","canPlayThrough","durationchange","durationChange","emptied","emptied","encrypted","encrypted","ended","ended","error","error","gotpointercapture","gotPointerCapture","load","load","loadeddata","loadedData","loadedmetadata","loadedMetadata","loadstart","loadStart","lostpointercapture","lostPointerCapture","playing","playing","progress","progress","seeking","seeking","stalled","stalled","suspend","suspend","timeupdate","timeUpdate",Lt,"transitionEnd","waiting","waiting"];function It(e,t){for(var n=0;n<e.length;n+=2){var r=e[n],a=e[n+1];a="on"+(a[0].toUpperCase()+a.slice(1)),Pt.set(r,t),Ot.set(r,a),u(a,[r])}}(0,o.unstable_now)();var Dt=8;function Mt(e){if(0!=(1&e))return Dt=15,1;if(0!=(2&e))return Dt=14,2;if(0!=(4&e))return Dt=13,4;var t=24&e;return 0!==t?(Dt=12,t):0!=(32&e)?(Dt=11,32):0!==(t=192&e)?(Dt=10,t):0!=(256&e)?(Dt=9,256):0!==(t=3584&e)?(Dt=8,t):0!=(4096&e)?(Dt=7,4096):0!==(t=4186112&e)?(Dt=6,t):0!==(t=62914560&e)?(Dt=5,t):67108864&e?(Dt=4,67108864):0!=(134217728&e)?(Dt=3,134217728):0!==(t=805306368&e)?(Dt=2,t):0!=(1073741824&e)?(Dt=1,1073741824):(Dt=8,e)}function Ft(e,t){var n=e.pendingLanes;if(0===n)return Dt=0;var r=0,a=0,o=e.expiredLanes,i=e.suspendedLanes,l=e.pingedLanes;if(0!==o)r=o,a=Dt=15;else if(0!==(o=134217727&n)){var s=o&~i;0!==s?(r=Mt(s),a=Dt):0!==(l&=o)&&(r=Mt(l),a=Dt)}else 0!==(o=n&~i)?(r=Mt(o),a=Dt):0!==l&&(r=Mt(l),a=Dt);if(0===r)return 0;if(r=n&((0>(r=31-Zt(r))?0:1<<r)<<1)-1,0!==t&&t!==r&&0==(t&i)){if(Mt(t),a<=Dt)return t;Dt=a}if(0!==(t=e.entangledLanes))for(e=e.entanglements,t&=r;0<t;)a=1<<(n=31-Zt(t)),r|=e[n],t&=~a;return r}function Bt(e){return 0!==(e=-1073741825&e.pendingLanes)?e:1073741824&e?1073741824:0}function Ut(e,t){switch(e){case 15:return 1;case 14:return 2;case 12:return 0===(e=$t(24&~t))?Ut(10,t):e;case 10:return 0===(e=$t(192&~t))?Ut(8,t):e;case 8:return 0===(e=$t(3584&~t))&&(0===(e=$t(4186112&~t))&&(e=512)),e;case 2:return 0===(t=$t(805306368&~t))&&(t=268435456),t}throw Error(i(358,e))}function $t(e){return e&-e}function jt(e){for(var t=[],n=0;31>n;n++)t.push(e);return t}function zt(e,t,n){e.pendingLanes|=t;var r=t-1;e.suspendedLanes&=r,e.pingedLanes&=r,(e=e.eventTimes)[t=31-Zt(t)]=n}var Zt=Math.clz32?Math.clz32:function(e){return 0===e?32:31-(Ht(e)/Yt|0)|0},Ht=Math.log,Yt=Math.LN2;var Vt=o.unstable_UserBlockingPriority,Gt=o.unstable_runWithPriority,Wt=!0;function qt(e,t,n,r){Me||Ie();var a=Qt,o=Me;Me=!0;try{Re(a,e,t,n,r)}finally{(Me=o)||Be()}}function Kt(e,t,n,r){Gt(Vt,Qt.bind(null,e,t,n,r))}function Qt(e,t,n,r){var a;if(Wt)if((a=0==(4&t))&&0<ot.length&&-1<ft.indexOf(e))e=pt(null,e,t,n,r),ot.push(e);else{var o=Xt(e,t,n,r);if(null===o)a&&mt(e,r);else{if(a){if(-1<ft.indexOf(e))return e=pt(o,e,t,n,r),void ot.push(e);if(function(e,t,n,r,a){switch(t){case"focusin":return it=ht(it,e,t,n,r,a),!0;case"dragenter":return lt=ht(lt,e,t,n,r,a),!0;case"mouseover":return st=ht(st,e,t,n,r,a),!0;case"pointerover":var o=a.pointerId;return ut.set(o,ht(ut.get(o)||null,e,t,n,r,a)),!0;case"gotpointercapture":return o=a.pointerId,ct.set(o,ht(ct.get(o)||null,e,t,n,r,a)),!0}return!1}(o,e,t,n,r))return;mt(e,r)}Ir(e,t,r,null,n)}}}function Xt(e,t,n,r){var a=Ce(r);if(null!==(a=ta(a))){var o=qe(a);if(null===o)a=null;else{var i=o.tag;if(13===i){if(null!==(a=Ke(o)))return a;a=null}else if(3===i){if(o.stateNode.hydrate)return 3===o.tag?o.stateNode.containerInfo:null;a=null}else o!==a&&(a=null)}}return Ir(e,t,r,a,n),null}var Jt=null,en=null,tn=null;function nn(){if(tn)return tn;var e,t,n=en,r=n.length,a="value"in Jt?Jt.value:Jt.textContent,o=a.length;for(e=0;e<r&&n[e]===a[e];e++);var i=r-e;for(t=1;t<=i&&n[r-t]===a[o-t];t++);return tn=a.slice(e,1<t?1-t:void 0)}function rn(e){var t=e.keyCode;return"charCode"in e?0===(e=e.charCode)&&13===t&&(e=13):e=t,10===e&&(e=13),32<=e||13===e?e:0}function an(){return!0}function on(){return!1}function ln(e){function t(t,n,r,a,o){for(var i in this._reactName=t,this._targetInst=r,this.type=n,this.nativeEvent=a,this.target=o,this.currentTarget=null,e)e.hasOwnProperty(i)&&(t=e[i],this[i]=t?t(a):a[i]);return this.isDefaultPrevented=(null!=a.defaultPrevented?a.defaultPrevented:!1===a.returnValue)?an:on,this.isPropagationStopped=on,this}return a(t.prototype,{preventDefault:function(){this.defaultPrevented=!0;var e=this.nativeEvent;e&&(e.preventDefault?e.preventDefault():"unknown"!=typeof e.returnValue&&(e.returnValue=!1),this.isDefaultPrevented=an)},stopPropagation:function(){var e=this.nativeEvent;e&&(e.stopPropagation?e.stopPropagation():"unknown"!=typeof e.cancelBubble&&(e.cancelBubble=!0),this.isPropagationStopped=an)},persist:function(){},isPersistent:an}),t}var sn,un,cn,dn={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},fn=ln(dn),pn=a({},dn,{view:0,detail:0}),mn=ln(pn),hn=a({},pn,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:Tn,button:0,buttons:0,relatedTarget:function(e){return void 0===e.relatedTarget?e.fromElement===e.srcElement?e.toElement:e.fromElement:e.relatedTarget},movementX:function(e){return"movementX"in e?e.movementX:(e!==cn&&(cn&&"mousemove"===e.type?(sn=e.screenX-cn.screenX,un=e.screenY-cn.screenY):un=sn=0,cn=e),sn)},movementY:function(e){return"movementY"in e?e.movementY:un}}),gn=ln(hn),bn=ln(a({},hn,{dataTransfer:0})),vn=ln(a({},pn,{relatedTarget:0})),yn=ln(a({},dn,{animationName:0,elapsedTime:0,pseudoElement:0})),wn=a({},dn,{clipboardData:function(e){return"clipboardData"in e?e.clipboardData:window.clipboardData}}),En=ln(wn),kn=ln(a({},dn,{data:0})),Sn={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},xn={8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",45:"Insert",46:"Delete",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"NumLock",145:"ScrollLock",224:"Meta"},Cn={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function _n(e){var t=this.nativeEvent;return t.getModifierState?t.getModifierState(e):!!(e=Cn[e])&&!!t[e]}function Tn(){return _n}var An=a({},pn,{key:function(e){if(e.key){var t=Sn[e.key]||e.key;if("Unidentified"!==t)return t}return"keypress"===e.type?13===(e=rn(e))?"Enter":String.fromCharCode(e):"keydown"===e.type||"keyup"===e.type?xn[e.keyCode]||"Unidentified":""},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:Tn,charCode:function(e){return"keypress"===e.type?rn(e):0},keyCode:function(e){return"keydown"===e.type||"keyup"===e.type?e.keyCode:0},which:function(e){return"keypress"===e.type?rn(e):"keydown"===e.type||"keyup"===e.type?e.keyCode:0}}),Nn=ln(An),Ln=ln(a({},hn,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0})),On=ln(a({},pn,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:Tn})),Pn=ln(a({},dn,{propertyName:0,elapsedTime:0,pseudoElement:0})),Rn=a({},hn,{deltaX:function(e){return"deltaX"in e?e.deltaX:"wheelDeltaX"in e?-e.wheelDeltaX:0},deltaY:function(e){return"deltaY"in e?e.deltaY:"wheelDeltaY"in e?-e.wheelDeltaY:"wheelDelta"in e?-e.wheelDelta:0},deltaZ:0,deltaMode:0}),In=ln(Rn),Dn=[9,13,27,32],Mn=d&&"CompositionEvent"in window,Fn=null;d&&"documentMode"in document&&(Fn=document.documentMode);var Bn=d&&"TextEvent"in window&&!Fn,Un=d&&(!Mn||Fn&&8<Fn&&11>=Fn),$n=String.fromCharCode(32),jn=!1;function zn(e,t){switch(e){case"keyup":return-1!==Dn.indexOf(t.keyCode);case"keydown":return 229!==t.keyCode;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function Zn(e){return"object"==typeof(e=e.detail)&&"data"in e?e.data:null}var Hn=!1;var Yn={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function Vn(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return"input"===t?!!Yn[e.type]:"textarea"===t}function Gn(e,t,n,r){Le(r),0<(t=Mr(t,"onChange")).length&&(n=new fn("onChange","change",null,n,r),e.push({event:n,listeners:t}))}var Wn=null,qn=null;function Kn(e){Ar(e,0)}function Qn(e){if(Q(ra(e)))return e}function Xn(e,t){if("change"===e)return t}var Jn=!1;if(d){var er;if(d){var tr="oninput"in document;if(!tr){var nr=document.createElement("div");nr.setAttribute("oninput","return;"),tr="function"==typeof nr.oninput}er=tr}else er=!1;Jn=er&&(!document.documentMode||9<document.documentMode)}function rr(){Wn&&(Wn.detachEvent("onpropertychange",ar),qn=Wn=null)}function ar(e){if("value"===e.propertyName&&Qn(qn)){var t=[];if(Gn(t,qn,e,Ce(e)),e=Kn,Me)e(t);else{Me=!0;try{Pe(e,t)}finally{Me=!1,Be()}}}}function or(e,t,n){"focusin"===e?(rr(),qn=n,(Wn=t).attachEvent("onpropertychange",ar)):"focusout"===e&&rr()}function ir(e){if("selectionchange"===e||"keyup"===e||"keydown"===e)return Qn(qn)}function lr(e,t){if("click"===e)return Qn(t)}function sr(e,t){if("input"===e||"change"===e)return Qn(t)}var ur="function"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t},cr=Object.prototype.hasOwnProperty;function dr(e,t){if(ur(e,t))return!0;if("object"!=typeof e||null===e||"object"!=typeof t||null===t)return!1;var n=Object.keys(e),r=Object.keys(t);if(n.length!==r.length)return!1;for(r=0;r<n.length;r++)if(!cr.call(t,n[r])||!ur(e[n[r]],t[n[r]]))return!1;return!0}function fr(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function pr(e,t){var n,r=fr(e);for(e=0;r;){if(3===r.nodeType){if(n=e+r.textContent.length,e<=t&&n>=t)return{node:r,offset:t-e};e=n}e:{for(;r;){if(r.nextSibling){r=r.nextSibling;break e}r=r.parentNode}r=void 0}r=fr(r)}}function mr(e,t){return!(!e||!t)&&(e===t||(!e||3!==e.nodeType)&&(t&&3===t.nodeType?mr(e,t.parentNode):"contains"in e?e.contains(t):!!e.compareDocumentPosition&&!!(16&e.compareDocumentPosition(t))))}function hr(){for(var e=window,t=X();t instanceof e.HTMLIFrameElement;){try{var n="string"==typeof t.contentWindow.location.href}catch(r){n=!1}if(!n)break;t=X((e=t.contentWindow).document)}return t}function gr(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&("input"===t&&("text"===e.type||"search"===e.type||"tel"===e.type||"url"===e.type||"password"===e.type)||"textarea"===t||"true"===e.contentEditable)}var br=d&&"documentMode"in document&&11>=document.documentMode,vr=null,yr=null,wr=null,Er=!1;function kr(e,t,n){var r=n.window===n?n.document:9===n.nodeType?n:n.ownerDocument;Er||null==vr||vr!==X(r)||("selectionStart"in(r=vr)&&gr(r)?r={start:r.selectionStart,end:r.selectionEnd}:r={anchorNode:(r=(r.ownerDocument&&r.ownerDocument.defaultView||window).getSelection()).anchorNode,anchorOffset:r.anchorOffset,focusNode:r.focusNode,focusOffset:r.focusOffset},wr&&dr(wr,r)||(wr=r,0<(r=Mr(yr,"onSelect")).length&&(t=new fn("onSelect","select",null,t,n),e.push({event:t,listeners:r}),t.target=vr)))}It("cancel cancel click click close close contextmenu contextMenu copy copy cut cut auxclick auxClick dblclick doubleClick dragend dragEnd dragstart dragStart drop drop focusin focus focusout blur input input invalid invalid keydown keyDown keypress keyPress keyup keyUp mousedown mouseDown mouseup mouseUp paste paste pause pause play play pointercancel pointerCancel pointerdown pointerDown pointerup pointerUp ratechange rateChange reset reset seeked seeked submit submit touchcancel touchCancel touchend touchEnd touchstart touchStart volumechange volumeChange".split(" "),0),It("drag drag dragenter dragEnter dragexit dragExit dragleave dragLeave dragover dragOver mousemove mouseMove mouseout mouseOut mouseover mouseOver pointermove pointerMove pointerout pointerOut pointerover pointerOver scroll scroll toggle toggle touchmove touchMove wheel wheel".split(" "),1),It(Rt,2);for(var Sr="change selectionchange textInput compositionstart compositionend compositionupdate".split(" "),xr=0;xr<Sr.length;xr++)Pt.set(Sr[xr],0);c("onMouseEnter",["mouseout","mouseover"]),c("onMouseLeave",["mouseout","mouseover"]),c("onPointerEnter",["pointerout","pointerover"]),c("onPointerLeave",["pointerout","pointerover"]),u("onChange","change click focusin focusout input keydown keyup selectionchange".split(" ")),u("onSelect","focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange".split(" ")),u("onBeforeInput",["compositionend","keypress","textInput","paste"]),u("onCompositionEnd","compositionend focusout keydown keypress keyup mousedown".split(" ")),u("onCompositionStart","compositionstart focusout keydown keypress keyup mousedown".split(" ")),u("onCompositionUpdate","compositionupdate focusout keydown keypress keyup mousedown".split(" "));var Cr="abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange seeked seeking stalled suspend timeupdate volumechange waiting".split(" "),_r=new Set("cancel close invalid load scroll toggle".split(" ").concat(Cr));function Tr(e,t,n){var r=e.type||"unknown-event";e.currentTarget=n,function(e,t,n,r,a,o,l,s,u){if(We.apply(this,arguments),Ze){if(!Ze)throw Error(i(198));var c=He;Ze=!1,He=null,Ye||(Ye=!0,Ve=c)}}(r,t,void 0,e),e.currentTarget=null}function Ar(e,t){t=0!=(4&t);for(var n=0;n<e.length;n++){var r=e[n],a=r.event;r=r.listeners;e:{var o=void 0;if(t)for(var i=r.length-1;0<=i;i--){var l=r[i],s=l.instance,u=l.currentTarget;if(l=l.listener,s!==o&&a.isPropagationStopped())break e;Tr(a,l,u),o=s}else for(i=0;i<r.length;i++){if(s=(l=r[i]).instance,u=l.currentTarget,l=l.listener,s!==o&&a.isPropagationStopped())break e;Tr(a,l,u),o=s}}}if(Ye)throw e=Ve,Ye=!1,Ve=null,e}function Nr(e,t){var n=oa(t),r=e+"__bubble";n.has(r)||(Rr(t,e,2,!1),n.add(r))}var Lr="_reactListening"+Math.random().toString(36).slice(2);function Or(e){e[Lr]||(e[Lr]=!0,l.forEach((function(t){_r.has(t)||Pr(t,!1,e,null),Pr(t,!0,e,null)})))}function Pr(e,t,n,r){var a=4<arguments.length&&void 0!==arguments[4]?arguments[4]:0,o=n;if("selectionchange"===e&&9!==n.nodeType&&(o=n.ownerDocument),null!==r&&!t&&_r.has(e)){if("scroll"!==e)return;a|=2,o=r}var i=oa(o),l=e+"__"+(t?"capture":"bubble");i.has(l)||(t&&(a|=4),Rr(o,e,a,t),i.add(l))}function Rr(e,t,n,r){var a=Pt.get(t);switch(void 0===a?2:a){case 0:a=qt;break;case 1:a=Kt;break;default:a=Qt}n=a.bind(null,t,n,e),a=void 0,!$e||"touchstart"!==t&&"touchmove"!==t&&"wheel"!==t||(a=!0),r?void 0!==a?e.addEventListener(t,n,{capture:!0,passive:a}):e.addEventListener(t,n,!0):void 0!==a?e.addEventListener(t,n,{passive:a}):e.addEventListener(t,n,!1)}function Ir(e,t,n,r,a){var o=r;if(0==(1&t)&&0==(2&t)&&null!==r)e:for(;;){if(null===r)return;var i=r.tag;if(3===i||4===i){var l=r.stateNode.containerInfo;if(l===a||8===l.nodeType&&l.parentNode===a)break;if(4===i)for(i=r.return;null!==i;){var s=i.tag;if((3===s||4===s)&&((s=i.stateNode.containerInfo)===a||8===s.nodeType&&s.parentNode===a))return;i=i.return}for(;null!==l;){if(null===(i=ta(l)))return;if(5===(s=i.tag)||6===s){r=o=i;continue e}l=l.parentNode}}r=r.return}!function(e,t,n){if(Fe)return e(t,n);Fe=!0;try{return De(e,t,n)}finally{Fe=!1,Be()}}((function(){var r=o,a=Ce(n),i=[];e:{var l=Ot.get(e);if(void 0!==l){var s=fn,u=e;switch(e){case"keypress":if(0===rn(n))break e;case"keydown":case"keyup":s=Nn;break;case"focusin":u="focus",s=vn;break;case"focusout":u="blur",s=vn;break;case"beforeblur":case"afterblur":s=vn;break;case"click":if(2===n.button)break e;case"auxclick":case"dblclick":case"mousedown":case"mousemove":case"mouseup":case"mouseout":case"mouseover":case"contextmenu":s=gn;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":s=bn;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":s=On;break;case Tt:case At:case Nt:s=yn;break;case Lt:s=Pn;break;case"scroll":s=mn;break;case"wheel":s=In;break;case"copy":case"cut":case"paste":s=En;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":s=Ln}var c=0!=(4&t),d=!c&&"scroll"===e,f=c?null!==l?l+"Capture":null:l;c=[];for(var p,m=r;null!==m;){var h=(p=m).stateNode;if(5===p.tag&&null!==h&&(p=h,null!==f&&(null!=(h=Ue(m,f))&&c.push(Dr(m,h,p)))),d)break;m=m.return}0<c.length&&(l=new s(l,u,null,n,a),i.push({event:l,listeners:c}))}}if(0==(7&t)){if(s="mouseout"===e||"pointerout"===e,(!(l="mouseover"===e||"pointerover"===e)||0!=(16&t)||!(u=n.relatedTarget||n.fromElement)||!ta(u)&&!u[Jr])&&(s||l)&&(l=a.window===a?a:(l=a.ownerDocument)?l.defaultView||l.parentWindow:window,s?(s=r,null!==(u=(u=n.relatedTarget||n.toElement)?ta(u):null)&&(u!==(d=qe(u))||5!==u.tag&&6!==u.tag)&&(u=null)):(s=null,u=r),s!==u)){if(c=gn,h="onMouseLeave",f="onMouseEnter",m="mouse","pointerout"!==e&&"pointerover"!==e||(c=Ln,h="onPointerLeave",f="onPointerEnter",m="pointer"),d=null==s?l:ra(s),p=null==u?l:ra(u),(l=new c(h,m+"leave",s,n,a)).target=d,l.relatedTarget=p,h=null,ta(a)===r&&((c=new c(f,m+"enter",u,n,a)).target=p,c.relatedTarget=d,h=c),d=h,s&&u)e:{for(f=u,m=0,p=c=s;p;p=Fr(p))m++;for(p=0,h=f;h;h=Fr(h))p++;for(;0<m-p;)c=Fr(c),m--;for(;0<p-m;)f=Fr(f),p--;for(;m--;){if(c===f||null!==f&&c===f.alternate)break e;c=Fr(c),f=Fr(f)}c=null}else c=null;null!==s&&Br(i,l,s,c,!1),null!==u&&null!==d&&Br(i,d,u,c,!0)}if("select"===(s=(l=r?ra(r):window).nodeName&&l.nodeName.toLowerCase())||"input"===s&&"file"===l.type)var g=Xn;else if(Vn(l))if(Jn)g=sr;else{g=ir;var b=or}else(s=l.nodeName)&&"input"===s.toLowerCase()&&("checkbox"===l.type||"radio"===l.type)&&(g=lr);switch(g&&(g=g(e,r))?Gn(i,g,n,a):(b&&b(e,l,r),"focusout"===e&&(b=l._wrapperState)&&b.controlled&&"number"===l.type&&ae(l,"number",l.value)),b=r?ra(r):window,e){case"focusin":(Vn(b)||"true"===b.contentEditable)&&(vr=b,yr=r,wr=null);break;case"focusout":wr=yr=vr=null;break;case"mousedown":Er=!0;break;case"contextmenu":case"mouseup":case"dragend":Er=!1,kr(i,n,a);break;case"selectionchange":if(br)break;case"keydown":case"keyup":kr(i,n,a)}var v;if(Mn)e:{switch(e){case"compositionstart":var y="onCompositionStart";break e;case"compositionend":y="onCompositionEnd";break e;case"compositionupdate":y="onCompositionUpdate";break e}y=void 0}else Hn?zn(e,n)&&(y="onCompositionEnd"):"keydown"===e&&229===n.keyCode&&(y="onCompositionStart");y&&(Un&&"ko"!==n.locale&&(Hn||"onCompositionStart"!==y?"onCompositionEnd"===y&&Hn&&(v=nn()):(en="value"in(Jt=a)?Jt.value:Jt.textContent,Hn=!0)),0<(b=Mr(r,y)).length&&(y=new kn(y,e,null,n,a),i.push({event:y,listeners:b}),v?y.data=v:null!==(v=Zn(n))&&(y.data=v))),(v=Bn?function(e,t){switch(e){case"compositionend":return Zn(t);case"keypress":return 32!==t.which?null:(jn=!0,$n);case"textInput":return(e=t.data)===$n&&jn?null:e;default:return null}}(e,n):function(e,t){if(Hn)return"compositionend"===e||!Mn&&zn(e,t)?(e=nn(),tn=en=Jt=null,Hn=!1,e):null;switch(e){case"paste":default:return null;case"keypress":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1<t.char.length)return t.char;if(t.which)return String.fromCharCode(t.which)}return null;case"compositionend":return Un&&"ko"!==t.locale?null:t.data}}(e,n))&&(0<(r=Mr(r,"onBeforeInput")).length&&(a=new kn("onBeforeInput","beforeinput",null,n,a),i.push({event:a,listeners:r}),a.data=v))}Ar(i,t)}))}function Dr(e,t,n){return{instance:e,listener:t,currentTarget:n}}function Mr(e,t){for(var n=t+"Capture",r=[];null!==e;){var a=e,o=a.stateNode;5===a.tag&&null!==o&&(a=o,null!=(o=Ue(e,n))&&r.unshift(Dr(e,o,a)),null!=(o=Ue(e,t))&&r.push(Dr(e,o,a))),e=e.return}return r}function Fr(e){if(null===e)return null;do{e=e.return}while(e&&5!==e.tag);return e||null}function Br(e,t,n,r,a){for(var o=t._reactName,i=[];null!==n&&n!==r;){var l=n,s=l.alternate,u=l.stateNode;if(null!==s&&s===r)break;5===l.tag&&null!==u&&(l=u,a?null!=(s=Ue(n,o))&&i.unshift(Dr(n,s,l)):a||null!=(s=Ue(n,o))&&i.push(Dr(n,s,l))),n=n.return}0!==i.length&&e.push({event:t,listeners:i})}function Ur(){}var $r=null,jr=null;function zr(e,t){switch(e){case"button":case"input":case"select":case"textarea":return!!t.autoFocus}return!1}function Zr(e,t){return"textarea"===e||"option"===e||"noscript"===e||"string"==typeof t.children||"number"==typeof t.children||"object"==typeof t.dangerouslySetInnerHTML&&null!==t.dangerouslySetInnerHTML&&null!=t.dangerouslySetInnerHTML.__html}var Hr="function"==typeof setTimeout?setTimeout:void 0,Yr="function"==typeof clearTimeout?clearTimeout:void 0;function Vr(e){1===e.nodeType?e.textContent="":9===e.nodeType&&(null!=(e=e.body)&&(e.textContent=""))}function Gr(e){for(;null!=e;e=e.nextSibling){var t=e.nodeType;if(1===t||3===t)break}return e}function Wr(e){e=e.previousSibling;for(var t=0;e;){if(8===e.nodeType){var n=e.data;if("$"===n||"$!"===n||"$?"===n){if(0===t)return e;t--}else"/$"===n&&t++}e=e.previousSibling}return null}var qr=0;var Kr=Math.random().toString(36).slice(2),Qr="__reactFiber$"+Kr,Xr="__reactProps$"+Kr,Jr="__reactContainer$"+Kr,ea="__reactEvents$"+Kr;function ta(e){var t=e[Qr];if(t)return t;for(var n=e.parentNode;n;){if(t=n[Jr]||n[Qr]){if(n=t.alternate,null!==t.child||null!==n&&null!==n.child)for(e=Wr(e);null!==e;){if(n=e[Qr])return n;e=Wr(e)}return t}n=(e=n).parentNode}return null}function na(e){return!(e=e[Qr]||e[Jr])||5!==e.tag&&6!==e.tag&&13!==e.tag&&3!==e.tag?null:e}function ra(e){if(5===e.tag||6===e.tag)return e.stateNode;throw Error(i(33))}function aa(e){return e[Xr]||null}function oa(e){var t=e[ea];return void 0===t&&(t=e[ea]=new Set),t}var ia=[],la=-1;function sa(e){return{current:e}}function ua(e){0>la||(e.current=ia[la],ia[la]=null,la--)}function ca(e,t){la++,ia[la]=e.current,e.current=t}var da={},fa=sa(da),pa=sa(!1),ma=da;function ha(e,t){var n=e.type.contextTypes;if(!n)return da;var r=e.stateNode;if(r&&r.__reactInternalMemoizedUnmaskedChildContext===t)return r.__reactInternalMemoizedMaskedChildContext;var a,o={};for(a in n)o[a]=t[a];return r&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=o),o}function ga(e){return null!=(e=e.childContextTypes)}function ba(){ua(pa),ua(fa)}function va(e,t,n){if(fa.current!==da)throw Error(i(168));ca(fa,t),ca(pa,n)}function ya(e,t,n){var r=e.stateNode;if(e=t.childContextTypes,"function"!=typeof r.getChildContext)return n;for(var o in r=r.getChildContext())if(!(o in e))throw Error(i(108,G(t)||"Unknown",o));return a({},n,r)}function wa(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||da,ma=fa.current,ca(fa,e),ca(pa,pa.current),!0}function Ea(e,t,n){var r=e.stateNode;if(!r)throw Error(i(169));n?(e=ya(e,t,ma),r.__reactInternalMemoizedMergedChildContext=e,ua(pa),ua(fa),ca(fa,e)):ua(pa),ca(pa,n)}var ka=null,Sa=null,xa=o.unstable_runWithPriority,Ca=o.unstable_scheduleCallback,_a=o.unstable_cancelCallback,Ta=o.unstable_shouldYield,Aa=o.unstable_requestPaint,Na=o.unstable_now,La=o.unstable_getCurrentPriorityLevel,Oa=o.unstable_ImmediatePriority,Pa=o.unstable_UserBlockingPriority,Ra=o.unstable_NormalPriority,Ia=o.unstable_LowPriority,Da=o.unstable_IdlePriority,Ma={},Fa=void 0!==Aa?Aa:function(){},Ba=null,Ua=null,$a=!1,ja=Na(),za=1e4>ja?Na:function(){return Na()-ja};function Za(){switch(La()){case Oa:return 99;case Pa:return 98;case Ra:return 97;case Ia:return 96;case Da:return 95;default:throw Error(i(332))}}function Ha(e){switch(e){case 99:return Oa;case 98:return Pa;case 97:return Ra;case 96:return Ia;case 95:return Da;default:throw Error(i(332))}}function Ya(e,t){return e=Ha(e),xa(e,t)}function Va(e,t,n){return e=Ha(e),Ca(e,t,n)}function Ga(){if(null!==Ua){var e=Ua;Ua=null,_a(e)}Wa()}function Wa(){if(!$a&&null!==Ba){$a=!0;var e=0;try{var t=Ba;Ya(99,(function(){for(;e<t.length;e++){var n=t[e];do{n=n(!0)}while(null!==n)}})),Ba=null}catch(n){throw null!==Ba&&(Ba=Ba.slice(e+1)),Ca(Oa,Ga),n}finally{$a=!1}}}var qa=E.ReactCurrentBatchConfig;function Ka(e,t){if(e&&e.defaultProps){for(var n in t=a({},t),e=e.defaultProps)void 0===t[n]&&(t[n]=e[n]);return t}return t}var Qa=sa(null),Xa=null,Ja=null,eo=null;function to(){eo=Ja=Xa=null}function no(e){var t=Qa.current;ua(Qa),e.type._context._currentValue=t}function ro(e,t){for(;null!==e;){var n=e.alternate;if((e.childLanes&t)===t){if(null===n||(n.childLanes&t)===t)break;n.childLanes|=t}else e.childLanes|=t,null!==n&&(n.childLanes|=t);e=e.return}}function ao(e,t){Xa=e,eo=Ja=null,null!==(e=e.dependencies)&&null!==e.firstContext&&(0!=(e.lanes&t)&&(Mi=!0),e.firstContext=null)}function oo(e,t){if(eo!==e&&!1!==t&&0!==t)if("number"==typeof t&&1073741823!==t||(eo=e,t=1073741823),t={context:e,observedBits:t,next:null},null===Ja){if(null===Xa)throw Error(i(308));Ja=t,Xa.dependencies={lanes:0,firstContext:t,responders:null}}else Ja=Ja.next=t;return e._currentValue}var io=!1;function lo(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null},effects:null}}function so(e,t){e=e.updateQueue,t.updateQueue===e&&(t.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,effects:e.effects})}function uo(e,t){return{eventTime:e,lane:t,tag:0,payload:null,callback:null,next:null}}function co(e,t){if(null!==(e=e.updateQueue)){var n=(e=e.shared).pending;null===n?t.next=t:(t.next=n.next,n.next=t),e.pending=t}}function fo(e,t){var n=e.updateQueue,r=e.alternate;if(null!==r&&n===(r=r.updateQueue)){var a=null,o=null;if(null!==(n=n.firstBaseUpdate)){do{var i={eventTime:n.eventTime,lane:n.lane,tag:n.tag,payload:n.payload,callback:n.callback,next:null};null===o?a=o=i:o=o.next=i,n=n.next}while(null!==n);null===o?a=o=t:o=o.next=t}else a=o=t;return n={baseState:r.baseState,firstBaseUpdate:a,lastBaseUpdate:o,shared:r.shared,effects:r.effects},void(e.updateQueue=n)}null===(e=n.lastBaseUpdate)?n.firstBaseUpdate=t:e.next=t,n.lastBaseUpdate=t}function po(e,t,n,r){var o=e.updateQueue;io=!1;var i=o.firstBaseUpdate,l=o.lastBaseUpdate,s=o.shared.pending;if(null!==s){o.shared.pending=null;var u=s,c=u.next;u.next=null,null===l?i=c:l.next=c,l=u;var d=e.alternate;if(null!==d){var f=(d=d.updateQueue).lastBaseUpdate;f!==l&&(null===f?d.firstBaseUpdate=c:f.next=c,d.lastBaseUpdate=u)}}if(null!==i){for(f=o.baseState,l=0,d=c=u=null;;){s=i.lane;var p=i.eventTime;if((r&s)===s){null!==d&&(d=d.next={eventTime:p,lane:0,tag:i.tag,payload:i.payload,callback:i.callback,next:null});e:{var m=e,h=i;switch(s=t,p=n,h.tag){case 1:if("function"==typeof(m=h.payload)){f=m.call(p,f,s);break e}f=m;break e;case 3:m.flags=-4097&m.flags|64;case 0:if(null==(s="function"==typeof(m=h.payload)?m.call(p,f,s):m))break e;f=a({},f,s);break e;case 2:io=!0}}null!==i.callback&&(e.flags|=32,null===(s=o.effects)?o.effects=[i]:s.push(i))}else p={eventTime:p,lane:s,tag:i.tag,payload:i.payload,callback:i.callback,next:null},null===d?(c=d=p,u=f):d=d.next=p,l|=s;if(null===(i=i.next)){if(null===(s=o.shared.pending))break;i=s.next,s.next=null,o.lastBaseUpdate=s,o.shared.pending=null}}null===d&&(u=f),o.baseState=u,o.firstBaseUpdate=c,o.lastBaseUpdate=d,jl|=l,e.lanes=l,e.memoizedState=f}}function mo(e,t,n){if(e=t.effects,t.effects=null,null!==e)for(t=0;t<e.length;t++){var r=e[t],a=r.callback;if(null!==a){if(r.callback=null,r=n,"function"!=typeof a)throw Error(i(191,a));a.call(r)}}}var ho=(new r.Component).refs;function go(e,t,n,r){n=null==(n=n(r,t=e.memoizedState))?t:a({},t,n),e.memoizedState=n,0===e.lanes&&(e.updateQueue.baseState=n)}var bo={isMounted:function(e){return!!(e=e._reactInternals)&&qe(e)===e},enqueueSetState:function(e,t,n){e=e._reactInternals;var r=fs(),a=ps(e),o=uo(r,a);o.payload=t,null!=n&&(o.callback=n),co(e,o),ms(e,a,r)},enqueueReplaceState:function(e,t,n){e=e._reactInternals;var r=fs(),a=ps(e),o=uo(r,a);o.tag=1,o.payload=t,null!=n&&(o.callback=n),co(e,o),ms(e,a,r)},enqueueForceUpdate:function(e,t){e=e._reactInternals;var n=fs(),r=ps(e),a=uo(n,r);a.tag=2,null!=t&&(a.callback=t),co(e,a),ms(e,r,n)}};function vo(e,t,n,r,a,o,i){return"function"==typeof(e=e.stateNode).shouldComponentUpdate?e.shouldComponentUpdate(r,o,i):!t.prototype||!t.prototype.isPureReactComponent||(!dr(n,r)||!dr(a,o))}function yo(e,t,n){var r=!1,a=da,o=t.contextType;return"object"==typeof o&&null!==o?o=oo(o):(a=ga(t)?ma:fa.current,o=(r=null!=(r=t.contextTypes))?ha(e,a):da),t=new t(n,o),e.memoizedState=null!==t.state&&void 0!==t.state?t.state:null,t.updater=bo,e.stateNode=t,t._reactInternals=e,r&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=a,e.__reactInternalMemoizedMaskedChildContext=o),t}function wo(e,t,n,r){e=t.state,"function"==typeof t.componentWillReceiveProps&&t.componentWillReceiveProps(n,r),"function"==typeof t.UNSAFE_componentWillReceiveProps&&t.UNSAFE_componentWillReceiveProps(n,r),t.state!==e&&bo.enqueueReplaceState(t,t.state,null)}function Eo(e,t,n,r){var a=e.stateNode;a.props=n,a.state=e.memoizedState,a.refs=ho,lo(e);var o=t.contextType;"object"==typeof o&&null!==o?a.context=oo(o):(o=ga(t)?ma:fa.current,a.context=ha(e,o)),po(e,n,a,r),a.state=e.memoizedState,"function"==typeof(o=t.getDerivedStateFromProps)&&(go(e,t,o,n),a.state=e.memoizedState),"function"==typeof t.getDerivedStateFromProps||"function"==typeof a.getSnapshotBeforeUpdate||"function"!=typeof a.UNSAFE_componentWillMount&&"function"!=typeof a.componentWillMount||(t=a.state,"function"==typeof a.componentWillMount&&a.componentWillMount(),"function"==typeof a.UNSAFE_componentWillMount&&a.UNSAFE_componentWillMount(),t!==a.state&&bo.enqueueReplaceState(a,a.state,null),po(e,n,a,r),a.state=e.memoizedState),"function"==typeof a.componentDidMount&&(e.flags|=4)}var ko=Array.isArray;function So(e,t,n){if(null!==(e=n.ref)&&"function"!=typeof e&&"object"!=typeof e){if(n._owner){if(n=n._owner){if(1!==n.tag)throw Error(i(309));var r=n.stateNode}if(!r)throw Error(i(147,e));var a=""+e;return null!==t&&null!==t.ref&&"function"==typeof t.ref&&t.ref._stringRef===a?t.ref:(t=function(e){var t=r.refs;t===ho&&(t=r.refs={}),null===e?delete t[a]:t[a]=e},t._stringRef=a,t)}if("string"!=typeof e)throw Error(i(284));if(!n._owner)throw Error(i(290,e))}return e}function xo(e,t){if("textarea"!==e.type)throw Error(i(31,"[object Object]"===Object.prototype.toString.call(t)?"object with keys {"+Object.keys(t).join(", ")+"}":t))}function Co(e){function t(t,n){if(e){var r=t.lastEffect;null!==r?(r.nextEffect=n,t.lastEffect=n):t.firstEffect=t.lastEffect=n,n.nextEffect=null,n.flags=8}}function n(n,r){if(!e)return null;for(;null!==r;)t(n,r),r=r.sibling;return null}function r(e,t){for(e=new Map;null!==t;)null!==t.key?e.set(t.key,t):e.set(t.index,t),t=t.sibling;return e}function a(e,t){return(e=Vs(e,t)).index=0,e.sibling=null,e}function o(t,n,r){return t.index=r,e?null!==(r=t.alternate)?(r=r.index)<n?(t.flags=2,n):r:(t.flags=2,n):n}function l(t){return e&&null===t.alternate&&(t.flags=2),t}function s(e,t,n,r){return null===t||6!==t.tag?((t=Ks(n,e.mode,r)).return=e,t):((t=a(t,n)).return=e,t)}function u(e,t,n,r){return null!==t&&t.elementType===n.type?((r=a(t,n.props)).ref=So(e,t,n),r.return=e,r):((r=Gs(n.type,n.key,n.props,null,e.mode,r)).ref=So(e,t,n),r.return=e,r)}function c(e,t,n,r){return null===t||4!==t.tag||t.stateNode.containerInfo!==n.containerInfo||t.stateNode.implementation!==n.implementation?((t=Qs(n,e.mode,r)).return=e,t):((t=a(t,n.children||[])).return=e,t)}function d(e,t,n,r,o){return null===t||7!==t.tag?((t=Ws(n,e.mode,r,o)).return=e,t):((t=a(t,n)).return=e,t)}function f(e,t,n){if("string"==typeof t||"number"==typeof t)return(t=Ks(""+t,e.mode,n)).return=e,t;if("object"==typeof t&&null!==t){switch(t.$$typeof){case k:return(n=Gs(t.type,t.key,t.props,null,e.mode,n)).ref=So(e,null,t),n.return=e,n;case S:return(t=Qs(t,e.mode,n)).return=e,t}if(ko(t)||z(t))return(t=Ws(t,e.mode,n,null)).return=e,t;xo(e,t)}return null}function p(e,t,n,r){var a=null!==t?t.key:null;if("string"==typeof n||"number"==typeof n)return null!==a?null:s(e,t,""+n,r);if("object"==typeof n&&null!==n){switch(n.$$typeof){case k:return n.key===a?n.type===x?d(e,t,n.props.children,r,a):u(e,t,n,r):null;case S:return n.key===a?c(e,t,n,r):null}if(ko(n)||z(n))return null!==a?null:d(e,t,n,r,null);xo(e,n)}return null}function m(e,t,n,r,a){if("string"==typeof r||"number"==typeof r)return s(t,e=e.get(n)||null,""+r,a);if("object"==typeof r&&null!==r){switch(r.$$typeof){case k:return e=e.get(null===r.key?n:r.key)||null,r.type===x?d(t,e,r.props.children,a,r.key):u(t,e,r,a);case S:return c(t,e=e.get(null===r.key?n:r.key)||null,r,a)}if(ko(r)||z(r))return d(t,e=e.get(n)||null,r,a,null);xo(t,r)}return null}function h(a,i,l,s){for(var u=null,c=null,d=i,h=i=0,g=null;null!==d&&h<l.length;h++){d.index>h?(g=d,d=null):g=d.sibling;var b=p(a,d,l[h],s);if(null===b){null===d&&(d=g);break}e&&d&&null===b.alternate&&t(a,d),i=o(b,i,h),null===c?u=b:c.sibling=b,c=b,d=g}if(h===l.length)return n(a,d),u;if(null===d){for(;h<l.length;h++)null!==(d=f(a,l[h],s))&&(i=o(d,i,h),null===c?u=d:c.sibling=d,c=d);return u}for(d=r(a,d);h<l.length;h++)null!==(g=m(d,a,h,l[h],s))&&(e&&null!==g.alternate&&d.delete(null===g.key?h:g.key),i=o(g,i,h),null===c?u=g:c.sibling=g,c=g);return e&&d.forEach((function(e){return t(a,e)})),u}function g(a,l,s,u){var c=z(s);if("function"!=typeof c)throw Error(i(150));if(null==(s=c.call(s)))throw Error(i(151));for(var d=c=null,h=l,g=l=0,b=null,v=s.next();null!==h&&!v.done;g++,v=s.next()){h.index>g?(b=h,h=null):b=h.sibling;var y=p(a,h,v.value,u);if(null===y){null===h&&(h=b);break}e&&h&&null===y.alternate&&t(a,h),l=o(y,l,g),null===d?c=y:d.sibling=y,d=y,h=b}if(v.done)return n(a,h),c;if(null===h){for(;!v.done;g++,v=s.next())null!==(v=f(a,v.value,u))&&(l=o(v,l,g),null===d?c=v:d.sibling=v,d=v);return c}for(h=r(a,h);!v.done;g++,v=s.next())null!==(v=m(h,a,g,v.value,u))&&(e&&null!==v.alternate&&h.delete(null===v.key?g:v.key),l=o(v,l,g),null===d?c=v:d.sibling=v,d=v);return e&&h.forEach((function(e){return t(a,e)})),c}return function(e,r,o,s){var u="object"==typeof o&&null!==o&&o.type===x&&null===o.key;u&&(o=o.props.children);var c="object"==typeof o&&null!==o;if(c)switch(o.$$typeof){case k:e:{for(c=o.key,u=r;null!==u;){if(u.key===c){if(7===u.tag){if(o.type===x){n(e,u.sibling),(r=a(u,o.props.children)).return=e,e=r;break e}}else if(u.elementType===o.type){n(e,u.sibling),(r=a(u,o.props)).ref=So(e,u,o),r.return=e,e=r;break e}n(e,u);break}t(e,u),u=u.sibling}o.type===x?((r=Ws(o.props.children,e.mode,s,o.key)).return=e,e=r):((s=Gs(o.type,o.key,o.props,null,e.mode,s)).ref=So(e,r,o),s.return=e,e=s)}return l(e);case S:e:{for(u=o.key;null!==r;){if(r.key===u){if(4===r.tag&&r.stateNode.containerInfo===o.containerInfo&&r.stateNode.implementation===o.implementation){n(e,r.sibling),(r=a(r,o.children||[])).return=e,e=r;break e}n(e,r);break}t(e,r),r=r.sibling}(r=Qs(o,e.mode,s)).return=e,e=r}return l(e)}if("string"==typeof o||"number"==typeof o)return o=""+o,null!==r&&6===r.tag?(n(e,r.sibling),(r=a(r,o)).return=e,e=r):(n(e,r),(r=Ks(o,e.mode,s)).return=e,e=r),l(e);if(ko(o))return h(e,r,o,s);if(z(o))return g(e,r,o,s);if(c&&xo(e,o),void 0===o&&!u)switch(e.tag){case 1:case 22:case 0:case 11:case 15:throw Error(i(152,G(e.type)||"Component"))}return n(e,r)}}var _o=Co(!0),To=Co(!1),Ao={},No=sa(Ao),Lo=sa(Ao),Oo=sa(Ao);function Po(e){if(e===Ao)throw Error(i(174));return e}function Ro(e,t){switch(ca(Oo,t),ca(Lo,e),ca(No,Ao),e=t.nodeType){case 9:case 11:t=(t=t.documentElement)?t.namespaceURI:pe(null,"");break;default:t=pe(t=(e=8===e?t.parentNode:t).namespaceURI||null,e=e.tagName)}ua(No),ca(No,t)}function Io(){ua(No),ua(Lo),ua(Oo)}function Do(e){Po(Oo.current);var t=Po(No.current),n=pe(t,e.type);t!==n&&(ca(Lo,e),ca(No,n))}function Mo(e){Lo.current===e&&(ua(No),ua(Lo))}var Fo=sa(0);function Bo(e){for(var t=e;null!==t;){if(13===t.tag){var n=t.memoizedState;if(null!==n&&(null===(n=n.dehydrated)||"$?"===n.data||"$!"===n.data))return t}else if(19===t.tag&&void 0!==t.memoizedProps.revealOrder){if(0!=(64&t.flags))return t}else if(null!==t.child){t.child.return=t,t=t.child;continue}if(t===e)break;for(;null===t.sibling;){if(null===t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}var Uo=null,$o=null,jo=!1;function zo(e,t){var n=Hs(5,null,null,0);n.elementType="DELETED",n.type="DELETED",n.stateNode=t,n.return=e,n.flags=8,null!==e.lastEffect?(e.lastEffect.nextEffect=n,e.lastEffect=n):e.firstEffect=e.lastEffect=n}function Zo(e,t){switch(e.tag){case 5:var n=e.type;return null!==(t=1!==t.nodeType||n.toLowerCase()!==t.nodeName.toLowerCase()?null:t)&&(e.stateNode=t,!0);case 6:return null!==(t=""===e.pendingProps||3!==t.nodeType?null:t)&&(e.stateNode=t,!0);default:return!1}}function Ho(e){if(jo){var t=$o;if(t){var n=t;if(!Zo(e,t)){if(!(t=Gr(n.nextSibling))||!Zo(e,t))return e.flags=-1025&e.flags|2,jo=!1,void(Uo=e);zo(Uo,n)}Uo=e,$o=Gr(t.firstChild)}else e.flags=-1025&e.flags|2,jo=!1,Uo=e}}function Yo(e){for(e=e.return;null!==e&&5!==e.tag&&3!==e.tag&&13!==e.tag;)e=e.return;Uo=e}function Vo(e){if(e!==Uo)return!1;if(!jo)return Yo(e),jo=!0,!1;var t=e.type;if(5!==e.tag||"head"!==t&&"body"!==t&&!Zr(t,e.memoizedProps))for(t=$o;t;)zo(e,t),t=Gr(t.nextSibling);if(Yo(e),13===e.tag){if(!(e=null!==(e=e.memoizedState)?e.dehydrated:null))throw Error(i(317));e:{for(e=e.nextSibling,t=0;e;){if(8===e.nodeType){var n=e.data;if("/$"===n){if(0===t){$o=Gr(e.nextSibling);break e}t--}else"$"!==n&&"$!"!==n&&"$?"!==n||t++}e=e.nextSibling}$o=null}}else $o=Uo?Gr(e.stateNode.nextSibling):null;return!0}function Go(){$o=Uo=null,jo=!1}var Wo=[];function qo(){for(var e=0;e<Wo.length;e++)Wo[e]._workInProgressVersionPrimary=null;Wo.length=0}var Ko=E.ReactCurrentDispatcher,Qo=E.ReactCurrentBatchConfig,Xo=0,Jo=null,ei=null,ti=null,ni=!1,ri=!1;function ai(){throw Error(i(321))}function oi(e,t){if(null===t)return!1;for(var n=0;n<t.length&&n<e.length;n++)if(!ur(e[n],t[n]))return!1;return!0}function ii(e,t,n,r,a,o){if(Xo=o,Jo=t,t.memoizedState=null,t.updateQueue=null,t.lanes=0,Ko.current=null===e||null===e.memoizedState?Pi:Ri,e=n(r,a),ri){o=0;do{if(ri=!1,!(25>o))throw Error(i(301));o+=1,ti=ei=null,t.updateQueue=null,Ko.current=Ii,e=n(r,a)}while(ri)}if(Ko.current=Oi,t=null!==ei&&null!==ei.next,Xo=0,ti=ei=Jo=null,ni=!1,t)throw Error(i(300));return e}function li(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return null===ti?Jo.memoizedState=ti=e:ti=ti.next=e,ti}function si(){if(null===ei){var e=Jo.alternate;e=null!==e?e.memoizedState:null}else e=ei.next;var t=null===ti?Jo.memoizedState:ti.next;if(null!==t)ti=t,ei=e;else{if(null===e)throw Error(i(310));e={memoizedState:(ei=e).memoizedState,baseState:ei.baseState,baseQueue:ei.baseQueue,queue:ei.queue,next:null},null===ti?Jo.memoizedState=ti=e:ti=ti.next=e}return ti}function ui(e,t){return"function"==typeof t?t(e):t}function ci(e){var t=si(),n=t.queue;if(null===n)throw Error(i(311));n.lastRenderedReducer=e;var r=ei,a=r.baseQueue,o=n.pending;if(null!==o){if(null!==a){var l=a.next;a.next=o.next,o.next=l}r.baseQueue=a=o,n.pending=null}if(null!==a){a=a.next,r=r.baseState;var s=l=o=null,u=a;do{var c=u.lane;if((Xo&c)===c)null!==s&&(s=s.next={lane:0,action:u.action,eagerReducer:u.eagerReducer,eagerState:u.eagerState,next:null}),r=u.eagerReducer===e?u.eagerState:e(r,u.action);else{var d={lane:c,action:u.action,eagerReducer:u.eagerReducer,eagerState:u.eagerState,next:null};null===s?(l=s=d,o=r):s=s.next=d,Jo.lanes|=c,jl|=c}u=u.next}while(null!==u&&u!==a);null===s?o=r:s.next=l,ur(r,t.memoizedState)||(Mi=!0),t.memoizedState=r,t.baseState=o,t.baseQueue=s,n.lastRenderedState=r}return[t.memoizedState,n.dispatch]}function di(e){var t=si(),n=t.queue;if(null===n)throw Error(i(311));n.lastRenderedReducer=e;var r=n.dispatch,a=n.pending,o=t.memoizedState;if(null!==a){n.pending=null;var l=a=a.next;do{o=e(o,l.action),l=l.next}while(l!==a);ur(o,t.memoizedState)||(Mi=!0),t.memoizedState=o,null===t.baseQueue&&(t.baseState=o),n.lastRenderedState=o}return[o,r]}function fi(e,t,n){var r=t._getVersion;r=r(t._source);var a=t._workInProgressVersionPrimary;if(null!==a?e=a===r:(e=e.mutableReadLanes,(e=(Xo&e)===e)&&(t._workInProgressVersionPrimary=r,Wo.push(t))),e)return n(t._source);throw Wo.push(t),Error(i(350))}function pi(e,t,n,r){var a=Rl;if(null===a)throw Error(i(349));var o=t._getVersion,l=o(t._source),s=Ko.current,u=s.useState((function(){return fi(a,t,n)})),c=u[1],d=u[0];u=ti;var f=e.memoizedState,p=f.refs,m=p.getSnapshot,h=f.source;f=f.subscribe;var g=Jo;return e.memoizedState={refs:p,source:t,subscribe:r},s.useEffect((function(){p.getSnapshot=n,p.setSnapshot=c;var e=o(t._source);if(!ur(l,e)){e=n(t._source),ur(d,e)||(c(e),e=ps(g),a.mutableReadLanes|=e&a.pendingLanes),e=a.mutableReadLanes,a.entangledLanes|=e;for(var r=a.entanglements,i=e;0<i;){var s=31-Zt(i),u=1<<s;r[s]|=e,i&=~u}}}),[n,t,r]),s.useEffect((function(){return r(t._source,(function(){var e=p.getSnapshot,n=p.setSnapshot;try{n(e(t._source));var r=ps(g);a.mutableReadLanes|=r&a.pendingLanes}catch(o){n((function(){throw o}))}}))}),[t,r]),ur(m,n)&&ur(h,t)&&ur(f,r)||((e={pending:null,dispatch:null,lastRenderedReducer:ui,lastRenderedState:d}).dispatch=c=Li.bind(null,Jo,e),u.queue=e,u.baseQueue=null,d=fi(a,t,n),u.memoizedState=u.baseState=d),d}function mi(e,t,n){return pi(si(),e,t,n)}function hi(e){var t=li();return"function"==typeof e&&(e=e()),t.memoizedState=t.baseState=e,e=(e=t.queue={pending:null,dispatch:null,lastRenderedReducer:ui,lastRenderedState:e}).dispatch=Li.bind(null,Jo,e),[t.memoizedState,e]}function gi(e,t,n,r){return e={tag:e,create:t,destroy:n,deps:r,next:null},null===(t=Jo.updateQueue)?(t={lastEffect:null},Jo.updateQueue=t,t.lastEffect=e.next=e):null===(n=t.lastEffect)?t.lastEffect=e.next=e:(r=n.next,n.next=e,e.next=r,t.lastEffect=e),e}function bi(e){return e={current:e},li().memoizedState=e}function vi(){return si().memoizedState}function yi(e,t,n,r){var a=li();Jo.flags|=e,a.memoizedState=gi(1|t,n,void 0,void 0===r?null:r)}function wi(e,t,n,r){var a=si();r=void 0===r?null:r;var o=void 0;if(null!==ei){var i=ei.memoizedState;if(o=i.destroy,null!==r&&oi(r,i.deps))return void gi(t,n,o,r)}Jo.flags|=e,a.memoizedState=gi(1|t,n,o,r)}function Ei(e,t){return yi(516,4,e,t)}function ki(e,t){return wi(516,4,e,t)}function Si(e,t){return wi(4,2,e,t)}function xi(e,t){return"function"==typeof t?(e=e(),t(e),function(){t(null)}):null!=t?(e=e(),t.current=e,function(){t.current=null}):void 0}function Ci(e,t,n){return n=null!=n?n.concat([e]):null,wi(4,2,xi.bind(null,t,e),n)}function _i(){}function Ti(e,t){var n=si();t=void 0===t?null:t;var r=n.memoizedState;return null!==r&&null!==t&&oi(t,r[1])?r[0]:(n.memoizedState=[e,t],e)}function Ai(e,t){var n=si();t=void 0===t?null:t;var r=n.memoizedState;return null!==r&&null!==t&&oi(t,r[1])?r[0]:(e=e(),n.memoizedState=[e,t],e)}function Ni(e,t){var n=Za();Ya(98>n?98:n,(function(){e(!0)})),Ya(97<n?97:n,(function(){var n=Qo.transition;Qo.transition=1;try{e(!1),t()}finally{Qo.transition=n}}))}function Li(e,t,n){var r=fs(),a=ps(e),o={lane:a,action:n,eagerReducer:null,eagerState:null,next:null},i=t.pending;if(null===i?o.next=o:(o.next=i.next,i.next=o),t.pending=o,i=e.alternate,e===Jo||null!==i&&i===Jo)ri=ni=!0;else{if(0===e.lanes&&(null===i||0===i.lanes)&&null!==(i=t.lastRenderedReducer))try{var l=t.lastRenderedState,s=i(l,n);if(o.eagerReducer=i,o.eagerState=s,ur(s,l))return}catch(u){}ms(e,a,r)}}var Oi={readContext:oo,useCallback:ai,useContext:ai,useEffect:ai,useImperativeHandle:ai,useLayoutEffect:ai,useMemo:ai,useReducer:ai,useRef:ai,useState:ai,useDebugValue:ai,useDeferredValue:ai,useTransition:ai,useMutableSource:ai,useOpaqueIdentifier:ai,unstable_isNewReconciler:!1},Pi={readContext:oo,useCallback:function(e,t){return li().memoizedState=[e,void 0===t?null:t],e},useContext:oo,useEffect:Ei,useImperativeHandle:function(e,t,n){return n=null!=n?n.concat([e]):null,yi(4,2,xi.bind(null,t,e),n)},useLayoutEffect:function(e,t){return yi(4,2,e,t)},useMemo:function(e,t){var n=li();return t=void 0===t?null:t,e=e(),n.memoizedState=[e,t],e},useReducer:function(e,t,n){var r=li();return t=void 0!==n?n(t):t,r.memoizedState=r.baseState=t,e=(e=r.queue={pending:null,dispatch:null,lastRenderedReducer:e,lastRenderedState:t}).dispatch=Li.bind(null,Jo,e),[r.memoizedState,e]},useRef:bi,useState:hi,useDebugValue:_i,useDeferredValue:function(e){var t=hi(e),n=t[0],r=t[1];return Ei((function(){var t=Qo.transition;Qo.transition=1;try{r(e)}finally{Qo.transition=t}}),[e]),n},useTransition:function(){var e=hi(!1),t=e[0];return bi(e=Ni.bind(null,e[1])),[e,t]},useMutableSource:function(e,t,n){var r=li();return r.memoizedState={refs:{getSnapshot:t,setSnapshot:null},source:e,subscribe:n},pi(r,e,t,n)},useOpaqueIdentifier:function(){if(jo){var e=!1,t=function(e){return{$$typeof:D,toString:e,valueOf:e}}((function(){throw e||(e=!0,n("r:"+(qr++).toString(36))),Error(i(355))})),n=hi(t)[1];return 0==(2&Jo.mode)&&(Jo.flags|=516,gi(5,(function(){n("r:"+(qr++).toString(36))}),void 0,null)),t}return hi(t="r:"+(qr++).toString(36)),t},unstable_isNewReconciler:!1},Ri={readContext:oo,useCallback:Ti,useContext:oo,useEffect:ki,useImperativeHandle:Ci,useLayoutEffect:Si,useMemo:Ai,useReducer:ci,useRef:vi,useState:function(){return ci(ui)},useDebugValue:_i,useDeferredValue:function(e){var t=ci(ui),n=t[0],r=t[1];return ki((function(){var t=Qo.transition;Qo.transition=1;try{r(e)}finally{Qo.transition=t}}),[e]),n},useTransition:function(){var e=ci(ui)[0];return[vi().current,e]},useMutableSource:mi,useOpaqueIdentifier:function(){return ci(ui)[0]},unstable_isNewReconciler:!1},Ii={readContext:oo,useCallback:Ti,useContext:oo,useEffect:ki,useImperativeHandle:Ci,useLayoutEffect:Si,useMemo:Ai,useReducer:di,useRef:vi,useState:function(){return di(ui)},useDebugValue:_i,useDeferredValue:function(e){var t=di(ui),n=t[0],r=t[1];return ki((function(){var t=Qo.transition;Qo.transition=1;try{r(e)}finally{Qo.transition=t}}),[e]),n},useTransition:function(){var e=di(ui)[0];return[vi().current,e]},useMutableSource:mi,useOpaqueIdentifier:function(){return di(ui)[0]},unstable_isNewReconciler:!1},Di=E.ReactCurrentOwner,Mi=!1;function Fi(e,t,n,r){t.child=null===e?To(t,null,n,r):_o(t,e.child,n,r)}function Bi(e,t,n,r,a){n=n.render;var o=t.ref;return ao(t,a),r=ii(e,t,n,r,o,a),null===e||Mi?(t.flags|=1,Fi(e,t,r,a),t.child):(t.updateQueue=e.updateQueue,t.flags&=-517,e.lanes&=~a,ol(e,t,a))}function Ui(e,t,n,r,a,o){if(null===e){var i=n.type;return"function"!=typeof i||Ys(i)||void 0!==i.defaultProps||null!==n.compare||void 0!==n.defaultProps?((e=Gs(n.type,null,r,t,t.mode,o)).ref=t.ref,e.return=t,t.child=e):(t.tag=15,t.type=i,$i(e,t,i,r,a,o))}return i=e.child,0==(a&o)&&(a=i.memoizedProps,(n=null!==(n=n.compare)?n:dr)(a,r)&&e.ref===t.ref)?ol(e,t,o):(t.flags|=1,(e=Vs(i,r)).ref=t.ref,e.return=t,t.child=e)}function $i(e,t,n,r,a,o){if(null!==e&&dr(e.memoizedProps,r)&&e.ref===t.ref){if(Mi=!1,0==(o&a))return t.lanes=e.lanes,ol(e,t,o);0!=(16384&e.flags)&&(Mi=!0)}return Zi(e,t,n,r,o)}function ji(e,t,n){var r=t.pendingProps,a=r.children,o=null!==e?e.memoizedState:null;if("hidden"===r.mode||"unstable-defer-without-hiding"===r.mode)if(0==(4&t.mode))t.memoizedState={baseLanes:0},ks(t,n);else{if(0==(1073741824&n))return e=null!==o?o.baseLanes|n:n,t.lanes=t.childLanes=1073741824,t.memoizedState={baseLanes:e},ks(t,e),null;t.memoizedState={baseLanes:0},ks(t,null!==o?o.baseLanes:n)}else null!==o?(r=o.baseLanes|n,t.memoizedState=null):r=n,ks(t,r);return Fi(e,t,a,n),t.child}function zi(e,t){var n=t.ref;(null===e&&null!==n||null!==e&&e.ref!==n)&&(t.flags|=128)}function Zi(e,t,n,r,a){var o=ga(n)?ma:fa.current;return o=ha(t,o),ao(t,a),n=ii(e,t,n,r,o,a),null===e||Mi?(t.flags|=1,Fi(e,t,n,a),t.child):(t.updateQueue=e.updateQueue,t.flags&=-517,e.lanes&=~a,ol(e,t,a))}function Hi(e,t,n,r,a){if(ga(n)){var o=!0;wa(t)}else o=!1;if(ao(t,a),null===t.stateNode)null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),yo(t,n,r),Eo(t,n,r,a),r=!0;else if(null===e){var i=t.stateNode,l=t.memoizedProps;i.props=l;var s=i.context,u=n.contextType;"object"==typeof u&&null!==u?u=oo(u):u=ha(t,u=ga(n)?ma:fa.current);var c=n.getDerivedStateFromProps,d="function"==typeof c||"function"==typeof i.getSnapshotBeforeUpdate;d||"function"!=typeof i.UNSAFE_componentWillReceiveProps&&"function"!=typeof i.componentWillReceiveProps||(l!==r||s!==u)&&wo(t,i,r,u),io=!1;var f=t.memoizedState;i.state=f,po(t,r,i,a),s=t.memoizedState,l!==r||f!==s||pa.current||io?("function"==typeof c&&(go(t,n,c,r),s=t.memoizedState),(l=io||vo(t,n,l,r,f,s,u))?(d||"function"!=typeof i.UNSAFE_componentWillMount&&"function"!=typeof i.componentWillMount||("function"==typeof i.componentWillMount&&i.componentWillMount(),"function"==typeof i.UNSAFE_componentWillMount&&i.UNSAFE_componentWillMount()),"function"==typeof i.componentDidMount&&(t.flags|=4)):("function"==typeof i.componentDidMount&&(t.flags|=4),t.memoizedProps=r,t.memoizedState=s),i.props=r,i.state=s,i.context=u,r=l):("function"==typeof i.componentDidMount&&(t.flags|=4),r=!1)}else{i=t.stateNode,so(e,t),l=t.memoizedProps,u=t.type===t.elementType?l:Ka(t.type,l),i.props=u,d=t.pendingProps,f=i.context,"object"==typeof(s=n.contextType)&&null!==s?s=oo(s):s=ha(t,s=ga(n)?ma:fa.current);var p=n.getDerivedStateFromProps;(c="function"==typeof p||"function"==typeof i.getSnapshotBeforeUpdate)||"function"!=typeof i.UNSAFE_componentWillReceiveProps&&"function"!=typeof i.componentWillReceiveProps||(l!==d||f!==s)&&wo(t,i,r,s),io=!1,f=t.memoizedState,i.state=f,po(t,r,i,a);var m=t.memoizedState;l!==d||f!==m||pa.current||io?("function"==typeof p&&(go(t,n,p,r),m=t.memoizedState),(u=io||vo(t,n,u,r,f,m,s))?(c||"function"!=typeof i.UNSAFE_componentWillUpdate&&"function"!=typeof i.componentWillUpdate||("function"==typeof i.componentWillUpdate&&i.componentWillUpdate(r,m,s),"function"==typeof i.UNSAFE_componentWillUpdate&&i.UNSAFE_componentWillUpdate(r,m,s)),"function"==typeof i.componentDidUpdate&&(t.flags|=4),"function"==typeof i.getSnapshotBeforeUpdate&&(t.flags|=256)):("function"!=typeof i.componentDidUpdate||l===e.memoizedProps&&f===e.memoizedState||(t.flags|=4),"function"!=typeof i.getSnapshotBeforeUpdate||l===e.memoizedProps&&f===e.memoizedState||(t.flags|=256),t.memoizedProps=r,t.memoizedState=m),i.props=r,i.state=m,i.context=s,r=u):("function"!=typeof i.componentDidUpdate||l===e.memoizedProps&&f===e.memoizedState||(t.flags|=4),"function"!=typeof i.getSnapshotBeforeUpdate||l===e.memoizedProps&&f===e.memoizedState||(t.flags|=256),r=!1)}return Yi(e,t,n,r,o,a)}function Yi(e,t,n,r,a,o){zi(e,t);var i=0!=(64&t.flags);if(!r&&!i)return a&&Ea(t,n,!1),ol(e,t,o);r=t.stateNode,Di.current=t;var l=i&&"function"!=typeof n.getDerivedStateFromError?null:r.render();return t.flags|=1,null!==e&&i?(t.child=_o(t,e.child,null,o),t.child=_o(t,null,l,o)):Fi(e,t,l,o),t.memoizedState=r.state,a&&Ea(t,n,!0),t.child}function Vi(e){var t=e.stateNode;t.pendingContext?va(0,t.pendingContext,t.pendingContext!==t.context):t.context&&va(0,t.context,!1),Ro(e,t.containerInfo)}var Gi,Wi,qi,Ki,Qi={dehydrated:null,retryLane:0};function Xi(e,t,n){var r,a=t.pendingProps,o=Fo.current,i=!1;return(r=0!=(64&t.flags))||(r=(null===e||null!==e.memoizedState)&&0!=(2&o)),r?(i=!0,t.flags&=-65):null!==e&&null===e.memoizedState||void 0===a.fallback||!0===a.unstable_avoidThisFallback||(o|=1),ca(Fo,1&o),null===e?(void 0!==a.fallback&&Ho(t),e=a.children,o=a.fallback,i?(e=Ji(t,e,o,n),t.child.memoizedState={baseLanes:n},t.memoizedState=Qi,e):"number"==typeof a.unstable_expectedLoadTime?(e=Ji(t,e,o,n),t.child.memoizedState={baseLanes:n},t.memoizedState=Qi,t.lanes=33554432,e):((n=qs({mode:"visible",children:e},t.mode,n,null)).return=t,t.child=n)):(e.memoizedState,i?(a=tl(e,t,a.children,a.fallback,n),i=t.child,o=e.child.memoizedState,i.memoizedState=null===o?{baseLanes:n}:{baseLanes:o.baseLanes|n},i.childLanes=e.childLanes&~n,t.memoizedState=Qi,a):(n=el(e,t,a.children,n),t.memoizedState=null,n))}function Ji(e,t,n,r){var a=e.mode,o=e.child;return t={mode:"hidden",children:t},0==(2&a)&&null!==o?(o.childLanes=0,o.pendingProps=t):o=qs(t,a,0,null),n=Ws(n,a,r,null),o.return=e,n.return=e,o.sibling=n,e.child=o,n}function el(e,t,n,r){var a=e.child;return e=a.sibling,n=Vs(a,{mode:"visible",children:n}),0==(2&t.mode)&&(n.lanes=r),n.return=t,n.sibling=null,null!==e&&(e.nextEffect=null,e.flags=8,t.firstEffect=t.lastEffect=e),t.child=n}function tl(e,t,n,r,a){var o=t.mode,i=e.child;e=i.sibling;var l={mode:"hidden",children:n};return 0==(2&o)&&t.child!==i?((n=t.child).childLanes=0,n.pendingProps=l,null!==(i=n.lastEffect)?(t.firstEffect=n.firstEffect,t.lastEffect=i,i.nextEffect=null):t.firstEffect=t.lastEffect=null):n=Vs(i,l),null!==e?r=Vs(e,r):(r=Ws(r,o,a,null)).flags|=2,r.return=t,n.return=t,n.sibling=r,t.child=n,r}function nl(e,t){e.lanes|=t;var n=e.alternate;null!==n&&(n.lanes|=t),ro(e.return,t)}function rl(e,t,n,r,a,o){var i=e.memoizedState;null===i?e.memoizedState={isBackwards:t,rendering:null,renderingStartTime:0,last:r,tail:n,tailMode:a,lastEffect:o}:(i.isBackwards=t,i.rendering=null,i.renderingStartTime=0,i.last=r,i.tail=n,i.tailMode=a,i.lastEffect=o)}function al(e,t,n){var r=t.pendingProps,a=r.revealOrder,o=r.tail;if(Fi(e,t,r.children,n),0!=(2&(r=Fo.current)))r=1&r|2,t.flags|=64;else{if(null!==e&&0!=(64&e.flags))e:for(e=t.child;null!==e;){if(13===e.tag)null!==e.memoizedState&&nl(e,n);else if(19===e.tag)nl(e,n);else if(null!==e.child){e.child.return=e,e=e.child;continue}if(e===t)break e;for(;null===e.sibling;){if(null===e.return||e.return===t)break e;e=e.return}e.sibling.return=e.return,e=e.sibling}r&=1}if(ca(Fo,r),0==(2&t.mode))t.memoizedState=null;else switch(a){case"forwards":for(n=t.child,a=null;null!==n;)null!==(e=n.alternate)&&null===Bo(e)&&(a=n),n=n.sibling;null===(n=a)?(a=t.child,t.child=null):(a=n.sibling,n.sibling=null),rl(t,!1,a,n,o,t.lastEffect);break;case"backwards":for(n=null,a=t.child,t.child=null;null!==a;){if(null!==(e=a.alternate)&&null===Bo(e)){t.child=a;break}e=a.sibling,a.sibling=n,n=a,a=e}rl(t,!0,n,null,o,t.lastEffect);break;case"together":rl(t,!1,null,null,void 0,t.lastEffect);break;default:t.memoizedState=null}return t.child}function ol(e,t,n){if(null!==e&&(t.dependencies=e.dependencies),jl|=t.lanes,0!=(n&t.childLanes)){if(null!==e&&t.child!==e.child)throw Error(i(153));if(null!==t.child){for(n=Vs(e=t.child,e.pendingProps),t.child=n,n.return=t;null!==e.sibling;)e=e.sibling,(n=n.sibling=Vs(e,e.pendingProps)).return=t;n.sibling=null}return t.child}return null}function il(e,t){if(!jo)switch(e.tailMode){case"hidden":t=e.tail;for(var n=null;null!==t;)null!==t.alternate&&(n=t),t=t.sibling;null===n?e.tail=null:n.sibling=null;break;case"collapsed":n=e.tail;for(var r=null;null!==n;)null!==n.alternate&&(r=n),n=n.sibling;null===r?t||null===e.tail?e.tail=null:e.tail.sibling=null:r.sibling=null}}function ll(e,t,n){var r=t.pendingProps;switch(t.tag){case 2:case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return null;case 1:case 17:return ga(t.type)&&ba(),null;case 3:return Io(),ua(pa),ua(fa),qo(),(r=t.stateNode).pendingContext&&(r.context=r.pendingContext,r.pendingContext=null),null!==e&&null!==e.child||(Vo(t)?t.flags|=4:r.hydrate||(t.flags|=256)),Wi(t),null;case 5:Mo(t);var o=Po(Oo.current);if(n=t.type,null!==e&&null!=t.stateNode)qi(e,t,n,r,o),e.ref!==t.ref&&(t.flags|=128);else{if(!r){if(null===t.stateNode)throw Error(i(166));return null}if(e=Po(No.current),Vo(t)){r=t.stateNode,n=t.type;var l=t.memoizedProps;switch(r[Qr]=t,r[Xr]=l,n){case"dialog":Nr("cancel",r),Nr("close",r);break;case"iframe":case"object":case"embed":Nr("load",r);break;case"video":case"audio":for(e=0;e<Cr.length;e++)Nr(Cr[e],r);break;case"source":Nr("error",r);break;case"img":case"image":case"link":Nr("error",r),Nr("load",r);break;case"details":Nr("toggle",r);break;case"input":ee(r,l),Nr("invalid",r);break;case"select":r._wrapperState={wasMultiple:!!l.multiple},Nr("invalid",r);break;case"textarea":se(r,l),Nr("invalid",r)}for(var u in Se(n,l),e=null,l)l.hasOwnProperty(u)&&(o=l[u],"children"===u?"string"==typeof o?r.textContent!==o&&(e=["children",o]):"number"==typeof o&&r.textContent!==""+o&&(e=["children",""+o]):s.hasOwnProperty(u)&&null!=o&&"onScroll"===u&&Nr("scroll",r));switch(n){case"input":K(r),re(r,l,!0);break;case"textarea":K(r),ce(r);break;case"select":case"option":break;default:"function"==typeof l.onClick&&(r.onclick=Ur)}r=e,t.updateQueue=r,null!==r&&(t.flags|=4)}else{switch(u=9===o.nodeType?o:o.ownerDocument,e===de.html&&(e=fe(n)),e===de.html?"script"===n?((e=u.createElement("div")).innerHTML="<script><\/script>",e=e.removeChild(e.firstChild)):"string"==typeof r.is?e=u.createElement(n,{is:r.is}):(e=u.createElement(n),"select"===n&&(u=e,r.multiple?u.multiple=!0:r.size&&(u.size=r.size))):e=u.createElementNS(e,n),e[Qr]=t,e[Xr]=r,Gi(e,t,!1,!1),t.stateNode=e,u=xe(n,r),n){case"dialog":Nr("cancel",e),Nr("close",e),o=r;break;case"iframe":case"object":case"embed":Nr("load",e),o=r;break;case"video":case"audio":for(o=0;o<Cr.length;o++)Nr(Cr[o],e);o=r;break;case"source":Nr("error",e),o=r;break;case"img":case"image":case"link":Nr("error",e),Nr("load",e),o=r;break;case"details":Nr("toggle",e),o=r;break;case"input":ee(e,r),o=J(e,r),Nr("invalid",e);break;case"option":o=oe(e,r);break;case"select":e._wrapperState={wasMultiple:!!r.multiple},o=a({},r,{value:void 0}),Nr("invalid",e);break;case"textarea":se(e,r),o=le(e,r),Nr("invalid",e);break;default:o=r}Se(n,o);var c=o;for(l in c)if(c.hasOwnProperty(l)){var d=c[l];"style"===l?Ee(e,d):"dangerouslySetInnerHTML"===l?null!=(d=d?d.__html:void 0)&&ge(e,d):"children"===l?"string"==typeof d?("textarea"!==n||""!==d)&&be(e,d):"number"==typeof d&&be(e,""+d):"suppressContentEditableWarning"!==l&&"suppressHydrationWarning"!==l&&"autoFocus"!==l&&(s.hasOwnProperty(l)?null!=d&&"onScroll"===l&&Nr("scroll",e):null!=d&&w(e,l,d,u))}switch(n){case"input":K(e),re(e,r,!1);break;case"textarea":K(e),ce(e);break;case"option":null!=r.value&&e.setAttribute("value",""+W(r.value));break;case"select":e.multiple=!!r.multiple,null!=(l=r.value)?ie(e,!!r.multiple,l,!1):null!=r.defaultValue&&ie(e,!!r.multiple,r.defaultValue,!0);break;default:"function"==typeof o.onClick&&(e.onclick=Ur)}zr(n,r)&&(t.flags|=4)}null!==t.ref&&(t.flags|=128)}return null;case 6:if(e&&null!=t.stateNode)Ki(e,t,e.memoizedProps,r);else{if("string"!=typeof r&&null===t.stateNode)throw Error(i(166));n=Po(Oo.current),Po(No.current),Vo(t)?(r=t.stateNode,n=t.memoizedProps,r[Qr]=t,r.nodeValue!==n&&(t.flags|=4)):((r=(9===n.nodeType?n:n.ownerDocument).createTextNode(r))[Qr]=t,t.stateNode=r)}return null;case 13:return ua(Fo),r=t.memoizedState,0!=(64&t.flags)?(t.lanes=n,t):(r=null!==r,n=!1,null===e?void 0!==t.memoizedProps.fallback&&Vo(t):n=null!==e.memoizedState,r&&!n&&0!=(2&t.mode)&&(null===e&&!0!==t.memoizedProps.unstable_avoidThisFallback||0!=(1&Fo.current)?0===Bl&&(Bl=3):(0!==Bl&&3!==Bl||(Bl=4),null===Rl||0==(134217727&jl)&&0==(134217727&zl)||vs(Rl,Dl))),(r||n)&&(t.flags|=4),null);case 4:return Io(),Wi(t),null===e&&Or(t.stateNode.containerInfo),null;case 10:return no(t),null;case 19:if(ua(Fo),null===(r=t.memoizedState))return null;if(l=0!=(64&t.flags),null===(u=r.rendering))if(l)il(r,!1);else{if(0!==Bl||null!==e&&0!=(64&e.flags))for(e=t.child;null!==e;){if(null!==(u=Bo(e))){for(t.flags|=64,il(r,!1),null!==(l=u.updateQueue)&&(t.updateQueue=l,t.flags|=4),null===r.lastEffect&&(t.firstEffect=null),t.lastEffect=r.lastEffect,r=n,n=t.child;null!==n;)e=r,(l=n).flags&=2,l.nextEffect=null,l.firstEffect=null,l.lastEffect=null,null===(u=l.alternate)?(l.childLanes=0,l.lanes=e,l.child=null,l.memoizedProps=null,l.memoizedState=null,l.updateQueue=null,l.dependencies=null,l.stateNode=null):(l.childLanes=u.childLanes,l.lanes=u.lanes,l.child=u.child,l.memoizedProps=u.memoizedProps,l.memoizedState=u.memoizedState,l.updateQueue=u.updateQueue,l.type=u.type,e=u.dependencies,l.dependencies=null===e?null:{lanes:e.lanes,firstContext:e.firstContext}),n=n.sibling;return ca(Fo,1&Fo.current|2),t.child}e=e.sibling}null!==r.tail&&za()>Vl&&(t.flags|=64,l=!0,il(r,!1),t.lanes=33554432)}else{if(!l)if(null!==(e=Bo(u))){if(t.flags|=64,l=!0,null!==(n=e.updateQueue)&&(t.updateQueue=n,t.flags|=4),il(r,!0),null===r.tail&&"hidden"===r.tailMode&&!u.alternate&&!jo)return null!==(t=t.lastEffect=r.lastEffect)&&(t.nextEffect=null),null}else 2*za()-r.renderingStartTime>Vl&&1073741824!==n&&(t.flags|=64,l=!0,il(r,!1),t.lanes=33554432);r.isBackwards?(u.sibling=t.child,t.child=u):(null!==(n=r.last)?n.sibling=u:t.child=u,r.last=u)}return null!==r.tail?(n=r.tail,r.rendering=n,r.tail=n.sibling,r.lastEffect=t.lastEffect,r.renderingStartTime=za(),n.sibling=null,t=Fo.current,ca(Fo,l?1&t|2:1&t),n):null;case 23:case 24:return Ss(),null!==e&&null!==e.memoizedState!=(null!==t.memoizedState)&&"unstable-defer-without-hiding"!==r.mode&&(t.flags|=4),null}throw Error(i(156,t.tag))}function sl(e){switch(e.tag){case 1:ga(e.type)&&ba();var t=e.flags;return 4096&t?(e.flags=-4097&t|64,e):null;case 3:if(Io(),ua(pa),ua(fa),qo(),0!=(64&(t=e.flags)))throw Error(i(285));return e.flags=-4097&t|64,e;case 5:return Mo(e),null;case 13:return ua(Fo),4096&(t=e.flags)?(e.flags=-4097&t|64,e):null;case 19:return ua(Fo),null;case 4:return Io(),null;case 10:return no(e),null;case 23:case 24:return Ss(),null;default:return null}}function ul(e,t){try{var n="",r=t;do{n+=V(r),r=r.return}while(r);var a=n}catch(o){a="\nError generating stack: "+o.message+"\n"+o.stack}return{value:e,source:t,stack:a}}function cl(e,t){try{console.error(t.value)}catch(n){setTimeout((function(){throw n}))}}Gi=function(e,t){for(var n=t.child;null!==n;){if(5===n.tag||6===n.tag)e.appendChild(n.stateNode);else if(4!==n.tag&&null!==n.child){n.child.return=n,n=n.child;continue}if(n===t)break;for(;null===n.sibling;){if(null===n.return||n.return===t)return;n=n.return}n.sibling.return=n.return,n=n.sibling}},Wi=function(){},qi=function(e,t,n,r){var o=e.memoizedProps;if(o!==r){e=t.stateNode,Po(No.current);var i,l=null;switch(n){case"input":o=J(e,o),r=J(e,r),l=[];break;case"option":o=oe(e,o),r=oe(e,r),l=[];break;case"select":o=a({},o,{value:void 0}),r=a({},r,{value:void 0}),l=[];break;case"textarea":o=le(e,o),r=le(e,r),l=[];break;default:"function"!=typeof o.onClick&&"function"==typeof r.onClick&&(e.onclick=Ur)}for(d in Se(n,r),n=null,o)if(!r.hasOwnProperty(d)&&o.hasOwnProperty(d)&&null!=o[d])if("style"===d){var u=o[d];for(i in u)u.hasOwnProperty(i)&&(n||(n={}),n[i]="")}else"dangerouslySetInnerHTML"!==d&&"children"!==d&&"suppressContentEditableWarning"!==d&&"suppressHydrationWarning"!==d&&"autoFocus"!==d&&(s.hasOwnProperty(d)?l||(l=[]):(l=l||[]).push(d,null));for(d in r){var c=r[d];if(u=null!=o?o[d]:void 0,r.hasOwnProperty(d)&&c!==u&&(null!=c||null!=u))if("style"===d)if(u){for(i in u)!u.hasOwnProperty(i)||c&&c.hasOwnProperty(i)||(n||(n={}),n[i]="");for(i in c)c.hasOwnProperty(i)&&u[i]!==c[i]&&(n||(n={}),n[i]=c[i])}else n||(l||(l=[]),l.push(d,n)),n=c;else"dangerouslySetInnerHTML"===d?(c=c?c.__html:void 0,u=u?u.__html:void 0,null!=c&&u!==c&&(l=l||[]).push(d,c)):"children"===d?"string"!=typeof c&&"number"!=typeof c||(l=l||[]).push(d,""+c):"suppressContentEditableWarning"!==d&&"suppressHydrationWarning"!==d&&(s.hasOwnProperty(d)?(null!=c&&"onScroll"===d&&Nr("scroll",e),l||u===c||(l=[])):"object"==typeof c&&null!==c&&c.$$typeof===D?c.toString():(l=l||[]).push(d,c))}n&&(l=l||[]).push("style",n);var d=l;(t.updateQueue=d)&&(t.flags|=4)}},Ki=function(e,t,n,r){n!==r&&(t.flags|=4)};var dl="function"==typeof WeakMap?WeakMap:Map;function fl(e,t,n){(n=uo(-1,n)).tag=3,n.payload={element:null};var r=t.value;return n.callback=function(){Kl||(Kl=!0,Ql=r),cl(0,t)},n}function pl(e,t,n){(n=uo(-1,n)).tag=3;var r=e.type.getDerivedStateFromError;if("function"==typeof r){var a=t.value;n.payload=function(){return cl(0,t),r(a)}}var o=e.stateNode;return null!==o&&"function"==typeof o.componentDidCatch&&(n.callback=function(){"function"!=typeof r&&(null===Xl?Xl=new Set([this]):Xl.add(this),cl(0,t));var e=t.stack;this.componentDidCatch(t.value,{componentStack:null!==e?e:""})}),n}var ml="function"==typeof WeakSet?WeakSet:Set;function hl(e){var t=e.ref;if(null!==t)if("function"==typeof t)try{t(null)}catch(n){$s(e,n)}else t.current=null}function gl(e,t){switch(t.tag){case 0:case 11:case 15:case 22:case 5:case 6:case 4:case 17:return;case 1:if(256&t.flags&&null!==e){var n=e.memoizedProps,r=e.memoizedState;t=(e=t.stateNode).getSnapshotBeforeUpdate(t.elementType===t.type?n:Ka(t.type,n),r),e.__reactInternalSnapshotBeforeUpdate=t}return;case 3:return void(256&t.flags&&Vr(t.stateNode.containerInfo))}throw Error(i(163))}function bl(e,t,n){switch(n.tag){case 0:case 11:case 15:case 22:if(null!==(t=null!==(t=n.updateQueue)?t.lastEffect:null)){e=t=t.next;do{if(3==(3&e.tag)){var r=e.create;e.destroy=r()}e=e.next}while(e!==t)}if(null!==(t=null!==(t=n.updateQueue)?t.lastEffect:null)){e=t=t.next;do{var a=e;r=a.next,0!=(4&(a=a.tag))&&0!=(1&a)&&(Fs(n,e),Ms(n,e)),e=r}while(e!==t)}return;case 1:return e=n.stateNode,4&n.flags&&(null===t?e.componentDidMount():(r=n.elementType===n.type?t.memoizedProps:Ka(n.type,t.memoizedProps),e.componentDidUpdate(r,t.memoizedState,e.__reactInternalSnapshotBeforeUpdate))),void(null!==(t=n.updateQueue)&&mo(n,t,e));case 3:if(null!==(t=n.updateQueue)){if(e=null,null!==n.child)switch(n.child.tag){case 5:case 1:e=n.child.stateNode}mo(n,t,e)}return;case 5:return e=n.stateNode,void(null===t&&4&n.flags&&zr(n.type,n.memoizedProps)&&e.focus());case 6:case 4:case 12:case 19:case 17:case 20:case 21:case 23:case 24:return;case 13:return void(null===n.memoizedState&&(n=n.alternate,null!==n&&(n=n.memoizedState,null!==n&&(n=n.dehydrated,null!==n&&Et(n)))))}throw Error(i(163))}function vl(e,t){for(var n=e;;){if(5===n.tag){var r=n.stateNode;if(t)"function"==typeof(r=r.style).setProperty?r.setProperty("display","none","important"):r.display="none";else{r=n.stateNode;var a=n.memoizedProps.style;a=null!=a&&a.hasOwnProperty("display")?a.display:null,r.style.display=we("display",a)}}else if(6===n.tag)n.stateNode.nodeValue=t?"":n.memoizedProps;else if((23!==n.tag&&24!==n.tag||null===n.memoizedState||n===e)&&null!==n.child){n.child.return=n,n=n.child;continue}if(n===e)break;for(;null===n.sibling;){if(null===n.return||n.return===e)return;n=n.return}n.sibling.return=n.return,n=n.sibling}}function yl(e,t){if(Sa&&"function"==typeof Sa.onCommitFiberUnmount)try{Sa.onCommitFiberUnmount(ka,t)}catch(o){}switch(t.tag){case 0:case 11:case 14:case 15:case 22:if(null!==(e=t.updateQueue)&&null!==(e=e.lastEffect)){var n=e=e.next;do{var r=n,a=r.destroy;if(r=r.tag,void 0!==a)if(0!=(4&r))Fs(t,n);else{r=t;try{a()}catch(o){$s(r,o)}}n=n.next}while(n!==e)}break;case 1:if(hl(t),"function"==typeof(e=t.stateNode).componentWillUnmount)try{e.props=t.memoizedProps,e.state=t.memoizedState,e.componentWillUnmount()}catch(o){$s(t,o)}break;case 5:hl(t);break;case 4:Cl(e,t)}}function wl(e){e.alternate=null,e.child=null,e.dependencies=null,e.firstEffect=null,e.lastEffect=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.return=null,e.updateQueue=null}function El(e){return 5===e.tag||3===e.tag||4===e.tag}function kl(e){e:{for(var t=e.return;null!==t;){if(El(t))break e;t=t.return}throw Error(i(160))}var n=t;switch(t=n.stateNode,n.tag){case 5:var r=!1;break;case 3:case 4:t=t.containerInfo,r=!0;break;default:throw Error(i(161))}16&n.flags&&(be(t,""),n.flags&=-17);e:t:for(n=e;;){for(;null===n.sibling;){if(null===n.return||El(n.return)){n=null;break e}n=n.return}for(n.sibling.return=n.return,n=n.sibling;5!==n.tag&&6!==n.tag&&18!==n.tag;){if(2&n.flags)continue t;if(null===n.child||4===n.tag)continue t;n.child.return=n,n=n.child}if(!(2&n.flags)){n=n.stateNode;break e}}r?Sl(e,n,t):xl(e,n,t)}function Sl(e,t,n){var r=e.tag,a=5===r||6===r;if(a)e=a?e.stateNode:e.stateNode.instance,t?8===n.nodeType?n.parentNode.insertBefore(e,t):n.insertBefore(e,t):(8===n.nodeType?(t=n.parentNode).insertBefore(e,n):(t=n).appendChild(e),null!=(n=n._reactRootContainer)||null!==t.onclick||(t.onclick=Ur));else if(4!==r&&null!==(e=e.child))for(Sl(e,t,n),e=e.sibling;null!==e;)Sl(e,t,n),e=e.sibling}function xl(e,t,n){var r=e.tag,a=5===r||6===r;if(a)e=a?e.stateNode:e.stateNode.instance,t?n.insertBefore(e,t):n.appendChild(e);else if(4!==r&&null!==(e=e.child))for(xl(e,t,n),e=e.sibling;null!==e;)xl(e,t,n),e=e.sibling}function Cl(e,t){for(var n,r,a=t,o=!1;;){if(!o){o=a.return;e:for(;;){if(null===o)throw Error(i(160));switch(n=o.stateNode,o.tag){case 5:r=!1;break e;case 3:case 4:n=n.containerInfo,r=!0;break e}o=o.return}o=!0}if(5===a.tag||6===a.tag){e:for(var l=e,s=a,u=s;;)if(yl(l,u),null!==u.child&&4!==u.tag)u.child.return=u,u=u.child;else{if(u===s)break e;for(;null===u.sibling;){if(null===u.return||u.return===s)break e;u=u.return}u.sibling.return=u.return,u=u.sibling}r?(l=n,s=a.stateNode,8===l.nodeType?l.parentNode.removeChild(s):l.removeChild(s)):n.removeChild(a.stateNode)}else if(4===a.tag){if(null!==a.child){n=a.stateNode.containerInfo,r=!0,a.child.return=a,a=a.child;continue}}else if(yl(e,a),null!==a.child){a.child.return=a,a=a.child;continue}if(a===t)break;for(;null===a.sibling;){if(null===a.return||a.return===t)return;4===(a=a.return).tag&&(o=!1)}a.sibling.return=a.return,a=a.sibling}}function _l(e,t){switch(t.tag){case 0:case 11:case 14:case 15:case 22:var n=t.updateQueue;if(null!==(n=null!==n?n.lastEffect:null)){var r=n=n.next;do{3==(3&r.tag)&&(e=r.destroy,r.destroy=void 0,void 0!==e&&e()),r=r.next}while(r!==n)}return;case 1:case 12:case 17:return;case 5:if(null!=(n=t.stateNode)){r=t.memoizedProps;var a=null!==e?e.memoizedProps:r;e=t.type;var o=t.updateQueue;if(t.updateQueue=null,null!==o){for(n[Xr]=r,"input"===e&&"radio"===r.type&&null!=r.name&&te(n,r),xe(e,a),t=xe(e,r),a=0;a<o.length;a+=2){var l=o[a],s=o[a+1];"style"===l?Ee(n,s):"dangerouslySetInnerHTML"===l?ge(n,s):"children"===l?be(n,s):w(n,l,s,t)}switch(e){case"input":ne(n,r);break;case"textarea":ue(n,r);break;case"select":e=n._wrapperState.wasMultiple,n._wrapperState.wasMultiple=!!r.multiple,null!=(o=r.value)?ie(n,!!r.multiple,o,!1):e!==!!r.multiple&&(null!=r.defaultValue?ie(n,!!r.multiple,r.defaultValue,!0):ie(n,!!r.multiple,r.multiple?[]:"",!1))}}}return;case 6:if(null===t.stateNode)throw Error(i(162));return void(t.stateNode.nodeValue=t.memoizedProps);case 3:return void((n=t.stateNode).hydrate&&(n.hydrate=!1,Et(n.containerInfo)));case 13:return null!==t.memoizedState&&(Yl=za(),vl(t.child,!0)),void Tl(t);case 19:return void Tl(t);case 23:case 24:return void vl(t,null!==t.memoizedState)}throw Error(i(163))}function Tl(e){var t=e.updateQueue;if(null!==t){e.updateQueue=null;var n=e.stateNode;null===n&&(n=e.stateNode=new ml),t.forEach((function(t){var r=zs.bind(null,e,t);n.has(t)||(n.add(t),t.then(r,r))}))}}function Al(e,t){return null!==e&&(null===(e=e.memoizedState)||null!==e.dehydrated)&&(null!==(t=t.memoizedState)&&null===t.dehydrated)}var Nl=Math.ceil,Ll=E.ReactCurrentDispatcher,Ol=E.ReactCurrentOwner,Pl=0,Rl=null,Il=null,Dl=0,Ml=0,Fl=sa(0),Bl=0,Ul=null,$l=0,jl=0,zl=0,Zl=0,Hl=null,Yl=0,Vl=1/0;function Gl(){Vl=za()+500}var Wl,ql=null,Kl=!1,Ql=null,Xl=null,Jl=!1,es=null,ts=90,ns=[],rs=[],as=null,os=0,is=null,ls=-1,ss=0,us=0,cs=null,ds=!1;function fs(){return 0!=(48&Pl)?za():-1!==ls?ls:ls=za()}function ps(e){if(0==(2&(e=e.mode)))return 1;if(0==(4&e))return 99===Za()?1:2;if(0===ss&&(ss=$l),0!==qa.transition){0!==us&&(us=null!==Hl?Hl.pendingLanes:0),e=ss;var t=4186112&~us;return 0===(t&=-t)&&(0===(t=(e=4186112&~e)&-e)&&(t=8192)),t}return e=Za(),0!=(4&Pl)&&98===e?e=Ut(12,ss):e=Ut(e=function(e){switch(e){case 99:return 15;case 98:return 10;case 97:case 96:return 8;case 95:return 2;default:return 0}}(e),ss),e}function ms(e,t,n){if(50<os)throw os=0,is=null,Error(i(185));if(null===(e=hs(e,t)))return null;zt(e,t,n),e===Rl&&(zl|=t,4===Bl&&vs(e,Dl));var r=Za();1===t?0!=(8&Pl)&&0==(48&Pl)?ys(e):(gs(e,n),0===Pl&&(Gl(),Ga())):(0==(4&Pl)||98!==r&&99!==r||(null===as?as=new Set([e]):as.add(e)),gs(e,n)),Hl=e}function hs(e,t){e.lanes|=t;var n=e.alternate;for(null!==n&&(n.lanes|=t),n=e,e=e.return;null!==e;)e.childLanes|=t,null!==(n=e.alternate)&&(n.childLanes|=t),n=e,e=e.return;return 3===n.tag?n.stateNode:null}function gs(e,t){for(var n=e.callbackNode,r=e.suspendedLanes,a=e.pingedLanes,o=e.expirationTimes,l=e.pendingLanes;0<l;){var s=31-Zt(l),u=1<<s,c=o[s];if(-1===c){if(0==(u&r)||0!=(u&a)){c=t,Mt(u);var d=Dt;o[s]=10<=d?c+250:6<=d?c+5e3:-1}}else c<=t&&(e.expiredLanes|=u);l&=~u}if(r=Ft(e,e===Rl?Dl:0),t=Dt,0===r)null!==n&&(n!==Ma&&_a(n),e.callbackNode=null,e.callbackPriority=0);else{if(null!==n){if(e.callbackPriority===t)return;n!==Ma&&_a(n)}15===t?(n=ys.bind(null,e),null===Ba?(Ba=[n],Ua=Ca(Oa,Wa)):Ba.push(n),n=Ma):14===t?n=Va(99,ys.bind(null,e)):(n=function(e){switch(e){case 15:case 14:return 99;case 13:case 12:case 11:case 10:return 98;case 9:case 8:case 7:case 6:case 4:case 5:return 97;case 3:case 2:case 1:return 95;case 0:return 90;default:throw Error(i(358,e))}}(t),n=Va(n,bs.bind(null,e))),e.callbackPriority=t,e.callbackNode=n}}function bs(e){if(ls=-1,us=ss=0,0!=(48&Pl))throw Error(i(327));var t=e.callbackNode;if(Ds()&&e.callbackNode!==t)return null;var n=Ft(e,e===Rl?Dl:0);if(0===n)return null;var r=n,a=Pl;Pl|=16;var o=_s();for(Rl===e&&Dl===r||(Gl(),xs(e,r));;)try{Ns();break}catch(s){Cs(e,s)}if(to(),Ll.current=o,Pl=a,null!==Il?r=0:(Rl=null,Dl=0,r=Bl),0!=($l&zl))xs(e,0);else if(0!==r){if(2===r&&(Pl|=64,e.hydrate&&(e.hydrate=!1,Vr(e.containerInfo)),0!==(n=Bt(e))&&(r=Ts(e,n))),1===r)throw t=Ul,xs(e,0),vs(e,n),gs(e,za()),t;switch(e.finishedWork=e.current.alternate,e.finishedLanes=n,r){case 0:case 1:throw Error(i(345));case 2:case 5:Ps(e);break;case 3:if(vs(e,n),(62914560&n)===n&&10<(r=Yl+500-za())){if(0!==Ft(e,0))break;if(((a=e.suspendedLanes)&n)!==n){fs(),e.pingedLanes|=e.suspendedLanes&a;break}e.timeoutHandle=Hr(Ps.bind(null,e),r);break}Ps(e);break;case 4:if(vs(e,n),(4186112&n)===n)break;for(r=e.eventTimes,a=-1;0<n;){var l=31-Zt(n);o=1<<l,(l=r[l])>a&&(a=l),n&=~o}if(n=a,10<(n=(120>(n=za()-n)?120:480>n?480:1080>n?1080:1920>n?1920:3e3>n?3e3:4320>n?4320:1960*Nl(n/1960))-n)){e.timeoutHandle=Hr(Ps.bind(null,e),n);break}Ps(e);break;default:throw Error(i(329))}}return gs(e,za()),e.callbackNode===t?bs.bind(null,e):null}function vs(e,t){for(t&=~Zl,t&=~zl,e.suspendedLanes|=t,e.pingedLanes&=~t,e=e.expirationTimes;0<t;){var n=31-Zt(t),r=1<<n;e[n]=-1,t&=~r}}function ys(e){if(0!=(48&Pl))throw Error(i(327));if(Ds(),e===Rl&&0!=(e.expiredLanes&Dl)){var t=Dl,n=Ts(e,t);0!=($l&zl)&&(n=Ts(e,t=Ft(e,t)))}else n=Ts(e,t=Ft(e,0));if(0!==e.tag&&2===n&&(Pl|=64,e.hydrate&&(e.hydrate=!1,Vr(e.containerInfo)),0!==(t=Bt(e))&&(n=Ts(e,t))),1===n)throw n=Ul,xs(e,0),vs(e,t),gs(e,za()),n;return e.finishedWork=e.current.alternate,e.finishedLanes=t,Ps(e),gs(e,za()),null}function ws(e,t){var n=Pl;Pl|=1;try{return e(t)}finally{0===(Pl=n)&&(Gl(),Ga())}}function Es(e,t){var n=Pl;Pl&=-2,Pl|=8;try{return e(t)}finally{0===(Pl=n)&&(Gl(),Ga())}}function ks(e,t){ca(Fl,Ml),Ml|=t,$l|=t}function Ss(){Ml=Fl.current,ua(Fl)}function xs(e,t){e.finishedWork=null,e.finishedLanes=0;var n=e.timeoutHandle;if(-1!==n&&(e.timeoutHandle=-1,Yr(n)),null!==Il)for(n=Il.return;null!==n;){var r=n;switch(r.tag){case 1:null!=(r=r.type.childContextTypes)&&ba();break;case 3:Io(),ua(pa),ua(fa),qo();break;case 5:Mo(r);break;case 4:Io();break;case 13:case 19:ua(Fo);break;case 10:no(r);break;case 23:case 24:Ss()}n=n.return}Rl=e,Il=Vs(e.current,null),Dl=Ml=$l=t,Bl=0,Ul=null,Zl=zl=jl=0}function Cs(e,t){for(;;){var n=Il;try{if(to(),Ko.current=Oi,ni){for(var r=Jo.memoizedState;null!==r;){var a=r.queue;null!==a&&(a.pending=null),r=r.next}ni=!1}if(Xo=0,ti=ei=Jo=null,ri=!1,Ol.current=null,null===n||null===n.return){Bl=1,Ul=t,Il=null;break}e:{var o=e,i=n.return,l=n,s=t;if(t=Dl,l.flags|=2048,l.firstEffect=l.lastEffect=null,null!==s&&"object"==typeof s&&"function"==typeof s.then){var u=s;if(0==(2&l.mode)){var c=l.alternate;c?(l.updateQueue=c.updateQueue,l.memoizedState=c.memoizedState,l.lanes=c.lanes):(l.updateQueue=null,l.memoizedState=null)}var d=0!=(1&Fo.current),f=i;do{var p;if(p=13===f.tag){var m=f.memoizedState;if(null!==m)p=null!==m.dehydrated;else{var h=f.memoizedProps;p=void 0!==h.fallback&&(!0!==h.unstable_avoidThisFallback||!d)}}if(p){var g=f.updateQueue;if(null===g){var b=new Set;b.add(u),f.updateQueue=b}else g.add(u);if(0==(2&f.mode)){if(f.flags|=64,l.flags|=16384,l.flags&=-2981,1===l.tag)if(null===l.alternate)l.tag=17;else{var v=uo(-1,1);v.tag=2,co(l,v)}l.lanes|=1;break e}s=void 0,l=t;var y=o.pingCache;if(null===y?(y=o.pingCache=new dl,s=new Set,y.set(u,s)):void 0===(s=y.get(u))&&(s=new Set,y.set(u,s)),!s.has(l)){s.add(l);var w=js.bind(null,o,u,l);u.then(w,w)}f.flags|=4096,f.lanes=t;break e}f=f.return}while(null!==f);s=Error((G(l.type)||"A React component")+" suspended while rendering, but no fallback UI was specified.\n\nAdd a <Suspense fallback=...> component higher in the tree to provide a loading indicator or placeholder to display.")}5!==Bl&&(Bl=2),s=ul(s,l),f=i;do{switch(f.tag){case 3:o=s,f.flags|=4096,t&=-t,f.lanes|=t,fo(f,fl(0,o,t));break e;case 1:o=s;var E=f.type,k=f.stateNode;if(0==(64&f.flags)&&("function"==typeof E.getDerivedStateFromError||null!==k&&"function"==typeof k.componentDidCatch&&(null===Xl||!Xl.has(k)))){f.flags|=4096,t&=-t,f.lanes|=t,fo(f,pl(f,o,t));break e}}f=f.return}while(null!==f)}Os(n)}catch(S){t=S,Il===n&&null!==n&&(Il=n=n.return);continue}break}}function _s(){var e=Ll.current;return Ll.current=Oi,null===e?Oi:e}function Ts(e,t){var n=Pl;Pl|=16;var r=_s();for(Rl===e&&Dl===t||xs(e,t);;)try{As();break}catch(a){Cs(e,a)}if(to(),Pl=n,Ll.current=r,null!==Il)throw Error(i(261));return Rl=null,Dl=0,Bl}function As(){for(;null!==Il;)Ls(Il)}function Ns(){for(;null!==Il&&!Ta();)Ls(Il)}function Ls(e){var t=Wl(e.alternate,e,Ml);e.memoizedProps=e.pendingProps,null===t?Os(e):Il=t,Ol.current=null}function Os(e){var t=e;do{var n=t.alternate;if(e=t.return,0==(2048&t.flags)){if(null!==(n=ll(n,t,Ml)))return void(Il=n);if(24!==(n=t).tag&&23!==n.tag||null===n.memoizedState||0!=(1073741824&Ml)||0==(4&n.mode)){for(var r=0,a=n.child;null!==a;)r|=a.lanes|a.childLanes,a=a.sibling;n.childLanes=r}null!==e&&0==(2048&e.flags)&&(null===e.firstEffect&&(e.firstEffect=t.firstEffect),null!==t.lastEffect&&(null!==e.lastEffect&&(e.lastEffect.nextEffect=t.firstEffect),e.lastEffect=t.lastEffect),1<t.flags&&(null!==e.lastEffect?e.lastEffect.nextEffect=t:e.firstEffect=t,e.lastEffect=t))}else{if(null!==(n=sl(t)))return n.flags&=2047,void(Il=n);null!==e&&(e.firstEffect=e.lastEffect=null,e.flags|=2048)}if(null!==(t=t.sibling))return void(Il=t);Il=t=e}while(null!==t);0===Bl&&(Bl=5)}function Ps(e){var t=Za();return Ya(99,Rs.bind(null,e,t)),null}function Rs(e,t){do{Ds()}while(null!==es);if(0!=(48&Pl))throw Error(i(327));var n=e.finishedWork;if(null===n)return null;if(e.finishedWork=null,e.finishedLanes=0,n===e.current)throw Error(i(177));e.callbackNode=null;var r=n.lanes|n.childLanes,a=r,o=e.pendingLanes&~a;e.pendingLanes=a,e.suspendedLanes=0,e.pingedLanes=0,e.expiredLanes&=a,e.mutableReadLanes&=a,e.entangledLanes&=a,a=e.entanglements;for(var l=e.eventTimes,s=e.expirationTimes;0<o;){var u=31-Zt(o),c=1<<u;a[u]=0,l[u]=-1,s[u]=-1,o&=~c}if(null!==as&&0==(24&r)&&as.has(e)&&as.delete(e),e===Rl&&(Il=Rl=null,Dl=0),1<n.flags?null!==n.lastEffect?(n.lastEffect.nextEffect=n,r=n.firstEffect):r=n:r=n.firstEffect,null!==r){if(a=Pl,Pl|=32,Ol.current=null,$r=Wt,gr(l=hr())){if("selectionStart"in l)s={start:l.selectionStart,end:l.selectionEnd};else e:if(s=(s=l.ownerDocument)&&s.defaultView||window,(c=s.getSelection&&s.getSelection())&&0!==c.rangeCount){s=c.anchorNode,o=c.anchorOffset,u=c.focusNode,c=c.focusOffset;try{s.nodeType,u.nodeType}catch(_){s=null;break e}var d=0,f=-1,p=-1,m=0,h=0,g=l,b=null;t:for(;;){for(var v;g!==s||0!==o&&3!==g.nodeType||(f=d+o),g!==u||0!==c&&3!==g.nodeType||(p=d+c),3===g.nodeType&&(d+=g.nodeValue.length),null!==(v=g.firstChild);)b=g,g=v;for(;;){if(g===l)break t;if(b===s&&++m===o&&(f=d),b===u&&++h===c&&(p=d),null!==(v=g.nextSibling))break;b=(g=b).parentNode}g=v}s=-1===f||-1===p?null:{start:f,end:p}}else s=null;s=s||{start:0,end:0}}else s=null;jr={focusedElem:l,selectionRange:s},Wt=!1,cs=null,ds=!1,ql=r;do{try{Is()}catch(_){if(null===ql)throw Error(i(330));$s(ql,_),ql=ql.nextEffect}}while(null!==ql);cs=null,ql=r;do{try{for(l=e;null!==ql;){var y=ql.flags;if(16&y&&be(ql.stateNode,""),128&y){var w=ql.alternate;if(null!==w){var E=w.ref;null!==E&&("function"==typeof E?E(null):E.current=null)}}switch(1038&y){case 2:kl(ql),ql.flags&=-3;break;case 6:kl(ql),ql.flags&=-3,_l(ql.alternate,ql);break;case 1024:ql.flags&=-1025;break;case 1028:ql.flags&=-1025,_l(ql.alternate,ql);break;case 4:_l(ql.alternate,ql);break;case 8:Cl(l,s=ql);var k=s.alternate;wl(s),null!==k&&wl(k)}ql=ql.nextEffect}}catch(_){if(null===ql)throw Error(i(330));$s(ql,_),ql=ql.nextEffect}}while(null!==ql);if(E=jr,w=hr(),y=E.focusedElem,l=E.selectionRange,w!==y&&y&&y.ownerDocument&&mr(y.ownerDocument.documentElement,y)){null!==l&&gr(y)&&(w=l.start,void 0===(E=l.end)&&(E=w),"selectionStart"in y?(y.selectionStart=w,y.selectionEnd=Math.min(E,y.value.length)):(E=(w=y.ownerDocument||document)&&w.defaultView||window).getSelection&&(E=E.getSelection(),s=y.textContent.length,k=Math.min(l.start,s),l=void 0===l.end?k:Math.min(l.end,s),!E.extend&&k>l&&(s=l,l=k,k=s),s=pr(y,k),o=pr(y,l),s&&o&&(1!==E.rangeCount||E.anchorNode!==s.node||E.anchorOffset!==s.offset||E.focusNode!==o.node||E.focusOffset!==o.offset)&&((w=w.createRange()).setStart(s.node,s.offset),E.removeAllRanges(),k>l?(E.addRange(w),E.extend(o.node,o.offset)):(w.setEnd(o.node,o.offset),E.addRange(w))))),w=[];for(E=y;E=E.parentNode;)1===E.nodeType&&w.push({element:E,left:E.scrollLeft,top:E.scrollTop});for("function"==typeof y.focus&&y.focus(),y=0;y<w.length;y++)(E=w[y]).element.scrollLeft=E.left,E.element.scrollTop=E.top}Wt=!!$r,jr=$r=null,e.current=n,ql=r;do{try{for(y=e;null!==ql;){var S=ql.flags;if(36&S&&bl(y,ql.alternate,ql),128&S){w=void 0;var x=ql.ref;if(null!==x){var C=ql.stateNode;ql.tag,w=C,"function"==typeof x?x(w):x.current=w}}ql=ql.nextEffect}}catch(_){if(null===ql)throw Error(i(330));$s(ql,_),ql=ql.nextEffect}}while(null!==ql);ql=null,Fa(),Pl=a}else e.current=n;if(Jl)Jl=!1,es=e,ts=t;else for(ql=r;null!==ql;)t=ql.nextEffect,ql.nextEffect=null,8&ql.flags&&((S=ql).sibling=null,S.stateNode=null),ql=t;if(0===(r=e.pendingLanes)&&(Xl=null),1===r?e===is?os++:(os=0,is=e):os=0,n=n.stateNode,Sa&&"function"==typeof Sa.onCommitFiberRoot)try{Sa.onCommitFiberRoot(ka,n,void 0,64==(64&n.current.flags))}catch(_){}if(gs(e,za()),Kl)throw Kl=!1,e=Ql,Ql=null,e;return 0!=(8&Pl)||Ga(),null}function Is(){for(;null!==ql;){var e=ql.alternate;ds||null===cs||(0!=(8&ql.flags)?Je(ql,cs)&&(ds=!0):13===ql.tag&&Al(e,ql)&&Je(ql,cs)&&(ds=!0));var t=ql.flags;0!=(256&t)&&gl(e,ql),0==(512&t)||Jl||(Jl=!0,Va(97,(function(){return Ds(),null}))),ql=ql.nextEffect}}function Ds(){if(90!==ts){var e=97<ts?97:ts;return ts=90,Ya(e,Bs)}return!1}function Ms(e,t){ns.push(t,e),Jl||(Jl=!0,Va(97,(function(){return Ds(),null})))}function Fs(e,t){rs.push(t,e),Jl||(Jl=!0,Va(97,(function(){return Ds(),null})))}function Bs(){if(null===es)return!1;var e=es;if(es=null,0!=(48&Pl))throw Error(i(331));var t=Pl;Pl|=32;var n=rs;rs=[];for(var r=0;r<n.length;r+=2){var a=n[r],o=n[r+1],l=a.destroy;if(a.destroy=void 0,"function"==typeof l)try{l()}catch(u){if(null===o)throw Error(i(330));$s(o,u)}}for(n=ns,ns=[],r=0;r<n.length;r+=2){a=n[r],o=n[r+1];try{var s=a.create;a.destroy=s()}catch(u){if(null===o)throw Error(i(330));$s(o,u)}}for(s=e.current.firstEffect;null!==s;)e=s.nextEffect,s.nextEffect=null,8&s.flags&&(s.sibling=null,s.stateNode=null),s=e;return Pl=t,Ga(),!0}function Us(e,t,n){co(e,t=fl(0,t=ul(n,t),1)),t=fs(),null!==(e=hs(e,1))&&(zt(e,1,t),gs(e,t))}function $s(e,t){if(3===e.tag)Us(e,e,t);else for(var n=e.return;null!==n;){if(3===n.tag){Us(n,e,t);break}if(1===n.tag){var r=n.stateNode;if("function"==typeof n.type.getDerivedStateFromError||"function"==typeof r.componentDidCatch&&(null===Xl||!Xl.has(r))){var a=pl(n,e=ul(t,e),1);if(co(n,a),a=fs(),null!==(n=hs(n,1)))zt(n,1,a),gs(n,a);else if("function"==typeof r.componentDidCatch&&(null===Xl||!Xl.has(r)))try{r.componentDidCatch(t,e)}catch(o){}break}}n=n.return}}function js(e,t,n){var r=e.pingCache;null!==r&&r.delete(t),t=fs(),e.pingedLanes|=e.suspendedLanes&n,Rl===e&&(Dl&n)===n&&(4===Bl||3===Bl&&(62914560&Dl)===Dl&&500>za()-Yl?xs(e,0):Zl|=n),gs(e,t)}function zs(e,t){var n=e.stateNode;null!==n&&n.delete(t),0===(t=0)&&(0==(2&(t=e.mode))?t=1:0==(4&t)?t=99===Za()?1:2:(0===ss&&(ss=$l),0===(t=$t(62914560&~ss))&&(t=4194304))),n=fs(),null!==(e=hs(e,t))&&(zt(e,t,n),gs(e,n))}function Zs(e,t,n,r){this.tag=e,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=t,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=r,this.flags=0,this.lastEffect=this.firstEffect=this.nextEffect=null,this.childLanes=this.lanes=0,this.alternate=null}function Hs(e,t,n,r){return new Zs(e,t,n,r)}function Ys(e){return!(!(e=e.prototype)||!e.isReactComponent)}function Vs(e,t){var n=e.alternate;return null===n?((n=Hs(e.tag,t,e.key,e.mode)).elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.type=e.type,n.flags=0,n.nextEffect=null,n.firstEffect=null,n.lastEffect=null),n.childLanes=e.childLanes,n.lanes=e.lanes,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue,t=e.dependencies,n.dependencies=null===t?null:{lanes:t.lanes,firstContext:t.firstContext},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n}function Gs(e,t,n,r,a,o){var l=2;if(r=e,"function"==typeof e)Ys(e)&&(l=1);else if("string"==typeof e)l=5;else e:switch(e){case x:return Ws(n.children,a,o,t);case M:l=8,a|=16;break;case C:l=8,a|=1;break;case _:return(e=Hs(12,n,t,8|a)).elementType=_,e.type=_,e.lanes=o,e;case L:return(e=Hs(13,n,t,a)).type=L,e.elementType=L,e.lanes=o,e;case O:return(e=Hs(19,n,t,a)).elementType=O,e.lanes=o,e;case F:return qs(n,a,o,t);case B:return(e=Hs(24,n,t,a)).elementType=B,e.lanes=o,e;default:if("object"==typeof e&&null!==e)switch(e.$$typeof){case T:l=10;break e;case A:l=9;break e;case N:l=11;break e;case P:l=14;break e;case R:l=16,r=null;break e;case I:l=22;break e}throw Error(i(130,null==e?e:typeof e,""))}return(t=Hs(l,n,t,a)).elementType=e,t.type=r,t.lanes=o,t}function Ws(e,t,n,r){return(e=Hs(7,e,r,t)).lanes=n,e}function qs(e,t,n,r){return(e=Hs(23,e,r,t)).elementType=F,e.lanes=n,e}function Ks(e,t,n){return(e=Hs(6,e,null,t)).lanes=n,e}function Qs(e,t,n){return(t=Hs(4,null!==e.children?e.children:[],e.key,t)).lanes=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function Xs(e,t,n){this.tag=t,this.containerInfo=e,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.pendingContext=this.context=null,this.hydrate=n,this.callbackNode=null,this.callbackPriority=0,this.eventTimes=jt(0),this.expirationTimes=jt(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=jt(0),this.mutableSourceEagerHydrationData=null}function Js(e,t,n,r){var a=t.current,o=fs(),l=ps(a);e:if(n){t:{if(qe(n=n._reactInternals)!==n||1!==n.tag)throw Error(i(170));var s=n;do{switch(s.tag){case 3:s=s.stateNode.context;break t;case 1:if(ga(s.type)){s=s.stateNode.__reactInternalMemoizedMergedChildContext;break t}}s=s.return}while(null!==s);throw Error(i(171))}if(1===n.tag){var u=n.type;if(ga(u)){n=ya(n,u,s);break e}}n=s}else n=da;return null===t.context?t.context=n:t.pendingContext=n,(t=uo(o,l)).payload={element:e},null!==(r=void 0===r?null:r)&&(t.callback=r),co(a,t),ms(a,l,o),l}function eu(e){return(e=e.current).child?(e.child.tag,e.child.stateNode):null}function tu(e,t){if(null!==(e=e.memoizedState)&&null!==e.dehydrated){var n=e.retryLane;e.retryLane=0!==n&&n<t?n:t}}function nu(e,t){tu(e,t),(e=e.alternate)&&tu(e,t)}function ru(e,t,n){var r=null!=n&&null!=n.hydrationOptions&&n.hydrationOptions.mutableSources||null;if(n=new Xs(e,t,null!=n&&!0===n.hydrate),t=Hs(3,null,null,2===t?7:1===t?3:0),n.current=t,t.stateNode=n,lo(t),e[Jr]=n.current,Or(8===e.nodeType?e.parentNode:e),r)for(e=0;e<r.length;e++){var a=(t=r[e])._getVersion;a=a(t._source),null==n.mutableSourceEagerHydrationData?n.mutableSourceEagerHydrationData=[t,a]:n.mutableSourceEagerHydrationData.push(t,a)}this._internalRoot=n}function au(e){return!(!e||1!==e.nodeType&&9!==e.nodeType&&11!==e.nodeType&&(8!==e.nodeType||" react-mount-point-unstable "!==e.nodeValue))}function ou(e,t,n,r,a){var o=n._reactRootContainer;if(o){var i=o._internalRoot;if("function"==typeof a){var l=a;a=function(){var e=eu(i);l.call(e)}}Js(t,i,e,a)}else{if(o=n._reactRootContainer=function(e,t){if(t||(t=!(!(t=e?9===e.nodeType?e.documentElement:e.firstChild:null)||1!==t.nodeType||!t.hasAttribute("data-reactroot"))),!t)for(var n;n=e.lastChild;)e.removeChild(n);return new ru(e,0,t?{hydrate:!0}:void 0)}(n,r),i=o._internalRoot,"function"==typeof a){var s=a;a=function(){var e=eu(i);s.call(e)}}Es((function(){Js(t,i,e,a)}))}return eu(i)}function iu(e,t){var n=2<arguments.length&&void 0!==arguments[2]?arguments[2]:null;if(!au(t))throw Error(i(200));return function(e,t,n){var r=3<arguments.length&&void 0!==arguments[3]?arguments[3]:null;return{$$typeof:S,key:null==r?null:""+r,children:e,containerInfo:t,implementation:n}}(e,t,null,n)}Wl=function(e,t,n){var r=t.lanes;if(null!==e)if(e.memoizedProps!==t.pendingProps||pa.current)Mi=!0;else{if(0==(n&r)){switch(Mi=!1,t.tag){case 3:Vi(t),Go();break;case 5:Do(t);break;case 1:ga(t.type)&&wa(t);break;case 4:Ro(t,t.stateNode.containerInfo);break;case 10:r=t.memoizedProps.value;var a=t.type._context;ca(Qa,a._currentValue),a._currentValue=r;break;case 13:if(null!==t.memoizedState)return 0!=(n&t.child.childLanes)?Xi(e,t,n):(ca(Fo,1&Fo.current),null!==(t=ol(e,t,n))?t.sibling:null);ca(Fo,1&Fo.current);break;case 19:if(r=0!=(n&t.childLanes),0!=(64&e.flags)){if(r)return al(e,t,n);t.flags|=64}if(null!==(a=t.memoizedState)&&(a.rendering=null,a.tail=null,a.lastEffect=null),ca(Fo,Fo.current),r)break;return null;case 23:case 24:return t.lanes=0,ji(e,t,n)}return ol(e,t,n)}Mi=0!=(16384&e.flags)}else Mi=!1;switch(t.lanes=0,t.tag){case 2:if(r=t.type,null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),e=t.pendingProps,a=ha(t,fa.current),ao(t,n),a=ii(null,t,r,e,a,n),t.flags|=1,"object"==typeof a&&null!==a&&"function"==typeof a.render&&void 0===a.$$typeof){if(t.tag=1,t.memoizedState=null,t.updateQueue=null,ga(r)){var o=!0;wa(t)}else o=!1;t.memoizedState=null!==a.state&&void 0!==a.state?a.state:null,lo(t);var l=r.getDerivedStateFromProps;"function"==typeof l&&go(t,r,l,e),a.updater=bo,t.stateNode=a,a._reactInternals=t,Eo(t,r,e,n),t=Yi(null,t,r,!0,o,n)}else t.tag=0,Fi(null,t,a,n),t=t.child;return t;case 16:a=t.elementType;e:{switch(null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),e=t.pendingProps,a=(o=a._init)(a._payload),t.type=a,o=t.tag=function(e){if("function"==typeof e)return Ys(e)?1:0;if(null!=e){if((e=e.$$typeof)===N)return 11;if(e===P)return 14}return 2}(a),e=Ka(a,e),o){case 0:t=Zi(null,t,a,e,n);break e;case 1:t=Hi(null,t,a,e,n);break e;case 11:t=Bi(null,t,a,e,n);break e;case 14:t=Ui(null,t,a,Ka(a.type,e),r,n);break e}throw Error(i(306,a,""))}return t;case 0:return r=t.type,a=t.pendingProps,Zi(e,t,r,a=t.elementType===r?a:Ka(r,a),n);case 1:return r=t.type,a=t.pendingProps,Hi(e,t,r,a=t.elementType===r?a:Ka(r,a),n);case 3:if(Vi(t),r=t.updateQueue,null===e||null===r)throw Error(i(282));if(r=t.pendingProps,a=null!==(a=t.memoizedState)?a.element:null,so(e,t),po(t,r,null,n),(r=t.memoizedState.element)===a)Go(),t=ol(e,t,n);else{if((o=(a=t.stateNode).hydrate)&&($o=Gr(t.stateNode.containerInfo.firstChild),Uo=t,o=jo=!0),o){if(null!=(e=a.mutableSourceEagerHydrationData))for(a=0;a<e.length;a+=2)(o=e[a])._workInProgressVersionPrimary=e[a+1],Wo.push(o);for(n=To(t,null,r,n),t.child=n;n;)n.flags=-3&n.flags|1024,n=n.sibling}else Fi(e,t,r,n),Go();t=t.child}return t;case 5:return Do(t),null===e&&Ho(t),r=t.type,a=t.pendingProps,o=null!==e?e.memoizedProps:null,l=a.children,Zr(r,a)?l=null:null!==o&&Zr(r,o)&&(t.flags|=16),zi(e,t),Fi(e,t,l,n),t.child;case 6:return null===e&&Ho(t),null;case 13:return Xi(e,t,n);case 4:return Ro(t,t.stateNode.containerInfo),r=t.pendingProps,null===e?t.child=_o(t,null,r,n):Fi(e,t,r,n),t.child;case 11:return r=t.type,a=t.pendingProps,Bi(e,t,r,a=t.elementType===r?a:Ka(r,a),n);case 7:return Fi(e,t,t.pendingProps,n),t.child;case 8:case 12:return Fi(e,t,t.pendingProps.children,n),t.child;case 10:e:{r=t.type._context,a=t.pendingProps,l=t.memoizedProps,o=a.value;var s=t.type._context;if(ca(Qa,s._currentValue),s._currentValue=o,null!==l)if(s=l.value,0===(o=ur(s,o)?0:0|("function"==typeof r._calculateChangedBits?r._calculateChangedBits(s,o):1073741823))){if(l.children===a.children&&!pa.current){t=ol(e,t,n);break e}}else for(null!==(s=t.child)&&(s.return=t);null!==s;){var u=s.dependencies;if(null!==u){l=s.child;for(var c=u.firstContext;null!==c;){if(c.context===r&&0!=(c.observedBits&o)){1===s.tag&&((c=uo(-1,n&-n)).tag=2,co(s,c)),s.lanes|=n,null!==(c=s.alternate)&&(c.lanes|=n),ro(s.return,n),u.lanes|=n;break}c=c.next}}else l=10===s.tag&&s.type===t.type?null:s.child;if(null!==l)l.return=s;else for(l=s;null!==l;){if(l===t){l=null;break}if(null!==(s=l.sibling)){s.return=l.return,l=s;break}l=l.return}s=l}Fi(e,t,a.children,n),t=t.child}return t;case 9:return a=t.type,r=(o=t.pendingProps).children,ao(t,n),r=r(a=oo(a,o.unstable_observedBits)),t.flags|=1,Fi(e,t,r,n),t.child;case 14:return o=Ka(a=t.type,t.pendingProps),Ui(e,t,a,o=Ka(a.type,o),r,n);case 15:return $i(e,t,t.type,t.pendingProps,r,n);case 17:return r=t.type,a=t.pendingProps,a=t.elementType===r?a:Ka(r,a),null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),t.tag=1,ga(r)?(e=!0,wa(t)):e=!1,ao(t,n),yo(t,r,a),Eo(t,r,a,n),Yi(null,t,r,!0,e,n);case 19:return al(e,t,n);case 23:case 24:return ji(e,t,n)}throw Error(i(156,t.tag))},ru.prototype.render=function(e){Js(e,this._internalRoot,null,null)},ru.prototype.unmount=function(){var e=this._internalRoot,t=e.containerInfo;Js(null,e,null,(function(){t[Jr]=null}))},et=function(e){13===e.tag&&(ms(e,4,fs()),nu(e,4))},tt=function(e){13===e.tag&&(ms(e,67108864,fs()),nu(e,67108864))},nt=function(e){if(13===e.tag){var t=fs(),n=ps(e);ms(e,n,t),nu(e,n)}},rt=function(e,t){return t()},_e=function(e,t,n){switch(t){case"input":if(ne(e,n),t=n.name,"radio"===n.type&&null!=t){for(n=e;n.parentNode;)n=n.parentNode;for(n=n.querySelectorAll("input[name="+JSON.stringify(""+t)+'][type="radio"]'),t=0;t<n.length;t++){var r=n[t];if(r!==e&&r.form===e.form){var a=aa(r);if(!a)throw Error(i(90));Q(r),ne(r,a)}}}break;case"textarea":ue(e,n);break;case"select":null!=(t=n.value)&&ie(e,!!n.multiple,t,!1)}},Pe=ws,Re=function(e,t,n,r,a){var o=Pl;Pl|=4;try{return Ya(98,e.bind(null,t,n,r,a))}finally{0===(Pl=o)&&(Gl(),Ga())}},Ie=function(){0==(49&Pl)&&(function(){if(null!==as){var e=as;as=null,e.forEach((function(e){e.expiredLanes|=24&e.pendingLanes,gs(e,za())}))}Ga()}(),Ds())},De=function(e,t){var n=Pl;Pl|=2;try{return e(t)}finally{0===(Pl=n)&&(Gl(),Ga())}};var lu={Events:[na,ra,aa,Le,Oe,Ds,{current:!1}]},su={findFiberByHostInstance:ta,bundleType:0,version:"17.0.2",rendererPackageName:"react-dom"},uu={bundleType:su.bundleType,version:su.version,rendererPackageName:su.rendererPackageName,rendererConfig:su.rendererConfig,overrideHookState:null,overrideHookStateDeletePath:null,overrideHookStateRenamePath:null,overrideProps:null,overridePropsDeletePath:null,overridePropsRenamePath:null,setSuspenseHandler:null,scheduleUpdate:null,currentDispatcherRef:E.ReactCurrentDispatcher,findHostInstanceByFiber:function(e){return null===(e=Xe(e))?null:e.stateNode},findFiberByHostInstance:su.findFiberByHostInstance||function(){return null},findHostInstancesForRefresh:null,scheduleRefresh:null,scheduleRoot:null,setRefreshHandler:null,getCurrentFiber:null};if("undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__){var cu=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!cu.isDisabled&&cu.supportsFiber)try{ka=cu.inject(uu),Sa=cu}catch(he){}}t.hydrate=function(e,t,n){if(!au(t))throw Error(i(200));return ou(null,e,t,!0,n)}},73935:(e,t,n)=>{"use strict";!function e(){if("undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&"function"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE)try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(e)}catch(t){console.error(t)}}(),e.exports=n(64448)},69590:e=>{var t="undefined"!=typeof Element,n="function"==typeof Map,r="function"==typeof Set,a="function"==typeof ArrayBuffer&&!!ArrayBuffer.isView;function o(e,i){if(e===i)return!0;if(e&&i&&"object"==typeof e&&"object"==typeof i){if(e.constructor!==i.constructor)return!1;var l,s,u,c;if(Array.isArray(e)){if((l=e.length)!=i.length)return!1;for(s=l;0!=s--;)if(!o(e[s],i[s]))return!1;return!0}if(n&&e instanceof Map&&i instanceof Map){if(e.size!==i.size)return!1;for(c=e.entries();!(s=c.next()).done;)if(!i.has(s.value[0]))return!1;for(c=e.entries();!(s=c.next()).done;)if(!o(s.value[1],i.get(s.value[0])))return!1;return!0}if(r&&e instanceof Set&&i instanceof Set){if(e.size!==i.size)return!1;for(c=e.entries();!(s=c.next()).done;)if(!i.has(s.value[0]))return!1;return!0}if(a&&ArrayBuffer.isView(e)&&ArrayBuffer.isView(i)){if((l=e.length)!=i.length)return!1;for(s=l;0!=s--;)if(e[s]!==i[s])return!1;return!0}if(e.constructor===RegExp)return e.source===i.source&&e.flags===i.flags;if(e.valueOf!==Object.prototype.valueOf)return e.valueOf()===i.valueOf();if(e.toString!==Object.prototype.toString)return e.toString()===i.toString();if((l=(u=Object.keys(e)).length)!==Object.keys(i).length)return!1;for(s=l;0!=s--;)if(!Object.prototype.hasOwnProperty.call(i,u[s]))return!1;if(t&&e instanceof Element)return!1;for(s=l;0!=s--;)if(("_owner"!==u[s]&&"__v"!==u[s]&&"__o"!==u[s]||!e.$$typeof)&&!o(e[u[s]],i[u[s]]))return!1;return!0}return e!=e&&i!=i}e.exports=function(e,t){try{return o(e,t)}catch(n){if((n.message||"").match(/stack|recursion/i))return console.warn("react-fast-compare cannot handle circular refs"),!1;throw n}}},70405:(e,t,n)=>{"use strict";n.d(t,{B6:()=>Y,ql:()=>J});var r=n(67294),a=n(45697),o=n.n(a),i=n(69590),l=n.n(i),s=n(41143),u=n.n(s),c=n(96774),d=n.n(c);function f(){return f=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},f.apply(this,arguments)}function p(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,m(e,t)}function m(e,t){return m=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},m(e,t)}function h(e,t){if(null==e)return{};var n,r,a={},o=Object.keys(e);for(r=0;r<o.length;r++)t.indexOf(n=o[r])>=0||(a[n]=e[n]);return a}var g={BASE:"base",BODY:"body",HEAD:"head",HTML:"html",LINK:"link",META:"meta",NOSCRIPT:"noscript",SCRIPT:"script",STYLE:"style",TITLE:"title",FRAGMENT:"Symbol(react.fragment)"},b={rel:["amphtml","canonical","alternate"]},v={type:["application/ld+json"]},y={charset:"",name:["robots","description"],property:["og:type","og:title","og:url","og:image","og:image:alt","og:description","twitter:url","twitter:title","twitter:description","twitter:image","twitter:image:alt","twitter:card","twitter:site"]},w=Object.keys(g).map((function(e){return g[e]})),E={accesskey:"accessKey",charset:"charSet",class:"className",contenteditable:"contentEditable",contextmenu:"contextMenu","http-equiv":"httpEquiv",itemprop:"itemProp",tabindex:"tabIndex"},k=Object.keys(E).reduce((function(e,t){return e[E[t]]=t,e}),{}),S=function(e,t){for(var n=e.length-1;n>=0;n-=1){var r=e[n];if(Object.prototype.hasOwnProperty.call(r,t))return r[t]}return null},x=function(e){var t=S(e,g.TITLE),n=S(e,"titleTemplate");if(Array.isArray(t)&&(t=t.join("")),n&&t)return n.replace(/%s/g,(function(){return t}));var r=S(e,"defaultTitle");return t||r||void 0},C=function(e){return S(e,"onChangeClientState")||function(){}},_=function(e,t){return t.filter((function(t){return void 0!==t[e]})).map((function(t){return t[e]})).reduce((function(e,t){return f({},e,t)}),{})},T=function(e,t){return t.filter((function(e){return void 0!==e[g.BASE]})).map((function(e){return e[g.BASE]})).reverse().reduce((function(t,n){if(!t.length)for(var r=Object.keys(n),a=0;a<r.length;a+=1){var o=r[a].toLowerCase();if(-1!==e.indexOf(o)&&n[o])return t.concat(n)}return t}),[])},A=function(e,t,n){var r={};return n.filter((function(t){return!!Array.isArray(t[e])||(void 0!==t[e]&&console&&"function"==typeof console.warn&&console.warn("Helmet: "+e+' should be of type "Array". Instead found type "'+typeof t[e]+'"'),!1)})).map((function(t){return t[e]})).reverse().reduce((function(e,n){var a={};n.filter((function(e){for(var n,o=Object.keys(e),i=0;i<o.length;i+=1){var l=o[i],s=l.toLowerCase();-1===t.indexOf(s)||"rel"===n&&"canonical"===e[n].toLowerCase()||"rel"===s&&"stylesheet"===e[s].toLowerCase()||(n=s),-1===t.indexOf(l)||"innerHTML"!==l&&"cssText"!==l&&"itemprop"!==l||(n=l)}if(!n||!e[n])return!1;var u=e[n].toLowerCase();return r[n]||(r[n]={}),a[n]||(a[n]={}),!r[n][u]&&(a[n][u]=!0,!0)})).reverse().forEach((function(t){return e.push(t)}));for(var o=Object.keys(a),i=0;i<o.length;i+=1){var l=o[i],s=f({},r[l],a[l]);r[l]=s}return e}),[]).reverse()},N=function(e,t){if(Array.isArray(e)&&e.length)for(var n=0;n<e.length;n+=1)if(e[n][t])return!0;return!1},L=function(e){return Array.isArray(e)?e.join(""):e},O=function(e,t){return Array.isArray(e)?e.reduce((function(e,n){return function(e,t){for(var n=Object.keys(e),r=0;r<n.length;r+=1)if(t[n[r]]&&t[n[r]].includes(e[n[r]]))return!0;return!1}(n,t)?e.priority.push(n):e.default.push(n),e}),{priority:[],default:[]}):{default:e}},P=function(e,t){var n;return f({},e,((n={})[t]=void 0,n))},R=[g.NOSCRIPT,g.SCRIPT,g.STYLE],I=function(e,t){return void 0===t&&(t=!0),!1===t?String(e):String(e).replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">").replace(/"/g,""").replace(/'/g,"'")},D=function(e){return Object.keys(e).reduce((function(t,n){var r=void 0!==e[n]?n+'="'+e[n]+'"':""+n;return t?t+" "+r:r}),"")},M=function(e,t){return void 0===t&&(t={}),Object.keys(e).reduce((function(t,n){return t[E[n]||n]=e[n],t}),t)},F=function(e,t){return t.map((function(t,n){var a,o=((a={key:n})["data-rh"]=!0,a);return Object.keys(t).forEach((function(e){var n=E[e]||e;"innerHTML"===n||"cssText"===n?o.dangerouslySetInnerHTML={__html:t.innerHTML||t.cssText}:o[n]=t[e]})),r.createElement(e,o)}))},B=function(e,t,n){switch(e){case g.TITLE:return{toComponent:function(){return n=t.titleAttributes,(a={key:e=t.title})["data-rh"]=!0,o=M(n,a),[r.createElement(g.TITLE,o,e)];var e,n,a,o},toString:function(){return function(e,t,n,r){var a=D(n),o=L(t);return a?"<"+e+' data-rh="true" '+a+">"+I(o,r)+"</"+e+">":"<"+e+' data-rh="true">'+I(o,r)+"</"+e+">"}(e,t.title,t.titleAttributes,n)}};case"bodyAttributes":case"htmlAttributes":return{toComponent:function(){return M(t)},toString:function(){return D(t)}};default:return{toComponent:function(){return F(e,t)},toString:function(){return function(e,t,n){return t.reduce((function(t,r){var a=Object.keys(r).filter((function(e){return!("innerHTML"===e||"cssText"===e)})).reduce((function(e,t){var a=void 0===r[t]?t:t+'="'+I(r[t],n)+'"';return e?e+" "+a:a}),""),o=r.innerHTML||r.cssText||"",i=-1===R.indexOf(e);return t+"<"+e+' data-rh="true" '+a+(i?"/>":">"+o+"</"+e+">")}),"")}(e,t,n)}}}},U=function(e){var t=e.baseTag,n=e.bodyAttributes,r=e.encode,a=e.htmlAttributes,o=e.noscriptTags,i=e.styleTags,l=e.title,s=void 0===l?"":l,u=e.titleAttributes,c=e.linkTags,d=e.metaTags,f=e.scriptTags,p={toComponent:function(){},toString:function(){return""}};if(e.prioritizeSeoTags){var m=function(e){var t=e.linkTags,n=e.scriptTags,r=e.encode,a=O(e.metaTags,y),o=O(t,b),i=O(n,v);return{priorityMethods:{toComponent:function(){return[].concat(F(g.META,a.priority),F(g.LINK,o.priority),F(g.SCRIPT,i.priority))},toString:function(){return B(g.META,a.priority,r)+" "+B(g.LINK,o.priority,r)+" "+B(g.SCRIPT,i.priority,r)}},metaTags:a.default,linkTags:o.default,scriptTags:i.default}}(e);p=m.priorityMethods,c=m.linkTags,d=m.metaTags,f=m.scriptTags}return{priority:p,base:B(g.BASE,t,r),bodyAttributes:B("bodyAttributes",n,r),htmlAttributes:B("htmlAttributes",a,r),link:B(g.LINK,c,r),meta:B(g.META,d,r),noscript:B(g.NOSCRIPT,o,r),script:B(g.SCRIPT,f,r),style:B(g.STYLE,i,r),title:B(g.TITLE,{title:s,titleAttributes:u},r)}},$=[],j=function(e,t){var n=this;void 0===t&&(t="undefined"!=typeof document),this.instances=[],this.value={setHelmet:function(e){n.context.helmet=e},helmetInstances:{get:function(){return n.canUseDOM?$:n.instances},add:function(e){(n.canUseDOM?$:n.instances).push(e)},remove:function(e){var t=(n.canUseDOM?$:n.instances).indexOf(e);(n.canUseDOM?$:n.instances).splice(t,1)}}},this.context=e,this.canUseDOM=t,t||(e.helmet=U({baseTag:[],bodyAttributes:{},encodeSpecialCharacters:!0,htmlAttributes:{},linkTags:[],metaTags:[],noscriptTags:[],scriptTags:[],styleTags:[],title:"",titleAttributes:{}}))},z=r.createContext({}),Z=o().shape({setHelmet:o().func,helmetInstances:o().shape({get:o().func,add:o().func,remove:o().func})}),H="undefined"!=typeof document,Y=function(e){function t(n){var r;return(r=e.call(this,n)||this).helmetData=new j(r.props.context,t.canUseDOM),r}return p(t,e),t.prototype.render=function(){return r.createElement(z.Provider,{value:this.helmetData.value},this.props.children)},t}(r.Component);Y.canUseDOM=H,Y.propTypes={context:o().shape({helmet:o().shape()}),children:o().node.isRequired},Y.defaultProps={context:{}},Y.displayName="HelmetProvider";var V=function(e,t){var n,r=document.head||document.querySelector(g.HEAD),a=r.querySelectorAll(e+"[data-rh]"),o=[].slice.call(a),i=[];return t&&t.length&&t.forEach((function(t){var r=document.createElement(e);for(var a in t)Object.prototype.hasOwnProperty.call(t,a)&&("innerHTML"===a?r.innerHTML=t.innerHTML:"cssText"===a?r.styleSheet?r.styleSheet.cssText=t.cssText:r.appendChild(document.createTextNode(t.cssText)):r.setAttribute(a,void 0===t[a]?"":t[a]));r.setAttribute("data-rh","true"),o.some((function(e,t){return n=t,r.isEqualNode(e)}))?o.splice(n,1):i.push(r)})),o.forEach((function(e){return e.parentNode.removeChild(e)})),i.forEach((function(e){return r.appendChild(e)})),{oldTags:o,newTags:i}},G=function(e,t){var n=document.getElementsByTagName(e)[0];if(n){for(var r=n.getAttribute("data-rh"),a=r?r.split(","):[],o=[].concat(a),i=Object.keys(t),l=0;l<i.length;l+=1){var s=i[l],u=t[s]||"";n.getAttribute(s)!==u&&n.setAttribute(s,u),-1===a.indexOf(s)&&a.push(s);var c=o.indexOf(s);-1!==c&&o.splice(c,1)}for(var d=o.length-1;d>=0;d-=1)n.removeAttribute(o[d]);a.length===o.length?n.removeAttribute("data-rh"):n.getAttribute("data-rh")!==i.join(",")&&n.setAttribute("data-rh",i.join(","))}},W=function(e,t){var n=e.baseTag,r=e.htmlAttributes,a=e.linkTags,o=e.metaTags,i=e.noscriptTags,l=e.onChangeClientState,s=e.scriptTags,u=e.styleTags,c=e.title,d=e.titleAttributes;G(g.BODY,e.bodyAttributes),G(g.HTML,r),function(e,t){void 0!==e&&document.title!==e&&(document.title=L(e)),G(g.TITLE,t)}(c,d);var f={baseTag:V(g.BASE,n),linkTags:V(g.LINK,a),metaTags:V(g.META,o),noscriptTags:V(g.NOSCRIPT,i),scriptTags:V(g.SCRIPT,s),styleTags:V(g.STYLE,u)},p={},m={};Object.keys(f).forEach((function(e){var t=f[e],n=t.newTags,r=t.oldTags;n.length&&(p[e]=n),r.length&&(m[e]=f[e].oldTags)})),t&&t(),l(e,p,m)},q=null,K=function(e){function t(){for(var t,n=arguments.length,r=new Array(n),a=0;a<n;a++)r[a]=arguments[a];return(t=e.call.apply(e,[this].concat(r))||this).rendered=!1,t}p(t,e);var n=t.prototype;return n.shouldComponentUpdate=function(e){return!d()(e,this.props)},n.componentDidUpdate=function(){this.emitChange()},n.componentWillUnmount=function(){this.props.context.helmetInstances.remove(this),this.emitChange()},n.emitChange=function(){var e,t,n=this.props.context,r=n.setHelmet,a=null,o=(e=n.helmetInstances.get().map((function(e){var t=f({},e.props);return delete t.context,t})),{baseTag:T(["href"],e),bodyAttributes:_("bodyAttributes",e),defer:S(e,"defer"),encode:S(e,"encodeSpecialCharacters"),htmlAttributes:_("htmlAttributes",e),linkTags:A(g.LINK,["rel","href"],e),metaTags:A(g.META,["name","charset","http-equiv","property","itemprop"],e),noscriptTags:A(g.NOSCRIPT,["innerHTML"],e),onChangeClientState:C(e),scriptTags:A(g.SCRIPT,["src","innerHTML"],e),styleTags:A(g.STYLE,["cssText"],e),title:x(e),titleAttributes:_("titleAttributes",e),prioritizeSeoTags:N(e,"prioritizeSeoTags")});Y.canUseDOM?(t=o,q&&cancelAnimationFrame(q),t.defer?q=requestAnimationFrame((function(){W(t,(function(){q=null}))})):(W(t),q=null)):U&&(a=U(o)),r(a)},n.init=function(){this.rendered||(this.rendered=!0,this.props.context.helmetInstances.add(this),this.emitChange())},n.render=function(){return this.init(),null},t}(r.Component);K.propTypes={context:Z.isRequired},K.displayName="HelmetDispatcher";var Q=["children"],X=["children"],J=function(e){function t(){return e.apply(this,arguments)||this}p(t,e);var n=t.prototype;return n.shouldComponentUpdate=function(e){return!l()(P(this.props,"helmetData"),P(e,"helmetData"))},n.mapNestedChildrenToProps=function(e,t){if(!t)return null;switch(e.type){case g.SCRIPT:case g.NOSCRIPT:return{innerHTML:t};case g.STYLE:return{cssText:t};default:throw new Error("<"+e.type+" /> elements are self-closing and can not contain children. Refer to our API for more information.")}},n.flattenArrayTypeChildren=function(e){var t,n=e.child,r=e.arrayTypeChildren;return f({},r,((t={})[n.type]=[].concat(r[n.type]||[],[f({},e.newChildProps,this.mapNestedChildrenToProps(n,e.nestedChildren))]),t))},n.mapObjectTypeChildren=function(e){var t,n,r=e.child,a=e.newProps,o=e.newChildProps,i=e.nestedChildren;switch(r.type){case g.TITLE:return f({},a,((t={})[r.type]=i,t.titleAttributes=f({},o),t));case g.BODY:return f({},a,{bodyAttributes:f({},o)});case g.HTML:return f({},a,{htmlAttributes:f({},o)});default:return f({},a,((n={})[r.type]=f({},o),n))}},n.mapArrayTypeChildrenToProps=function(e,t){var n=f({},t);return Object.keys(e).forEach((function(t){var r;n=f({},n,((r={})[t]=e[t],r))})),n},n.warnOnInvalidChildren=function(e,t){return u()(w.some((function(t){return e.type===t})),"function"==typeof e.type?"You may be attempting to nest <Helmet> components within each other, which is not allowed. Refer to our API for more information.":"Only elements types "+w.join(", ")+" are allowed. Helmet does not support rendering <"+e.type+"> elements. Refer to our API for more information."),u()(!t||"string"==typeof t||Array.isArray(t)&&!t.some((function(e){return"string"!=typeof e})),"Helmet expects a string as a child of <"+e.type+">. Did you forget to wrap your children in braces? ( <"+e.type+">{``}</"+e.type+"> ) Refer to our API for more information."),!0},n.mapChildrenToProps=function(e,t){var n=this,a={};return r.Children.forEach(e,(function(e){if(e&&e.props){var r=e.props,o=r.children,i=h(r,Q),l=Object.keys(i).reduce((function(e,t){return e[k[t]||t]=i[t],e}),{}),s=e.type;switch("symbol"==typeof s?s=s.toString():n.warnOnInvalidChildren(e,o),s){case g.FRAGMENT:t=n.mapChildrenToProps(o,t);break;case g.LINK:case g.META:case g.NOSCRIPT:case g.SCRIPT:case g.STYLE:a=n.flattenArrayTypeChildren({child:e,arrayTypeChildren:a,newChildProps:l,nestedChildren:o});break;default:t=n.mapObjectTypeChildren({child:e,newProps:t,newChildProps:l,nestedChildren:o})}}})),this.mapArrayTypeChildrenToProps(a,t)},n.render=function(){var e=this.props,t=e.children,n=h(e,X),a=f({},n),o=n.helmetData;return t&&(a=this.mapChildrenToProps(t,a)),!o||o instanceof j||(o=new j(o.context,o.instances)),o?r.createElement(K,f({},a,{context:o.value,helmetData:void 0})):r.createElement(z.Consumer,null,(function(e){return r.createElement(K,f({},a,{context:e}))}))},t}(r.Component);J.propTypes={base:o().object,bodyAttributes:o().object,children:o().oneOfType([o().arrayOf(o().node),o().node]),defaultTitle:o().string,defer:o().bool,encodeSpecialCharacters:o().bool,htmlAttributes:o().object,link:o().arrayOf(o().object),meta:o().arrayOf(o().object),noscript:o().arrayOf(o().object),onChangeClientState:o().func,script:o().arrayOf(o().object),style:o().arrayOf(o().object),title:o().string,titleAttributes:o().object,titleTemplate:o().string,prioritizeSeoTags:o().bool,helmetData:o().object},J.defaultProps={defer:!0,encodeSpecialCharacters:!0,prioritizeSeoTags:!1},J.displayName="Helmet"},69921:(e,t)=>{"use strict";var n="function"==typeof Symbol&&Symbol.for,r=n?Symbol.for("react.element"):60103,a=n?Symbol.for("react.portal"):60106,o=n?Symbol.for("react.fragment"):60107,i=n?Symbol.for("react.strict_mode"):60108,l=n?Symbol.for("react.profiler"):60114,s=n?Symbol.for("react.provider"):60109,u=n?Symbol.for("react.context"):60110,c=n?Symbol.for("react.async_mode"):60111,d=n?Symbol.for("react.concurrent_mode"):60111,f=n?Symbol.for("react.forward_ref"):60112,p=n?Symbol.for("react.suspense"):60113,m=n?Symbol.for("react.suspense_list"):60120,h=n?Symbol.for("react.memo"):60115,g=n?Symbol.for("react.lazy"):60116,b=n?Symbol.for("react.block"):60121,v=n?Symbol.for("react.fundamental"):60117,y=n?Symbol.for("react.responder"):60118,w=n?Symbol.for("react.scope"):60119;function E(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case r:switch(e=e.type){case c:case d:case o:case l:case i:case p:return e;default:switch(e=e&&e.$$typeof){case u:case f:case g:case h:case s:return e;default:return t}}case a:return t}}}function k(e){return E(e)===d}t.AsyncMode=c,t.ConcurrentMode=d,t.ContextConsumer=u,t.ContextProvider=s,t.Element=r,t.ForwardRef=f,t.Fragment=o,t.Lazy=g,t.Memo=h,t.Portal=a,t.Profiler=l,t.StrictMode=i,t.Suspense=p,t.isAsyncMode=function(e){return k(e)||E(e)===c},t.isConcurrentMode=k,t.isContextConsumer=function(e){return E(e)===u},t.isContextProvider=function(e){return E(e)===s},t.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===r},t.isForwardRef=function(e){return E(e)===f},t.isFragment=function(e){return E(e)===o},t.isLazy=function(e){return E(e)===g},t.isMemo=function(e){return E(e)===h},t.isPortal=function(e){return E(e)===a},t.isProfiler=function(e){return E(e)===l},t.isStrictMode=function(e){return E(e)===i},t.isSuspense=function(e){return E(e)===p},t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===o||e===d||e===l||e===i||e===p||e===m||"object"==typeof e&&null!==e&&(e.$$typeof===g||e.$$typeof===h||e.$$typeof===s||e.$$typeof===u||e.$$typeof===f||e.$$typeof===v||e.$$typeof===y||e.$$typeof===w||e.$$typeof===b)},t.typeOf=E},59864:(e,t,n)=>{"use strict";e.exports=n(69921)},68356:(e,t,n)=>{"use strict";function r(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e.__proto__=t}function a(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function o(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function i(){return i=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},i.apply(this,arguments)}var l=n(67294),s=n(45697),u=[],c=[];function d(e){var t=e(),n={loading:!0,loaded:null,error:null};return n.promise=t.then((function(e){return n.loading=!1,n.loaded=e,e})).catch((function(e){throw n.loading=!1,n.error=e,e})),n}function f(e){var t={loading:!1,loaded:{},error:null},n=[];try{Object.keys(e).forEach((function(r){var a=d(e[r]);a.loading?t.loading=!0:(t.loaded[r]=a.loaded,t.error=a.error),n.push(a.promise),a.promise.then((function(e){t.loaded[r]=e})).catch((function(e){t.error=e}))}))}catch(r){t.error=r}return t.promise=Promise.all(n).then((function(e){return t.loading=!1,e})).catch((function(e){throw t.loading=!1,e})),t}function p(e,t){return l.createElement((n=e)&&n.__esModule?n.default:n,t);var n}function m(e,t){var d,f;if(!t.loading)throw new Error("react-loadable requires a `loading` component");var m=i({loader:null,loading:null,delay:200,timeout:null,render:p,webpack:null,modules:null},t),h=null;function g(){return h||(h=e(m.loader)),h.promise}return u.push(g),"function"==typeof m.webpack&&c.push((function(){if((0,m.webpack)().every((function(e){return void 0!==e&&void 0!==n.m[e]})))return g()})),f=d=function(t){function n(n){var r;return o(a(a(r=t.call(this,n)||this)),"retry",(function(){r.setState({error:null,loading:!0,timedOut:!1}),h=e(m.loader),r._loadModule()})),g(),r.state={error:h.error,pastDelay:!1,timedOut:!1,loading:h.loading,loaded:h.loaded},r}r(n,t),n.preload=function(){return g()};var i=n.prototype;return i.UNSAFE_componentWillMount=function(){this._loadModule()},i.componentDidMount=function(){this._mounted=!0},i._loadModule=function(){var e=this;if(this.context.loadable&&Array.isArray(m.modules)&&m.modules.forEach((function(t){e.context.loadable.report(t)})),h.loading){var t=function(t){e._mounted&&e.setState(t)};"number"==typeof m.delay&&(0===m.delay?this.setState({pastDelay:!0}):this._delay=setTimeout((function(){t({pastDelay:!0})}),m.delay)),"number"==typeof m.timeout&&(this._timeout=setTimeout((function(){t({timedOut:!0})}),m.timeout));var n=function(){t({error:h.error,loaded:h.loaded,loading:h.loading}),e._clearTimeouts()};h.promise.then((function(){return n(),null})).catch((function(e){return n(),null}))}},i.componentWillUnmount=function(){this._mounted=!1,this._clearTimeouts()},i._clearTimeouts=function(){clearTimeout(this._delay),clearTimeout(this._timeout)},i.render=function(){return this.state.loading||this.state.error?l.createElement(m.loading,{isLoading:this.state.loading,pastDelay:this.state.pastDelay,timedOut:this.state.timedOut,error:this.state.error,retry:this.retry}):this.state.loaded?m.render(this.state.loaded,this.props):null},n}(l.Component),o(d,"contextTypes",{loadable:s.shape({report:s.func.isRequired})}),f}function h(e){return m(d,e)}h.Map=function(e){if("function"!=typeof e.render)throw new Error("LoadableMap requires a `render(loaded, props)` function");return m(f,e)};var g=function(e){function t(){return e.apply(this,arguments)||this}r(t,e);var n=t.prototype;return n.getChildContext=function(){return{loadable:{report:this.props.report}}},n.render=function(){return l.Children.only(this.props.children)},t}(l.Component);function b(e){for(var t=[];e.length;){var n=e.pop();t.push(n())}return Promise.all(t).then((function(){if(e.length)return b(e)}))}o(g,"propTypes",{report:s.func.isRequired}),o(g,"childContextTypes",{loadable:s.shape({report:s.func.isRequired}).isRequired}),h.Capture=g,h.preloadAll=function(){return new Promise((function(e,t){b(u).then(e,t)}))},h.preloadReady=function(){return new Promise((function(e,t){b(c).then(e,e)}))},e.exports=h},18790:(e,t,n)=>{"use strict";n.d(t,{H:()=>l,f:()=>i});var r=n(16550),a=n(87462),o=n(67294);function i(e,t,n){return void 0===n&&(n=[]),e.some((function(e){var a=e.path?(0,r.LX)(t,e):n.length?n[n.length-1].match:r.F0.computeRootMatch(t);return a&&(n.push({route:e,match:a}),e.routes&&i(e.routes,t,n)),a})),n}function l(e,t,n){return void 0===t&&(t={}),void 0===n&&(n={}),e?o.createElement(r.rs,n,e.map((function(e,n){return o.createElement(r.AW,{key:e.key||n,path:e.path,exact:e.exact,strict:e.strict,render:function(n){return e.render?e.render((0,a.Z)({},n,{},t,{route:e})):o.createElement(e.component,(0,a.Z)({},n,t,{route:e}))}})}))):null}},73727:(e,t,n)=>{"use strict";n.d(t,{OL:()=>y,VK:()=>c,rU:()=>g});var r=n(16550),a=n(75068),o=n(67294),i=n(42358),l=n(87462),s=n(63366),u=n(38776),c=function(e){function t(){for(var t,n=arguments.length,r=new Array(n),a=0;a<n;a++)r[a]=arguments[a];return(t=e.call.apply(e,[this].concat(r))||this).history=(0,i.lX)(t.props),t}return(0,a.Z)(t,e),t.prototype.render=function(){return o.createElement(r.F0,{history:this.history,children:this.props.children})},t}(o.Component);o.Component;var d=function(e,t){return"function"==typeof e?e(t):e},f=function(e,t){return"string"==typeof e?(0,i.ob)(e,null,null,t):e},p=function(e){return e},m=o.forwardRef;void 0===m&&(m=p);var h=m((function(e,t){var n=e.innerRef,r=e.navigate,a=e.onClick,i=(0,s.Z)(e,["innerRef","navigate","onClick"]),u=i.target,c=(0,l.Z)({},i,{onClick:function(e){try{a&&a(e)}catch(t){throw e.preventDefault(),t}e.defaultPrevented||0!==e.button||u&&"_self"!==u||function(e){return!!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)}(e)||(e.preventDefault(),r())}});return c.ref=p!==m&&t||n,o.createElement("a",c)}));var g=m((function(e,t){var n=e.component,a=void 0===n?h:n,c=e.replace,g=e.to,b=e.innerRef,v=(0,s.Z)(e,["component","replace","to","innerRef"]);return o.createElement(r.s6.Consumer,null,(function(e){e||(0,u.Z)(!1);var n=e.history,r=f(d(g,e.location),e.location),s=r?n.createHref(r):"",h=(0,l.Z)({},v,{href:s,navigate:function(){var t=d(g,e.location),r=(0,i.Ep)(e.location)===(0,i.Ep)(f(t));(c||r?n.replace:n.push)(t)}});return p!==m?h.ref=t||b:h.innerRef=b,o.createElement(a,h)}))})),b=function(e){return e},v=o.forwardRef;void 0===v&&(v=b);var y=v((function(e,t){var n=e["aria-current"],a=void 0===n?"page":n,i=e.activeClassName,c=void 0===i?"active":i,p=e.activeStyle,m=e.className,h=e.exact,y=e.isActive,w=e.location,E=e.sensitive,k=e.strict,S=e.style,x=e.to,C=e.innerRef,_=(0,s.Z)(e,["aria-current","activeClassName","activeStyle","className","exact","isActive","location","sensitive","strict","style","to","innerRef"]);return o.createElement(r.s6.Consumer,null,(function(e){e||(0,u.Z)(!1);var n=w||e.location,i=f(d(x,n),n),s=i.pathname,T=s&&s.replace(/([.+*?=^!:${}()[\]|/\\])/g,"\\$1"),A=T?(0,r.LX)(n.pathname,{path:T,exact:h,sensitive:E,strict:k}):null,N=!!(y?y(A,n):A),L="function"==typeof m?m(N):m,O="function"==typeof S?S(N):S;N&&(L=function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return t.filter((function(e){return e})).join(" ")}(L,c),O=(0,l.Z)({},O,p));var P=(0,l.Z)({"aria-current":N&&a||null,className:L,style:O,to:i},_);return b!==v?P.ref=t||C:P.innerRef=C,o.createElement(g,P)}))}))},16550:(e,t,n)=>{"use strict";n.d(t,{AW:()=>L,F0:()=>y,LX:()=>N,TH:()=>U,k6:()=>B,l_:()=>C,rs:()=>M,s6:()=>v});var r=n(75068),a=n(67294),o=n(45697),i=n.n(o),l=n(42358),s=n(38776),u=n(87462),c=n(14779),d=n.n(c),f=(n(59864),n(63366)),p=(n(8679),1073741823),m="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:void 0!==n.g?n.g:{};var h=a.createContext||function(e,t){var n,o,l="__create-react-context-"+function(){var e="__global_unique_id__";return m[e]=(m[e]||0)+1}()+"__",s=function(e){function n(){for(var t,n,r,a=arguments.length,o=new Array(a),i=0;i<a;i++)o[i]=arguments[i];return(t=e.call.apply(e,[this].concat(o))||this).emitter=(n=t.props.value,r=[],{on:function(e){r.push(e)},off:function(e){r=r.filter((function(t){return t!==e}))},get:function(){return n},set:function(e,t){n=e,r.forEach((function(e){return e(n,t)}))}}),t}(0,r.Z)(n,e);var a=n.prototype;return a.getChildContext=function(){var e;return(e={})[l]=this.emitter,e},a.componentWillReceiveProps=function(e){if(this.props.value!==e.value){var n,r=this.props.value,a=e.value;((o=r)===(i=a)?0!==o||1/o==1/i:o!=o&&i!=i)?n=0:(n="function"==typeof t?t(r,a):p,0!==(n|=0)&&this.emitter.set(e.value,n))}var o,i},a.render=function(){return this.props.children},n}(a.Component);s.childContextTypes=((n={})[l]=i().object.isRequired,n);var u=function(t){function n(){for(var e,n=arguments.length,r=new Array(n),a=0;a<n;a++)r[a]=arguments[a];return(e=t.call.apply(t,[this].concat(r))||this).observedBits=void 0,e.state={value:e.getValue()},e.onUpdate=function(t,n){0!=((0|e.observedBits)&n)&&e.setState({value:e.getValue()})},e}(0,r.Z)(n,t);var a=n.prototype;return a.componentWillReceiveProps=function(e){var t=e.observedBits;this.observedBits=null==t?p:t},a.componentDidMount=function(){this.context[l]&&this.context[l].on(this.onUpdate);var e=this.props.observedBits;this.observedBits=null==e?p:e},a.componentWillUnmount=function(){this.context[l]&&this.context[l].off(this.onUpdate)},a.getValue=function(){return this.context[l]?this.context[l].get():e},a.render=function(){return(e=this.props.children,Array.isArray(e)?e[0]:e)(this.state.value);var e},n}(a.Component);return u.contextTypes=((o={})[l]=i().object,o),{Provider:s,Consumer:u}},g=function(e){var t=h();return t.displayName=e,t},b=g("Router-History"),v=g("Router"),y=function(e){function t(t){var n;return(n=e.call(this,t)||this).state={location:t.history.location},n._isMounted=!1,n._pendingLocation=null,t.staticContext||(n.unlisten=t.history.listen((function(e){n._pendingLocation=e}))),n}(0,r.Z)(t,e),t.computeRootMatch=function(e){return{path:"/",url:"/",params:{},isExact:"/"===e}};var n=t.prototype;return n.componentDidMount=function(){var e=this;this._isMounted=!0,this.unlisten&&this.unlisten(),this.props.staticContext||(this.unlisten=this.props.history.listen((function(t){e._isMounted&&e.setState({location:t})}))),this._pendingLocation&&this.setState({location:this._pendingLocation})},n.componentWillUnmount=function(){this.unlisten&&(this.unlisten(),this._isMounted=!1,this._pendingLocation=null)},n.render=function(){return a.createElement(v.Provider,{value:{history:this.props.history,location:this.state.location,match:t.computeRootMatch(this.state.location.pathname),staticContext:this.props.staticContext}},a.createElement(b.Provider,{children:this.props.children||null,value:this.props.history}))},t}(a.Component);a.Component;var w=function(e){function t(){return e.apply(this,arguments)||this}(0,r.Z)(t,e);var n=t.prototype;return n.componentDidMount=function(){this.props.onMount&&this.props.onMount.call(this,this)},n.componentDidUpdate=function(e){this.props.onUpdate&&this.props.onUpdate.call(this,this,e)},n.componentWillUnmount=function(){this.props.onUnmount&&this.props.onUnmount.call(this,this)},n.render=function(){return null},t}(a.Component);var E={},k=1e4,S=0;function x(e,t){return void 0===e&&(e="/"),void 0===t&&(t={}),"/"===e?e:function(e){if(E[e])return E[e];var t=d().compile(e);return S<k&&(E[e]=t,S++),t}(e)(t,{pretty:!0})}function C(e){var t=e.computedMatch,n=e.to,r=e.push,o=void 0!==r&&r;return a.createElement(v.Consumer,null,(function(e){e||(0,s.Z)(!1);var r=e.history,i=e.staticContext,c=o?r.push:r.replace,d=(0,l.ob)(t?"string"==typeof n?x(n,t.params):(0,u.Z)({},n,{pathname:x(n.pathname,t.params)}):n);return i?(c(d),null):a.createElement(w,{onMount:function(){c(d)},onUpdate:function(e,t){var n=(0,l.ob)(t.to);(0,l.Hp)(n,(0,u.Z)({},d,{key:n.key}))||c(d)},to:n})}))}var _={},T=1e4,A=0;function N(e,t){void 0===t&&(t={}),("string"==typeof t||Array.isArray(t))&&(t={path:t});var n=t,r=n.path,a=n.exact,o=void 0!==a&&a,i=n.strict,l=void 0!==i&&i,s=n.sensitive,u=void 0!==s&&s;return[].concat(r).reduce((function(t,n){if(!n&&""!==n)return null;if(t)return t;var r=function(e,t){var n=""+t.end+t.strict+t.sensitive,r=_[n]||(_[n]={});if(r[e])return r[e];var a=[],o={regexp:d()(e,a,t),keys:a};return A<T&&(r[e]=o,A++),o}(n,{end:o,strict:l,sensitive:u}),a=r.regexp,i=r.keys,s=a.exec(e);if(!s)return null;var c=s[0],f=s.slice(1),p=e===c;return o&&!p?null:{path:n,url:"/"===n&&""===c?"/":c,isExact:p,params:i.reduce((function(e,t,n){return e[t.name]=f[n],e}),{})}}),null)}var L=function(e){function t(){return e.apply(this,arguments)||this}return(0,r.Z)(t,e),t.prototype.render=function(){var e=this;return a.createElement(v.Consumer,null,(function(t){t||(0,s.Z)(!1);var n=e.props.location||t.location,r=e.props.computedMatch?e.props.computedMatch:e.props.path?N(n.pathname,e.props):t.match,o=(0,u.Z)({},t,{location:n,match:r}),i=e.props,l=i.children,c=i.component,d=i.render;return Array.isArray(l)&&function(e){return 0===a.Children.count(e)}(l)&&(l=null),a.createElement(v.Provider,{value:o},o.match?l?"function"==typeof l?l(o):l:c?a.createElement(c,o):d?d(o):null:"function"==typeof l?l(o):null)}))},t}(a.Component);function O(e){return"/"===e.charAt(0)?e:"/"+e}function P(e,t){if(!e)return t;var n=O(e);return 0!==t.pathname.indexOf(n)?t:(0,u.Z)({},t,{pathname:t.pathname.substr(n.length)})}function R(e){return"string"==typeof e?e:(0,l.Ep)(e)}function I(e){return function(){(0,s.Z)(!1)}}function D(){}a.Component;var M=function(e){function t(){return e.apply(this,arguments)||this}return(0,r.Z)(t,e),t.prototype.render=function(){var e=this;return a.createElement(v.Consumer,null,(function(t){t||(0,s.Z)(!1);var n,r,o=e.props.location||t.location;return a.Children.forEach(e.props.children,(function(e){if(null==r&&a.isValidElement(e)){n=e;var i=e.props.path||e.props.from;r=i?N(o.pathname,(0,u.Z)({},e.props,{path:i})):t.match}})),r?a.cloneElement(n,{location:o,computedMatch:r}):null}))},t}(a.Component);var F=a.useContext;function B(){return F(b)}function U(){return F(v).location}},72408:(e,t,n)=>{"use strict";var r=n(27418),a=60103,o=60106;t.Fragment=60107,t.StrictMode=60108,t.Profiler=60114;var i=60109,l=60110,s=60112;t.Suspense=60113;var u=60115,c=60116;if("function"==typeof Symbol&&Symbol.for){var d=Symbol.for;a=d("react.element"),o=d("react.portal"),t.Fragment=d("react.fragment"),t.StrictMode=d("react.strict_mode"),t.Profiler=d("react.profiler"),i=d("react.provider"),l=d("react.context"),s=d("react.forward_ref"),t.Suspense=d("react.suspense"),u=d("react.memo"),c=d("react.lazy")}var f="function"==typeof Symbol&&Symbol.iterator;function p(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n<arguments.length;n++)t+="&args[]="+encodeURIComponent(arguments[n]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var m={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},h={};function g(e,t,n){this.props=e,this.context=t,this.refs=h,this.updater=n||m}function b(){}function v(e,t,n){this.props=e,this.context=t,this.refs=h,this.updater=n||m}g.prototype.isReactComponent={},g.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(p(85));this.updater.enqueueSetState(this,e,t,"setState")},g.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},b.prototype=g.prototype;var y=v.prototype=new b;y.constructor=v,r(y,g.prototype),y.isPureReactComponent=!0;var w={current:null},E=Object.prototype.hasOwnProperty,k={key:!0,ref:!0,__self:!0,__source:!0};function S(e,t,n){var r,o={},i=null,l=null;if(null!=t)for(r in void 0!==t.ref&&(l=t.ref),void 0!==t.key&&(i=""+t.key),t)E.call(t,r)&&!k.hasOwnProperty(r)&&(o[r]=t[r]);var s=arguments.length-2;if(1===s)o.children=n;else if(1<s){for(var u=Array(s),c=0;c<s;c++)u[c]=arguments[c+2];o.children=u}if(e&&e.defaultProps)for(r in s=e.defaultProps)void 0===o[r]&&(o[r]=s[r]);return{$$typeof:a,type:e,key:i,ref:l,props:o,_owner:w.current}}function x(e){return"object"==typeof e&&null!==e&&e.$$typeof===a}var C=/\/+/g;function _(e,t){return"object"==typeof e&&null!==e&&null!=e.key?function(e){var t={"=":"=0",":":"=2"};return"$"+e.replace(/[=:]/g,(function(e){return t[e]}))}(""+e.key):t.toString(36)}function T(e,t,n,r,i){var l=typeof e;"undefined"!==l&&"boolean"!==l||(e=null);var s=!1;if(null===e)s=!0;else switch(l){case"string":case"number":s=!0;break;case"object":switch(e.$$typeof){case a:case o:s=!0}}if(s)return i=i(s=e),e=""===r?"."+_(s,0):r,Array.isArray(i)?(n="",null!=e&&(n=e.replace(C,"$&/")+"/"),T(i,t,n,"",(function(e){return e}))):null!=i&&(x(i)&&(i=function(e,t){return{$$typeof:a,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}}(i,n+(!i.key||s&&s.key===i.key?"":(""+i.key).replace(C,"$&/")+"/")+e)),t.push(i)),1;if(s=0,r=""===r?".":r+":",Array.isArray(e))for(var u=0;u<e.length;u++){var c=r+_(l=e[u],u);s+=T(l,t,n,c,i)}else if(c=function(e){return null===e||"object"!=typeof e?null:"function"==typeof(e=f&&e[f]||e["@@iterator"])?e:null}(e),"function"==typeof c)for(e=c.call(e),u=0;!(l=e.next()).done;)s+=T(l=l.value,t,n,c=r+_(l,u++),i);else if("object"===l)throw t=""+e,Error(p(31,"[object Object]"===t?"object with keys {"+Object.keys(e).join(", ")+"}":t));return s}function A(e,t,n){if(null==e)return e;var r=[],a=0;return T(e,r,"","",(function(e){return t.call(n,e,a++)})),r}function N(e){if(-1===e._status){var t=e._result;t=t(),e._status=0,e._result=t,t.then((function(t){0===e._status&&(t=t.default,e._status=1,e._result=t)}),(function(t){0===e._status&&(e._status=2,e._result=t)}))}if(1===e._status)return e._result;throw e._result}var L={current:null};function O(){var e=L.current;if(null===e)throw Error(p(321));return e}var P={ReactCurrentDispatcher:L,ReactCurrentBatchConfig:{transition:0},ReactCurrentOwner:w,IsSomeRendererActing:{current:!1},assign:r};t.Children={map:A,forEach:function(e,t,n){A(e,(function(){t.apply(this,arguments)}),n)},count:function(e){var t=0;return A(e,(function(){t++})),t},toArray:function(e){return A(e,(function(e){return e}))||[]},only:function(e){if(!x(e))throw Error(p(143));return e}},t.Component=g,t.PureComponent=v,t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=P,t.cloneElement=function(e,t,n){if(null==e)throw Error(p(267,e));var o=r({},e.props),i=e.key,l=e.ref,s=e._owner;if(null!=t){if(void 0!==t.ref&&(l=t.ref,s=w.current),void 0!==t.key&&(i=""+t.key),e.type&&e.type.defaultProps)var u=e.type.defaultProps;for(c in t)E.call(t,c)&&!k.hasOwnProperty(c)&&(o[c]=void 0===t[c]&&void 0!==u?u[c]:t[c])}var c=arguments.length-2;if(1===c)o.children=n;else if(1<c){u=Array(c);for(var d=0;d<c;d++)u[d]=arguments[d+2];o.children=u}return{$$typeof:a,type:e.type,key:i,ref:l,props:o,_owner:s}},t.createContext=function(e,t){return void 0===t&&(t=null),(e={$$typeof:l,_calculateChangedBits:t,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null}).Provider={$$typeof:i,_context:e},e.Consumer=e},t.createElement=S,t.createFactory=function(e){var t=S.bind(null,e);return t.type=e,t},t.createRef=function(){return{current:null}},t.forwardRef=function(e){return{$$typeof:s,render:e}},t.isValidElement=x,t.lazy=function(e){return{$$typeof:c,_payload:{_status:-1,_result:e},_init:N}},t.memo=function(e,t){return{$$typeof:u,type:e,compare:void 0===t?null:t}},t.useCallback=function(e,t){return O().useCallback(e,t)},t.useContext=function(e,t){return O().useContext(e,t)},t.useDebugValue=function(){},t.useEffect=function(e,t){return O().useEffect(e,t)},t.useImperativeHandle=function(e,t,n){return O().useImperativeHandle(e,t,n)},t.useLayoutEffect=function(e,t){return O().useLayoutEffect(e,t)},t.useMemo=function(e,t){return O().useMemo(e,t)},t.useReducer=function(e,t,n){return O().useReducer(e,t,n)},t.useRef=function(e){return O().useRef(e)},t.useState=function(e){return O().useState(e)},t.version="17.0.2"},67294:(e,t,n)=>{"use strict";e.exports=n(72408)},60053:(e,t)=>{"use strict";var n,r,a,o;if("object"==typeof performance&&"function"==typeof performance.now){var i=performance;t.unstable_now=function(){return i.now()}}else{var l=Date,s=l.now();t.unstable_now=function(){return l.now()-s}}if("undefined"==typeof window||"function"!=typeof MessageChannel){var u=null,c=null,d=function(){if(null!==u)try{var e=t.unstable_now();u(!0,e),u=null}catch(n){throw setTimeout(d,0),n}};n=function(e){null!==u?setTimeout(n,0,e):(u=e,setTimeout(d,0))},r=function(e,t){c=setTimeout(e,t)},a=function(){clearTimeout(c)},t.unstable_shouldYield=function(){return!1},o=t.unstable_forceFrameRate=function(){}}else{var f=window.setTimeout,p=window.clearTimeout;if("undefined"!=typeof console){var m=window.cancelAnimationFrame;"function"!=typeof window.requestAnimationFrame&&console.error("This browser doesn't support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills"),"function"!=typeof m&&console.error("This browser doesn't support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills")}var h=!1,g=null,b=-1,v=5,y=0;t.unstable_shouldYield=function(){return t.unstable_now()>=y},o=function(){},t.unstable_forceFrameRate=function(e){0>e||125<e?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):v=0<e?Math.floor(1e3/e):5};var w=new MessageChannel,E=w.port2;w.port1.onmessage=function(){if(null!==g){var e=t.unstable_now();y=e+v;try{g(!0,e)?E.postMessage(null):(h=!1,g=null)}catch(n){throw E.postMessage(null),n}}else h=!1},n=function(e){g=e,h||(h=!0,E.postMessage(null))},r=function(e,n){b=f((function(){e(t.unstable_now())}),n)},a=function(){p(b),b=-1}}function k(e,t){var n=e.length;e.push(t);e:for(;;){var r=n-1>>>1,a=e[r];if(!(void 0!==a&&0<C(a,t)))break e;e[r]=t,e[n]=a,n=r}}function S(e){return void 0===(e=e[0])?null:e}function x(e){var t=e[0];if(void 0!==t){var n=e.pop();if(n!==t){e[0]=n;e:for(var r=0,a=e.length;r<a;){var o=2*(r+1)-1,i=e[o],l=o+1,s=e[l];if(void 0!==i&&0>C(i,n))void 0!==s&&0>C(s,i)?(e[r]=s,e[l]=n,r=l):(e[r]=i,e[o]=n,r=o);else{if(!(void 0!==s&&0>C(s,n)))break e;e[r]=s,e[l]=n,r=l}}}return t}return null}function C(e,t){var n=e.sortIndex-t.sortIndex;return 0!==n?n:e.id-t.id}var _=[],T=[],A=1,N=null,L=3,O=!1,P=!1,R=!1;function I(e){for(var t=S(T);null!==t;){if(null===t.callback)x(T);else{if(!(t.startTime<=e))break;x(T),t.sortIndex=t.expirationTime,k(_,t)}t=S(T)}}function D(e){if(R=!1,I(e),!P)if(null!==S(_))P=!0,n(M);else{var t=S(T);null!==t&&r(D,t.startTime-e)}}function M(e,n){P=!1,R&&(R=!1,a()),O=!0;var o=L;try{for(I(n),N=S(_);null!==N&&(!(N.expirationTime>n)||e&&!t.unstable_shouldYield());){var i=N.callback;if("function"==typeof i){N.callback=null,L=N.priorityLevel;var l=i(N.expirationTime<=n);n=t.unstable_now(),"function"==typeof l?N.callback=l:N===S(_)&&x(_),I(n)}else x(_);N=S(_)}if(null!==N)var s=!0;else{var u=S(T);null!==u&&r(D,u.startTime-n),s=!1}return s}finally{N=null,L=o,O=!1}}var F=o;t.unstable_IdlePriority=5,t.unstable_ImmediatePriority=1,t.unstable_LowPriority=4,t.unstable_NormalPriority=3,t.unstable_Profiling=null,t.unstable_UserBlockingPriority=2,t.unstable_cancelCallback=function(e){e.callback=null},t.unstable_continueExecution=function(){P||O||(P=!0,n(M))},t.unstable_getCurrentPriorityLevel=function(){return L},t.unstable_getFirstCallbackNode=function(){return S(_)},t.unstable_next=function(e){switch(L){case 1:case 2:case 3:var t=3;break;default:t=L}var n=L;L=t;try{return e()}finally{L=n}},t.unstable_pauseExecution=function(){},t.unstable_requestPaint=F,t.unstable_runWithPriority=function(e,t){switch(e){case 1:case 2:case 3:case 4:case 5:break;default:e=3}var n=L;L=e;try{return t()}finally{L=n}},t.unstable_scheduleCallback=function(e,o,i){var l=t.unstable_now();switch("object"==typeof i&&null!==i?i="number"==typeof(i=i.delay)&&0<i?l+i:l:i=l,e){case 1:var s=-1;break;case 2:s=250;break;case 5:s=1073741823;break;case 4:s=1e4;break;default:s=5e3}return e={id:A++,callback:o,priorityLevel:e,startTime:i,expirationTime:s=i+s,sortIndex:-1},i>l?(e.sortIndex=i,k(T,e),null===S(_)&&e===S(T)&&(R?a():R=!0,r(D,i-l))):(e.sortIndex=s,k(_,e),P||O||(P=!0,n(M))),e},t.unstable_wrapCallback=function(e){var t=L;return function(){var n=L;L=t;try{return e.apply(this,arguments)}finally{L=n}}}},63840:(e,t,n)=>{"use strict";e.exports=n(60053)},96774:e=>{e.exports=function(e,t,n,r){var a=n?n.call(r,e,t):void 0;if(void 0!==a)return!!a;if(e===t)return!0;if("object"!=typeof e||!e||"object"!=typeof t||!t)return!1;var o=Object.keys(e),i=Object.keys(t);if(o.length!==i.length)return!1;for(var l=Object.prototype.hasOwnProperty.bind(t),s=0;s<o.length;s++){var u=o[s];if(!l(u))return!1;var c=e[u],d=t[u];if(!1===(a=n?n.call(r,c,d,u):void 0)||void 0===a&&c!==d)return!1}return!0}},53250:(e,t,n)=>{"use strict";var r=n(67294);var a="function"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t},o=r.useState,i=r.useEffect,l=r.useLayoutEffect,s=r.useDebugValue;function u(e){var t=e.getSnapshot;e=e.value;try{var n=t();return!a(e,n)}catch(r){return!0}}var c="undefined"==typeof window||void 0===window.document||void 0===window.document.createElement?function(e,t){return t()}:function(e,t){var n=t(),r=o({inst:{value:n,getSnapshot:t}}),a=r[0].inst,c=r[1];return l((function(){a.value=n,a.getSnapshot=t,u(a)&&c({inst:a})}),[e,n,t]),i((function(){return u(a)&&c({inst:a}),e((function(){u(a)&&c({inst:a})}))}),[e]),s(n),n};t.useSyncExternalStore=void 0!==r.useSyncExternalStore?r.useSyncExternalStore:c},61688:(e,t,n)=>{"use strict";e.exports=n(53250)},36809:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>r});const r={onBrokenLinks:"throw",onBrokenMarkdownLinks:"warn",url:"https://yetanotherclown.github.io",projectName:"YetAnotherNet",organizationName:"YetAnotherClown",title:"YetAnotherNet",baseUrl:"/YetAnotherNet/",tagline:"A Data-Driven Networking Library, inspired by Bevy_Renet & BridgeNet2, made for ECS.",favicon:"Favicon.svg",customFields:{},themeConfig:{prism:{additionalLanguages:["lua"],theme:{plain:{color:"#bfc7d5",backgroundColor:"#292d3e"},styles:[{types:["comment"],style:{color:"rgb(105, 112, 152)",fontStyle:"italic"}},{types:["string","inserted"],style:{color:"rgb(195, 232, 141)"}},{types:["number"],style:{color:"rgb(247, 140, 108)"}},{types:["builtin","char","constant","function"],style:{color:"rgb(130, 170, 255)"}},{types:["punctuation","selector"],style:{color:"rgb(199, 146, 234)"}},{types:["variable"],style:{color:"rgb(191, 199, 213)"}},{types:["class-name","attr-name"],style:{color:"rgb(255, 203, 107)"}},{types:["tag","deleted"],style:{color:"rgb(255, 85, 114)"}},{types:["operator"],style:{color:"rgb(137, 221, 255)"}},{types:["boolean"],style:{color:"rgb(255, 88, 116)"}},{types:["keyword"],style:{fontStyle:"italic"}},{types:["doctype"],style:{color:"rgb(199, 146, 234)",fontStyle:"italic"}},{types:["namespace"],style:{color:"rgb(178, 204, 214)"}},{types:["url"],style:{color:"rgb(221, 221, 221)"}}]},magicComments:[{className:"theme-code-block-highlighted-line",line:"highlight-next-line",block:{start:"highlight-start",end:"highlight-end"}}]},navbar:{title:"YetAnotherNet",items:[{type:"doc",docId:"intro",position:"left",label:"Docs"},{to:"/api/",label:"API",position:"left"},{to:"/changelog",label:"Changelog",position:"left"},{href:"https://discord.gg/gMWmuaZEY6",label:"Discord",position:"right"},{href:"https://github.com/YetAnotherClown/YetAnotherNet",label:"GitHub",position:"right"}],hideOnScroll:!1},footer:{style:"dark",copyright:"Copyright \xa9 2023 YetAnotherClown. Built with Moonwave and Docusaurus",links:[{title:"Links",items:[{label:"Clown's Circus Discord",href:"https://discord.gg/gMWmuaZEY6"},{label:"YetAnotherClown on Github",href:"https://github.com/YetAnotherClown"}]}]},colorMode:{respectPrefersColorScheme:!0,defaultMode:"light",disableSwitch:!1},docs:{versionPersistence:"localStorage",sidebar:{hideable:!1,autoCollapseCategories:!1}},metadata:[],tableOfContents:{minHeadingLevel:2,maxHeadingLevel:3}},plugins:[["docusaurus-plugin-moonwave",{id:"moonwave",code:["C:\\Users\\thefa\\Documents\\Rojo Workspace\\Utilities\\Net Branches\\YetAnotherNet\\lib"],sourceUrl:"https://github.com/YetAnotherClown/YetAnotherNet/blob/main",projectDir:"C:\\Users\\thefa\\Documents\\Rojo Workspace\\Utilities\\Net Branches\\YetAnotherNet",classOrder:["Net","Route","Loop","QueryResult","SendRequest"],apiCategories:[],binaryPath:"C:\\Users\\thefa\\AppData\\Roaming\\npm\\node_modules\\moonwave\\dist\\bin\\moonwave-extractor-1.1.2.exe"}],"docusaurus-lunr-search"],presets:[["@docusaurus/preset-classic",{docs:{editUrl:"https://github.com/YetAnotherClown/YetAnotherNet/edit/main/",sidebarCollapsible:!0},blog:!1,pages:{path:"pages",exclude:["_*.*"]},theme:{customCss:["src/css/moonwave.css"]}}]],baseUrlIssueBanner:!0,i18n:{defaultLocale:"en",path:"i18n",locales:["en"],localeConfigs:{}},onDuplicateRoutes:"warn",staticDirectories:["static"],themes:[],scripts:[],headTags:[],stylesheets:[],clientModules:[],titleDelimiter:"|",noIndex:!1,markdown:{mermaid:!1}}},87462:(e,t,n)=>{"use strict";function r(){return r=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},r.apply(this,arguments)}n.d(t,{Z:()=>r})},75068:(e,t,n)=>{"use strict";function r(e,t){return r=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},r(e,t)}function a(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,r(e,t)}n.d(t,{Z:()=>a})},63366:(e,t,n)=>{"use strict";function r(e,t){if(null==e)return{};var n,r,a={},o=Object.keys(e);for(r=0;r<o.length;r++)n=o[r],t.indexOf(n)>=0||(a[n]=e[n]);return a}n.d(t,{Z:()=>r})},38776:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var r=!0,a="Invariant failed";function o(e,t){if(!e){if(r)throw new Error(a);var n="function"==typeof t?t():t,o=n?"".concat(a,": ").concat(n):a;throw new Error(o)}}},57529:e=>{"use strict";e.exports={}},16887:e=>{"use strict";e.exports=JSON.parse('{"/YetAnotherNet/api/-db9":{"__comp":"f1be467e","__context":{"plugin":"d652b126"},"sidebarClassNames":"fae45763","pluginOptions":"40ed88ed"},"/YetAnotherNet/api/Loop-b88":{"__comp":"12579bbd","__context":{"plugin":"d652b126"},"luaClass":"ab90f3a6","sidebarClassNames":"fae45763","typeLinks":"1d56ba4b","tocData":"47263fc8","options":"40ed88ed"},"/YetAnotherNet/api/Net-693":{"__comp":"12579bbd","__context":{"plugin":"d652b126"},"luaClass":"4ece04dd","sidebarClassNames":"fae45763","typeLinks":"1d56ba4b","tocData":"16750545","options":"40ed88ed"},"/YetAnotherNet/api/QueryResult-093":{"__comp":"12579bbd","__context":{"plugin":"d652b126"},"luaClass":"3efd06ed","sidebarClassNames":"fae45763","typeLinks":"1d56ba4b","tocData":"b96e1a06","options":"40ed88ed"},"/YetAnotherNet/api/Route-63b":{"__comp":"12579bbd","__context":{"plugin":"d652b126"},"luaClass":"203435e1","sidebarClassNames":"fae45763","typeLinks":"1d56ba4b","tocData":"3af131fb","options":"40ed88ed"},"/YetAnotherNet/api/SendRequest-847":{"__comp":"12579bbd","__context":{"plugin":"d652b126"},"luaClass":"d39e7a11","sidebarClassNames":"fae45763","typeLinks":"1d56ba4b","tocData":"eea81e43","options":"40ed88ed"},"/YetAnotherNet/CHANGELOG-1fc":{"__comp":"1f391b9e","__context":{"plugin":"b6823f28"},"content":"8deedfb8"},"/YetAnotherNet/docs-983":{"__comp":"1be78505","__context":{"plugin":"40568db5"},"versionMetadata":"935f2afb"},"/YetAnotherNet/docs/getting-started/hooks-55d":{"__comp":"17896441","content":"136137d4"},"/YetAnotherNet/docs/getting-started/middleware-a58":{"__comp":"17896441","content":"10069cb2"},"/YetAnotherNet/docs/getting-started/routes-75a":{"__comp":"17896441","content":"07e366dd"},"/YetAnotherNet/docs/intro-d90":{"__comp":"17896441","content":"0e384e19"},"/YetAnotherNet/docs/setup/ecr-b05":{"__comp":"17896441","content":"f23d5c98"},"/YetAnotherNet/docs/setup/matter-d0b":{"__comp":"17896441","content":"f14628b2"},"/YetAnotherNet/docs/setup/other-06d":{"__comp":"17896441","content":"65c42d40"},"/YetAnotherNet/-613":{"__comp":"d3874e59","__context":{"plugin":"b6823f28"},"config":"5e9f5e1a"}}')}},e=>{e.O(0,[532],(()=>{return t=49383,e(e.s=t);var t}));e.O()}]); \ No newline at end of file diff --git a/assets/js/main.a92b6265.js.LICENSE.txt b/assets/js/main.0795cfb3.js.LICENSE.txt similarity index 100% rename from assets/js/main.a92b6265.js.LICENSE.txt rename to assets/js/main.0795cfb3.js.LICENSE.txt diff --git a/assets/js/main.a92b6265.js b/assets/js/main.a92b6265.js deleted file mode 100644 index c2f06bd..0000000 --- a/assets/js/main.a92b6265.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see main.a92b6265.js.LICENSE.txt */ -(self.webpackChunkdocs=self.webpackChunkdocs||[]).push([[179],{723:(e,t,n)=>{"use strict";n.d(t,{Z:()=>p});var r=n(67294),a=n(87462),o=n(68356),i=n.n(o),l=n(16887);const s={"07e366dd":[()=>Promise.all([n.e(532),n.e(959)]).then(n.bind(n,65701)),"@site/docs/getting-started/routes.mdx",65701],"0e384e19":[()=>n.e(671).then(n.bind(n,59881)),"@site/docs/intro.md",59881],"10069cb2":[()=>Promise.all([n.e(532),n.e(54)]).then(n.bind(n,95033)),"@site/docs/getting-started/middleware.mdx",95033],"12579bbd":[()=>Promise.all([n.e(532),n.e(549)]).then(n.bind(n,81117)),"C:\\Users\\thefa\\AppData\\Local\\moonwave\\Cache\\YetAnotherNet\\node_modules\\docusaurus-plugin-moonwave\\src\\components\\LuaClass.js",81117],"136137d4":[()=>Promise.all([n.e(532),n.e(771)]).then(n.bind(n,76253)),"@site/docs/getting-started/hooks.mdx",76253],16750545:[()=>n.e(661).then(n.t.bind(n,95569,19)),"C:\\Users\\thefa\\AppData\\Local\\moonwave\\Cache\\YetAnotherNet\\.docusaurus\\docusaurus-plugin-moonwave\\moonwave\\Net-toc.json",95569],17896441:[()=>Promise.all([n.e(532),n.e(918)]).then(n.bind(n,74005)),"@theme/DocItem",74005],"1be78505":[()=>Promise.all([n.e(532),n.e(514)]).then(n.bind(n,90606)),"@theme/DocPage",90606],"1d56ba4b":[()=>n.e(836).then(n.t.bind(n,85492,19)),"C:\\Users\\thefa\\AppData\\Local\\moonwave\\Cache\\YetAnotherNet\\.docusaurus\\docusaurus-plugin-moonwave\\moonwave\\typeLinks.json",85492],"203435e1":[()=>n.e(670).then(n.t.bind(n,80827,19)),"C:\\Users\\thefa\\AppData\\Local\\moonwave\\Cache\\YetAnotherNet\\.docusaurus\\docusaurus-plugin-moonwave\\moonwave\\Route.json",80827],"3af131fb":[()=>n.e(354).then(n.t.bind(n,62497,19)),"C:\\Users\\thefa\\AppData\\Local\\moonwave\\Cache\\YetAnotherNet\\.docusaurus\\docusaurus-plugin-moonwave\\moonwave\\Route-toc.json",62497],"3efd06ed":[()=>n.e(785).then(n.t.bind(n,75797,19)),"C:\\Users\\thefa\\AppData\\Local\\moonwave\\Cache\\YetAnotherNet\\.docusaurus\\docusaurus-plugin-moonwave\\moonwave\\QueryResult.json",75797],"40568db5":[()=>n.e(275).then(n.t.bind(n,83769,19)),"C:\\Users\\thefa\\AppData\\Local\\moonwave\\Cache\\YetAnotherNet\\.docusaurus\\docusaurus-plugin-content-docs\\default\\plugin-route-context-module-100.json",83769],"40ed88ed":[()=>n.e(473).then(n.t.bind(n,63891,19)),"C:\\Users\\thefa\\AppData\\Local\\moonwave\\Cache\\YetAnotherNet\\.docusaurus\\docusaurus-plugin-moonwave\\moonwave\\options.json",63891],"47263fc8":[()=>n.e(293).then(n.t.bind(n,24777,19)),"C:\\Users\\thefa\\AppData\\Local\\moonwave\\Cache\\YetAnotherNet\\.docusaurus\\docusaurus-plugin-moonwave\\moonwave\\Loop-toc.json",24777],"4ece04dd":[()=>n.e(345).then(n.t.bind(n,64760,19)),"C:\\Users\\thefa\\AppData\\Local\\moonwave\\Cache\\YetAnotherNet\\.docusaurus\\docusaurus-plugin-moonwave\\moonwave\\Net.json",64760],"5e9f5e1a":[()=>Promise.resolve().then(n.bind(n,36809)),"@generated/docusaurus.config",36809],"65c42d40":[()=>Promise.all([n.e(532),n.e(331)]).then(n.bind(n,53029)),"@site/docs/setup/other.mdx",53029],"935f2afb":[()=>n.e(53).then(n.t.bind(n,1109,19)),"~docs/default/version-current-metadata-prop-751.json",1109],ab90f3a6:[()=>n.e(201).then(n.t.bind(n,60826,19)),"C:\\Users\\thefa\\AppData\\Local\\moonwave\\Cache\\YetAnotherNet\\.docusaurus\\docusaurus-plugin-moonwave\\moonwave\\Loop.json",60826],b6823f28:[()=>n.e(676).then(n.t.bind(n,15745,19)),"C:\\Users\\thefa\\AppData\\Local\\moonwave\\Cache\\YetAnotherNet\\.docusaurus\\docusaurus-plugin-content-pages\\default\\plugin-route-context-module-100.json",15745],b96e1a06:[()=>n.e(255).then(n.t.bind(n,53283,19)),"C:\\Users\\thefa\\AppData\\Local\\moonwave\\Cache\\YetAnotherNet\\.docusaurus\\docusaurus-plugin-moonwave\\moonwave\\QueryResult-toc.json",53283],d3874e59:[()=>Promise.all([n.e(532),n.e(374)]).then(n.bind(n,52897)),"@site/pages/index.js",52897],d39e7a11:[()=>n.e(827).then(n.t.bind(n,88653,19)),"C:\\Users\\thefa\\AppData\\Local\\moonwave\\Cache\\YetAnotherNet\\.docusaurus\\docusaurus-plugin-moonwave\\moonwave\\SendRequest.json",88653],d652b126:[()=>n.e(635).then(n.t.bind(n,88303,19)),"C:\\Users\\thefa\\AppData\\Local\\moonwave\\Cache\\YetAnotherNet\\.docusaurus\\docusaurus-plugin-moonwave\\moonwave\\plugin-route-context-module-100.json",88303],eea81e43:[()=>n.e(928).then(n.t.bind(n,83522,19)),"C:\\Users\\thefa\\AppData\\Local\\moonwave\\Cache\\YetAnotherNet\\.docusaurus\\docusaurus-plugin-moonwave\\moonwave\\SendRequest-toc.json",83522],f14628b2:[()=>Promise.all([n.e(532),n.e(970)]).then(n.bind(n,48755)),"@site/docs/setup/matter.mdx",48755],f1be467e:[()=>n.e(23).then(n.bind(n,23424)),"C:\\Users\\thefa\\AppData\\Local\\moonwave\\Cache\\YetAnotherNet\\node_modules\\docusaurus-plugin-moonwave\\src\\components\\Redirect.js",23424],f23d5c98:[()=>n.e(753).then(n.bind(n,25283)),"@site/docs/setup/ecr.md",25283],fae45763:[()=>n.e(844).then(n.t.bind(n,7636,19)),"C:\\Users\\thefa\\AppData\\Local\\moonwave\\Cache\\YetAnotherNet\\.docusaurus\\docusaurus-plugin-moonwave\\moonwave\\sidebar.json",7636]};function u(e){let{error:t,retry:n,pastDelay:a}=e;return t?r.createElement("div",{style:{textAlign:"center",color:"#fff",backgroundColor:"#fa383e",borderColor:"#fa383e",borderStyle:"solid",borderRadius:"0.25rem",borderWidth:"1px",boxSizing:"border-box",display:"block",padding:"1rem",flex:"0 0 50%",marginLeft:"25%",marginRight:"25%",marginTop:"5rem",maxWidth:"50%",width:"100%"}},r.createElement("p",null,String(t)),r.createElement("div",null,r.createElement("button",{type:"button",onClick:n},"Retry"))):a?r.createElement("div",{style:{display:"flex",justifyContent:"center",alignItems:"center",height:"100vh"}},r.createElement("svg",{id:"loader",style:{width:128,height:110,position:"absolute",top:"calc(100vh - 64%)"},viewBox:"0 0 45 45",xmlns:"http://www.w3.org/2000/svg",stroke:"#61dafb"},r.createElement("g",{fill:"none",fillRule:"evenodd",transform:"translate(1 1)",strokeWidth:"2"},r.createElement("circle",{cx:"22",cy:"22",r:"6",strokeOpacity:"0"},r.createElement("animate",{attributeName:"r",begin:"1.5s",dur:"3s",values:"6;22",calcMode:"linear",repeatCount:"indefinite"}),r.createElement("animate",{attributeName:"stroke-opacity",begin:"1.5s",dur:"3s",values:"1;0",calcMode:"linear",repeatCount:"indefinite"}),r.createElement("animate",{attributeName:"stroke-width",begin:"1.5s",dur:"3s",values:"2;0",calcMode:"linear",repeatCount:"indefinite"})),r.createElement("circle",{cx:"22",cy:"22",r:"6",strokeOpacity:"0"},r.createElement("animate",{attributeName:"r",begin:"3s",dur:"3s",values:"6;22",calcMode:"linear",repeatCount:"indefinite"}),r.createElement("animate",{attributeName:"stroke-opacity",begin:"3s",dur:"3s",values:"1;0",calcMode:"linear",repeatCount:"indefinite"}),r.createElement("animate",{attributeName:"stroke-width",begin:"3s",dur:"3s",values:"2;0",calcMode:"linear",repeatCount:"indefinite"})),r.createElement("circle",{cx:"22",cy:"22",r:"8"},r.createElement("animate",{attributeName:"r",begin:"0s",dur:"1.5s",values:"6;1;2;3;4;5;6",calcMode:"linear",repeatCount:"indefinite"}))))):null}var c=n(99670),d=n(30226);function f(e,t){if("*"===e)return i()({loading:u,loader:()=>n.e(972).then(n.bind(n,4972)),modules:["@theme/NotFound"],webpack:()=>[4972],render(e,t){const n=e.default;return r.createElement(d.z,{value:{plugin:{name:"native",id:"default"}}},r.createElement(n,t))}});const o=l[`${e}-${t}`],f={},p=[],m=[],h=(0,c.Z)(o);return Object.entries(h).forEach((e=>{let[t,n]=e;const r=s[n];r&&(f[t]=r[0],p.push(r[1]),m.push(r[2]))})),i().Map({loading:u,loader:f,modules:p,webpack:()=>m,render(t,n){const i=JSON.parse(JSON.stringify(o));Object.entries(t).forEach((t=>{let[n,r]=t;const a=r.default;if(!a)throw new Error(`The page component at ${e} doesn't have a default export. This makes it impossible to render anything. Consider default-exporting a React component.`);"object"!=typeof a&&"function"!=typeof a||Object.keys(r).filter((e=>"default"!==e)).forEach((e=>{a[e]=r[e]}));let o=i;const l=n.split(".");l.slice(0,-1).forEach((e=>{o=o[e]})),o[l[l.length-1]]=a}));const l=i.__comp;delete i.__comp;const s=i.__context;return delete i.__context,r.createElement(d.z,{value:s},r.createElement(l,(0,a.Z)({},i,n)))}})}const p=[{path:"/YetAnotherNet/api/",component:f("/YetAnotherNet/api/","db9"),exact:!0},{path:"/YetAnotherNet/api/Loop",component:f("/YetAnotherNet/api/Loop","b88"),exact:!0},{path:"/YetAnotherNet/api/Net",component:f("/YetAnotherNet/api/Net","693"),exact:!0},{path:"/YetAnotherNet/api/QueryResult",component:f("/YetAnotherNet/api/QueryResult","093"),exact:!0},{path:"/YetAnotherNet/api/Route",component:f("/YetAnotherNet/api/Route","63b"),exact:!0},{path:"/YetAnotherNet/api/SendRequest",component:f("/YetAnotherNet/api/SendRequest","847"),exact:!0},{path:"/YetAnotherNet/docs",component:f("/YetAnotherNet/docs","983"),routes:[{path:"/YetAnotherNet/docs/getting-started/hooks",component:f("/YetAnotherNet/docs/getting-started/hooks","55d"),exact:!0,sidebar:"defaultSidebar"},{path:"/YetAnotherNet/docs/getting-started/middleware",component:f("/YetAnotherNet/docs/getting-started/middleware","a58"),exact:!0,sidebar:"defaultSidebar"},{path:"/YetAnotherNet/docs/getting-started/routes",component:f("/YetAnotherNet/docs/getting-started/routes","75a"),exact:!0,sidebar:"defaultSidebar"},{path:"/YetAnotherNet/docs/intro",component:f("/YetAnotherNet/docs/intro","d90"),exact:!0,sidebar:"defaultSidebar"},{path:"/YetAnotherNet/docs/setup/ecr",component:f("/YetAnotherNet/docs/setup/ecr","b05"),exact:!0,sidebar:"defaultSidebar"},{path:"/YetAnotherNet/docs/setup/matter",component:f("/YetAnotherNet/docs/setup/matter","d0b"),exact:!0,sidebar:"defaultSidebar"},{path:"/YetAnotherNet/docs/setup/other",component:f("/YetAnotherNet/docs/setup/other","06d"),exact:!0,sidebar:"defaultSidebar"}]},{path:"/YetAnotherNet/",component:f("/YetAnotherNet/","613"),exact:!0},{path:"*",component:f("*")}]},98934:(e,t,n)=>{"use strict";n.d(t,{_:()=>a,t:()=>o});var r=n(67294);const a=r.createContext(!1);function o(e){let{children:t}=e;const[n,o]=(0,r.useState)(!1);return(0,r.useEffect)((()=>{o(!0)}),[]),r.createElement(a.Provider,{value:n},t)}},49383:(e,t,n)=>{"use strict";var r=n(67294),a=n(73935),o=n(73727),i=n(70405),l=n(10412);const s=[n(32497),n(3310),n(18320),n(34197)];var u=n(723),c=n(16550),d=n(18790);function f(e){let{children:t}=e;return r.createElement(r.Fragment,null,t)}var p=n(87462),m=n(35742),h=n(52263),g=n(44996),b=n(86668),v=n(1944),y=n(94711),w=n(19727),E=n(43320),k=n(90197);function S(){const{i18n:{defaultLocale:e,localeConfigs:t}}=(0,h.Z)(),n=(0,y.l)();return r.createElement(m.Z,null,Object.entries(t).map((e=>{let[t,{htmlLang:a}]=e;return r.createElement("link",{key:t,rel:"alternate",href:n.createUrl({locale:t,fullyQualified:!0}),hrefLang:a})})),r.createElement("link",{rel:"alternate",href:n.createUrl({locale:e,fullyQualified:!0}),hrefLang:"x-default"}))}function x(e){let{permalink:t}=e;const{siteConfig:{url:n}}=(0,h.Z)(),a=function(){const{siteConfig:{url:e}}=(0,h.Z)(),{pathname:t}=(0,c.TH)();return e+(0,g.Z)(t)}(),o=t?`${n}${t}`:a;return r.createElement(m.Z,null,r.createElement("meta",{property:"og:url",content:o}),r.createElement("link",{rel:"canonical",href:o}))}function C(){const{i18n:{currentLocale:e}}=(0,h.Z)(),{metadata:t,image:n}=(0,b.L)();return r.createElement(r.Fragment,null,r.createElement(m.Z,null,r.createElement("meta",{name:"twitter:card",content:"summary_large_image"}),r.createElement("body",{className:w.h})),n&&r.createElement(v.d,{image:n}),r.createElement(x,null),r.createElement(S,null),r.createElement(k.Z,{tag:E.HX,locale:e}),r.createElement(m.Z,null,t.map(((e,t)=>r.createElement("meta",(0,p.Z)({key:t},e))))))}const _=new Map;function T(e){if(_.has(e.pathname))return{...e,pathname:_.get(e.pathname)};if((0,d.f)(u.Z,e.pathname).some((e=>{let{route:t}=e;return!0===t.exact})))return _.set(e.pathname,e.pathname),e;const t=e.pathname.trim().replace(/(?:\/index)?\.html$/,"")||"/";return _.set(e.pathname,t),{...e,pathname:t}}var A=n(98934),N=n(58940);function L(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];const a=s.map((t=>{const r=t.default?.[e]??t[e];return r?.(...n)}));return()=>a.forEach((e=>e?.()))}const O=function(e){let{children:t,location:n,previousLocation:a}=e;return(0,r.useLayoutEffect)((()=>{a!==n&&(!function(e){let{location:t,previousLocation:n}=e;if(!n)return;const r=t.pathname===n.pathname,a=t.hash===n.hash,o=t.search===n.search;if(r&&a&&!o)return;const{hash:i}=t;if(i){const e=decodeURIComponent(i.substring(1)),t=document.getElementById(e);t?.scrollIntoView()}else window.scrollTo(0,0)}({location:n,previousLocation:a}),L("onRouteDidUpdate",{previousLocation:a,location:n}))}),[a,n]),t};function P(e){const t=Array.from(new Set([e,decodeURI(e)])).map((e=>(0,d.f)(u.Z,e))).flat();return Promise.all(t.map((e=>e.route.component.preload?.())))}class R extends r.Component{constructor(e){super(e),this.previousLocation=void 0,this.routeUpdateCleanupCb=void 0,this.previousLocation=null,this.routeUpdateCleanupCb=l.Z.canUseDOM?L("onRouteUpdate",{previousLocation:null,location:this.props.location}):()=>{},this.state={nextRouteHasLoaded:!0}}shouldComponentUpdate(e,t){if(e.location===this.props.location)return t.nextRouteHasLoaded;const n=e.location;return this.previousLocation=this.props.location,this.setState({nextRouteHasLoaded:!1}),this.routeUpdateCleanupCb=L("onRouteUpdate",{previousLocation:this.previousLocation,location:n}),P(n.pathname).then((()=>{this.routeUpdateCleanupCb(),this.setState({nextRouteHasLoaded:!0})})).catch((e=>{console.warn(e),window.location.reload()})),!1}render(){const{children:e,location:t}=this.props;return r.createElement(O,{previousLocation:this.previousLocation,location:t},r.createElement(c.AW,{location:t,render:()=>e}))}}const I=R,D="docusaurus-base-url-issue-banner-container",M="docusaurus-base-url-issue-banner",F="docusaurus-base-url-issue-banner-suggestion-container",B="__DOCUSAURUS_INSERT_BASEURL_BANNER";function U(e){return`\nwindow['${B}'] = true;\n\ndocument.addEventListener('DOMContentLoaded', maybeInsertBanner);\n\nfunction maybeInsertBanner() {\n var shouldInsert = window['${B}'];\n shouldInsert && insertBanner();\n}\n\nfunction insertBanner() {\n var bannerContainer = document.getElementById('${D}');\n if (!bannerContainer) {\n return;\n }\n var bannerHtml = ${JSON.stringify(function(e){return`\n<div id="${M}" style="border: thick solid red; background-color: rgb(255, 230, 179); margin: 20px; padding: 20px; font-size: 20px;">\n <p style="font-weight: bold; font-size: 30px;">Your Docusaurus site did not load properly.</p>\n <p>A very common reason is a wrong site <a href="https://docusaurus.io/docs/docusaurus.config.js/#baseurl" style="font-weight: bold;">baseUrl configuration</a>.</p>\n <p>Current configured baseUrl = <span style="font-weight: bold; color: red;">${e}</span> ${"/"===e?" (default value)":""}</p>\n <p>We suggest trying baseUrl = <span id="${F}" style="font-weight: bold; color: green;"></span></p>\n</div>\n`}(e)).replace(/</g,"\\<")};\n bannerContainer.innerHTML = bannerHtml;\n var suggestionContainer = document.getElementById('${F}');\n var actualHomePagePath = window.location.pathname;\n var suggestedBaseUrl = actualHomePagePath.substr(-1) === '/'\n ? actualHomePagePath\n : actualHomePagePath + '/';\n suggestionContainer.innerHTML = suggestedBaseUrl;\n}\n`}function $(){const{siteConfig:{baseUrl:e}}=(0,h.Z)();return(0,r.useLayoutEffect)((()=>{window[B]=!1}),[]),r.createElement(r.Fragment,null,!l.Z.canUseDOM&&r.createElement(m.Z,null,r.createElement("script",null,U(e))),r.createElement("div",{id:D}))}function j(){const{siteConfig:{baseUrl:e,baseUrlIssueBanner:t}}=(0,h.Z)(),{pathname:n}=(0,c.TH)();return t&&n===e?r.createElement($,null):null}function z(){const{siteConfig:{favicon:e,title:t,noIndex:n},i18n:{currentLocale:a,localeConfigs:o}}=(0,h.Z)(),i=(0,g.Z)(e),{htmlLang:l,direction:s}=o[a];return r.createElement(m.Z,null,r.createElement("html",{lang:l,dir:s}),r.createElement("title",null,t),r.createElement("meta",{property:"og:title",content:t}),r.createElement("meta",{name:"viewport",content:"width=device-width, initial-scale=1.0"}),n&&r.createElement("meta",{name:"robots",content:"noindex, nofollow"}),e&&r.createElement("link",{rel:"icon",href:i}))}var Z=n(44763);function H(){const e=(0,d.H)(u.Z),t=(0,c.TH)();return r.createElement(Z.Z,null,r.createElement(N.M,null,r.createElement(A.t,null,r.createElement(f,null,r.createElement(z,null),r.createElement(C,null),r.createElement(j,null),r.createElement(I,{location:T(t)},e)))))}var Y=n(16887);const V=function(e){try{return document.createElement("link").relList.supports(e)}catch{return!1}}("prefetch")?function(e){return new Promise(((t,n)=>{if("undefined"==typeof document)return void n();const r=document.createElement("link");r.setAttribute("rel","prefetch"),r.setAttribute("href",e),r.onload=()=>t(),r.onerror=()=>n();const a=document.getElementsByTagName("head")[0]??document.getElementsByName("script")[0]?.parentNode;a?.appendChild(r)}))}:function(e){return new Promise(((t,n)=>{const r=new XMLHttpRequest;r.open("GET",e,!0),r.withCredentials=!0,r.onload=()=>{200===r.status?t():n()},r.send(null)}))};var W=n(99670);const G=new Set,q=new Set,K=()=>navigator.connection?.effectiveType.includes("2g")||navigator.connection?.saveData,Q={prefetch(e){if(!(e=>!K()&&!q.has(e)&&!G.has(e))(e))return!1;G.add(e);const t=(0,d.f)(u.Z,e).flatMap((e=>{return t=e.route.path,Object.entries(Y).filter((e=>{let[n]=e;return n.replace(/-[^-]+$/,"")===t})).flatMap((e=>{let[,t]=e;return Object.values((0,W.Z)(t))}));var t}));return Promise.all(t.map((e=>{const t=n.gca(e);return t&&!t.includes("undefined")?V(t).catch((()=>{})):Promise.resolve()})))},preload:e=>!!(e=>!K()&&!q.has(e))(e)&&(q.add(e),P(e))},X=Object.freeze(Q);if(l.Z.canUseDOM){window.docusaurus=X;const e=a.hydrate;P(window.location.pathname).then((()=>{e(r.createElement(i.B6,null,r.createElement(o.VK,null,r.createElement(H,null))),document.getElementById("__docusaurus"))}))}},58940:(e,t,n)=>{"use strict";n.d(t,{_:()=>c,M:()=>d});var r=n(67294),a=n(36809);const o=JSON.parse('{"docusaurus-lunr-search":{"default":{"fileNames":{"searchDoc":"search-doc-1707322688709.json","lunrIndex":"lunr-index-1707322688709.json"}}},"docusaurus-plugin-content-docs":{"default":{"path":"/YetAnotherNet/docs","versions":[{"name":"current","label":"Next","isLast":true,"path":"/YetAnotherNet/docs","mainDocId":"intro","docs":[{"id":"getting-started/hooks","path":"/YetAnotherNet/docs/getting-started/hooks","sidebar":"defaultSidebar"},{"id":"getting-started/middleware","path":"/YetAnotherNet/docs/getting-started/middleware","sidebar":"defaultSidebar"},{"id":"getting-started/routes","path":"/YetAnotherNet/docs/getting-started/routes","sidebar":"defaultSidebar"},{"id":"intro","path":"/YetAnotherNet/docs/intro","sidebar":"defaultSidebar"},{"id":"setup/ecr","path":"/YetAnotherNet/docs/setup/ecr","sidebar":"defaultSidebar"},{"id":"setup/matter","path":"/YetAnotherNet/docs/setup/matter","sidebar":"defaultSidebar"},{"id":"setup/other","path":"/YetAnotherNet/docs/setup/other","sidebar":"defaultSidebar"}],"draftIds":[],"sidebars":{"defaultSidebar":{"link":{"path":"/YetAnotherNet/docs/intro","label":"intro"}}}}],"breadcrumbs":true}}}'),i=JSON.parse('{"defaultLocale":"en","locales":["en"],"path":"i18n","currentLocale":"en","localeConfigs":{"en":{"label":"English","direction":"ltr","htmlLang":"en","calendar":"gregory","path":"en"}}}');var l=n(57529);const s=JSON.parse('{"docusaurusVersion":"2.3.1","siteVersion":"0.0.0","pluginVersions":{"docusaurus-plugin-content-docs":{"type":"package","name":"@docusaurus/plugin-content-docs","version":"2.3.1"},"docusaurus-plugin-content-pages":{"type":"package","name":"@docusaurus/plugin-content-pages","version":"2.3.1"},"docusaurus-plugin-sitemap":{"type":"package","name":"@docusaurus/plugin-sitemap","version":"2.3.1"},"docusaurus-theme-classic":{"type":"package","name":"@docusaurus/theme-classic","version":"2.3.1"},"docusaurus-plugin-moonwave":{"type":"package","name":"docusaurus-plugin-moonwave","version":"1.1.2"},"docusaurus-lunr-search":{"type":"package","name":"docusaurus-lunr-search","version":"2.3.2"}}}'),u={siteConfig:a.default,siteMetadata:s,globalData:o,i18n:i,codeTranslations:l},c=r.createContext(u);function d(e){let{children:t}=e;return r.createElement(c.Provider,{value:u},t)}},44763:(e,t,n)=>{"use strict";n.d(t,{Z:()=>c});var r=n(67294),a=n(10412),o=n(35742),i=n(34510);function l(e){let{error:t,tryAgain:n}=e;return r.createElement("div",{style:{display:"flex",flexDirection:"column",justifyContent:"center",alignItems:"center",height:"50vh",width:"100%",fontSize:"20px"}},r.createElement("h1",null,"This page crashed."),r.createElement("p",null,t.message),r.createElement("button",{type:"button",onClick:n},"Try again"))}function s(e){let{error:t,tryAgain:n}=e;return r.createElement(c,{fallback:()=>r.createElement(l,{error:t,tryAgain:n})},r.createElement(o.Z,null,r.createElement("title",null,"Page Error")),r.createElement(i.Z,null,r.createElement(l,{error:t,tryAgain:n})))}const u=e=>r.createElement(s,e);class c extends r.Component{constructor(e){super(e),this.state={error:null}}componentDidCatch(e){a.Z.canUseDOM&&this.setState({error:e})}render(){const{children:e}=this.props,{error:t}=this.state;if(t){const e={error:t,tryAgain:()=>this.setState({error:null})};return(this.props.fallback??u)(e)}return e??null}}},10412:(e,t,n)=>{"use strict";n.d(t,{Z:()=>a});const r="undefined"!=typeof window&&"document"in window&&"createElement"in window.document,a={canUseDOM:r,canUseEventListeners:r&&("addEventListener"in window||"attachEvent"in window),canUseIntersectionObserver:r&&"IntersectionObserver"in window,canUseViewport:r&&"screen"in window}},35742:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var r=n(67294),a=n(70405);function o(e){return r.createElement(a.ql,e)}},39960:(e,t,n)=>{"use strict";n.d(t,{Z:()=>h});var r=n(87462),a=n(67294),o=n(73727),i=n(18780),l=n(52263),s=n(13919),u=n(10412);const c=a.createContext({collectLink:()=>{}}),d=()=>(0,a.useContext)(c);var f=n(44996);const p=e=>e.startsWith("/");function m(e,t){let{isNavLink:n,to:c,href:m,activeClassName:h,isActive:g,"data-noBrokenLinkCheck":b,autoAddBaseUrl:v=!0,...y}=e;const{siteConfig:{trailingSlash:w,baseUrl:E}}=(0,l.Z)(),{withBaseUrl:k}=(0,f.C)(),S=d(),x=(0,a.useRef)(null);(0,a.useImperativeHandle)(t,(()=>x.current));const C=c||m;const _=(0,s.Z)(C),T=C?.replace("pathname://","");let A=void 0!==T?(N=T,v&&p(N)?k(N):N):void 0;var N;A&&_&&(A=(0,i.applyTrailingSlash)(A,{trailingSlash:w,baseUrl:E}));const L=(0,a.useRef)(!1),O=n?o.OL:o.rU,P=u.Z.canUseIntersectionObserver,R=(0,a.useRef)(),I=()=>{L.current||null==A||(window.docusaurus.preload(A),L.current=!0)};(0,a.useEffect)((()=>(!P&&_&&null!=A&&window.docusaurus.prefetch(A),()=>{P&&R.current&&R.current.disconnect()})),[R,A,P,_]);const D=A?.startsWith("#")??!1,M=!A||!_||D;return M||b||S.collectLink(A),M?a.createElement("a",(0,r.Z)({ref:x,href:A},C&&!_&&{target:"_blank",rel:"noopener noreferrer"},y)):a.createElement(O,(0,r.Z)({},y,{onMouseEnter:I,onTouchStart:I,innerRef:e=>{x.current=e,P&&e&&_&&(R.current=new window.IntersectionObserver((t=>{t.forEach((t=>{e===t.target&&(t.isIntersecting||t.intersectionRatio>0)&&(R.current.unobserve(e),R.current.disconnect(),null!=A&&window.docusaurus.prefetch(A))}))})),R.current.observe(e))},to:A},n&&{isActive:g,activeClassName:h}))}const h=a.forwardRef(m)},95999:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s,I:()=>l});var r=n(67294);function a(e,t){const n=e.split(/(\{\w+\})/).map(((e,n)=>{if(n%2==1){const n=t?.[e.slice(1,-1)];if(void 0!==n)return n}return e}));return n.some((e=>(0,r.isValidElement)(e)))?n.map(((e,t)=>(0,r.isValidElement)(e)?r.cloneElement(e,{key:t}):e)).filter((e=>""!==e)):n.join("")}var o=n(57529);function i(e){let{id:t,message:n}=e;if(void 0===t&&void 0===n)throw new Error("Docusaurus translation declarations must have at least a translation id or a default translation message");return o[t??n]??n??t}function l(e,t){let{message:n,id:r}=e;return a(i({message:n,id:r}),t)}function s(e){let{children:t,id:n,values:o}=e;if(t&&"string"!=typeof t)throw console.warn("Illegal <Translate> children",t),new Error("The Docusaurus <Translate> component only accept simple string values");const l=i({message:t,id:n});return r.createElement(r.Fragment,null,a(l,o))}},29935:(e,t,n)=>{"use strict";n.d(t,{m:()=>r});const r="default"},13919:(e,t,n)=>{"use strict";function r(e){return/^(?:\w*:|\/\/)/.test(e)}function a(e){return void 0!==e&&!r(e)}n.d(t,{Z:()=>a,b:()=>r})},44996:(e,t,n)=>{"use strict";n.d(t,{C:()=>i,Z:()=>l});var r=n(67294),a=n(52263),o=n(13919);function i(){const{siteConfig:{baseUrl:e,url:t}}=(0,a.Z)(),n=(0,r.useCallback)(((n,r)=>function(e,t,n,r){let{forcePrependBaseUrl:a=!1,absolute:i=!1}=void 0===r?{}:r;if(!n||n.startsWith("#")||(0,o.b)(n))return n;if(a)return t+n.replace(/^\//,"");if(n===t.replace(/\/$/,""))return t;const l=n.startsWith(t)?n:t+n.replace(/^\//,"");return i?e+l:l}(t,e,n,r)),[t,e]);return{withBaseUrl:n}}function l(e,t){void 0===t&&(t={});const{withBaseUrl:n}=i();return n(e,t)}},52263:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var r=n(67294),a=n(58940);function o(){return(0,r.useContext)(a._)}},28084:(e,t,n)=>{"use strict";n.d(t,{OD:()=>o,eZ:()=>i});var r=n(52263),a=n(29935);function o(e,t){void 0===t&&(t={});const n=function(){const{globalData:e}=(0,r.Z)();return e}()[e];if(!n&&t.failfast)throw new Error(`Docusaurus plugin global data not found for "${e}" plugin.`);return n}function i(e,t,n){void 0===t&&(t=a.m),void 0===n&&(n={});const r=o(e),i=r?.[t];if(!i&&n.failfast)throw new Error(`Docusaurus plugin global data not found for "${e}" plugin with id "${t}".`);return i}},72389:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var r=n(67294),a=n(98934);function o(){return(0,r.useContext)(a._)}},99670:(e,t,n)=>{"use strict";n.d(t,{Z:()=>a});const r=e=>"object"==typeof e&&!!e&&Object.keys(e).length>0;function a(e){const t=".",n={};return function e(a,o){Object.entries(a).forEach((a=>{let[i,l]=a;const s=o?`${o}${t}${i}`:i;r(l)?e(l,s):n[s]=l}))}(e),n}},30226:(e,t,n)=>{"use strict";n.d(t,{_:()=>a,z:()=>o});var r=n(67294);const a=r.createContext(null);function o(e){let{children:t,value:n}=e;const o=r.useContext(a),i=(0,r.useMemo)((()=>function(e){let{parent:t,value:n}=e;if(!t){if(!n)throw new Error("Unexpected: no Docusaurus route context found");if(!("plugin"in n))throw new Error("Unexpected: Docusaurus topmost route context has no `plugin` attribute");return n}const r={...t.data,...n?.data};return{plugin:t.plugin,data:r}}({parent:o,value:n})),[o,n]);return r.createElement(a.Provider,{value:i},t)}},94104:(e,t,n)=>{"use strict";n.d(t,{Iw:()=>p,gA:()=>c,_r:()=>s,Jo:()=>m,zh:()=>u,yW:()=>f,gB:()=>d});var r=n(16550),a=n(28084);const o=e=>e.versions.find((e=>e.isLast));function i(e,t){const n=function(e,t){const n=o(e);return[...e.versions.filter((e=>e!==n)),n].find((e=>!!(0,r.LX)(t,{path:e.path,exact:!1,strict:!1})))}(e,t),a=n?.docs.find((e=>!!(0,r.LX)(t,{path:e.path,exact:!0,strict:!1})));return{activeVersion:n,activeDoc:a,alternateDocVersions:a?function(t){const n={};return e.versions.forEach((e=>{e.docs.forEach((r=>{r.id===t&&(n[e.name]=r)}))})),n}(a.id):{}}}const l={},s=()=>(0,a.OD)("docusaurus-plugin-content-docs")??l,u=e=>(0,a.eZ)("docusaurus-plugin-content-docs",e,{failfast:!0});function c(e){void 0===e&&(e={});const t=s(),{pathname:n}=(0,r.TH)();return function(e,t,n){void 0===n&&(n={});const a=Object.entries(e).sort(((e,t)=>t[1].path.localeCompare(e[1].path))).find((e=>{let[,n]=e;return!!(0,r.LX)(t,{path:n.path,exact:!1,strict:!1})})),o=a?{pluginId:a[0],pluginData:a[1]}:void 0;if(!o&&n.failfast)throw new Error(`Can't find active docs plugin for "${t}" pathname, while it was expected to be found. Maybe you tried to use a docs feature that can only be used on a docs-related page? Existing docs plugin paths are: ${Object.values(e).map((e=>e.path)).join(", ")}`);return o}(t,n,e)}function d(e){return u(e).versions}function f(e){const t=u(e);return o(t)}function p(e){const t=u(e),{pathname:n}=(0,r.TH)();return i(t,n)}function m(e){const t=u(e),{pathname:n}=(0,r.TH)();return function(e,t){const n=o(e);return{latestDocSuggestion:i(e,t).alternateDocVersions[n.name],latestVersionSuggestion:n}}(t,n)}},18320:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>o});var r=n(74865),a=n.n(r);a().configure({showSpinner:!1});const o={onRouteUpdate(e){let{location:t,previousLocation:n}=e;if(n&&t.pathname!==n.pathname){const e=window.setTimeout((()=>{a().start()}),200);return()=>window.clearTimeout(e)}},onRouteDidUpdate(){a().done()}}},3310:(e,t,n)=>{"use strict";n.r(t);var r=n(87410),a=n(36809);!function(e){const{themeConfig:{prism:t}}=a.default,{additionalLanguages:r}=t;globalThis.Prism=e,r.forEach((e=>{n(33003)(`./prism-${e}`)})),delete globalThis.Prism}(r.Z)},39471:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var r=n(67294);const a={iconExternalLink:"iconExternalLink_nPIU"};function o(e){let{width:t=13.5,height:n=13.5}=e;return r.createElement("svg",{width:t,height:n,"aria-hidden":"true",viewBox:"0 0 24 24",className:a.iconExternalLink},r.createElement("path",{fill:"currentColor",d:"M21 13v10h-21v-19h12v2h-10v15h17v-8h2zm3-12h-10.988l4.035 4-6.977 7.07 2.828 2.828 6.977-7.07 4.125 4.172v-11z"}))}},34510:(e,t,n)=>{"use strict";n.d(t,{Z:()=>ut});var r=n(67294),a=n(86010),o=n(44763),i=n(1944),l=n(87462),s=n(16550),u=n(95999),c=n(85936);const d="docusaurus_skipToContent_fallback";function f(e){e.setAttribute("tabindex","-1"),e.focus(),e.removeAttribute("tabindex")}function p(){const e=(0,r.useRef)(null),{action:t}=(0,s.k6)(),n=(0,r.useCallback)((e=>{e.preventDefault();const t=document.querySelector("main:first-of-type")??document.getElementById(d);t&&f(t)}),[]);return(0,c.S)((n=>{let{location:r}=n;e.current&&!r.hash&&"PUSH"===t&&f(e.current)})),{containerRef:e,onClick:n}}const m=(0,u.I)({id:"theme.common.skipToMainContent",description:"The skip to content label used for accessibility, allowing to rapidly navigate to main content with keyboard tab/enter navigation",message:"Skip to main content"});function h(e){const t=e.children??m,{containerRef:n,onClick:a}=p();return r.createElement("div",{ref:n,role:"region","aria-label":m},r.createElement("a",(0,l.Z)({},e,{href:`#${d}`,onClick:a}),t))}var g=n(35281),b=n(19727);const v={skipToContent:"skipToContent_fXgn"};function y(){return r.createElement(h,{className:v.skipToContent})}var w=n(86668),E=n(59689);function k(e){let{width:t=21,height:n=21,color:a="currentColor",strokeWidth:o=1.2,className:i,...s}=e;return r.createElement("svg",(0,l.Z)({viewBox:"0 0 15 15",width:t,height:n},s),r.createElement("g",{stroke:a,strokeWidth:o},r.createElement("path",{d:"M.75.75l13.5 13.5M14.25.75L.75 14.25"})))}const S={closeButton:"closeButton_CVFx"};function x(e){return r.createElement("button",(0,l.Z)({type:"button","aria-label":(0,u.I)({id:"theme.AnnouncementBar.closeButtonAriaLabel",message:"Close",description:"The ARIA label for close button of announcement bar"})},e,{className:(0,a.Z)("clean-btn close",S.closeButton,e.className)}),r.createElement(k,{width:14,height:14,strokeWidth:3.1}))}const C={content:"content_knG7"};function _(e){const{announcementBar:t}=(0,w.L)(),{content:n}=t;return r.createElement("div",(0,l.Z)({},e,{className:(0,a.Z)(C.content,e.className),dangerouslySetInnerHTML:{__html:n}}))}const T={announcementBar:"announcementBar_mb4j",announcementBarPlaceholder:"announcementBarPlaceholder_vyr4",announcementBarClose:"announcementBarClose_gvF7",announcementBarContent:"announcementBarContent_xLdY"};function A(){const{announcementBar:e}=(0,w.L)(),{isActive:t,close:n}=(0,E.nT)();if(!t)return null;const{backgroundColor:a,textColor:o,isCloseable:i}=e;return r.createElement("div",{className:T.announcementBar,style:{backgroundColor:a,color:o},role:"banner"},i&&r.createElement("div",{className:T.announcementBarPlaceholder}),r.createElement(_,{className:T.announcementBarContent}),i&&r.createElement(x,{onClick:n,className:T.announcementBarClose}))}var N=n(93163),L=n(12466);var O=n(902),P=n(13102);const R=r.createContext(null);function I(e){let{children:t}=e;const n=function(){const e=(0,N.e)(),t=(0,P.HY)(),[n,a]=(0,r.useState)(!1),o=null!==t.component,i=(0,O.D9)(o);return(0,r.useEffect)((()=>{o&&!i&&a(!0)}),[o,i]),(0,r.useEffect)((()=>{o?e.shown||a(!0):a(!1)}),[e.shown,o]),(0,r.useMemo)((()=>[n,a]),[n])}();return r.createElement(R.Provider,{value:n},t)}function D(e){if(e.component){const t=e.component;return r.createElement(t,e.props)}}function M(){const e=(0,r.useContext)(R);if(!e)throw new O.i6("NavbarSecondaryMenuDisplayProvider");const[t,n]=e,a=(0,r.useCallback)((()=>n(!1)),[n]),o=(0,P.HY)();return(0,r.useMemo)((()=>({shown:t,hide:a,content:D(o)})),[a,o,t])}function F(e){let{header:t,primaryMenu:n,secondaryMenu:o}=e;const{shown:i}=M();return r.createElement("div",{className:"navbar-sidebar"},t,r.createElement("div",{className:(0,a.Z)("navbar-sidebar__items",{"navbar-sidebar__items--show-secondary":i})},r.createElement("div",{className:"navbar-sidebar__item menu"},n),r.createElement("div",{className:"navbar-sidebar__item menu"},o)))}var B=n(92949),U=n(72389);function $(e){return r.createElement("svg",(0,l.Z)({viewBox:"0 0 24 24",width:24,height:24},e),r.createElement("path",{fill:"currentColor",d:"M12,9c1.65,0,3,1.35,3,3s-1.35,3-3,3s-3-1.35-3-3S10.35,9,12,9 M12,7c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5 S14.76,7,12,7L12,7z M2,13l2,0c0.55,0,1-0.45,1-1s-0.45-1-1-1l-2,0c-0.55,0-1,0.45-1,1S1.45,13,2,13z M20,13l2,0c0.55,0,1-0.45,1-1 s-0.45-1-1-1l-2,0c-0.55,0-1,0.45-1,1S19.45,13,20,13z M11,2v2c0,0.55,0.45,1,1,1s1-0.45,1-1V2c0-0.55-0.45-1-1-1S11,1.45,11,2z M11,20v2c0,0.55,0.45,1,1,1s1-0.45,1-1v-2c0-0.55-0.45-1-1-1C11.45,19,11,19.45,11,20z M5.99,4.58c-0.39-0.39-1.03-0.39-1.41,0 c-0.39,0.39-0.39,1.03,0,1.41l1.06,1.06c0.39,0.39,1.03,0.39,1.41,0s0.39-1.03,0-1.41L5.99,4.58z M18.36,16.95 c-0.39-0.39-1.03-0.39-1.41,0c-0.39,0.39-0.39,1.03,0,1.41l1.06,1.06c0.39,0.39,1.03,0.39,1.41,0c0.39-0.39,0.39-1.03,0-1.41 L18.36,16.95z M19.42,5.99c0.39-0.39,0.39-1.03,0-1.41c-0.39-0.39-1.03-0.39-1.41,0l-1.06,1.06c-0.39,0.39-0.39,1.03,0,1.41 s1.03,0.39,1.41,0L19.42,5.99z M7.05,18.36c0.39-0.39,0.39-1.03,0-1.41c-0.39-0.39-1.03-0.39-1.41,0l-1.06,1.06 c-0.39,0.39-0.39,1.03,0,1.41s1.03,0.39,1.41,0L7.05,18.36z"}))}function j(e){return r.createElement("svg",(0,l.Z)({viewBox:"0 0 24 24",width:24,height:24},e),r.createElement("path",{fill:"currentColor",d:"M9.37,5.51C9.19,6.15,9.1,6.82,9.1,7.5c0,4.08,3.32,7.4,7.4,7.4c0.68,0,1.35-0.09,1.99-0.27C17.45,17.19,14.93,19,12,19 c-3.86,0-7-3.14-7-7C5,9.07,6.81,6.55,9.37,5.51z M12,3c-4.97,0-9,4.03-9,9s4.03,9,9,9s9-4.03,9-9c0-0.46-0.04-0.92-0.1-1.36 c-0.98,1.37-2.58,2.26-4.4,2.26c-2.98,0-5.4-2.42-5.4-5.4c0-1.81,0.89-3.42,2.26-4.4C12.92,3.04,12.46,3,12,3L12,3z"}))}const z={toggle:"toggle_vylO",toggleButton:"toggleButton_gllP",darkToggleIcon:"darkToggleIcon_wfgR",lightToggleIcon:"lightToggleIcon_pyhR",toggleButtonDisabled:"toggleButtonDisabled_aARS"};function Z(e){let{className:t,value:n,onChange:o}=e;const i=(0,U.Z)(),l=(0,u.I)({message:"Switch between dark and light mode (currently {mode})",id:"theme.colorToggle.ariaLabel",description:"The ARIA label for the navbar color mode toggle"},{mode:"dark"===n?(0,u.I)({message:"dark mode",id:"theme.colorToggle.ariaLabel.mode.dark",description:"The name for the dark color mode"}):(0,u.I)({message:"light mode",id:"theme.colorToggle.ariaLabel.mode.light",description:"The name for the light color mode"})});return r.createElement("div",{className:(0,a.Z)(z.toggle,t)},r.createElement("button",{className:(0,a.Z)("clean-btn",z.toggleButton,!i&&z.toggleButtonDisabled),type:"button",onClick:()=>o("dark"===n?"light":"dark"),disabled:!i,title:l,"aria-label":l,"aria-live":"polite"},r.createElement($,{className:(0,a.Z)(z.toggleIcon,z.lightToggleIcon)}),r.createElement(j,{className:(0,a.Z)(z.toggleIcon,z.darkToggleIcon)})))}const H=r.memo(Z);function Y(e){let{className:t}=e;const n=(0,w.L)().colorMode.disableSwitch,{colorMode:a,setColorMode:o}=(0,B.I)();return n?null:r.createElement(H,{className:t,value:a,onChange:o})}var V=n(21327);function W(){return r.createElement(V.Z,{className:"navbar__brand",imageClassName:"navbar__logo",titleClassName:"navbar__title text--truncate"})}function G(){const e=(0,N.e)();return r.createElement("button",{type:"button","aria-label":(0,u.I)({id:"theme.docs.sidebar.closeSidebarButtonAriaLabel",message:"Close navigation bar",description:"The ARIA label for close button of mobile sidebar"}),className:"clean-btn navbar-sidebar__close",onClick:()=>e.toggle()},r.createElement(k,{color:"var(--ifm-color-emphasis-600)"}))}function q(){return r.createElement("div",{className:"navbar-sidebar__brand"},r.createElement(W,null),r.createElement(Y,{className:"margin-right--md"}),r.createElement(G,null))}var K=n(39960),Q=n(44996),X=n(13919);function J(e,t){return void 0!==e&&void 0!==t&&new RegExp(e,"gi").test(t)}var ee=n(39471);function te(e){let{activeBasePath:t,activeBaseRegex:n,to:a,href:o,label:i,html:s,isDropdownLink:u,prependBaseUrlToHref:c,...d}=e;const f=(0,Q.Z)(a),p=(0,Q.Z)(t),m=(0,Q.Z)(o,{forcePrependBaseUrl:!0}),h=i&&o&&!(0,X.Z)(o),g=s?{dangerouslySetInnerHTML:{__html:s}}:{children:r.createElement(r.Fragment,null,i,h&&r.createElement(ee.Z,u&&{width:12,height:12}))};return o?r.createElement(K.Z,(0,l.Z)({href:c?m:o},d,g)):r.createElement(K.Z,(0,l.Z)({to:f,isNavLink:!0},(t||n)&&{isActive:(e,t)=>n?J(n,t.pathname):t.pathname.startsWith(p)},d,g))}function ne(e){let{className:t,isDropdownItem:n=!1,...o}=e;const i=r.createElement(te,(0,l.Z)({className:(0,a.Z)(n?"dropdown__link":"navbar__item navbar__link",t),isDropdownLink:n},o));return n?r.createElement("li",null,i):i}function re(e){let{className:t,isDropdownItem:n,...o}=e;return r.createElement("li",{className:"menu__list-item"},r.createElement(te,(0,l.Z)({className:(0,a.Z)("menu__link",t)},o)))}function ae(e){let{mobile:t=!1,position:n,...a}=e;const o=t?re:ne;return r.createElement(o,(0,l.Z)({},a,{activeClassName:a.activeClassName??(t?"menu__link--active":"navbar__link--active")}))}var oe=n(86043),ie=n(48596),le=n(52263);function se(e,t){return e.some((e=>function(e,t){return!!(0,ie.Mg)(e.to,t)||!!J(e.activeBaseRegex,t)||!(!e.activeBasePath||!t.startsWith(e.activeBasePath))}(e,t)))}function ue(e){let{items:t,position:n,className:o,onClick:i,...s}=e;const u=(0,r.useRef)(null),[c,d]=(0,r.useState)(!1);return(0,r.useEffect)((()=>{const e=e=>{u.current&&!u.current.contains(e.target)&&d(!1)};return document.addEventListener("mousedown",e),document.addEventListener("touchstart",e),()=>{document.removeEventListener("mousedown",e),document.removeEventListener("touchstart",e)}}),[u]),r.createElement("div",{ref:u,className:(0,a.Z)("navbar__item","dropdown","dropdown--hoverable",{"dropdown--right":"right"===n,"dropdown--show":c})},r.createElement(te,(0,l.Z)({"aria-haspopup":"true","aria-expanded":c,role:"button",href:s.to?void 0:"#",className:(0,a.Z)("navbar__link",o)},s,{onClick:s.to?void 0:e=>e.preventDefault(),onKeyDown:e=>{"Enter"===e.key&&(e.preventDefault(),d(!c))}}),s.children??s.label),r.createElement("ul",{className:"dropdown__menu"},t.map(((e,n)=>r.createElement(Te,(0,l.Z)({isDropdownItem:!0,onKeyDown:e=>{if(n===t.length-1&&"Tab"===e.key){e.preventDefault(),d(!1);const t=u.current.nextElementSibling;if(t){(t instanceof HTMLAnchorElement?t:t.querySelector("a")).focus()}}},activeClassName:"dropdown__link--active"},e,{key:n}))))))}function ce(e){let{items:t,className:n,position:o,onClick:i,...u}=e;const c=function(){const{siteConfig:{baseUrl:e}}=(0,le.Z)(),{pathname:t}=(0,s.TH)();return t.replace(e,"/")}(),d=se(t,c),{collapsed:f,toggleCollapsed:p,setCollapsed:m}=(0,oe.u)({initialState:()=>!d});return(0,r.useEffect)((()=>{d&&m(!d)}),[c,d,m]),r.createElement("li",{className:(0,a.Z)("menu__list-item",{"menu__list-item--collapsed":f})},r.createElement(te,(0,l.Z)({role:"button",className:(0,a.Z)("menu__link menu__link--sublist menu__link--sublist-caret",n)},u,{onClick:e=>{e.preventDefault(),p()}}),u.children??u.label),r.createElement(oe.z,{lazy:!0,as:"ul",className:"menu__list",collapsed:f},t.map(((e,t)=>r.createElement(Te,(0,l.Z)({mobile:!0,isDropdownItem:!0,onClick:i,activeClassName:"menu__link--active"},e,{key:t}))))))}function de(e){let{mobile:t=!1,...n}=e;const a=t?ce:ue;return r.createElement(a,n)}var fe=n(94711);function pe(e){let{width:t=20,height:n=20,...a}=e;return r.createElement("svg",(0,l.Z)({viewBox:"0 0 24 24",width:t,height:n,"aria-hidden":!0},a),r.createElement("path",{fill:"currentColor",d:"M12.87 15.07l-2.54-2.51.03-.03c1.74-1.94 2.98-4.17 3.71-6.53H17V4h-7V2H8v2H1v1.99h11.17C11.5 7.92 10.44 9.75 9 11.35 8.07 10.32 7.3 9.19 6.69 8h-2c.73 1.63 1.73 3.17 2.98 4.56l-5.09 5.02L4 19l5-5 3.11 3.11.76-2.04zM18.5 10h-2L12 22h2l1.12-3h4.75L21 22h2l-4.5-12zm-2.62 7l1.62-4.33L19.12 17h-3.24z"}))}const me={iconLanguage:"iconLanguage_nlXk"};var he=n(94184),ge=n.n(he),be=n(28084);const ve=e=>{const t=(0,r.useRef)(!1),a=(0,r.useRef)(null),[o,i]=(0,r.useState)(!1),l=(0,s.k6)(),{siteConfig:u={}}=(0,le.Z)(),c=(0,U.Z)(),{baseUrl:d}=u,f=(0,be.eZ)("docusaurus-lunr-search"),p=()=>{t.current||(Promise.all([fetch(`${d}${f.fileNames.searchDoc}`).then((e=>e.json())),fetch(`${d}${f.fileNames.lunrIndex}`).then((e=>e.json())),Promise.all([n.e(878),n.e(339)]).then(n.bind(n,30894)),Promise.all([n.e(532),n.e(343)]).then(n.bind(n,53343))]).then((e=>{let[t,n,{default:r}]=e;0!==t.length&&(((e,t,n)=>{new n({searchDocs:e,searchIndex:t,baseUrl:d,inputSelector:"#search_input_react",handleSelected:(e,t,n)=>{const r=n.url||"/";document.createElement("a").href=r,l.push(r)}})})(t,n,r),i(!0))})),t.current=!0)},m=(0,r.useCallback)((t=>{a.current.contains(t.target)||a.current.focus(),e.handleSearchBarToggle&&e.handleSearchBarToggle(!e.isSearchBarExpanded)}),[e.isSearchBarExpanded]);return c&&p(),r.createElement("div",{className:"navbar__search",key:"search-box"},r.createElement("span",{"aria-label":"expand searchbar",role:"button",className:ge()("search-icon",{"search-icon-hidden":e.isSearchBarExpanded}),onClick:m,onKeyDown:m,tabIndex:0}),r.createElement("input",{id:"search_input_react",type:"search",placeholder:o?"Search":"Loading...","aria-label":"Search",className:ge()("navbar__search-input",{"search-bar-expanded":e.isSearchBarExpanded},{"search-bar":!e.isSearchBarExpanded}),onClick:p,onMouseOver:p,onFocus:m,onBlur:m,ref:a,disabled:!o}))},ye={searchBox:"searchBox_ZlJk"};function we(e){let{children:t,className:n}=e;return r.createElement("div",{className:(0,a.Z)(n,ye.searchBox)},t)}var Ee=n(94104),ke=n(53438);const Se=e=>e.docs.find((t=>t.id===e.mainDocId));var xe=n(60373);const Ce=e=>e.docs.find((t=>t.id===e.mainDocId));const _e={default:ae,localeDropdown:function(e){let{mobile:t,dropdownItemsBefore:n,dropdownItemsAfter:a,...o}=e;const{i18n:{currentLocale:i,locales:c,localeConfigs:d}}=(0,le.Z)(),f=(0,fe.l)(),{search:p,hash:m}=(0,s.TH)(),h=[...n,...c.map((e=>{const n=`${`pathname://${f.createUrl({locale:e,fullyQualified:!1})}`}${p}${m}`;return{label:d[e].label,lang:d[e].htmlLang,to:n,target:"_self",autoAddBaseUrl:!1,className:e===i?t?"menu__link--active":"dropdown__link--active":""}})),...a],g=t?(0,u.I)({message:"Languages",id:"theme.navbar.mobileLanguageDropdown.label",description:"The label for the mobile language switcher dropdown"}):d[i].label;return r.createElement(de,(0,l.Z)({},o,{mobile:t,label:r.createElement(r.Fragment,null,r.createElement(pe,{className:me.iconLanguage}),g),items:h}))},search:function(e){let{mobile:t,className:n}=e;return t?null:r.createElement(we,{className:n},r.createElement(ve,null))},dropdown:de,html:function(e){let{value:t,className:n,mobile:o=!1,isDropdownItem:i=!1}=e;const l=i?"li":"div";return r.createElement(l,{className:(0,a.Z)({navbar__item:!o&&!i,"menu__list-item":o},n),dangerouslySetInnerHTML:{__html:t}})},doc:function(e){let{docId:t,label:n,docsPluginId:a,...o}=e;const{activeDoc:i}=(0,Ee.Iw)(a),s=(0,ke.vY)(t,a);return null===s?null:r.createElement(ae,(0,l.Z)({exact:!0},o,{isActive:()=>i?.path===s.path||!!i?.sidebar&&i.sidebar===s.sidebar,label:n??s.id,to:s.path}))},docSidebar:function(e){let{sidebarId:t,label:n,docsPluginId:a,...o}=e;const{activeDoc:i}=(0,Ee.Iw)(a),s=(0,ke.oz)(t,a).link;if(!s)throw new Error(`DocSidebarNavbarItem: Sidebar with ID "${t}" doesn't have anything to be linked to.`);return r.createElement(ae,(0,l.Z)({exact:!0},o,{isActive:()=>i?.sidebar===t,label:n??s.label,to:s.path}))},docsVersion:function(e){let{label:t,to:n,docsPluginId:a,...o}=e;const i=(0,ke.lO)(a)[0],s=t??i.label,u=n??Se(i).path;return r.createElement(ae,(0,l.Z)({},o,{label:s,to:u}))},docsVersionDropdown:function(e){let{mobile:t,docsPluginId:n,dropdownActiveClassDisabled:a,dropdownItemsBefore:o,dropdownItemsAfter:i,...c}=e;const{search:d,hash:f}=(0,s.TH)(),p=(0,Ee.Iw)(n),m=(0,Ee.gB)(n),{savePreferredVersionName:h}=(0,xe.J)(n),g=[...o,...m.map((e=>{const t=p.alternateDocVersions[e.name]??Ce(e);return{label:e.label,to:`${t.path}${d}${f}`,isActive:()=>e===p.activeVersion,onClick:()=>h(e.name)}})),...i],b=(0,ke.lO)(n)[0],v=t&&g.length>1?(0,u.I)({id:"theme.navbar.mobileVersionsDropdown.label",message:"Versions",description:"The label for the navbar versions dropdown on mobile view"}):b.label,y=t&&g.length>1?void 0:Ce(b).path;return g.length<=1?r.createElement(ae,(0,l.Z)({},c,{mobile:t,label:v,to:y,isActive:a?()=>!1:void 0})):r.createElement(de,(0,l.Z)({},c,{mobile:t,label:v,to:y,items:g,isActive:a?()=>!1:void 0}))}};function Te(e){let{type:t,...n}=e;const a=function(e,t){return e&&"default"!==e?e:"items"in t?"dropdown":"default"}(t,n),o=_e[a];if(!o)throw new Error(`No NavbarItem component found for type "${t}".`);return r.createElement(o,n)}function Ae(){const e=(0,N.e)(),t=(0,w.L)().navbar.items;return r.createElement("ul",{className:"menu__list"},t.map(((t,n)=>r.createElement(Te,(0,l.Z)({mobile:!0},t,{onClick:()=>e.toggle(),key:n})))))}function Ne(e){return r.createElement("button",(0,l.Z)({},e,{type:"button",className:"clean-btn navbar-sidebar__back"}),r.createElement(u.Z,{id:"theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel",description:"The label of the back button to return to main menu, inside the mobile navbar sidebar secondary menu (notably used to display the docs sidebar)"},"\u2190 Back to main menu"))}function Le(){const e=0===(0,w.L)().navbar.items.length,t=M();return r.createElement(r.Fragment,null,!e&&r.createElement(Ne,{onClick:()=>t.hide()}),t.content)}function Oe(){const e=(0,N.e)();var t;return void 0===(t=e.shown)&&(t=!0),(0,r.useEffect)((()=>(document.body.style.overflow=t?"hidden":"visible",()=>{document.body.style.overflow="visible"})),[t]),e.shouldRender?r.createElement(F,{header:r.createElement(q,null),primaryMenu:r.createElement(Ae,null),secondaryMenu:r.createElement(Le,null)}):null}const Pe={navbarHideable:"navbarHideable_m1mJ",navbarHidden:"navbarHidden_jGov"};function Re(e){return r.createElement("div",(0,l.Z)({role:"presentation"},e,{className:(0,a.Z)("navbar-sidebar__backdrop",e.className)}))}function Ie(e){let{children:t}=e;const{navbar:{hideOnScroll:n,style:o}}=(0,w.L)(),i=(0,N.e)(),{navbarRef:l,isNavbarVisible:s}=function(e){const[t,n]=(0,r.useState)(e),a=(0,r.useRef)(!1),o=(0,r.useRef)(0),i=(0,r.useCallback)((e=>{null!==e&&(o.current=e.getBoundingClientRect().height)}),[]);return(0,L.RF)(((t,r)=>{let{scrollY:i}=t;if(!e)return;if(i<o.current)return void n(!0);if(a.current)return void(a.current=!1);const l=r?.scrollY,s=document.documentElement.scrollHeight-o.current,u=window.innerHeight;l&&i>=l?n(!1):i+u<s&&n(!0)})),(0,c.S)((t=>{if(!e)return;const r=t.location.hash;if(r?document.getElementById(r.substring(1)):void 0)return a.current=!0,void n(!1);n(!0)})),{navbarRef:i,isNavbarVisible:t}}(n);return r.createElement("nav",{ref:l,"aria-label":(0,u.I)({id:"theme.NavBar.navAriaLabel",message:"Main",description:"The ARIA label for the main navigation"}),className:(0,a.Z)("navbar","navbar--fixed-top",n&&[Pe.navbarHideable,!s&&Pe.navbarHidden],{"navbar--dark":"dark"===o,"navbar--primary":"primary"===o,"navbar-sidebar--show":i.shown})},t,r.createElement(Re,{onClick:i.toggle}),r.createElement(Oe,null))}const De="right";function Me(e){let{width:t=30,height:n=30,className:a,...o}=e;return r.createElement("svg",(0,l.Z)({className:a,width:t,height:n,viewBox:"0 0 30 30","aria-hidden":"true"},o),r.createElement("path",{stroke:"currentColor",strokeLinecap:"round",strokeMiterlimit:"10",strokeWidth:"2",d:"M4 7h22M4 15h22M4 23h22"}))}function Fe(){const{toggle:e,shown:t}=(0,N.e)();return r.createElement("button",{onClick:e,"aria-label":(0,u.I)({id:"theme.docs.sidebar.toggleSidebarButtonAriaLabel",message:"Toggle navigation bar",description:"The ARIA label for hamburger menu button of mobile navigation"}),"aria-expanded":t,className:"navbar__toggle clean-btn",type:"button"},r.createElement(Me,null))}const Be={colorModeToggle:"colorModeToggle_DEke"};function Ue(e){let{items:t}=e;return r.createElement(r.Fragment,null,t.map(((e,t)=>r.createElement(Te,(0,l.Z)({},e,{key:t})))))}function $e(e){let{left:t,right:n}=e;return r.createElement("div",{className:"navbar__inner"},r.createElement("div",{className:"navbar__items"},t),r.createElement("div",{className:"navbar__items navbar__items--right"},n))}function je(){const e=(0,N.e)(),t=(0,w.L)().navbar.items,[n,a]=function(e){function t(e){return"left"===(e.position??De)}return[e.filter(t),e.filter((e=>!t(e)))]}(t),o=t.find((e=>"search"===e.type));return r.createElement($e,{left:r.createElement(r.Fragment,null,!e.disabled&&r.createElement(Fe,null),r.createElement(W,null),r.createElement(Ue,{items:n})),right:r.createElement(r.Fragment,null,r.createElement(Ue,{items:a}),r.createElement(Y,{className:Be.colorModeToggle}),!o&&r.createElement(we,null,r.createElement(ve,null)))})}function ze(){return r.createElement(Ie,null,r.createElement(je,null))}function Ze(e){let{item:t}=e;const{to:n,href:a,label:o,prependBaseUrlToHref:i,...s}=t,u=(0,Q.Z)(n),c=(0,Q.Z)(a,{forcePrependBaseUrl:!0});return r.createElement(K.Z,(0,l.Z)({className:"footer__link-item"},a?{href:i?c:a}:{to:u},s),o,a&&!(0,X.Z)(a)&&r.createElement(ee.Z,null))}function He(e){let{item:t}=e;return t.html?r.createElement("li",{className:"footer__item",dangerouslySetInnerHTML:{__html:t.html}}):r.createElement("li",{key:t.href??t.to,className:"footer__item"},r.createElement(Ze,{item:t}))}function Ye(e){let{column:t}=e;return r.createElement("div",{className:"col footer__col"},r.createElement("div",{className:"footer__title"},t.title),r.createElement("ul",{className:"footer__items clean-list"},t.items.map(((e,t)=>r.createElement(He,{key:t,item:e})))))}function Ve(e){let{columns:t}=e;return r.createElement("div",{className:"row footer__links"},t.map(((e,t)=>r.createElement(Ye,{key:t,column:e}))))}function We(){return r.createElement("span",{className:"footer__link-separator"},"\xb7")}function Ge(e){let{item:t}=e;return t.html?r.createElement("span",{className:"footer__link-item",dangerouslySetInnerHTML:{__html:t.html}}):r.createElement(Ze,{item:t})}function qe(e){let{links:t}=e;return r.createElement("div",{className:"footer__links text--center"},r.createElement("div",{className:"footer__links"},t.map(((e,n)=>r.createElement(r.Fragment,{key:n},r.createElement(Ge,{item:e}),t.length!==n+1&&r.createElement(We,null))))))}function Ke(e){let{links:t}=e;return function(e){return"title"in e[0]}(t)?r.createElement(Ve,{columns:t}):r.createElement(qe,{links:t})}var Qe=n(50941);const Xe={footerLogoLink:"footerLogoLink_BH7S"};function Je(e){let{logo:t}=e;const{withBaseUrl:n}=(0,Q.C)(),o={light:n(t.src),dark:n(t.srcDark??t.src)};return r.createElement(Qe.Z,{className:(0,a.Z)("footer__logo",t.className),alt:t.alt,sources:o,width:t.width,height:t.height,style:t.style})}function et(e){let{logo:t}=e;return t.href?r.createElement(K.Z,{href:t.href,className:Xe.footerLogoLink,target:t.target},r.createElement(Je,{logo:t})):r.createElement(Je,{logo:t})}function tt(e){let{copyright:t}=e;return r.createElement("div",{className:"footer__copyright",dangerouslySetInnerHTML:{__html:t}})}function nt(e){let{style:t,links:n,logo:o,copyright:i}=e;return r.createElement("footer",{className:(0,a.Z)("footer",{"footer--dark":"dark"===t})},r.createElement("div",{className:"container container-fluid"},n,(o||i)&&r.createElement("div",{className:"footer__bottom text--center"},o&&r.createElement("div",{className:"margin-bottom--sm"},o),i)))}function rt(){const{footer:e}=(0,w.L)();if(!e)return null;const{copyright:t,links:n,logo:a,style:o}=e;return r.createElement(nt,{style:o,links:n&&n.length>0&&r.createElement(Ke,{links:n}),logo:a&&r.createElement(et,{logo:a}),copyright:t&&r.createElement(tt,{copyright:t})})}const at=r.memo(rt),ot=(0,O.Qc)([B.S,E.pl,L.OC,xe.L5,i.VC,function(e){let{children:t}=e;return r.createElement(P.n2,null,r.createElement(N.M,null,r.createElement(I,null,t)))}]);function it(e){let{children:t}=e;return r.createElement(ot,null,t)}function lt(e){let{error:t,tryAgain:n}=e;return r.createElement("main",{className:"container margin-vert--xl"},r.createElement("div",{className:"row"},r.createElement("div",{className:"col col--6 col--offset-3"},r.createElement("h1",{className:"hero__title"},r.createElement(u.Z,{id:"theme.ErrorPageContent.title",description:"The title of the fallback page when the page crashed"},"This page crashed.")),r.createElement("p",null,t.message),r.createElement("div",null,r.createElement("button",{type:"button",onClick:n},r.createElement(u.Z,{id:"theme.ErrorPageContent.tryAgain",description:"The label of the button to try again when the page crashed"},"Try again"))))))}const st={mainWrapper:"mainWrapper_z2l0"};function ut(e){const{children:t,noFooter:n,wrapperClassName:l,title:s,description:u}=e;return(0,b.t)(),r.createElement(it,null,r.createElement(i.d,{title:s,description:u}),r.createElement(y,null),r.createElement(A,null),r.createElement(ze,null),r.createElement("div",{id:d,className:(0,a.Z)(g.k.wrapper.main,st.mainWrapper,l)},r.createElement(o.Z,{fallback:e=>r.createElement(lt,e)},t)),!n&&r.createElement(at,null))}},21327:(e,t,n)=>{"use strict";n.d(t,{Z:()=>d});var r=n(87462),a=n(67294),o=n(39960),i=n(44996),l=n(52263),s=n(86668),u=n(50941);function c(e){let{logo:t,alt:n,imageClassName:r}=e;const o={light:(0,i.Z)(t.src),dark:(0,i.Z)(t.srcDark||t.src)},l=a.createElement(u.Z,{className:t.className,sources:o,height:t.height,width:t.width,alt:n,style:t.style});return r?a.createElement("div",{className:r},l):l}function d(e){const{siteConfig:{title:t}}=(0,l.Z)(),{navbar:{title:n,logo:u}}=(0,s.L)(),{imageClassName:d,titleClassName:f,...p}=e,m=(0,i.Z)(u?.href||"/"),h=n?"":t,g=u?.alt??h;return a.createElement(o.Z,(0,r.Z)({to:m},p,u?.target&&{target:u.target}),u&&a.createElement(c,{logo:u,alt:g,imageClassName:d}),null!=n&&a.createElement("b",{className:f},n))}},90197:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var r=n(67294),a=n(35742);function o(e){let{locale:t,version:n,tag:o}=e;const i=t;return r.createElement(a.Z,null,t&&r.createElement("meta",{name:"docusaurus_locale",content:t}),n&&r.createElement("meta",{name:"docusaurus_version",content:n}),o&&r.createElement("meta",{name:"docusaurus_tag",content:o}),i&&r.createElement("meta",{name:"docsearch:language",content:i}),n&&r.createElement("meta",{name:"docsearch:version",content:n}),o&&r.createElement("meta",{name:"docsearch:docusaurus_tag",content:o}))}},50941:(e,t,n)=>{"use strict";n.d(t,{Z:()=>u});var r=n(87462),a=n(67294),o=n(86010),i=n(72389),l=n(92949);const s={themedImage:"themedImage_ToTc","themedImage--light":"themedImage--light_HNdA","themedImage--dark":"themedImage--dark_i4oU"};function u(e){const t=(0,i.Z)(),{colorMode:n}=(0,l.I)(),{sources:u,className:c,alt:d,...f}=e,p=t?"dark"===n?["dark"]:["light"]:["light","dark"];return a.createElement(a.Fragment,null,p.map((e=>a.createElement("img",(0,r.Z)({key:e,src:u[e],alt:d,className:(0,o.Z)(s.themedImage,s[`themedImage--${e}`],c)},f)))))}},86043:(e,t,n)=>{"use strict";n.d(t,{u:()=>l,z:()=>h});var r=n(87462),a=n(67294),o=n(10412);const i="ease-in-out";function l(e){let{initialState:t}=e;const[n,r]=(0,a.useState)(t??!1),o=(0,a.useCallback)((()=>{r((e=>!e))}),[]);return{collapsed:n,setCollapsed:r,toggleCollapsed:o}}const s={display:"none",overflow:"hidden",height:"0px"},u={display:"block",overflow:"visible",height:"auto"};function c(e,t){const n=t?s:u;e.style.display=n.display,e.style.overflow=n.overflow,e.style.height=n.height}function d(e){let{collapsibleRef:t,collapsed:n,animation:r}=e;const o=(0,a.useRef)(!1);(0,a.useEffect)((()=>{const e=t.current;function a(){const t=e.scrollHeight,n=r?.duration??function(e){const t=e/36;return Math.round(10*(4+15*t**.25+t/5))}(t);return{transition:`height ${n}ms ${r?.easing??i}`,height:`${t}px`}}function l(){const t=a();e.style.transition=t.transition,e.style.height=t.height}if(!o.current)return c(e,n),void(o.current=!0);return e.style.willChange="height",function(){const t=requestAnimationFrame((()=>{n?(l(),requestAnimationFrame((()=>{e.style.height=s.height,e.style.overflow=s.overflow}))):(e.style.display="block",requestAnimationFrame((()=>{l()})))}));return()=>cancelAnimationFrame(t)}()}),[t,n,r])}function f(e){if(!o.Z.canUseDOM)return e?s:u}function p(e){let{as:t="div",collapsed:n,children:r,animation:o,onCollapseTransitionEnd:i,className:l,disableSSRStyle:s}=e;const u=(0,a.useRef)(null);return d({collapsibleRef:u,collapsed:n,animation:o}),a.createElement(t,{ref:u,style:s?void 0:f(n),onTransitionEnd:e=>{"height"===e.propertyName&&(c(u.current,n),i?.(n))},className:l},r)}function m(e){let{collapsed:t,...n}=e;const[o,i]=(0,a.useState)(!t),[l,s]=(0,a.useState)(t);return(0,a.useLayoutEffect)((()=>{t||i(!0)}),[t]),(0,a.useLayoutEffect)((()=>{o&&s(t)}),[o,t]),o?a.createElement(p,(0,r.Z)({},n,{collapsed:l})):null}function h(e){let{lazy:t,...n}=e;const r=t?m:p;return a.createElement(r,n)}},59689:(e,t,n)=>{"use strict";n.d(t,{nT:()=>m,pl:()=>p});var r=n(67294),a=n(72389),o=n(50012),i=n(902),l=n(86668);const s=(0,o.WA)("docusaurus.announcement.dismiss"),u=(0,o.WA)("docusaurus.announcement.id"),c=()=>"true"===s.get(),d=e=>s.set(String(e)),f=r.createContext(null);function p(e){let{children:t}=e;const n=function(){const{announcementBar:e}=(0,l.L)(),t=(0,a.Z)(),[n,o]=(0,r.useState)((()=>!!t&&c()));(0,r.useEffect)((()=>{o(c())}),[]);const i=(0,r.useCallback)((()=>{d(!0),o(!0)}),[]);return(0,r.useEffect)((()=>{if(!e)return;const{id:t}=e;let n=u.get();"annoucement-bar"===n&&(n="announcement-bar");const r=t!==n;u.set(t),r&&d(!1),!r&&c()||o(!1)}),[e]),(0,r.useMemo)((()=>({isActive:!!e&&!n,close:i})),[e,n,i])}();return r.createElement(f.Provider,{value:n},t)}function m(){const e=(0,r.useContext)(f);if(!e)throw new i.i6("AnnouncementBarProvider");return e}},92949:(e,t,n)=>{"use strict";n.d(t,{I:()=>g,S:()=>h});var r=n(67294),a=n(10412),o=n(902),i=n(50012),l=n(86668);const s=r.createContext(void 0),u="theme",c=(0,i.WA)(u),d={light:"light",dark:"dark"},f=e=>e===d.dark?d.dark:d.light,p=e=>a.Z.canUseDOM?f(document.documentElement.getAttribute("data-theme")):f(e),m=e=>{c.set(f(e))};function h(e){let{children:t}=e;const n=function(){const{colorMode:{defaultMode:e,disableSwitch:t,respectPrefersColorScheme:n}}=(0,l.L)(),[a,o]=(0,r.useState)(p(e));(0,r.useEffect)((()=>{t&&c.del()}),[t]);const i=(0,r.useCallback)((function(t,r){void 0===r&&(r={});const{persist:a=!0}=r;t?(o(t),a&&m(t)):(o(n?window.matchMedia("(prefers-color-scheme: dark)").matches?d.dark:d.light:e),c.del())}),[n,e]);(0,r.useEffect)((()=>{document.documentElement.setAttribute("data-theme",f(a))}),[a]),(0,r.useEffect)((()=>{if(t)return;const e=e=>{if(e.key!==u)return;const t=c.get();null!==t&&i(f(t))};return window.addEventListener("storage",e),()=>window.removeEventListener("storage",e)}),[t,i]);const s=(0,r.useRef)(!1);return(0,r.useEffect)((()=>{if(t&&!n)return;const e=window.matchMedia("(prefers-color-scheme: dark)"),r=()=>{window.matchMedia("print").matches||s.current?s.current=window.matchMedia("print").matches:i(null)};return e.addListener(r),()=>e.removeListener(r)}),[i,t,n]),(0,r.useMemo)((()=>({colorMode:a,setColorMode:i,get isDarkTheme(){return a===d.dark},setLightTheme(){i(d.light)},setDarkTheme(){i(d.dark)}})),[a,i])}();return r.createElement(s.Provider,{value:n},t)}function g(){const e=(0,r.useContext)(s);if(null==e)throw new o.i6("ColorModeProvider","Please see https://docusaurus.io/docs/api/themes/configuration#use-color-mode.");return e}},60373:(e,t,n)=>{"use strict";n.d(t,{J:()=>v,L5:()=>g});var r=n(67294),a=n(94104),o=n(29935),i=n(86668),l=n(53438),s=n(902),u=n(50012);const c=e=>`docs-preferred-version-${e}`,d={save:(e,t,n)=>{(0,u.WA)(c(e),{persistence:t}).set(n)},read:(e,t)=>(0,u.WA)(c(e),{persistence:t}).get(),clear:(e,t)=>{(0,u.WA)(c(e),{persistence:t}).del()}},f=e=>Object.fromEntries(e.map((e=>[e,{preferredVersionName:null}])));const p=r.createContext(null);function m(){const e=(0,a._r)(),t=(0,i.L)().docs.versionPersistence,n=(0,r.useMemo)((()=>Object.keys(e)),[e]),[o,l]=(0,r.useState)((()=>f(n)));(0,r.useEffect)((()=>{l(function(e){let{pluginIds:t,versionPersistence:n,allDocsData:r}=e;function a(e){const t=d.read(e,n);return r[e].versions.some((e=>e.name===t))?{preferredVersionName:t}:(d.clear(e,n),{preferredVersionName:null})}return Object.fromEntries(t.map((e=>[e,a(e)])))}({allDocsData:e,versionPersistence:t,pluginIds:n}))}),[e,t,n]);return[o,(0,r.useMemo)((()=>({savePreferredVersion:function(e,n){d.save(e,t,n),l((t=>({...t,[e]:{preferredVersionName:n}})))}})),[t])]}function h(e){let{children:t}=e;const n=m();return r.createElement(p.Provider,{value:n},t)}function g(e){let{children:t}=e;return l.cE?r.createElement(h,null,t):r.createElement(r.Fragment,null,t)}function b(){const e=(0,r.useContext)(p);if(!e)throw new s.i6("DocsPreferredVersionContextProvider");return e}function v(e){void 0===e&&(e=o.m);const t=(0,a.zh)(e),[n,i]=b(),{preferredVersionName:l}=n[e];return{preferredVersion:t.versions.find((e=>e.name===l))??null,savePreferredVersionName:(0,r.useCallback)((t=>{i.savePreferredVersion(e,t)}),[i,e])}}},1116:(e,t,n)=>{"use strict";n.d(t,{V:()=>s,b:()=>l});var r=n(67294),a=n(902);const o=Symbol("EmptyContext"),i=r.createContext(o);function l(e){let{children:t,name:n,items:a}=e;const o=(0,r.useMemo)((()=>n&&a?{name:n,items:a}:null),[n,a]);return r.createElement(i.Provider,{value:o},t)}function s(){const e=(0,r.useContext)(i);if(e===o)throw new a.i6("DocsSidebarProvider");return e}},93163:(e,t,n)=>{"use strict";n.d(t,{M:()=>d,e:()=>f});var r=n(67294),a=n(13102),o=n(87524),i=n(91980),l=n(86668),s=n(902);const u=r.createContext(void 0);function c(){const e=function(){const e=(0,a.HY)(),{items:t}=(0,l.L)().navbar;return 0===t.length&&!e.component}(),t=(0,o.i)(),n=!e&&"mobile"===t,[s,u]=(0,r.useState)(!1);(0,i.Rb)((()=>{if(s)return u(!1),!1}));const c=(0,r.useCallback)((()=>{u((e=>!e))}),[]);return(0,r.useEffect)((()=>{"desktop"===t&&u(!1)}),[t]),(0,r.useMemo)((()=>({disabled:e,shouldRender:n,toggle:c,shown:s})),[e,n,c,s])}function d(e){let{children:t}=e;const n=c();return r.createElement(u.Provider,{value:n},t)}function f(){const e=r.useContext(u);if(void 0===e)throw new s.i6("NavbarMobileSidebarProvider");return e}},13102:(e,t,n)=>{"use strict";n.d(t,{HY:()=>l,Zo:()=>s,n2:()=>i});var r=n(67294),a=n(902);const o=r.createContext(null);function i(e){let{children:t}=e;const n=(0,r.useState)({component:null,props:null});return r.createElement(o.Provider,{value:n},t)}function l(){const e=(0,r.useContext)(o);if(!e)throw new a.i6("NavbarSecondaryMenuContentProvider");return e[0]}function s(e){let{component:t,props:n}=e;const i=(0,r.useContext)(o);if(!i)throw new a.i6("NavbarSecondaryMenuContentProvider");const[,l]=i,s=(0,a.Ql)(n);return(0,r.useEffect)((()=>{l({component:t,props:s})}),[l,t,s]),(0,r.useEffect)((()=>()=>l({component:null,props:null})),[l]),null}},19727:(e,t,n)=>{"use strict";n.d(t,{h:()=>a,t:()=>o});var r=n(67294);const a="navigation-with-keyboard";function o(){(0,r.useEffect)((()=>{function e(e){"keydown"===e.type&&"Tab"===e.key&&document.body.classList.add(a),"mousedown"===e.type&&document.body.classList.remove(a)}return document.addEventListener("keydown",e),document.addEventListener("mousedown",e),()=>{document.body.classList.remove(a),document.removeEventListener("keydown",e),document.removeEventListener("mousedown",e)}}),[])}},87524:(e,t,n)=>{"use strict";n.d(t,{i:()=>u});var r=n(67294),a=n(10412);const o={desktop:"desktop",mobile:"mobile",ssr:"ssr"},i=996;function l(){return a.Z.canUseDOM?window.innerWidth>i?o.desktop:o.mobile:o.ssr}const s=!1;function u(){const[e,t]=(0,r.useState)((()=>s?"ssr":l()));return(0,r.useEffect)((()=>{function e(){t(l())}const n=s?window.setTimeout(e,1e3):void 0;return window.addEventListener("resize",e),()=>{window.removeEventListener("resize",e),clearTimeout(n)}}),[]),e}},35281:(e,t,n)=>{"use strict";n.d(t,{k:()=>r});const r={page:{blogListPage:"blog-list-page",blogPostPage:"blog-post-page",blogTagsListPage:"blog-tags-list-page",blogTagPostListPage:"blog-tags-post-list-page",docsDocPage:"docs-doc-page",docsTagsListPage:"docs-tags-list-page",docsTagDocListPage:"docs-tags-doc-list-page",mdxPage:"mdx-page"},wrapper:{main:"main-wrapper",blogPages:"blog-wrapper",docsPages:"docs-wrapper",mdxPages:"mdx-wrapper"},common:{editThisPage:"theme-edit-this-page",lastUpdated:"theme-last-updated",backToTopButton:"theme-back-to-top-button",codeBlock:"theme-code-block",admonition:"theme-admonition",admonitionType:e=>`theme-admonition-${e}`},layout:{},docs:{docVersionBanner:"theme-doc-version-banner",docVersionBadge:"theme-doc-version-badge",docBreadcrumbs:"theme-doc-breadcrumbs",docMarkdown:"theme-doc-markdown",docTocMobile:"theme-doc-toc-mobile",docTocDesktop:"theme-doc-toc-desktop",docFooter:"theme-doc-footer",docFooterTagsRow:"theme-doc-footer-tags-row",docFooterEditMetaRow:"theme-doc-footer-edit-meta-row",docSidebarContainer:"theme-doc-sidebar-container",docSidebarMenu:"theme-doc-sidebar-menu",docSidebarItemCategory:"theme-doc-sidebar-item-category",docSidebarItemLink:"theme-doc-sidebar-item-link",docSidebarItemCategoryLevel:e=>`theme-doc-sidebar-item-category-level-${e}`,docSidebarItemLinkLevel:e=>`theme-doc-sidebar-item-link-level-${e}`},blog:{}}},53438:(e,t,n)=>{"use strict";n.d(t,{Wl:()=>f,_F:()=>h,cE:()=>d,hI:()=>E,lO:()=>v,oz:()=>y,s1:()=>b,vY:()=>w});var r=n(67294),a=n(16550),o=n(18790),i=n(94104),l=n(60373),s=n(1116),u=n(67392),c=n(48596);const d=!!i._r;function f(e){if(e.href)return e.href;for(const t of e.items){if("link"===t.type)return t.href;if("category"===t.type){const e=f(t);if(e)return e}}}const p=(e,t)=>void 0!==e&&(0,c.Mg)(e,t),m=(e,t)=>e.some((e=>h(e,t)));function h(e,t){return"link"===e.type?p(e.href,t):"category"===e.type&&(p(e.href,t)||m(e.items,t))}function g(e){let{sidebarItems:t,pathname:n,onlyCategories:r=!1}=e;const a=[];return function e(t){for(const o of t)if("category"===o.type&&((0,c.Mg)(o.href,n)||e(o.items))||"link"===o.type&&(0,c.Mg)(o.href,n)){return r&&"category"!==o.type||a.unshift(o),!0}return!1}(t),a}function b(){const e=(0,s.V)(),{pathname:t}=(0,a.TH)(),n=(0,i.gA)()?.pluginData.breadcrumbs;return!1!==n&&e?g({sidebarItems:e.items,pathname:t}):null}function v(e){const{activeVersion:t}=(0,i.Iw)(e),{preferredVersion:n}=(0,l.J)(e),a=(0,i.yW)(e);return(0,r.useMemo)((()=>(0,u.j)([t,n,a].filter(Boolean))),[t,n,a])}function y(e,t){const n=v(t);return(0,r.useMemo)((()=>{const t=n.flatMap((e=>e.sidebars?Object.entries(e.sidebars):[])),r=t.find((t=>t[0]===e));if(!r)throw new Error(`Can't find any sidebar with id "${e}" in version${n.length>1?"s":""} ${n.map((e=>e.name)).join(", ")}".\n Available sidebar ids are:\n - ${Object.keys(t).join("\n- ")}`);return r[1]}),[e,n])}function w(e,t){const n=v(t);return(0,r.useMemo)((()=>{const t=n.flatMap((e=>e.docs)),r=t.find((t=>t.id===e));if(!r){if(n.flatMap((e=>e.draftIds)).includes(e))return null;throw new Error(`DocNavbarItem: couldn't find any doc with id "${e}" in version${n.length>1?"s":""} ${n.map((e=>e.name)).join(", ")}".\nAvailable doc ids are:\n- ${(0,u.j)(t.map((e=>e.id))).join("\n- ")}`)}return r}),[e,n])}function E(e){let{route:t,versionMetadata:n}=e;const r=(0,a.TH)(),i=t.routes,l=i.find((e=>(0,a.LX)(r.pathname,e)));if(!l)return null;const s=l.sidebar,u=s?n.docsSidebars[s]:void 0;return{docElement:(0,o.H)(i),sidebarName:s,sidebarItems:u}}},91980:(e,t,n)=>{"use strict";n.d(t,{Rb:()=>l,_X:()=>s});var r=n(67294),a=n(16550),o=n(61688),i=n(902);function l(e){!function(e){const t=(0,a.k6)(),n=(0,i.zX)(e);(0,r.useEffect)((()=>t.block(((e,t)=>n(e,t)))),[t,n])}(((t,n)=>{if("POP"===n)return e(t,n)}))}function s(e){return function(e){const t=(0,a.k6)();return(0,o.useSyncExternalStore)(t.listen,(()=>e(t)),(()=>e(t)))}((t=>null===e?null:new URLSearchParams(t.location.search).get(e)))}},67392:(e,t,n)=>{"use strict";function r(e,t){return void 0===t&&(t=(e,t)=>e===t),e.filter(((n,r)=>e.findIndex((e=>t(e,n)))!==r))}function a(e){return Array.from(new Set(e))}n.d(t,{j:()=>a,l:()=>r})},1944:(e,t,n)=>{"use strict";n.d(t,{FG:()=>f,d:()=>c,VC:()=>p});var r=n(67294),a=n(86010),o=n(35742),i=n(30226);function l(){const e=r.useContext(i._);if(!e)throw new Error("Unexpected: no Docusaurus route context found");return e}var s=n(44996),u=n(52263);function c(e){let{title:t,description:n,keywords:a,image:i,children:l}=e;const c=function(e){const{siteConfig:t}=(0,u.Z)(),{title:n,titleDelimiter:r}=t;return e?.trim().length?`${e.trim()} ${r} ${n}`:n}(t),{withBaseUrl:d}=(0,s.C)(),f=i?d(i,{absolute:!0}):void 0;return r.createElement(o.Z,null,t&&r.createElement("title",null,c),t&&r.createElement("meta",{property:"og:title",content:c}),n&&r.createElement("meta",{name:"description",content:n}),n&&r.createElement("meta",{property:"og:description",content:n}),a&&r.createElement("meta",{name:"keywords",content:Array.isArray(a)?a.join(","):a}),f&&r.createElement("meta",{property:"og:image",content:f}),f&&r.createElement("meta",{name:"twitter:image",content:f}),l)}const d=r.createContext(void 0);function f(e){let{className:t,children:n}=e;const i=r.useContext(d),l=(0,a.Z)(i,t);return r.createElement(d.Provider,{value:l},r.createElement(o.Z,null,r.createElement("html",{className:l})),n)}function p(e){let{children:t}=e;const n=l(),o=`plugin-${n.plugin.name.replace(/docusaurus-(?:plugin|theme)-(?:content-)?/gi,"")}`;const i=`plugin-id-${n.plugin.id}`;return r.createElement(f,{className:(0,a.Z)(o,i)},t)}},902:(e,t,n)=>{"use strict";n.d(t,{D9:()=>i,Qc:()=>u,Ql:()=>s,i6:()=>l,zX:()=>o});var r=n(67294);const a=n(10412).Z.canUseDOM?r.useLayoutEffect:r.useEffect;function o(e){const t=(0,r.useRef)(e);return a((()=>{t.current=e}),[e]),(0,r.useCallback)((function(){return t.current(...arguments)}),[])}function i(e){const t=(0,r.useRef)();return a((()=>{t.current=e})),t.current}class l extends Error{constructor(e,t){super(),this.name="ReactContextError",this.message=`Hook ${this.stack?.split("\n")[1]?.match(/at (?:\w+\.)?(?<name>\w+)/)?.groups.name??""} is called outside the <${e}>. ${t??""}`}}function s(e){const t=Object.entries(e);return t.sort(((e,t)=>e[0].localeCompare(t[0]))),(0,r.useMemo)((()=>e),t.flat())}function u(e){return t=>{let{children:n}=t;return r.createElement(r.Fragment,null,e.reduceRight(((e,t)=>r.createElement(t,null,e)),n))}}},48596:(e,t,n)=>{"use strict";n.d(t,{Mg:()=>i,Ns:()=>l});var r=n(67294),a=n(723),o=n(52263);function i(e,t){const n=e=>(!e||e.endsWith("/")?e:`${e}/`)?.toLowerCase();return n(e)===n(t)}function l(){const{baseUrl:e}=(0,o.Z)().siteConfig;return(0,r.useMemo)((()=>function(e){let{baseUrl:t,routes:n}=e;function r(e){return e.path===t&&!0===e.exact}function a(e){return e.path===t&&!e.exact}return function e(t){if(0===t.length)return;return t.find(r)||e(t.filter(a).flatMap((e=>e.routes??[])))}(n)}({routes:a.Z,baseUrl:e})),[e])}},12466:(e,t,n)=>{"use strict";n.d(t,{Ct:()=>p,OC:()=>s,RF:()=>d,o5:()=>f});var r=n(67294),a=n(10412),o=n(72389),i=n(902);const l=r.createContext(void 0);function s(e){let{children:t}=e;const n=function(){const e=(0,r.useRef)(!0);return(0,r.useMemo)((()=>({scrollEventsEnabledRef:e,enableScrollEvents:()=>{e.current=!0},disableScrollEvents:()=>{e.current=!1}})),[])}();return r.createElement(l.Provider,{value:n},t)}function u(){const e=(0,r.useContext)(l);if(null==e)throw new i.i6("ScrollControllerProvider");return e}const c=()=>a.Z.canUseDOM?{scrollX:window.pageXOffset,scrollY:window.pageYOffset}:null;function d(e,t){void 0===t&&(t=[]);const{scrollEventsEnabledRef:n}=u(),a=(0,r.useRef)(c()),o=(0,i.zX)(e);(0,r.useEffect)((()=>{const e=()=>{if(!n.current)return;const e=c();o(e,a.current),a.current=e},t={passive:!0};return e(),window.addEventListener("scroll",e,t),()=>window.removeEventListener("scroll",e,t)}),[o,n,...t])}function f(){const e=u(),t=function(){const e=(0,r.useRef)({elem:null,top:0}),t=(0,r.useCallback)((t=>{e.current={elem:t,top:t.getBoundingClientRect().top}}),[]),n=(0,r.useCallback)((()=>{const{current:{elem:t,top:n}}=e;if(!t)return{restored:!1};const r=t.getBoundingClientRect().top-n;return r&&window.scrollBy({left:0,top:r}),e.current={elem:null,top:0},{restored:0!==r}}),[]);return(0,r.useMemo)((()=>({save:t,restore:n})),[n,t])}(),n=(0,r.useRef)(void 0),a=(0,r.useCallback)((r=>{t.save(r),e.disableScrollEvents(),n.current=()=>{const{restored:r}=t.restore();if(n.current=void 0,r){const t=()=>{e.enableScrollEvents(),window.removeEventListener("scroll",t)};window.addEventListener("scroll",t)}else e.enableScrollEvents()}}),[e,t]);return(0,r.useLayoutEffect)((()=>{queueMicrotask((()=>n.current?.()))})),{blockElementScrollPositionUntilNextRender:a}}function p(){const e=(0,r.useRef)(null),t=(0,o.Z)()&&"smooth"===getComputedStyle(document.documentElement).scrollBehavior;return{startScroll:n=>{e.current=t?function(e){return window.scrollTo({top:e,behavior:"smooth"}),()=>{}}(n):function(e){let t=null;const n=document.documentElement.scrollTop>e;return function r(){const a=document.documentElement.scrollTop;(n&&a>e||!n&&a<e)&&(t=requestAnimationFrame(r),window.scrollTo(0,Math.floor(.85*(a-e))+e))}(),()=>t&&cancelAnimationFrame(t)}(n)},cancelScroll:()=>e.current?.()}}},43320:(e,t,n)=>{"use strict";n.d(t,{HX:()=>r,os:()=>a});n(52263);const r="default";function a(e,t){return`docs-${e}-${t}`}},50012:(e,t,n)=>{"use strict";n.d(t,{Nk:()=>d,WA:()=>c});var r=n(67294),a=n(61688);const o="localStorage";function i(e){let{key:t,oldValue:n,newValue:r,storage:a}=e;if(n===r)return;const o=document.createEvent("StorageEvent");o.initStorageEvent("storage",!1,!1,t,n,r,window.location.href,a),window.dispatchEvent(o)}function l(e){if(void 0===e&&(e=o),"undefined"==typeof window)throw new Error("Browser storage is not available on Node.js/Docusaurus SSR process.");if("none"===e)return null;try{return window[e]}catch(n){return t=n,s||(console.warn("Docusaurus browser storage is not available.\nPossible reasons: running Docusaurus in an iframe, in an incognito browser session, or using too strict browser privacy settings.",t),s=!0),null}var t}let s=!1;const u={get:()=>null,set:()=>{},del:()=>{},listen:()=>()=>{}};function c(e,t){if("undefined"==typeof window)return function(e){function t(){throw new Error(`Illegal storage API usage for storage key "${e}".\nDocusaurus storage APIs are not supposed to be called on the server-rendering process.\nPlease only call storage APIs in effects and event handlers.`)}return{get:t,set:t,del:t,listen:t}}(e);const n=l(t?.persistence);return null===n?u:{get:()=>{try{return n.getItem(e)}catch(t){return console.error(`Docusaurus storage error, can't get key=${e}`,t),null}},set:t=>{try{const r=n.getItem(e);n.setItem(e,t),i({key:e,oldValue:r,newValue:t,storage:n})}catch(r){console.error(`Docusaurus storage error, can't set ${e}=${t}`,r)}},del:()=>{try{const t=n.getItem(e);n.removeItem(e),i({key:e,oldValue:t,newValue:null,storage:n})}catch(t){console.error(`Docusaurus storage error, can't delete key=${e}`,t)}},listen:t=>{try{const r=r=>{r.storageArea===n&&r.key===e&&t(r)};return window.addEventListener("storage",r),()=>window.removeEventListener("storage",r)}catch(r){return console.error(`Docusaurus storage error, can't listen for changes of key=${e}`,r),()=>{}}}}}function d(e,t){const n=(0,r.useRef)((()=>null===e?u:c(e,t))).current(),o=(0,r.useCallback)((e=>"undefined"==typeof window?()=>{}:n.listen(e)),[n]);return[(0,a.useSyncExternalStore)(o,(()=>"undefined"==typeof window?null:n.get()),(()=>null)),n]}},94711:(e,t,n)=>{"use strict";n.d(t,{l:()=>o});var r=n(52263),a=n(16550);function o(){const{siteConfig:{baseUrl:e,url:t},i18n:{defaultLocale:n,currentLocale:o}}=(0,r.Z)(),{pathname:i}=(0,a.TH)(),l=o===n?e:e.replace(`/${o}/`,"/"),s=i.replace(e,"");return{createUrl:function(e){let{locale:r,fullyQualified:a}=e;return`${a?t:""}${function(e){return e===n?`${l}`:`${l}${e}/`}(r)}${s}`}}}},85936:(e,t,n)=>{"use strict";n.d(t,{S:()=>i});var r=n(67294),a=n(16550),o=n(902);function i(e){const t=(0,a.TH)(),n=(0,o.D9)(t),i=(0,o.zX)(e);(0,r.useEffect)((()=>{n&&t!==n&&i({location:t,previousLocation:n})}),[i,t,n])}},86668:(e,t,n)=>{"use strict";n.d(t,{L:()=>a});var r=n(52263);function a(){return(0,r.Z)().siteConfig.themeConfig}},8802:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e,t){const{trailingSlash:n,baseUrl:r}=t;if(e.startsWith("#"))return e;if(void 0===n)return e;const[a]=e.split(/[#?]/),o="/"===a||a===r?a:(i=a,n?function(e){return e.endsWith("/")?e:`${e}/`}(i):function(e){return e.endsWith("/")?e.slice(0,-1):e}(i));var i;return e.replace(a,o)}},18780:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.applyTrailingSlash=t.blogPostContainerID=void 0,t.blogPostContainerID="post-content";var a=n(8802);Object.defineProperty(t,"applyTrailingSlash",{enumerable:!0,get:function(){return r(a).default}})},94184:(e,t)=>{var n;!function(){"use strict";var r={}.hasOwnProperty;function a(){for(var e=[],t=0;t<arguments.length;t++){var n=arguments[t];if(n){var o=typeof n;if("string"===o||"number"===o)e.push(n);else if(Array.isArray(n)){if(n.length){var i=a.apply(null,n);i&&e.push(i)}}else if("object"===o){if(n.toString!==Object.prototype.toString&&!n.toString.toString().includes("[native code]")){e.push(n.toString());continue}for(var l in n)r.call(n,l)&&n[l]&&e.push(l)}}}return e.join(" ")}e.exports?(a.default=a,e.exports=a):void 0===(n=function(){return a}.apply(t,[]))||(e.exports=n)}()},86010:(e,t,n)=>{"use strict";function r(e){var t,n,a="";if("string"==typeof e||"number"==typeof e)a+=e;else if("object"==typeof e)if(Array.isArray(e))for(t=0;t<e.length;t++)e[t]&&(n=r(e[t]))&&(a&&(a+=" "),a+=n);else for(t in e)e[t]&&(a&&(a+=" "),a+=t);return a}n.d(t,{Z:()=>a});const a=function(){for(var e,t,n=0,a="";n<arguments.length;)(e=arguments[n++])&&(t=r(e))&&(a&&(a+=" "),a+=t);return a}},42358:(e,t,n)=>{"use strict";n.d(t,{lX:()=>S,q_:()=>N,ob:()=>h,PP:()=>O,Ep:()=>m,Hp:()=>g});var r=n(87462);function a(e){return"/"===e.charAt(0)}function o(e,t){for(var n=t,r=n+1,a=e.length;r<a;n+=1,r+=1)e[n]=e[r];e.pop()}const i=function(e,t){void 0===t&&(t="");var n,r=e&&e.split("/")||[],i=t&&t.split("/")||[],l=e&&a(e),s=t&&a(t),u=l||s;if(e&&a(e)?i=r:r.length&&(i.pop(),i=i.concat(r)),!i.length)return"/";if(i.length){var c=i[i.length-1];n="."===c||".."===c||""===c}else n=!1;for(var d=0,f=i.length;f>=0;f--){var p=i[f];"."===p?o(i,f):".."===p?(o(i,f),d++):d&&(o(i,f),d--)}if(!u)for(;d--;d)i.unshift("..");!u||""===i[0]||i[0]&&a(i[0])||i.unshift("");var m=i.join("/");return n&&"/"!==m.substr(-1)&&(m+="/"),m};function l(e){return e.valueOf?e.valueOf():Object.prototype.valueOf.call(e)}const s=function e(t,n){if(t===n)return!0;if(null==t||null==n)return!1;if(Array.isArray(t))return Array.isArray(n)&&t.length===n.length&&t.every((function(t,r){return e(t,n[r])}));if("object"==typeof t||"object"==typeof n){var r=l(t),a=l(n);return r!==t||a!==n?e(r,a):Object.keys(Object.assign({},t,n)).every((function(r){return e(t[r],n[r])}))}return!1};var u=n(38776);function c(e){return"/"===e.charAt(0)?e:"/"+e}function d(e){return"/"===e.charAt(0)?e.substr(1):e}function f(e,t){return function(e,t){return 0===e.toLowerCase().indexOf(t.toLowerCase())&&-1!=="/?#".indexOf(e.charAt(t.length))}(e,t)?e.substr(t.length):e}function p(e){return"/"===e.charAt(e.length-1)?e.slice(0,-1):e}function m(e){var t=e.pathname,n=e.search,r=e.hash,a=t||"/";return n&&"?"!==n&&(a+="?"===n.charAt(0)?n:"?"+n),r&&"#"!==r&&(a+="#"===r.charAt(0)?r:"#"+r),a}function h(e,t,n,a){var o;"string"==typeof e?(o=function(e){var t=e||"/",n="",r="",a=t.indexOf("#");-1!==a&&(r=t.substr(a),t=t.substr(0,a));var o=t.indexOf("?");return-1!==o&&(n=t.substr(o),t=t.substr(0,o)),{pathname:t,search:"?"===n?"":n,hash:"#"===r?"":r}}(e),o.state=t):(void 0===(o=(0,r.Z)({},e)).pathname&&(o.pathname=""),o.search?"?"!==o.search.charAt(0)&&(o.search="?"+o.search):o.search="",o.hash?"#"!==o.hash.charAt(0)&&(o.hash="#"+o.hash):o.hash="",void 0!==t&&void 0===o.state&&(o.state=t));try{o.pathname=decodeURI(o.pathname)}catch(l){throw l instanceof URIError?new URIError('Pathname "'+o.pathname+'" could not be decoded. This is likely caused by an invalid percent-encoding.'):l}return n&&(o.key=n),a?o.pathname?"/"!==o.pathname.charAt(0)&&(o.pathname=i(o.pathname,a.pathname)):o.pathname=a.pathname:o.pathname||(o.pathname="/"),o}function g(e,t){return e.pathname===t.pathname&&e.search===t.search&&e.hash===t.hash&&e.key===t.key&&s(e.state,t.state)}function b(){var e=null;var t=[];return{setPrompt:function(t){return e=t,function(){e===t&&(e=null)}},confirmTransitionTo:function(t,n,r,a){if(null!=e){var o="function"==typeof e?e(t,n):e;"string"==typeof o?"function"==typeof r?r(o,a):a(!0):a(!1!==o)}else a(!0)},appendListener:function(e){var n=!0;function r(){n&&e.apply(void 0,arguments)}return t.push(r),function(){n=!1,t=t.filter((function(e){return e!==r}))}},notifyListeners:function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];t.forEach((function(e){return e.apply(void 0,n)}))}}}var v=!("undefined"==typeof window||!window.document||!window.document.createElement);function y(e,t){t(window.confirm(e))}var w="popstate",E="hashchange";function k(){try{return window.history.state||{}}catch(e){return{}}}function S(e){void 0===e&&(e={}),v||(0,u.Z)(!1);var t,n=window.history,a=(-1===(t=window.navigator.userAgent).indexOf("Android 2.")&&-1===t.indexOf("Android 4.0")||-1===t.indexOf("Mobile Safari")||-1!==t.indexOf("Chrome")||-1!==t.indexOf("Windows Phone"))&&window.history&&"pushState"in window.history,o=!(-1===window.navigator.userAgent.indexOf("Trident")),i=e,l=i.forceRefresh,s=void 0!==l&&l,d=i.getUserConfirmation,g=void 0===d?y:d,S=i.keyLength,x=void 0===S?6:S,C=e.basename?p(c(e.basename)):"";function _(e){var t=e||{},n=t.key,r=t.state,a=window.location,o=a.pathname+a.search+a.hash;return C&&(o=f(o,C)),h(o,r,n)}function T(){return Math.random().toString(36).substr(2,x)}var A=b();function N(e){(0,r.Z)(j,e),j.length=n.length,A.notifyListeners(j.location,j.action)}function L(e){(function(e){return void 0===e.state&&-1===navigator.userAgent.indexOf("CriOS")})(e)||R(_(e.state))}function O(){R(_(k()))}var P=!1;function R(e){if(P)P=!1,N();else{A.confirmTransitionTo(e,"POP",g,(function(t){t?N({action:"POP",location:e}):function(e){var t=j.location,n=D.indexOf(t.key);-1===n&&(n=0);var r=D.indexOf(e.key);-1===r&&(r=0);var a=n-r;a&&(P=!0,F(a))}(e)}))}}var I=_(k()),D=[I.key];function M(e){return C+m(e)}function F(e){n.go(e)}var B=0;function U(e){1===(B+=e)&&1===e?(window.addEventListener(w,L),o&&window.addEventListener(E,O)):0===B&&(window.removeEventListener(w,L),o&&window.removeEventListener(E,O))}var $=!1;var j={length:n.length,action:"POP",location:I,createHref:M,push:function(e,t){var r="PUSH",o=h(e,t,T(),j.location);A.confirmTransitionTo(o,r,g,(function(e){if(e){var t=M(o),i=o.key,l=o.state;if(a)if(n.pushState({key:i,state:l},null,t),s)window.location.href=t;else{var u=D.indexOf(j.location.key),c=D.slice(0,u+1);c.push(o.key),D=c,N({action:r,location:o})}else window.location.href=t}}))},replace:function(e,t){var r="REPLACE",o=h(e,t,T(),j.location);A.confirmTransitionTo(o,r,g,(function(e){if(e){var t=M(o),i=o.key,l=o.state;if(a)if(n.replaceState({key:i,state:l},null,t),s)window.location.replace(t);else{var u=D.indexOf(j.location.key);-1!==u&&(D[u]=o.key),N({action:r,location:o})}else window.location.replace(t)}}))},go:F,goBack:function(){F(-1)},goForward:function(){F(1)},block:function(e){void 0===e&&(e=!1);var t=A.setPrompt(e);return $||(U(1),$=!0),function(){return $&&($=!1,U(-1)),t()}},listen:function(e){var t=A.appendListener(e);return U(1),function(){U(-1),t()}}};return j}var x="hashchange",C={hashbang:{encodePath:function(e){return"!"===e.charAt(0)?e:"!/"+d(e)},decodePath:function(e){return"!"===e.charAt(0)?e.substr(1):e}},noslash:{encodePath:d,decodePath:c},slash:{encodePath:c,decodePath:c}};function _(e){var t=e.indexOf("#");return-1===t?e:e.slice(0,t)}function T(){var e=window.location.href,t=e.indexOf("#");return-1===t?"":e.substring(t+1)}function A(e){window.location.replace(_(window.location.href)+"#"+e)}function N(e){void 0===e&&(e={}),v||(0,u.Z)(!1);var t=window.history,n=(window.navigator.userAgent.indexOf("Firefox"),e),a=n.getUserConfirmation,o=void 0===a?y:a,i=n.hashType,l=void 0===i?"slash":i,s=e.basename?p(c(e.basename)):"",d=C[l],g=d.encodePath,w=d.decodePath;function E(){var e=w(T());return s&&(e=f(e,s)),h(e)}var k=b();function S(e){(0,r.Z)($,e),$.length=t.length,k.notifyListeners($.location,$.action)}var N=!1,L=null;function O(){var e,t,n=T(),r=g(n);if(n!==r)A(r);else{var a=E(),i=$.location;if(!N&&(t=a,(e=i).pathname===t.pathname&&e.search===t.search&&e.hash===t.hash))return;if(L===m(a))return;L=null,function(e){if(N)N=!1,S();else{var t="POP";k.confirmTransitionTo(e,t,o,(function(n){n?S({action:t,location:e}):function(e){var t=$.location,n=D.lastIndexOf(m(t));-1===n&&(n=0);var r=D.lastIndexOf(m(e));-1===r&&(r=0);var a=n-r;a&&(N=!0,M(a))}(e)}))}}(a)}}var P=T(),R=g(P);P!==R&&A(R);var I=E(),D=[m(I)];function M(e){t.go(e)}var F=0;function B(e){1===(F+=e)&&1===e?window.addEventListener(x,O):0===F&&window.removeEventListener(x,O)}var U=!1;var $={length:t.length,action:"POP",location:I,createHref:function(e){var t=document.querySelector("base"),n="";return t&&t.getAttribute("href")&&(n=_(window.location.href)),n+"#"+g(s+m(e))},push:function(e,t){var n="PUSH",r=h(e,void 0,void 0,$.location);k.confirmTransitionTo(r,n,o,(function(e){if(e){var t=m(r),a=g(s+t);if(T()!==a){L=t,function(e){window.location.hash=e}(a);var o=D.lastIndexOf(m($.location)),i=D.slice(0,o+1);i.push(t),D=i,S({action:n,location:r})}else S()}}))},replace:function(e,t){var n="REPLACE",r=h(e,void 0,void 0,$.location);k.confirmTransitionTo(r,n,o,(function(e){if(e){var t=m(r),a=g(s+t);T()!==a&&(L=t,A(a));var o=D.indexOf(m($.location));-1!==o&&(D[o]=t),S({action:n,location:r})}}))},go:M,goBack:function(){M(-1)},goForward:function(){M(1)},block:function(e){void 0===e&&(e=!1);var t=k.setPrompt(e);return U||(B(1),U=!0),function(){return U&&(U=!1,B(-1)),t()}},listen:function(e){var t=k.appendListener(e);return B(1),function(){B(-1),t()}}};return $}function L(e,t,n){return Math.min(Math.max(e,t),n)}function O(e){void 0===e&&(e={});var t=e,n=t.getUserConfirmation,a=t.initialEntries,o=void 0===a?["/"]:a,i=t.initialIndex,l=void 0===i?0:i,s=t.keyLength,u=void 0===s?6:s,c=b();function d(e){(0,r.Z)(w,e),w.length=w.entries.length,c.notifyListeners(w.location,w.action)}function f(){return Math.random().toString(36).substr(2,u)}var p=L(l,0,o.length-1),g=o.map((function(e){return h(e,void 0,"string"==typeof e?f():e.key||f())})),v=m;function y(e){var t=L(w.index+e,0,w.entries.length-1),r=w.entries[t];c.confirmTransitionTo(r,"POP",n,(function(e){e?d({action:"POP",location:r,index:t}):d()}))}var w={length:g.length,action:"POP",location:g[p],index:p,entries:g,createHref:v,push:function(e,t){var r="PUSH",a=h(e,t,f(),w.location);c.confirmTransitionTo(a,r,n,(function(e){if(e){var t=w.index+1,n=w.entries.slice(0);n.length>t?n.splice(t,n.length-t,a):n.push(a),d({action:r,location:a,index:t,entries:n})}}))},replace:function(e,t){var r="REPLACE",a=h(e,t,f(),w.location);c.confirmTransitionTo(a,r,n,(function(e){e&&(w.entries[w.index]=a,d({action:r,location:a}))}))},go:y,goBack:function(){y(-1)},goForward:function(){y(1)},canGo:function(e){var t=w.index+e;return t>=0&&t<w.entries.length},block:function(e){return void 0===e&&(e=!1),c.setPrompt(e)},listen:function(e){return c.appendListener(e)}};return w}},8679:(e,t,n)=>{"use strict";var r=n(59864),a={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},o={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},i={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},l={};function s(e){return r.isMemo(e)?i:l[e.$$typeof]||a}l[r.ForwardRef]={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},l[r.Memo]=i;var u=Object.defineProperty,c=Object.getOwnPropertyNames,d=Object.getOwnPropertySymbols,f=Object.getOwnPropertyDescriptor,p=Object.getPrototypeOf,m=Object.prototype;e.exports=function e(t,n,r){if("string"!=typeof n){if(m){var a=p(n);a&&a!==m&&e(t,a,r)}var i=c(n);d&&(i=i.concat(d(n)));for(var l=s(t),h=s(n),g=0;g<i.length;++g){var b=i[g];if(!(o[b]||r&&r[b]||h&&h[b]||l&&l[b])){var v=f(n,b);try{u(t,b,v)}catch(y){}}}}return t}},41143:e=>{"use strict";e.exports=function(e,t,n,r,a,o,i,l){if(!e){var s;if(void 0===t)s=new Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var u=[n,r,a,o,i,l],c=0;(s=new Error(t.replace(/%s/g,(function(){return u[c++]})))).name="Invariant Violation"}throw s.framesToPop=1,s}}},5826:e=>{e.exports=Array.isArray||function(e){return"[object Array]"==Object.prototype.toString.call(e)}},32497:(e,t,n)=>{"use strict";n.r(t)},34197:(e,t,n)=>{"use strict";n.r(t)},74865:function(e,t,n){var r,a;r=function(){var e,t,n={version:"0.2.0"},r=n.settings={minimum:.08,easing:"ease",positionUsing:"",speed:200,trickle:!0,trickleRate:.02,trickleSpeed:800,showSpinner:!0,barSelector:'[role="bar"]',spinnerSelector:'[role="spinner"]',parent:"body",template:'<div class="bar" role="bar"><div class="peg"></div></div><div class="spinner" role="spinner"><div class="spinner-icon"></div></div>'};function a(e,t,n){return e<t?t:e>n?n:e}function o(e){return 100*(-1+e)}function i(e,t,n){var a;return(a="translate3d"===r.positionUsing?{transform:"translate3d("+o(e)+"%,0,0)"}:"translate"===r.positionUsing?{transform:"translate("+o(e)+"%,0)"}:{"margin-left":o(e)+"%"}).transition="all "+t+"ms "+n,a}n.configure=function(e){var t,n;for(t in e)void 0!==(n=e[t])&&e.hasOwnProperty(t)&&(r[t]=n);return this},n.status=null,n.set=function(e){var t=n.isStarted();e=a(e,r.minimum,1),n.status=1===e?null:e;var o=n.render(!t),u=o.querySelector(r.barSelector),c=r.speed,d=r.easing;return o.offsetWidth,l((function(t){""===r.positionUsing&&(r.positionUsing=n.getPositioningCSS()),s(u,i(e,c,d)),1===e?(s(o,{transition:"none",opacity:1}),o.offsetWidth,setTimeout((function(){s(o,{transition:"all "+c+"ms linear",opacity:0}),setTimeout((function(){n.remove(),t()}),c)}),c)):setTimeout(t,c)})),this},n.isStarted=function(){return"number"==typeof n.status},n.start=function(){n.status||n.set(0);var e=function(){setTimeout((function(){n.status&&(n.trickle(),e())}),r.trickleSpeed)};return r.trickle&&e(),this},n.done=function(e){return e||n.status?n.inc(.3+.5*Math.random()).set(1):this},n.inc=function(e){var t=n.status;return t?("number"!=typeof e&&(e=(1-t)*a(Math.random()*t,.1,.95)),t=a(t+e,0,.994),n.set(t)):n.start()},n.trickle=function(){return n.inc(Math.random()*r.trickleRate)},e=0,t=0,n.promise=function(r){return r&&"resolved"!==r.state()?(0===t&&n.start(),e++,t++,r.always((function(){0==--t?(e=0,n.done()):n.set((e-t)/e)})),this):this},n.render=function(e){if(n.isRendered())return document.getElementById("nprogress");c(document.documentElement,"nprogress-busy");var t=document.createElement("div");t.id="nprogress",t.innerHTML=r.template;var a,i=t.querySelector(r.barSelector),l=e?"-100":o(n.status||0),u=document.querySelector(r.parent);return s(i,{transition:"all 0 linear",transform:"translate3d("+l+"%,0,0)"}),r.showSpinner||(a=t.querySelector(r.spinnerSelector))&&p(a),u!=document.body&&c(u,"nprogress-custom-parent"),u.appendChild(t),t},n.remove=function(){d(document.documentElement,"nprogress-busy"),d(document.querySelector(r.parent),"nprogress-custom-parent");var e=document.getElementById("nprogress");e&&p(e)},n.isRendered=function(){return!!document.getElementById("nprogress")},n.getPositioningCSS=function(){var e=document.body.style,t="WebkitTransform"in e?"Webkit":"MozTransform"in e?"Moz":"msTransform"in e?"ms":"OTransform"in e?"O":"";return t+"Perspective"in e?"translate3d":t+"Transform"in e?"translate":"margin"};var l=function(){var e=[];function t(){var n=e.shift();n&&n(t)}return function(n){e.push(n),1==e.length&&t()}}(),s=function(){var e=["Webkit","O","Moz","ms"],t={};function n(e){return e.replace(/^-ms-/,"ms-").replace(/-([\da-z])/gi,(function(e,t){return t.toUpperCase()}))}function r(t){var n=document.body.style;if(t in n)return t;for(var r,a=e.length,o=t.charAt(0).toUpperCase()+t.slice(1);a--;)if((r=e[a]+o)in n)return r;return t}function a(e){return e=n(e),t[e]||(t[e]=r(e))}function o(e,t,n){t=a(t),e.style[t]=n}return function(e,t){var n,r,a=arguments;if(2==a.length)for(n in t)void 0!==(r=t[n])&&t.hasOwnProperty(n)&&o(e,n,r);else o(e,a[1],a[2])}}();function u(e,t){return("string"==typeof e?e:f(e)).indexOf(" "+t+" ")>=0}function c(e,t){var n=f(e),r=n+t;u(n,t)||(e.className=r.substring(1))}function d(e,t){var n,r=f(e);u(e,t)&&(n=r.replace(" "+t+" "," "),e.className=n.substring(1,n.length-1))}function f(e){return(" "+(e.className||"")+" ").replace(/\s+/gi," ")}function p(e){e&&e.parentNode&&e.parentNode.removeChild(e)}return n},void 0===(a="function"==typeof r?r.call(t,n,t,e):r)||(e.exports=a)},27418:e=>{"use strict";var t=Object.getOwnPropertySymbols,n=Object.prototype.hasOwnProperty,r=Object.prototype.propertyIsEnumerable;e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var r={};return"abcdefghijklmnopqrst".split("").forEach((function(e){r[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},r)).join("")}catch(a){return!1}}()?Object.assign:function(e,a){for(var o,i,l=function(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}(e),s=1;s<arguments.length;s++){for(var u in o=Object(arguments[s]))n.call(o,u)&&(l[u]=o[u]);if(t){i=t(o);for(var c=0;c<i.length;c++)r.call(o,i[c])&&(l[i[c]]=o[i[c]])}}return l}},14779:(e,t,n)=>{var r=n(5826);e.exports=p,e.exports.parse=o,e.exports.compile=function(e,t){return l(o(e,t),t)},e.exports.tokensToFunction=l,e.exports.tokensToRegExp=f;var a=new RegExp(["(\\\\.)","([\\/.])?(?:(?:\\:(\\w+)(?:\\(((?:\\\\.|[^\\\\()])+)\\))?|\\(((?:\\\\.|[^\\\\()])+)\\))([+*?])?|(\\*))"].join("|"),"g");function o(e,t){for(var n,r=[],o=0,i=0,l="",c=t&&t.delimiter||"/";null!=(n=a.exec(e));){var d=n[0],f=n[1],p=n.index;if(l+=e.slice(i,p),i=p+d.length,f)l+=f[1];else{var m=e[i],h=n[2],g=n[3],b=n[4],v=n[5],y=n[6],w=n[7];l&&(r.push(l),l="");var E=null!=h&&null!=m&&m!==h,k="+"===y||"*"===y,S="?"===y||"*"===y,x=n[2]||c,C=b||v;r.push({name:g||o++,prefix:h||"",delimiter:x,optional:S,repeat:k,partial:E,asterisk:!!w,pattern:C?u(C):w?".*":"[^"+s(x)+"]+?"})}}return i<e.length&&(l+=e.substr(i)),l&&r.push(l),r}function i(e){return encodeURI(e).replace(/[\/?#]/g,(function(e){return"%"+e.charCodeAt(0).toString(16).toUpperCase()}))}function l(e,t){for(var n=new Array(e.length),a=0;a<e.length;a++)"object"==typeof e[a]&&(n[a]=new RegExp("^(?:"+e[a].pattern+")$",d(t)));return function(t,a){for(var o="",l=t||{},s=(a||{}).pretty?i:encodeURIComponent,u=0;u<e.length;u++){var c=e[u];if("string"!=typeof c){var d,f=l[c.name];if(null==f){if(c.optional){c.partial&&(o+=c.prefix);continue}throw new TypeError('Expected "'+c.name+'" to be defined')}if(r(f)){if(!c.repeat)throw new TypeError('Expected "'+c.name+'" to not repeat, but received `'+JSON.stringify(f)+"`");if(0===f.length){if(c.optional)continue;throw new TypeError('Expected "'+c.name+'" to not be empty')}for(var p=0;p<f.length;p++){if(d=s(f[p]),!n[u].test(d))throw new TypeError('Expected all "'+c.name+'" to match "'+c.pattern+'", but received `'+JSON.stringify(d)+"`");o+=(0===p?c.prefix:c.delimiter)+d}}else{if(d=c.asterisk?encodeURI(f).replace(/[?#]/g,(function(e){return"%"+e.charCodeAt(0).toString(16).toUpperCase()})):s(f),!n[u].test(d))throw new TypeError('Expected "'+c.name+'" to match "'+c.pattern+'", but received "'+d+'"');o+=c.prefix+d}}else o+=c}return o}}function s(e){return e.replace(/([.+*?=^!:${}()[\]|\/\\])/g,"\\$1")}function u(e){return e.replace(/([=!:$\/()])/g,"\\$1")}function c(e,t){return e.keys=t,e}function d(e){return e&&e.sensitive?"":"i"}function f(e,t,n){r(t)||(n=t||n,t=[]);for(var a=(n=n||{}).strict,o=!1!==n.end,i="",l=0;l<e.length;l++){var u=e[l];if("string"==typeof u)i+=s(u);else{var f=s(u.prefix),p="(?:"+u.pattern+")";t.push(u),u.repeat&&(p+="(?:"+f+p+")*"),i+=p=u.optional?u.partial?f+"("+p+")?":"(?:"+f+"("+p+"))?":f+"("+p+")"}}var m=s(n.delimiter||"/"),h=i.slice(-m.length)===m;return a||(i=(h?i.slice(0,-m.length):i)+"(?:"+m+"(?=$))?"),i+=o?"$":a&&h?"":"(?="+m+"|$)",c(new RegExp("^"+i,d(n)),t)}function p(e,t,n){return r(t)||(n=t||n,t=[]),n=n||{},e instanceof RegExp?function(e,t){var n=e.source.match(/\((?!\?)/g);if(n)for(var r=0;r<n.length;r++)t.push({name:r,prefix:null,delimiter:null,optional:!1,repeat:!1,partial:!1,asterisk:!1,pattern:null});return c(e,t)}(e,t):r(e)?function(e,t,n){for(var r=[],a=0;a<e.length;a++)r.push(p(e[a],t,n).source);return c(new RegExp("(?:"+r.join("|")+")",d(n)),t)}(e,t,n):function(e,t,n){return f(o(e,n),t,n)}(e,t,n)}},87410:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var r=function(){var e=/(?:^|\s)lang(?:uage)?-([\w-]+)(?=\s|$)/i,t=0,n={},r={util:{encode:function e(t){return t instanceof a?new a(t.type,e(t.content),t.alias):Array.isArray(t)?t.map(e):t.replace(/&/g,"&").replace(/</g,"<").replace(/\u00a0/g," ")},type:function(e){return Object.prototype.toString.call(e).slice(8,-1)},objId:function(e){return e.__id||Object.defineProperty(e,"__id",{value:++t}),e.__id},clone:function e(t,n){var a,o;switch(n=n||{},r.util.type(t)){case"Object":if(o=r.util.objId(t),n[o])return n[o];for(var i in a={},n[o]=a,t)t.hasOwnProperty(i)&&(a[i]=e(t[i],n));return a;case"Array":return o=r.util.objId(t),n[o]?n[o]:(a=[],n[o]=a,t.forEach((function(t,r){a[r]=e(t,n)})),a);default:return t}},getLanguage:function(t){for(;t;){var n=e.exec(t.className);if(n)return n[1].toLowerCase();t=t.parentElement}return"none"},setLanguage:function(t,n){t.className=t.className.replace(RegExp(e,"gi"),""),t.classList.add("language-"+n)},isActive:function(e,t,n){for(var r="no-"+t;e;){var a=e.classList;if(a.contains(t))return!0;if(a.contains(r))return!1;e=e.parentElement}return!!n}},languages:{plain:n,plaintext:n,text:n,txt:n,extend:function(e,t){var n=r.util.clone(r.languages[e]);for(var a in t)n[a]=t[a];return n},insertBefore:function(e,t,n,a){var o=(a=a||r.languages)[e],i={};for(var l in o)if(o.hasOwnProperty(l)){if(l==t)for(var s in n)n.hasOwnProperty(s)&&(i[s]=n[s]);n.hasOwnProperty(l)||(i[l]=o[l])}var u=a[e];return a[e]=i,r.languages.DFS(r.languages,(function(t,n){n===u&&t!=e&&(this[t]=i)})),i},DFS:function e(t,n,a,o){o=o||{};var i=r.util.objId;for(var l in t)if(t.hasOwnProperty(l)){n.call(t,l,t[l],a||l);var s=t[l],u=r.util.type(s);"Object"!==u||o[i(s)]?"Array"!==u||o[i(s)]||(o[i(s)]=!0,e(s,n,l,o)):(o[i(s)]=!0,e(s,n,null,o))}}},plugins:{},highlight:function(e,t,n){var o={code:e,grammar:t,language:n};return r.hooks.run("before-tokenize",o),o.tokens=r.tokenize(o.code,o.grammar),r.hooks.run("after-tokenize",o),a.stringify(r.util.encode(o.tokens),o.language)},tokenize:function(e,t){var n=t.rest;if(n){for(var r in n)t[r]=n[r];delete t.rest}var a=new l;return s(a,a.head,e),i(e,a,t,a.head,0),function(e){var t=[],n=e.head.next;for(;n!==e.tail;)t.push(n.value),n=n.next;return t}(a)},hooks:{all:{},add:function(e,t){var n=r.hooks.all;n[e]=n[e]||[],n[e].push(t)},run:function(e,t){var n=r.hooks.all[e];if(n&&n.length)for(var a,o=0;a=n[o++];)a(t)}},Token:a};function a(e,t,n,r){this.type=e,this.content=t,this.alias=n,this.length=0|(r||"").length}function o(e,t,n,r){e.lastIndex=t;var a=e.exec(n);if(a&&r&&a[1]){var o=a[1].length;a.index+=o,a[0]=a[0].slice(o)}return a}function i(e,t,n,l,c,d){for(var f in n)if(n.hasOwnProperty(f)&&n[f]){var p=n[f];p=Array.isArray(p)?p:[p];for(var m=0;m<p.length;++m){if(d&&d.cause==f+","+m)return;var h=p[m],g=h.inside,b=!!h.lookbehind,v=!!h.greedy,y=h.alias;if(v&&!h.pattern.global){var w=h.pattern.toString().match(/[imsuy]*$/)[0];h.pattern=RegExp(h.pattern.source,w+"g")}for(var E=h.pattern||h,k=l.next,S=c;k!==t.tail&&!(d&&S>=d.reach);S+=k.value.length,k=k.next){var x=k.value;if(t.length>e.length)return;if(!(x instanceof a)){var C,_=1;if(v){if(!(C=o(E,S,e,b))||C.index>=e.length)break;var T=C.index,A=C.index+C[0].length,N=S;for(N+=k.value.length;T>=N;)N+=(k=k.next).value.length;if(S=N-=k.value.length,k.value instanceof a)continue;for(var L=k;L!==t.tail&&(N<A||"string"==typeof L.value);L=L.next)_++,N+=L.value.length;_--,x=e.slice(S,N),C.index-=S}else if(!(C=o(E,0,x,b)))continue;T=C.index;var O=C[0],P=x.slice(0,T),R=x.slice(T+O.length),I=S+x.length;d&&I>d.reach&&(d.reach=I);var D=k.prev;if(P&&(D=s(t,D,P),S+=P.length),u(t,D,_),k=s(t,D,new a(f,g?r.tokenize(O,g):O,y,O)),R&&s(t,k,R),_>1){var M={cause:f+","+m,reach:I};i(e,t,n,k.prev,S,M),d&&M.reach>d.reach&&(d.reach=M.reach)}}}}}}function l(){var e={value:null,prev:null,next:null},t={value:null,prev:e,next:null};e.next=t,this.head=e,this.tail=t,this.length=0}function s(e,t,n){var r=t.next,a={value:n,prev:t,next:r};return t.next=a,r.prev=a,e.length++,a}function u(e,t,n){for(var r=t.next,a=0;a<n&&r!==e.tail;a++)r=r.next;t.next=r,r.prev=t,e.length-=a}return a.stringify=function e(t,n){if("string"==typeof t)return t;if(Array.isArray(t)){var a="";return t.forEach((function(t){a+=e(t,n)})),a}var o={type:t.type,content:e(t.content,n),tag:"span",classes:["token",t.type],attributes:{},language:n},i=t.alias;i&&(Array.isArray(i)?Array.prototype.push.apply(o.classes,i):o.classes.push(i)),r.hooks.run("wrap",o);var l="";for(var s in o.attributes)l+=" "+s+'="'+(o.attributes[s]||"").replace(/"/g,""")+'"';return"<"+o.tag+' class="'+o.classes.join(" ")+'"'+l+">"+o.content+"</"+o.tag+">"},r}(),a=r;r.default=r,a.languages.markup={comment:{pattern:/<!--(?:(?!<!--)[\s\S])*?-->/,greedy:!0},prolog:{pattern:/<\?[\s\S]+?\?>/,greedy:!0},doctype:{pattern:/<!DOCTYPE(?:[^>"'[\]]|"[^"]*"|'[^']*')+(?:\[(?:[^<"'\]]|"[^"]*"|'[^']*'|<(?!!--)|<!--(?:[^-]|-(?!->))*-->)*\]\s*)?>/i,greedy:!0,inside:{"internal-subset":{pattern:/(^[^\[]*\[)[\s\S]+(?=\]>$)/,lookbehind:!0,greedy:!0,inside:null},string:{pattern:/"[^"]*"|'[^']*'/,greedy:!0},punctuation:/^<!|>$|[[\]]/,"doctype-tag":/^DOCTYPE/i,name:/[^\s<>'"]+/}},cdata:{pattern:/<!\[CDATA\[[\s\S]*?\]\]>/i,greedy:!0},tag:{pattern:/<\/?(?!\d)[^\s>\/=$<%]+(?:\s(?:\s*[^\s>\/=]+(?:\s*=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+(?=[\s>]))|(?=[\s/>])))+)?\s*\/?>/,greedy:!0,inside:{tag:{pattern:/^<\/?[^\s>\/]+/,inside:{punctuation:/^<\/?/,namespace:/^[^\s>\/:]+:/}},"special-attr":[],"attr-value":{pattern:/=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+)/,inside:{punctuation:[{pattern:/^=/,alias:"attr-equals"},/"|'/]}},punctuation:/\/?>/,"attr-name":{pattern:/[^\s>\/]+/,inside:{namespace:/^[^\s>\/:]+:/}}}},entity:[{pattern:/&[\da-z]{1,8};/i,alias:"named-entity"},/&#x?[\da-f]{1,8};/i]},a.languages.markup.tag.inside["attr-value"].inside.entity=a.languages.markup.entity,a.languages.markup.doctype.inside["internal-subset"].inside=a.languages.markup,a.hooks.add("wrap",(function(e){"entity"===e.type&&(e.attributes.title=e.content.replace(/&/,"&"))})),Object.defineProperty(a.languages.markup.tag,"addInlined",{value:function(e,t){var n={};n["language-"+t]={pattern:/(^<!\[CDATA\[)[\s\S]+?(?=\]\]>$)/i,lookbehind:!0,inside:a.languages[t]},n.cdata=/^<!\[CDATA\[|\]\]>$/i;var r={"included-cdata":{pattern:/<!\[CDATA\[[\s\S]*?\]\]>/i,inside:n}};r["language-"+t]={pattern:/[\s\S]+/,inside:a.languages[t]};var o={};o[e]={pattern:RegExp(/(<__[^>]*>)(?:<!\[CDATA\[(?:[^\]]|\](?!\]>))*\]\]>|(?!<!\[CDATA\[)[\s\S])*?(?=<\/__>)/.source.replace(/__/g,(function(){return e})),"i"),lookbehind:!0,greedy:!0,inside:r},a.languages.insertBefore("markup","cdata",o)}}),Object.defineProperty(a.languages.markup.tag,"addAttribute",{value:function(e,t){a.languages.markup.tag.inside["special-attr"].push({pattern:RegExp(/(^|["'\s])/.source+"(?:"+e+")"+/\s*=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+(?=[\s>]))/.source,"i"),lookbehind:!0,inside:{"attr-name":/^[^\s=]+/,"attr-value":{pattern:/=[\s\S]+/,inside:{value:{pattern:/(^=\s*(["']|(?!["'])))\S[\s\S]*(?=\2$)/,lookbehind:!0,alias:[t,"language-"+t],inside:a.languages[t]},punctuation:[{pattern:/^=/,alias:"attr-equals"},/"|'/]}}}})}}),a.languages.html=a.languages.markup,a.languages.mathml=a.languages.markup,a.languages.svg=a.languages.markup,a.languages.xml=a.languages.extend("markup",{}),a.languages.ssml=a.languages.xml,a.languages.atom=a.languages.xml,a.languages.rss=a.languages.xml,function(e){var t="\\b(?:BASH|BASHOPTS|BASH_ALIASES|BASH_ARGC|BASH_ARGV|BASH_CMDS|BASH_COMPLETION_COMPAT_DIR|BASH_LINENO|BASH_REMATCH|BASH_SOURCE|BASH_VERSINFO|BASH_VERSION|COLORTERM|COLUMNS|COMP_WORDBREAKS|DBUS_SESSION_BUS_ADDRESS|DEFAULTS_PATH|DESKTOP_SESSION|DIRSTACK|DISPLAY|EUID|GDMSESSION|GDM_LANG|GNOME_KEYRING_CONTROL|GNOME_KEYRING_PID|GPG_AGENT_INFO|GROUPS|HISTCONTROL|HISTFILE|HISTFILESIZE|HISTSIZE|HOME|HOSTNAME|HOSTTYPE|IFS|INSTANCE|JOB|LANG|LANGUAGE|LC_ADDRESS|LC_ALL|LC_IDENTIFICATION|LC_MEASUREMENT|LC_MONETARY|LC_NAME|LC_NUMERIC|LC_PAPER|LC_TELEPHONE|LC_TIME|LESSCLOSE|LESSOPEN|LINES|LOGNAME|LS_COLORS|MACHTYPE|MAILCHECK|MANDATORY_PATH|NO_AT_BRIDGE|OLDPWD|OPTERR|OPTIND|ORBIT_SOCKETDIR|OSTYPE|PAPERSIZE|PATH|PIPESTATUS|PPID|PS1|PS2|PS3|PS4|PWD|RANDOM|REPLY|SECONDS|SELINUX_INIT|SESSION|SESSIONTYPE|SESSION_MANAGER|SHELL|SHELLOPTS|SHLVL|SSH_AUTH_SOCK|TERM|UID|UPSTART_EVENTS|UPSTART_INSTANCE|UPSTART_JOB|UPSTART_SESSION|USER|WINDOWID|XAUTHORITY|XDG_CONFIG_DIRS|XDG_CURRENT_DESKTOP|XDG_DATA_DIRS|XDG_GREETER_DATA_DIR|XDG_MENU_PREFIX|XDG_RUNTIME_DIR|XDG_SEAT|XDG_SEAT_PATH|XDG_SESSION_DESKTOP|XDG_SESSION_ID|XDG_SESSION_PATH|XDG_SESSION_TYPE|XDG_VTNR|XMODIFIERS)\\b",n={pattern:/(^(["']?)\w+\2)[ \t]+\S.*/,lookbehind:!0,alias:"punctuation",inside:null},r={bash:n,environment:{pattern:RegExp("\\$"+t),alias:"constant"},variable:[{pattern:/\$?\(\([\s\S]+?\)\)/,greedy:!0,inside:{variable:[{pattern:/(^\$\(\([\s\S]+)\)\)/,lookbehind:!0},/^\$\(\(/],number:/\b0x[\dA-Fa-f]+\b|(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:[Ee]-?\d+)?/,operator:/--|\+\+|\*\*=?|<<=?|>>=?|&&|\|\||[=!+\-*/%<>^&|]=?|[?~:]/,punctuation:/\(\(?|\)\)?|,|;/}},{pattern:/\$\((?:\([^)]+\)|[^()])+\)|`[^`]+`/,greedy:!0,inside:{variable:/^\$\(|^`|\)$|`$/}},{pattern:/\$\{[^}]+\}/,greedy:!0,inside:{operator:/:[-=?+]?|[!\/]|##?|%%?|\^\^?|,,?/,punctuation:/[\[\]]/,environment:{pattern:RegExp("(\\{)"+t),lookbehind:!0,alias:"constant"}}},/\$(?:\w+|[#?*!@$])/],entity:/\\(?:[abceEfnrtv\\"]|O?[0-7]{1,3}|U[0-9a-fA-F]{8}|u[0-9a-fA-F]{4}|x[0-9a-fA-F]{1,2})/};e.languages.bash={shebang:{pattern:/^#!\s*\/.*/,alias:"important"},comment:{pattern:/(^|[^"{\\$])#.*/,lookbehind:!0},"function-name":[{pattern:/(\bfunction\s+)[\w-]+(?=(?:\s*\(?:\s*\))?\s*\{)/,lookbehind:!0,alias:"function"},{pattern:/\b[\w-]+(?=\s*\(\s*\)\s*\{)/,alias:"function"}],"for-or-select":{pattern:/(\b(?:for|select)\s+)\w+(?=\s+in\s)/,alias:"variable",lookbehind:!0},"assign-left":{pattern:/(^|[\s;|&]|[<>]\()\w+(?=\+?=)/,inside:{environment:{pattern:RegExp("(^|[\\s;|&]|[<>]\\()"+t),lookbehind:!0,alias:"constant"}},alias:"variable",lookbehind:!0},string:[{pattern:/((?:^|[^<])<<-?\s*)(\w+)\s[\s\S]*?(?:\r?\n|\r)\2/,lookbehind:!0,greedy:!0,inside:r},{pattern:/((?:^|[^<])<<-?\s*)(["'])(\w+)\2\s[\s\S]*?(?:\r?\n|\r)\3/,lookbehind:!0,greedy:!0,inside:{bash:n}},{pattern:/(^|[^\\](?:\\\\)*)"(?:\\[\s\S]|\$\([^)]+\)|\$(?!\()|`[^`]+`|[^"\\`$])*"/,lookbehind:!0,greedy:!0,inside:r},{pattern:/(^|[^$\\])'[^']*'/,lookbehind:!0,greedy:!0},{pattern:/\$'(?:[^'\\]|\\[\s\S])*'/,greedy:!0,inside:{entity:r.entity}}],environment:{pattern:RegExp("\\$?"+t),alias:"constant"},variable:r.variable,function:{pattern:/(^|[\s;|&]|[<>]\()(?:add|apropos|apt|apt-cache|apt-get|aptitude|aspell|automysqlbackup|awk|basename|bash|bc|bconsole|bg|bzip2|cal|cat|cfdisk|chgrp|chkconfig|chmod|chown|chroot|cksum|clear|cmp|column|comm|composer|cp|cron|crontab|csplit|curl|cut|date|dc|dd|ddrescue|debootstrap|df|diff|diff3|dig|dir|dircolors|dirname|dirs|dmesg|docker|docker-compose|du|egrep|eject|env|ethtool|expand|expect|expr|fdformat|fdisk|fg|fgrep|file|find|fmt|fold|format|free|fsck|ftp|fuser|gawk|git|gparted|grep|groupadd|groupdel|groupmod|groups|grub-mkconfig|gzip|halt|head|hg|history|host|hostname|htop|iconv|id|ifconfig|ifdown|ifup|import|install|ip|jobs|join|kill|killall|less|link|ln|locate|logname|logrotate|look|lpc|lpr|lprint|lprintd|lprintq|lprm|ls|lsof|lynx|make|man|mc|mdadm|mkconfig|mkdir|mke2fs|mkfifo|mkfs|mkisofs|mknod|mkswap|mmv|more|most|mount|mtools|mtr|mutt|mv|nano|nc|netstat|nice|nl|node|nohup|notify-send|npm|nslookup|op|open|parted|passwd|paste|pathchk|ping|pkill|pnpm|podman|podman-compose|popd|pr|printcap|printenv|ps|pushd|pv|quota|quotacheck|quotactl|ram|rar|rcp|reboot|remsync|rename|renice|rev|rm|rmdir|rpm|rsync|scp|screen|sdiff|sed|sendmail|seq|service|sftp|sh|shellcheck|shuf|shutdown|sleep|slocate|sort|split|ssh|stat|strace|su|sudo|sum|suspend|swapon|sync|tac|tail|tar|tee|time|timeout|top|touch|tr|traceroute|tsort|tty|umount|uname|unexpand|uniq|units|unrar|unshar|unzip|update-grub|uptime|useradd|userdel|usermod|users|uudecode|uuencode|v|vcpkg|vdir|vi|vim|virsh|vmstat|wait|watch|wc|wget|whereis|which|who|whoami|write|xargs|xdg-open|yarn|yes|zenity|zip|zsh|zypper)(?=$|[)\s;|&])/,lookbehind:!0},keyword:{pattern:/(^|[\s;|&]|[<>]\()(?:case|do|done|elif|else|esac|fi|for|function|if|in|select|then|until|while)(?=$|[)\s;|&])/,lookbehind:!0},builtin:{pattern:/(^|[\s;|&]|[<>]\()(?:\.|:|alias|bind|break|builtin|caller|cd|command|continue|declare|echo|enable|eval|exec|exit|export|getopts|hash|help|let|local|logout|mapfile|printf|pwd|read|readarray|readonly|return|set|shift|shopt|source|test|times|trap|type|typeset|ulimit|umask|unalias|unset)(?=$|[)\s;|&])/,lookbehind:!0,alias:"class-name"},boolean:{pattern:/(^|[\s;|&]|[<>]\()(?:false|true)(?=$|[)\s;|&])/,lookbehind:!0},"file-descriptor":{pattern:/\B&\d\b/,alias:"important"},operator:{pattern:/\d?<>|>\||\+=|=[=~]?|!=?|<<[<-]?|[&\d]?>>|\d[<>]&?|[<>][&=]?|&[>&]?|\|[&|]?/,inside:{"file-descriptor":{pattern:/^\d/,alias:"important"}}},punctuation:/\$?\(\(?|\)\)?|\.\.|[{}[\];\\]/,number:{pattern:/(^|\s)(?:[1-9]\d*|0)(?:[.,]\d+)?\b/,lookbehind:!0}},n.inside=e.languages.bash;for(var a=["comment","function-name","for-or-select","assign-left","string","environment","function","keyword","builtin","boolean","file-descriptor","operator","punctuation","number"],o=r.variable[1].inside,i=0;i<a.length;i++)o[a[i]]=e.languages.bash[a[i]];e.languages.shell=e.languages.bash}(a),a.languages.clike={comment:[{pattern:/(^|[^\\])\/\*[\s\S]*?(?:\*\/|$)/,lookbehind:!0,greedy:!0},{pattern:/(^|[^\\:])\/\/.*/,lookbehind:!0,greedy:!0}],string:{pattern:/(["'])(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,greedy:!0},"class-name":{pattern:/(\b(?:class|extends|implements|instanceof|interface|new|trait)\s+|\bcatch\s+\()[\w.\\]+/i,lookbehind:!0,inside:{punctuation:/[.\\]/}},keyword:/\b(?:break|catch|continue|do|else|finally|for|function|if|in|instanceof|new|null|return|throw|try|while)\b/,boolean:/\b(?:false|true)\b/,function:/\b\w+(?=\()/,number:/\b0x[\da-f]+\b|(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:e[+-]?\d+)?/i,operator:/[<>]=?|[!=]=?=?|--?|\+\+?|&&?|\|\|?|[?*/~^%]/,punctuation:/[{}[\];(),.:]/},a.languages.c=a.languages.extend("clike",{comment:{pattern:/\/\/(?:[^\r\n\\]|\\(?:\r\n?|\n|(?![\r\n])))*|\/\*[\s\S]*?(?:\*\/|$)/,greedy:!0},string:{pattern:/"(?:\\(?:\r\n|[\s\S])|[^"\\\r\n])*"/,greedy:!0},"class-name":{pattern:/(\b(?:enum|struct)\s+(?:__attribute__\s*\(\([\s\S]*?\)\)\s*)?)\w+|\b[a-z]\w*_t\b/,lookbehind:!0},keyword:/\b(?:_Alignas|_Alignof|_Atomic|_Bool|_Complex|_Generic|_Imaginary|_Noreturn|_Static_assert|_Thread_local|__attribute__|asm|auto|break|case|char|const|continue|default|do|double|else|enum|extern|float|for|goto|if|inline|int|long|register|return|short|signed|sizeof|static|struct|switch|typedef|typeof|union|unsigned|void|volatile|while)\b/,function:/\b[a-z_]\w*(?=\s*\()/i,number:/(?:\b0x(?:[\da-f]+(?:\.[\da-f]*)?|\.[\da-f]+)(?:p[+-]?\d+)?|(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:e[+-]?\d+)?)[ful]{0,4}/i,operator:/>>=?|<<=?|->|([-+&|:])\1|[?:~]|[-+*/%&|^!=<>]=?/}),a.languages.insertBefore("c","string",{char:{pattern:/'(?:\\(?:\r\n|[\s\S])|[^'\\\r\n]){0,32}'/,greedy:!0}}),a.languages.insertBefore("c","string",{macro:{pattern:/(^[\t ]*)#\s*[a-z](?:[^\r\n\\/]|\/(?!\*)|\/\*(?:[^*]|\*(?!\/))*\*\/|\\(?:\r\n|[\s\S]))*/im,lookbehind:!0,greedy:!0,alias:"property",inside:{string:[{pattern:/^(#\s*include\s*)<[^>]+>/,lookbehind:!0},a.languages.c.string],char:a.languages.c.char,comment:a.languages.c.comment,"macro-name":[{pattern:/(^#\s*define\s+)\w+\b(?!\()/i,lookbehind:!0},{pattern:/(^#\s*define\s+)\w+\b(?=\()/i,lookbehind:!0,alias:"function"}],directive:{pattern:/^(#\s*)[a-z]+/,lookbehind:!0,alias:"keyword"},"directive-hash":/^#/,punctuation:/##|\\(?=[\r\n])/,expression:{pattern:/\S[\s\S]*/,inside:a.languages.c}}}}),a.languages.insertBefore("c","function",{constant:/\b(?:EOF|NULL|SEEK_CUR|SEEK_END|SEEK_SET|__DATE__|__FILE__|__LINE__|__TIMESTAMP__|__TIME__|__func__|stderr|stdin|stdout)\b/}),delete a.languages.c.boolean,function(e){var t=/\b(?:alignas|alignof|asm|auto|bool|break|case|catch|char|char16_t|char32_t|char8_t|class|co_await|co_return|co_yield|compl|concept|const|const_cast|consteval|constexpr|constinit|continue|decltype|default|delete|do|double|dynamic_cast|else|enum|explicit|export|extern|final|float|for|friend|goto|if|import|inline|int|int16_t|int32_t|int64_t|int8_t|long|module|mutable|namespace|new|noexcept|nullptr|operator|override|private|protected|public|register|reinterpret_cast|requires|return|short|signed|sizeof|static|static_assert|static_cast|struct|switch|template|this|thread_local|throw|try|typedef|typeid|typename|uint16_t|uint32_t|uint64_t|uint8_t|union|unsigned|using|virtual|void|volatile|wchar_t|while)\b/,n=/\b(?!<keyword>)\w+(?:\s*\.\s*\w+)*\b/.source.replace(/<keyword>/g,(function(){return t.source}));e.languages.cpp=e.languages.extend("c",{"class-name":[{pattern:RegExp(/(\b(?:class|concept|enum|struct|typename)\s+)(?!<keyword>)\w+/.source.replace(/<keyword>/g,(function(){return t.source}))),lookbehind:!0},/\b[A-Z]\w*(?=\s*::\s*\w+\s*\()/,/\b[A-Z_]\w*(?=\s*::\s*~\w+\s*\()/i,/\b\w+(?=\s*<(?:[^<>]|<(?:[^<>]|<[^<>]*>)*>)*>\s*::\s*\w+\s*\()/],keyword:t,number:{pattern:/(?:\b0b[01']+|\b0x(?:[\da-f']+(?:\.[\da-f']*)?|\.[\da-f']+)(?:p[+-]?[\d']+)?|(?:\b[\d']+(?:\.[\d']*)?|\B\.[\d']+)(?:e[+-]?[\d']+)?)[ful]{0,4}/i,greedy:!0},operator:/>>=?|<<=?|->|--|\+\+|&&|\|\||[?:~]|<=>|[-+*/%&|^!=<>]=?|\b(?:and|and_eq|bitand|bitor|not|not_eq|or|or_eq|xor|xor_eq)\b/,boolean:/\b(?:false|true)\b/}),e.languages.insertBefore("cpp","string",{module:{pattern:RegExp(/(\b(?:import|module)\s+)/.source+"(?:"+/"(?:\\(?:\r\n|[\s\S])|[^"\\\r\n])*"|<[^<>\r\n]*>/.source+"|"+/<mod-name>(?:\s*:\s*<mod-name>)?|:\s*<mod-name>/.source.replace(/<mod-name>/g,(function(){return n}))+")"),lookbehind:!0,greedy:!0,inside:{string:/^[<"][\s\S]+/,operator:/:/,punctuation:/\./}},"raw-string":{pattern:/R"([^()\\ ]{0,16})\([\s\S]*?\)\1"/,alias:"string",greedy:!0}}),e.languages.insertBefore("cpp","keyword",{"generic-function":{pattern:/\b(?!operator\b)[a-z_]\w*\s*<(?:[^<>]|<[^<>]*>)*>(?=\s*\()/i,inside:{function:/^\w+/,generic:{pattern:/<[\s\S]+/,alias:"class-name",inside:e.languages.cpp}}}}),e.languages.insertBefore("cpp","operator",{"double-colon":{pattern:/::/,alias:"punctuation"}}),e.languages.insertBefore("cpp","class-name",{"base-clause":{pattern:/(\b(?:class|struct)\s+\w+\s*:\s*)[^;{}"'\s]+(?:\s+[^;{}"'\s]+)*(?=\s*[;{])/,lookbehind:!0,greedy:!0,inside:e.languages.extend("cpp",{})}}),e.languages.insertBefore("inside","double-colon",{"class-name":/\b[a-z_]\w*\b(?!\s*::)/i},e.languages.cpp["base-clause"])}(a),function(e){var t=/(?:"(?:\\(?:\r\n|[\s\S])|[^"\\\r\n])*"|'(?:\\(?:\r\n|[\s\S])|[^'\\\r\n])*')/;e.languages.css={comment:/\/\*[\s\S]*?\*\//,atrule:{pattern:/@[\w-](?:[^;{\s]|\s+(?![\s{]))*(?:;|(?=\s*\{))/,inside:{rule:/^@[\w-]+/,"selector-function-argument":{pattern:/(\bselector\s*\(\s*(?![\s)]))(?:[^()\s]|\s+(?![\s)])|\((?:[^()]|\([^()]*\))*\))+(?=\s*\))/,lookbehind:!0,alias:"selector"},keyword:{pattern:/(^|[^\w-])(?:and|not|only|or)(?![\w-])/,lookbehind:!0}}},url:{pattern:RegExp("\\burl\\((?:"+t.source+"|"+/(?:[^\\\r\n()"']|\\[\s\S])*/.source+")\\)","i"),greedy:!0,inside:{function:/^url/i,punctuation:/^\(|\)$/,string:{pattern:RegExp("^"+t.source+"$"),alias:"url"}}},selector:{pattern:RegExp("(^|[{}\\s])[^{}\\s](?:[^{};\"'\\s]|\\s+(?![\\s{])|"+t.source+")*(?=\\s*\\{)"),lookbehind:!0},string:{pattern:t,greedy:!0},property:{pattern:/(^|[^-\w\xA0-\uFFFF])(?!\s)[-_a-z\xA0-\uFFFF](?:(?!\s)[-\w\xA0-\uFFFF])*(?=\s*:)/i,lookbehind:!0},important:/!important\b/i,function:{pattern:/(^|[^-a-z0-9])[-a-z0-9]+(?=\()/i,lookbehind:!0},punctuation:/[(){};:,]/},e.languages.css.atrule.inside.rest=e.languages.css;var n=e.languages.markup;n&&(n.tag.addInlined("style","css"),n.tag.addAttribute("style","css"))}(a),function(e){var t,n=/("|')(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/;e.languages.css.selector={pattern:e.languages.css.selector.pattern,lookbehind:!0,inside:t={"pseudo-element":/:(?:after|before|first-letter|first-line|selection)|::[-\w]+/,"pseudo-class":/:[-\w]+/,class:/\.[-\w]+/,id:/#[-\w]+/,attribute:{pattern:RegExp("\\[(?:[^[\\]\"']|"+n.source+")*\\]"),greedy:!0,inside:{punctuation:/^\[|\]$/,"case-sensitivity":{pattern:/(\s)[si]$/i,lookbehind:!0,alias:"keyword"},namespace:{pattern:/^(\s*)(?:(?!\s)[-*\w\xA0-\uFFFF])*\|(?!=)/,lookbehind:!0,inside:{punctuation:/\|$/}},"attr-name":{pattern:/^(\s*)(?:(?!\s)[-\w\xA0-\uFFFF])+/,lookbehind:!0},"attr-value":[n,{pattern:/(=\s*)(?:(?!\s)[-\w\xA0-\uFFFF])+(?=\s*$)/,lookbehind:!0}],operator:/[|~*^$]?=/}},"n-th":[{pattern:/(\(\s*)[+-]?\d*[\dn](?:\s*[+-]\s*\d+)?(?=\s*\))/,lookbehind:!0,inside:{number:/[\dn]+/,operator:/[+-]/}},{pattern:/(\(\s*)(?:even|odd)(?=\s*\))/i,lookbehind:!0}],combinator:/>|\+|~|\|\|/,punctuation:/[(),]/}},e.languages.css.atrule.inside["selector-function-argument"].inside=t,e.languages.insertBefore("css","property",{variable:{pattern:/(^|[^-\w\xA0-\uFFFF])--(?!\s)[-_a-z\xA0-\uFFFF](?:(?!\s)[-\w\xA0-\uFFFF])*/i,lookbehind:!0}});var r={pattern:/(\b\d+)(?:%|[a-z]+(?![\w-]))/,lookbehind:!0},a={pattern:/(^|[^\w.-])-?(?:\d+(?:\.\d+)?|\.\d+)/,lookbehind:!0};e.languages.insertBefore("css","function",{operator:{pattern:/(\s)[+\-*\/](?=\s)/,lookbehind:!0},hexcode:{pattern:/\B#[\da-f]{3,8}\b/i,alias:"color"},color:[{pattern:/(^|[^\w-])(?:AliceBlue|AntiqueWhite|Aqua|Aquamarine|Azure|Beige|Bisque|Black|BlanchedAlmond|Blue|BlueViolet|Brown|BurlyWood|CadetBlue|Chartreuse|Chocolate|Coral|CornflowerBlue|Cornsilk|Crimson|Cyan|DarkBlue|DarkCyan|DarkGoldenRod|DarkGr[ae]y|DarkGreen|DarkKhaki|DarkMagenta|DarkOliveGreen|DarkOrange|DarkOrchid|DarkRed|DarkSalmon|DarkSeaGreen|DarkSlateBlue|DarkSlateGr[ae]y|DarkTurquoise|DarkViolet|DeepPink|DeepSkyBlue|DimGr[ae]y|DodgerBlue|FireBrick|FloralWhite|ForestGreen|Fuchsia|Gainsboro|GhostWhite|Gold|GoldenRod|Gr[ae]y|Green|GreenYellow|HoneyDew|HotPink|IndianRed|Indigo|Ivory|Khaki|Lavender|LavenderBlush|LawnGreen|LemonChiffon|LightBlue|LightCoral|LightCyan|LightGoldenRodYellow|LightGr[ae]y|LightGreen|LightPink|LightSalmon|LightSeaGreen|LightSkyBlue|LightSlateGr[ae]y|LightSteelBlue|LightYellow|Lime|LimeGreen|Linen|Magenta|Maroon|MediumAquaMarine|MediumBlue|MediumOrchid|MediumPurple|MediumSeaGreen|MediumSlateBlue|MediumSpringGreen|MediumTurquoise|MediumVioletRed|MidnightBlue|MintCream|MistyRose|Moccasin|NavajoWhite|Navy|OldLace|Olive|OliveDrab|Orange|OrangeRed|Orchid|PaleGoldenRod|PaleGreen|PaleTurquoise|PaleVioletRed|PapayaWhip|PeachPuff|Peru|Pink|Plum|PowderBlue|Purple|Red|RosyBrown|RoyalBlue|SaddleBrown|Salmon|SandyBrown|SeaGreen|SeaShell|Sienna|Silver|SkyBlue|SlateBlue|SlateGr[ae]y|Snow|SpringGreen|SteelBlue|Tan|Teal|Thistle|Tomato|Transparent|Turquoise|Violet|Wheat|White|WhiteSmoke|Yellow|YellowGreen)(?![\w-])/i,lookbehind:!0},{pattern:/\b(?:hsl|rgb)\(\s*\d{1,3}\s*,\s*\d{1,3}%?\s*,\s*\d{1,3}%?\s*\)\B|\b(?:hsl|rgb)a\(\s*\d{1,3}\s*,\s*\d{1,3}%?\s*,\s*\d{1,3}%?\s*,\s*(?:0|0?\.\d+|1)\s*\)\B/i,inside:{unit:r,number:a,function:/[\w-]+(?=\()/,punctuation:/[(),]/}}],entity:/\\[\da-f]{1,8}/i,unit:r,number:a})}(a),a.languages.javascript=a.languages.extend("clike",{"class-name":[a.languages.clike["class-name"],{pattern:/(^|[^$\w\xA0-\uFFFF])(?!\s)[_$A-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\.(?:constructor|prototype))/,lookbehind:!0}],keyword:[{pattern:/((?:^|\})\s*)catch\b/,lookbehind:!0},{pattern:/(^|[^.]|\.\.\.\s*)\b(?:as|assert(?=\s*\{)|async(?=\s*(?:function\b|\(|[$\w\xA0-\uFFFF]|$))|await|break|case|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally(?=\s*(?:\{|$))|for|from(?=\s*(?:['"]|$))|function|(?:get|set)(?=\s*(?:[#\[$\w\xA0-\uFFFF]|$))|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|static|super|switch|this|throw|try|typeof|undefined|var|void|while|with|yield)\b/,lookbehind:!0}],function:/#?(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*(?:\.\s*(?:apply|bind|call)\s*)?\()/,number:{pattern:RegExp(/(^|[^\w$])/.source+"(?:"+/NaN|Infinity/.source+"|"+/0[bB][01]+(?:_[01]+)*n?/.source+"|"+/0[oO][0-7]+(?:_[0-7]+)*n?/.source+"|"+/0[xX][\dA-Fa-f]+(?:_[\dA-Fa-f]+)*n?/.source+"|"+/\d+(?:_\d+)*n/.source+"|"+/(?:\d+(?:_\d+)*(?:\.(?:\d+(?:_\d+)*)?)?|\.\d+(?:_\d+)*)(?:[Ee][+-]?\d+(?:_\d+)*)?/.source+")"+/(?![\w$])/.source),lookbehind:!0},operator:/--|\+\+|\*\*=?|=>|&&=?|\|\|=?|[!=]==|<<=?|>>>?=?|[-+*/%&|^!=<>]=?|\.{3}|\?\?=?|\?\.?|[~:]/}),a.languages.javascript["class-name"][0].pattern=/(\b(?:class|extends|implements|instanceof|interface|new)\s+)[\w.\\]+/,a.languages.insertBefore("javascript","keyword",{regex:{pattern:/((?:^|[^$\w\xA0-\uFFFF."'\])\s]|\b(?:return|yield))\s*)\/(?:\[(?:[^\]\\\r\n]|\\.)*\]|\\.|[^/\\\[\r\n])+\/[dgimyus]{0,7}(?=(?:\s|\/\*(?:[^*]|\*(?!\/))*\*\/)*(?:$|[\r\n,.;:})\]]|\/\/))/,lookbehind:!0,greedy:!0,inside:{"regex-source":{pattern:/^(\/)[\s\S]+(?=\/[a-z]*$)/,lookbehind:!0,alias:"language-regex",inside:a.languages.regex},"regex-delimiter":/^\/|\/$/,"regex-flags":/^[a-z]+$/}},"function-variable":{pattern:/#?(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*[=:]\s*(?:async\s*)?(?:\bfunction\b|(?:\((?:[^()]|\([^()]*\))*\)|(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*)\s*=>))/,alias:"function"},parameter:[{pattern:/(function(?:\s+(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*)?\s*\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\))/,lookbehind:!0,inside:a.languages.javascript},{pattern:/(^|[^$\w\xA0-\uFFFF])(?!\s)[_$a-z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*=>)/i,lookbehind:!0,inside:a.languages.javascript},{pattern:/(\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\)\s*=>)/,lookbehind:!0,inside:a.languages.javascript},{pattern:/((?:\b|\s|^)(?!(?:as|async|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally|for|from|function|get|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|set|static|super|switch|this|throw|try|typeof|undefined|var|void|while|with|yield)(?![$\w\xA0-\uFFFF]))(?:(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*\s*)\(\s*|\]\s*\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\)\s*\{)/,lookbehind:!0,inside:a.languages.javascript}],constant:/\b[A-Z](?:[A-Z_]|\dx?)*\b/}),a.languages.insertBefore("javascript","string",{hashbang:{pattern:/^#!.*/,greedy:!0,alias:"comment"},"template-string":{pattern:/`(?:\\[\s\S]|\$\{(?:[^{}]|\{(?:[^{}]|\{[^}]*\})*\})+\}|(?!\$\{)[^\\`])*`/,greedy:!0,inside:{"template-punctuation":{pattern:/^`|`$/,alias:"string"},interpolation:{pattern:/((?:^|[^\\])(?:\\{2})*)\$\{(?:[^{}]|\{(?:[^{}]|\{[^}]*\})*\})+\}/,lookbehind:!0,inside:{"interpolation-punctuation":{pattern:/^\$\{|\}$/,alias:"punctuation"},rest:a.languages.javascript}},string:/[\s\S]+/}},"string-property":{pattern:/((?:^|[,{])[ \t]*)(["'])(?:\\(?:\r\n|[\s\S])|(?!\2)[^\\\r\n])*\2(?=\s*:)/m,lookbehind:!0,greedy:!0,alias:"property"}}),a.languages.insertBefore("javascript","operator",{"literal-property":{pattern:/((?:^|[,{])[ \t]*)(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*:)/m,lookbehind:!0,alias:"property"}}),a.languages.markup&&(a.languages.markup.tag.addInlined("script","javascript"),a.languages.markup.tag.addAttribute(/on(?:abort|blur|change|click|composition(?:end|start|update)|dblclick|error|focus(?:in|out)?|key(?:down|up)|load|mouse(?:down|enter|leave|move|out|over|up)|reset|resize|scroll|select|slotchange|submit|unload|wheel)/.source,"javascript")),a.languages.js=a.languages.javascript,function(e){var t=/#(?!\{).+/,n={pattern:/#\{[^}]+\}/,alias:"variable"};e.languages.coffeescript=e.languages.extend("javascript",{comment:t,string:[{pattern:/'(?:\\[\s\S]|[^\\'])*'/,greedy:!0},{pattern:/"(?:\\[\s\S]|[^\\"])*"/,greedy:!0,inside:{interpolation:n}}],keyword:/\b(?:and|break|by|catch|class|continue|debugger|delete|do|each|else|extend|extends|false|finally|for|if|in|instanceof|is|isnt|let|loop|namespace|new|no|not|null|of|off|on|or|own|return|super|switch|then|this|throw|true|try|typeof|undefined|unless|until|when|while|window|with|yes|yield)\b/,"class-member":{pattern:/@(?!\d)\w+/,alias:"variable"}}),e.languages.insertBefore("coffeescript","comment",{"multiline-comment":{pattern:/###[\s\S]+?###/,alias:"comment"},"block-regex":{pattern:/\/{3}[\s\S]*?\/{3}/,alias:"regex",inside:{comment:t,interpolation:n}}}),e.languages.insertBefore("coffeescript","string",{"inline-javascript":{pattern:/`(?:\\[\s\S]|[^\\`])*`/,inside:{delimiter:{pattern:/^`|`$/,alias:"punctuation"},script:{pattern:/[\s\S]+/,alias:"language-javascript",inside:e.languages.javascript}}},"multiline-string":[{pattern:/'''[\s\S]*?'''/,greedy:!0,alias:"string"},{pattern:/"""[\s\S]*?"""/,greedy:!0,alias:"string",inside:{interpolation:n}}]}),e.languages.insertBefore("coffeescript","keyword",{property:/(?!\d)\w+(?=\s*:(?!:))/}),delete e.languages.coffeescript["template-string"],e.languages.coffee=e.languages.coffeescript}(a),function(e){var t=/[*&][^\s[\]{},]+/,n=/!(?:<[\w\-%#;/?:@&=+$,.!~*'()[\]]+>|(?:[a-zA-Z\d-]*!)?[\w\-%#;/?:@&=+$.~*'()]+)?/,r="(?:"+n.source+"(?:[ \t]+"+t.source+")?|"+t.source+"(?:[ \t]+"+n.source+")?)",a=/(?:[^\s\x00-\x08\x0e-\x1f!"#%&'*,\-:>?@[\]`{|}\x7f-\x84\x86-\x9f\ud800-\udfff\ufffe\uffff]|[?:-]<PLAIN>)(?:[ \t]*(?:(?![#:])<PLAIN>|:<PLAIN>))*/.source.replace(/<PLAIN>/g,(function(){return/[^\s\x00-\x08\x0e-\x1f,[\]{}\x7f-\x84\x86-\x9f\ud800-\udfff\ufffe\uffff]/.source})),o=/"(?:[^"\\\r\n]|\\.)*"|'(?:[^'\\\r\n]|\\.)*'/.source;function i(e,t){t=(t||"").replace(/m/g,"")+"m";var n=/([:\-,[{]\s*(?:\s<<prop>>[ \t]+)?)(?:<<value>>)(?=[ \t]*(?:$|,|\]|\}|(?:[\r\n]\s*)?#))/.source.replace(/<<prop>>/g,(function(){return r})).replace(/<<value>>/g,(function(){return e}));return RegExp(n,t)}e.languages.yaml={scalar:{pattern:RegExp(/([\-:]\s*(?:\s<<prop>>[ \t]+)?[|>])[ \t]*(?:((?:\r?\n|\r)[ \t]+)\S[^\r\n]*(?:\2[^\r\n]+)*)/.source.replace(/<<prop>>/g,(function(){return r}))),lookbehind:!0,alias:"string"},comment:/#.*/,key:{pattern:RegExp(/((?:^|[:\-,[{\r\n?])[ \t]*(?:<<prop>>[ \t]+)?)<<key>>(?=\s*:\s)/.source.replace(/<<prop>>/g,(function(){return r})).replace(/<<key>>/g,(function(){return"(?:"+a+"|"+o+")"}))),lookbehind:!0,greedy:!0,alias:"atrule"},directive:{pattern:/(^[ \t]*)%.+/m,lookbehind:!0,alias:"important"},datetime:{pattern:i(/\d{4}-\d\d?-\d\d?(?:[tT]|[ \t]+)\d\d?:\d{2}:\d{2}(?:\.\d*)?(?:[ \t]*(?:Z|[-+]\d\d?(?::\d{2})?))?|\d{4}-\d{2}-\d{2}|\d\d?:\d{2}(?::\d{2}(?:\.\d*)?)?/.source),lookbehind:!0,alias:"number"},boolean:{pattern:i(/false|true/.source,"i"),lookbehind:!0,alias:"important"},null:{pattern:i(/null|~/.source,"i"),lookbehind:!0,alias:"important"},string:{pattern:i(o),lookbehind:!0,greedy:!0},number:{pattern:i(/[+-]?(?:0x[\da-f]+|0o[0-7]+|(?:\d+(?:\.\d*)?|\.\d+)(?:e[+-]?\d+)?|\.inf|\.nan)/.source,"i"),lookbehind:!0},tag:n,important:t,punctuation:/---|[:[\]{}\-,|>?]|\.\.\./},e.languages.yml=e.languages.yaml}(a),function(e){var t=/(?:\\.|[^\\\n\r]|(?:\n|\r\n?)(?![\r\n]))/.source;function n(e){return e=e.replace(/<inner>/g,(function(){return t})),RegExp(/((?:^|[^\\])(?:\\{2})*)/.source+"(?:"+e+")")}var r=/(?:\\.|``(?:[^`\r\n]|`(?!`))+``|`[^`\r\n]+`|[^\\|\r\n`])+/.source,a=/\|?__(?:\|__)+\|?(?:(?:\n|\r\n?)|(?![\s\S]))/.source.replace(/__/g,(function(){return r})),o=/\|?[ \t]*:?-{3,}:?[ \t]*(?:\|[ \t]*:?-{3,}:?[ \t]*)+\|?(?:\n|\r\n?)/.source;e.languages.markdown=e.languages.extend("markup",{}),e.languages.insertBefore("markdown","prolog",{"front-matter-block":{pattern:/(^(?:\s*[\r\n])?)---(?!.)[\s\S]*?[\r\n]---(?!.)/,lookbehind:!0,greedy:!0,inside:{punctuation:/^---|---$/,"front-matter":{pattern:/\S+(?:\s+\S+)*/,alias:["yaml","language-yaml"],inside:e.languages.yaml}}},blockquote:{pattern:/^>(?:[\t ]*>)*/m,alias:"punctuation"},table:{pattern:RegExp("^"+a+o+"(?:"+a+")*","m"),inside:{"table-data-rows":{pattern:RegExp("^("+a+o+")(?:"+a+")*$"),lookbehind:!0,inside:{"table-data":{pattern:RegExp(r),inside:e.languages.markdown},punctuation:/\|/}},"table-line":{pattern:RegExp("^("+a+")"+o+"$"),lookbehind:!0,inside:{punctuation:/\||:?-{3,}:?/}},"table-header-row":{pattern:RegExp("^"+a+"$"),inside:{"table-header":{pattern:RegExp(r),alias:"important",inside:e.languages.markdown},punctuation:/\|/}}}},code:[{pattern:/((?:^|\n)[ \t]*\n|(?:^|\r\n?)[ \t]*\r\n?)(?: {4}|\t).+(?:(?:\n|\r\n?)(?: {4}|\t).+)*/,lookbehind:!0,alias:"keyword"},{pattern:/^```[\s\S]*?^```$/m,greedy:!0,inside:{"code-block":{pattern:/^(```.*(?:\n|\r\n?))[\s\S]+?(?=(?:\n|\r\n?)^```$)/m,lookbehind:!0},"code-language":{pattern:/^(```).+/,lookbehind:!0},punctuation:/```/}}],title:[{pattern:/\S.*(?:\n|\r\n?)(?:==+|--+)(?=[ \t]*$)/m,alias:"important",inside:{punctuation:/==+$|--+$/}},{pattern:/(^\s*)#.+/m,lookbehind:!0,alias:"important",inside:{punctuation:/^#+|#+$/}}],hr:{pattern:/(^\s*)([*-])(?:[\t ]*\2){2,}(?=\s*$)/m,lookbehind:!0,alias:"punctuation"},list:{pattern:/(^\s*)(?:[*+-]|\d+\.)(?=[\t ].)/m,lookbehind:!0,alias:"punctuation"},"url-reference":{pattern:/!?\[[^\]]+\]:[\t ]+(?:\S+|<(?:\\.|[^>\\])+>)(?:[\t ]+(?:"(?:\\.|[^"\\])*"|'(?:\\.|[^'\\])*'|\((?:\\.|[^)\\])*\)))?/,inside:{variable:{pattern:/^(!?\[)[^\]]+/,lookbehind:!0},string:/(?:"(?:\\.|[^"\\])*"|'(?:\\.|[^'\\])*'|\((?:\\.|[^)\\])*\))$/,punctuation:/^[\[\]!:]|[<>]/},alias:"url"},bold:{pattern:n(/\b__(?:(?!_)<inner>|_(?:(?!_)<inner>)+_)+__\b|\*\*(?:(?!\*)<inner>|\*(?:(?!\*)<inner>)+\*)+\*\*/.source),lookbehind:!0,greedy:!0,inside:{content:{pattern:/(^..)[\s\S]+(?=..$)/,lookbehind:!0,inside:{}},punctuation:/\*\*|__/}},italic:{pattern:n(/\b_(?:(?!_)<inner>|__(?:(?!_)<inner>)+__)+_\b|\*(?:(?!\*)<inner>|\*\*(?:(?!\*)<inner>)+\*\*)+\*/.source),lookbehind:!0,greedy:!0,inside:{content:{pattern:/(^.)[\s\S]+(?=.$)/,lookbehind:!0,inside:{}},punctuation:/[*_]/}},strike:{pattern:n(/(~~?)(?:(?!~)<inner>)+\2/.source),lookbehind:!0,greedy:!0,inside:{content:{pattern:/(^~~?)[\s\S]+(?=\1$)/,lookbehind:!0,inside:{}},punctuation:/~~?/}},"code-snippet":{pattern:/(^|[^\\`])(?:``[^`\r\n]+(?:`[^`\r\n]+)*``(?!`)|`[^`\r\n]+`(?!`))/,lookbehind:!0,greedy:!0,alias:["code","keyword"]},url:{pattern:n(/!?\[(?:(?!\])<inner>)+\](?:\([^\s)]+(?:[\t ]+"(?:\\.|[^"\\])*")?\)|[ \t]?\[(?:(?!\])<inner>)+\])/.source),lookbehind:!0,greedy:!0,inside:{operator:/^!/,content:{pattern:/(^\[)[^\]]+(?=\])/,lookbehind:!0,inside:{}},variable:{pattern:/(^\][ \t]?\[)[^\]]+(?=\]$)/,lookbehind:!0},url:{pattern:/(^\]\()[^\s)]+/,lookbehind:!0},string:{pattern:/(^[ \t]+)"(?:\\.|[^"\\])*"(?=\)$)/,lookbehind:!0}}}}),["url","bold","italic","strike"].forEach((function(t){["url","bold","italic","strike","code-snippet"].forEach((function(n){t!==n&&(e.languages.markdown[t].inside.content.inside[n]=e.languages.markdown[n])}))})),e.hooks.add("after-tokenize",(function(e){"markdown"!==e.language&&"md"!==e.language||function e(t){if(t&&"string"!=typeof t)for(var n=0,r=t.length;n<r;n++){var a=t[n];if("code"===a.type){var o=a.content[1],i=a.content[3];if(o&&i&&"code-language"===o.type&&"code-block"===i.type&&"string"==typeof o.content){var l=o.content.replace(/\b#/g,"sharp").replace(/\b\+\+/g,"pp"),s="language-"+(l=(/[a-z][\w-]*/i.exec(l)||[""])[0].toLowerCase());i.alias?"string"==typeof i.alias?i.alias=[i.alias,s]:i.alias.push(s):i.alias=[s]}}else e(a.content)}}(e.tokens)})),e.hooks.add("wrap",(function(t){if("code-block"===t.type){for(var n="",r=0,a=t.classes.length;r<a;r++){var o=t.classes[r],u=/language-(.+)/.exec(o);if(u){n=u[1];break}}var c,d=e.languages[n];if(d)t.content=e.highlight((c=t.content,c.replace(i,"").replace(/&(\w{1,8}|#x?[\da-f]{1,8});/gi,(function(e,t){var n;if("#"===(t=t.toLowerCase())[0])return n="x"===t[1]?parseInt(t.slice(2),16):Number(t.slice(1)),s(n);var r=l[t];return r||e}))),d,n);else if(n&&"none"!==n&&e.plugins.autoloader){var f="md-"+(new Date).valueOf()+"-"+Math.floor(1e16*Math.random());t.attributes.id=f,e.plugins.autoloader.loadLanguages(n,(function(){var t=document.getElementById(f);t&&(t.innerHTML=e.highlight(t.textContent,e.languages[n],n))}))}}}));var i=RegExp(e.languages.markup.tag.pattern.source,"gi"),l={amp:"&",lt:"<",gt:">",quot:'"'},s=String.fromCodePoint||String.fromCharCode;e.languages.md=e.languages.markdown}(a),a.languages.graphql={comment:/#.*/,description:{pattern:/(?:"""(?:[^"]|(?!""")")*"""|"(?:\\.|[^\\"\r\n])*")(?=\s*[a-z_])/i,greedy:!0,alias:"string",inside:{"language-markdown":{pattern:/(^"(?:"")?)(?!\1)[\s\S]+(?=\1$)/,lookbehind:!0,inside:a.languages.markdown}}},string:{pattern:/"""(?:[^"]|(?!""")")*"""|"(?:\\.|[^\\"\r\n])*"/,greedy:!0},number:/(?:\B-|\b)\d+(?:\.\d+)?(?:e[+-]?\d+)?\b/i,boolean:/\b(?:false|true)\b/,variable:/\$[a-z_]\w*/i,directive:{pattern:/@[a-z_]\w*/i,alias:"function"},"attr-name":{pattern:/\b[a-z_]\w*(?=\s*(?:\((?:[^()"]|"(?:\\.|[^\\"\r\n])*")*\))?:)/i,greedy:!0},"atom-input":{pattern:/\b[A-Z]\w*Input\b/,alias:"class-name"},scalar:/\b(?:Boolean|Float|ID|Int|String)\b/,constant:/\b[A-Z][A-Z_\d]*\b/,"class-name":{pattern:/(\b(?:enum|implements|interface|on|scalar|type|union)\s+|&\s*|:\s*|\[)[A-Z_]\w*/,lookbehind:!0},fragment:{pattern:/(\bfragment\s+|\.{3}\s*(?!on\b))[a-zA-Z_]\w*/,lookbehind:!0,alias:"function"},"definition-mutation":{pattern:/(\bmutation\s+)[a-zA-Z_]\w*/,lookbehind:!0,alias:"function"},"definition-query":{pattern:/(\bquery\s+)[a-zA-Z_]\w*/,lookbehind:!0,alias:"function"},keyword:/\b(?:directive|enum|extend|fragment|implements|input|interface|mutation|on|query|repeatable|scalar|schema|subscription|type|union)\b/,operator:/[!=|&]|\.{3}/,"property-query":/\w+(?=\s*\()/,object:/\w+(?=\s*\{)/,punctuation:/[!(){}\[\]:=,]/,property:/\w+/},a.hooks.add("after-tokenize",(function(e){if("graphql"===e.language)for(var t=e.tokens.filter((function(e){return"string"!=typeof e&&"comment"!==e.type&&"scalar"!==e.type})),n=0;n<t.length;){var r=t[n++];if("keyword"===r.type&&"mutation"===r.content){var a=[];if(d(["definition-mutation","punctuation"])&&"("===c(1).content){n+=2;var o=f(/^\($/,/^\)$/);if(-1===o)continue;for(;n<o;n++){var i=c(0);"variable"===i.type&&(p(i,"variable-input"),a.push(i.content))}n=o+1}if(d(["punctuation","property-query"])&&"{"===c(0).content&&(n++,p(c(0),"property-mutation"),a.length>0)){var l=f(/^\{$/,/^\}$/);if(-1===l)continue;for(var s=n;s<l;s++){var u=t[s];"variable"===u.type&&a.indexOf(u.content)>=0&&p(u,"variable-input")}}}}function c(e){return t[n+e]}function d(e,t){t=t||0;for(var n=0;n<e.length;n++){var r=c(n+t);if(!r||r.type!==e[n])return!1}return!0}function f(e,r){for(var a=1,o=n;o<t.length;o++){var i=t[o],l=i.content;if("punctuation"===i.type&&"string"==typeof l)if(e.test(l))a++;else if(r.test(l)&&0===--a)return o}return-1}function p(e,t){var n=e.alias;n?Array.isArray(n)||(e.alias=n=[n]):e.alias=n=[],n.push(t)}})),a.languages.sql={comment:{pattern:/(^|[^\\])(?:\/\*[\s\S]*?\*\/|(?:--|\/\/|#).*)/,lookbehind:!0},variable:[{pattern:/@(["'`])(?:\\[\s\S]|(?!\1)[^\\])+\1/,greedy:!0},/@[\w.$]+/],string:{pattern:/(^|[^@\\])("|')(?:\\[\s\S]|(?!\2)[^\\]|\2\2)*\2/,greedy:!0,lookbehind:!0},identifier:{pattern:/(^|[^@\\])`(?:\\[\s\S]|[^`\\]|``)*`/,greedy:!0,lookbehind:!0,inside:{punctuation:/^`|`$/}},function:/\b(?:AVG|COUNT|FIRST|FORMAT|LAST|LCASE|LEN|MAX|MID|MIN|MOD|NOW|ROUND|SUM|UCASE)(?=\s*\()/i,keyword:/\b(?:ACTION|ADD|AFTER|ALGORITHM|ALL|ALTER|ANALYZE|ANY|APPLY|AS|ASC|AUTHORIZATION|AUTO_INCREMENT|BACKUP|BDB|BEGIN|BERKELEYDB|BIGINT|BINARY|BIT|BLOB|BOOL|BOOLEAN|BREAK|BROWSE|BTREE|BULK|BY|CALL|CASCADED?|CASE|CHAIN|CHAR(?:ACTER|SET)?|CHECK(?:POINT)?|CLOSE|CLUSTERED|COALESCE|COLLATE|COLUMNS?|COMMENT|COMMIT(?:TED)?|COMPUTE|CONNECT|CONSISTENT|CONSTRAINT|CONTAINS(?:TABLE)?|CONTINUE|CONVERT|CREATE|CROSS|CURRENT(?:_DATE|_TIME|_TIMESTAMP|_USER)?|CURSOR|CYCLE|DATA(?:BASES?)?|DATE(?:TIME)?|DAY|DBCC|DEALLOCATE|DEC|DECIMAL|DECLARE|DEFAULT|DEFINER|DELAYED|DELETE|DELIMITERS?|DENY|DESC|DESCRIBE|DETERMINISTIC|DISABLE|DISCARD|DISK|DISTINCT|DISTINCTROW|DISTRIBUTED|DO|DOUBLE|DROP|DUMMY|DUMP(?:FILE)?|DUPLICATE|ELSE(?:IF)?|ENABLE|ENCLOSED|END|ENGINE|ENUM|ERRLVL|ERRORS|ESCAPED?|EXCEPT|EXEC(?:UTE)?|EXISTS|EXIT|EXPLAIN|EXTENDED|FETCH|FIELDS|FILE|FILLFACTOR|FIRST|FIXED|FLOAT|FOLLOWING|FOR(?: EACH ROW)?|FORCE|FOREIGN|FREETEXT(?:TABLE)?|FROM|FULL|FUNCTION|GEOMETRY(?:COLLECTION)?|GLOBAL|GOTO|GRANT|GROUP|HANDLER|HASH|HAVING|HOLDLOCK|HOUR|IDENTITY(?:COL|_INSERT)?|IF|IGNORE|IMPORT|INDEX|INFILE|INNER|INNODB|INOUT|INSERT|INT|INTEGER|INTERSECT|INTERVAL|INTO|INVOKER|ISOLATION|ITERATE|JOIN|KEYS?|KILL|LANGUAGE|LAST|LEAVE|LEFT|LEVEL|LIMIT|LINENO|LINES|LINESTRING|LOAD|LOCAL|LOCK|LONG(?:BLOB|TEXT)|LOOP|MATCH(?:ED)?|MEDIUM(?:BLOB|INT|TEXT)|MERGE|MIDDLEINT|MINUTE|MODE|MODIFIES|MODIFY|MONTH|MULTI(?:LINESTRING|POINT|POLYGON)|NATIONAL|NATURAL|NCHAR|NEXT|NO|NONCLUSTERED|NULLIF|NUMERIC|OFF?|OFFSETS?|ON|OPEN(?:DATASOURCE|QUERY|ROWSET)?|OPTIMIZE|OPTION(?:ALLY)?|ORDER|OUT(?:ER|FILE)?|OVER|PARTIAL|PARTITION|PERCENT|PIVOT|PLAN|POINT|POLYGON|PRECEDING|PRECISION|PREPARE|PREV|PRIMARY|PRINT|PRIVILEGES|PROC(?:EDURE)?|PUBLIC|PURGE|QUICK|RAISERROR|READS?|REAL|RECONFIGURE|REFERENCES|RELEASE|RENAME|REPEAT(?:ABLE)?|REPLACE|REPLICATION|REQUIRE|RESIGNAL|RESTORE|RESTRICT|RETURN(?:ING|S)?|REVOKE|RIGHT|ROLLBACK|ROUTINE|ROW(?:COUNT|GUIDCOL|S)?|RTREE|RULE|SAVE(?:POINT)?|SCHEMA|SECOND|SELECT|SERIAL(?:IZABLE)?|SESSION(?:_USER)?|SET(?:USER)?|SHARE|SHOW|SHUTDOWN|SIMPLE|SMALLINT|SNAPSHOT|SOME|SONAME|SQL|START(?:ING)?|STATISTICS|STATUS|STRIPED|SYSTEM_USER|TABLES?|TABLESPACE|TEMP(?:ORARY|TABLE)?|TERMINATED|TEXT(?:SIZE)?|THEN|TIME(?:STAMP)?|TINY(?:BLOB|INT|TEXT)|TOP?|TRAN(?:SACTIONS?)?|TRIGGER|TRUNCATE|TSEQUAL|TYPES?|UNBOUNDED|UNCOMMITTED|UNDEFINED|UNION|UNIQUE|UNLOCK|UNPIVOT|UNSIGNED|UPDATE(?:TEXT)?|USAGE|USE|USER|USING|VALUES?|VAR(?:BINARY|CHAR|CHARACTER|YING)|VIEW|WAITFOR|WARNINGS|WHEN|WHERE|WHILE|WITH(?: ROLLUP|IN)?|WORK|WRITE(?:TEXT)?|YEAR)\b/i,boolean:/\b(?:FALSE|NULL|TRUE)\b/i,number:/\b0x[\da-f]+\b|\b\d+(?:\.\d*)?|\B\.\d+\b/i,operator:/[-+*\/=%^~]|&&?|\|\|?|!=?|<(?:=>?|<|>)?|>[>=]?|\b(?:AND|BETWEEN|DIV|ILIKE|IN|IS|LIKE|NOT|OR|REGEXP|RLIKE|SOUNDS LIKE|XOR)\b/i,punctuation:/[;[\]()`,.]/},function(e){var t=e.languages.javascript["template-string"],n=t.pattern.source,r=t.inside.interpolation,a=r.inside["interpolation-punctuation"],o=r.pattern.source;function i(t,r){if(e.languages[t])return{pattern:RegExp("((?:"+r+")\\s*)"+n),lookbehind:!0,greedy:!0,inside:{"template-punctuation":{pattern:/^`|`$/,alias:"string"},"embedded-code":{pattern:/[\s\S]+/,alias:t}}}}function l(e,t){return"___"+t.toUpperCase()+"_"+e+"___"}function s(t,n,r){var a={code:t,grammar:n,language:r};return e.hooks.run("before-tokenize",a),a.tokens=e.tokenize(a.code,a.grammar),e.hooks.run("after-tokenize",a),a.tokens}function u(t){var n={};n["interpolation-punctuation"]=a;var o=e.tokenize(t,n);if(3===o.length){var i=[1,1];i.push.apply(i,s(o[1],e.languages.javascript,"javascript")),o.splice.apply(o,i)}return new e.Token("interpolation",o,r.alias,t)}function c(t,n,r){var a=e.tokenize(t,{interpolation:{pattern:RegExp(o),lookbehind:!0}}),i=0,c={},d=s(a.map((function(e){if("string"==typeof e)return e;for(var n,a=e.content;-1!==t.indexOf(n=l(i++,r)););return c[n]=a,n})).join(""),n,r),f=Object.keys(c);return i=0,function e(t){for(var n=0;n<t.length;n++){if(i>=f.length)return;var r=t[n];if("string"==typeof r||"string"==typeof r.content){var a=f[i],o="string"==typeof r?r:r.content,l=o.indexOf(a);if(-1!==l){++i;var s=o.substring(0,l),d=u(c[a]),p=o.substring(l+a.length),m=[];if(s&&m.push(s),m.push(d),p){var h=[p];e(h),m.push.apply(m,h)}"string"==typeof r?(t.splice.apply(t,[n,1].concat(m)),n+=m.length-1):r.content=m}}else{var g=r.content;Array.isArray(g)?e(g):e([g])}}}(d),new e.Token(r,d,"language-"+r,t)}e.languages.javascript["template-string"]=[i("css",/\b(?:styled(?:\([^)]*\))?(?:\s*\.\s*\w+(?:\([^)]*\))*)*|css(?:\s*\.\s*(?:global|resolve))?|createGlobalStyle|keyframes)/.source),i("html",/\bhtml|\.\s*(?:inner|outer)HTML\s*\+?=/.source),i("svg",/\bsvg/.source),i("markdown",/\b(?:markdown|md)/.source),i("graphql",/\b(?:gql|graphql(?:\s*\.\s*experimental)?)/.source),i("sql",/\bsql/.source),t].filter(Boolean);var d={javascript:!0,js:!0,typescript:!0,ts:!0,jsx:!0,tsx:!0};function f(e){return"string"==typeof e?e:Array.isArray(e)?e.map(f).join(""):f(e.content)}e.hooks.add("after-tokenize",(function(t){t.language in d&&function t(n){for(var r=0,a=n.length;r<a;r++){var o=n[r];if("string"!=typeof o){var i=o.content;if(Array.isArray(i))if("template-string"===o.type){var l=i[1];if(3===i.length&&"string"!=typeof l&&"embedded-code"===l.type){var s=f(l),u=l.alias,d=Array.isArray(u)?u[0]:u,p=e.languages[d];if(!p)continue;i[1]=c(s,p,d)}}else t(i);else"string"!=typeof i&&t([i])}}}(t.tokens)}))}(a),function(e){e.languages.typescript=e.languages.extend("javascript",{"class-name":{pattern:/(\b(?:class|extends|implements|instanceof|interface|new|type)\s+)(?!keyof\b)(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?:\s*<(?:[^<>]|<(?:[^<>]|<[^<>]*>)*>)*>)?/,lookbehind:!0,greedy:!0,inside:null},builtin:/\b(?:Array|Function|Promise|any|boolean|console|never|number|string|symbol|unknown)\b/}),e.languages.typescript.keyword.push(/\b(?:abstract|declare|is|keyof|readonly|require)\b/,/\b(?:asserts|infer|interface|module|namespace|type)\b(?=\s*(?:[{_$a-zA-Z\xA0-\uFFFF]|$))/,/\btype\b(?=\s*(?:[\{*]|$))/),delete e.languages.typescript.parameter,delete e.languages.typescript["literal-property"];var t=e.languages.extend("typescript",{});delete t["class-name"],e.languages.typescript["class-name"].inside=t,e.languages.insertBefore("typescript","function",{decorator:{pattern:/@[$\w\xA0-\uFFFF]+/,inside:{at:{pattern:/^@/,alias:"operator"},function:/^[\s\S]+/}},"generic-function":{pattern:/#?(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*\s*<(?:[^<>]|<(?:[^<>]|<[^<>]*>)*>)*>(?=\s*\()/,greedy:!0,inside:{function:/^#?(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*/,generic:{pattern:/<[\s\S]+/,alias:"class-name",inside:t}}}}),e.languages.ts=e.languages.typescript}(a),function(e){function t(e,t){return RegExp(e.replace(/<ID>/g,(function(){return/(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*/.source})),t)}e.languages.insertBefore("javascript","function-variable",{"method-variable":{pattern:RegExp("(\\.\\s*)"+e.languages.javascript["function-variable"].pattern.source),lookbehind:!0,alias:["function-variable","method","function","property-access"]}}),e.languages.insertBefore("javascript","function",{method:{pattern:RegExp("(\\.\\s*)"+e.languages.javascript.function.source),lookbehind:!0,alias:["function","property-access"]}}),e.languages.insertBefore("javascript","constant",{"known-class-name":[{pattern:/\b(?:(?:Float(?:32|64)|(?:Int|Uint)(?:8|16|32)|Uint8Clamped)?Array|ArrayBuffer|BigInt|Boolean|DataView|Date|Error|Function|Intl|JSON|(?:Weak)?(?:Map|Set)|Math|Number|Object|Promise|Proxy|Reflect|RegExp|String|Symbol|WebAssembly)\b/,alias:"class-name"},{pattern:/\b(?:[A-Z]\w*)Error\b/,alias:"class-name"}]}),e.languages.insertBefore("javascript","keyword",{imports:{pattern:t(/(\bimport\b\s*)(?:<ID>(?:\s*,\s*(?:\*\s*as\s+<ID>|\{[^{}]*\}))?|\*\s*as\s+<ID>|\{[^{}]*\})(?=\s*\bfrom\b)/.source),lookbehind:!0,inside:e.languages.javascript},exports:{pattern:t(/(\bexport\b\s*)(?:\*(?:\s*as\s+<ID>)?(?=\s*\bfrom\b)|\{[^{}]*\})/.source),lookbehind:!0,inside:e.languages.javascript}}),e.languages.javascript.keyword.unshift({pattern:/\b(?:as|default|export|from|import)\b/,alias:"module"},{pattern:/\b(?:await|break|catch|continue|do|else|finally|for|if|return|switch|throw|try|while|yield)\b/,alias:"control-flow"},{pattern:/\bnull\b/,alias:["null","nil"]},{pattern:/\bundefined\b/,alias:"nil"}),e.languages.insertBefore("javascript","operator",{spread:{pattern:/\.{3}/,alias:"operator"},arrow:{pattern:/=>/,alias:"operator"}}),e.languages.insertBefore("javascript","punctuation",{"property-access":{pattern:t(/(\.\s*)#?<ID>/.source),lookbehind:!0},"maybe-class-name":{pattern:/(^|[^$\w\xA0-\uFFFF])[A-Z][$\w\xA0-\uFFFF]+/,lookbehind:!0},dom:{pattern:/\b(?:document|(?:local|session)Storage|location|navigator|performance|window)\b/,alias:"variable"},console:{pattern:/\bconsole(?=\s*\.)/,alias:"class-name"}});for(var n=["function","function-variable","method","method-variable","property-access"],r=0;r<n.length;r++){var a=n[r],o=e.languages.javascript[a];"RegExp"===e.util.type(o)&&(o=e.languages.javascript[a]={pattern:o});var i=o.inside||{};o.inside=i,i["maybe-class-name"]=/^[A-Z][\s\S]*/}}(a),function(e){var t=e.util.clone(e.languages.javascript),n=/(?:\s|\/\/.*(?!.)|\/\*(?:[^*]|\*(?!\/))\*\/)/.source,r=/(?:\{(?:\{(?:\{[^{}]*\}|[^{}])*\}|[^{}])*\})/.source,a=/(?:\{<S>*\.{3}(?:[^{}]|<BRACES>)*\})/.source;function o(e,t){return e=e.replace(/<S>/g,(function(){return n})).replace(/<BRACES>/g,(function(){return r})).replace(/<SPREAD>/g,(function(){return a})),RegExp(e,t)}a=o(a).source,e.languages.jsx=e.languages.extend("markup",t),e.languages.jsx.tag.pattern=o(/<\/?(?:[\w.:-]+(?:<S>+(?:[\w.:$-]+(?:=(?:"(?:\\[\s\S]|[^\\"])*"|'(?:\\[\s\S]|[^\\'])*'|[^\s{'"/>=]+|<BRACES>))?|<SPREAD>))*<S>*\/?)?>/.source),e.languages.jsx.tag.inside.tag.pattern=/^<\/?[^\s>\/]*/,e.languages.jsx.tag.inside["attr-value"].pattern=/=(?!\{)(?:"(?:\\[\s\S]|[^\\"])*"|'(?:\\[\s\S]|[^\\'])*'|[^\s'">]+)/,e.languages.jsx.tag.inside.tag.inside["class-name"]=/^[A-Z]\w*(?:\.[A-Z]\w*)*$/,e.languages.jsx.tag.inside.comment=t.comment,e.languages.insertBefore("inside","attr-name",{spread:{pattern:o(/<SPREAD>/.source),inside:e.languages.jsx}},e.languages.jsx.tag),e.languages.insertBefore("inside","special-attr",{script:{pattern:o(/=<BRACES>/.source),alias:"language-javascript",inside:{"script-punctuation":{pattern:/^=(?=\{)/,alias:"punctuation"},rest:e.languages.jsx}}},e.languages.jsx.tag);var i=function(e){return e?"string"==typeof e?e:"string"==typeof e.content?e.content:e.content.map(i).join(""):""},l=function(t){for(var n=[],r=0;r<t.length;r++){var a=t[r],o=!1;if("string"!=typeof a&&("tag"===a.type&&a.content[0]&&"tag"===a.content[0].type?"</"===a.content[0].content[0].content?n.length>0&&n[n.length-1].tagName===i(a.content[0].content[1])&&n.pop():"/>"===a.content[a.content.length-1].content||n.push({tagName:i(a.content[0].content[1]),openedBraces:0}):n.length>0&&"punctuation"===a.type&&"{"===a.content?n[n.length-1].openedBraces++:n.length>0&&n[n.length-1].openedBraces>0&&"punctuation"===a.type&&"}"===a.content?n[n.length-1].openedBraces--:o=!0),(o||"string"==typeof a)&&n.length>0&&0===n[n.length-1].openedBraces){var s=i(a);r<t.length-1&&("string"==typeof t[r+1]||"plain-text"===t[r+1].type)&&(s+=i(t[r+1]),t.splice(r+1,1)),r>0&&("string"==typeof t[r-1]||"plain-text"===t[r-1].type)&&(s=i(t[r-1])+s,t.splice(r-1,1),r--),t[r]=new e.Token("plain-text",s,null,s)}a.content&&"string"!=typeof a.content&&l(a.content)}};e.hooks.add("after-tokenize",(function(e){"jsx"!==e.language&&"tsx"!==e.language||l(e.tokens)}))}(a),function(e){e.languages.diff={coord:[/^(?:\*{3}|-{3}|\+{3}).*$/m,/^@@.*@@$/m,/^\d.*$/m]};var t={"deleted-sign":"-","deleted-arrow":"<","inserted-sign":"+","inserted-arrow":">",unchanged:" ",diff:"!"};Object.keys(t).forEach((function(n){var r=t[n],a=[];/^\w+$/.test(n)||a.push(/\w+/.exec(n)[0]),"diff"===n&&a.push("bold"),e.languages.diff[n]={pattern:RegExp("^(?:["+r+"].*(?:\r\n?|\n|(?![\\s\\S])))+","m"),alias:a,inside:{line:{pattern:/(.)(?=[\s\S]).*(?:\r\n?|\n)?/,lookbehind:!0},prefix:{pattern:/[\s\S]/,alias:/\w+/.exec(n)[0]}}}})),Object.defineProperty(e.languages.diff,"PREFIXES",{value:t})}(a),a.languages.git={comment:/^#.*/m,deleted:/^[-\u2013].*/m,inserted:/^\+.*/m,string:/("|')(?:\\.|(?!\1)[^\\\r\n])*\1/,command:{pattern:/^.*\$ git .*$/m,inside:{parameter:/\s--?\w+/}},coord:/^@@.*@@$/m,"commit-sha1":/^commit \w{40}$/m},a.languages.go=a.languages.extend("clike",{string:{pattern:/(^|[^\\])"(?:\\.|[^"\\\r\n])*"|`[^`]*`/,lookbehind:!0,greedy:!0},keyword:/\b(?:break|case|chan|const|continue|default|defer|else|fallthrough|for|func|go(?:to)?|if|import|interface|map|package|range|return|select|struct|switch|type|var)\b/,boolean:/\b(?:_|false|iota|nil|true)\b/,number:[/\b0(?:b[01_]+|o[0-7_]+)i?\b/i,/\b0x(?:[a-f\d_]+(?:\.[a-f\d_]*)?|\.[a-f\d_]+)(?:p[+-]?\d+(?:_\d+)*)?i?(?!\w)/i,/(?:\b\d[\d_]*(?:\.[\d_]*)?|\B\.\d[\d_]*)(?:e[+-]?[\d_]+)?i?(?!\w)/i],operator:/[*\/%^!=]=?|\+[=+]?|-[=-]?|\|[=|]?|&(?:=|&|\^=?)?|>(?:>=?|=)?|<(?:<=?|=|-)?|:=|\.\.\./,builtin:/\b(?:append|bool|byte|cap|close|complex|complex(?:64|128)|copy|delete|error|float(?:32|64)|u?int(?:8|16|32|64)?|imag|len|make|new|panic|print(?:ln)?|real|recover|rune|string|uintptr)\b/}),a.languages.insertBefore("go","string",{char:{pattern:/'(?:\\.|[^'\\\r\n]){0,10}'/,greedy:!0}}),delete a.languages.go["class-name"],function(e){function t(e,t){return"___"+e.toUpperCase()+t+"___"}Object.defineProperties(e.languages["markup-templating"]={},{buildPlaceholders:{value:function(n,r,a,o){if(n.language===r){var i=n.tokenStack=[];n.code=n.code.replace(a,(function(e){if("function"==typeof o&&!o(e))return e;for(var a,l=i.length;-1!==n.code.indexOf(a=t(r,l));)++l;return i[l]=e,a})),n.grammar=e.languages.markup}}},tokenizePlaceholders:{value:function(n,r){if(n.language===r&&n.tokenStack){n.grammar=e.languages[r];var a=0,o=Object.keys(n.tokenStack);!function i(l){for(var s=0;s<l.length&&!(a>=o.length);s++){var u=l[s];if("string"==typeof u||u.content&&"string"==typeof u.content){var c=o[a],d=n.tokenStack[c],f="string"==typeof u?u:u.content,p=t(r,c),m=f.indexOf(p);if(m>-1){++a;var h=f.substring(0,m),g=new e.Token(r,e.tokenize(d,n.grammar),"language-"+r,d),b=f.substring(m+p.length),v=[];h&&v.push.apply(v,i([h])),v.push(g),b&&v.push.apply(v,i([b])),"string"==typeof u?l.splice.apply(l,[s,1].concat(v)):u.content=v}}else u.content&&i(u.content)}return l}(n.tokens)}}}})}(a),function(e){e.languages.handlebars={comment:/\{\{![\s\S]*?\}\}/,delimiter:{pattern:/^\{\{\{?|\}\}\}?$/,alias:"punctuation"},string:/(["'])(?:\\.|(?!\1)[^\\\r\n])*\1/,number:/\b0x[\dA-Fa-f]+\b|(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:[Ee][+-]?\d+)?/,boolean:/\b(?:false|true)\b/,block:{pattern:/^(\s*(?:~\s*)?)[#\/]\S+?(?=\s*(?:~\s*)?$|\s)/,lookbehind:!0,alias:"keyword"},brackets:{pattern:/\[[^\]]+\]/,inside:{punctuation:/\[|\]/,variable:/[\s\S]+/}},punctuation:/[!"#%&':()*+,.\/;<=>@\[\\\]^`{|}~]/,variable:/[^!"#%&'()*+,\/;<=>@\[\\\]^`{|}~\s]+/},e.hooks.add("before-tokenize",(function(t){e.languages["markup-templating"].buildPlaceholders(t,"handlebars",/\{\{\{[\s\S]+?\}\}\}|\{\{[\s\S]+?\}\}/g)})),e.hooks.add("after-tokenize",(function(t){e.languages["markup-templating"].tokenizePlaceholders(t,"handlebars")})),e.languages.hbs=e.languages.handlebars}(a),a.languages.json={property:{pattern:/(^|[^\\])"(?:\\.|[^\\"\r\n])*"(?=\s*:)/,lookbehind:!0,greedy:!0},string:{pattern:/(^|[^\\])"(?:\\.|[^\\"\r\n])*"(?!\s*:)/,lookbehind:!0,greedy:!0},comment:{pattern:/\/\/.*|\/\*[\s\S]*?(?:\*\/|$)/,greedy:!0},number:/-?\b\d+(?:\.\d+)?(?:e[+-]?\d+)?\b/i,punctuation:/[{}[\],]/,operator:/:/,boolean:/\b(?:false|true)\b/,null:{pattern:/\bnull\b/,alias:"keyword"}},a.languages.webmanifest=a.languages.json,a.languages.less=a.languages.extend("css",{comment:[/\/\*[\s\S]*?\*\//,{pattern:/(^|[^\\])\/\/.*/,lookbehind:!0}],atrule:{pattern:/@[\w-](?:\((?:[^(){}]|\([^(){}]*\))*\)|[^(){};\s]|\s+(?!\s))*?(?=\s*\{)/,inside:{punctuation:/[:()]/}},selector:{pattern:/(?:@\{[\w-]+\}|[^{};\s@])(?:@\{[\w-]+\}|\((?:[^(){}]|\([^(){}]*\))*\)|[^(){};@\s]|\s+(?!\s))*?(?=\s*\{)/,inside:{variable:/@+[\w-]+/}},property:/(?:@\{[\w-]+\}|[\w-])+(?:\+_?)?(?=\s*:)/,operator:/[+\-*\/]/}),a.languages.insertBefore("less","property",{variable:[{pattern:/@[\w-]+\s*:/,inside:{punctuation:/:/}},/@@?[\w-]+/],"mixin-usage":{pattern:/([{;]\s*)[.#](?!\d)[\w-].*?(?=[(;])/,lookbehind:!0,alias:"function"}}),a.languages.makefile={comment:{pattern:/(^|[^\\])#(?:\\(?:\r\n|[\s\S])|[^\\\r\n])*/,lookbehind:!0},string:{pattern:/(["'])(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,greedy:!0},"builtin-target":{pattern:/\.[A-Z][^:#=\s]+(?=\s*:(?!=))/,alias:"builtin"},target:{pattern:/^(?:[^:=\s]|[ \t]+(?![\s:]))+(?=\s*:(?!=))/m,alias:"symbol",inside:{variable:/\$+(?:(?!\$)[^(){}:#=\s]+|(?=[({]))/}},variable:/\$+(?:(?!\$)[^(){}:#=\s]+|\([@*%<^+?][DF]\)|(?=[({]))/,keyword:/-include\b|\b(?:define|else|endef|endif|export|ifn?def|ifn?eq|include|override|private|sinclude|undefine|unexport|vpath)\b/,function:{pattern:/(\()(?:abspath|addsuffix|and|basename|call|dir|error|eval|file|filter(?:-out)?|findstring|firstword|flavor|foreach|guile|if|info|join|lastword|load|notdir|or|origin|patsubst|realpath|shell|sort|strip|subst|suffix|value|warning|wildcard|word(?:list|s)?)(?=[ \t])/,lookbehind:!0},operator:/(?:::|[?:+!])?=|[|@]/,punctuation:/[:;(){}]/},a.languages.objectivec=a.languages.extend("c",{string:{pattern:/@?"(?:\\(?:\r\n|[\s\S])|[^"\\\r\n])*"/,greedy:!0},keyword:/\b(?:asm|auto|break|case|char|const|continue|default|do|double|else|enum|extern|float|for|goto|if|in|inline|int|long|register|return|self|short|signed|sizeof|static|struct|super|switch|typedef|typeof|union|unsigned|void|volatile|while)\b|(?:@interface|@end|@implementation|@protocol|@class|@public|@protected|@private|@property|@try|@catch|@finally|@throw|@synthesize|@dynamic|@selector)\b/,operator:/-[->]?|\+\+?|!=?|<<?=?|>>?=?|==?|&&?|\|\|?|[~^%?*\/@]/}),delete a.languages.objectivec["class-name"],a.languages.objc=a.languages.objectivec,a.languages.ocaml={comment:{pattern:/\(\*[\s\S]*?\*\)/,greedy:!0},char:{pattern:/'(?:[^\\\r\n']|\\(?:.|[ox]?[0-9a-f]{1,3}))'/i,greedy:!0},string:[{pattern:/"(?:\\(?:[\s\S]|\r\n)|[^\\\r\n"])*"/,greedy:!0},{pattern:/\{([a-z_]*)\|[\s\S]*?\|\1\}/,greedy:!0}],number:[/\b(?:0b[01][01_]*|0o[0-7][0-7_]*)\b/i,/\b0x[a-f0-9][a-f0-9_]*(?:\.[a-f0-9_]*)?(?:p[+-]?\d[\d_]*)?(?!\w)/i,/\b\d[\d_]*(?:\.[\d_]*)?(?:e[+-]?\d[\d_]*)?(?!\w)/i],directive:{pattern:/\B#\w+/,alias:"property"},label:{pattern:/\B~\w+/,alias:"property"},"type-variable":{pattern:/\B'\w+/,alias:"function"},variant:{pattern:/`\w+/,alias:"symbol"},keyword:/\b(?:as|assert|begin|class|constraint|do|done|downto|else|end|exception|external|for|fun|function|functor|if|in|include|inherit|initializer|lazy|let|match|method|module|mutable|new|nonrec|object|of|open|private|rec|sig|struct|then|to|try|type|val|value|virtual|when|where|while|with)\b/,boolean:/\b(?:false|true)\b/,"operator-like-punctuation":{pattern:/\[[<>|]|[>|]\]|\{<|>\}/,alias:"punctuation"},operator:/\.[.~]|:[=>]|[=<>@^|&+\-*\/$%!?~][!$%&*+\-.\/:<=>?@^|~]*|\b(?:and|asr|land|lor|lsl|lsr|lxor|mod|or)\b/,punctuation:/;;|::|[(){}\[\].,:;#]|\b_\b/},a.languages.python={comment:{pattern:/(^|[^\\])#.*/,lookbehind:!0,greedy:!0},"string-interpolation":{pattern:/(?:f|fr|rf)(?:("""|''')[\s\S]*?\1|("|')(?:\\.|(?!\2)[^\\\r\n])*\2)/i,greedy:!0,inside:{interpolation:{pattern:/((?:^|[^{])(?:\{\{)*)\{(?!\{)(?:[^{}]|\{(?!\{)(?:[^{}]|\{(?!\{)(?:[^{}])+\})+\})+\}/,lookbehind:!0,inside:{"format-spec":{pattern:/(:)[^:(){}]+(?=\}$)/,lookbehind:!0},"conversion-option":{pattern:/![sra](?=[:}]$)/,alias:"punctuation"},rest:null}},string:/[\s\S]+/}},"triple-quoted-string":{pattern:/(?:[rub]|br|rb)?("""|''')[\s\S]*?\1/i,greedy:!0,alias:"string"},string:{pattern:/(?:[rub]|br|rb)?("|')(?:\\.|(?!\1)[^\\\r\n])*\1/i,greedy:!0},function:{pattern:/((?:^|\s)def[ \t]+)[a-zA-Z_]\w*(?=\s*\()/g,lookbehind:!0},"class-name":{pattern:/(\bclass\s+)\w+/i,lookbehind:!0},decorator:{pattern:/(^[\t ]*)@\w+(?:\.\w+)*/m,lookbehind:!0,alias:["annotation","punctuation"],inside:{punctuation:/\./}},keyword:/\b(?:_(?=\s*:)|and|as|assert|async|await|break|case|class|continue|def|del|elif|else|except|exec|finally|for|from|global|if|import|in|is|lambda|match|nonlocal|not|or|pass|print|raise|return|try|while|with|yield)\b/,builtin:/\b(?:__import__|abs|all|any|apply|ascii|basestring|bin|bool|buffer|bytearray|bytes|callable|chr|classmethod|cmp|coerce|compile|complex|delattr|dict|dir|divmod|enumerate|eval|execfile|file|filter|float|format|frozenset|getattr|globals|hasattr|hash|help|hex|id|input|int|intern|isinstance|issubclass|iter|len|list|locals|long|map|max|memoryview|min|next|object|oct|open|ord|pow|property|range|raw_input|reduce|reload|repr|reversed|round|set|setattr|slice|sorted|staticmethod|str|sum|super|tuple|type|unichr|unicode|vars|xrange|zip)\b/,boolean:/\b(?:False|None|True)\b/,number:/\b0(?:b(?:_?[01])+|o(?:_?[0-7])+|x(?:_?[a-f0-9])+)\b|(?:\b\d+(?:_\d+)*(?:\.(?:\d+(?:_\d+)*)?)?|\B\.\d+(?:_\d+)*)(?:e[+-]?\d+(?:_\d+)*)?j?(?!\w)/i,operator:/[-+%=]=?|!=|:=|\*\*?=?|\/\/?=?|<[<=>]?|>[=>]?|[&|^~]/,punctuation:/[{}[\];(),.:]/},a.languages.python["string-interpolation"].inside.interpolation.inside.rest=a.languages.python,a.languages.py=a.languages.python,a.languages.reason=a.languages.extend("clike",{string:{pattern:/"(?:\\(?:\r\n|[\s\S])|[^\\\r\n"])*"/,greedy:!0},"class-name":/\b[A-Z]\w*/,keyword:/\b(?:and|as|assert|begin|class|constraint|do|done|downto|else|end|exception|external|for|fun|function|functor|if|in|include|inherit|initializer|lazy|let|method|module|mutable|new|nonrec|object|of|open|or|private|rec|sig|struct|switch|then|to|try|type|val|virtual|when|while|with)\b/,operator:/\.{3}|:[:=]|\|>|->|=(?:==?|>)?|<=?|>=?|[|^?'#!~`]|[+\-*\/]\.?|\b(?:asr|land|lor|lsl|lsr|lxor|mod)\b/}),a.languages.insertBefore("reason","class-name",{char:{pattern:/'(?:\\x[\da-f]{2}|\\o[0-3][0-7][0-7]|\\\d{3}|\\.|[^'\\\r\n])'/,greedy:!0},constructor:/\b[A-Z]\w*\b(?!\s*\.)/,label:{pattern:/\b[a-z]\w*(?=::)/,alias:"symbol"}}),delete a.languages.reason.function,function(e){e.languages.sass=e.languages.extend("css",{comment:{pattern:/^([ \t]*)\/[\/*].*(?:(?:\r?\n|\r)\1[ \t].+)*/m,lookbehind:!0,greedy:!0}}),e.languages.insertBefore("sass","atrule",{"atrule-line":{pattern:/^(?:[ \t]*)[@+=].+/m,greedy:!0,inside:{atrule:/(?:@[\w-]+|[+=])/}}}),delete e.languages.sass.atrule;var t=/\$[-\w]+|#\{\$[-\w]+\}/,n=[/[+*\/%]|[=!]=|<=?|>=?|\b(?:and|not|or)\b/,{pattern:/(\s)-(?=\s)/,lookbehind:!0}];e.languages.insertBefore("sass","property",{"variable-line":{pattern:/^[ \t]*\$.+/m,greedy:!0,inside:{punctuation:/:/,variable:t,operator:n}},"property-line":{pattern:/^[ \t]*(?:[^:\s]+ *:.*|:[^:\s].*)/m,greedy:!0,inside:{property:[/[^:\s]+(?=\s*:)/,{pattern:/(:)[^:\s]+/,lookbehind:!0}],punctuation:/:/,variable:t,operator:n,important:e.languages.sass.important}}}),delete e.languages.sass.property,delete e.languages.sass.important,e.languages.insertBefore("sass","punctuation",{selector:{pattern:/^([ \t]*)\S(?:,[^,\r\n]+|[^,\r\n]*)(?:,[^,\r\n]+)*(?:,(?:\r?\n|\r)\1[ \t]+\S(?:,[^,\r\n]+|[^,\r\n]*)(?:,[^,\r\n]+)*)*/m,lookbehind:!0,greedy:!0}})}(a),a.languages.scss=a.languages.extend("css",{comment:{pattern:/(^|[^\\])(?:\/\*[\s\S]*?\*\/|\/\/.*)/,lookbehind:!0},atrule:{pattern:/@[\w-](?:\([^()]+\)|[^()\s]|\s+(?!\s))*?(?=\s+[{;])/,inside:{rule:/@[\w-]+/}},url:/(?:[-a-z]+-)?url(?=\()/i,selector:{pattern:/(?=\S)[^@;{}()]?(?:[^@;{}()\s]|\s+(?!\s)|#\{\$[-\w]+\})+(?=\s*\{(?:\}|\s|[^}][^:{}]*[:{][^}]))/,inside:{parent:{pattern:/&/,alias:"important"},placeholder:/%[-\w]+/,variable:/\$[-\w]+|#\{\$[-\w]+\}/}},property:{pattern:/(?:[-\w]|\$[-\w]|#\{\$[-\w]+\})+(?=\s*:)/,inside:{variable:/\$[-\w]+|#\{\$[-\w]+\}/}}}),a.languages.insertBefore("scss","atrule",{keyword:[/@(?:content|debug|each|else(?: if)?|extend|for|forward|function|if|import|include|mixin|return|use|warn|while)\b/i,{pattern:/( )(?:from|through)(?= )/,lookbehind:!0}]}),a.languages.insertBefore("scss","important",{variable:/\$[-\w]+|#\{\$[-\w]+\}/}),a.languages.insertBefore("scss","function",{"module-modifier":{pattern:/\b(?:as|hide|show|with)\b/i,alias:"keyword"},placeholder:{pattern:/%[-\w]+/,alias:"selector"},statement:{pattern:/\B!(?:default|optional)\b/i,alias:"keyword"},boolean:/\b(?:false|true)\b/,null:{pattern:/\bnull\b/,alias:"keyword"},operator:{pattern:/(\s)(?:[-+*\/%]|[=!]=|<=?|>=?|and|not|or)(?=\s)/,lookbehind:!0}}),a.languages.scss.atrule.inside.rest=a.languages.scss,function(e){var t={pattern:/(\b\d+)(?:%|[a-z]+)/,lookbehind:!0},n={pattern:/(^|[^\w.-])-?(?:\d+(?:\.\d+)?|\.\d+)/,lookbehind:!0},r={comment:{pattern:/(^|[^\\])(?:\/\*[\s\S]*?\*\/|\/\/.*)/,lookbehind:!0},url:{pattern:/\burl\((["']?).*?\1\)/i,greedy:!0},string:{pattern:/("|')(?:(?!\1)[^\\\r\n]|\\(?:\r\n|[\s\S]))*\1/,greedy:!0},interpolation:null,func:null,important:/\B!(?:important|optional)\b/i,keyword:{pattern:/(^|\s+)(?:(?:else|for|if|return|unless)(?=\s|$)|@[\w-]+)/,lookbehind:!0},hexcode:/#[\da-f]{3,6}/i,color:[/\b(?:AliceBlue|AntiqueWhite|Aqua|Aquamarine|Azure|Beige|Bisque|Black|BlanchedAlmond|Blue|BlueViolet|Brown|BurlyWood|CadetBlue|Chartreuse|Chocolate|Coral|CornflowerBlue|Cornsilk|Crimson|Cyan|DarkBlue|DarkCyan|DarkGoldenRod|DarkGr[ae]y|DarkGreen|DarkKhaki|DarkMagenta|DarkOliveGreen|DarkOrange|DarkOrchid|DarkRed|DarkSalmon|DarkSeaGreen|DarkSlateBlue|DarkSlateGr[ae]y|DarkTurquoise|DarkViolet|DeepPink|DeepSkyBlue|DimGr[ae]y|DodgerBlue|FireBrick|FloralWhite|ForestGreen|Fuchsia|Gainsboro|GhostWhite|Gold|GoldenRod|Gr[ae]y|Green|GreenYellow|HoneyDew|HotPink|IndianRed|Indigo|Ivory|Khaki|Lavender|LavenderBlush|LawnGreen|LemonChiffon|LightBlue|LightCoral|LightCyan|LightGoldenRodYellow|LightGr[ae]y|LightGreen|LightPink|LightSalmon|LightSeaGreen|LightSkyBlue|LightSlateGr[ae]y|LightSteelBlue|LightYellow|Lime|LimeGreen|Linen|Magenta|Maroon|MediumAquaMarine|MediumBlue|MediumOrchid|MediumPurple|MediumSeaGreen|MediumSlateBlue|MediumSpringGreen|MediumTurquoise|MediumVioletRed|MidnightBlue|MintCream|MistyRose|Moccasin|NavajoWhite|Navy|OldLace|Olive|OliveDrab|Orange|OrangeRed|Orchid|PaleGoldenRod|PaleGreen|PaleTurquoise|PaleVioletRed|PapayaWhip|PeachPuff|Peru|Pink|Plum|PowderBlue|Purple|Red|RosyBrown|RoyalBlue|SaddleBrown|Salmon|SandyBrown|SeaGreen|SeaShell|Sienna|Silver|SkyBlue|SlateBlue|SlateGr[ae]y|Snow|SpringGreen|SteelBlue|Tan|Teal|Thistle|Tomato|Transparent|Turquoise|Violet|Wheat|White|WhiteSmoke|Yellow|YellowGreen)\b/i,{pattern:/\b(?:hsl|rgb)\(\s*\d{1,3}\s*,\s*\d{1,3}%?\s*,\s*\d{1,3}%?\s*\)\B|\b(?:hsl|rgb)a\(\s*\d{1,3}\s*,\s*\d{1,3}%?\s*,\s*\d{1,3}%?\s*,\s*(?:0|0?\.\d+|1)\s*\)\B/i,inside:{unit:t,number:n,function:/[\w-]+(?=\()/,punctuation:/[(),]/}}],entity:/\\[\da-f]{1,8}/i,unit:t,boolean:/\b(?:false|true)\b/,operator:[/~|[+!\/%<>?=]=?|[-:]=|\*[*=]?|\.{2,3}|&&|\|\||\B-\B|\b(?:and|in|is(?: a| defined| not|nt)?|not|or)\b/],number:n,punctuation:/[{}()\[\];:,]/};r.interpolation={pattern:/\{[^\r\n}:]+\}/,alias:"variable",inside:{delimiter:{pattern:/^\{|\}$/,alias:"punctuation"},rest:r}},r.func={pattern:/[\w-]+\([^)]*\).*/,inside:{function:/^[^(]+/,rest:r}},e.languages.stylus={"atrule-declaration":{pattern:/(^[ \t]*)@.+/m,lookbehind:!0,inside:{atrule:/^@[\w-]+/,rest:r}},"variable-declaration":{pattern:/(^[ \t]*)[\w$-]+\s*.?=[ \t]*(?:\{[^{}]*\}|\S.*|$)/m,lookbehind:!0,inside:{variable:/^\S+/,rest:r}},statement:{pattern:/(^[ \t]*)(?:else|for|if|return|unless)[ \t].+/m,lookbehind:!0,inside:{keyword:/^\S+/,rest:r}},"property-declaration":{pattern:/((?:^|\{)([ \t]*))(?:[\w-]|\{[^}\r\n]+\})+(?:\s*:\s*|[ \t]+)(?!\s)[^{\r\n]*(?:;|[^{\r\n,]$(?!(?:\r?\n|\r)(?:\{|\2[ \t])))/m,lookbehind:!0,inside:{property:{pattern:/^[^\s:]+/,inside:{interpolation:r.interpolation}},rest:r}},selector:{pattern:/(^[ \t]*)(?:(?=\S)(?:[^{}\r\n:()]|::?[\w-]+(?:\([^)\r\n]*\)|(?![\w-]))|\{[^}\r\n]+\})+)(?:(?:\r?\n|\r)(?:\1(?:(?=\S)(?:[^{}\r\n:()]|::?[\w-]+(?:\([^)\r\n]*\)|(?![\w-]))|\{[^}\r\n]+\})+)))*(?:,$|\{|(?=(?:\r?\n|\r)(?:\{|\1[ \t])))/m,lookbehind:!0,inside:{interpolation:r.interpolation,comment:r.comment,punctuation:/[{},]/}},func:r.func,string:r.string,comment:{pattern:/(^|[^\\])(?:\/\*[\s\S]*?\*\/|\/\/.*)/,lookbehind:!0,greedy:!0},interpolation:r.interpolation,punctuation:/[{}()\[\];:.]/}}(a),function(e){var t=e.util.clone(e.languages.typescript);e.languages.tsx=e.languages.extend("jsx",t),delete e.languages.tsx.parameter,delete e.languages.tsx["literal-property"];var n=e.languages.tsx.tag;n.pattern=RegExp(/(^|[^\w$]|(?=<\/))/.source+"(?:"+n.pattern.source+")",n.pattern.flags),n.lookbehind=!0}(a),a.languages.wasm={comment:[/\(;[\s\S]*?;\)/,{pattern:/;;.*/,greedy:!0}],string:{pattern:/"(?:\\[\s\S]|[^"\\])*"/,greedy:!0},keyword:[{pattern:/\b(?:align|offset)=/,inside:{operator:/=/}},{pattern:/\b(?:(?:f32|f64|i32|i64)(?:\.(?:abs|add|and|ceil|clz|const|convert_[su]\/i(?:32|64)|copysign|ctz|demote\/f64|div(?:_[su])?|eqz?|extend_[su]\/i32|floor|ge(?:_[su])?|gt(?:_[su])?|le(?:_[su])?|load(?:(?:8|16|32)_[su])?|lt(?:_[su])?|max|min|mul|neg?|nearest|or|popcnt|promote\/f32|reinterpret\/[fi](?:32|64)|rem_[su]|rot[lr]|shl|shr_[su]|sqrt|store(?:8|16|32)?|sub|trunc(?:_[su]\/f(?:32|64))?|wrap\/i64|xor))?|memory\.(?:grow|size))\b/,inside:{punctuation:/\./}},/\b(?:anyfunc|block|br(?:_if|_table)?|call(?:_indirect)?|data|drop|elem|else|end|export|func|get_(?:global|local)|global|if|import|local|loop|memory|module|mut|nop|offset|param|result|return|select|set_(?:global|local)|start|table|tee_local|then|type|unreachable)\b/],variable:/\$[\w!#$%&'*+\-./:<=>?@\\^`|~]+/,number:/[+-]?\b(?:\d(?:_?\d)*(?:\.\d(?:_?\d)*)?(?:[eE][+-]?\d(?:_?\d)*)?|0x[\da-fA-F](?:_?[\da-fA-F])*(?:\.[\da-fA-F](?:_?[\da-fA-D])*)?(?:[pP][+-]?\d(?:_?\d)*)?)\b|\binf\b|\bnan(?::0x[\da-fA-F](?:_?[\da-fA-D])*)?\b/,punctuation:/[()]/};const o=a},66841:()=>{Prism.languages.lua={comment:/^#!.+|--(?:\[(=*)\[[\s\S]*?\]\1\]|.*)/m,string:{pattern:/(["'])(?:(?!\1)[^\\\r\n]|\\z(?:\r\n|\s)|\\(?:\r\n|[^z]))*\1|\[(=*)\[[\s\S]*?\]\2\]/,greedy:!0},number:/\b0x[a-f\d]+(?:\.[a-f\d]*)?(?:p[+-]?\d+)?\b|\b\d+(?:\.\B|(?:\.\d*)?(?:e[+-]?\d+)?\b)|\B\.\d+(?:e[+-]?\d+)?\b/i,keyword:/\b(?:and|break|do|else|elseif|end|false|for|function|goto|if|in|local|nil|not|or|repeat|return|then|true|until|while)\b/,function:/(?!\d)\w+(?=\s*(?:[({]))/,operator:[/[-+*%^&|#]|\/\/?|<[<=]?|>[>=]?|[=~]=?/,{pattern:/(^|[^.])\.\.(?!\.)/,lookbehind:!0}],punctuation:/[\[\](){},;]|\.+|:+/}},33003:(e,t,n)=>{var r={"./prism-lua":66841};function a(e){var t=o(e);return n(t)}function o(e){if(!n.o(r,e)){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return r[e]}a.keys=function(){return Object.keys(r)},a.resolve=o,e.exports=a,a.id=33003},92703:(e,t,n)=>{"use strict";var r=n(50414);function a(){}function o(){}o.resetWarningCache=a,e.exports=function(){function e(e,t,n,a,o,i){if(i!==r){var l=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw l.name="Invariant Violation",l}}function t(){return e}e.isRequired=e;var n={array:e,bigint:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:o,resetWarningCache:a};return n.PropTypes=n,n}},45697:(e,t,n)=>{e.exports=n(92703)()},50414:e=>{"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},64448:(e,t,n)=>{"use strict";var r=n(67294),a=n(27418),o=n(63840);function i(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n<arguments.length;n++)t+="&args[]="+encodeURIComponent(arguments[n]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}if(!r)throw Error(i(227));var l=new Set,s={};function u(e,t){c(e,t),c(e+"Capture",t)}function c(e,t){for(s[e]=t,e=0;e<t.length;e++)l.add(t[e])}var d=!("undefined"==typeof window||void 0===window.document||void 0===window.document.createElement),f=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,p=Object.prototype.hasOwnProperty,m={},h={};function g(e,t,n,r,a,o,i){this.acceptsBooleans=2===t||3===t||4===t,this.attributeName=r,this.attributeNamespace=a,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=o,this.removeEmptyString=i}var b={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach((function(e){b[e]=new g(e,0,!1,e,null,!1,!1)})),[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach((function(e){var t=e[0];b[t]=new g(t,1,!1,e[1],null,!1,!1)})),["contentEditable","draggable","spellCheck","value"].forEach((function(e){b[e]=new g(e,2,!1,e.toLowerCase(),null,!1,!1)})),["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach((function(e){b[e]=new g(e,2,!1,e,null,!1,!1)})),"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach((function(e){b[e]=new g(e,3,!1,e.toLowerCase(),null,!1,!1)})),["checked","multiple","muted","selected"].forEach((function(e){b[e]=new g(e,3,!0,e,null,!1,!1)})),["capture","download"].forEach((function(e){b[e]=new g(e,4,!1,e,null,!1,!1)})),["cols","rows","size","span"].forEach((function(e){b[e]=new g(e,6,!1,e,null,!1,!1)})),["rowSpan","start"].forEach((function(e){b[e]=new g(e,5,!1,e.toLowerCase(),null,!1,!1)}));var v=/[\-:]([a-z])/g;function y(e){return e[1].toUpperCase()}function w(e,t,n,r){var a=b.hasOwnProperty(t)?b[t]:null;(null!==a?0===a.type:!r&&(2<t.length&&("o"===t[0]||"O"===t[0])&&("n"===t[1]||"N"===t[1])))||(function(e,t,n,r){if(null==t||function(e,t,n,r){if(null!==n&&0===n.type)return!1;switch(typeof t){case"function":case"symbol":return!0;case"boolean":return!r&&(null!==n?!n.acceptsBooleans:"data-"!==(e=e.toLowerCase().slice(0,5))&&"aria-"!==e);default:return!1}}(e,t,n,r))return!0;if(r)return!1;if(null!==n)switch(n.type){case 3:return!t;case 4:return!1===t;case 5:return isNaN(t);case 6:return isNaN(t)||1>t}return!1}(t,n,a,r)&&(n=null),r||null===a?function(e){return!!p.call(h,e)||!p.call(m,e)&&(f.test(e)?h[e]=!0:(m[e]=!0,!1))}(t)&&(null===n?e.removeAttribute(t):e.setAttribute(t,""+n)):a.mustUseProperty?e[a.propertyName]=null===n?3!==a.type&&"":n:(t=a.attributeName,r=a.attributeNamespace,null===n?e.removeAttribute(t):(n=3===(a=a.type)||4===a&&!0===n?"":""+n,r?e.setAttributeNS(r,t,n):e.setAttribute(t,n))))}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach((function(e){var t=e.replace(v,y);b[t]=new g(t,1,!1,e,null,!1,!1)})),"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach((function(e){var t=e.replace(v,y);b[t]=new g(t,1,!1,e,"http://www.w3.org/1999/xlink",!1,!1)})),["xml:base","xml:lang","xml:space"].forEach((function(e){var t=e.replace(v,y);b[t]=new g(t,1,!1,e,"http://www.w3.org/XML/1998/namespace",!1,!1)})),["tabIndex","crossOrigin"].forEach((function(e){b[e]=new g(e,1,!1,e.toLowerCase(),null,!1,!1)})),b.xlinkHref=new g("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1),["src","href","action","formAction"].forEach((function(e){b[e]=new g(e,1,!1,e.toLowerCase(),null,!0,!0)}));var E=r.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,k=60103,S=60106,x=60107,C=60108,_=60114,T=60109,A=60110,N=60112,L=60113,O=60120,P=60115,R=60116,I=60121,D=60128,M=60129,F=60130,B=60131;if("function"==typeof Symbol&&Symbol.for){var U=Symbol.for;k=U("react.element"),S=U("react.portal"),x=U("react.fragment"),C=U("react.strict_mode"),_=U("react.profiler"),T=U("react.provider"),A=U("react.context"),N=U("react.forward_ref"),L=U("react.suspense"),O=U("react.suspense_list"),P=U("react.memo"),R=U("react.lazy"),I=U("react.block"),U("react.scope"),D=U("react.opaque.id"),M=U("react.debug_trace_mode"),F=U("react.offscreen"),B=U("react.legacy_hidden")}var $,j="function"==typeof Symbol&&Symbol.iterator;function z(e){return null===e||"object"!=typeof e?null:"function"==typeof(e=j&&e[j]||e["@@iterator"])?e:null}function Z(e){if(void 0===$)try{throw Error()}catch(n){var t=n.stack.trim().match(/\n( *(at )?)/);$=t&&t[1]||""}return"\n"+$+e}var H=!1;function Y(e,t){if(!e||H)return"";H=!0;var n=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{if(t)if(t=function(){throw Error()},Object.defineProperty(t.prototype,"props",{set:function(){throw Error()}}),"object"==typeof Reflect&&Reflect.construct){try{Reflect.construct(t,[])}catch(s){var r=s}Reflect.construct(e,[],t)}else{try{t.call()}catch(s){r=s}e.call(t.prototype)}else{try{throw Error()}catch(s){r=s}e()}}catch(s){if(s&&r&&"string"==typeof s.stack){for(var a=s.stack.split("\n"),o=r.stack.split("\n"),i=a.length-1,l=o.length-1;1<=i&&0<=l&&a[i]!==o[l];)l--;for(;1<=i&&0<=l;i--,l--)if(a[i]!==o[l]){if(1!==i||1!==l)do{if(i--,0>--l||a[i]!==o[l])return"\n"+a[i].replace(" at new "," at ")}while(1<=i&&0<=l);break}}}finally{H=!1,Error.prepareStackTrace=n}return(e=e?e.displayName||e.name:"")?Z(e):""}function V(e){switch(e.tag){case 5:return Z(e.type);case 16:return Z("Lazy");case 13:return Z("Suspense");case 19:return Z("SuspenseList");case 0:case 2:case 15:return e=Y(e.type,!1);case 11:return e=Y(e.type.render,!1);case 22:return e=Y(e.type._render,!1);case 1:return e=Y(e.type,!0);default:return""}}function W(e){if(null==e)return null;if("function"==typeof e)return e.displayName||e.name||null;if("string"==typeof e)return e;switch(e){case x:return"Fragment";case S:return"Portal";case _:return"Profiler";case C:return"StrictMode";case L:return"Suspense";case O:return"SuspenseList"}if("object"==typeof e)switch(e.$$typeof){case A:return(e.displayName||"Context")+".Consumer";case T:return(e._context.displayName||"Context")+".Provider";case N:var t=e.render;return t=t.displayName||t.name||"",e.displayName||(""!==t?"ForwardRef("+t+")":"ForwardRef");case P:return W(e.type);case I:return W(e._render);case R:t=e._payload,e=e._init;try{return W(e(t))}catch(n){}}return null}function G(e){switch(typeof e){case"boolean":case"number":case"object":case"string":case"undefined":return e;default:return""}}function q(e){var t=e.type;return(e=e.nodeName)&&"input"===e.toLowerCase()&&("checkbox"===t||"radio"===t)}function K(e){e._valueTracker||(e._valueTracker=function(e){var t=q(e)?"checked":"value",n=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),r=""+e[t];if(!e.hasOwnProperty(t)&&void 0!==n&&"function"==typeof n.get&&"function"==typeof n.set){var a=n.get,o=n.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return a.call(this)},set:function(e){r=""+e,o.call(this,e)}}),Object.defineProperty(e,t,{enumerable:n.enumerable}),{getValue:function(){return r},setValue:function(e){r=""+e},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}(e))}function Q(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),r="";return e&&(r=q(e)?e.checked?"true":"false":e.value),(e=r)!==n&&(t.setValue(e),!0)}function X(e){if(void 0===(e=e||("undefined"!=typeof document?document:void 0)))return null;try{return e.activeElement||e.body}catch(t){return e.body}}function J(e,t){var n=t.checked;return a({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:null!=n?n:e._wrapperState.initialChecked})}function ee(e,t){var n=null==t.defaultValue?"":t.defaultValue,r=null!=t.checked?t.checked:t.defaultChecked;n=G(null!=t.value?t.value:n),e._wrapperState={initialChecked:r,initialValue:n,controlled:"checkbox"===t.type||"radio"===t.type?null!=t.checked:null!=t.value}}function te(e,t){null!=(t=t.checked)&&w(e,"checked",t,!1)}function ne(e,t){te(e,t);var n=G(t.value),r=t.type;if(null!=n)"number"===r?(0===n&&""===e.value||e.value!=n)&&(e.value=""+n):e.value!==""+n&&(e.value=""+n);else if("submit"===r||"reset"===r)return void e.removeAttribute("value");t.hasOwnProperty("value")?ae(e,t.type,n):t.hasOwnProperty("defaultValue")&&ae(e,t.type,G(t.defaultValue)),null==t.checked&&null!=t.defaultChecked&&(e.defaultChecked=!!t.defaultChecked)}function re(e,t,n){if(t.hasOwnProperty("value")||t.hasOwnProperty("defaultValue")){var r=t.type;if(!("submit"!==r&&"reset"!==r||void 0!==t.value&&null!==t.value))return;t=""+e._wrapperState.initialValue,n||t===e.value||(e.value=t),e.defaultValue=t}""!==(n=e.name)&&(e.name=""),e.defaultChecked=!!e._wrapperState.initialChecked,""!==n&&(e.name=n)}function ae(e,t,n){"number"===t&&X(e.ownerDocument)===e||(null==n?e.defaultValue=""+e._wrapperState.initialValue:e.defaultValue!==""+n&&(e.defaultValue=""+n))}function oe(e,t){return e=a({children:void 0},t),(t=function(e){var t="";return r.Children.forEach(e,(function(e){null!=e&&(t+=e)})),t}(t.children))&&(e.children=t),e}function ie(e,t,n,r){if(e=e.options,t){t={};for(var a=0;a<n.length;a++)t["$"+n[a]]=!0;for(n=0;n<e.length;n++)a=t.hasOwnProperty("$"+e[n].value),e[n].selected!==a&&(e[n].selected=a),a&&r&&(e[n].defaultSelected=!0)}else{for(n=""+G(n),t=null,a=0;a<e.length;a++){if(e[a].value===n)return e[a].selected=!0,void(r&&(e[a].defaultSelected=!0));null!==t||e[a].disabled||(t=e[a])}null!==t&&(t.selected=!0)}}function le(e,t){if(null!=t.dangerouslySetInnerHTML)throw Error(i(91));return a({},t,{value:void 0,defaultValue:void 0,children:""+e._wrapperState.initialValue})}function se(e,t){var n=t.value;if(null==n){if(n=t.children,t=t.defaultValue,null!=n){if(null!=t)throw Error(i(92));if(Array.isArray(n)){if(!(1>=n.length))throw Error(i(93));n=n[0]}t=n}null==t&&(t=""),n=t}e._wrapperState={initialValue:G(n)}}function ue(e,t){var n=G(t.value),r=G(t.defaultValue);null!=n&&((n=""+n)!==e.value&&(e.value=n),null==t.defaultValue&&e.defaultValue!==n&&(e.defaultValue=n)),null!=r&&(e.defaultValue=""+r)}function ce(e){var t=e.textContent;t===e._wrapperState.initialValue&&""!==t&&null!==t&&(e.value=t)}var de={html:"http://www.w3.org/1999/xhtml",mathml:"http://www.w3.org/1998/Math/MathML",svg:"http://www.w3.org/2000/svg"};function fe(e){switch(e){case"svg":return"http://www.w3.org/2000/svg";case"math":return"http://www.w3.org/1998/Math/MathML";default:return"http://www.w3.org/1999/xhtml"}}function pe(e,t){return null==e||"http://www.w3.org/1999/xhtml"===e?fe(t):"http://www.w3.org/2000/svg"===e&&"foreignObject"===t?"http://www.w3.org/1999/xhtml":e}var me,he,ge=(he=function(e,t){if(e.namespaceURI!==de.svg||"innerHTML"in e)e.innerHTML=t;else{for((me=me||document.createElement("div")).innerHTML="<svg>"+t.valueOf().toString()+"</svg>",t=me.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}},"undefined"!=typeof MSApp&&MSApp.execUnsafeLocalFunction?function(e,t,n,r){MSApp.execUnsafeLocalFunction((function(){return he(e,t)}))}:he);function be(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&3===n.nodeType)return void(n.nodeValue=t)}e.textContent=t}var ve={animationIterationCount:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},ye=["Webkit","ms","Moz","O"];function we(e,t,n){return null==t||"boolean"==typeof t||""===t?"":n||"number"!=typeof t||0===t||ve.hasOwnProperty(e)&&ve[e]?(""+t).trim():t+"px"}function Ee(e,t){for(var n in e=e.style,t)if(t.hasOwnProperty(n)){var r=0===n.indexOf("--"),a=we(n,t[n],r);"float"===n&&(n="cssFloat"),r?e.setProperty(n,a):e[n]=a}}Object.keys(ve).forEach((function(e){ye.forEach((function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),ve[t]=ve[e]}))}));var ke=a({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function Se(e,t){if(t){if(ke[e]&&(null!=t.children||null!=t.dangerouslySetInnerHTML))throw Error(i(137,e));if(null!=t.dangerouslySetInnerHTML){if(null!=t.children)throw Error(i(60));if("object"!=typeof t.dangerouslySetInnerHTML||!("__html"in t.dangerouslySetInnerHTML))throw Error(i(61))}if(null!=t.style&&"object"!=typeof t.style)throw Error(i(62))}}function xe(e,t){if(-1===e.indexOf("-"))return"string"==typeof t.is;switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}function Ce(e){return(e=e.target||e.srcElement||window).correspondingUseElement&&(e=e.correspondingUseElement),3===e.nodeType?e.parentNode:e}var _e=null,Te=null,Ae=null;function Ne(e){if(e=na(e)){if("function"!=typeof _e)throw Error(i(280));var t=e.stateNode;t&&(t=aa(t),_e(e.stateNode,e.type,t))}}function Le(e){Te?Ae?Ae.push(e):Ae=[e]:Te=e}function Oe(){if(Te){var e=Te,t=Ae;if(Ae=Te=null,Ne(e),t)for(e=0;e<t.length;e++)Ne(t[e])}}function Pe(e,t){return e(t)}function Re(e,t,n,r,a){return e(t,n,r,a)}function Ie(){}var De=Pe,Me=!1,Fe=!1;function Be(){null===Te&&null===Ae||(Ie(),Oe())}function Ue(e,t){var n=e.stateNode;if(null===n)return null;var r=aa(n);if(null===r)return null;n=r[t];e:switch(t){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":case"onMouseEnter":(r=!r.disabled)||(r=!("button"===(e=e.type)||"input"===e||"select"===e||"textarea"===e)),e=!r;break e;default:e=!1}if(e)return null;if(n&&"function"!=typeof n)throw Error(i(231,t,typeof n));return n}var $e=!1;if(d)try{var je={};Object.defineProperty(je,"passive",{get:function(){$e=!0}}),window.addEventListener("test",je,je),window.removeEventListener("test",je,je)}catch(he){$e=!1}function ze(e,t,n,r,a,o,i,l,s){var u=Array.prototype.slice.call(arguments,3);try{t.apply(n,u)}catch(c){this.onError(c)}}var Ze=!1,He=null,Ye=!1,Ve=null,We={onError:function(e){Ze=!0,He=e}};function Ge(e,t,n,r,a,o,i,l,s){Ze=!1,He=null,ze.apply(We,arguments)}function qe(e){var t=e,n=e;if(e.alternate)for(;t.return;)t=t.return;else{e=t;do{0!=(1026&(t=e).flags)&&(n=t.return),e=t.return}while(e)}return 3===t.tag?n:null}function Ke(e){if(13===e.tag){var t=e.memoizedState;if(null===t&&(null!==(e=e.alternate)&&(t=e.memoizedState)),null!==t)return t.dehydrated}return null}function Qe(e){if(qe(e)!==e)throw Error(i(188))}function Xe(e){if(e=function(e){var t=e.alternate;if(!t){if(null===(t=qe(e)))throw Error(i(188));return t!==e?null:e}for(var n=e,r=t;;){var a=n.return;if(null===a)break;var o=a.alternate;if(null===o){if(null!==(r=a.return)){n=r;continue}break}if(a.child===o.child){for(o=a.child;o;){if(o===n)return Qe(a),e;if(o===r)return Qe(a),t;o=o.sibling}throw Error(i(188))}if(n.return!==r.return)n=a,r=o;else{for(var l=!1,s=a.child;s;){if(s===n){l=!0,n=a,r=o;break}if(s===r){l=!0,r=a,n=o;break}s=s.sibling}if(!l){for(s=o.child;s;){if(s===n){l=!0,n=o,r=a;break}if(s===r){l=!0,r=o,n=a;break}s=s.sibling}if(!l)throw Error(i(189))}}if(n.alternate!==r)throw Error(i(190))}if(3!==n.tag)throw Error(i(188));return n.stateNode.current===n?e:t}(e),!e)return null;for(var t=e;;){if(5===t.tag||6===t.tag)return t;if(t.child)t.child.return=t,t=t.child;else{if(t===e)break;for(;!t.sibling;){if(!t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}}return null}function Je(e,t){for(var n=e.alternate;null!==t;){if(t===e||t===n)return!0;t=t.return}return!1}var et,tt,nt,rt,at=!1,ot=[],it=null,lt=null,st=null,ut=new Map,ct=new Map,dt=[],ft="mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset submit".split(" ");function pt(e,t,n,r,a){return{blockedOn:e,domEventName:t,eventSystemFlags:16|n,nativeEvent:a,targetContainers:[r]}}function mt(e,t){switch(e){case"focusin":case"focusout":it=null;break;case"dragenter":case"dragleave":lt=null;break;case"mouseover":case"mouseout":st=null;break;case"pointerover":case"pointerout":ut.delete(t.pointerId);break;case"gotpointercapture":case"lostpointercapture":ct.delete(t.pointerId)}}function ht(e,t,n,r,a,o){return null===e||e.nativeEvent!==o?(e=pt(t,n,r,a,o),null!==t&&(null!==(t=na(t))&&tt(t)),e):(e.eventSystemFlags|=r,t=e.targetContainers,null!==a&&-1===t.indexOf(a)&&t.push(a),e)}function gt(e){var t=ta(e.target);if(null!==t){var n=qe(t);if(null!==n)if(13===(t=n.tag)){if(null!==(t=Ke(n)))return e.blockedOn=t,void rt(e.lanePriority,(function(){o.unstable_runWithPriority(e.priority,(function(){nt(n)}))}))}else if(3===t&&n.stateNode.hydrate)return void(e.blockedOn=3===n.tag?n.stateNode.containerInfo:null)}e.blockedOn=null}function bt(e){if(null!==e.blockedOn)return!1;for(var t=e.targetContainers;0<t.length;){var n=Xt(e.domEventName,e.eventSystemFlags,t[0],e.nativeEvent);if(null!==n)return null!==(t=na(n))&&tt(t),e.blockedOn=n,!1;t.shift()}return!0}function vt(e,t,n){bt(e)&&n.delete(t)}function yt(){for(at=!1;0<ot.length;){var e=ot[0];if(null!==e.blockedOn){null!==(e=na(e.blockedOn))&&et(e);break}for(var t=e.targetContainers;0<t.length;){var n=Xt(e.domEventName,e.eventSystemFlags,t[0],e.nativeEvent);if(null!==n){e.blockedOn=n;break}t.shift()}null===e.blockedOn&&ot.shift()}null!==it&&bt(it)&&(it=null),null!==lt&&bt(lt)&&(lt=null),null!==st&&bt(st)&&(st=null),ut.forEach(vt),ct.forEach(vt)}function wt(e,t){e.blockedOn===t&&(e.blockedOn=null,at||(at=!0,o.unstable_scheduleCallback(o.unstable_NormalPriority,yt)))}function Et(e){function t(t){return wt(t,e)}if(0<ot.length){wt(ot[0],e);for(var n=1;n<ot.length;n++){var r=ot[n];r.blockedOn===e&&(r.blockedOn=null)}}for(null!==it&&wt(it,e),null!==lt&&wt(lt,e),null!==st&&wt(st,e),ut.forEach(t),ct.forEach(t),n=0;n<dt.length;n++)(r=dt[n]).blockedOn===e&&(r.blockedOn=null);for(;0<dt.length&&null===(n=dt[0]).blockedOn;)gt(n),null===n.blockedOn&&dt.shift()}function kt(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n["Webkit"+e]="webkit"+t,n["Moz"+e]="moz"+t,n}var St={animationend:kt("Animation","AnimationEnd"),animationiteration:kt("Animation","AnimationIteration"),animationstart:kt("Animation","AnimationStart"),transitionend:kt("Transition","TransitionEnd")},xt={},Ct={};function _t(e){if(xt[e])return xt[e];if(!St[e])return e;var t,n=St[e];for(t in n)if(n.hasOwnProperty(t)&&t in Ct)return xt[e]=n[t];return e}d&&(Ct=document.createElement("div").style,"AnimationEvent"in window||(delete St.animationend.animation,delete St.animationiteration.animation,delete St.animationstart.animation),"TransitionEvent"in window||delete St.transitionend.transition);var Tt=_t("animationend"),At=_t("animationiteration"),Nt=_t("animationstart"),Lt=_t("transitionend"),Ot=new Map,Pt=new Map,Rt=["abort","abort",Tt,"animationEnd",At,"animationIteration",Nt,"animationStart","canplay","canPlay","canplaythrough","canPlayThrough","durationchange","durationChange","emptied","emptied","encrypted","encrypted","ended","ended","error","error","gotpointercapture","gotPointerCapture","load","load","loadeddata","loadedData","loadedmetadata","loadedMetadata","loadstart","loadStart","lostpointercapture","lostPointerCapture","playing","playing","progress","progress","seeking","seeking","stalled","stalled","suspend","suspend","timeupdate","timeUpdate",Lt,"transitionEnd","waiting","waiting"];function It(e,t){for(var n=0;n<e.length;n+=2){var r=e[n],a=e[n+1];a="on"+(a[0].toUpperCase()+a.slice(1)),Pt.set(r,t),Ot.set(r,a),u(a,[r])}}(0,o.unstable_now)();var Dt=8;function Mt(e){if(0!=(1&e))return Dt=15,1;if(0!=(2&e))return Dt=14,2;if(0!=(4&e))return Dt=13,4;var t=24&e;return 0!==t?(Dt=12,t):0!=(32&e)?(Dt=11,32):0!==(t=192&e)?(Dt=10,t):0!=(256&e)?(Dt=9,256):0!==(t=3584&e)?(Dt=8,t):0!=(4096&e)?(Dt=7,4096):0!==(t=4186112&e)?(Dt=6,t):0!==(t=62914560&e)?(Dt=5,t):67108864&e?(Dt=4,67108864):0!=(134217728&e)?(Dt=3,134217728):0!==(t=805306368&e)?(Dt=2,t):0!=(1073741824&e)?(Dt=1,1073741824):(Dt=8,e)}function Ft(e,t){var n=e.pendingLanes;if(0===n)return Dt=0;var r=0,a=0,o=e.expiredLanes,i=e.suspendedLanes,l=e.pingedLanes;if(0!==o)r=o,a=Dt=15;else if(0!==(o=134217727&n)){var s=o&~i;0!==s?(r=Mt(s),a=Dt):0!==(l&=o)&&(r=Mt(l),a=Dt)}else 0!==(o=n&~i)?(r=Mt(o),a=Dt):0!==l&&(r=Mt(l),a=Dt);if(0===r)return 0;if(r=n&((0>(r=31-Zt(r))?0:1<<r)<<1)-1,0!==t&&t!==r&&0==(t&i)){if(Mt(t),a<=Dt)return t;Dt=a}if(0!==(t=e.entangledLanes))for(e=e.entanglements,t&=r;0<t;)a=1<<(n=31-Zt(t)),r|=e[n],t&=~a;return r}function Bt(e){return 0!==(e=-1073741825&e.pendingLanes)?e:1073741824&e?1073741824:0}function Ut(e,t){switch(e){case 15:return 1;case 14:return 2;case 12:return 0===(e=$t(24&~t))?Ut(10,t):e;case 10:return 0===(e=$t(192&~t))?Ut(8,t):e;case 8:return 0===(e=$t(3584&~t))&&(0===(e=$t(4186112&~t))&&(e=512)),e;case 2:return 0===(t=$t(805306368&~t))&&(t=268435456),t}throw Error(i(358,e))}function $t(e){return e&-e}function jt(e){for(var t=[],n=0;31>n;n++)t.push(e);return t}function zt(e,t,n){e.pendingLanes|=t;var r=t-1;e.suspendedLanes&=r,e.pingedLanes&=r,(e=e.eventTimes)[t=31-Zt(t)]=n}var Zt=Math.clz32?Math.clz32:function(e){return 0===e?32:31-(Ht(e)/Yt|0)|0},Ht=Math.log,Yt=Math.LN2;var Vt=o.unstable_UserBlockingPriority,Wt=o.unstable_runWithPriority,Gt=!0;function qt(e,t,n,r){Me||Ie();var a=Qt,o=Me;Me=!0;try{Re(a,e,t,n,r)}finally{(Me=o)||Be()}}function Kt(e,t,n,r){Wt(Vt,Qt.bind(null,e,t,n,r))}function Qt(e,t,n,r){var a;if(Gt)if((a=0==(4&t))&&0<ot.length&&-1<ft.indexOf(e))e=pt(null,e,t,n,r),ot.push(e);else{var o=Xt(e,t,n,r);if(null===o)a&&mt(e,r);else{if(a){if(-1<ft.indexOf(e))return e=pt(o,e,t,n,r),void ot.push(e);if(function(e,t,n,r,a){switch(t){case"focusin":return it=ht(it,e,t,n,r,a),!0;case"dragenter":return lt=ht(lt,e,t,n,r,a),!0;case"mouseover":return st=ht(st,e,t,n,r,a),!0;case"pointerover":var o=a.pointerId;return ut.set(o,ht(ut.get(o)||null,e,t,n,r,a)),!0;case"gotpointercapture":return o=a.pointerId,ct.set(o,ht(ct.get(o)||null,e,t,n,r,a)),!0}return!1}(o,e,t,n,r))return;mt(e,r)}Ir(e,t,r,null,n)}}}function Xt(e,t,n,r){var a=Ce(r);if(null!==(a=ta(a))){var o=qe(a);if(null===o)a=null;else{var i=o.tag;if(13===i){if(null!==(a=Ke(o)))return a;a=null}else if(3===i){if(o.stateNode.hydrate)return 3===o.tag?o.stateNode.containerInfo:null;a=null}else o!==a&&(a=null)}}return Ir(e,t,r,a,n),null}var Jt=null,en=null,tn=null;function nn(){if(tn)return tn;var e,t,n=en,r=n.length,a="value"in Jt?Jt.value:Jt.textContent,o=a.length;for(e=0;e<r&&n[e]===a[e];e++);var i=r-e;for(t=1;t<=i&&n[r-t]===a[o-t];t++);return tn=a.slice(e,1<t?1-t:void 0)}function rn(e){var t=e.keyCode;return"charCode"in e?0===(e=e.charCode)&&13===t&&(e=13):e=t,10===e&&(e=13),32<=e||13===e?e:0}function an(){return!0}function on(){return!1}function ln(e){function t(t,n,r,a,o){for(var i in this._reactName=t,this._targetInst=r,this.type=n,this.nativeEvent=a,this.target=o,this.currentTarget=null,e)e.hasOwnProperty(i)&&(t=e[i],this[i]=t?t(a):a[i]);return this.isDefaultPrevented=(null!=a.defaultPrevented?a.defaultPrevented:!1===a.returnValue)?an:on,this.isPropagationStopped=on,this}return a(t.prototype,{preventDefault:function(){this.defaultPrevented=!0;var e=this.nativeEvent;e&&(e.preventDefault?e.preventDefault():"unknown"!=typeof e.returnValue&&(e.returnValue=!1),this.isDefaultPrevented=an)},stopPropagation:function(){var e=this.nativeEvent;e&&(e.stopPropagation?e.stopPropagation():"unknown"!=typeof e.cancelBubble&&(e.cancelBubble=!0),this.isPropagationStopped=an)},persist:function(){},isPersistent:an}),t}var sn,un,cn,dn={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},fn=ln(dn),pn=a({},dn,{view:0,detail:0}),mn=ln(pn),hn=a({},pn,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:Tn,button:0,buttons:0,relatedTarget:function(e){return void 0===e.relatedTarget?e.fromElement===e.srcElement?e.toElement:e.fromElement:e.relatedTarget},movementX:function(e){return"movementX"in e?e.movementX:(e!==cn&&(cn&&"mousemove"===e.type?(sn=e.screenX-cn.screenX,un=e.screenY-cn.screenY):un=sn=0,cn=e),sn)},movementY:function(e){return"movementY"in e?e.movementY:un}}),gn=ln(hn),bn=ln(a({},hn,{dataTransfer:0})),vn=ln(a({},pn,{relatedTarget:0})),yn=ln(a({},dn,{animationName:0,elapsedTime:0,pseudoElement:0})),wn=a({},dn,{clipboardData:function(e){return"clipboardData"in e?e.clipboardData:window.clipboardData}}),En=ln(wn),kn=ln(a({},dn,{data:0})),Sn={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},xn={8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",45:"Insert",46:"Delete",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"NumLock",145:"ScrollLock",224:"Meta"},Cn={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function _n(e){var t=this.nativeEvent;return t.getModifierState?t.getModifierState(e):!!(e=Cn[e])&&!!t[e]}function Tn(){return _n}var An=a({},pn,{key:function(e){if(e.key){var t=Sn[e.key]||e.key;if("Unidentified"!==t)return t}return"keypress"===e.type?13===(e=rn(e))?"Enter":String.fromCharCode(e):"keydown"===e.type||"keyup"===e.type?xn[e.keyCode]||"Unidentified":""},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:Tn,charCode:function(e){return"keypress"===e.type?rn(e):0},keyCode:function(e){return"keydown"===e.type||"keyup"===e.type?e.keyCode:0},which:function(e){return"keypress"===e.type?rn(e):"keydown"===e.type||"keyup"===e.type?e.keyCode:0}}),Nn=ln(An),Ln=ln(a({},hn,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0})),On=ln(a({},pn,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:Tn})),Pn=ln(a({},dn,{propertyName:0,elapsedTime:0,pseudoElement:0})),Rn=a({},hn,{deltaX:function(e){return"deltaX"in e?e.deltaX:"wheelDeltaX"in e?-e.wheelDeltaX:0},deltaY:function(e){return"deltaY"in e?e.deltaY:"wheelDeltaY"in e?-e.wheelDeltaY:"wheelDelta"in e?-e.wheelDelta:0},deltaZ:0,deltaMode:0}),In=ln(Rn),Dn=[9,13,27,32],Mn=d&&"CompositionEvent"in window,Fn=null;d&&"documentMode"in document&&(Fn=document.documentMode);var Bn=d&&"TextEvent"in window&&!Fn,Un=d&&(!Mn||Fn&&8<Fn&&11>=Fn),$n=String.fromCharCode(32),jn=!1;function zn(e,t){switch(e){case"keyup":return-1!==Dn.indexOf(t.keyCode);case"keydown":return 229!==t.keyCode;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function Zn(e){return"object"==typeof(e=e.detail)&&"data"in e?e.data:null}var Hn=!1;var Yn={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function Vn(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return"input"===t?!!Yn[e.type]:"textarea"===t}function Wn(e,t,n,r){Le(r),0<(t=Mr(t,"onChange")).length&&(n=new fn("onChange","change",null,n,r),e.push({event:n,listeners:t}))}var Gn=null,qn=null;function Kn(e){Ar(e,0)}function Qn(e){if(Q(ra(e)))return e}function Xn(e,t){if("change"===e)return t}var Jn=!1;if(d){var er;if(d){var tr="oninput"in document;if(!tr){var nr=document.createElement("div");nr.setAttribute("oninput","return;"),tr="function"==typeof nr.oninput}er=tr}else er=!1;Jn=er&&(!document.documentMode||9<document.documentMode)}function rr(){Gn&&(Gn.detachEvent("onpropertychange",ar),qn=Gn=null)}function ar(e){if("value"===e.propertyName&&Qn(qn)){var t=[];if(Wn(t,qn,e,Ce(e)),e=Kn,Me)e(t);else{Me=!0;try{Pe(e,t)}finally{Me=!1,Be()}}}}function or(e,t,n){"focusin"===e?(rr(),qn=n,(Gn=t).attachEvent("onpropertychange",ar)):"focusout"===e&&rr()}function ir(e){if("selectionchange"===e||"keyup"===e||"keydown"===e)return Qn(qn)}function lr(e,t){if("click"===e)return Qn(t)}function sr(e,t){if("input"===e||"change"===e)return Qn(t)}var ur="function"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t},cr=Object.prototype.hasOwnProperty;function dr(e,t){if(ur(e,t))return!0;if("object"!=typeof e||null===e||"object"!=typeof t||null===t)return!1;var n=Object.keys(e),r=Object.keys(t);if(n.length!==r.length)return!1;for(r=0;r<n.length;r++)if(!cr.call(t,n[r])||!ur(e[n[r]],t[n[r]]))return!1;return!0}function fr(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function pr(e,t){var n,r=fr(e);for(e=0;r;){if(3===r.nodeType){if(n=e+r.textContent.length,e<=t&&n>=t)return{node:r,offset:t-e};e=n}e:{for(;r;){if(r.nextSibling){r=r.nextSibling;break e}r=r.parentNode}r=void 0}r=fr(r)}}function mr(e,t){return!(!e||!t)&&(e===t||(!e||3!==e.nodeType)&&(t&&3===t.nodeType?mr(e,t.parentNode):"contains"in e?e.contains(t):!!e.compareDocumentPosition&&!!(16&e.compareDocumentPosition(t))))}function hr(){for(var e=window,t=X();t instanceof e.HTMLIFrameElement;){try{var n="string"==typeof t.contentWindow.location.href}catch(r){n=!1}if(!n)break;t=X((e=t.contentWindow).document)}return t}function gr(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&("input"===t&&("text"===e.type||"search"===e.type||"tel"===e.type||"url"===e.type||"password"===e.type)||"textarea"===t||"true"===e.contentEditable)}var br=d&&"documentMode"in document&&11>=document.documentMode,vr=null,yr=null,wr=null,Er=!1;function kr(e,t,n){var r=n.window===n?n.document:9===n.nodeType?n:n.ownerDocument;Er||null==vr||vr!==X(r)||("selectionStart"in(r=vr)&&gr(r)?r={start:r.selectionStart,end:r.selectionEnd}:r={anchorNode:(r=(r.ownerDocument&&r.ownerDocument.defaultView||window).getSelection()).anchorNode,anchorOffset:r.anchorOffset,focusNode:r.focusNode,focusOffset:r.focusOffset},wr&&dr(wr,r)||(wr=r,0<(r=Mr(yr,"onSelect")).length&&(t=new fn("onSelect","select",null,t,n),e.push({event:t,listeners:r}),t.target=vr)))}It("cancel cancel click click close close contextmenu contextMenu copy copy cut cut auxclick auxClick dblclick doubleClick dragend dragEnd dragstart dragStart drop drop focusin focus focusout blur input input invalid invalid keydown keyDown keypress keyPress keyup keyUp mousedown mouseDown mouseup mouseUp paste paste pause pause play play pointercancel pointerCancel pointerdown pointerDown pointerup pointerUp ratechange rateChange reset reset seeked seeked submit submit touchcancel touchCancel touchend touchEnd touchstart touchStart volumechange volumeChange".split(" "),0),It("drag drag dragenter dragEnter dragexit dragExit dragleave dragLeave dragover dragOver mousemove mouseMove mouseout mouseOut mouseover mouseOver pointermove pointerMove pointerout pointerOut pointerover pointerOver scroll scroll toggle toggle touchmove touchMove wheel wheel".split(" "),1),It(Rt,2);for(var Sr="change selectionchange textInput compositionstart compositionend compositionupdate".split(" "),xr=0;xr<Sr.length;xr++)Pt.set(Sr[xr],0);c("onMouseEnter",["mouseout","mouseover"]),c("onMouseLeave",["mouseout","mouseover"]),c("onPointerEnter",["pointerout","pointerover"]),c("onPointerLeave",["pointerout","pointerover"]),u("onChange","change click focusin focusout input keydown keyup selectionchange".split(" ")),u("onSelect","focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange".split(" ")),u("onBeforeInput",["compositionend","keypress","textInput","paste"]),u("onCompositionEnd","compositionend focusout keydown keypress keyup mousedown".split(" ")),u("onCompositionStart","compositionstart focusout keydown keypress keyup mousedown".split(" ")),u("onCompositionUpdate","compositionupdate focusout keydown keypress keyup mousedown".split(" "));var Cr="abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange seeked seeking stalled suspend timeupdate volumechange waiting".split(" "),_r=new Set("cancel close invalid load scroll toggle".split(" ").concat(Cr));function Tr(e,t,n){var r=e.type||"unknown-event";e.currentTarget=n,function(e,t,n,r,a,o,l,s,u){if(Ge.apply(this,arguments),Ze){if(!Ze)throw Error(i(198));var c=He;Ze=!1,He=null,Ye||(Ye=!0,Ve=c)}}(r,t,void 0,e),e.currentTarget=null}function Ar(e,t){t=0!=(4&t);for(var n=0;n<e.length;n++){var r=e[n],a=r.event;r=r.listeners;e:{var o=void 0;if(t)for(var i=r.length-1;0<=i;i--){var l=r[i],s=l.instance,u=l.currentTarget;if(l=l.listener,s!==o&&a.isPropagationStopped())break e;Tr(a,l,u),o=s}else for(i=0;i<r.length;i++){if(s=(l=r[i]).instance,u=l.currentTarget,l=l.listener,s!==o&&a.isPropagationStopped())break e;Tr(a,l,u),o=s}}}if(Ye)throw e=Ve,Ye=!1,Ve=null,e}function Nr(e,t){var n=oa(t),r=e+"__bubble";n.has(r)||(Rr(t,e,2,!1),n.add(r))}var Lr="_reactListening"+Math.random().toString(36).slice(2);function Or(e){e[Lr]||(e[Lr]=!0,l.forEach((function(t){_r.has(t)||Pr(t,!1,e,null),Pr(t,!0,e,null)})))}function Pr(e,t,n,r){var a=4<arguments.length&&void 0!==arguments[4]?arguments[4]:0,o=n;if("selectionchange"===e&&9!==n.nodeType&&(o=n.ownerDocument),null!==r&&!t&&_r.has(e)){if("scroll"!==e)return;a|=2,o=r}var i=oa(o),l=e+"__"+(t?"capture":"bubble");i.has(l)||(t&&(a|=4),Rr(o,e,a,t),i.add(l))}function Rr(e,t,n,r){var a=Pt.get(t);switch(void 0===a?2:a){case 0:a=qt;break;case 1:a=Kt;break;default:a=Qt}n=a.bind(null,t,n,e),a=void 0,!$e||"touchstart"!==t&&"touchmove"!==t&&"wheel"!==t||(a=!0),r?void 0!==a?e.addEventListener(t,n,{capture:!0,passive:a}):e.addEventListener(t,n,!0):void 0!==a?e.addEventListener(t,n,{passive:a}):e.addEventListener(t,n,!1)}function Ir(e,t,n,r,a){var o=r;if(0==(1&t)&&0==(2&t)&&null!==r)e:for(;;){if(null===r)return;var i=r.tag;if(3===i||4===i){var l=r.stateNode.containerInfo;if(l===a||8===l.nodeType&&l.parentNode===a)break;if(4===i)for(i=r.return;null!==i;){var s=i.tag;if((3===s||4===s)&&((s=i.stateNode.containerInfo)===a||8===s.nodeType&&s.parentNode===a))return;i=i.return}for(;null!==l;){if(null===(i=ta(l)))return;if(5===(s=i.tag)||6===s){r=o=i;continue e}l=l.parentNode}}r=r.return}!function(e,t,n){if(Fe)return e(t,n);Fe=!0;try{return De(e,t,n)}finally{Fe=!1,Be()}}((function(){var r=o,a=Ce(n),i=[];e:{var l=Ot.get(e);if(void 0!==l){var s=fn,u=e;switch(e){case"keypress":if(0===rn(n))break e;case"keydown":case"keyup":s=Nn;break;case"focusin":u="focus",s=vn;break;case"focusout":u="blur",s=vn;break;case"beforeblur":case"afterblur":s=vn;break;case"click":if(2===n.button)break e;case"auxclick":case"dblclick":case"mousedown":case"mousemove":case"mouseup":case"mouseout":case"mouseover":case"contextmenu":s=gn;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":s=bn;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":s=On;break;case Tt:case At:case Nt:s=yn;break;case Lt:s=Pn;break;case"scroll":s=mn;break;case"wheel":s=In;break;case"copy":case"cut":case"paste":s=En;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":s=Ln}var c=0!=(4&t),d=!c&&"scroll"===e,f=c?null!==l?l+"Capture":null:l;c=[];for(var p,m=r;null!==m;){var h=(p=m).stateNode;if(5===p.tag&&null!==h&&(p=h,null!==f&&(null!=(h=Ue(m,f))&&c.push(Dr(m,h,p)))),d)break;m=m.return}0<c.length&&(l=new s(l,u,null,n,a),i.push({event:l,listeners:c}))}}if(0==(7&t)){if(s="mouseout"===e||"pointerout"===e,(!(l="mouseover"===e||"pointerover"===e)||0!=(16&t)||!(u=n.relatedTarget||n.fromElement)||!ta(u)&&!u[Jr])&&(s||l)&&(l=a.window===a?a:(l=a.ownerDocument)?l.defaultView||l.parentWindow:window,s?(s=r,null!==(u=(u=n.relatedTarget||n.toElement)?ta(u):null)&&(u!==(d=qe(u))||5!==u.tag&&6!==u.tag)&&(u=null)):(s=null,u=r),s!==u)){if(c=gn,h="onMouseLeave",f="onMouseEnter",m="mouse","pointerout"!==e&&"pointerover"!==e||(c=Ln,h="onPointerLeave",f="onPointerEnter",m="pointer"),d=null==s?l:ra(s),p=null==u?l:ra(u),(l=new c(h,m+"leave",s,n,a)).target=d,l.relatedTarget=p,h=null,ta(a)===r&&((c=new c(f,m+"enter",u,n,a)).target=p,c.relatedTarget=d,h=c),d=h,s&&u)e:{for(f=u,m=0,p=c=s;p;p=Fr(p))m++;for(p=0,h=f;h;h=Fr(h))p++;for(;0<m-p;)c=Fr(c),m--;for(;0<p-m;)f=Fr(f),p--;for(;m--;){if(c===f||null!==f&&c===f.alternate)break e;c=Fr(c),f=Fr(f)}c=null}else c=null;null!==s&&Br(i,l,s,c,!1),null!==u&&null!==d&&Br(i,d,u,c,!0)}if("select"===(s=(l=r?ra(r):window).nodeName&&l.nodeName.toLowerCase())||"input"===s&&"file"===l.type)var g=Xn;else if(Vn(l))if(Jn)g=sr;else{g=ir;var b=or}else(s=l.nodeName)&&"input"===s.toLowerCase()&&("checkbox"===l.type||"radio"===l.type)&&(g=lr);switch(g&&(g=g(e,r))?Wn(i,g,n,a):(b&&b(e,l,r),"focusout"===e&&(b=l._wrapperState)&&b.controlled&&"number"===l.type&&ae(l,"number",l.value)),b=r?ra(r):window,e){case"focusin":(Vn(b)||"true"===b.contentEditable)&&(vr=b,yr=r,wr=null);break;case"focusout":wr=yr=vr=null;break;case"mousedown":Er=!0;break;case"contextmenu":case"mouseup":case"dragend":Er=!1,kr(i,n,a);break;case"selectionchange":if(br)break;case"keydown":case"keyup":kr(i,n,a)}var v;if(Mn)e:{switch(e){case"compositionstart":var y="onCompositionStart";break e;case"compositionend":y="onCompositionEnd";break e;case"compositionupdate":y="onCompositionUpdate";break e}y=void 0}else Hn?zn(e,n)&&(y="onCompositionEnd"):"keydown"===e&&229===n.keyCode&&(y="onCompositionStart");y&&(Un&&"ko"!==n.locale&&(Hn||"onCompositionStart"!==y?"onCompositionEnd"===y&&Hn&&(v=nn()):(en="value"in(Jt=a)?Jt.value:Jt.textContent,Hn=!0)),0<(b=Mr(r,y)).length&&(y=new kn(y,e,null,n,a),i.push({event:y,listeners:b}),v?y.data=v:null!==(v=Zn(n))&&(y.data=v))),(v=Bn?function(e,t){switch(e){case"compositionend":return Zn(t);case"keypress":return 32!==t.which?null:(jn=!0,$n);case"textInput":return(e=t.data)===$n&&jn?null:e;default:return null}}(e,n):function(e,t){if(Hn)return"compositionend"===e||!Mn&&zn(e,t)?(e=nn(),tn=en=Jt=null,Hn=!1,e):null;switch(e){case"paste":default:return null;case"keypress":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1<t.char.length)return t.char;if(t.which)return String.fromCharCode(t.which)}return null;case"compositionend":return Un&&"ko"!==t.locale?null:t.data}}(e,n))&&(0<(r=Mr(r,"onBeforeInput")).length&&(a=new kn("onBeforeInput","beforeinput",null,n,a),i.push({event:a,listeners:r}),a.data=v))}Ar(i,t)}))}function Dr(e,t,n){return{instance:e,listener:t,currentTarget:n}}function Mr(e,t){for(var n=t+"Capture",r=[];null!==e;){var a=e,o=a.stateNode;5===a.tag&&null!==o&&(a=o,null!=(o=Ue(e,n))&&r.unshift(Dr(e,o,a)),null!=(o=Ue(e,t))&&r.push(Dr(e,o,a))),e=e.return}return r}function Fr(e){if(null===e)return null;do{e=e.return}while(e&&5!==e.tag);return e||null}function Br(e,t,n,r,a){for(var o=t._reactName,i=[];null!==n&&n!==r;){var l=n,s=l.alternate,u=l.stateNode;if(null!==s&&s===r)break;5===l.tag&&null!==u&&(l=u,a?null!=(s=Ue(n,o))&&i.unshift(Dr(n,s,l)):a||null!=(s=Ue(n,o))&&i.push(Dr(n,s,l))),n=n.return}0!==i.length&&e.push({event:t,listeners:i})}function Ur(){}var $r=null,jr=null;function zr(e,t){switch(e){case"button":case"input":case"select":case"textarea":return!!t.autoFocus}return!1}function Zr(e,t){return"textarea"===e||"option"===e||"noscript"===e||"string"==typeof t.children||"number"==typeof t.children||"object"==typeof t.dangerouslySetInnerHTML&&null!==t.dangerouslySetInnerHTML&&null!=t.dangerouslySetInnerHTML.__html}var Hr="function"==typeof setTimeout?setTimeout:void 0,Yr="function"==typeof clearTimeout?clearTimeout:void 0;function Vr(e){1===e.nodeType?e.textContent="":9===e.nodeType&&(null!=(e=e.body)&&(e.textContent=""))}function Wr(e){for(;null!=e;e=e.nextSibling){var t=e.nodeType;if(1===t||3===t)break}return e}function Gr(e){e=e.previousSibling;for(var t=0;e;){if(8===e.nodeType){var n=e.data;if("$"===n||"$!"===n||"$?"===n){if(0===t)return e;t--}else"/$"===n&&t++}e=e.previousSibling}return null}var qr=0;var Kr=Math.random().toString(36).slice(2),Qr="__reactFiber$"+Kr,Xr="__reactProps$"+Kr,Jr="__reactContainer$"+Kr,ea="__reactEvents$"+Kr;function ta(e){var t=e[Qr];if(t)return t;for(var n=e.parentNode;n;){if(t=n[Jr]||n[Qr]){if(n=t.alternate,null!==t.child||null!==n&&null!==n.child)for(e=Gr(e);null!==e;){if(n=e[Qr])return n;e=Gr(e)}return t}n=(e=n).parentNode}return null}function na(e){return!(e=e[Qr]||e[Jr])||5!==e.tag&&6!==e.tag&&13!==e.tag&&3!==e.tag?null:e}function ra(e){if(5===e.tag||6===e.tag)return e.stateNode;throw Error(i(33))}function aa(e){return e[Xr]||null}function oa(e){var t=e[ea];return void 0===t&&(t=e[ea]=new Set),t}var ia=[],la=-1;function sa(e){return{current:e}}function ua(e){0>la||(e.current=ia[la],ia[la]=null,la--)}function ca(e,t){la++,ia[la]=e.current,e.current=t}var da={},fa=sa(da),pa=sa(!1),ma=da;function ha(e,t){var n=e.type.contextTypes;if(!n)return da;var r=e.stateNode;if(r&&r.__reactInternalMemoizedUnmaskedChildContext===t)return r.__reactInternalMemoizedMaskedChildContext;var a,o={};for(a in n)o[a]=t[a];return r&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=o),o}function ga(e){return null!=(e=e.childContextTypes)}function ba(){ua(pa),ua(fa)}function va(e,t,n){if(fa.current!==da)throw Error(i(168));ca(fa,t),ca(pa,n)}function ya(e,t,n){var r=e.stateNode;if(e=t.childContextTypes,"function"!=typeof r.getChildContext)return n;for(var o in r=r.getChildContext())if(!(o in e))throw Error(i(108,W(t)||"Unknown",o));return a({},n,r)}function wa(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||da,ma=fa.current,ca(fa,e),ca(pa,pa.current),!0}function Ea(e,t,n){var r=e.stateNode;if(!r)throw Error(i(169));n?(e=ya(e,t,ma),r.__reactInternalMemoizedMergedChildContext=e,ua(pa),ua(fa),ca(fa,e)):ua(pa),ca(pa,n)}var ka=null,Sa=null,xa=o.unstable_runWithPriority,Ca=o.unstable_scheduleCallback,_a=o.unstable_cancelCallback,Ta=o.unstable_shouldYield,Aa=o.unstable_requestPaint,Na=o.unstable_now,La=o.unstable_getCurrentPriorityLevel,Oa=o.unstable_ImmediatePriority,Pa=o.unstable_UserBlockingPriority,Ra=o.unstable_NormalPriority,Ia=o.unstable_LowPriority,Da=o.unstable_IdlePriority,Ma={},Fa=void 0!==Aa?Aa:function(){},Ba=null,Ua=null,$a=!1,ja=Na(),za=1e4>ja?Na:function(){return Na()-ja};function Za(){switch(La()){case Oa:return 99;case Pa:return 98;case Ra:return 97;case Ia:return 96;case Da:return 95;default:throw Error(i(332))}}function Ha(e){switch(e){case 99:return Oa;case 98:return Pa;case 97:return Ra;case 96:return Ia;case 95:return Da;default:throw Error(i(332))}}function Ya(e,t){return e=Ha(e),xa(e,t)}function Va(e,t,n){return e=Ha(e),Ca(e,t,n)}function Wa(){if(null!==Ua){var e=Ua;Ua=null,_a(e)}Ga()}function Ga(){if(!$a&&null!==Ba){$a=!0;var e=0;try{var t=Ba;Ya(99,(function(){for(;e<t.length;e++){var n=t[e];do{n=n(!0)}while(null!==n)}})),Ba=null}catch(n){throw null!==Ba&&(Ba=Ba.slice(e+1)),Ca(Oa,Wa),n}finally{$a=!1}}}var qa=E.ReactCurrentBatchConfig;function Ka(e,t){if(e&&e.defaultProps){for(var n in t=a({},t),e=e.defaultProps)void 0===t[n]&&(t[n]=e[n]);return t}return t}var Qa=sa(null),Xa=null,Ja=null,eo=null;function to(){eo=Ja=Xa=null}function no(e){var t=Qa.current;ua(Qa),e.type._context._currentValue=t}function ro(e,t){for(;null!==e;){var n=e.alternate;if((e.childLanes&t)===t){if(null===n||(n.childLanes&t)===t)break;n.childLanes|=t}else e.childLanes|=t,null!==n&&(n.childLanes|=t);e=e.return}}function ao(e,t){Xa=e,eo=Ja=null,null!==(e=e.dependencies)&&null!==e.firstContext&&(0!=(e.lanes&t)&&(Mi=!0),e.firstContext=null)}function oo(e,t){if(eo!==e&&!1!==t&&0!==t)if("number"==typeof t&&1073741823!==t||(eo=e,t=1073741823),t={context:e,observedBits:t,next:null},null===Ja){if(null===Xa)throw Error(i(308));Ja=t,Xa.dependencies={lanes:0,firstContext:t,responders:null}}else Ja=Ja.next=t;return e._currentValue}var io=!1;function lo(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null},effects:null}}function so(e,t){e=e.updateQueue,t.updateQueue===e&&(t.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,effects:e.effects})}function uo(e,t){return{eventTime:e,lane:t,tag:0,payload:null,callback:null,next:null}}function co(e,t){if(null!==(e=e.updateQueue)){var n=(e=e.shared).pending;null===n?t.next=t:(t.next=n.next,n.next=t),e.pending=t}}function fo(e,t){var n=e.updateQueue,r=e.alternate;if(null!==r&&n===(r=r.updateQueue)){var a=null,o=null;if(null!==(n=n.firstBaseUpdate)){do{var i={eventTime:n.eventTime,lane:n.lane,tag:n.tag,payload:n.payload,callback:n.callback,next:null};null===o?a=o=i:o=o.next=i,n=n.next}while(null!==n);null===o?a=o=t:o=o.next=t}else a=o=t;return n={baseState:r.baseState,firstBaseUpdate:a,lastBaseUpdate:o,shared:r.shared,effects:r.effects},void(e.updateQueue=n)}null===(e=n.lastBaseUpdate)?n.firstBaseUpdate=t:e.next=t,n.lastBaseUpdate=t}function po(e,t,n,r){var o=e.updateQueue;io=!1;var i=o.firstBaseUpdate,l=o.lastBaseUpdate,s=o.shared.pending;if(null!==s){o.shared.pending=null;var u=s,c=u.next;u.next=null,null===l?i=c:l.next=c,l=u;var d=e.alternate;if(null!==d){var f=(d=d.updateQueue).lastBaseUpdate;f!==l&&(null===f?d.firstBaseUpdate=c:f.next=c,d.lastBaseUpdate=u)}}if(null!==i){for(f=o.baseState,l=0,d=c=u=null;;){s=i.lane;var p=i.eventTime;if((r&s)===s){null!==d&&(d=d.next={eventTime:p,lane:0,tag:i.tag,payload:i.payload,callback:i.callback,next:null});e:{var m=e,h=i;switch(s=t,p=n,h.tag){case 1:if("function"==typeof(m=h.payload)){f=m.call(p,f,s);break e}f=m;break e;case 3:m.flags=-4097&m.flags|64;case 0:if(null==(s="function"==typeof(m=h.payload)?m.call(p,f,s):m))break e;f=a({},f,s);break e;case 2:io=!0}}null!==i.callback&&(e.flags|=32,null===(s=o.effects)?o.effects=[i]:s.push(i))}else p={eventTime:p,lane:s,tag:i.tag,payload:i.payload,callback:i.callback,next:null},null===d?(c=d=p,u=f):d=d.next=p,l|=s;if(null===(i=i.next)){if(null===(s=o.shared.pending))break;i=s.next,s.next=null,o.lastBaseUpdate=s,o.shared.pending=null}}null===d&&(u=f),o.baseState=u,o.firstBaseUpdate=c,o.lastBaseUpdate=d,jl|=l,e.lanes=l,e.memoizedState=f}}function mo(e,t,n){if(e=t.effects,t.effects=null,null!==e)for(t=0;t<e.length;t++){var r=e[t],a=r.callback;if(null!==a){if(r.callback=null,r=n,"function"!=typeof a)throw Error(i(191,a));a.call(r)}}}var ho=(new r.Component).refs;function go(e,t,n,r){n=null==(n=n(r,t=e.memoizedState))?t:a({},t,n),e.memoizedState=n,0===e.lanes&&(e.updateQueue.baseState=n)}var bo={isMounted:function(e){return!!(e=e._reactInternals)&&qe(e)===e},enqueueSetState:function(e,t,n){e=e._reactInternals;var r=fs(),a=ps(e),o=uo(r,a);o.payload=t,null!=n&&(o.callback=n),co(e,o),ms(e,a,r)},enqueueReplaceState:function(e,t,n){e=e._reactInternals;var r=fs(),a=ps(e),o=uo(r,a);o.tag=1,o.payload=t,null!=n&&(o.callback=n),co(e,o),ms(e,a,r)},enqueueForceUpdate:function(e,t){e=e._reactInternals;var n=fs(),r=ps(e),a=uo(n,r);a.tag=2,null!=t&&(a.callback=t),co(e,a),ms(e,r,n)}};function vo(e,t,n,r,a,o,i){return"function"==typeof(e=e.stateNode).shouldComponentUpdate?e.shouldComponentUpdate(r,o,i):!t.prototype||!t.prototype.isPureReactComponent||(!dr(n,r)||!dr(a,o))}function yo(e,t,n){var r=!1,a=da,o=t.contextType;return"object"==typeof o&&null!==o?o=oo(o):(a=ga(t)?ma:fa.current,o=(r=null!=(r=t.contextTypes))?ha(e,a):da),t=new t(n,o),e.memoizedState=null!==t.state&&void 0!==t.state?t.state:null,t.updater=bo,e.stateNode=t,t._reactInternals=e,r&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=a,e.__reactInternalMemoizedMaskedChildContext=o),t}function wo(e,t,n,r){e=t.state,"function"==typeof t.componentWillReceiveProps&&t.componentWillReceiveProps(n,r),"function"==typeof t.UNSAFE_componentWillReceiveProps&&t.UNSAFE_componentWillReceiveProps(n,r),t.state!==e&&bo.enqueueReplaceState(t,t.state,null)}function Eo(e,t,n,r){var a=e.stateNode;a.props=n,a.state=e.memoizedState,a.refs=ho,lo(e);var o=t.contextType;"object"==typeof o&&null!==o?a.context=oo(o):(o=ga(t)?ma:fa.current,a.context=ha(e,o)),po(e,n,a,r),a.state=e.memoizedState,"function"==typeof(o=t.getDerivedStateFromProps)&&(go(e,t,o,n),a.state=e.memoizedState),"function"==typeof t.getDerivedStateFromProps||"function"==typeof a.getSnapshotBeforeUpdate||"function"!=typeof a.UNSAFE_componentWillMount&&"function"!=typeof a.componentWillMount||(t=a.state,"function"==typeof a.componentWillMount&&a.componentWillMount(),"function"==typeof a.UNSAFE_componentWillMount&&a.UNSAFE_componentWillMount(),t!==a.state&&bo.enqueueReplaceState(a,a.state,null),po(e,n,a,r),a.state=e.memoizedState),"function"==typeof a.componentDidMount&&(e.flags|=4)}var ko=Array.isArray;function So(e,t,n){if(null!==(e=n.ref)&&"function"!=typeof e&&"object"!=typeof e){if(n._owner){if(n=n._owner){if(1!==n.tag)throw Error(i(309));var r=n.stateNode}if(!r)throw Error(i(147,e));var a=""+e;return null!==t&&null!==t.ref&&"function"==typeof t.ref&&t.ref._stringRef===a?t.ref:(t=function(e){var t=r.refs;t===ho&&(t=r.refs={}),null===e?delete t[a]:t[a]=e},t._stringRef=a,t)}if("string"!=typeof e)throw Error(i(284));if(!n._owner)throw Error(i(290,e))}return e}function xo(e,t){if("textarea"!==e.type)throw Error(i(31,"[object Object]"===Object.prototype.toString.call(t)?"object with keys {"+Object.keys(t).join(", ")+"}":t))}function Co(e){function t(t,n){if(e){var r=t.lastEffect;null!==r?(r.nextEffect=n,t.lastEffect=n):t.firstEffect=t.lastEffect=n,n.nextEffect=null,n.flags=8}}function n(n,r){if(!e)return null;for(;null!==r;)t(n,r),r=r.sibling;return null}function r(e,t){for(e=new Map;null!==t;)null!==t.key?e.set(t.key,t):e.set(t.index,t),t=t.sibling;return e}function a(e,t){return(e=Vs(e,t)).index=0,e.sibling=null,e}function o(t,n,r){return t.index=r,e?null!==(r=t.alternate)?(r=r.index)<n?(t.flags=2,n):r:(t.flags=2,n):n}function l(t){return e&&null===t.alternate&&(t.flags=2),t}function s(e,t,n,r){return null===t||6!==t.tag?((t=Ks(n,e.mode,r)).return=e,t):((t=a(t,n)).return=e,t)}function u(e,t,n,r){return null!==t&&t.elementType===n.type?((r=a(t,n.props)).ref=So(e,t,n),r.return=e,r):((r=Ws(n.type,n.key,n.props,null,e.mode,r)).ref=So(e,t,n),r.return=e,r)}function c(e,t,n,r){return null===t||4!==t.tag||t.stateNode.containerInfo!==n.containerInfo||t.stateNode.implementation!==n.implementation?((t=Qs(n,e.mode,r)).return=e,t):((t=a(t,n.children||[])).return=e,t)}function d(e,t,n,r,o){return null===t||7!==t.tag?((t=Gs(n,e.mode,r,o)).return=e,t):((t=a(t,n)).return=e,t)}function f(e,t,n){if("string"==typeof t||"number"==typeof t)return(t=Ks(""+t,e.mode,n)).return=e,t;if("object"==typeof t&&null!==t){switch(t.$$typeof){case k:return(n=Ws(t.type,t.key,t.props,null,e.mode,n)).ref=So(e,null,t),n.return=e,n;case S:return(t=Qs(t,e.mode,n)).return=e,t}if(ko(t)||z(t))return(t=Gs(t,e.mode,n,null)).return=e,t;xo(e,t)}return null}function p(e,t,n,r){var a=null!==t?t.key:null;if("string"==typeof n||"number"==typeof n)return null!==a?null:s(e,t,""+n,r);if("object"==typeof n&&null!==n){switch(n.$$typeof){case k:return n.key===a?n.type===x?d(e,t,n.props.children,r,a):u(e,t,n,r):null;case S:return n.key===a?c(e,t,n,r):null}if(ko(n)||z(n))return null!==a?null:d(e,t,n,r,null);xo(e,n)}return null}function m(e,t,n,r,a){if("string"==typeof r||"number"==typeof r)return s(t,e=e.get(n)||null,""+r,a);if("object"==typeof r&&null!==r){switch(r.$$typeof){case k:return e=e.get(null===r.key?n:r.key)||null,r.type===x?d(t,e,r.props.children,a,r.key):u(t,e,r,a);case S:return c(t,e=e.get(null===r.key?n:r.key)||null,r,a)}if(ko(r)||z(r))return d(t,e=e.get(n)||null,r,a,null);xo(t,r)}return null}function h(a,i,l,s){for(var u=null,c=null,d=i,h=i=0,g=null;null!==d&&h<l.length;h++){d.index>h?(g=d,d=null):g=d.sibling;var b=p(a,d,l[h],s);if(null===b){null===d&&(d=g);break}e&&d&&null===b.alternate&&t(a,d),i=o(b,i,h),null===c?u=b:c.sibling=b,c=b,d=g}if(h===l.length)return n(a,d),u;if(null===d){for(;h<l.length;h++)null!==(d=f(a,l[h],s))&&(i=o(d,i,h),null===c?u=d:c.sibling=d,c=d);return u}for(d=r(a,d);h<l.length;h++)null!==(g=m(d,a,h,l[h],s))&&(e&&null!==g.alternate&&d.delete(null===g.key?h:g.key),i=o(g,i,h),null===c?u=g:c.sibling=g,c=g);return e&&d.forEach((function(e){return t(a,e)})),u}function g(a,l,s,u){var c=z(s);if("function"!=typeof c)throw Error(i(150));if(null==(s=c.call(s)))throw Error(i(151));for(var d=c=null,h=l,g=l=0,b=null,v=s.next();null!==h&&!v.done;g++,v=s.next()){h.index>g?(b=h,h=null):b=h.sibling;var y=p(a,h,v.value,u);if(null===y){null===h&&(h=b);break}e&&h&&null===y.alternate&&t(a,h),l=o(y,l,g),null===d?c=y:d.sibling=y,d=y,h=b}if(v.done)return n(a,h),c;if(null===h){for(;!v.done;g++,v=s.next())null!==(v=f(a,v.value,u))&&(l=o(v,l,g),null===d?c=v:d.sibling=v,d=v);return c}for(h=r(a,h);!v.done;g++,v=s.next())null!==(v=m(h,a,g,v.value,u))&&(e&&null!==v.alternate&&h.delete(null===v.key?g:v.key),l=o(v,l,g),null===d?c=v:d.sibling=v,d=v);return e&&h.forEach((function(e){return t(a,e)})),c}return function(e,r,o,s){var u="object"==typeof o&&null!==o&&o.type===x&&null===o.key;u&&(o=o.props.children);var c="object"==typeof o&&null!==o;if(c)switch(o.$$typeof){case k:e:{for(c=o.key,u=r;null!==u;){if(u.key===c){if(7===u.tag){if(o.type===x){n(e,u.sibling),(r=a(u,o.props.children)).return=e,e=r;break e}}else if(u.elementType===o.type){n(e,u.sibling),(r=a(u,o.props)).ref=So(e,u,o),r.return=e,e=r;break e}n(e,u);break}t(e,u),u=u.sibling}o.type===x?((r=Gs(o.props.children,e.mode,s,o.key)).return=e,e=r):((s=Ws(o.type,o.key,o.props,null,e.mode,s)).ref=So(e,r,o),s.return=e,e=s)}return l(e);case S:e:{for(u=o.key;null!==r;){if(r.key===u){if(4===r.tag&&r.stateNode.containerInfo===o.containerInfo&&r.stateNode.implementation===o.implementation){n(e,r.sibling),(r=a(r,o.children||[])).return=e,e=r;break e}n(e,r);break}t(e,r),r=r.sibling}(r=Qs(o,e.mode,s)).return=e,e=r}return l(e)}if("string"==typeof o||"number"==typeof o)return o=""+o,null!==r&&6===r.tag?(n(e,r.sibling),(r=a(r,o)).return=e,e=r):(n(e,r),(r=Ks(o,e.mode,s)).return=e,e=r),l(e);if(ko(o))return h(e,r,o,s);if(z(o))return g(e,r,o,s);if(c&&xo(e,o),void 0===o&&!u)switch(e.tag){case 1:case 22:case 0:case 11:case 15:throw Error(i(152,W(e.type)||"Component"))}return n(e,r)}}var _o=Co(!0),To=Co(!1),Ao={},No=sa(Ao),Lo=sa(Ao),Oo=sa(Ao);function Po(e){if(e===Ao)throw Error(i(174));return e}function Ro(e,t){switch(ca(Oo,t),ca(Lo,e),ca(No,Ao),e=t.nodeType){case 9:case 11:t=(t=t.documentElement)?t.namespaceURI:pe(null,"");break;default:t=pe(t=(e=8===e?t.parentNode:t).namespaceURI||null,e=e.tagName)}ua(No),ca(No,t)}function Io(){ua(No),ua(Lo),ua(Oo)}function Do(e){Po(Oo.current);var t=Po(No.current),n=pe(t,e.type);t!==n&&(ca(Lo,e),ca(No,n))}function Mo(e){Lo.current===e&&(ua(No),ua(Lo))}var Fo=sa(0);function Bo(e){for(var t=e;null!==t;){if(13===t.tag){var n=t.memoizedState;if(null!==n&&(null===(n=n.dehydrated)||"$?"===n.data||"$!"===n.data))return t}else if(19===t.tag&&void 0!==t.memoizedProps.revealOrder){if(0!=(64&t.flags))return t}else if(null!==t.child){t.child.return=t,t=t.child;continue}if(t===e)break;for(;null===t.sibling;){if(null===t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}var Uo=null,$o=null,jo=!1;function zo(e,t){var n=Hs(5,null,null,0);n.elementType="DELETED",n.type="DELETED",n.stateNode=t,n.return=e,n.flags=8,null!==e.lastEffect?(e.lastEffect.nextEffect=n,e.lastEffect=n):e.firstEffect=e.lastEffect=n}function Zo(e,t){switch(e.tag){case 5:var n=e.type;return null!==(t=1!==t.nodeType||n.toLowerCase()!==t.nodeName.toLowerCase()?null:t)&&(e.stateNode=t,!0);case 6:return null!==(t=""===e.pendingProps||3!==t.nodeType?null:t)&&(e.stateNode=t,!0);default:return!1}}function Ho(e){if(jo){var t=$o;if(t){var n=t;if(!Zo(e,t)){if(!(t=Wr(n.nextSibling))||!Zo(e,t))return e.flags=-1025&e.flags|2,jo=!1,void(Uo=e);zo(Uo,n)}Uo=e,$o=Wr(t.firstChild)}else e.flags=-1025&e.flags|2,jo=!1,Uo=e}}function Yo(e){for(e=e.return;null!==e&&5!==e.tag&&3!==e.tag&&13!==e.tag;)e=e.return;Uo=e}function Vo(e){if(e!==Uo)return!1;if(!jo)return Yo(e),jo=!0,!1;var t=e.type;if(5!==e.tag||"head"!==t&&"body"!==t&&!Zr(t,e.memoizedProps))for(t=$o;t;)zo(e,t),t=Wr(t.nextSibling);if(Yo(e),13===e.tag){if(!(e=null!==(e=e.memoizedState)?e.dehydrated:null))throw Error(i(317));e:{for(e=e.nextSibling,t=0;e;){if(8===e.nodeType){var n=e.data;if("/$"===n){if(0===t){$o=Wr(e.nextSibling);break e}t--}else"$"!==n&&"$!"!==n&&"$?"!==n||t++}e=e.nextSibling}$o=null}}else $o=Uo?Wr(e.stateNode.nextSibling):null;return!0}function Wo(){$o=Uo=null,jo=!1}var Go=[];function qo(){for(var e=0;e<Go.length;e++)Go[e]._workInProgressVersionPrimary=null;Go.length=0}var Ko=E.ReactCurrentDispatcher,Qo=E.ReactCurrentBatchConfig,Xo=0,Jo=null,ei=null,ti=null,ni=!1,ri=!1;function ai(){throw Error(i(321))}function oi(e,t){if(null===t)return!1;for(var n=0;n<t.length&&n<e.length;n++)if(!ur(e[n],t[n]))return!1;return!0}function ii(e,t,n,r,a,o){if(Xo=o,Jo=t,t.memoizedState=null,t.updateQueue=null,t.lanes=0,Ko.current=null===e||null===e.memoizedState?Pi:Ri,e=n(r,a),ri){o=0;do{if(ri=!1,!(25>o))throw Error(i(301));o+=1,ti=ei=null,t.updateQueue=null,Ko.current=Ii,e=n(r,a)}while(ri)}if(Ko.current=Oi,t=null!==ei&&null!==ei.next,Xo=0,ti=ei=Jo=null,ni=!1,t)throw Error(i(300));return e}function li(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return null===ti?Jo.memoizedState=ti=e:ti=ti.next=e,ti}function si(){if(null===ei){var e=Jo.alternate;e=null!==e?e.memoizedState:null}else e=ei.next;var t=null===ti?Jo.memoizedState:ti.next;if(null!==t)ti=t,ei=e;else{if(null===e)throw Error(i(310));e={memoizedState:(ei=e).memoizedState,baseState:ei.baseState,baseQueue:ei.baseQueue,queue:ei.queue,next:null},null===ti?Jo.memoizedState=ti=e:ti=ti.next=e}return ti}function ui(e,t){return"function"==typeof t?t(e):t}function ci(e){var t=si(),n=t.queue;if(null===n)throw Error(i(311));n.lastRenderedReducer=e;var r=ei,a=r.baseQueue,o=n.pending;if(null!==o){if(null!==a){var l=a.next;a.next=o.next,o.next=l}r.baseQueue=a=o,n.pending=null}if(null!==a){a=a.next,r=r.baseState;var s=l=o=null,u=a;do{var c=u.lane;if((Xo&c)===c)null!==s&&(s=s.next={lane:0,action:u.action,eagerReducer:u.eagerReducer,eagerState:u.eagerState,next:null}),r=u.eagerReducer===e?u.eagerState:e(r,u.action);else{var d={lane:c,action:u.action,eagerReducer:u.eagerReducer,eagerState:u.eagerState,next:null};null===s?(l=s=d,o=r):s=s.next=d,Jo.lanes|=c,jl|=c}u=u.next}while(null!==u&&u!==a);null===s?o=r:s.next=l,ur(r,t.memoizedState)||(Mi=!0),t.memoizedState=r,t.baseState=o,t.baseQueue=s,n.lastRenderedState=r}return[t.memoizedState,n.dispatch]}function di(e){var t=si(),n=t.queue;if(null===n)throw Error(i(311));n.lastRenderedReducer=e;var r=n.dispatch,a=n.pending,o=t.memoizedState;if(null!==a){n.pending=null;var l=a=a.next;do{o=e(o,l.action),l=l.next}while(l!==a);ur(o,t.memoizedState)||(Mi=!0),t.memoizedState=o,null===t.baseQueue&&(t.baseState=o),n.lastRenderedState=o}return[o,r]}function fi(e,t,n){var r=t._getVersion;r=r(t._source);var a=t._workInProgressVersionPrimary;if(null!==a?e=a===r:(e=e.mutableReadLanes,(e=(Xo&e)===e)&&(t._workInProgressVersionPrimary=r,Go.push(t))),e)return n(t._source);throw Go.push(t),Error(i(350))}function pi(e,t,n,r){var a=Rl;if(null===a)throw Error(i(349));var o=t._getVersion,l=o(t._source),s=Ko.current,u=s.useState((function(){return fi(a,t,n)})),c=u[1],d=u[0];u=ti;var f=e.memoizedState,p=f.refs,m=p.getSnapshot,h=f.source;f=f.subscribe;var g=Jo;return e.memoizedState={refs:p,source:t,subscribe:r},s.useEffect((function(){p.getSnapshot=n,p.setSnapshot=c;var e=o(t._source);if(!ur(l,e)){e=n(t._source),ur(d,e)||(c(e),e=ps(g),a.mutableReadLanes|=e&a.pendingLanes),e=a.mutableReadLanes,a.entangledLanes|=e;for(var r=a.entanglements,i=e;0<i;){var s=31-Zt(i),u=1<<s;r[s]|=e,i&=~u}}}),[n,t,r]),s.useEffect((function(){return r(t._source,(function(){var e=p.getSnapshot,n=p.setSnapshot;try{n(e(t._source));var r=ps(g);a.mutableReadLanes|=r&a.pendingLanes}catch(o){n((function(){throw o}))}}))}),[t,r]),ur(m,n)&&ur(h,t)&&ur(f,r)||((e={pending:null,dispatch:null,lastRenderedReducer:ui,lastRenderedState:d}).dispatch=c=Li.bind(null,Jo,e),u.queue=e,u.baseQueue=null,d=fi(a,t,n),u.memoizedState=u.baseState=d),d}function mi(e,t,n){return pi(si(),e,t,n)}function hi(e){var t=li();return"function"==typeof e&&(e=e()),t.memoizedState=t.baseState=e,e=(e=t.queue={pending:null,dispatch:null,lastRenderedReducer:ui,lastRenderedState:e}).dispatch=Li.bind(null,Jo,e),[t.memoizedState,e]}function gi(e,t,n,r){return e={tag:e,create:t,destroy:n,deps:r,next:null},null===(t=Jo.updateQueue)?(t={lastEffect:null},Jo.updateQueue=t,t.lastEffect=e.next=e):null===(n=t.lastEffect)?t.lastEffect=e.next=e:(r=n.next,n.next=e,e.next=r,t.lastEffect=e),e}function bi(e){return e={current:e},li().memoizedState=e}function vi(){return si().memoizedState}function yi(e,t,n,r){var a=li();Jo.flags|=e,a.memoizedState=gi(1|t,n,void 0,void 0===r?null:r)}function wi(e,t,n,r){var a=si();r=void 0===r?null:r;var o=void 0;if(null!==ei){var i=ei.memoizedState;if(o=i.destroy,null!==r&&oi(r,i.deps))return void gi(t,n,o,r)}Jo.flags|=e,a.memoizedState=gi(1|t,n,o,r)}function Ei(e,t){return yi(516,4,e,t)}function ki(e,t){return wi(516,4,e,t)}function Si(e,t){return wi(4,2,e,t)}function xi(e,t){return"function"==typeof t?(e=e(),t(e),function(){t(null)}):null!=t?(e=e(),t.current=e,function(){t.current=null}):void 0}function Ci(e,t,n){return n=null!=n?n.concat([e]):null,wi(4,2,xi.bind(null,t,e),n)}function _i(){}function Ti(e,t){var n=si();t=void 0===t?null:t;var r=n.memoizedState;return null!==r&&null!==t&&oi(t,r[1])?r[0]:(n.memoizedState=[e,t],e)}function Ai(e,t){var n=si();t=void 0===t?null:t;var r=n.memoizedState;return null!==r&&null!==t&&oi(t,r[1])?r[0]:(e=e(),n.memoizedState=[e,t],e)}function Ni(e,t){var n=Za();Ya(98>n?98:n,(function(){e(!0)})),Ya(97<n?97:n,(function(){var n=Qo.transition;Qo.transition=1;try{e(!1),t()}finally{Qo.transition=n}}))}function Li(e,t,n){var r=fs(),a=ps(e),o={lane:a,action:n,eagerReducer:null,eagerState:null,next:null},i=t.pending;if(null===i?o.next=o:(o.next=i.next,i.next=o),t.pending=o,i=e.alternate,e===Jo||null!==i&&i===Jo)ri=ni=!0;else{if(0===e.lanes&&(null===i||0===i.lanes)&&null!==(i=t.lastRenderedReducer))try{var l=t.lastRenderedState,s=i(l,n);if(o.eagerReducer=i,o.eagerState=s,ur(s,l))return}catch(u){}ms(e,a,r)}}var Oi={readContext:oo,useCallback:ai,useContext:ai,useEffect:ai,useImperativeHandle:ai,useLayoutEffect:ai,useMemo:ai,useReducer:ai,useRef:ai,useState:ai,useDebugValue:ai,useDeferredValue:ai,useTransition:ai,useMutableSource:ai,useOpaqueIdentifier:ai,unstable_isNewReconciler:!1},Pi={readContext:oo,useCallback:function(e,t){return li().memoizedState=[e,void 0===t?null:t],e},useContext:oo,useEffect:Ei,useImperativeHandle:function(e,t,n){return n=null!=n?n.concat([e]):null,yi(4,2,xi.bind(null,t,e),n)},useLayoutEffect:function(e,t){return yi(4,2,e,t)},useMemo:function(e,t){var n=li();return t=void 0===t?null:t,e=e(),n.memoizedState=[e,t],e},useReducer:function(e,t,n){var r=li();return t=void 0!==n?n(t):t,r.memoizedState=r.baseState=t,e=(e=r.queue={pending:null,dispatch:null,lastRenderedReducer:e,lastRenderedState:t}).dispatch=Li.bind(null,Jo,e),[r.memoizedState,e]},useRef:bi,useState:hi,useDebugValue:_i,useDeferredValue:function(e){var t=hi(e),n=t[0],r=t[1];return Ei((function(){var t=Qo.transition;Qo.transition=1;try{r(e)}finally{Qo.transition=t}}),[e]),n},useTransition:function(){var e=hi(!1),t=e[0];return bi(e=Ni.bind(null,e[1])),[e,t]},useMutableSource:function(e,t,n){var r=li();return r.memoizedState={refs:{getSnapshot:t,setSnapshot:null},source:e,subscribe:n},pi(r,e,t,n)},useOpaqueIdentifier:function(){if(jo){var e=!1,t=function(e){return{$$typeof:D,toString:e,valueOf:e}}((function(){throw e||(e=!0,n("r:"+(qr++).toString(36))),Error(i(355))})),n=hi(t)[1];return 0==(2&Jo.mode)&&(Jo.flags|=516,gi(5,(function(){n("r:"+(qr++).toString(36))}),void 0,null)),t}return hi(t="r:"+(qr++).toString(36)),t},unstable_isNewReconciler:!1},Ri={readContext:oo,useCallback:Ti,useContext:oo,useEffect:ki,useImperativeHandle:Ci,useLayoutEffect:Si,useMemo:Ai,useReducer:ci,useRef:vi,useState:function(){return ci(ui)},useDebugValue:_i,useDeferredValue:function(e){var t=ci(ui),n=t[0],r=t[1];return ki((function(){var t=Qo.transition;Qo.transition=1;try{r(e)}finally{Qo.transition=t}}),[e]),n},useTransition:function(){var e=ci(ui)[0];return[vi().current,e]},useMutableSource:mi,useOpaqueIdentifier:function(){return ci(ui)[0]},unstable_isNewReconciler:!1},Ii={readContext:oo,useCallback:Ti,useContext:oo,useEffect:ki,useImperativeHandle:Ci,useLayoutEffect:Si,useMemo:Ai,useReducer:di,useRef:vi,useState:function(){return di(ui)},useDebugValue:_i,useDeferredValue:function(e){var t=di(ui),n=t[0],r=t[1];return ki((function(){var t=Qo.transition;Qo.transition=1;try{r(e)}finally{Qo.transition=t}}),[e]),n},useTransition:function(){var e=di(ui)[0];return[vi().current,e]},useMutableSource:mi,useOpaqueIdentifier:function(){return di(ui)[0]},unstable_isNewReconciler:!1},Di=E.ReactCurrentOwner,Mi=!1;function Fi(e,t,n,r){t.child=null===e?To(t,null,n,r):_o(t,e.child,n,r)}function Bi(e,t,n,r,a){n=n.render;var o=t.ref;return ao(t,a),r=ii(e,t,n,r,o,a),null===e||Mi?(t.flags|=1,Fi(e,t,r,a),t.child):(t.updateQueue=e.updateQueue,t.flags&=-517,e.lanes&=~a,ol(e,t,a))}function Ui(e,t,n,r,a,o){if(null===e){var i=n.type;return"function"!=typeof i||Ys(i)||void 0!==i.defaultProps||null!==n.compare||void 0!==n.defaultProps?((e=Ws(n.type,null,r,t,t.mode,o)).ref=t.ref,e.return=t,t.child=e):(t.tag=15,t.type=i,$i(e,t,i,r,a,o))}return i=e.child,0==(a&o)&&(a=i.memoizedProps,(n=null!==(n=n.compare)?n:dr)(a,r)&&e.ref===t.ref)?ol(e,t,o):(t.flags|=1,(e=Vs(i,r)).ref=t.ref,e.return=t,t.child=e)}function $i(e,t,n,r,a,o){if(null!==e&&dr(e.memoizedProps,r)&&e.ref===t.ref){if(Mi=!1,0==(o&a))return t.lanes=e.lanes,ol(e,t,o);0!=(16384&e.flags)&&(Mi=!0)}return Zi(e,t,n,r,o)}function ji(e,t,n){var r=t.pendingProps,a=r.children,o=null!==e?e.memoizedState:null;if("hidden"===r.mode||"unstable-defer-without-hiding"===r.mode)if(0==(4&t.mode))t.memoizedState={baseLanes:0},ks(t,n);else{if(0==(1073741824&n))return e=null!==o?o.baseLanes|n:n,t.lanes=t.childLanes=1073741824,t.memoizedState={baseLanes:e},ks(t,e),null;t.memoizedState={baseLanes:0},ks(t,null!==o?o.baseLanes:n)}else null!==o?(r=o.baseLanes|n,t.memoizedState=null):r=n,ks(t,r);return Fi(e,t,a,n),t.child}function zi(e,t){var n=t.ref;(null===e&&null!==n||null!==e&&e.ref!==n)&&(t.flags|=128)}function Zi(e,t,n,r,a){var o=ga(n)?ma:fa.current;return o=ha(t,o),ao(t,a),n=ii(e,t,n,r,o,a),null===e||Mi?(t.flags|=1,Fi(e,t,n,a),t.child):(t.updateQueue=e.updateQueue,t.flags&=-517,e.lanes&=~a,ol(e,t,a))}function Hi(e,t,n,r,a){if(ga(n)){var o=!0;wa(t)}else o=!1;if(ao(t,a),null===t.stateNode)null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),yo(t,n,r),Eo(t,n,r,a),r=!0;else if(null===e){var i=t.stateNode,l=t.memoizedProps;i.props=l;var s=i.context,u=n.contextType;"object"==typeof u&&null!==u?u=oo(u):u=ha(t,u=ga(n)?ma:fa.current);var c=n.getDerivedStateFromProps,d="function"==typeof c||"function"==typeof i.getSnapshotBeforeUpdate;d||"function"!=typeof i.UNSAFE_componentWillReceiveProps&&"function"!=typeof i.componentWillReceiveProps||(l!==r||s!==u)&&wo(t,i,r,u),io=!1;var f=t.memoizedState;i.state=f,po(t,r,i,a),s=t.memoizedState,l!==r||f!==s||pa.current||io?("function"==typeof c&&(go(t,n,c,r),s=t.memoizedState),(l=io||vo(t,n,l,r,f,s,u))?(d||"function"!=typeof i.UNSAFE_componentWillMount&&"function"!=typeof i.componentWillMount||("function"==typeof i.componentWillMount&&i.componentWillMount(),"function"==typeof i.UNSAFE_componentWillMount&&i.UNSAFE_componentWillMount()),"function"==typeof i.componentDidMount&&(t.flags|=4)):("function"==typeof i.componentDidMount&&(t.flags|=4),t.memoizedProps=r,t.memoizedState=s),i.props=r,i.state=s,i.context=u,r=l):("function"==typeof i.componentDidMount&&(t.flags|=4),r=!1)}else{i=t.stateNode,so(e,t),l=t.memoizedProps,u=t.type===t.elementType?l:Ka(t.type,l),i.props=u,d=t.pendingProps,f=i.context,"object"==typeof(s=n.contextType)&&null!==s?s=oo(s):s=ha(t,s=ga(n)?ma:fa.current);var p=n.getDerivedStateFromProps;(c="function"==typeof p||"function"==typeof i.getSnapshotBeforeUpdate)||"function"!=typeof i.UNSAFE_componentWillReceiveProps&&"function"!=typeof i.componentWillReceiveProps||(l!==d||f!==s)&&wo(t,i,r,s),io=!1,f=t.memoizedState,i.state=f,po(t,r,i,a);var m=t.memoizedState;l!==d||f!==m||pa.current||io?("function"==typeof p&&(go(t,n,p,r),m=t.memoizedState),(u=io||vo(t,n,u,r,f,m,s))?(c||"function"!=typeof i.UNSAFE_componentWillUpdate&&"function"!=typeof i.componentWillUpdate||("function"==typeof i.componentWillUpdate&&i.componentWillUpdate(r,m,s),"function"==typeof i.UNSAFE_componentWillUpdate&&i.UNSAFE_componentWillUpdate(r,m,s)),"function"==typeof i.componentDidUpdate&&(t.flags|=4),"function"==typeof i.getSnapshotBeforeUpdate&&(t.flags|=256)):("function"!=typeof i.componentDidUpdate||l===e.memoizedProps&&f===e.memoizedState||(t.flags|=4),"function"!=typeof i.getSnapshotBeforeUpdate||l===e.memoizedProps&&f===e.memoizedState||(t.flags|=256),t.memoizedProps=r,t.memoizedState=m),i.props=r,i.state=m,i.context=s,r=u):("function"!=typeof i.componentDidUpdate||l===e.memoizedProps&&f===e.memoizedState||(t.flags|=4),"function"!=typeof i.getSnapshotBeforeUpdate||l===e.memoizedProps&&f===e.memoizedState||(t.flags|=256),r=!1)}return Yi(e,t,n,r,o,a)}function Yi(e,t,n,r,a,o){zi(e,t);var i=0!=(64&t.flags);if(!r&&!i)return a&&Ea(t,n,!1),ol(e,t,o);r=t.stateNode,Di.current=t;var l=i&&"function"!=typeof n.getDerivedStateFromError?null:r.render();return t.flags|=1,null!==e&&i?(t.child=_o(t,e.child,null,o),t.child=_o(t,null,l,o)):Fi(e,t,l,o),t.memoizedState=r.state,a&&Ea(t,n,!0),t.child}function Vi(e){var t=e.stateNode;t.pendingContext?va(0,t.pendingContext,t.pendingContext!==t.context):t.context&&va(0,t.context,!1),Ro(e,t.containerInfo)}var Wi,Gi,qi,Ki,Qi={dehydrated:null,retryLane:0};function Xi(e,t,n){var r,a=t.pendingProps,o=Fo.current,i=!1;return(r=0!=(64&t.flags))||(r=(null===e||null!==e.memoizedState)&&0!=(2&o)),r?(i=!0,t.flags&=-65):null!==e&&null===e.memoizedState||void 0===a.fallback||!0===a.unstable_avoidThisFallback||(o|=1),ca(Fo,1&o),null===e?(void 0!==a.fallback&&Ho(t),e=a.children,o=a.fallback,i?(e=Ji(t,e,o,n),t.child.memoizedState={baseLanes:n},t.memoizedState=Qi,e):"number"==typeof a.unstable_expectedLoadTime?(e=Ji(t,e,o,n),t.child.memoizedState={baseLanes:n},t.memoizedState=Qi,t.lanes=33554432,e):((n=qs({mode:"visible",children:e},t.mode,n,null)).return=t,t.child=n)):(e.memoizedState,i?(a=tl(e,t,a.children,a.fallback,n),i=t.child,o=e.child.memoizedState,i.memoizedState=null===o?{baseLanes:n}:{baseLanes:o.baseLanes|n},i.childLanes=e.childLanes&~n,t.memoizedState=Qi,a):(n=el(e,t,a.children,n),t.memoizedState=null,n))}function Ji(e,t,n,r){var a=e.mode,o=e.child;return t={mode:"hidden",children:t},0==(2&a)&&null!==o?(o.childLanes=0,o.pendingProps=t):o=qs(t,a,0,null),n=Gs(n,a,r,null),o.return=e,n.return=e,o.sibling=n,e.child=o,n}function el(e,t,n,r){var a=e.child;return e=a.sibling,n=Vs(a,{mode:"visible",children:n}),0==(2&t.mode)&&(n.lanes=r),n.return=t,n.sibling=null,null!==e&&(e.nextEffect=null,e.flags=8,t.firstEffect=t.lastEffect=e),t.child=n}function tl(e,t,n,r,a){var o=t.mode,i=e.child;e=i.sibling;var l={mode:"hidden",children:n};return 0==(2&o)&&t.child!==i?((n=t.child).childLanes=0,n.pendingProps=l,null!==(i=n.lastEffect)?(t.firstEffect=n.firstEffect,t.lastEffect=i,i.nextEffect=null):t.firstEffect=t.lastEffect=null):n=Vs(i,l),null!==e?r=Vs(e,r):(r=Gs(r,o,a,null)).flags|=2,r.return=t,n.return=t,n.sibling=r,t.child=n,r}function nl(e,t){e.lanes|=t;var n=e.alternate;null!==n&&(n.lanes|=t),ro(e.return,t)}function rl(e,t,n,r,a,o){var i=e.memoizedState;null===i?e.memoizedState={isBackwards:t,rendering:null,renderingStartTime:0,last:r,tail:n,tailMode:a,lastEffect:o}:(i.isBackwards=t,i.rendering=null,i.renderingStartTime=0,i.last=r,i.tail=n,i.tailMode=a,i.lastEffect=o)}function al(e,t,n){var r=t.pendingProps,a=r.revealOrder,o=r.tail;if(Fi(e,t,r.children,n),0!=(2&(r=Fo.current)))r=1&r|2,t.flags|=64;else{if(null!==e&&0!=(64&e.flags))e:for(e=t.child;null!==e;){if(13===e.tag)null!==e.memoizedState&&nl(e,n);else if(19===e.tag)nl(e,n);else if(null!==e.child){e.child.return=e,e=e.child;continue}if(e===t)break e;for(;null===e.sibling;){if(null===e.return||e.return===t)break e;e=e.return}e.sibling.return=e.return,e=e.sibling}r&=1}if(ca(Fo,r),0==(2&t.mode))t.memoizedState=null;else switch(a){case"forwards":for(n=t.child,a=null;null!==n;)null!==(e=n.alternate)&&null===Bo(e)&&(a=n),n=n.sibling;null===(n=a)?(a=t.child,t.child=null):(a=n.sibling,n.sibling=null),rl(t,!1,a,n,o,t.lastEffect);break;case"backwards":for(n=null,a=t.child,t.child=null;null!==a;){if(null!==(e=a.alternate)&&null===Bo(e)){t.child=a;break}e=a.sibling,a.sibling=n,n=a,a=e}rl(t,!0,n,null,o,t.lastEffect);break;case"together":rl(t,!1,null,null,void 0,t.lastEffect);break;default:t.memoizedState=null}return t.child}function ol(e,t,n){if(null!==e&&(t.dependencies=e.dependencies),jl|=t.lanes,0!=(n&t.childLanes)){if(null!==e&&t.child!==e.child)throw Error(i(153));if(null!==t.child){for(n=Vs(e=t.child,e.pendingProps),t.child=n,n.return=t;null!==e.sibling;)e=e.sibling,(n=n.sibling=Vs(e,e.pendingProps)).return=t;n.sibling=null}return t.child}return null}function il(e,t){if(!jo)switch(e.tailMode){case"hidden":t=e.tail;for(var n=null;null!==t;)null!==t.alternate&&(n=t),t=t.sibling;null===n?e.tail=null:n.sibling=null;break;case"collapsed":n=e.tail;for(var r=null;null!==n;)null!==n.alternate&&(r=n),n=n.sibling;null===r?t||null===e.tail?e.tail=null:e.tail.sibling=null:r.sibling=null}}function ll(e,t,n){var r=t.pendingProps;switch(t.tag){case 2:case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return null;case 1:case 17:return ga(t.type)&&ba(),null;case 3:return Io(),ua(pa),ua(fa),qo(),(r=t.stateNode).pendingContext&&(r.context=r.pendingContext,r.pendingContext=null),null!==e&&null!==e.child||(Vo(t)?t.flags|=4:r.hydrate||(t.flags|=256)),Gi(t),null;case 5:Mo(t);var o=Po(Oo.current);if(n=t.type,null!==e&&null!=t.stateNode)qi(e,t,n,r,o),e.ref!==t.ref&&(t.flags|=128);else{if(!r){if(null===t.stateNode)throw Error(i(166));return null}if(e=Po(No.current),Vo(t)){r=t.stateNode,n=t.type;var l=t.memoizedProps;switch(r[Qr]=t,r[Xr]=l,n){case"dialog":Nr("cancel",r),Nr("close",r);break;case"iframe":case"object":case"embed":Nr("load",r);break;case"video":case"audio":for(e=0;e<Cr.length;e++)Nr(Cr[e],r);break;case"source":Nr("error",r);break;case"img":case"image":case"link":Nr("error",r),Nr("load",r);break;case"details":Nr("toggle",r);break;case"input":ee(r,l),Nr("invalid",r);break;case"select":r._wrapperState={wasMultiple:!!l.multiple},Nr("invalid",r);break;case"textarea":se(r,l),Nr("invalid",r)}for(var u in Se(n,l),e=null,l)l.hasOwnProperty(u)&&(o=l[u],"children"===u?"string"==typeof o?r.textContent!==o&&(e=["children",o]):"number"==typeof o&&r.textContent!==""+o&&(e=["children",""+o]):s.hasOwnProperty(u)&&null!=o&&"onScroll"===u&&Nr("scroll",r));switch(n){case"input":K(r),re(r,l,!0);break;case"textarea":K(r),ce(r);break;case"select":case"option":break;default:"function"==typeof l.onClick&&(r.onclick=Ur)}r=e,t.updateQueue=r,null!==r&&(t.flags|=4)}else{switch(u=9===o.nodeType?o:o.ownerDocument,e===de.html&&(e=fe(n)),e===de.html?"script"===n?((e=u.createElement("div")).innerHTML="<script><\/script>",e=e.removeChild(e.firstChild)):"string"==typeof r.is?e=u.createElement(n,{is:r.is}):(e=u.createElement(n),"select"===n&&(u=e,r.multiple?u.multiple=!0:r.size&&(u.size=r.size))):e=u.createElementNS(e,n),e[Qr]=t,e[Xr]=r,Wi(e,t,!1,!1),t.stateNode=e,u=xe(n,r),n){case"dialog":Nr("cancel",e),Nr("close",e),o=r;break;case"iframe":case"object":case"embed":Nr("load",e),o=r;break;case"video":case"audio":for(o=0;o<Cr.length;o++)Nr(Cr[o],e);o=r;break;case"source":Nr("error",e),o=r;break;case"img":case"image":case"link":Nr("error",e),Nr("load",e),o=r;break;case"details":Nr("toggle",e),o=r;break;case"input":ee(e,r),o=J(e,r),Nr("invalid",e);break;case"option":o=oe(e,r);break;case"select":e._wrapperState={wasMultiple:!!r.multiple},o=a({},r,{value:void 0}),Nr("invalid",e);break;case"textarea":se(e,r),o=le(e,r),Nr("invalid",e);break;default:o=r}Se(n,o);var c=o;for(l in c)if(c.hasOwnProperty(l)){var d=c[l];"style"===l?Ee(e,d):"dangerouslySetInnerHTML"===l?null!=(d=d?d.__html:void 0)&&ge(e,d):"children"===l?"string"==typeof d?("textarea"!==n||""!==d)&&be(e,d):"number"==typeof d&&be(e,""+d):"suppressContentEditableWarning"!==l&&"suppressHydrationWarning"!==l&&"autoFocus"!==l&&(s.hasOwnProperty(l)?null!=d&&"onScroll"===l&&Nr("scroll",e):null!=d&&w(e,l,d,u))}switch(n){case"input":K(e),re(e,r,!1);break;case"textarea":K(e),ce(e);break;case"option":null!=r.value&&e.setAttribute("value",""+G(r.value));break;case"select":e.multiple=!!r.multiple,null!=(l=r.value)?ie(e,!!r.multiple,l,!1):null!=r.defaultValue&&ie(e,!!r.multiple,r.defaultValue,!0);break;default:"function"==typeof o.onClick&&(e.onclick=Ur)}zr(n,r)&&(t.flags|=4)}null!==t.ref&&(t.flags|=128)}return null;case 6:if(e&&null!=t.stateNode)Ki(e,t,e.memoizedProps,r);else{if("string"!=typeof r&&null===t.stateNode)throw Error(i(166));n=Po(Oo.current),Po(No.current),Vo(t)?(r=t.stateNode,n=t.memoizedProps,r[Qr]=t,r.nodeValue!==n&&(t.flags|=4)):((r=(9===n.nodeType?n:n.ownerDocument).createTextNode(r))[Qr]=t,t.stateNode=r)}return null;case 13:return ua(Fo),r=t.memoizedState,0!=(64&t.flags)?(t.lanes=n,t):(r=null!==r,n=!1,null===e?void 0!==t.memoizedProps.fallback&&Vo(t):n=null!==e.memoizedState,r&&!n&&0!=(2&t.mode)&&(null===e&&!0!==t.memoizedProps.unstable_avoidThisFallback||0!=(1&Fo.current)?0===Bl&&(Bl=3):(0!==Bl&&3!==Bl||(Bl=4),null===Rl||0==(134217727&jl)&&0==(134217727&zl)||vs(Rl,Dl))),(r||n)&&(t.flags|=4),null);case 4:return Io(),Gi(t),null===e&&Or(t.stateNode.containerInfo),null;case 10:return no(t),null;case 19:if(ua(Fo),null===(r=t.memoizedState))return null;if(l=0!=(64&t.flags),null===(u=r.rendering))if(l)il(r,!1);else{if(0!==Bl||null!==e&&0!=(64&e.flags))for(e=t.child;null!==e;){if(null!==(u=Bo(e))){for(t.flags|=64,il(r,!1),null!==(l=u.updateQueue)&&(t.updateQueue=l,t.flags|=4),null===r.lastEffect&&(t.firstEffect=null),t.lastEffect=r.lastEffect,r=n,n=t.child;null!==n;)e=r,(l=n).flags&=2,l.nextEffect=null,l.firstEffect=null,l.lastEffect=null,null===(u=l.alternate)?(l.childLanes=0,l.lanes=e,l.child=null,l.memoizedProps=null,l.memoizedState=null,l.updateQueue=null,l.dependencies=null,l.stateNode=null):(l.childLanes=u.childLanes,l.lanes=u.lanes,l.child=u.child,l.memoizedProps=u.memoizedProps,l.memoizedState=u.memoizedState,l.updateQueue=u.updateQueue,l.type=u.type,e=u.dependencies,l.dependencies=null===e?null:{lanes:e.lanes,firstContext:e.firstContext}),n=n.sibling;return ca(Fo,1&Fo.current|2),t.child}e=e.sibling}null!==r.tail&&za()>Vl&&(t.flags|=64,l=!0,il(r,!1),t.lanes=33554432)}else{if(!l)if(null!==(e=Bo(u))){if(t.flags|=64,l=!0,null!==(n=e.updateQueue)&&(t.updateQueue=n,t.flags|=4),il(r,!0),null===r.tail&&"hidden"===r.tailMode&&!u.alternate&&!jo)return null!==(t=t.lastEffect=r.lastEffect)&&(t.nextEffect=null),null}else 2*za()-r.renderingStartTime>Vl&&1073741824!==n&&(t.flags|=64,l=!0,il(r,!1),t.lanes=33554432);r.isBackwards?(u.sibling=t.child,t.child=u):(null!==(n=r.last)?n.sibling=u:t.child=u,r.last=u)}return null!==r.tail?(n=r.tail,r.rendering=n,r.tail=n.sibling,r.lastEffect=t.lastEffect,r.renderingStartTime=za(),n.sibling=null,t=Fo.current,ca(Fo,l?1&t|2:1&t),n):null;case 23:case 24:return Ss(),null!==e&&null!==e.memoizedState!=(null!==t.memoizedState)&&"unstable-defer-without-hiding"!==r.mode&&(t.flags|=4),null}throw Error(i(156,t.tag))}function sl(e){switch(e.tag){case 1:ga(e.type)&&ba();var t=e.flags;return 4096&t?(e.flags=-4097&t|64,e):null;case 3:if(Io(),ua(pa),ua(fa),qo(),0!=(64&(t=e.flags)))throw Error(i(285));return e.flags=-4097&t|64,e;case 5:return Mo(e),null;case 13:return ua(Fo),4096&(t=e.flags)?(e.flags=-4097&t|64,e):null;case 19:return ua(Fo),null;case 4:return Io(),null;case 10:return no(e),null;case 23:case 24:return Ss(),null;default:return null}}function ul(e,t){try{var n="",r=t;do{n+=V(r),r=r.return}while(r);var a=n}catch(o){a="\nError generating stack: "+o.message+"\n"+o.stack}return{value:e,source:t,stack:a}}function cl(e,t){try{console.error(t.value)}catch(n){setTimeout((function(){throw n}))}}Wi=function(e,t){for(var n=t.child;null!==n;){if(5===n.tag||6===n.tag)e.appendChild(n.stateNode);else if(4!==n.tag&&null!==n.child){n.child.return=n,n=n.child;continue}if(n===t)break;for(;null===n.sibling;){if(null===n.return||n.return===t)return;n=n.return}n.sibling.return=n.return,n=n.sibling}},Gi=function(){},qi=function(e,t,n,r){var o=e.memoizedProps;if(o!==r){e=t.stateNode,Po(No.current);var i,l=null;switch(n){case"input":o=J(e,o),r=J(e,r),l=[];break;case"option":o=oe(e,o),r=oe(e,r),l=[];break;case"select":o=a({},o,{value:void 0}),r=a({},r,{value:void 0}),l=[];break;case"textarea":o=le(e,o),r=le(e,r),l=[];break;default:"function"!=typeof o.onClick&&"function"==typeof r.onClick&&(e.onclick=Ur)}for(d in Se(n,r),n=null,o)if(!r.hasOwnProperty(d)&&o.hasOwnProperty(d)&&null!=o[d])if("style"===d){var u=o[d];for(i in u)u.hasOwnProperty(i)&&(n||(n={}),n[i]="")}else"dangerouslySetInnerHTML"!==d&&"children"!==d&&"suppressContentEditableWarning"!==d&&"suppressHydrationWarning"!==d&&"autoFocus"!==d&&(s.hasOwnProperty(d)?l||(l=[]):(l=l||[]).push(d,null));for(d in r){var c=r[d];if(u=null!=o?o[d]:void 0,r.hasOwnProperty(d)&&c!==u&&(null!=c||null!=u))if("style"===d)if(u){for(i in u)!u.hasOwnProperty(i)||c&&c.hasOwnProperty(i)||(n||(n={}),n[i]="");for(i in c)c.hasOwnProperty(i)&&u[i]!==c[i]&&(n||(n={}),n[i]=c[i])}else n||(l||(l=[]),l.push(d,n)),n=c;else"dangerouslySetInnerHTML"===d?(c=c?c.__html:void 0,u=u?u.__html:void 0,null!=c&&u!==c&&(l=l||[]).push(d,c)):"children"===d?"string"!=typeof c&&"number"!=typeof c||(l=l||[]).push(d,""+c):"suppressContentEditableWarning"!==d&&"suppressHydrationWarning"!==d&&(s.hasOwnProperty(d)?(null!=c&&"onScroll"===d&&Nr("scroll",e),l||u===c||(l=[])):"object"==typeof c&&null!==c&&c.$$typeof===D?c.toString():(l=l||[]).push(d,c))}n&&(l=l||[]).push("style",n);var d=l;(t.updateQueue=d)&&(t.flags|=4)}},Ki=function(e,t,n,r){n!==r&&(t.flags|=4)};var dl="function"==typeof WeakMap?WeakMap:Map;function fl(e,t,n){(n=uo(-1,n)).tag=3,n.payload={element:null};var r=t.value;return n.callback=function(){Kl||(Kl=!0,Ql=r),cl(0,t)},n}function pl(e,t,n){(n=uo(-1,n)).tag=3;var r=e.type.getDerivedStateFromError;if("function"==typeof r){var a=t.value;n.payload=function(){return cl(0,t),r(a)}}var o=e.stateNode;return null!==o&&"function"==typeof o.componentDidCatch&&(n.callback=function(){"function"!=typeof r&&(null===Xl?Xl=new Set([this]):Xl.add(this),cl(0,t));var e=t.stack;this.componentDidCatch(t.value,{componentStack:null!==e?e:""})}),n}var ml="function"==typeof WeakSet?WeakSet:Set;function hl(e){var t=e.ref;if(null!==t)if("function"==typeof t)try{t(null)}catch(n){$s(e,n)}else t.current=null}function gl(e,t){switch(t.tag){case 0:case 11:case 15:case 22:case 5:case 6:case 4:case 17:return;case 1:if(256&t.flags&&null!==e){var n=e.memoizedProps,r=e.memoizedState;t=(e=t.stateNode).getSnapshotBeforeUpdate(t.elementType===t.type?n:Ka(t.type,n),r),e.__reactInternalSnapshotBeforeUpdate=t}return;case 3:return void(256&t.flags&&Vr(t.stateNode.containerInfo))}throw Error(i(163))}function bl(e,t,n){switch(n.tag){case 0:case 11:case 15:case 22:if(null!==(t=null!==(t=n.updateQueue)?t.lastEffect:null)){e=t=t.next;do{if(3==(3&e.tag)){var r=e.create;e.destroy=r()}e=e.next}while(e!==t)}if(null!==(t=null!==(t=n.updateQueue)?t.lastEffect:null)){e=t=t.next;do{var a=e;r=a.next,0!=(4&(a=a.tag))&&0!=(1&a)&&(Fs(n,e),Ms(n,e)),e=r}while(e!==t)}return;case 1:return e=n.stateNode,4&n.flags&&(null===t?e.componentDidMount():(r=n.elementType===n.type?t.memoizedProps:Ka(n.type,t.memoizedProps),e.componentDidUpdate(r,t.memoizedState,e.__reactInternalSnapshotBeforeUpdate))),void(null!==(t=n.updateQueue)&&mo(n,t,e));case 3:if(null!==(t=n.updateQueue)){if(e=null,null!==n.child)switch(n.child.tag){case 5:case 1:e=n.child.stateNode}mo(n,t,e)}return;case 5:return e=n.stateNode,void(null===t&&4&n.flags&&zr(n.type,n.memoizedProps)&&e.focus());case 6:case 4:case 12:case 19:case 17:case 20:case 21:case 23:case 24:return;case 13:return void(null===n.memoizedState&&(n=n.alternate,null!==n&&(n=n.memoizedState,null!==n&&(n=n.dehydrated,null!==n&&Et(n)))))}throw Error(i(163))}function vl(e,t){for(var n=e;;){if(5===n.tag){var r=n.stateNode;if(t)"function"==typeof(r=r.style).setProperty?r.setProperty("display","none","important"):r.display="none";else{r=n.stateNode;var a=n.memoizedProps.style;a=null!=a&&a.hasOwnProperty("display")?a.display:null,r.style.display=we("display",a)}}else if(6===n.tag)n.stateNode.nodeValue=t?"":n.memoizedProps;else if((23!==n.tag&&24!==n.tag||null===n.memoizedState||n===e)&&null!==n.child){n.child.return=n,n=n.child;continue}if(n===e)break;for(;null===n.sibling;){if(null===n.return||n.return===e)return;n=n.return}n.sibling.return=n.return,n=n.sibling}}function yl(e,t){if(Sa&&"function"==typeof Sa.onCommitFiberUnmount)try{Sa.onCommitFiberUnmount(ka,t)}catch(o){}switch(t.tag){case 0:case 11:case 14:case 15:case 22:if(null!==(e=t.updateQueue)&&null!==(e=e.lastEffect)){var n=e=e.next;do{var r=n,a=r.destroy;if(r=r.tag,void 0!==a)if(0!=(4&r))Fs(t,n);else{r=t;try{a()}catch(o){$s(r,o)}}n=n.next}while(n!==e)}break;case 1:if(hl(t),"function"==typeof(e=t.stateNode).componentWillUnmount)try{e.props=t.memoizedProps,e.state=t.memoizedState,e.componentWillUnmount()}catch(o){$s(t,o)}break;case 5:hl(t);break;case 4:Cl(e,t)}}function wl(e){e.alternate=null,e.child=null,e.dependencies=null,e.firstEffect=null,e.lastEffect=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.return=null,e.updateQueue=null}function El(e){return 5===e.tag||3===e.tag||4===e.tag}function kl(e){e:{for(var t=e.return;null!==t;){if(El(t))break e;t=t.return}throw Error(i(160))}var n=t;switch(t=n.stateNode,n.tag){case 5:var r=!1;break;case 3:case 4:t=t.containerInfo,r=!0;break;default:throw Error(i(161))}16&n.flags&&(be(t,""),n.flags&=-17);e:t:for(n=e;;){for(;null===n.sibling;){if(null===n.return||El(n.return)){n=null;break e}n=n.return}for(n.sibling.return=n.return,n=n.sibling;5!==n.tag&&6!==n.tag&&18!==n.tag;){if(2&n.flags)continue t;if(null===n.child||4===n.tag)continue t;n.child.return=n,n=n.child}if(!(2&n.flags)){n=n.stateNode;break e}}r?Sl(e,n,t):xl(e,n,t)}function Sl(e,t,n){var r=e.tag,a=5===r||6===r;if(a)e=a?e.stateNode:e.stateNode.instance,t?8===n.nodeType?n.parentNode.insertBefore(e,t):n.insertBefore(e,t):(8===n.nodeType?(t=n.parentNode).insertBefore(e,n):(t=n).appendChild(e),null!=(n=n._reactRootContainer)||null!==t.onclick||(t.onclick=Ur));else if(4!==r&&null!==(e=e.child))for(Sl(e,t,n),e=e.sibling;null!==e;)Sl(e,t,n),e=e.sibling}function xl(e,t,n){var r=e.tag,a=5===r||6===r;if(a)e=a?e.stateNode:e.stateNode.instance,t?n.insertBefore(e,t):n.appendChild(e);else if(4!==r&&null!==(e=e.child))for(xl(e,t,n),e=e.sibling;null!==e;)xl(e,t,n),e=e.sibling}function Cl(e,t){for(var n,r,a=t,o=!1;;){if(!o){o=a.return;e:for(;;){if(null===o)throw Error(i(160));switch(n=o.stateNode,o.tag){case 5:r=!1;break e;case 3:case 4:n=n.containerInfo,r=!0;break e}o=o.return}o=!0}if(5===a.tag||6===a.tag){e:for(var l=e,s=a,u=s;;)if(yl(l,u),null!==u.child&&4!==u.tag)u.child.return=u,u=u.child;else{if(u===s)break e;for(;null===u.sibling;){if(null===u.return||u.return===s)break e;u=u.return}u.sibling.return=u.return,u=u.sibling}r?(l=n,s=a.stateNode,8===l.nodeType?l.parentNode.removeChild(s):l.removeChild(s)):n.removeChild(a.stateNode)}else if(4===a.tag){if(null!==a.child){n=a.stateNode.containerInfo,r=!0,a.child.return=a,a=a.child;continue}}else if(yl(e,a),null!==a.child){a.child.return=a,a=a.child;continue}if(a===t)break;for(;null===a.sibling;){if(null===a.return||a.return===t)return;4===(a=a.return).tag&&(o=!1)}a.sibling.return=a.return,a=a.sibling}}function _l(e,t){switch(t.tag){case 0:case 11:case 14:case 15:case 22:var n=t.updateQueue;if(null!==(n=null!==n?n.lastEffect:null)){var r=n=n.next;do{3==(3&r.tag)&&(e=r.destroy,r.destroy=void 0,void 0!==e&&e()),r=r.next}while(r!==n)}return;case 1:case 12:case 17:return;case 5:if(null!=(n=t.stateNode)){r=t.memoizedProps;var a=null!==e?e.memoizedProps:r;e=t.type;var o=t.updateQueue;if(t.updateQueue=null,null!==o){for(n[Xr]=r,"input"===e&&"radio"===r.type&&null!=r.name&&te(n,r),xe(e,a),t=xe(e,r),a=0;a<o.length;a+=2){var l=o[a],s=o[a+1];"style"===l?Ee(n,s):"dangerouslySetInnerHTML"===l?ge(n,s):"children"===l?be(n,s):w(n,l,s,t)}switch(e){case"input":ne(n,r);break;case"textarea":ue(n,r);break;case"select":e=n._wrapperState.wasMultiple,n._wrapperState.wasMultiple=!!r.multiple,null!=(o=r.value)?ie(n,!!r.multiple,o,!1):e!==!!r.multiple&&(null!=r.defaultValue?ie(n,!!r.multiple,r.defaultValue,!0):ie(n,!!r.multiple,r.multiple?[]:"",!1))}}}return;case 6:if(null===t.stateNode)throw Error(i(162));return void(t.stateNode.nodeValue=t.memoizedProps);case 3:return void((n=t.stateNode).hydrate&&(n.hydrate=!1,Et(n.containerInfo)));case 13:return null!==t.memoizedState&&(Yl=za(),vl(t.child,!0)),void Tl(t);case 19:return void Tl(t);case 23:case 24:return void vl(t,null!==t.memoizedState)}throw Error(i(163))}function Tl(e){var t=e.updateQueue;if(null!==t){e.updateQueue=null;var n=e.stateNode;null===n&&(n=e.stateNode=new ml),t.forEach((function(t){var r=zs.bind(null,e,t);n.has(t)||(n.add(t),t.then(r,r))}))}}function Al(e,t){return null!==e&&(null===(e=e.memoizedState)||null!==e.dehydrated)&&(null!==(t=t.memoizedState)&&null===t.dehydrated)}var Nl=Math.ceil,Ll=E.ReactCurrentDispatcher,Ol=E.ReactCurrentOwner,Pl=0,Rl=null,Il=null,Dl=0,Ml=0,Fl=sa(0),Bl=0,Ul=null,$l=0,jl=0,zl=0,Zl=0,Hl=null,Yl=0,Vl=1/0;function Wl(){Vl=za()+500}var Gl,ql=null,Kl=!1,Ql=null,Xl=null,Jl=!1,es=null,ts=90,ns=[],rs=[],as=null,os=0,is=null,ls=-1,ss=0,us=0,cs=null,ds=!1;function fs(){return 0!=(48&Pl)?za():-1!==ls?ls:ls=za()}function ps(e){if(0==(2&(e=e.mode)))return 1;if(0==(4&e))return 99===Za()?1:2;if(0===ss&&(ss=$l),0!==qa.transition){0!==us&&(us=null!==Hl?Hl.pendingLanes:0),e=ss;var t=4186112&~us;return 0===(t&=-t)&&(0===(t=(e=4186112&~e)&-e)&&(t=8192)),t}return e=Za(),0!=(4&Pl)&&98===e?e=Ut(12,ss):e=Ut(e=function(e){switch(e){case 99:return 15;case 98:return 10;case 97:case 96:return 8;case 95:return 2;default:return 0}}(e),ss),e}function ms(e,t,n){if(50<os)throw os=0,is=null,Error(i(185));if(null===(e=hs(e,t)))return null;zt(e,t,n),e===Rl&&(zl|=t,4===Bl&&vs(e,Dl));var r=Za();1===t?0!=(8&Pl)&&0==(48&Pl)?ys(e):(gs(e,n),0===Pl&&(Wl(),Wa())):(0==(4&Pl)||98!==r&&99!==r||(null===as?as=new Set([e]):as.add(e)),gs(e,n)),Hl=e}function hs(e,t){e.lanes|=t;var n=e.alternate;for(null!==n&&(n.lanes|=t),n=e,e=e.return;null!==e;)e.childLanes|=t,null!==(n=e.alternate)&&(n.childLanes|=t),n=e,e=e.return;return 3===n.tag?n.stateNode:null}function gs(e,t){for(var n=e.callbackNode,r=e.suspendedLanes,a=e.pingedLanes,o=e.expirationTimes,l=e.pendingLanes;0<l;){var s=31-Zt(l),u=1<<s,c=o[s];if(-1===c){if(0==(u&r)||0!=(u&a)){c=t,Mt(u);var d=Dt;o[s]=10<=d?c+250:6<=d?c+5e3:-1}}else c<=t&&(e.expiredLanes|=u);l&=~u}if(r=Ft(e,e===Rl?Dl:0),t=Dt,0===r)null!==n&&(n!==Ma&&_a(n),e.callbackNode=null,e.callbackPriority=0);else{if(null!==n){if(e.callbackPriority===t)return;n!==Ma&&_a(n)}15===t?(n=ys.bind(null,e),null===Ba?(Ba=[n],Ua=Ca(Oa,Ga)):Ba.push(n),n=Ma):14===t?n=Va(99,ys.bind(null,e)):(n=function(e){switch(e){case 15:case 14:return 99;case 13:case 12:case 11:case 10:return 98;case 9:case 8:case 7:case 6:case 4:case 5:return 97;case 3:case 2:case 1:return 95;case 0:return 90;default:throw Error(i(358,e))}}(t),n=Va(n,bs.bind(null,e))),e.callbackPriority=t,e.callbackNode=n}}function bs(e){if(ls=-1,us=ss=0,0!=(48&Pl))throw Error(i(327));var t=e.callbackNode;if(Ds()&&e.callbackNode!==t)return null;var n=Ft(e,e===Rl?Dl:0);if(0===n)return null;var r=n,a=Pl;Pl|=16;var o=_s();for(Rl===e&&Dl===r||(Wl(),xs(e,r));;)try{Ns();break}catch(s){Cs(e,s)}if(to(),Ll.current=o,Pl=a,null!==Il?r=0:(Rl=null,Dl=0,r=Bl),0!=($l&zl))xs(e,0);else if(0!==r){if(2===r&&(Pl|=64,e.hydrate&&(e.hydrate=!1,Vr(e.containerInfo)),0!==(n=Bt(e))&&(r=Ts(e,n))),1===r)throw t=Ul,xs(e,0),vs(e,n),gs(e,za()),t;switch(e.finishedWork=e.current.alternate,e.finishedLanes=n,r){case 0:case 1:throw Error(i(345));case 2:case 5:Ps(e);break;case 3:if(vs(e,n),(62914560&n)===n&&10<(r=Yl+500-za())){if(0!==Ft(e,0))break;if(((a=e.suspendedLanes)&n)!==n){fs(),e.pingedLanes|=e.suspendedLanes&a;break}e.timeoutHandle=Hr(Ps.bind(null,e),r);break}Ps(e);break;case 4:if(vs(e,n),(4186112&n)===n)break;for(r=e.eventTimes,a=-1;0<n;){var l=31-Zt(n);o=1<<l,(l=r[l])>a&&(a=l),n&=~o}if(n=a,10<(n=(120>(n=za()-n)?120:480>n?480:1080>n?1080:1920>n?1920:3e3>n?3e3:4320>n?4320:1960*Nl(n/1960))-n)){e.timeoutHandle=Hr(Ps.bind(null,e),n);break}Ps(e);break;default:throw Error(i(329))}}return gs(e,za()),e.callbackNode===t?bs.bind(null,e):null}function vs(e,t){for(t&=~Zl,t&=~zl,e.suspendedLanes|=t,e.pingedLanes&=~t,e=e.expirationTimes;0<t;){var n=31-Zt(t),r=1<<n;e[n]=-1,t&=~r}}function ys(e){if(0!=(48&Pl))throw Error(i(327));if(Ds(),e===Rl&&0!=(e.expiredLanes&Dl)){var t=Dl,n=Ts(e,t);0!=($l&zl)&&(n=Ts(e,t=Ft(e,t)))}else n=Ts(e,t=Ft(e,0));if(0!==e.tag&&2===n&&(Pl|=64,e.hydrate&&(e.hydrate=!1,Vr(e.containerInfo)),0!==(t=Bt(e))&&(n=Ts(e,t))),1===n)throw n=Ul,xs(e,0),vs(e,t),gs(e,za()),n;return e.finishedWork=e.current.alternate,e.finishedLanes=t,Ps(e),gs(e,za()),null}function ws(e,t){var n=Pl;Pl|=1;try{return e(t)}finally{0===(Pl=n)&&(Wl(),Wa())}}function Es(e,t){var n=Pl;Pl&=-2,Pl|=8;try{return e(t)}finally{0===(Pl=n)&&(Wl(),Wa())}}function ks(e,t){ca(Fl,Ml),Ml|=t,$l|=t}function Ss(){Ml=Fl.current,ua(Fl)}function xs(e,t){e.finishedWork=null,e.finishedLanes=0;var n=e.timeoutHandle;if(-1!==n&&(e.timeoutHandle=-1,Yr(n)),null!==Il)for(n=Il.return;null!==n;){var r=n;switch(r.tag){case 1:null!=(r=r.type.childContextTypes)&&ba();break;case 3:Io(),ua(pa),ua(fa),qo();break;case 5:Mo(r);break;case 4:Io();break;case 13:case 19:ua(Fo);break;case 10:no(r);break;case 23:case 24:Ss()}n=n.return}Rl=e,Il=Vs(e.current,null),Dl=Ml=$l=t,Bl=0,Ul=null,Zl=zl=jl=0}function Cs(e,t){for(;;){var n=Il;try{if(to(),Ko.current=Oi,ni){for(var r=Jo.memoizedState;null!==r;){var a=r.queue;null!==a&&(a.pending=null),r=r.next}ni=!1}if(Xo=0,ti=ei=Jo=null,ri=!1,Ol.current=null,null===n||null===n.return){Bl=1,Ul=t,Il=null;break}e:{var o=e,i=n.return,l=n,s=t;if(t=Dl,l.flags|=2048,l.firstEffect=l.lastEffect=null,null!==s&&"object"==typeof s&&"function"==typeof s.then){var u=s;if(0==(2&l.mode)){var c=l.alternate;c?(l.updateQueue=c.updateQueue,l.memoizedState=c.memoizedState,l.lanes=c.lanes):(l.updateQueue=null,l.memoizedState=null)}var d=0!=(1&Fo.current),f=i;do{var p;if(p=13===f.tag){var m=f.memoizedState;if(null!==m)p=null!==m.dehydrated;else{var h=f.memoizedProps;p=void 0!==h.fallback&&(!0!==h.unstable_avoidThisFallback||!d)}}if(p){var g=f.updateQueue;if(null===g){var b=new Set;b.add(u),f.updateQueue=b}else g.add(u);if(0==(2&f.mode)){if(f.flags|=64,l.flags|=16384,l.flags&=-2981,1===l.tag)if(null===l.alternate)l.tag=17;else{var v=uo(-1,1);v.tag=2,co(l,v)}l.lanes|=1;break e}s=void 0,l=t;var y=o.pingCache;if(null===y?(y=o.pingCache=new dl,s=new Set,y.set(u,s)):void 0===(s=y.get(u))&&(s=new Set,y.set(u,s)),!s.has(l)){s.add(l);var w=js.bind(null,o,u,l);u.then(w,w)}f.flags|=4096,f.lanes=t;break e}f=f.return}while(null!==f);s=Error((W(l.type)||"A React component")+" suspended while rendering, but no fallback UI was specified.\n\nAdd a <Suspense fallback=...> component higher in the tree to provide a loading indicator or placeholder to display.")}5!==Bl&&(Bl=2),s=ul(s,l),f=i;do{switch(f.tag){case 3:o=s,f.flags|=4096,t&=-t,f.lanes|=t,fo(f,fl(0,o,t));break e;case 1:o=s;var E=f.type,k=f.stateNode;if(0==(64&f.flags)&&("function"==typeof E.getDerivedStateFromError||null!==k&&"function"==typeof k.componentDidCatch&&(null===Xl||!Xl.has(k)))){f.flags|=4096,t&=-t,f.lanes|=t,fo(f,pl(f,o,t));break e}}f=f.return}while(null!==f)}Os(n)}catch(S){t=S,Il===n&&null!==n&&(Il=n=n.return);continue}break}}function _s(){var e=Ll.current;return Ll.current=Oi,null===e?Oi:e}function Ts(e,t){var n=Pl;Pl|=16;var r=_s();for(Rl===e&&Dl===t||xs(e,t);;)try{As();break}catch(a){Cs(e,a)}if(to(),Pl=n,Ll.current=r,null!==Il)throw Error(i(261));return Rl=null,Dl=0,Bl}function As(){for(;null!==Il;)Ls(Il)}function Ns(){for(;null!==Il&&!Ta();)Ls(Il)}function Ls(e){var t=Gl(e.alternate,e,Ml);e.memoizedProps=e.pendingProps,null===t?Os(e):Il=t,Ol.current=null}function Os(e){var t=e;do{var n=t.alternate;if(e=t.return,0==(2048&t.flags)){if(null!==(n=ll(n,t,Ml)))return void(Il=n);if(24!==(n=t).tag&&23!==n.tag||null===n.memoizedState||0!=(1073741824&Ml)||0==(4&n.mode)){for(var r=0,a=n.child;null!==a;)r|=a.lanes|a.childLanes,a=a.sibling;n.childLanes=r}null!==e&&0==(2048&e.flags)&&(null===e.firstEffect&&(e.firstEffect=t.firstEffect),null!==t.lastEffect&&(null!==e.lastEffect&&(e.lastEffect.nextEffect=t.firstEffect),e.lastEffect=t.lastEffect),1<t.flags&&(null!==e.lastEffect?e.lastEffect.nextEffect=t:e.firstEffect=t,e.lastEffect=t))}else{if(null!==(n=sl(t)))return n.flags&=2047,void(Il=n);null!==e&&(e.firstEffect=e.lastEffect=null,e.flags|=2048)}if(null!==(t=t.sibling))return void(Il=t);Il=t=e}while(null!==t);0===Bl&&(Bl=5)}function Ps(e){var t=Za();return Ya(99,Rs.bind(null,e,t)),null}function Rs(e,t){do{Ds()}while(null!==es);if(0!=(48&Pl))throw Error(i(327));var n=e.finishedWork;if(null===n)return null;if(e.finishedWork=null,e.finishedLanes=0,n===e.current)throw Error(i(177));e.callbackNode=null;var r=n.lanes|n.childLanes,a=r,o=e.pendingLanes&~a;e.pendingLanes=a,e.suspendedLanes=0,e.pingedLanes=0,e.expiredLanes&=a,e.mutableReadLanes&=a,e.entangledLanes&=a,a=e.entanglements;for(var l=e.eventTimes,s=e.expirationTimes;0<o;){var u=31-Zt(o),c=1<<u;a[u]=0,l[u]=-1,s[u]=-1,o&=~c}if(null!==as&&0==(24&r)&&as.has(e)&&as.delete(e),e===Rl&&(Il=Rl=null,Dl=0),1<n.flags?null!==n.lastEffect?(n.lastEffect.nextEffect=n,r=n.firstEffect):r=n:r=n.firstEffect,null!==r){if(a=Pl,Pl|=32,Ol.current=null,$r=Gt,gr(l=hr())){if("selectionStart"in l)s={start:l.selectionStart,end:l.selectionEnd};else e:if(s=(s=l.ownerDocument)&&s.defaultView||window,(c=s.getSelection&&s.getSelection())&&0!==c.rangeCount){s=c.anchorNode,o=c.anchorOffset,u=c.focusNode,c=c.focusOffset;try{s.nodeType,u.nodeType}catch(_){s=null;break e}var d=0,f=-1,p=-1,m=0,h=0,g=l,b=null;t:for(;;){for(var v;g!==s||0!==o&&3!==g.nodeType||(f=d+o),g!==u||0!==c&&3!==g.nodeType||(p=d+c),3===g.nodeType&&(d+=g.nodeValue.length),null!==(v=g.firstChild);)b=g,g=v;for(;;){if(g===l)break t;if(b===s&&++m===o&&(f=d),b===u&&++h===c&&(p=d),null!==(v=g.nextSibling))break;b=(g=b).parentNode}g=v}s=-1===f||-1===p?null:{start:f,end:p}}else s=null;s=s||{start:0,end:0}}else s=null;jr={focusedElem:l,selectionRange:s},Gt=!1,cs=null,ds=!1,ql=r;do{try{Is()}catch(_){if(null===ql)throw Error(i(330));$s(ql,_),ql=ql.nextEffect}}while(null!==ql);cs=null,ql=r;do{try{for(l=e;null!==ql;){var y=ql.flags;if(16&y&&be(ql.stateNode,""),128&y){var w=ql.alternate;if(null!==w){var E=w.ref;null!==E&&("function"==typeof E?E(null):E.current=null)}}switch(1038&y){case 2:kl(ql),ql.flags&=-3;break;case 6:kl(ql),ql.flags&=-3,_l(ql.alternate,ql);break;case 1024:ql.flags&=-1025;break;case 1028:ql.flags&=-1025,_l(ql.alternate,ql);break;case 4:_l(ql.alternate,ql);break;case 8:Cl(l,s=ql);var k=s.alternate;wl(s),null!==k&&wl(k)}ql=ql.nextEffect}}catch(_){if(null===ql)throw Error(i(330));$s(ql,_),ql=ql.nextEffect}}while(null!==ql);if(E=jr,w=hr(),y=E.focusedElem,l=E.selectionRange,w!==y&&y&&y.ownerDocument&&mr(y.ownerDocument.documentElement,y)){null!==l&&gr(y)&&(w=l.start,void 0===(E=l.end)&&(E=w),"selectionStart"in y?(y.selectionStart=w,y.selectionEnd=Math.min(E,y.value.length)):(E=(w=y.ownerDocument||document)&&w.defaultView||window).getSelection&&(E=E.getSelection(),s=y.textContent.length,k=Math.min(l.start,s),l=void 0===l.end?k:Math.min(l.end,s),!E.extend&&k>l&&(s=l,l=k,k=s),s=pr(y,k),o=pr(y,l),s&&o&&(1!==E.rangeCount||E.anchorNode!==s.node||E.anchorOffset!==s.offset||E.focusNode!==o.node||E.focusOffset!==o.offset)&&((w=w.createRange()).setStart(s.node,s.offset),E.removeAllRanges(),k>l?(E.addRange(w),E.extend(o.node,o.offset)):(w.setEnd(o.node,o.offset),E.addRange(w))))),w=[];for(E=y;E=E.parentNode;)1===E.nodeType&&w.push({element:E,left:E.scrollLeft,top:E.scrollTop});for("function"==typeof y.focus&&y.focus(),y=0;y<w.length;y++)(E=w[y]).element.scrollLeft=E.left,E.element.scrollTop=E.top}Gt=!!$r,jr=$r=null,e.current=n,ql=r;do{try{for(y=e;null!==ql;){var S=ql.flags;if(36&S&&bl(y,ql.alternate,ql),128&S){w=void 0;var x=ql.ref;if(null!==x){var C=ql.stateNode;ql.tag,w=C,"function"==typeof x?x(w):x.current=w}}ql=ql.nextEffect}}catch(_){if(null===ql)throw Error(i(330));$s(ql,_),ql=ql.nextEffect}}while(null!==ql);ql=null,Fa(),Pl=a}else e.current=n;if(Jl)Jl=!1,es=e,ts=t;else for(ql=r;null!==ql;)t=ql.nextEffect,ql.nextEffect=null,8&ql.flags&&((S=ql).sibling=null,S.stateNode=null),ql=t;if(0===(r=e.pendingLanes)&&(Xl=null),1===r?e===is?os++:(os=0,is=e):os=0,n=n.stateNode,Sa&&"function"==typeof Sa.onCommitFiberRoot)try{Sa.onCommitFiberRoot(ka,n,void 0,64==(64&n.current.flags))}catch(_){}if(gs(e,za()),Kl)throw Kl=!1,e=Ql,Ql=null,e;return 0!=(8&Pl)||Wa(),null}function Is(){for(;null!==ql;){var e=ql.alternate;ds||null===cs||(0!=(8&ql.flags)?Je(ql,cs)&&(ds=!0):13===ql.tag&&Al(e,ql)&&Je(ql,cs)&&(ds=!0));var t=ql.flags;0!=(256&t)&&gl(e,ql),0==(512&t)||Jl||(Jl=!0,Va(97,(function(){return Ds(),null}))),ql=ql.nextEffect}}function Ds(){if(90!==ts){var e=97<ts?97:ts;return ts=90,Ya(e,Bs)}return!1}function Ms(e,t){ns.push(t,e),Jl||(Jl=!0,Va(97,(function(){return Ds(),null})))}function Fs(e,t){rs.push(t,e),Jl||(Jl=!0,Va(97,(function(){return Ds(),null})))}function Bs(){if(null===es)return!1;var e=es;if(es=null,0!=(48&Pl))throw Error(i(331));var t=Pl;Pl|=32;var n=rs;rs=[];for(var r=0;r<n.length;r+=2){var a=n[r],o=n[r+1],l=a.destroy;if(a.destroy=void 0,"function"==typeof l)try{l()}catch(u){if(null===o)throw Error(i(330));$s(o,u)}}for(n=ns,ns=[],r=0;r<n.length;r+=2){a=n[r],o=n[r+1];try{var s=a.create;a.destroy=s()}catch(u){if(null===o)throw Error(i(330));$s(o,u)}}for(s=e.current.firstEffect;null!==s;)e=s.nextEffect,s.nextEffect=null,8&s.flags&&(s.sibling=null,s.stateNode=null),s=e;return Pl=t,Wa(),!0}function Us(e,t,n){co(e,t=fl(0,t=ul(n,t),1)),t=fs(),null!==(e=hs(e,1))&&(zt(e,1,t),gs(e,t))}function $s(e,t){if(3===e.tag)Us(e,e,t);else for(var n=e.return;null!==n;){if(3===n.tag){Us(n,e,t);break}if(1===n.tag){var r=n.stateNode;if("function"==typeof n.type.getDerivedStateFromError||"function"==typeof r.componentDidCatch&&(null===Xl||!Xl.has(r))){var a=pl(n,e=ul(t,e),1);if(co(n,a),a=fs(),null!==(n=hs(n,1)))zt(n,1,a),gs(n,a);else if("function"==typeof r.componentDidCatch&&(null===Xl||!Xl.has(r)))try{r.componentDidCatch(t,e)}catch(o){}break}}n=n.return}}function js(e,t,n){var r=e.pingCache;null!==r&&r.delete(t),t=fs(),e.pingedLanes|=e.suspendedLanes&n,Rl===e&&(Dl&n)===n&&(4===Bl||3===Bl&&(62914560&Dl)===Dl&&500>za()-Yl?xs(e,0):Zl|=n),gs(e,t)}function zs(e,t){var n=e.stateNode;null!==n&&n.delete(t),0===(t=0)&&(0==(2&(t=e.mode))?t=1:0==(4&t)?t=99===Za()?1:2:(0===ss&&(ss=$l),0===(t=$t(62914560&~ss))&&(t=4194304))),n=fs(),null!==(e=hs(e,t))&&(zt(e,t,n),gs(e,n))}function Zs(e,t,n,r){this.tag=e,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=t,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=r,this.flags=0,this.lastEffect=this.firstEffect=this.nextEffect=null,this.childLanes=this.lanes=0,this.alternate=null}function Hs(e,t,n,r){return new Zs(e,t,n,r)}function Ys(e){return!(!(e=e.prototype)||!e.isReactComponent)}function Vs(e,t){var n=e.alternate;return null===n?((n=Hs(e.tag,t,e.key,e.mode)).elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.type=e.type,n.flags=0,n.nextEffect=null,n.firstEffect=null,n.lastEffect=null),n.childLanes=e.childLanes,n.lanes=e.lanes,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue,t=e.dependencies,n.dependencies=null===t?null:{lanes:t.lanes,firstContext:t.firstContext},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n}function Ws(e,t,n,r,a,o){var l=2;if(r=e,"function"==typeof e)Ys(e)&&(l=1);else if("string"==typeof e)l=5;else e:switch(e){case x:return Gs(n.children,a,o,t);case M:l=8,a|=16;break;case C:l=8,a|=1;break;case _:return(e=Hs(12,n,t,8|a)).elementType=_,e.type=_,e.lanes=o,e;case L:return(e=Hs(13,n,t,a)).type=L,e.elementType=L,e.lanes=o,e;case O:return(e=Hs(19,n,t,a)).elementType=O,e.lanes=o,e;case F:return qs(n,a,o,t);case B:return(e=Hs(24,n,t,a)).elementType=B,e.lanes=o,e;default:if("object"==typeof e&&null!==e)switch(e.$$typeof){case T:l=10;break e;case A:l=9;break e;case N:l=11;break e;case P:l=14;break e;case R:l=16,r=null;break e;case I:l=22;break e}throw Error(i(130,null==e?e:typeof e,""))}return(t=Hs(l,n,t,a)).elementType=e,t.type=r,t.lanes=o,t}function Gs(e,t,n,r){return(e=Hs(7,e,r,t)).lanes=n,e}function qs(e,t,n,r){return(e=Hs(23,e,r,t)).elementType=F,e.lanes=n,e}function Ks(e,t,n){return(e=Hs(6,e,null,t)).lanes=n,e}function Qs(e,t,n){return(t=Hs(4,null!==e.children?e.children:[],e.key,t)).lanes=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function Xs(e,t,n){this.tag=t,this.containerInfo=e,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.pendingContext=this.context=null,this.hydrate=n,this.callbackNode=null,this.callbackPriority=0,this.eventTimes=jt(0),this.expirationTimes=jt(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=jt(0),this.mutableSourceEagerHydrationData=null}function Js(e,t,n,r){var a=t.current,o=fs(),l=ps(a);e:if(n){t:{if(qe(n=n._reactInternals)!==n||1!==n.tag)throw Error(i(170));var s=n;do{switch(s.tag){case 3:s=s.stateNode.context;break t;case 1:if(ga(s.type)){s=s.stateNode.__reactInternalMemoizedMergedChildContext;break t}}s=s.return}while(null!==s);throw Error(i(171))}if(1===n.tag){var u=n.type;if(ga(u)){n=ya(n,u,s);break e}}n=s}else n=da;return null===t.context?t.context=n:t.pendingContext=n,(t=uo(o,l)).payload={element:e},null!==(r=void 0===r?null:r)&&(t.callback=r),co(a,t),ms(a,l,o),l}function eu(e){return(e=e.current).child?(e.child.tag,e.child.stateNode):null}function tu(e,t){if(null!==(e=e.memoizedState)&&null!==e.dehydrated){var n=e.retryLane;e.retryLane=0!==n&&n<t?n:t}}function nu(e,t){tu(e,t),(e=e.alternate)&&tu(e,t)}function ru(e,t,n){var r=null!=n&&null!=n.hydrationOptions&&n.hydrationOptions.mutableSources||null;if(n=new Xs(e,t,null!=n&&!0===n.hydrate),t=Hs(3,null,null,2===t?7:1===t?3:0),n.current=t,t.stateNode=n,lo(t),e[Jr]=n.current,Or(8===e.nodeType?e.parentNode:e),r)for(e=0;e<r.length;e++){var a=(t=r[e])._getVersion;a=a(t._source),null==n.mutableSourceEagerHydrationData?n.mutableSourceEagerHydrationData=[t,a]:n.mutableSourceEagerHydrationData.push(t,a)}this._internalRoot=n}function au(e){return!(!e||1!==e.nodeType&&9!==e.nodeType&&11!==e.nodeType&&(8!==e.nodeType||" react-mount-point-unstable "!==e.nodeValue))}function ou(e,t,n,r,a){var o=n._reactRootContainer;if(o){var i=o._internalRoot;if("function"==typeof a){var l=a;a=function(){var e=eu(i);l.call(e)}}Js(t,i,e,a)}else{if(o=n._reactRootContainer=function(e,t){if(t||(t=!(!(t=e?9===e.nodeType?e.documentElement:e.firstChild:null)||1!==t.nodeType||!t.hasAttribute("data-reactroot"))),!t)for(var n;n=e.lastChild;)e.removeChild(n);return new ru(e,0,t?{hydrate:!0}:void 0)}(n,r),i=o._internalRoot,"function"==typeof a){var s=a;a=function(){var e=eu(i);s.call(e)}}Es((function(){Js(t,i,e,a)}))}return eu(i)}function iu(e,t){var n=2<arguments.length&&void 0!==arguments[2]?arguments[2]:null;if(!au(t))throw Error(i(200));return function(e,t,n){var r=3<arguments.length&&void 0!==arguments[3]?arguments[3]:null;return{$$typeof:S,key:null==r?null:""+r,children:e,containerInfo:t,implementation:n}}(e,t,null,n)}Gl=function(e,t,n){var r=t.lanes;if(null!==e)if(e.memoizedProps!==t.pendingProps||pa.current)Mi=!0;else{if(0==(n&r)){switch(Mi=!1,t.tag){case 3:Vi(t),Wo();break;case 5:Do(t);break;case 1:ga(t.type)&&wa(t);break;case 4:Ro(t,t.stateNode.containerInfo);break;case 10:r=t.memoizedProps.value;var a=t.type._context;ca(Qa,a._currentValue),a._currentValue=r;break;case 13:if(null!==t.memoizedState)return 0!=(n&t.child.childLanes)?Xi(e,t,n):(ca(Fo,1&Fo.current),null!==(t=ol(e,t,n))?t.sibling:null);ca(Fo,1&Fo.current);break;case 19:if(r=0!=(n&t.childLanes),0!=(64&e.flags)){if(r)return al(e,t,n);t.flags|=64}if(null!==(a=t.memoizedState)&&(a.rendering=null,a.tail=null,a.lastEffect=null),ca(Fo,Fo.current),r)break;return null;case 23:case 24:return t.lanes=0,ji(e,t,n)}return ol(e,t,n)}Mi=0!=(16384&e.flags)}else Mi=!1;switch(t.lanes=0,t.tag){case 2:if(r=t.type,null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),e=t.pendingProps,a=ha(t,fa.current),ao(t,n),a=ii(null,t,r,e,a,n),t.flags|=1,"object"==typeof a&&null!==a&&"function"==typeof a.render&&void 0===a.$$typeof){if(t.tag=1,t.memoizedState=null,t.updateQueue=null,ga(r)){var o=!0;wa(t)}else o=!1;t.memoizedState=null!==a.state&&void 0!==a.state?a.state:null,lo(t);var l=r.getDerivedStateFromProps;"function"==typeof l&&go(t,r,l,e),a.updater=bo,t.stateNode=a,a._reactInternals=t,Eo(t,r,e,n),t=Yi(null,t,r,!0,o,n)}else t.tag=0,Fi(null,t,a,n),t=t.child;return t;case 16:a=t.elementType;e:{switch(null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),e=t.pendingProps,a=(o=a._init)(a._payload),t.type=a,o=t.tag=function(e){if("function"==typeof e)return Ys(e)?1:0;if(null!=e){if((e=e.$$typeof)===N)return 11;if(e===P)return 14}return 2}(a),e=Ka(a,e),o){case 0:t=Zi(null,t,a,e,n);break e;case 1:t=Hi(null,t,a,e,n);break e;case 11:t=Bi(null,t,a,e,n);break e;case 14:t=Ui(null,t,a,Ka(a.type,e),r,n);break e}throw Error(i(306,a,""))}return t;case 0:return r=t.type,a=t.pendingProps,Zi(e,t,r,a=t.elementType===r?a:Ka(r,a),n);case 1:return r=t.type,a=t.pendingProps,Hi(e,t,r,a=t.elementType===r?a:Ka(r,a),n);case 3:if(Vi(t),r=t.updateQueue,null===e||null===r)throw Error(i(282));if(r=t.pendingProps,a=null!==(a=t.memoizedState)?a.element:null,so(e,t),po(t,r,null,n),(r=t.memoizedState.element)===a)Wo(),t=ol(e,t,n);else{if((o=(a=t.stateNode).hydrate)&&($o=Wr(t.stateNode.containerInfo.firstChild),Uo=t,o=jo=!0),o){if(null!=(e=a.mutableSourceEagerHydrationData))for(a=0;a<e.length;a+=2)(o=e[a])._workInProgressVersionPrimary=e[a+1],Go.push(o);for(n=To(t,null,r,n),t.child=n;n;)n.flags=-3&n.flags|1024,n=n.sibling}else Fi(e,t,r,n),Wo();t=t.child}return t;case 5:return Do(t),null===e&&Ho(t),r=t.type,a=t.pendingProps,o=null!==e?e.memoizedProps:null,l=a.children,Zr(r,a)?l=null:null!==o&&Zr(r,o)&&(t.flags|=16),zi(e,t),Fi(e,t,l,n),t.child;case 6:return null===e&&Ho(t),null;case 13:return Xi(e,t,n);case 4:return Ro(t,t.stateNode.containerInfo),r=t.pendingProps,null===e?t.child=_o(t,null,r,n):Fi(e,t,r,n),t.child;case 11:return r=t.type,a=t.pendingProps,Bi(e,t,r,a=t.elementType===r?a:Ka(r,a),n);case 7:return Fi(e,t,t.pendingProps,n),t.child;case 8:case 12:return Fi(e,t,t.pendingProps.children,n),t.child;case 10:e:{r=t.type._context,a=t.pendingProps,l=t.memoizedProps,o=a.value;var s=t.type._context;if(ca(Qa,s._currentValue),s._currentValue=o,null!==l)if(s=l.value,0===(o=ur(s,o)?0:0|("function"==typeof r._calculateChangedBits?r._calculateChangedBits(s,o):1073741823))){if(l.children===a.children&&!pa.current){t=ol(e,t,n);break e}}else for(null!==(s=t.child)&&(s.return=t);null!==s;){var u=s.dependencies;if(null!==u){l=s.child;for(var c=u.firstContext;null!==c;){if(c.context===r&&0!=(c.observedBits&o)){1===s.tag&&((c=uo(-1,n&-n)).tag=2,co(s,c)),s.lanes|=n,null!==(c=s.alternate)&&(c.lanes|=n),ro(s.return,n),u.lanes|=n;break}c=c.next}}else l=10===s.tag&&s.type===t.type?null:s.child;if(null!==l)l.return=s;else for(l=s;null!==l;){if(l===t){l=null;break}if(null!==(s=l.sibling)){s.return=l.return,l=s;break}l=l.return}s=l}Fi(e,t,a.children,n),t=t.child}return t;case 9:return a=t.type,r=(o=t.pendingProps).children,ao(t,n),r=r(a=oo(a,o.unstable_observedBits)),t.flags|=1,Fi(e,t,r,n),t.child;case 14:return o=Ka(a=t.type,t.pendingProps),Ui(e,t,a,o=Ka(a.type,o),r,n);case 15:return $i(e,t,t.type,t.pendingProps,r,n);case 17:return r=t.type,a=t.pendingProps,a=t.elementType===r?a:Ka(r,a),null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),t.tag=1,ga(r)?(e=!0,wa(t)):e=!1,ao(t,n),yo(t,r,a),Eo(t,r,a,n),Yi(null,t,r,!0,e,n);case 19:return al(e,t,n);case 23:case 24:return ji(e,t,n)}throw Error(i(156,t.tag))},ru.prototype.render=function(e){Js(e,this._internalRoot,null,null)},ru.prototype.unmount=function(){var e=this._internalRoot,t=e.containerInfo;Js(null,e,null,(function(){t[Jr]=null}))},et=function(e){13===e.tag&&(ms(e,4,fs()),nu(e,4))},tt=function(e){13===e.tag&&(ms(e,67108864,fs()),nu(e,67108864))},nt=function(e){if(13===e.tag){var t=fs(),n=ps(e);ms(e,n,t),nu(e,n)}},rt=function(e,t){return t()},_e=function(e,t,n){switch(t){case"input":if(ne(e,n),t=n.name,"radio"===n.type&&null!=t){for(n=e;n.parentNode;)n=n.parentNode;for(n=n.querySelectorAll("input[name="+JSON.stringify(""+t)+'][type="radio"]'),t=0;t<n.length;t++){var r=n[t];if(r!==e&&r.form===e.form){var a=aa(r);if(!a)throw Error(i(90));Q(r),ne(r,a)}}}break;case"textarea":ue(e,n);break;case"select":null!=(t=n.value)&&ie(e,!!n.multiple,t,!1)}},Pe=ws,Re=function(e,t,n,r,a){var o=Pl;Pl|=4;try{return Ya(98,e.bind(null,t,n,r,a))}finally{0===(Pl=o)&&(Wl(),Wa())}},Ie=function(){0==(49&Pl)&&(function(){if(null!==as){var e=as;as=null,e.forEach((function(e){e.expiredLanes|=24&e.pendingLanes,gs(e,za())}))}Wa()}(),Ds())},De=function(e,t){var n=Pl;Pl|=2;try{return e(t)}finally{0===(Pl=n)&&(Wl(),Wa())}};var lu={Events:[na,ra,aa,Le,Oe,Ds,{current:!1}]},su={findFiberByHostInstance:ta,bundleType:0,version:"17.0.2",rendererPackageName:"react-dom"},uu={bundleType:su.bundleType,version:su.version,rendererPackageName:su.rendererPackageName,rendererConfig:su.rendererConfig,overrideHookState:null,overrideHookStateDeletePath:null,overrideHookStateRenamePath:null,overrideProps:null,overridePropsDeletePath:null,overridePropsRenamePath:null,setSuspenseHandler:null,scheduleUpdate:null,currentDispatcherRef:E.ReactCurrentDispatcher,findHostInstanceByFiber:function(e){return null===(e=Xe(e))?null:e.stateNode},findFiberByHostInstance:su.findFiberByHostInstance||function(){return null},findHostInstancesForRefresh:null,scheduleRefresh:null,scheduleRoot:null,setRefreshHandler:null,getCurrentFiber:null};if("undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__){var cu=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!cu.isDisabled&&cu.supportsFiber)try{ka=cu.inject(uu),Sa=cu}catch(he){}}t.hydrate=function(e,t,n){if(!au(t))throw Error(i(200));return ou(null,e,t,!0,n)}},73935:(e,t,n)=>{"use strict";!function e(){if("undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&"function"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE)try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(e)}catch(t){console.error(t)}}(),e.exports=n(64448)},69590:e=>{var t="undefined"!=typeof Element,n="function"==typeof Map,r="function"==typeof Set,a="function"==typeof ArrayBuffer&&!!ArrayBuffer.isView;function o(e,i){if(e===i)return!0;if(e&&i&&"object"==typeof e&&"object"==typeof i){if(e.constructor!==i.constructor)return!1;var l,s,u,c;if(Array.isArray(e)){if((l=e.length)!=i.length)return!1;for(s=l;0!=s--;)if(!o(e[s],i[s]))return!1;return!0}if(n&&e instanceof Map&&i instanceof Map){if(e.size!==i.size)return!1;for(c=e.entries();!(s=c.next()).done;)if(!i.has(s.value[0]))return!1;for(c=e.entries();!(s=c.next()).done;)if(!o(s.value[1],i.get(s.value[0])))return!1;return!0}if(r&&e instanceof Set&&i instanceof Set){if(e.size!==i.size)return!1;for(c=e.entries();!(s=c.next()).done;)if(!i.has(s.value[0]))return!1;return!0}if(a&&ArrayBuffer.isView(e)&&ArrayBuffer.isView(i)){if((l=e.length)!=i.length)return!1;for(s=l;0!=s--;)if(e[s]!==i[s])return!1;return!0}if(e.constructor===RegExp)return e.source===i.source&&e.flags===i.flags;if(e.valueOf!==Object.prototype.valueOf)return e.valueOf()===i.valueOf();if(e.toString!==Object.prototype.toString)return e.toString()===i.toString();if((l=(u=Object.keys(e)).length)!==Object.keys(i).length)return!1;for(s=l;0!=s--;)if(!Object.prototype.hasOwnProperty.call(i,u[s]))return!1;if(t&&e instanceof Element)return!1;for(s=l;0!=s--;)if(("_owner"!==u[s]&&"__v"!==u[s]&&"__o"!==u[s]||!e.$$typeof)&&!o(e[u[s]],i[u[s]]))return!1;return!0}return e!=e&&i!=i}e.exports=function(e,t){try{return o(e,t)}catch(n){if((n.message||"").match(/stack|recursion/i))return console.warn("react-fast-compare cannot handle circular refs"),!1;throw n}}},70405:(e,t,n)=>{"use strict";n.d(t,{B6:()=>Y,ql:()=>J});var r=n(67294),a=n(45697),o=n.n(a),i=n(69590),l=n.n(i),s=n(41143),u=n.n(s),c=n(96774),d=n.n(c);function f(){return f=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},f.apply(this,arguments)}function p(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,m(e,t)}function m(e,t){return m=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},m(e,t)}function h(e,t){if(null==e)return{};var n,r,a={},o=Object.keys(e);for(r=0;r<o.length;r++)t.indexOf(n=o[r])>=0||(a[n]=e[n]);return a}var g={BASE:"base",BODY:"body",HEAD:"head",HTML:"html",LINK:"link",META:"meta",NOSCRIPT:"noscript",SCRIPT:"script",STYLE:"style",TITLE:"title",FRAGMENT:"Symbol(react.fragment)"},b={rel:["amphtml","canonical","alternate"]},v={type:["application/ld+json"]},y={charset:"",name:["robots","description"],property:["og:type","og:title","og:url","og:image","og:image:alt","og:description","twitter:url","twitter:title","twitter:description","twitter:image","twitter:image:alt","twitter:card","twitter:site"]},w=Object.keys(g).map((function(e){return g[e]})),E={accesskey:"accessKey",charset:"charSet",class:"className",contenteditable:"contentEditable",contextmenu:"contextMenu","http-equiv":"httpEquiv",itemprop:"itemProp",tabindex:"tabIndex"},k=Object.keys(E).reduce((function(e,t){return e[E[t]]=t,e}),{}),S=function(e,t){for(var n=e.length-1;n>=0;n-=1){var r=e[n];if(Object.prototype.hasOwnProperty.call(r,t))return r[t]}return null},x=function(e){var t=S(e,g.TITLE),n=S(e,"titleTemplate");if(Array.isArray(t)&&(t=t.join("")),n&&t)return n.replace(/%s/g,(function(){return t}));var r=S(e,"defaultTitle");return t||r||void 0},C=function(e){return S(e,"onChangeClientState")||function(){}},_=function(e,t){return t.filter((function(t){return void 0!==t[e]})).map((function(t){return t[e]})).reduce((function(e,t){return f({},e,t)}),{})},T=function(e,t){return t.filter((function(e){return void 0!==e[g.BASE]})).map((function(e){return e[g.BASE]})).reverse().reduce((function(t,n){if(!t.length)for(var r=Object.keys(n),a=0;a<r.length;a+=1){var o=r[a].toLowerCase();if(-1!==e.indexOf(o)&&n[o])return t.concat(n)}return t}),[])},A=function(e,t,n){var r={};return n.filter((function(t){return!!Array.isArray(t[e])||(void 0!==t[e]&&console&&"function"==typeof console.warn&&console.warn("Helmet: "+e+' should be of type "Array". Instead found type "'+typeof t[e]+'"'),!1)})).map((function(t){return t[e]})).reverse().reduce((function(e,n){var a={};n.filter((function(e){for(var n,o=Object.keys(e),i=0;i<o.length;i+=1){var l=o[i],s=l.toLowerCase();-1===t.indexOf(s)||"rel"===n&&"canonical"===e[n].toLowerCase()||"rel"===s&&"stylesheet"===e[s].toLowerCase()||(n=s),-1===t.indexOf(l)||"innerHTML"!==l&&"cssText"!==l&&"itemprop"!==l||(n=l)}if(!n||!e[n])return!1;var u=e[n].toLowerCase();return r[n]||(r[n]={}),a[n]||(a[n]={}),!r[n][u]&&(a[n][u]=!0,!0)})).reverse().forEach((function(t){return e.push(t)}));for(var o=Object.keys(a),i=0;i<o.length;i+=1){var l=o[i],s=f({},r[l],a[l]);r[l]=s}return e}),[]).reverse()},N=function(e,t){if(Array.isArray(e)&&e.length)for(var n=0;n<e.length;n+=1)if(e[n][t])return!0;return!1},L=function(e){return Array.isArray(e)?e.join(""):e},O=function(e,t){return Array.isArray(e)?e.reduce((function(e,n){return function(e,t){for(var n=Object.keys(e),r=0;r<n.length;r+=1)if(t[n[r]]&&t[n[r]].includes(e[n[r]]))return!0;return!1}(n,t)?e.priority.push(n):e.default.push(n),e}),{priority:[],default:[]}):{default:e}},P=function(e,t){var n;return f({},e,((n={})[t]=void 0,n))},R=[g.NOSCRIPT,g.SCRIPT,g.STYLE],I=function(e,t){return void 0===t&&(t=!0),!1===t?String(e):String(e).replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">").replace(/"/g,""").replace(/'/g,"'")},D=function(e){return Object.keys(e).reduce((function(t,n){var r=void 0!==e[n]?n+'="'+e[n]+'"':""+n;return t?t+" "+r:r}),"")},M=function(e,t){return void 0===t&&(t={}),Object.keys(e).reduce((function(t,n){return t[E[n]||n]=e[n],t}),t)},F=function(e,t){return t.map((function(t,n){var a,o=((a={key:n})["data-rh"]=!0,a);return Object.keys(t).forEach((function(e){var n=E[e]||e;"innerHTML"===n||"cssText"===n?o.dangerouslySetInnerHTML={__html:t.innerHTML||t.cssText}:o[n]=t[e]})),r.createElement(e,o)}))},B=function(e,t,n){switch(e){case g.TITLE:return{toComponent:function(){return n=t.titleAttributes,(a={key:e=t.title})["data-rh"]=!0,o=M(n,a),[r.createElement(g.TITLE,o,e)];var e,n,a,o},toString:function(){return function(e,t,n,r){var a=D(n),o=L(t);return a?"<"+e+' data-rh="true" '+a+">"+I(o,r)+"</"+e+">":"<"+e+' data-rh="true">'+I(o,r)+"</"+e+">"}(e,t.title,t.titleAttributes,n)}};case"bodyAttributes":case"htmlAttributes":return{toComponent:function(){return M(t)},toString:function(){return D(t)}};default:return{toComponent:function(){return F(e,t)},toString:function(){return function(e,t,n){return t.reduce((function(t,r){var a=Object.keys(r).filter((function(e){return!("innerHTML"===e||"cssText"===e)})).reduce((function(e,t){var a=void 0===r[t]?t:t+'="'+I(r[t],n)+'"';return e?e+" "+a:a}),""),o=r.innerHTML||r.cssText||"",i=-1===R.indexOf(e);return t+"<"+e+' data-rh="true" '+a+(i?"/>":">"+o+"</"+e+">")}),"")}(e,t,n)}}}},U=function(e){var t=e.baseTag,n=e.bodyAttributes,r=e.encode,a=e.htmlAttributes,o=e.noscriptTags,i=e.styleTags,l=e.title,s=void 0===l?"":l,u=e.titleAttributes,c=e.linkTags,d=e.metaTags,f=e.scriptTags,p={toComponent:function(){},toString:function(){return""}};if(e.prioritizeSeoTags){var m=function(e){var t=e.linkTags,n=e.scriptTags,r=e.encode,a=O(e.metaTags,y),o=O(t,b),i=O(n,v);return{priorityMethods:{toComponent:function(){return[].concat(F(g.META,a.priority),F(g.LINK,o.priority),F(g.SCRIPT,i.priority))},toString:function(){return B(g.META,a.priority,r)+" "+B(g.LINK,o.priority,r)+" "+B(g.SCRIPT,i.priority,r)}},metaTags:a.default,linkTags:o.default,scriptTags:i.default}}(e);p=m.priorityMethods,c=m.linkTags,d=m.metaTags,f=m.scriptTags}return{priority:p,base:B(g.BASE,t,r),bodyAttributes:B("bodyAttributes",n,r),htmlAttributes:B("htmlAttributes",a,r),link:B(g.LINK,c,r),meta:B(g.META,d,r),noscript:B(g.NOSCRIPT,o,r),script:B(g.SCRIPT,f,r),style:B(g.STYLE,i,r),title:B(g.TITLE,{title:s,titleAttributes:u},r)}},$=[],j=function(e,t){var n=this;void 0===t&&(t="undefined"!=typeof document),this.instances=[],this.value={setHelmet:function(e){n.context.helmet=e},helmetInstances:{get:function(){return n.canUseDOM?$:n.instances},add:function(e){(n.canUseDOM?$:n.instances).push(e)},remove:function(e){var t=(n.canUseDOM?$:n.instances).indexOf(e);(n.canUseDOM?$:n.instances).splice(t,1)}}},this.context=e,this.canUseDOM=t,t||(e.helmet=U({baseTag:[],bodyAttributes:{},encodeSpecialCharacters:!0,htmlAttributes:{},linkTags:[],metaTags:[],noscriptTags:[],scriptTags:[],styleTags:[],title:"",titleAttributes:{}}))},z=r.createContext({}),Z=o().shape({setHelmet:o().func,helmetInstances:o().shape({get:o().func,add:o().func,remove:o().func})}),H="undefined"!=typeof document,Y=function(e){function t(n){var r;return(r=e.call(this,n)||this).helmetData=new j(r.props.context,t.canUseDOM),r}return p(t,e),t.prototype.render=function(){return r.createElement(z.Provider,{value:this.helmetData.value},this.props.children)},t}(r.Component);Y.canUseDOM=H,Y.propTypes={context:o().shape({helmet:o().shape()}),children:o().node.isRequired},Y.defaultProps={context:{}},Y.displayName="HelmetProvider";var V=function(e,t){var n,r=document.head||document.querySelector(g.HEAD),a=r.querySelectorAll(e+"[data-rh]"),o=[].slice.call(a),i=[];return t&&t.length&&t.forEach((function(t){var r=document.createElement(e);for(var a in t)Object.prototype.hasOwnProperty.call(t,a)&&("innerHTML"===a?r.innerHTML=t.innerHTML:"cssText"===a?r.styleSheet?r.styleSheet.cssText=t.cssText:r.appendChild(document.createTextNode(t.cssText)):r.setAttribute(a,void 0===t[a]?"":t[a]));r.setAttribute("data-rh","true"),o.some((function(e,t){return n=t,r.isEqualNode(e)}))?o.splice(n,1):i.push(r)})),o.forEach((function(e){return e.parentNode.removeChild(e)})),i.forEach((function(e){return r.appendChild(e)})),{oldTags:o,newTags:i}},W=function(e,t){var n=document.getElementsByTagName(e)[0];if(n){for(var r=n.getAttribute("data-rh"),a=r?r.split(","):[],o=[].concat(a),i=Object.keys(t),l=0;l<i.length;l+=1){var s=i[l],u=t[s]||"";n.getAttribute(s)!==u&&n.setAttribute(s,u),-1===a.indexOf(s)&&a.push(s);var c=o.indexOf(s);-1!==c&&o.splice(c,1)}for(var d=o.length-1;d>=0;d-=1)n.removeAttribute(o[d]);a.length===o.length?n.removeAttribute("data-rh"):n.getAttribute("data-rh")!==i.join(",")&&n.setAttribute("data-rh",i.join(","))}},G=function(e,t){var n=e.baseTag,r=e.htmlAttributes,a=e.linkTags,o=e.metaTags,i=e.noscriptTags,l=e.onChangeClientState,s=e.scriptTags,u=e.styleTags,c=e.title,d=e.titleAttributes;W(g.BODY,e.bodyAttributes),W(g.HTML,r),function(e,t){void 0!==e&&document.title!==e&&(document.title=L(e)),W(g.TITLE,t)}(c,d);var f={baseTag:V(g.BASE,n),linkTags:V(g.LINK,a),metaTags:V(g.META,o),noscriptTags:V(g.NOSCRIPT,i),scriptTags:V(g.SCRIPT,s),styleTags:V(g.STYLE,u)},p={},m={};Object.keys(f).forEach((function(e){var t=f[e],n=t.newTags,r=t.oldTags;n.length&&(p[e]=n),r.length&&(m[e]=f[e].oldTags)})),t&&t(),l(e,p,m)},q=null,K=function(e){function t(){for(var t,n=arguments.length,r=new Array(n),a=0;a<n;a++)r[a]=arguments[a];return(t=e.call.apply(e,[this].concat(r))||this).rendered=!1,t}p(t,e);var n=t.prototype;return n.shouldComponentUpdate=function(e){return!d()(e,this.props)},n.componentDidUpdate=function(){this.emitChange()},n.componentWillUnmount=function(){this.props.context.helmetInstances.remove(this),this.emitChange()},n.emitChange=function(){var e,t,n=this.props.context,r=n.setHelmet,a=null,o=(e=n.helmetInstances.get().map((function(e){var t=f({},e.props);return delete t.context,t})),{baseTag:T(["href"],e),bodyAttributes:_("bodyAttributes",e),defer:S(e,"defer"),encode:S(e,"encodeSpecialCharacters"),htmlAttributes:_("htmlAttributes",e),linkTags:A(g.LINK,["rel","href"],e),metaTags:A(g.META,["name","charset","http-equiv","property","itemprop"],e),noscriptTags:A(g.NOSCRIPT,["innerHTML"],e),onChangeClientState:C(e),scriptTags:A(g.SCRIPT,["src","innerHTML"],e),styleTags:A(g.STYLE,["cssText"],e),title:x(e),titleAttributes:_("titleAttributes",e),prioritizeSeoTags:N(e,"prioritizeSeoTags")});Y.canUseDOM?(t=o,q&&cancelAnimationFrame(q),t.defer?q=requestAnimationFrame((function(){G(t,(function(){q=null}))})):(G(t),q=null)):U&&(a=U(o)),r(a)},n.init=function(){this.rendered||(this.rendered=!0,this.props.context.helmetInstances.add(this),this.emitChange())},n.render=function(){return this.init(),null},t}(r.Component);K.propTypes={context:Z.isRequired},K.displayName="HelmetDispatcher";var Q=["children"],X=["children"],J=function(e){function t(){return e.apply(this,arguments)||this}p(t,e);var n=t.prototype;return n.shouldComponentUpdate=function(e){return!l()(P(this.props,"helmetData"),P(e,"helmetData"))},n.mapNestedChildrenToProps=function(e,t){if(!t)return null;switch(e.type){case g.SCRIPT:case g.NOSCRIPT:return{innerHTML:t};case g.STYLE:return{cssText:t};default:throw new Error("<"+e.type+" /> elements are self-closing and can not contain children. Refer to our API for more information.")}},n.flattenArrayTypeChildren=function(e){var t,n=e.child,r=e.arrayTypeChildren;return f({},r,((t={})[n.type]=[].concat(r[n.type]||[],[f({},e.newChildProps,this.mapNestedChildrenToProps(n,e.nestedChildren))]),t))},n.mapObjectTypeChildren=function(e){var t,n,r=e.child,a=e.newProps,o=e.newChildProps,i=e.nestedChildren;switch(r.type){case g.TITLE:return f({},a,((t={})[r.type]=i,t.titleAttributes=f({},o),t));case g.BODY:return f({},a,{bodyAttributes:f({},o)});case g.HTML:return f({},a,{htmlAttributes:f({},o)});default:return f({},a,((n={})[r.type]=f({},o),n))}},n.mapArrayTypeChildrenToProps=function(e,t){var n=f({},t);return Object.keys(e).forEach((function(t){var r;n=f({},n,((r={})[t]=e[t],r))})),n},n.warnOnInvalidChildren=function(e,t){return u()(w.some((function(t){return e.type===t})),"function"==typeof e.type?"You may be attempting to nest <Helmet> components within each other, which is not allowed. Refer to our API for more information.":"Only elements types "+w.join(", ")+" are allowed. Helmet does not support rendering <"+e.type+"> elements. Refer to our API for more information."),u()(!t||"string"==typeof t||Array.isArray(t)&&!t.some((function(e){return"string"!=typeof e})),"Helmet expects a string as a child of <"+e.type+">. Did you forget to wrap your children in braces? ( <"+e.type+">{``}</"+e.type+"> ) Refer to our API for more information."),!0},n.mapChildrenToProps=function(e,t){var n=this,a={};return r.Children.forEach(e,(function(e){if(e&&e.props){var r=e.props,o=r.children,i=h(r,Q),l=Object.keys(i).reduce((function(e,t){return e[k[t]||t]=i[t],e}),{}),s=e.type;switch("symbol"==typeof s?s=s.toString():n.warnOnInvalidChildren(e,o),s){case g.FRAGMENT:t=n.mapChildrenToProps(o,t);break;case g.LINK:case g.META:case g.NOSCRIPT:case g.SCRIPT:case g.STYLE:a=n.flattenArrayTypeChildren({child:e,arrayTypeChildren:a,newChildProps:l,nestedChildren:o});break;default:t=n.mapObjectTypeChildren({child:e,newProps:t,newChildProps:l,nestedChildren:o})}}})),this.mapArrayTypeChildrenToProps(a,t)},n.render=function(){var e=this.props,t=e.children,n=h(e,X),a=f({},n),o=n.helmetData;return t&&(a=this.mapChildrenToProps(t,a)),!o||o instanceof j||(o=new j(o.context,o.instances)),o?r.createElement(K,f({},a,{context:o.value,helmetData:void 0})):r.createElement(z.Consumer,null,(function(e){return r.createElement(K,f({},a,{context:e}))}))},t}(r.Component);J.propTypes={base:o().object,bodyAttributes:o().object,children:o().oneOfType([o().arrayOf(o().node),o().node]),defaultTitle:o().string,defer:o().bool,encodeSpecialCharacters:o().bool,htmlAttributes:o().object,link:o().arrayOf(o().object),meta:o().arrayOf(o().object),noscript:o().arrayOf(o().object),onChangeClientState:o().func,script:o().arrayOf(o().object),style:o().arrayOf(o().object),title:o().string,titleAttributes:o().object,titleTemplate:o().string,prioritizeSeoTags:o().bool,helmetData:o().object},J.defaultProps={defer:!0,encodeSpecialCharacters:!0,prioritizeSeoTags:!1},J.displayName="Helmet"},69921:(e,t)=>{"use strict";var n="function"==typeof Symbol&&Symbol.for,r=n?Symbol.for("react.element"):60103,a=n?Symbol.for("react.portal"):60106,o=n?Symbol.for("react.fragment"):60107,i=n?Symbol.for("react.strict_mode"):60108,l=n?Symbol.for("react.profiler"):60114,s=n?Symbol.for("react.provider"):60109,u=n?Symbol.for("react.context"):60110,c=n?Symbol.for("react.async_mode"):60111,d=n?Symbol.for("react.concurrent_mode"):60111,f=n?Symbol.for("react.forward_ref"):60112,p=n?Symbol.for("react.suspense"):60113,m=n?Symbol.for("react.suspense_list"):60120,h=n?Symbol.for("react.memo"):60115,g=n?Symbol.for("react.lazy"):60116,b=n?Symbol.for("react.block"):60121,v=n?Symbol.for("react.fundamental"):60117,y=n?Symbol.for("react.responder"):60118,w=n?Symbol.for("react.scope"):60119;function E(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case r:switch(e=e.type){case c:case d:case o:case l:case i:case p:return e;default:switch(e=e&&e.$$typeof){case u:case f:case g:case h:case s:return e;default:return t}}case a:return t}}}function k(e){return E(e)===d}t.AsyncMode=c,t.ConcurrentMode=d,t.ContextConsumer=u,t.ContextProvider=s,t.Element=r,t.ForwardRef=f,t.Fragment=o,t.Lazy=g,t.Memo=h,t.Portal=a,t.Profiler=l,t.StrictMode=i,t.Suspense=p,t.isAsyncMode=function(e){return k(e)||E(e)===c},t.isConcurrentMode=k,t.isContextConsumer=function(e){return E(e)===u},t.isContextProvider=function(e){return E(e)===s},t.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===r},t.isForwardRef=function(e){return E(e)===f},t.isFragment=function(e){return E(e)===o},t.isLazy=function(e){return E(e)===g},t.isMemo=function(e){return E(e)===h},t.isPortal=function(e){return E(e)===a},t.isProfiler=function(e){return E(e)===l},t.isStrictMode=function(e){return E(e)===i},t.isSuspense=function(e){return E(e)===p},t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===o||e===d||e===l||e===i||e===p||e===m||"object"==typeof e&&null!==e&&(e.$$typeof===g||e.$$typeof===h||e.$$typeof===s||e.$$typeof===u||e.$$typeof===f||e.$$typeof===v||e.$$typeof===y||e.$$typeof===w||e.$$typeof===b)},t.typeOf=E},59864:(e,t,n)=>{"use strict";e.exports=n(69921)},68356:(e,t,n)=>{"use strict";function r(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e.__proto__=t}function a(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function o(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function i(){return i=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},i.apply(this,arguments)}var l=n(67294),s=n(45697),u=[],c=[];function d(e){var t=e(),n={loading:!0,loaded:null,error:null};return n.promise=t.then((function(e){return n.loading=!1,n.loaded=e,e})).catch((function(e){throw n.loading=!1,n.error=e,e})),n}function f(e){var t={loading:!1,loaded:{},error:null},n=[];try{Object.keys(e).forEach((function(r){var a=d(e[r]);a.loading?t.loading=!0:(t.loaded[r]=a.loaded,t.error=a.error),n.push(a.promise),a.promise.then((function(e){t.loaded[r]=e})).catch((function(e){t.error=e}))}))}catch(r){t.error=r}return t.promise=Promise.all(n).then((function(e){return t.loading=!1,e})).catch((function(e){throw t.loading=!1,e})),t}function p(e,t){return l.createElement((n=e)&&n.__esModule?n.default:n,t);var n}function m(e,t){var d,f;if(!t.loading)throw new Error("react-loadable requires a `loading` component");var m=i({loader:null,loading:null,delay:200,timeout:null,render:p,webpack:null,modules:null},t),h=null;function g(){return h||(h=e(m.loader)),h.promise}return u.push(g),"function"==typeof m.webpack&&c.push((function(){if((0,m.webpack)().every((function(e){return void 0!==e&&void 0!==n.m[e]})))return g()})),f=d=function(t){function n(n){var r;return o(a(a(r=t.call(this,n)||this)),"retry",(function(){r.setState({error:null,loading:!0,timedOut:!1}),h=e(m.loader),r._loadModule()})),g(),r.state={error:h.error,pastDelay:!1,timedOut:!1,loading:h.loading,loaded:h.loaded},r}r(n,t),n.preload=function(){return g()};var i=n.prototype;return i.UNSAFE_componentWillMount=function(){this._loadModule()},i.componentDidMount=function(){this._mounted=!0},i._loadModule=function(){var e=this;if(this.context.loadable&&Array.isArray(m.modules)&&m.modules.forEach((function(t){e.context.loadable.report(t)})),h.loading){var t=function(t){e._mounted&&e.setState(t)};"number"==typeof m.delay&&(0===m.delay?this.setState({pastDelay:!0}):this._delay=setTimeout((function(){t({pastDelay:!0})}),m.delay)),"number"==typeof m.timeout&&(this._timeout=setTimeout((function(){t({timedOut:!0})}),m.timeout));var n=function(){t({error:h.error,loaded:h.loaded,loading:h.loading}),e._clearTimeouts()};h.promise.then((function(){return n(),null})).catch((function(e){return n(),null}))}},i.componentWillUnmount=function(){this._mounted=!1,this._clearTimeouts()},i._clearTimeouts=function(){clearTimeout(this._delay),clearTimeout(this._timeout)},i.render=function(){return this.state.loading||this.state.error?l.createElement(m.loading,{isLoading:this.state.loading,pastDelay:this.state.pastDelay,timedOut:this.state.timedOut,error:this.state.error,retry:this.retry}):this.state.loaded?m.render(this.state.loaded,this.props):null},n}(l.Component),o(d,"contextTypes",{loadable:s.shape({report:s.func.isRequired})}),f}function h(e){return m(d,e)}h.Map=function(e){if("function"!=typeof e.render)throw new Error("LoadableMap requires a `render(loaded, props)` function");return m(f,e)};var g=function(e){function t(){return e.apply(this,arguments)||this}r(t,e);var n=t.prototype;return n.getChildContext=function(){return{loadable:{report:this.props.report}}},n.render=function(){return l.Children.only(this.props.children)},t}(l.Component);function b(e){for(var t=[];e.length;){var n=e.pop();t.push(n())}return Promise.all(t).then((function(){if(e.length)return b(e)}))}o(g,"propTypes",{report:s.func.isRequired}),o(g,"childContextTypes",{loadable:s.shape({report:s.func.isRequired}).isRequired}),h.Capture=g,h.preloadAll=function(){return new Promise((function(e,t){b(u).then(e,t)}))},h.preloadReady=function(){return new Promise((function(e,t){b(c).then(e,e)}))},e.exports=h},18790:(e,t,n)=>{"use strict";n.d(t,{H:()=>l,f:()=>i});var r=n(16550),a=n(87462),o=n(67294);function i(e,t,n){return void 0===n&&(n=[]),e.some((function(e){var a=e.path?(0,r.LX)(t,e):n.length?n[n.length-1].match:r.F0.computeRootMatch(t);return a&&(n.push({route:e,match:a}),e.routes&&i(e.routes,t,n)),a})),n}function l(e,t,n){return void 0===t&&(t={}),void 0===n&&(n={}),e?o.createElement(r.rs,n,e.map((function(e,n){return o.createElement(r.AW,{key:e.key||n,path:e.path,exact:e.exact,strict:e.strict,render:function(n){return e.render?e.render((0,a.Z)({},n,{},t,{route:e})):o.createElement(e.component,(0,a.Z)({},n,t,{route:e}))}})}))):null}},73727:(e,t,n)=>{"use strict";n.d(t,{OL:()=>y,VK:()=>c,rU:()=>g});var r=n(16550),a=n(75068),o=n(67294),i=n(42358),l=n(87462),s=n(63366),u=n(38776),c=function(e){function t(){for(var t,n=arguments.length,r=new Array(n),a=0;a<n;a++)r[a]=arguments[a];return(t=e.call.apply(e,[this].concat(r))||this).history=(0,i.lX)(t.props),t}return(0,a.Z)(t,e),t.prototype.render=function(){return o.createElement(r.F0,{history:this.history,children:this.props.children})},t}(o.Component);o.Component;var d=function(e,t){return"function"==typeof e?e(t):e},f=function(e,t){return"string"==typeof e?(0,i.ob)(e,null,null,t):e},p=function(e){return e},m=o.forwardRef;void 0===m&&(m=p);var h=m((function(e,t){var n=e.innerRef,r=e.navigate,a=e.onClick,i=(0,s.Z)(e,["innerRef","navigate","onClick"]),u=i.target,c=(0,l.Z)({},i,{onClick:function(e){try{a&&a(e)}catch(t){throw e.preventDefault(),t}e.defaultPrevented||0!==e.button||u&&"_self"!==u||function(e){return!!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)}(e)||(e.preventDefault(),r())}});return c.ref=p!==m&&t||n,o.createElement("a",c)}));var g=m((function(e,t){var n=e.component,a=void 0===n?h:n,c=e.replace,g=e.to,b=e.innerRef,v=(0,s.Z)(e,["component","replace","to","innerRef"]);return o.createElement(r.s6.Consumer,null,(function(e){e||(0,u.Z)(!1);var n=e.history,r=f(d(g,e.location),e.location),s=r?n.createHref(r):"",h=(0,l.Z)({},v,{href:s,navigate:function(){var t=d(g,e.location),r=(0,i.Ep)(e.location)===(0,i.Ep)(f(t));(c||r?n.replace:n.push)(t)}});return p!==m?h.ref=t||b:h.innerRef=b,o.createElement(a,h)}))})),b=function(e){return e},v=o.forwardRef;void 0===v&&(v=b);var y=v((function(e,t){var n=e["aria-current"],a=void 0===n?"page":n,i=e.activeClassName,c=void 0===i?"active":i,p=e.activeStyle,m=e.className,h=e.exact,y=e.isActive,w=e.location,E=e.sensitive,k=e.strict,S=e.style,x=e.to,C=e.innerRef,_=(0,s.Z)(e,["aria-current","activeClassName","activeStyle","className","exact","isActive","location","sensitive","strict","style","to","innerRef"]);return o.createElement(r.s6.Consumer,null,(function(e){e||(0,u.Z)(!1);var n=w||e.location,i=f(d(x,n),n),s=i.pathname,T=s&&s.replace(/([.+*?=^!:${}()[\]|/\\])/g,"\\$1"),A=T?(0,r.LX)(n.pathname,{path:T,exact:h,sensitive:E,strict:k}):null,N=!!(y?y(A,n):A),L="function"==typeof m?m(N):m,O="function"==typeof S?S(N):S;N&&(L=function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return t.filter((function(e){return e})).join(" ")}(L,c),O=(0,l.Z)({},O,p));var P=(0,l.Z)({"aria-current":N&&a||null,className:L,style:O,to:i},_);return b!==v?P.ref=t||C:P.innerRef=C,o.createElement(g,P)}))}))},16550:(e,t,n)=>{"use strict";n.d(t,{AW:()=>L,F0:()=>y,LX:()=>N,TH:()=>U,k6:()=>B,l_:()=>C,rs:()=>M,s6:()=>v});var r=n(75068),a=n(67294),o=n(45697),i=n.n(o),l=n(42358),s=n(38776),u=n(87462),c=n(14779),d=n.n(c),f=(n(59864),n(63366)),p=(n(8679),1073741823),m="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:void 0!==n.g?n.g:{};var h=a.createContext||function(e,t){var n,o,l="__create-react-context-"+function(){var e="__global_unique_id__";return m[e]=(m[e]||0)+1}()+"__",s=function(e){function n(){for(var t,n,r,a=arguments.length,o=new Array(a),i=0;i<a;i++)o[i]=arguments[i];return(t=e.call.apply(e,[this].concat(o))||this).emitter=(n=t.props.value,r=[],{on:function(e){r.push(e)},off:function(e){r=r.filter((function(t){return t!==e}))},get:function(){return n},set:function(e,t){n=e,r.forEach((function(e){return e(n,t)}))}}),t}(0,r.Z)(n,e);var a=n.prototype;return a.getChildContext=function(){var e;return(e={})[l]=this.emitter,e},a.componentWillReceiveProps=function(e){if(this.props.value!==e.value){var n,r=this.props.value,a=e.value;((o=r)===(i=a)?0!==o||1/o==1/i:o!=o&&i!=i)?n=0:(n="function"==typeof t?t(r,a):p,0!==(n|=0)&&this.emitter.set(e.value,n))}var o,i},a.render=function(){return this.props.children},n}(a.Component);s.childContextTypes=((n={})[l]=i().object.isRequired,n);var u=function(t){function n(){for(var e,n=arguments.length,r=new Array(n),a=0;a<n;a++)r[a]=arguments[a];return(e=t.call.apply(t,[this].concat(r))||this).observedBits=void 0,e.state={value:e.getValue()},e.onUpdate=function(t,n){0!=((0|e.observedBits)&n)&&e.setState({value:e.getValue()})},e}(0,r.Z)(n,t);var a=n.prototype;return a.componentWillReceiveProps=function(e){var t=e.observedBits;this.observedBits=null==t?p:t},a.componentDidMount=function(){this.context[l]&&this.context[l].on(this.onUpdate);var e=this.props.observedBits;this.observedBits=null==e?p:e},a.componentWillUnmount=function(){this.context[l]&&this.context[l].off(this.onUpdate)},a.getValue=function(){return this.context[l]?this.context[l].get():e},a.render=function(){return(e=this.props.children,Array.isArray(e)?e[0]:e)(this.state.value);var e},n}(a.Component);return u.contextTypes=((o={})[l]=i().object,o),{Provider:s,Consumer:u}},g=function(e){var t=h();return t.displayName=e,t},b=g("Router-History"),v=g("Router"),y=function(e){function t(t){var n;return(n=e.call(this,t)||this).state={location:t.history.location},n._isMounted=!1,n._pendingLocation=null,t.staticContext||(n.unlisten=t.history.listen((function(e){n._pendingLocation=e}))),n}(0,r.Z)(t,e),t.computeRootMatch=function(e){return{path:"/",url:"/",params:{},isExact:"/"===e}};var n=t.prototype;return n.componentDidMount=function(){var e=this;this._isMounted=!0,this.unlisten&&this.unlisten(),this.props.staticContext||(this.unlisten=this.props.history.listen((function(t){e._isMounted&&e.setState({location:t})}))),this._pendingLocation&&this.setState({location:this._pendingLocation})},n.componentWillUnmount=function(){this.unlisten&&(this.unlisten(),this._isMounted=!1,this._pendingLocation=null)},n.render=function(){return a.createElement(v.Provider,{value:{history:this.props.history,location:this.state.location,match:t.computeRootMatch(this.state.location.pathname),staticContext:this.props.staticContext}},a.createElement(b.Provider,{children:this.props.children||null,value:this.props.history}))},t}(a.Component);a.Component;var w=function(e){function t(){return e.apply(this,arguments)||this}(0,r.Z)(t,e);var n=t.prototype;return n.componentDidMount=function(){this.props.onMount&&this.props.onMount.call(this,this)},n.componentDidUpdate=function(e){this.props.onUpdate&&this.props.onUpdate.call(this,this,e)},n.componentWillUnmount=function(){this.props.onUnmount&&this.props.onUnmount.call(this,this)},n.render=function(){return null},t}(a.Component);var E={},k=1e4,S=0;function x(e,t){return void 0===e&&(e="/"),void 0===t&&(t={}),"/"===e?e:function(e){if(E[e])return E[e];var t=d().compile(e);return S<k&&(E[e]=t,S++),t}(e)(t,{pretty:!0})}function C(e){var t=e.computedMatch,n=e.to,r=e.push,o=void 0!==r&&r;return a.createElement(v.Consumer,null,(function(e){e||(0,s.Z)(!1);var r=e.history,i=e.staticContext,c=o?r.push:r.replace,d=(0,l.ob)(t?"string"==typeof n?x(n,t.params):(0,u.Z)({},n,{pathname:x(n.pathname,t.params)}):n);return i?(c(d),null):a.createElement(w,{onMount:function(){c(d)},onUpdate:function(e,t){var n=(0,l.ob)(t.to);(0,l.Hp)(n,(0,u.Z)({},d,{key:n.key}))||c(d)},to:n})}))}var _={},T=1e4,A=0;function N(e,t){void 0===t&&(t={}),("string"==typeof t||Array.isArray(t))&&(t={path:t});var n=t,r=n.path,a=n.exact,o=void 0!==a&&a,i=n.strict,l=void 0!==i&&i,s=n.sensitive,u=void 0!==s&&s;return[].concat(r).reduce((function(t,n){if(!n&&""!==n)return null;if(t)return t;var r=function(e,t){var n=""+t.end+t.strict+t.sensitive,r=_[n]||(_[n]={});if(r[e])return r[e];var a=[],o={regexp:d()(e,a,t),keys:a};return A<T&&(r[e]=o,A++),o}(n,{end:o,strict:l,sensitive:u}),a=r.regexp,i=r.keys,s=a.exec(e);if(!s)return null;var c=s[0],f=s.slice(1),p=e===c;return o&&!p?null:{path:n,url:"/"===n&&""===c?"/":c,isExact:p,params:i.reduce((function(e,t,n){return e[t.name]=f[n],e}),{})}}),null)}var L=function(e){function t(){return e.apply(this,arguments)||this}return(0,r.Z)(t,e),t.prototype.render=function(){var e=this;return a.createElement(v.Consumer,null,(function(t){t||(0,s.Z)(!1);var n=e.props.location||t.location,r=e.props.computedMatch?e.props.computedMatch:e.props.path?N(n.pathname,e.props):t.match,o=(0,u.Z)({},t,{location:n,match:r}),i=e.props,l=i.children,c=i.component,d=i.render;return Array.isArray(l)&&function(e){return 0===a.Children.count(e)}(l)&&(l=null),a.createElement(v.Provider,{value:o},o.match?l?"function"==typeof l?l(o):l:c?a.createElement(c,o):d?d(o):null:"function"==typeof l?l(o):null)}))},t}(a.Component);function O(e){return"/"===e.charAt(0)?e:"/"+e}function P(e,t){if(!e)return t;var n=O(e);return 0!==t.pathname.indexOf(n)?t:(0,u.Z)({},t,{pathname:t.pathname.substr(n.length)})}function R(e){return"string"==typeof e?e:(0,l.Ep)(e)}function I(e){return function(){(0,s.Z)(!1)}}function D(){}a.Component;var M=function(e){function t(){return e.apply(this,arguments)||this}return(0,r.Z)(t,e),t.prototype.render=function(){var e=this;return a.createElement(v.Consumer,null,(function(t){t||(0,s.Z)(!1);var n,r,o=e.props.location||t.location;return a.Children.forEach(e.props.children,(function(e){if(null==r&&a.isValidElement(e)){n=e;var i=e.props.path||e.props.from;r=i?N(o.pathname,(0,u.Z)({},e.props,{path:i})):t.match}})),r?a.cloneElement(n,{location:o,computedMatch:r}):null}))},t}(a.Component);var F=a.useContext;function B(){return F(b)}function U(){return F(v).location}},72408:(e,t,n)=>{"use strict";var r=n(27418),a=60103,o=60106;t.Fragment=60107,t.StrictMode=60108,t.Profiler=60114;var i=60109,l=60110,s=60112;t.Suspense=60113;var u=60115,c=60116;if("function"==typeof Symbol&&Symbol.for){var d=Symbol.for;a=d("react.element"),o=d("react.portal"),t.Fragment=d("react.fragment"),t.StrictMode=d("react.strict_mode"),t.Profiler=d("react.profiler"),i=d("react.provider"),l=d("react.context"),s=d("react.forward_ref"),t.Suspense=d("react.suspense"),u=d("react.memo"),c=d("react.lazy")}var f="function"==typeof Symbol&&Symbol.iterator;function p(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n<arguments.length;n++)t+="&args[]="+encodeURIComponent(arguments[n]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var m={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},h={};function g(e,t,n){this.props=e,this.context=t,this.refs=h,this.updater=n||m}function b(){}function v(e,t,n){this.props=e,this.context=t,this.refs=h,this.updater=n||m}g.prototype.isReactComponent={},g.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(p(85));this.updater.enqueueSetState(this,e,t,"setState")},g.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},b.prototype=g.prototype;var y=v.prototype=new b;y.constructor=v,r(y,g.prototype),y.isPureReactComponent=!0;var w={current:null},E=Object.prototype.hasOwnProperty,k={key:!0,ref:!0,__self:!0,__source:!0};function S(e,t,n){var r,o={},i=null,l=null;if(null!=t)for(r in void 0!==t.ref&&(l=t.ref),void 0!==t.key&&(i=""+t.key),t)E.call(t,r)&&!k.hasOwnProperty(r)&&(o[r]=t[r]);var s=arguments.length-2;if(1===s)o.children=n;else if(1<s){for(var u=Array(s),c=0;c<s;c++)u[c]=arguments[c+2];o.children=u}if(e&&e.defaultProps)for(r in s=e.defaultProps)void 0===o[r]&&(o[r]=s[r]);return{$$typeof:a,type:e,key:i,ref:l,props:o,_owner:w.current}}function x(e){return"object"==typeof e&&null!==e&&e.$$typeof===a}var C=/\/+/g;function _(e,t){return"object"==typeof e&&null!==e&&null!=e.key?function(e){var t={"=":"=0",":":"=2"};return"$"+e.replace(/[=:]/g,(function(e){return t[e]}))}(""+e.key):t.toString(36)}function T(e,t,n,r,i){var l=typeof e;"undefined"!==l&&"boolean"!==l||(e=null);var s=!1;if(null===e)s=!0;else switch(l){case"string":case"number":s=!0;break;case"object":switch(e.$$typeof){case a:case o:s=!0}}if(s)return i=i(s=e),e=""===r?"."+_(s,0):r,Array.isArray(i)?(n="",null!=e&&(n=e.replace(C,"$&/")+"/"),T(i,t,n,"",(function(e){return e}))):null!=i&&(x(i)&&(i=function(e,t){return{$$typeof:a,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}}(i,n+(!i.key||s&&s.key===i.key?"":(""+i.key).replace(C,"$&/")+"/")+e)),t.push(i)),1;if(s=0,r=""===r?".":r+":",Array.isArray(e))for(var u=0;u<e.length;u++){var c=r+_(l=e[u],u);s+=T(l,t,n,c,i)}else if(c=function(e){return null===e||"object"!=typeof e?null:"function"==typeof(e=f&&e[f]||e["@@iterator"])?e:null}(e),"function"==typeof c)for(e=c.call(e),u=0;!(l=e.next()).done;)s+=T(l=l.value,t,n,c=r+_(l,u++),i);else if("object"===l)throw t=""+e,Error(p(31,"[object Object]"===t?"object with keys {"+Object.keys(e).join(", ")+"}":t));return s}function A(e,t,n){if(null==e)return e;var r=[],a=0;return T(e,r,"","",(function(e){return t.call(n,e,a++)})),r}function N(e){if(-1===e._status){var t=e._result;t=t(),e._status=0,e._result=t,t.then((function(t){0===e._status&&(t=t.default,e._status=1,e._result=t)}),(function(t){0===e._status&&(e._status=2,e._result=t)}))}if(1===e._status)return e._result;throw e._result}var L={current:null};function O(){var e=L.current;if(null===e)throw Error(p(321));return e}var P={ReactCurrentDispatcher:L,ReactCurrentBatchConfig:{transition:0},ReactCurrentOwner:w,IsSomeRendererActing:{current:!1},assign:r};t.Children={map:A,forEach:function(e,t,n){A(e,(function(){t.apply(this,arguments)}),n)},count:function(e){var t=0;return A(e,(function(){t++})),t},toArray:function(e){return A(e,(function(e){return e}))||[]},only:function(e){if(!x(e))throw Error(p(143));return e}},t.Component=g,t.PureComponent=v,t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=P,t.cloneElement=function(e,t,n){if(null==e)throw Error(p(267,e));var o=r({},e.props),i=e.key,l=e.ref,s=e._owner;if(null!=t){if(void 0!==t.ref&&(l=t.ref,s=w.current),void 0!==t.key&&(i=""+t.key),e.type&&e.type.defaultProps)var u=e.type.defaultProps;for(c in t)E.call(t,c)&&!k.hasOwnProperty(c)&&(o[c]=void 0===t[c]&&void 0!==u?u[c]:t[c])}var c=arguments.length-2;if(1===c)o.children=n;else if(1<c){u=Array(c);for(var d=0;d<c;d++)u[d]=arguments[d+2];o.children=u}return{$$typeof:a,type:e.type,key:i,ref:l,props:o,_owner:s}},t.createContext=function(e,t){return void 0===t&&(t=null),(e={$$typeof:l,_calculateChangedBits:t,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null}).Provider={$$typeof:i,_context:e},e.Consumer=e},t.createElement=S,t.createFactory=function(e){var t=S.bind(null,e);return t.type=e,t},t.createRef=function(){return{current:null}},t.forwardRef=function(e){return{$$typeof:s,render:e}},t.isValidElement=x,t.lazy=function(e){return{$$typeof:c,_payload:{_status:-1,_result:e},_init:N}},t.memo=function(e,t){return{$$typeof:u,type:e,compare:void 0===t?null:t}},t.useCallback=function(e,t){return O().useCallback(e,t)},t.useContext=function(e,t){return O().useContext(e,t)},t.useDebugValue=function(){},t.useEffect=function(e,t){return O().useEffect(e,t)},t.useImperativeHandle=function(e,t,n){return O().useImperativeHandle(e,t,n)},t.useLayoutEffect=function(e,t){return O().useLayoutEffect(e,t)},t.useMemo=function(e,t){return O().useMemo(e,t)},t.useReducer=function(e,t,n){return O().useReducer(e,t,n)},t.useRef=function(e){return O().useRef(e)},t.useState=function(e){return O().useState(e)},t.version="17.0.2"},67294:(e,t,n)=>{"use strict";e.exports=n(72408)},60053:(e,t)=>{"use strict";var n,r,a,o;if("object"==typeof performance&&"function"==typeof performance.now){var i=performance;t.unstable_now=function(){return i.now()}}else{var l=Date,s=l.now();t.unstable_now=function(){return l.now()-s}}if("undefined"==typeof window||"function"!=typeof MessageChannel){var u=null,c=null,d=function(){if(null!==u)try{var e=t.unstable_now();u(!0,e),u=null}catch(n){throw setTimeout(d,0),n}};n=function(e){null!==u?setTimeout(n,0,e):(u=e,setTimeout(d,0))},r=function(e,t){c=setTimeout(e,t)},a=function(){clearTimeout(c)},t.unstable_shouldYield=function(){return!1},o=t.unstable_forceFrameRate=function(){}}else{var f=window.setTimeout,p=window.clearTimeout;if("undefined"!=typeof console){var m=window.cancelAnimationFrame;"function"!=typeof window.requestAnimationFrame&&console.error("This browser doesn't support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills"),"function"!=typeof m&&console.error("This browser doesn't support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills")}var h=!1,g=null,b=-1,v=5,y=0;t.unstable_shouldYield=function(){return t.unstable_now()>=y},o=function(){},t.unstable_forceFrameRate=function(e){0>e||125<e?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):v=0<e?Math.floor(1e3/e):5};var w=new MessageChannel,E=w.port2;w.port1.onmessage=function(){if(null!==g){var e=t.unstable_now();y=e+v;try{g(!0,e)?E.postMessage(null):(h=!1,g=null)}catch(n){throw E.postMessage(null),n}}else h=!1},n=function(e){g=e,h||(h=!0,E.postMessage(null))},r=function(e,n){b=f((function(){e(t.unstable_now())}),n)},a=function(){p(b),b=-1}}function k(e,t){var n=e.length;e.push(t);e:for(;;){var r=n-1>>>1,a=e[r];if(!(void 0!==a&&0<C(a,t)))break e;e[r]=t,e[n]=a,n=r}}function S(e){return void 0===(e=e[0])?null:e}function x(e){var t=e[0];if(void 0!==t){var n=e.pop();if(n!==t){e[0]=n;e:for(var r=0,a=e.length;r<a;){var o=2*(r+1)-1,i=e[o],l=o+1,s=e[l];if(void 0!==i&&0>C(i,n))void 0!==s&&0>C(s,i)?(e[r]=s,e[l]=n,r=l):(e[r]=i,e[o]=n,r=o);else{if(!(void 0!==s&&0>C(s,n)))break e;e[r]=s,e[l]=n,r=l}}}return t}return null}function C(e,t){var n=e.sortIndex-t.sortIndex;return 0!==n?n:e.id-t.id}var _=[],T=[],A=1,N=null,L=3,O=!1,P=!1,R=!1;function I(e){for(var t=S(T);null!==t;){if(null===t.callback)x(T);else{if(!(t.startTime<=e))break;x(T),t.sortIndex=t.expirationTime,k(_,t)}t=S(T)}}function D(e){if(R=!1,I(e),!P)if(null!==S(_))P=!0,n(M);else{var t=S(T);null!==t&&r(D,t.startTime-e)}}function M(e,n){P=!1,R&&(R=!1,a()),O=!0;var o=L;try{for(I(n),N=S(_);null!==N&&(!(N.expirationTime>n)||e&&!t.unstable_shouldYield());){var i=N.callback;if("function"==typeof i){N.callback=null,L=N.priorityLevel;var l=i(N.expirationTime<=n);n=t.unstable_now(),"function"==typeof l?N.callback=l:N===S(_)&&x(_),I(n)}else x(_);N=S(_)}if(null!==N)var s=!0;else{var u=S(T);null!==u&&r(D,u.startTime-n),s=!1}return s}finally{N=null,L=o,O=!1}}var F=o;t.unstable_IdlePriority=5,t.unstable_ImmediatePriority=1,t.unstable_LowPriority=4,t.unstable_NormalPriority=3,t.unstable_Profiling=null,t.unstable_UserBlockingPriority=2,t.unstable_cancelCallback=function(e){e.callback=null},t.unstable_continueExecution=function(){P||O||(P=!0,n(M))},t.unstable_getCurrentPriorityLevel=function(){return L},t.unstable_getFirstCallbackNode=function(){return S(_)},t.unstable_next=function(e){switch(L){case 1:case 2:case 3:var t=3;break;default:t=L}var n=L;L=t;try{return e()}finally{L=n}},t.unstable_pauseExecution=function(){},t.unstable_requestPaint=F,t.unstable_runWithPriority=function(e,t){switch(e){case 1:case 2:case 3:case 4:case 5:break;default:e=3}var n=L;L=e;try{return t()}finally{L=n}},t.unstable_scheduleCallback=function(e,o,i){var l=t.unstable_now();switch("object"==typeof i&&null!==i?i="number"==typeof(i=i.delay)&&0<i?l+i:l:i=l,e){case 1:var s=-1;break;case 2:s=250;break;case 5:s=1073741823;break;case 4:s=1e4;break;default:s=5e3}return e={id:A++,callback:o,priorityLevel:e,startTime:i,expirationTime:s=i+s,sortIndex:-1},i>l?(e.sortIndex=i,k(T,e),null===S(_)&&e===S(T)&&(R?a():R=!0,r(D,i-l))):(e.sortIndex=s,k(_,e),P||O||(P=!0,n(M))),e},t.unstable_wrapCallback=function(e){var t=L;return function(){var n=L;L=t;try{return e.apply(this,arguments)}finally{L=n}}}},63840:(e,t,n)=>{"use strict";e.exports=n(60053)},96774:e=>{e.exports=function(e,t,n,r){var a=n?n.call(r,e,t):void 0;if(void 0!==a)return!!a;if(e===t)return!0;if("object"!=typeof e||!e||"object"!=typeof t||!t)return!1;var o=Object.keys(e),i=Object.keys(t);if(o.length!==i.length)return!1;for(var l=Object.prototype.hasOwnProperty.bind(t),s=0;s<o.length;s++){var u=o[s];if(!l(u))return!1;var c=e[u],d=t[u];if(!1===(a=n?n.call(r,c,d,u):void 0)||void 0===a&&c!==d)return!1}return!0}},53250:(e,t,n)=>{"use strict";var r=n(67294);var a="function"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t},o=r.useState,i=r.useEffect,l=r.useLayoutEffect,s=r.useDebugValue;function u(e){var t=e.getSnapshot;e=e.value;try{var n=t();return!a(e,n)}catch(r){return!0}}var c="undefined"==typeof window||void 0===window.document||void 0===window.document.createElement?function(e,t){return t()}:function(e,t){var n=t(),r=o({inst:{value:n,getSnapshot:t}}),a=r[0].inst,c=r[1];return l((function(){a.value=n,a.getSnapshot=t,u(a)&&c({inst:a})}),[e,n,t]),i((function(){return u(a)&&c({inst:a}),e((function(){u(a)&&c({inst:a})}))}),[e]),s(n),n};t.useSyncExternalStore=void 0!==r.useSyncExternalStore?r.useSyncExternalStore:c},61688:(e,t,n)=>{"use strict";e.exports=n(53250)},36809:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>r});const r={onBrokenLinks:"throw",onBrokenMarkdownLinks:"warn",url:"https://yetanotherclown.github.io",projectName:"YetAnotherNet",organizationName:"YetAnotherClown",title:"YetAnotherNet",baseUrl:"/YetAnotherNet/",tagline:"A Data-Driven Networking Library, inspired by Bevy_Renet & BridgeNet2, made for ECS.",favicon:"Favicon.svg",customFields:{},themeConfig:{prism:{additionalLanguages:["lua"],theme:{plain:{color:"#bfc7d5",backgroundColor:"#292d3e"},styles:[{types:["comment"],style:{color:"rgb(105, 112, 152)",fontStyle:"italic"}},{types:["string","inserted"],style:{color:"rgb(195, 232, 141)"}},{types:["number"],style:{color:"rgb(247, 140, 108)"}},{types:["builtin","char","constant","function"],style:{color:"rgb(130, 170, 255)"}},{types:["punctuation","selector"],style:{color:"rgb(199, 146, 234)"}},{types:["variable"],style:{color:"rgb(191, 199, 213)"}},{types:["class-name","attr-name"],style:{color:"rgb(255, 203, 107)"}},{types:["tag","deleted"],style:{color:"rgb(255, 85, 114)"}},{types:["operator"],style:{color:"rgb(137, 221, 255)"}},{types:["boolean"],style:{color:"rgb(255, 88, 116)"}},{types:["keyword"],style:{fontStyle:"italic"}},{types:["doctype"],style:{color:"rgb(199, 146, 234)",fontStyle:"italic"}},{types:["namespace"],style:{color:"rgb(178, 204, 214)"}},{types:["url"],style:{color:"rgb(221, 221, 221)"}}]},magicComments:[{className:"theme-code-block-highlighted-line",line:"highlight-next-line",block:{start:"highlight-start",end:"highlight-end"}}]},navbar:{title:"YetAnotherNet",items:[{type:"doc",docId:"intro",position:"left",label:"Docs"},{to:"/api/",label:"API",position:"left"},{href:"https://discord.gg/gMWmuaZEY6",label:"Discord",position:"right"},{href:"https://github.com/YetAnotherClown/YetAnotherNet",label:"GitHub",position:"right"}],hideOnScroll:!1},footer:{style:"dark",copyright:"Copyright \xa9 2023 YetAnotherClown. Built with Moonwave and Docusaurus",links:[{title:"Links",items:[{label:"Clown's Circus Discord",href:"https://discord.gg/gMWmuaZEY6"},{label:"YetAnotherClown on Github",href:"https://github.com/YetAnotherClown"}]}]},colorMode:{respectPrefersColorScheme:!0,defaultMode:"light",disableSwitch:!1},docs:{versionPersistence:"localStorage",sidebar:{hideable:!1,autoCollapseCategories:!1}},metadata:[],tableOfContents:{minHeadingLevel:2,maxHeadingLevel:3}},plugins:[["docusaurus-plugin-moonwave",{id:"moonwave",code:["C:\\Users\\thefa\\Documents\\Rojo Workspace\\Utilities\\Net Branches\\YetAnotherNet\\lib"],sourceUrl:"https://github.com/YetAnotherClown/YetAnotherNet/blob/main",projectDir:"C:\\Users\\thefa\\Documents\\Rojo Workspace\\Utilities\\Net Branches\\YetAnotherNet",classOrder:["Net","Route","Loop","QueryResult","SendRequest"],apiCategories:[],binaryPath:"C:\\Users\\thefa\\AppData\\Roaming\\npm\\node_modules\\moonwave\\dist\\bin\\moonwave-extractor-1.1.2.exe"}],"docusaurus-lunr-search"],presets:[["@docusaurus/preset-classic",{docs:{editUrl:"https://github.com/YetAnotherClown/YetAnotherNet/edit/main/",sidebarCollapsible:!0},blog:!1,pages:{path:"pages",exclude:["_*.*"]},theme:{customCss:["src/css/moonwave.css"]}}]],baseUrlIssueBanner:!0,i18n:{defaultLocale:"en",path:"i18n",locales:["en"],localeConfigs:{}},onDuplicateRoutes:"warn",staticDirectories:["static"],themes:[],scripts:[],headTags:[],stylesheets:[],clientModules:[],titleDelimiter:"|",noIndex:!1,markdown:{mermaid:!1}}},87462:(e,t,n)=>{"use strict";function r(){return r=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},r.apply(this,arguments)}n.d(t,{Z:()=>r})},75068:(e,t,n)=>{"use strict";function r(e,t){return r=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},r(e,t)}function a(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,r(e,t)}n.d(t,{Z:()=>a})},63366:(e,t,n)=>{"use strict";function r(e,t){if(null==e)return{};var n,r,a={},o=Object.keys(e);for(r=0;r<o.length;r++)n=o[r],t.indexOf(n)>=0||(a[n]=e[n]);return a}n.d(t,{Z:()=>r})},38776:(e,t,n)=>{"use strict";n.d(t,{Z:()=>o});var r=!0,a="Invariant failed";function o(e,t){if(!e){if(r)throw new Error(a);var n="function"==typeof t?t():t,o=n?"".concat(a,": ").concat(n):a;throw new Error(o)}}},57529:e=>{"use strict";e.exports={}},16887:e=>{"use strict";e.exports=JSON.parse('{"/YetAnotherNet/api/-db9":{"__comp":"f1be467e","__context":{"plugin":"d652b126"},"sidebarClassNames":"fae45763","pluginOptions":"40ed88ed"},"/YetAnotherNet/api/Loop-b88":{"__comp":"12579bbd","__context":{"plugin":"d652b126"},"luaClass":"ab90f3a6","sidebarClassNames":"fae45763","typeLinks":"1d56ba4b","tocData":"47263fc8","options":"40ed88ed"},"/YetAnotherNet/api/Net-693":{"__comp":"12579bbd","__context":{"plugin":"d652b126"},"luaClass":"4ece04dd","sidebarClassNames":"fae45763","typeLinks":"1d56ba4b","tocData":"16750545","options":"40ed88ed"},"/YetAnotherNet/api/QueryResult-093":{"__comp":"12579bbd","__context":{"plugin":"d652b126"},"luaClass":"3efd06ed","sidebarClassNames":"fae45763","typeLinks":"1d56ba4b","tocData":"b96e1a06","options":"40ed88ed"},"/YetAnotherNet/api/Route-63b":{"__comp":"12579bbd","__context":{"plugin":"d652b126"},"luaClass":"203435e1","sidebarClassNames":"fae45763","typeLinks":"1d56ba4b","tocData":"3af131fb","options":"40ed88ed"},"/YetAnotherNet/api/SendRequest-847":{"__comp":"12579bbd","__context":{"plugin":"d652b126"},"luaClass":"d39e7a11","sidebarClassNames":"fae45763","typeLinks":"1d56ba4b","tocData":"eea81e43","options":"40ed88ed"},"/YetAnotherNet/docs-983":{"__comp":"1be78505","__context":{"plugin":"40568db5"},"versionMetadata":"935f2afb"},"/YetAnotherNet/docs/getting-started/hooks-55d":{"__comp":"17896441","content":"136137d4"},"/YetAnotherNet/docs/getting-started/middleware-a58":{"__comp":"17896441","content":"10069cb2"},"/YetAnotherNet/docs/getting-started/routes-75a":{"__comp":"17896441","content":"07e366dd"},"/YetAnotherNet/docs/intro-d90":{"__comp":"17896441","content":"0e384e19"},"/YetAnotherNet/docs/setup/ecr-b05":{"__comp":"17896441","content":"f23d5c98"},"/YetAnotherNet/docs/setup/matter-d0b":{"__comp":"17896441","content":"f14628b2"},"/YetAnotherNet/docs/setup/other-06d":{"__comp":"17896441","content":"65c42d40"},"/YetAnotherNet/-613":{"__comp":"d3874e59","__context":{"plugin":"b6823f28"},"config":"5e9f5e1a"}}')}},e=>{e.O(0,[532],(()=>{return t=49383,e(e.s=t);var t}));e.O()}]); \ No newline at end of file diff --git a/assets/js/runtime~main.162d16b5.js b/assets/js/runtime~main.162d16b5.js new file mode 100644 index 0000000..f6c0c5e --- /dev/null +++ b/assets/js/runtime~main.162d16b5.js @@ -0,0 +1 @@ +(()=>{"use strict";var e,t,r,f,a,o={},d={};function n(e){var t=d[e];if(void 0!==t)return t.exports;var r=d[e]={exports:{}};return o[e].call(r.exports,r,r.exports,n),r.exports}n.m=o,e=[],n.O=(t,r,f,a)=>{if(!r){var o=1/0;for(i=0;i<e.length;i++){r=e[i][0],f=e[i][1],a=e[i][2];for(var d=!0,b=0;b<r.length;b++)(!1&a||o>=a)&&Object.keys(n.O).every((e=>n.O[e](r[b])))?r.splice(b--,1):(d=!1,a<o&&(o=a));if(d){e.splice(i--,1);var c=f();void 0!==c&&(t=c)}}return t}a=a||0;for(var i=e.length;i>0&&e[i-1][2]>a;i--)e[i]=e[i-1];e[i]=[r,f,a]},n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},r=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,n.t=function(e,f){if(1&f&&(e=this(e)),8&f)return e;if("object"==typeof e&&e){if(4&f&&e.__esModule)return e;if(16&f&&"function"==typeof e.then)return e}var a=Object.create(null);n.r(a);var o={};t=t||[null,r({}),r([]),r(r)];for(var d=2&f&&e;"object"==typeof d&&!~t.indexOf(d);d=r(d))Object.getOwnPropertyNames(d).forEach((t=>o[t]=()=>e[t]));return o.default=()=>e,n.d(a,o),a},n.d=(e,t)=>{for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.f={},n.e=e=>Promise.all(Object.keys(n.f).reduce(((t,r)=>(n.f[r](e,t),t)),[])),n.u=e=>"assets/js/"+({23:"f1be467e",53:"935f2afb",54:"10069cb2",85:"1f391b9e",201:"ab90f3a6",255:"b96e1a06",275:"40568db5",293:"47263fc8",331:"65c42d40",345:"4ece04dd",354:"3af131fb",374:"d3874e59",473:"40ed88ed",514:"1be78505",549:"12579bbd",556:"8deedfb8",635:"d652b126",661:"16750545",670:"203435e1",671:"0e384e19",676:"b6823f28",753:"f23d5c98",771:"136137d4",785:"3efd06ed",827:"d39e7a11",836:"1d56ba4b",844:"fae45763",918:"17896441",928:"eea81e43",959:"07e366dd",970:"f14628b2"}[e]||e)+"."+{23:"8752a475",53:"16b28df5",54:"f479e7b9",85:"324eb1d3",201:"17554263",255:"40745075",275:"02ba8b29",289:"3adf4ac8",293:"29ed0aea",331:"def0841c",339:"ea7d7f66",343:"0365238a",345:"24a29b80",354:"7fe2135e",374:"64b6ed83",473:"edc5e611",514:"832df318",549:"83f3b391",556:"0ecdcee4",635:"b8e81225",661:"253d5f2d",670:"5a953bf9",671:"8b446add",676:"835304f5",753:"1b57fdf6",771:"4a16dc7d",785:"56605555",827:"6d161336",836:"81a5d071",844:"edca2239",878:"27baceba",918:"baadba73",928:"8c69b631",959:"1820386b",970:"c75618f0",972:"b370daa7"}[e]+".js",n.miniCssF=e=>{},n.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),f={},a="docs:",n.l=(e,t,r,o)=>{if(f[e])f[e].push(t);else{var d,b;if(void 0!==r)for(var c=document.getElementsByTagName("script"),i=0;i<c.length;i++){var u=c[i];if(u.getAttribute("src")==e||u.getAttribute("data-webpack")==a+r){d=u;break}}d||(b=!0,(d=document.createElement("script")).charset="utf-8",d.timeout=120,n.nc&&d.setAttribute("nonce",n.nc),d.setAttribute("data-webpack",a+r),d.src=e),f[e]=[t];var l=(t,r)=>{d.onerror=d.onload=null,clearTimeout(s);var a=f[e];if(delete f[e],d.parentNode&&d.parentNode.removeChild(d),a&&a.forEach((e=>e(r))),t)return t(r)},s=setTimeout(l.bind(null,void 0,{type:"timeout",target:d}),12e4);d.onerror=l.bind(null,d.onerror),d.onload=l.bind(null,d.onload),b&&document.head.appendChild(d)}},n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.p="/YetAnotherNet/",n.gca=function(e){return e={16750545:"661",17896441:"918",f1be467e:"23","935f2afb":"53","10069cb2":"54","1f391b9e":"85",ab90f3a6:"201",b96e1a06:"255","40568db5":"275","47263fc8":"293","65c42d40":"331","4ece04dd":"345","3af131fb":"354",d3874e59:"374","40ed88ed":"473","1be78505":"514","12579bbd":"549","8deedfb8":"556",d652b126:"635","203435e1":"670","0e384e19":"671",b6823f28:"676",f23d5c98:"753","136137d4":"771","3efd06ed":"785",d39e7a11:"827","1d56ba4b":"836",fae45763:"844",eea81e43:"928","07e366dd":"959",f14628b2:"970"}[e]||e,n.p+n.u(e)},(()=>{var e={303:0,532:0};n.f.j=(t,r)=>{var f=n.o(e,t)?e[t]:void 0;if(0!==f)if(f)r.push(f[2]);else if(/^(303|532)$/.test(t))e[t]=0;else{var a=new Promise(((r,a)=>f=e[t]=[r,a]));r.push(f[2]=a);var o=n.p+n.u(t),d=new Error;n.l(o,(r=>{if(n.o(e,t)&&(0!==(f=e[t])&&(e[t]=void 0),f)){var a=r&&("load"===r.type?"missing":r.type),o=r&&r.target&&r.target.src;d.message="Loading chunk "+t+" failed.\n("+a+": "+o+")",d.name="ChunkLoadError",d.type=a,d.request=o,f[1](d)}}),"chunk-"+t,t)}},n.O.j=t=>0===e[t];var t=(t,r)=>{var f,a,o=r[0],d=r[1],b=r[2],c=0;if(o.some((t=>0!==e[t]))){for(f in d)n.o(d,f)&&(n.m[f]=d[f]);if(b)var i=b(n)}for(t&&t(r);c<o.length;c++)a=o[c],n.o(e,a)&&e[a]&&e[a][0](),e[a]=0;return n.O(i)},r=self.webpackChunkdocs=self.webpackChunkdocs||[];r.forEach(t.bind(null,0)),r.push=t.bind(null,r.push.bind(r))})()})(); \ No newline at end of file diff --git a/assets/js/runtime~main.1a85941f.js b/assets/js/runtime~main.1a85941f.js deleted file mode 100644 index 4e8a362..0000000 --- a/assets/js/runtime~main.1a85941f.js +++ /dev/null @@ -1 +0,0 @@ -(()=>{"use strict";var e,t,r,o,a,f={},d={};function n(e){var t=d[e];if(void 0!==t)return t.exports;var r=d[e]={exports:{}};return f[e].call(r.exports,r,r.exports,n),r.exports}n.m=f,e=[],n.O=(t,r,o,a)=>{if(!r){var f=1/0;for(i=0;i<e.length;i++){r=e[i][0],o=e[i][1],a=e[i][2];for(var d=!0,c=0;c<r.length;c++)(!1&a||f>=a)&&Object.keys(n.O).every((e=>n.O[e](r[c])))?r.splice(c--,1):(d=!1,a<f&&(f=a));if(d){e.splice(i--,1);var b=o();void 0!==b&&(t=b)}}return t}a=a||0;for(var i=e.length;i>0&&e[i-1][2]>a;i--)e[i]=e[i-1];e[i]=[r,o,a]},n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},r=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,n.t=function(e,o){if(1&o&&(e=this(e)),8&o)return e;if("object"==typeof e&&e){if(4&o&&e.__esModule)return e;if(16&o&&"function"==typeof e.then)return e}var a=Object.create(null);n.r(a);var f={};t=t||[null,r({}),r([]),r(r)];for(var d=2&o&&e;"object"==typeof d&&!~t.indexOf(d);d=r(d))Object.getOwnPropertyNames(d).forEach((t=>f[t]=()=>e[t]));return f.default=()=>e,n.d(a,f),a},n.d=(e,t)=>{for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.f={},n.e=e=>Promise.all(Object.keys(n.f).reduce(((t,r)=>(n.f[r](e,t),t)),[])),n.u=e=>"assets/js/"+({23:"f1be467e",53:"935f2afb",54:"10069cb2",201:"ab90f3a6",255:"b96e1a06",275:"40568db5",293:"47263fc8",331:"65c42d40",345:"4ece04dd",354:"3af131fb",374:"d3874e59",473:"40ed88ed",514:"1be78505",549:"12579bbd",635:"d652b126",661:"16750545",670:"203435e1",671:"0e384e19",676:"b6823f28",753:"f23d5c98",771:"136137d4",785:"3efd06ed",827:"d39e7a11",836:"1d56ba4b",844:"fae45763",918:"17896441",928:"eea81e43",959:"07e366dd",970:"f14628b2"}[e]||e)+"."+{23:"8752a475",53:"16b28df5",54:"f479e7b9",201:"17554263",255:"40745075",275:"02ba8b29",293:"29ed0aea",331:"def0841c",339:"ea7d7f66",343:"0365238a",345:"24a29b80",354:"7fe2135e",374:"64b6ed83",473:"edc5e611",514:"832df318",549:"83f3b391",635:"b8e81225",661:"253d5f2d",670:"5a953bf9",671:"8b446add",676:"835304f5",753:"1b57fdf6",771:"4a16dc7d",785:"56605555",827:"6d161336",836:"81a5d071",844:"edca2239",878:"27baceba",918:"3a9cb538",928:"8c69b631",959:"1820386b",970:"c75618f0",972:"b370daa7"}[e]+".js",n.miniCssF=e=>{},n.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),o={},a="docs:",n.l=(e,t,r,f)=>{if(o[e])o[e].push(t);else{var d,c;if(void 0!==r)for(var b=document.getElementsByTagName("script"),i=0;i<b.length;i++){var u=b[i];if(u.getAttribute("src")==e||u.getAttribute("data-webpack")==a+r){d=u;break}}d||(c=!0,(d=document.createElement("script")).charset="utf-8",d.timeout=120,n.nc&&d.setAttribute("nonce",n.nc),d.setAttribute("data-webpack",a+r),d.src=e),o[e]=[t];var l=(t,r)=>{d.onerror=d.onload=null,clearTimeout(s);var a=o[e];if(delete o[e],d.parentNode&&d.parentNode.removeChild(d),a&&a.forEach((e=>e(r))),t)return t(r)},s=setTimeout(l.bind(null,void 0,{type:"timeout",target:d}),12e4);d.onerror=l.bind(null,d.onerror),d.onload=l.bind(null,d.onload),c&&document.head.appendChild(d)}},n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.p="/YetAnotherNet/",n.gca=function(e){return e={16750545:"661",17896441:"918",f1be467e:"23","935f2afb":"53","10069cb2":"54",ab90f3a6:"201",b96e1a06:"255","40568db5":"275","47263fc8":"293","65c42d40":"331","4ece04dd":"345","3af131fb":"354",d3874e59:"374","40ed88ed":"473","1be78505":"514","12579bbd":"549",d652b126:"635","203435e1":"670","0e384e19":"671",b6823f28:"676",f23d5c98:"753","136137d4":"771","3efd06ed":"785",d39e7a11:"827","1d56ba4b":"836",fae45763:"844",eea81e43:"928","07e366dd":"959",f14628b2:"970"}[e]||e,n.p+n.u(e)},(()=>{var e={303:0,532:0};n.f.j=(t,r)=>{var o=n.o(e,t)?e[t]:void 0;if(0!==o)if(o)r.push(o[2]);else if(/^(303|532)$/.test(t))e[t]=0;else{var a=new Promise(((r,a)=>o=e[t]=[r,a]));r.push(o[2]=a);var f=n.p+n.u(t),d=new Error;n.l(f,(r=>{if(n.o(e,t)&&(0!==(o=e[t])&&(e[t]=void 0),o)){var a=r&&("load"===r.type?"missing":r.type),f=r&&r.target&&r.target.src;d.message="Loading chunk "+t+" failed.\n("+a+": "+f+")",d.name="ChunkLoadError",d.type=a,d.request=f,o[1](d)}}),"chunk-"+t,t)}},n.O.j=t=>0===e[t];var t=(t,r)=>{var o,a,f=r[0],d=r[1],c=r[2],b=0;if(f.some((t=>0!==e[t]))){for(o in d)n.o(d,o)&&(n.m[o]=d[o]);if(c)var i=c(n)}for(t&&t(r);b<f.length;b++)a=f[b],n.o(e,a)&&e[a]&&e[a][0](),e[a]=0;return n.O(i)},r=self.webpackChunkdocs=self.webpackChunkdocs||[];r.forEach(t.bind(null,0)),r.push=t.bind(null,r.push.bind(r))})()})(); \ No newline at end of file diff --git a/docs/getting-started/hooks/index.html b/docs/getting-started/hooks/index.html index e10fbc6..33b0b1c 100644 --- a/docs/getting-started/hooks/index.html +++ b/docs/getting-started/hooks/index.html @@ -3,14 +3,14 @@ <head> <meta charset="UTF-8"> <meta name="generator" content="Docusaurus v2.3.1"> -<title data-rh="true">Hooks | YetAnotherNet - - +Hooks | YetAnotherNet + +
-

Hooks

Hooks allow you to integrate Net into any game architecture you want. These are simply functions that you can call whenever you want to process your Packets. It's recommended that you set your hooks to run on the Heartbeat using RunService.Heartbeat, so your Networking Code can be scheduled to run frame-by-frame as Net was designed to do.

To create a hook, you can use Net.createHook({ Route }) and pass in a table of your Routes, then you can call it whenever you want to process your packets.

local RunService = game:GetService("RunService")

local Net = require("Net.luau")
local routes = require("routes.luau")

local hook = Net.createHook(routes)
RunService.Heartbeat:Connect(hook)
- - +

Hooks

Hooks allow you to integrate Net into any game architecture you want. These are simply functions that you can call whenever you want to process your Packets. It's recommended that you set your hooks to run on the Heartbeat using RunService.Heartbeat, so your Networking Code can be scheduled to run frame-by-frame as Net was designed to do.

To create a hook, you can use Net.createHook({ Route }) and pass in a table of your Routes, then you can call it whenever you want to process your packets.

local RunService = game:GetService("RunService")

local Net = require("Net.luau")
local routes = require("routes.luau")

local hook = Net.createHook(routes)
RunService.Heartbeat:Connect(hook)
+ + \ No newline at end of file diff --git a/docs/getting-started/middleware/index.html b/docs/getting-started/middleware/index.html index 23fe989..b343b31 100644 --- a/docs/getting-started/middleware/index.html +++ b/docs/getting-started/middleware/index.html @@ -3,14 +3,14 @@ -Middleware | YetAnotherNet - - +Middleware | YetAnotherNet + +
-

Middleware

Middleware is a powerful feature of Net that allows you to validate types and serialize/deserialize data before it is processed when sending and receiving data.

To create Middleware, you can specify a function in either Route:addIncomingMiddleware() or Route:addOutgoingMiddleware().

local Net = require("Net.luau")

local Route = Net.Route
type Route<U...> = Net.Route<U...>;

local route: Route<number, string, boolean> = Route.new()

-- Sets a function to be ran on Incoming packets before they are received over the network
route:addIncomingMiddleware(function(number: unknown, string: unknown, boolean: unknown)
-- Do something, e.g., Validate Types

return number, string, boolean
end)

-- Sets a function to be ran on Outgoing packets before they are sent over the network
route:addOutgoingMiddleware(function(number: number, string: string, boolean: boolean)
-- Do something, e.g., Compress data

return number, string, boolean
end)

To validate your types, you can return the values in order to allow it to be processed, or you can drop the packet by returning nil. Dropped packets will never reach your code, meaning you can ensure that the types your code receives are always the types you expect.

Compression

To compress/decompress your data, you can use a library like Squash to serialize and deserialize your data. Simply return the types in order as a tuple, you can use the event parameter to determine whether to compress or decompress your data.

local Squash = require("Squash.luau")
local Net = require("Net.luau")

local Route = Net.Route
type Route<U...> = Net.Route<U...>;

local route: Route<string, number> = Route.new({
Channel = "Reliable",
})

-- Deserialize Packets before returning
route:addIncomingMiddleware(function(str, bool)
local values: { any } = {}
local alphabet = Squash.string.alphabet(str)

-- Type-check returned values;
-- Squash serializes types into other types, like string
if type(str) ~= "string" or type(boolean) ~= "string" then
return
end

values = {
Squash.string.des(str, alphabet),
Squash.boolean.des(boolean),
}

return table.unpack(values)
end)

-- Serialize Packets before sending
route:addOutgoingMiddleware(function(str, bool)
local values: { any } = {}
local alphabet = Squash.string.alphabet(str)

-- Type-check sent values,
-- Should be of the provided types U... in Net<U...>
if type(str) ~= "string" or type(boolean) ~= "boolean" then
return
end

values = {
Squash.string.ser(str, alphabet),
Squash.boolean.ser(boolean),
}

return table.unpack(values)
end)
- - +

Middleware

Middleware is a powerful feature of Net that allows you to validate types and serialize/deserialize data before it is processed when sending and receiving data.

To create Middleware, you can specify a function in either Route:addIncomingMiddleware() or Route:addOutgoingMiddleware().

local Net = require("Net.luau")

local Route = Net.Route
type Route<U...> = Net.Route<U...>;

local route: Route<number, string, boolean> = Route.new()

-- Sets a function to be ran on Incoming packets before they are received over the network
route:addIncomingMiddleware(function(number: unknown, string: unknown, boolean: unknown)
-- Do something, e.g., Validate Types

return number, string, boolean
end)

-- Sets a function to be ran on Outgoing packets before they are sent over the network
route:addOutgoingMiddleware(function(number: number, string: string, boolean: boolean)
-- Do something, e.g., Compress data

return number, string, boolean
end)

To validate your types, you can return the values in order to allow it to be processed, or you can drop the packet by returning nil. Dropped packets will never reach your code, meaning you can ensure that the types your code receives are always the types you expect.

Compression

To compress/decompress your data, you can use a library like Squash to serialize and deserialize your data. Simply return the types in order as a tuple, you can use the event parameter to determine whether to compress or decompress your data.

local Squash = require("Squash.luau")
local Net = require("Net.luau")

local Route = Net.Route
type Route<U...> = Net.Route<U...>;

local route: Route<string, number> = Route.new({
Channel = "Reliable",
})

-- Deserialize Packets before returning
route:addIncomingMiddleware(function(str, bool)
local values: { any } = {}
local alphabet = Squash.string.alphabet(str)

-- Type-check returned values;
-- Squash serializes types into other types, like string
if type(str) ~= "string" or type(boolean) ~= "string" then
return
end

values = {
Squash.string.des(str, alphabet),
Squash.boolean.des(boolean),
}

return table.unpack(values)
end)

-- Serialize Packets before sending
route:addOutgoingMiddleware(function(str, bool)
local values: { any } = {}
local alphabet = Squash.string.alphabet(str)

-- Type-check sent values,
-- Should be of the provided types U... in Net<U...>
if type(str) ~= "string" or type(boolean) ~= "boolean" then
return
end

values = {
Squash.string.ser(str, alphabet),
Squash.boolean.ser(boolean),
}

return table.unpack(values)
end)
+ + \ No newline at end of file diff --git a/docs/getting-started/routes/index.html b/docs/getting-started/routes/index.html index 00fcda7..31f5464 100644 --- a/docs/getting-started/routes/index.html +++ b/docs/getting-started/routes/index.html @@ -3,19 +3,19 @@ -Routes | YetAnotherNet - - +Routes | YetAnotherNet + +
-

Routes

Routes are the core component of Net, these objects are how you send or receive data through Net. +

Routes

Routes are the core component of Net, these objects are how you send or receive data through Net. These are uniquely identified and come with no overhead, so you're encouraged to create as many as you need as if you were creating individual RemoteEvents.

Configuration

There are a few ways you can configure your Routes:

All Routes run on one of two channels: Reliable & Unreliable.
These channels change the way your packets are sent over the network.

ChannelDescription
ReliablePackets are never dropped, and are always ordered.
UnreliablePackets may be dropped per frame, but are always ordered per frame.

Type-checking

Routes can be Type-checked to provide intellisense and auto-completion by providing a type annotation when creating your Routes.

local Net = require("Net.luau")

local Route = Net.Route
type Route<U...> = Net.Route<U...>;

local route: Route<number, string, boolean> = Route.new()

-- Send will expect the types annotated
route:send(1, "Hello, world!", true)

-- The returned arguments are typed
for pos, num, str, bool in route:query() do
-- Do something
end

In this example, the Route is annotated with the types number, string, boolean, this means that our methods like Route:query() and Route:send() will return or expect these types.

This will enable auto-completion and type-checking when working with your Routes, as such it is encouraged you enable Strict Typing to compliment these features.

Sending

You can use Route:send(...data) to send data over the Route. This data will be processed next frame, which is when you'll be able to query it on the receiving end.

local Net = require("Net.luau")

local Route = Net.Route
type Route<U...> = Net.Route<U...>;

local route: Route<number, string, boolean> = Route.new()

-- Send will expect the types annotated
route:send(1, "Hello, world!", true)

-- The returned arguments are typed
for pos, num, str, bool in route:query() do
-- Do something
end

local Route: Net<number, string, boolean> = Net.new()

Route:send(5, true, "Hello, world!")

By default, Route:send() will send the Packet of data to all Clients when used on the Server. You can specify a Player or { Player } to send it to by using Route:send():to(recipient).

Querying

Querying is simple, you can query for Packets by using Route:query() which will return an iterator that will output position, sender, ...data in your for loop.

local Net = require("Net.luau")

local Route = Net.Route
type Route<U...> = Net.Route<U...>;

local Route: Route<number, string, boolean> = Route.new()

for pos, sender, num, str, bool in Route:query() do
-- Do something
end

When you call the query method, it will take a snapshot of all Packets from the previous frame and filter it for you, such as only returning Packets from the Route the method was called on. Or, you can also filter out senders by calling Route:query():from(...sender) on the QueryResult and putting any values of type { Player } | Player | Net.server in the arguments.

- - + + \ No newline at end of file diff --git a/docs/intro/index.html b/docs/intro/index.html index 5da6204..6759fc5 100644 --- a/docs/intro/index.html +++ b/docs/intro/index.html @@ -3,14 +3,14 @@ -Introduction | YetAnotherNet - - +Introduction | YetAnotherNet + +
-

Introduction

What is this?

Net is a networking library for Roblox, or rather its a library that wraps around Roblox's RemoteEvents to solve certain issues and provide new API for networking on Roblox.

Some of the issues this library solves are:

  • Overhead from RemoteEvents
  • Ordering of Networking Events
  • Lack of Type-Checking and Intellisense for working with RemoteEvents

Net also provides several utilities:

  • Middleware
  • Strict Type-Checking & Auto-completion
  • Simple integration with Hooks
  • Data-driven Design

You can learn more about how Net works and how to use it by visiting Getting Started with Routes. Or, you can keep reading to learn more about the technical details and design choices that went into creating Net.

Data-driven by design

One thing that separates Net from other networking libraries on Roblox is this key design choice. Net was made to work with ECS, a Data-driven approach to game design, which has influenced the design of the library largely and makes it unique from the rest.

With inspiration from Bevy_Renet, a Networking crate for use with the Bevy ECS in Rust, and another networking library on Roblox, BridgeNet2, Net pushes to provide similar functionality to these two libraries for ECS on Roblox.

Why go for Data-driven?

Data-driven design opposes Event-driven design, which is what you can commonly see on Roblox, such as RemoteEvents themselves. Event-driven design has it's woes, which is why we opt for ECS and generally Data-driven design.

Event-driven design is sensitive to ordering, this makes it difficult to know when you might get data from an event. To solve this, Net does not use Events, it encourages you to query and send data in an ordered manner frame-by-frame, preferably with ECS.

Since it's encouraged to use ECS with Net, though not required, we suggest reading Matter — Why ECS? by Evaera.

Installation

Wally

[dependencies]
Net = "yetanotherclown/yetanothernet@0.7.0"

Note: Wally does not export types automatically, if you wish to use Strict Typing with Net, install Wally Package Types with Aftman.

Roblox Typescript

You can find Net as YetAnotherNet on NPM.

"@rbxts/yetanothernet": "0.7.0-beta.3"
- - +

Introduction

What is this?

Net is a networking library for Roblox, or rather its a library that wraps around Roblox's RemoteEvents to solve certain issues and provide new API for networking on Roblox.

Some of the issues this library solves are:

  • Overhead from RemoteEvents
  • Ordering of Networking Events
  • Lack of Type-Checking and Intellisense for working with RemoteEvents

Net also provides several utilities:

  • Middleware
  • Strict Type-Checking & Auto-completion
  • Simple integration with Hooks
  • Data-driven Design

You can learn more about how Net works and how to use it by visiting Getting Started with Routes. Or, you can keep reading to learn more about the technical details and design choices that went into creating Net.

Data-driven by design

One thing that separates Net from other networking libraries on Roblox is this key design choice. Net was made to work with ECS, a Data-driven approach to game design, which has influenced the design of the library largely and makes it unique from the rest.

With inspiration from Bevy_Renet, a Networking crate for use with the Bevy ECS in Rust, and another networking library on Roblox, BridgeNet2, Net pushes to provide similar functionality to these two libraries for ECS on Roblox.

Why go for Data-driven?

Data-driven design opposes Event-driven design, which is what you can commonly see on Roblox, such as RemoteEvents themselves. Event-driven design has it's woes, which is why we opt for ECS and generally Data-driven design.

Event-driven design is sensitive to ordering, this makes it difficult to know when you might get data from an event. To solve this, Net does not use Events, it encourages you to query and send data in an ordered manner frame-by-frame, preferably with ECS.

Since it's encouraged to use ECS with Net, though not required, we suggest reading Matter — Why ECS? by Evaera.

Installation

Wally

[dependencies]
Net = "yetanotherclown/yetanothernet@0.7.0"

Note: Wally does not export types automatically, if you wish to use Strict Typing with Net, install Wally Package Types with Aftman.

Roblox Typescript

You can find Net as YetAnotherNet on NPM.

"@rbxts/yetanothernet": "0.7.0-beta.3"
+ + \ No newline at end of file diff --git a/docs/setup/ecr/index.html b/docs/setup/ecr/index.html index 33c6807..705f822 100644 --- a/docs/setup/ecr/index.html +++ b/docs/setup/ecr/index.html @@ -3,14 +3,14 @@ -ECR | YetAnotherNet - - +ECR | YetAnotherNet + +
-

ECR

🏗️ This page is under construction.

We're still learning the best practices for integrating and using Net with ECR, for now see Other Setups for integrating Net into other game architectures that don't use Matter. You can also see the Matter Setup to see how you would setup and use Net for another ECS library.

You can also checkout ECR — A Luau ECS library.

- - +

ECR

🏗️ This page is under construction.

We're still learning the best practices for integrating and using Net with ECR, for now see Other Setups for integrating Net into other game architectures that don't use Matter. You can also see the Matter Setup to see how you would setup and use Net for another ECS library.

You can also checkout ECR — A Luau ECS library.

+ + \ No newline at end of file diff --git a/docs/setup/matter/index.html b/docs/setup/matter/index.html index f7e43d9..ba0978c 100644 --- a/docs/setup/matter/index.html +++ b/docs/setup/matter/index.html @@ -3,18 +3,18 @@ -Matter | YetAnotherNet - - +Matter | YetAnotherNet + +
-

Matter

tip

Check out the adapted version of the Matter Example game to see how it's used in a real game.

See all of Net's example projects in the repository.

Being initially made for the Matter ECS, Net provides a simple function for scheduling your Routes to run on your Matter Loop.

Firstly, create a routes.luau ModuleScript in ReplicatedStorage to strictly declare your Routes.

routes.luau
local Net = require("Net.luau")

local Route = Net.Route
type Route<U...> = Net.Route<U...>;

local defaultConfiguration = {
Channel = "Reliable",
Event = "default",
}

-- Payload for replicating Entities
type EntityPayload = {
[string]: { -- EntityId
[string]: { -- Component name
data: ComponentInstance<T>
}
}
}

-- Replicate Matter Components
local MatterReplication: Net<EntityPayload> = Net.new(defaultConfiguration)

-- Signal that the Player has loaded
local PlayerLoaded: Net<boolean> = Net.new(defaultConfiguration)

return {
MatterReplication = MatterReplication,
PlayerLoaded = PlayerLoaded,
}

And now in the same script where you create your Matter Loop, you can run the Net.start(Loop, { Net }) +

Matter

tip

Check out the adapted version of the Matter Example game to see how it's used in a real game.

See all of Net's example projects in the repository.

Being initially made for the Matter ECS, Net provides a simple function for scheduling your Routes to run on your Matter Loop.

Firstly, create a routes.luau ModuleScript in ReplicatedStorage to strictly declare your Routes.

routes.luau
local Net = require("Net.luau")

local Route = Net.Route
type Route<U...> = Net.Route<U...>;

local defaultConfiguration = {
Channel = "Reliable",
Event = "default",
}

-- Payload for replicating Entities
type EntityPayload = {
[string]: { -- EntityId
[string]: { -- Component name
data: ComponentInstance<T>
}
}
}

-- Replicate Matter Components
local MatterReplication: Net<EntityPayload> = Net.new(defaultConfiguration)

-- Signal that the Player has loaded
local PlayerLoaded: Net<boolean> = Net.new(defaultConfiguration)

return {
MatterReplication = MatterReplication,
PlayerLoaded = PlayerLoaded,
}

And now in the same script where you create your Matter Loop, you can run the Net.start(Loop, { Net }) function to schedule your Routes to run on Matter's Middleware.

init.server.luau / init.client.luau
local Matter = require("Matter.luau")
local World = Matter.World
local Loop = Matter.Loop

local Net = require("Net.luau")
local routes = require("routes.luau")

local world = World.new()
local loop = Loop.new(world)

-- Schedules your Routes
Net.start(loop, routes)

local systems = {}
for _, child in script.systems:GetChildren() do
if child:IsA("ModuleScript") then
table.insert(systems, require(child))
end
end

loop:scheduleSystems(systems) -- Schedule systems after running ``Net.start()``

-- Begin the loop and make sure the ``Event`` key in your Routes configuration are added here
loop:begin({
default = RunService.Heartbeat
})

Finally, in a Matter System we can use our routes.luau ModuleScript to access our Routes and use them within our Systems.

systems/exampleSystem.luau
local routes = require("routes.luau")
local PlayerLoaded = routes.PlayerLoaded

local function exampleSystem(world)
-- Query through every networking call that frame on the Server
for i, player, ...data in PlayerLoaded:query() do
-- Do something
end

-- Query through every networking call that frame on the Client
for i, _, ...data in PlayerLoaded:query() do
-- Do something
end

-- Send data from the Client to the Server
PlayerLoaded:send(...data)

-- Send data to a Client from the Server
PlayerLoaded:send(...data):to(Player)
end
- - + + \ No newline at end of file diff --git a/docs/setup/other/index.html b/docs/setup/other/index.html index f6e31f7..69735b4 100644 --- a/docs/setup/other/index.html +++ b/docs/setup/other/index.html @@ -3,14 +3,14 @@ -Other Setups | YetAnotherNet - - +Other Setups | YetAnotherNet + +
-

Other Setups

You can integrate Net into whatever game architecture you want by creating a Hook using Net.createHook({ Route }) which is identical to the Net.start(loop, { Route }) function. This function will return another function which you can call whenever you want to process your Routes' queues and send/receive your Packets on the Server or Client.

Below is a simple example of creating custom scheduling behavior using Net.createHook({ Route }),

local RunService = game:GetService("RunService")

local Net = require("Net.luau")
local routes = require("routes.luau")

local hook = Net.createHook(routes)
RunService.Heartbeat:Connect(hook)
- - +

Other Setups

You can integrate Net into whatever game architecture you want by creating a Hook using Net.createHook({ Route }) which is identical to the Net.start(loop, { Route }) function. This function will return another function which you can call whenever you want to process your Routes' queues and send/receive your Packets on the Server or Client.

Below is a simple example of creating custom scheduling behavior using Net.createHook({ Route }),

local RunService = game:GetService("RunService")

local Net = require("Net.luau")
local routes = require("routes.luau")

local hook = Net.createHook(routes)
RunService.Heartbeat:Connect(hook)
+ + \ No newline at end of file diff --git a/index.html b/index.html index 4be08b0..c9a02d1 100644 --- a/index.html +++ b/index.html @@ -3,14 +3,14 @@ -YetAnotherNet | YetAnotherNet - - +YetAnotherNet | YetAnotherNet + +
-

A Type-safe Networking Library

Net is strictly-typed, giving you full auto-completion and type-safety.

Send arguments and Query return values of your Routes are fully typed, giving you auto-completion and type-checking when writing your Networking code.

A Data-driven Networking Library

With it's roots in ECS, Net was designed to promote a Data-driven design.
Net's API integrates seamlessly into ECS Libraries like Matter to bring Data-driven Networking in ECS architectures.

Read more on why you should use an ECS here.

Routes

Routes are the way you send and receive data through Net. They are uniquely identified so you're encouraged to create as many as you need as if you were creating individual RemoteEvents.

Routes can be Reliable or Unreliable. Reliable events are never dropped and are always in order per frame. Unreliable events might be dropped on bad connections, but they are always received in order per frame.

You can also strictly type Routes to get autocompletion and typechecking when Sending and Querying packets.

Middleware

Middleware is another powerful feature of Net, allowing you to validate types before they reach your code and even perform data compression or decompression before data is processed.

To create Middleware, you set a function in your Route's Middleware that will give you the event "send" | "receive" and the data that is about to be processed U..., the types you specify in your type annotation Net<U...>

In the Middleware function, you can validate your types or compress/decompress data. If your data does not match your types, you can do return nil to drop the packet. Dropped packets will never reach your code, meaning you can ensure that the types your code receives are always the types you expect.

To compress/decompress your data, you can use a library like Squash to serialize and deserialize your data. Simply return the types in order as a tuple, you can use the event parameter to determine whether to compress or decompress your data.

Hooks

Hooks are a simple and versatile way to integrate Net into any code architecture.

Hooks allow you to run your Route's scheduling whenever you want, such as a specific event. A Hook is simply a function that you can call which will run each Route's scheduling code to process the current frame. Data is not sent over the Network until your hook is called.

Net also provides a simple function that hooks your Routes to your Matter Middleware to run before/after your systems. This allows for a simple setup when using the Matter ECS, leaving you to not worry about scheduling your Routes.

- - +

A Type-safe Networking Library

Net is strictly-typed, giving you full auto-completion and type-safety.

Send arguments and Query return values of your Routes are fully typed, giving you auto-completion and type-checking when writing your Networking code.

A Data-driven Networking Library

With it's roots in ECS, Net was designed to promote a Data-driven design.
Net's API integrates seamlessly into ECS Libraries like Matter to bring Data-driven Networking in ECS architectures.

Read more on why you should use an ECS here.

Routes

Routes are the way you send and receive data through Net. They are uniquely identified so you're encouraged to create as many as you need as if you were creating individual RemoteEvents.

Routes can be Reliable or Unreliable. Reliable events are never dropped and are always in order per frame. Unreliable events might be dropped on bad connections, but they are always received in order per frame.

You can also strictly type Routes to get autocompletion and typechecking when Sending and Querying packets.

Middleware

Middleware is another powerful feature of Net, allowing you to validate types before they reach your code and even perform data compression or decompression before data is processed.

To create Middleware, you set a function in your Route's Middleware that will give you the event "send" | "receive" and the data that is about to be processed U..., the types you specify in your type annotation Net<U...>

In the Middleware function, you can validate your types or compress/decompress data. If your data does not match your types, you can do return nil to drop the packet. Dropped packets will never reach your code, meaning you can ensure that the types your code receives are always the types you expect.

To compress/decompress your data, you can use a library like Squash to serialize and deserialize your data. Simply return the types in order as a tuple, you can use the event parameter to determine whether to compress or decompress your data.

Hooks

Hooks are a simple and versatile way to integrate Net into any code architecture.

Hooks allow you to run your Route's scheduling whenever you want, such as a specific event. A Hook is simply a function that you can call which will run each Route's scheduling code to process the current frame. Data is not sent over the Network until your hook is called.

Net also provides a simple function that hooks your Routes to your Matter Middleware to run before/after your systems. This allows for a simple setup when using the Matter ECS, leaving you to not worry about scheduling your Routes.

+ + \ No newline at end of file diff --git a/lunr-index-1707322688709.json b/lunr-index-1707322688709.json deleted file mode 100644 index 7976309..0000000 --- a/lunr-index-1707322688709.json +++ /dev/null @@ -1 +0,0 @@ -{"version":"2.3.9","fields":["title","content","keywords"],"fieldVectors":[["title/0",[0,722.082]],["content/0",[]],["keywords/0",[]],["title/1",[1,268.951]],["content/1",[]],["keywords/1",[]],["title/2",[]],["content/2",[2,3,3,8.58,4,6.158,5,2.407,6,7.283,7,8.58,8,7.283,9,2.819,10,8.58,11,4.175,12,7.283]],["keywords/2",[]],["title/3",[13,408.705]],["content/3",[]],["keywords/3",[]],["title/4",[1,268.951]],["content/4",[]],["keywords/4",[]],["title/5",[13,235.274,14,280.514,15,217.669]],["content/5",[2,2.667,4,4.317,5,1.872,9,2.506,13,5.707,14,5.147,15,3.994,16,5.715,17,3.994,18,3.461,19,6.474,20,5.715,21,7.627,22,7.627,23,6.804,24,5.715,25,7.627,26,5.147,27,7.627,28,4.317,29,3.994]],["keywords/5",[]],["title/6",[]],["content/6",[2,3,5,2.02,9,2.819,11,4.175,13,4.856,19,7.283,20,6.428,23,8.479,24,6.428,30,8.152,31,8.58]],["keywords/6",[]],["title/7",[32,408.705]],["content/7",[1,2.557,5,1.988,32,6.06,33,5.827,34,4.919,35,5.827,36,5.827,37,3.086,38,5.827,39,5.144,40,6.865,41,4.225,42,2.563,43,4.225,44,4.225,45,5.144,46,1.761,47,5.827,48,5.827,49,6.339,50,6.865,51,3.886,52,4.225,53,3.341]],["keywords/7",[]],["title/8",[54,612.911]],["content/8",[]],["keywords/8",[]],["title/9",[5,63.655,33,291.07,55,342.915,56,342.915]],["content/9",[5,1.228,34,4.796,37,3.45,41,5.636,42,2.866,43,5.636,44,5.636,53,5.111,54,7.774,57,6.617,58,6.617,59,5.617,60,6.617,61,6.617,62,5.617,63,7.869,64,4.073,65,4.958,66,6.617,67,4.466,68,6.617,69,5.617]],["keywords/9",[]],["title/10",[70,722.082]],["content/10",[]],["keywords/10",[]],["title/11",[]],["content/11",[11,3.614,35,4.201,36,4.201,37,1.626,41,3.046,42,2.703,43,5.486,46,1.269,51,4.203,59,6.303,71,4.667,72,5.012,73,4.949,74,4.949,75,4.949,76,6.303,77,6.303,78,4.201,79,7.426,80,3.708,81,4.949,82,4.949,83,4.949,84,4.949,85,3.149,86,4.57,87,4.201,88,5.564,89,4.949,90,4.949,91,4.949,92,4.201,93,4.201,94,4.949,95,4.949,96,3.046,97,4.57,98,4.949,99,4.949,100,4.201,101,4.949,102,4.201,103,4.201,104,4.949,105,2.801]],["keywords/11",[]],["title/12",[96,255.826,97,255.826,106,176.274]],["content/12",[1,2.131,11,2.784,37,1.88,42,2.647,43,6.538,44,5.97,47,4.857,64,3.522,67,3.861,71,5.079,72,6.546,88,4.287,96,3.522,97,5.97,103,4.857,106,2.427,107,4.857,108,5.722,109,5.722,110,4.857,111,4.857,112,5.722,113,5.722,114,5.722,115,3.861,116,3.861,117,5.722,118,5.722,119,5.722,120,5.722,121,5.722,122,5.722,123,5.722,124,5.722,125,4.857]],["keywords/12",[]],["title/13",[96,255.826,106,176.274,126,415.672]],["content/13",[5,0.936,34,2.639,37,2.473,42,2.054,44,6.151,53,2.453,72,3.401,76,4.278,77,4.278,96,6.583,97,6.583,102,4.278,106,4.238,115,3.401,127,5.04,128,5.601,129,5.04,130,3.776,131,5.04,132,4.633,133,5.04,134,5.04,135,5.04,136,5.04,137,4.633,138,5.04,139,5.04,140,6.39,141,2.453,142,2.137,143,5.04,144,3.415,145,5.04,146,5.04,147,5.04,148,5.04,149,5.04]],["keywords/13",[]],["title/14",[150,612.911]],["content/14",[]],["keywords/14",[]],["title/15",[151,612.911]],["content/15",[5,1.521,37,2.693,42,2.883,85,4.959,150,6.957,151,8.969,152,8.196,153,8.196,154,5.044,155,8.196,156,8.196,157,8.196,158,6.957,159,8.196,160,8.196]],["keywords/15",[]],["title/16",[72,356.059,161,527.617]],["content/16",[42,2.724,162,9.982,163,9.982,164,9.982,165,9.982,166,9.982,167,9.982]],["keywords/16",[]],["title/17",[168,487.293]],["content/17",[1,1.843,5,1.97,9,2.44,37,2.44,41,3.046,42,2.432,46,2.286,49,3.34,64,3.046,65,3.708,71,2.592,97,3.046,105,2.801,132,3.046,144,3.369,168,7.162,169,2.801,170,3.34,171,6.678,172,4.201,173,3.614,174,6.303,175,4.57,176,4.201,177,3.34,178,3.614,179,3.708,180,4.201,181,3.708,182,2.801,183,4.201,184,3.708,185,4.82,186,4.201,187,4.201,188,2.592,189,3.708,190,4.201,191,3.708]],["keywords/17",[]],["title/18",[63,541.002]],["content/18",[1,3.338,5,2.213,9,1.641,18,2.266,37,2.456,38,4.239,41,3.074,42,2.04,45,3.742,46,2.732,49,5.046,63,3.742,64,3.074,65,3.742,67,3.37,105,4.232,168,5.046,169,2.827,171,5.602,173,2.43,174,4.239,175,3.074,182,2.827,185,4.842,186,4.239,187,4.239,188,2.615,189,3.742,190,4.239,191,3.742,192,4.994,193,4.994,194,4.239,195,4.994,196,2.615,197,2.827,198,4.994,199,3.742,200,2.615,201,4.994]],["keywords/18",[]],["title/19",[42,197.042]],["content/19",[]],["keywords/19",[]],["title/20",[202,722.082]],["content/20",[]],["keywords/20",[]],["title/21",[196,378.122]],["content/21",[2,3.368,6,8.176,37,3.165,116,6.5,196,5.044,203,8.176,204,7.889,205,9.632]],["keywords/21",[]],["title/22",[46,185.166]],["content/22",[2,3.254,39,6.972,46,2.386,116,6.28,141,4.528,142,3.946,204,6.28,206,5.267,207,9.306,208,9.306,209,9.306]],["keywords/22",[]],["title/23",[1,268.951]],["content/23",[]],["keywords/23",[]],["title/24",[100,612.911]],["content/24",[2,1.847,5,1.72,32,5.789,34,4.082,37,1.735,46,3.027,115,3.565,128,5.356,144,2.396,154,3.251,171,3.958,177,3.565,178,4.508,179,3.958,184,3.958,210,4.484,211,4.484,212,4.484,213,3.251,214,5.282,215,5.282,216,4.484,217,5.282,218,4.484,219,2.766,220,3.251,221,3.958,222,5.282,223,5.282,224,4.484,225,3.565,226,5.282,227,3.958,228,7.795,229,7.795,230,5.282,231,4.484]],["keywords/24",[]],["title/25",[232,722.082]],["content/25",[1,3.7,2,2.088,5,2.275,9,1.962,11,2.905,18,2.709,42,2.325,46,2.937,49,5.749,67,4.029,128,3.127,132,3.675,168,4.029,170,4.029,173,2.905,175,3.675,178,4.146,179,4.473,181,4.473,182,4.822,184,6.383,185,2.905,191,4.473,194,5.068,200,3.127,216,5.068,233,5.971]],["keywords/25",[]],["title/26",[213,444.406]],["content/26",[]],["keywords/26",[]],["title/27",[234,612.911]],["content/27",[5,2.414,9,1.664,11,1.486,12,2.591,17,1.599,18,4.344,29,3.957,37,1.664,42,0.833,43,1.879,46,1.299,85,4.06,86,3.117,106,2.753,128,1.599,137,1.879,142,1.295,172,2.591,185,4.876,188,1.599,206,1.728,234,2.591,235,3.053,236,6.492,237,6.492,238,5.065,239,3.053,240,3.053,241,3.053,242,3.053,243,3.053,244,1.879,245,1.879,246,3.053,247,3.053,248,2.06,249,1.879,250,2.287,251,3.795,252,3.053,253,3.418,254,6.771,255,7.556,256,5.065,257,5.065,258,6.492,259,5.065,260,3.053,261,3.053,262,5.065,263,3.053,264,2.06,265,3.053,266,3.053,267,3.053,268,3.053,269,3.053]],["keywords/27",[]],["title/28",[46,185.166]],["content/28",[]],["keywords/28",[]],["title/29",[85,306.213]],["content/29",[]],["keywords/29",[]],["title/30",[219,378.122]],["content/30",[2,2.022,5,1.811,9,2.735,16,4.332,17,3.028,32,3.273,34,3.028,46,1.483,48,4.908,128,4.36,137,5.124,144,3.777,154,3.559,170,3.902,182,3.273,219,3.028,220,5.124,249,5.124,250,4.332,264,3.902,270,5.782,271,5.782,272,7.067,273,4.908,274,8.326,275,5.782,276,5.782,277,5.782,278,4.908,279,5.782,280,5.782,281,4.908,282,5.124,283,4.908,284,4.908,285,4.908]],["keywords/30",[]],["title/31",[1,268.951]],["content/31",[]],["keywords/31",[]],["title/32",[80,541.002]],["content/32",[2,2.561,5,1.821,42,1.998,46,2.516,80,5.486,105,4.145,116,4.942,128,5.138,132,4.507,154,4.507,176,6.216,178,3.563,181,5.486,182,4.145,204,4.942,219,3.835,221,5.486,249,6.039,286,7.323,287,7.323,288,9.812,289,7.323]],["keywords/32",[]],["title/33",[141,351.373]],["content/33",[2,2.001,5,1.534,9,1.88,13,5.49,14,5.577,15,2.996,18,2.596,23,5.577,24,4.287,28,3.239,29,2.996,30,4.287,39,6.191,51,3.239,52,3.522,53,2.784,69,4.857,78,4.857,85,3.504,106,2.427,137,3.522,141,4.021,144,2.596,154,3.522,170,3.861,173,2.784,200,2.996,225,5.577,227,4.287,254,4.287,290,3.522,291,4.857,292,4.857,293,5.722,294,5.722,295,5.722,296,5.722,297,5.722,298,5.722]],["keywords/33",[]],["title/34",[142,306.213]],["content/34",[2,2.371,4,5.271,5,2.126,8,5.756,51,3.838,52,4.173,53,3.3,106,4.857,142,4.511,183,5.756,197,6.021,204,4.576,220,4.173,282,4.173,292,5.756,299,5.732,300,6.781,301,6.781,302,5.756,303,6.781,304,6.781]],["keywords/34",[]],["title/35",[305,722.082]],["content/35",[1,2.623,2,2.462,5,1.774,9,3.14,15,3.687,51,3.985,52,4.334,53,3.426,71,3.687,173,4.65,175,4.334,177,4.752,178,3.426,196,5.004,197,5.409,200,3.687,213,4.334,251,7.16,282,4.334,290,4.334,299,4.334,306,7.041,307,5.977,308,7.041]],["keywords/35",[]],["title/36",[309,722.082]],["content/36",[1,2.526,2,2.371,5,1.729,9,3.495,15,4.877,51,3.838,52,4.173,53,3.3,71,4.877,142,2.875,173,3.3,177,4.576,178,3.3,196,4.877,197,5.271,200,3.551,213,4.173,251,7.97,264,4.576,282,4.173,299,4.173,307,5.756,310,6.781,311,6.781]],["keywords/36",[]],["title/37",[46,185.166]],["content/37",[]],["keywords/37",[]],["title/38",[219,378.122]],["content/38",[9,3.429,15,3.424,46,2.329,71,3.424,92,5.55,107,5.55,125,5.55,137,5.59,144,4.121,178,3.182,219,3.424,231,5.55,249,6.423,264,4.413,272,5.55,283,7.709,284,7.709,285,7.709,312,6.539,313,9.083,314,6.539,315,6.539,316,6.539,317,9.083]],["keywords/38",[]],["title/39",[85,223.746,86,324.723]],["content/39",[5,1.722,11,3.281,16,3.267,17,3.531,18,3.059,26,2.943,28,2.468,29,2.283,42,1.19,46,2.72,85,4.973,86,4.15,87,3.701,88,3.267,93,5.724,105,2.468,130,3.267,140,3.701,142,1.849,158,3.701,169,2.468,185,4.012,188,2.283,200,2.283,206,2.468,225,2.943,244,2.684,245,2.684,248,2.943,253,2.943,278,3.701,290,4.15,299,2.684,318,6.743,319,6.998,320,3.267,321,3.267,322,5.724,323,3.701,324,3.701,325,3.701,326,3.701,327,3.267,328,3.267,329,3.267,330,4.36,331,4.36,332,6.743,333,4.36]],["keywords/39",[]],["title/40",[142,306.213]],["content/40",[4,3.793,5,2.047,9,1.421,15,2.265,17,3.509,18,1.963,26,2.919,28,2.449,29,3.509,37,2.695,42,1.18,46,2.369,85,3.479,106,3.479,141,2.105,142,3.918,144,1.963,169,2.449,175,2.662,185,4.496,188,2.265,196,2.265,197,2.449,206,2.449,220,2.662,244,2.662,245,2.662,248,2.919,253,2.919,282,2.662,290,2.662,299,2.662,302,3.672,319,3.672,320,3.241,321,5.021,322,3.672,323,3.672,324,5.689,325,5.689,326,5.689,327,3.241,328,3.241,329,3.241,334,4.326,335,4.326,336,4.326,337,4.326,338,4.326,339,4.326,340,4.326]],["keywords/40",[]],["title/41",[141,351.373]],["content/41",[4,3.937,5,2.149,9,2.778,13,2.57,14,3.064,17,2.378,18,3.156,20,3.402,23,5.707,26,3.064,28,2.57,29,2.378,30,5.212,32,2.57,37,1.492,42,1.239,46,2.168,85,2.95,106,1.925,130,3.402,141,4.115,144,2.06,169,2.57,173,4.115,185,4.115,188,2.378,199,3.402,203,3.854,206,2.57,225,4.694,244,2.794,245,2.794,248,3.064,253,3.064,254,3.402,290,4.281,291,3.854,320,3.402,321,3.402,327,3.402,328,3.402,329,3.402,341,4.54,342,4.54,343,4.54,344,3.854,345,4.54,346,4.54]],["keywords/41",[]],["title/42",[34,378.122]],["content/42",[1,1.656,4,1.863,5,2.309,11,0.9,17,1.723,18,0.84,28,1.863,29,3.235,32,3.496,34,4.143,37,1.46,42,1.471,44,1.139,45,2.466,46,2.238,53,1.602,62,1.571,64,2.026,71,1.723,85,1.396,86,1.139,105,1.863,106,2.619,110,1.571,111,1.571,115,1.249,128,1.723,132,1.139,141,1.602,142,1.396,144,1.493,169,1.047,173,1.602,178,2.623,180,1.571,182,3.05,185,5.025,188,1.723,189,2.466,196,2.328,197,2.516,199,1.386,200,1.723,206,1.047,210,1.571,211,1.571,212,1.571,213,1.139,218,1.571,219,0.969,220,1.139,221,1.386,224,1.571,227,4.038,244,1.139,245,1.139,249,1.139,250,1.386,273,1.571,281,1.571,344,1.571,347,1.85,348,1.85,349,1.85,350,1.85,351,1.85,352,1.85,353,1.85,354,1.85,355,4.445,356,3.291,357,1.85,358,1.85,359,1.85,360,1.85,361,1.85,362,3.291,363,1.85,364,1.85,365,1.85,366,3.291,367,1.85,368,1.85,369,4.445,370,1.85,371,3.291,372,1.85,373,1.85,374,5.389,375,1.85,376,1.85,377,1.85,378,1.85,379,1.85,380,1.85,381,3.291,382,1.85,383,1.85,384,1.85,385,1.85,386,3.291,387,1.85,388,1.85,389,1.85,390,1.85,391,1.85,392,1.85,393,1.85,394,1.85,395,1.85,396,1.85,397,1.85,398,1.85,399,1.85,400,1.85,401,3.291,402,3.291,403,1.85,404,1.85]],["keywords/42",[]]],"invertedIndex":[["",{"_index":5,"title":{"9":{"position":[[0,3]]}},"content":{"2":{"position":[[44,1],[46,1],[55,1],[81,1],[83,2]]},"5":{"position":[[29,1],[226,3]]},"6":{"position":[[71,1],[73,1]]},"7":{"position":[[181,1],[189,2],[255,2]]},"9":{"position":[[302,1]]},"13":{"position":[[570,1]]},"15":{"position":[[19,1]]},"17":{"position":[[415,2],[535,1],[587,1],[632,1],[678,1]]},"18":{"position":[[139,2],[184,1],[192,2],[465,3],[486,1],[538,1],[583,1],[629,1]]},"24":{"position":[[90,1],[92,1],[94,2]]},"25":{"position":[[65,1],[67,1],[69,2],[72,1],[74,2],[359,1],[384,2]]},"27":{"position":[[256,1],[301,1],[345,1],[380,1],[446,1],[468,1],[492,2],[597,1],[603,1],[605,1],[607,2],[625,1],[756,2],[795,2],[840,1],[842,1],[907,1],[1040,1],[1046,1],[1048,1],[1050,2],[1068,1],[1197,2],[1236,2],[1282,1],[1284,1],[1349,1]]},"30":{"position":[[34,1],[66,1],[272,1]]},"32":{"position":[[51,1],[53,2]]},"33":{"position":[[24,1],[407,3]]},"34":{"position":[[23,1],[25,2],[256,1],[265,2]]},"35":{"position":[[40,1],[42,2]]},"36":{"position":[[40,1],[42,2]]},"39":{"position":[[154,1],[198,1],[233,1],[308,1]]},"40":{"position":[[189,1],[233,1],[268,1],[343,1],[592,1],[773,1],[782,1]]},"41":{"position":[[185,1],[229,1],[264,1],[339,1],[742,1],[751,1],[753,1],[762,1]]},"42":{"position":[[419,1],[463,1],[498,1],[550,1],[552,1],[562,1],[592,1],[615,1],[672,1],[674,1],[686,1],[710,1],[763,1],[765,1],[767,1],[850,1],[958,1],[997,1],[1017,1],[1051,1],[1067,1],[1163,1],[1252,1],[1284,1],[1331,1],[1357,1],[1381,1],[1426,1],[1473,1],[1498,1],[1579,1],[1581,2],[1917,1],[1940,2],[2105,1],[2159,1]]}},"keywords":{}}],["_",{"_index":386,"title":{},"content":{"42":{"position":[[1588,2],[2422,2]]}},"keywords":{}}],["__iter",{"_index":297,"title":{},"content":{"33":{"position":[[342,9]]}},"keywords":{}}],["accept",{"_index":230,"title":{},"content":{"24":{"position":[[543,10]]}},"keywords":{}}],["access",{"_index":396,"title":{},"content":{"42":{"position":[[2014,6]]}},"keywords":{}}],["ad",{"_index":212,"title":{},"content":{"24":{"position":[[124,6]]},"42":{"position":[[1885,5]]}},"keywords":{}}],["adapt",{"_index":348,"title":{},"content":{"42":{"position":[[25,7]]}},"keywords":{}}],["addincomingmiddlewar",{"_index":305,"title":{"35":{"position":[[0,22]]}},"content":{},"keywords":{}}],["addoutgoingmiddlewar",{"_index":309,"title":{"36":{"position":[[0,22]]}},"content":{},"keywords":{}}],["aftman",{"_index":160,"title":{},"content":{"15":{"position":[[195,7]]}},"keywords":{}}],["allow",{"_index":170,"title":{},"content":{"17":{"position":[[27,5]]},"25":{"position":[[91,6]]},"30":{"position":[[244,7]]},"33":{"position":[[38,6]]}},"keywords":{}}],["alphabet",{"_index":255,"title":{},"content":{"27":{"position":[[616,8],[867,10],[1059,8],[1309,10]]}},"keywords":{}}],["alway",{"_index":317,"title":{},"content":{"38":{"position":[[264,6],[333,6]]}},"keywords":{}}],["amount",{"_index":275,"title":{},"content":{"30":{"position":[[234,6]]}},"keywords":{}}],["amp",{"_index":92,"title":{},"content":{"11":{"position":[[410,5]]},"38":{"position":[[113,5]]}},"keywords":{}}],["annot",{"_index":319,"title":{},"content":{"39":{"position":[[91,10],[352,9],[539,9]]},"40":{"position":[[387,9]]}},"keywords":{}}],["anoth",{"_index":67,"title":{},"content":{"9":{"position":[[255,7]]},"12":{"position":[[350,7]]},"18":{"position":[[231,7]]},"25":{"position":[[211,7]]}},"keywords":{}}],["api",{"_index":81,"title":{},"content":{"11":{"position":[[144,3]]}},"keywords":{}}],["approach",{"_index":112,"title":{},"content":{"12":{"position":[[143,8]]}},"keywords":{}}],["architectur",{"_index":65,"title":{},"content":{"9":{"position":[[141,13]]},"17":{"position":[[68,12]]},"18":{"position":[[69,12]]}},"keywords":{}}],["argument",{"_index":327,"title":{},"content":{"39":{"position":[[425,9]]},"40":{"position":[[460,9]]},"41":{"position":[[782,10]]}},"keywords":{}}],["around",{"_index":74,"title":{},"content":{"11":{"position":[[75,6]]}},"keywords":{}}],["auto",{"_index":93,"title":{},"content":{"11":{"position":[[416,4]]},"39":{"position":[[55,4],[705,4]]}},"keywords":{}}],["automat",{"_index":156,"title":{},"content":{"15":{"position":[[104,14]]}},"keywords":{}}],["base",{"_index":31,"title":{},"content":{"6":{"position":[[135,5]]}},"keywords":{}}],["be",{"_index":353,"title":{},"content":{"42":{"position":[[173,5]]}},"keywords":{}}],["befor",{"_index":251,"title":{},"content":{"27":{"position":[[518,6],[963,6]]},"35":{"position":[[91,6],[260,6]]},"36":{"position":[[91,6],[158,6],[268,6]]}},"keywords":{}}],["begin",{"_index":393,"title":{},"content":{"42":{"position":[[1805,5]]}},"keywords":{}}],["behavior",{"_index":201,"title":{},"content":{"18":{"position":[[427,8]]}},"keywords":{}}],["below",{"_index":198,"title":{},"content":{"18":{"position":[[371,5]]}},"keywords":{}}],["best",{"_index":60,"title":{},"content":{"9":{"position":[[25,4]]}},"keywords":{}}],["beta.3"",{"_index":167,"title":{},"content":{"16":{"position":[[88,12]]}},"keywords":{}}],["between",{"_index":215,"title":{},"content":{"24":{"position":[[197,7]]}},"keywords":{}}],["bevi",{"_index":121,"title":{},"content":{"12":{"position":[[328,4]]}},"keywords":{}}],["bevy_renet",{"_index":119,"title":{},"content":{"12":{"position":[[280,11]]}},"keywords":{}}],["bool",{"_index":253,"title":{},"content":{"27":{"position":[[577,5],[1020,5]]},"39":{"position":[[464,4]]},"40":{"position":[[499,4]]},"41":{"position":[[380,4]]}},"keywords":{}}],["boolean",{"_index":330,"title":{},"content":{"39":{"position":[[580,8]]}},"keywords":{}}],["boolean>",{"_index":321,"title":{},"content":{"39":{"position":[[296,11]]},"40":{"position":[[331,11],[580,11]]},"41":{"position":[[327,11]]}},"keywords":{}}],["bridgenet2",{"_index":123,"title":{},"content":{"12":{"position":[[388,11]]}},"keywords":{}}],["call",{"_index":173,"title":{},"content":{"17":{"position":[[131,4],[467,4]]},"18":{"position":[[262,4]]},"25":{"position":[[236,4]]},"33":{"position":[[337,4]]},"35":{"position":[[221,7],[267,7]]},"36":{"position":[[229,7]]},"41":{"position":[[434,4],[604,6],[654,7]]},"42":{"position":[[2251,4],[2385,4]]}},"keywords":{}}],["case",{"_index":228,"title":{},"content":{"24":{"position":[[465,5],[532,4]]}},"keywords":{}}],["certain",{"_index":78,"title":{},"content":{"11":{"position":[[113,7]]},"33":{"position":[[200,7]]}},"keywords":{}}],["chain",{"_index":292,"title":{},"content":{"33":{"position":[[126,8]]},"34":{"position":[[220,8]]}},"keywords":{}}],["chang",{"_index":231,"title":{},"content":{"24":{"position":[[557,6]]},"38":{"position":[[146,6]]}},"keywords":{}}],["channel",{"_index":249,"title":{},"content":{"27":{"position":[[460,7]]},"30":{"position":[[36,8],[370,7]]},"32":{"position":[[102,8],[152,7]]},"38":{"position":[[94,9],[137,8],[201,7]]},"42":{"position":[[554,7]]}},"keywords":{}}],["channelev",{"_index":314,"title":{},"content":{"38":{"position":[[52,12]]}},"keywords":{}}],["check",{"_index":86,"title":{"39":{"position":[[5,9]]}},"content":{"11":{"position":[[286,8],[401,8]]},"27":{"position":[[663,5],[1106,5]]},"39":{"position":[[19,7],[730,8]]},"42":{"position":[[11,5]]}},"keywords":{}}],["checkout",{"_index":68,"title":{},"content":{"9":{"position":[[289,8]]}},"keywords":{}}],["child",{"_index":387,"title":{},"content":{"42":{"position":[[1591,5]]}},"keywords":{}}],["child:isa("modulescript"",{"_index":389,"title":{},"content":{"42":{"position":[[1635,35]]}},"keywords":{}}],["choic",{"_index":103,"title":{},"content":{"11":{"position":[[655,7]]},"12":{"position":[[90,7]]}},"keywords":{}}],["client",{"_index":197,"title":{},"content":{"18":{"position":[[363,7]]},"34":{"position":[[46,7],[158,8],[189,7]]},"35":{"position":[[156,6],[296,7]]},"36":{"position":[[198,6],[279,6]]},"40":{"position":[[712,7]]},"42":{"position":[[2408,6],[2502,6],[2568,6]]}},"keywords":{}}],["code",{"_index":181,"title":{},"content":{"17":{"position":[[291,4]]},"25":{"position":[[124,4]]},"32":{"position":[[242,4]]}},"keywords":{}}],["come",{"_index":279,"title":{},"content":{"30":{"position":[[345,4]]}},"keywords":{}}],["commonli",{"_index":129,"title":{},"content":{"13":{"position":[[70,8]]}},"keywords":{}}],["complet",{"_index":318,"title":{},"content":{"39":{"position":[[60,10],[710,10]]}},"keywords":{}}],["completionsimpl",{"_index":94,"title":{},"content":{"11":{"position":[[421,16]]}},"keywords":{}}],["compliment",{"_index":333,"title":{},"content":{"39":{"position":[[823,10]]}},"keywords":{}}],["compon",{"_index":366,"title":{},"content":{"42":{"position":[[715,9],[789,10]]}},"keywords":{}}],["componentinstance<t>",{"_index":368,"title":{},"content":{"42":{"position":[[736,26]]}},"keywords":{}}],["compress",{"_index":234,"title":{"27":{"position":[[0,12]]}},"content":{"27":{"position":[[209,8]]}},"keywords":{}}],["compress/decompress",{"_index":235,"title":{},"content":{"27":{"position":[[3,19]]}},"keywords":{}}],["configur",{"_index":219,"title":{"30":{"position":[[0,14]]},"38":{"position":[[0,14]]}},"content":{"24":{"position":[[269,14]]},"30":{"position":[[20,13]]},"32":{"position":[[35,15]]},"38":{"position":[[29,9]]},"42":{"position":[[1867,13]]}},"keywords":{}}],["construct",{"_index":56,"title":{"9":{"position":[[23,14]]}},"content":{},"keywords":{}}],["crate",{"_index":120,"title":{},"content":{"12":{"position":[[305,5]]}},"keywords":{}}],["creat",{"_index":105,"title":{},"content":{"11":{"position":[[678,8]]},"17":{"position":[[365,6]]},"18":{"position":[[94,8],[400,8]]},"32":{"position":[[56,7]]},"39":{"position":[[107,8]]},"42":{"position":[[309,6],[1106,6]]}},"keywords":{}}],["createhook",{"_index":232,"title":{"25":{"position":[[0,11]]}},"content":{},"keywords":{}}],["custom",{"_index":38,"title":{},"content":{"7":{"position":[[77,6]]},"18":{"position":[[409,6]]}},"keywords":{}}],["data",{"_index":106,"title":{"12":{"position":[[0,4]]},"13":{"position":[[11,4]]}},"content":{"12":{"position":[[131,4]]},"13":{"position":[[0,4],[204,4],[321,4],[417,4]]},"27":{"position":[[28,5],[102,5],[237,5]]},"33":{"position":[[473,4]]},"34":{"position":[[34,4],[146,4],[212,4],[305,4]]},"40":{"position":[[55,4],[81,4],[700,4]]},"41":{"position":[[149,7]]},"42":{"position":[[730,5],[2296,7],[2425,7],[2488,4],[2558,4]]}},"keywords":{}}],["declar",{"_index":359,"title":{},"content":{"42":{"position":[[376,7]]}},"keywords":{}}],["decompress",{"_index":242,"title":{},"content":{"27":{"position":[[221,10]]}},"keywords":{}}],["default",{"_index":220,"title":{},"content":{"24":{"position":[[291,8]]},"30":{"position":[[93,8],[185,8]]},"34":{"position":[[112,8]]},"40":{"position":[[654,8]]},"42":{"position":[[1909,7]]}},"keywords":{}}],["defaultconfigur",{"_index":360,"title":{},"content":{"42":{"position":[[529,20]]}},"keywords":{}}],["depend",{"_index":152,"title":{},"content":{"15":{"position":[[0,14]]}},"keywords":{}}],["descriptionreli",{"_index":315,"title":{},"content":{"38":{"position":[[209,19]]}},"keywords":{}}],["deseri",{"_index":238,"title":{},"content":{"27":{"position":[[85,11],[498,11]]}},"keywords":{}}],["design",{"_index":97,"title":{"12":{"position":[[15,7]]}},"content":{"11":{"position":[[472,6],[648,6]]},"12":{"position":[[83,6],[160,7],[193,6]]},"13":{"position":[[12,6],[40,7],[140,6],[216,7],[237,6]]},"17":{"position":[[346,8]]}},"keywords":{}}],["detail",{"_index":36,"title":{},"content":{"7":{"position":[[47,8]]},"11":{"position":[[636,7]]}},"keywords":{}}],["determin",{"_index":240,"title":{},"content":{"27":{"position":[[188,9]]}},"keywords":{}}],["differ",{"_index":229,"title":{},"content":{"24":{"position":[[506,9],[572,9]]}},"keywords":{}}],["difficult",{"_index":138,"title":{},"content":{"13":{"position":[[284,9]]}},"keywords":{}}],["don't",{"_index":66,"title":{},"content":{"9":{"position":[[160,5]]}},"keywords":{}}],["driven",{"_index":96,"title":{"12":{"position":[[5,6]]},"13":{"position":[[16,8]]}},"content":{"11":{"position":[[465,6]]},"12":{"position":[[136,6]]},"13":{"position":[[5,6],[33,6],[133,6],[209,6],[230,6]]}},"keywords":{}}],["drop",{"_index":285,"title":{},"content":{"30":{"position":[[473,7]]},"38":{"position":[[247,8],[306,7]]}},"keywords":{}}],["due",{"_index":294,"title":{},"content":{"33":{"position":[[193,3]]}},"keywords":{}}],["each",{"_index":216,"title":{},"content":{"24":{"position":[[205,4]]},"25":{"position":[[257,4]]}},"keywords":{}}],["ec",{"_index":44,"title":{},"content":{"7":{"position":[[138,3]]},"9":{"position":[[263,3],[311,3]]},"12":{"position":[[124,4],[333,3],[471,3]]},"13":{"position":[[186,3],[475,4],[509,3],[576,4]]},"42":{"position":[[209,4]]}},"keywords":{}}],["ecr",{"_index":54,"title":{"8":{"position":[[0,3]]}},"content":{"9":{"position":[[75,4],[298,3]]}},"keywords":{}}],["enabl",{"_index":332,"title":{},"content":{"39":{"position":[[698,6],[799,6]]}},"keywords":{}}],["encourag",{"_index":140,"title":{},"content":{"13":{"position":[[384,10],[491,10]]},"39":{"position":[[784,10]]}},"keywords":{}}],["end",{"_index":29,"title":{},"content":{"5":{"position":[[281,3]]},"27":{"position":[[829,3],[937,4],[1271,3],[1379,4]]},"33":{"position":[[456,3]]},"39":{"position":[[505,3]]},"40":{"position":[[174,4],[540,3]]},"41":{"position":[[421,3]]},"42":{"position":[[1714,3],[1718,3],[2347,3],[2476,3],[2629,3]]}},"keywords":{}}],["ensur",{"_index":214,"title":{},"content":{"24":{"position":[[168,7]]}},"keywords":{}}],["entiti",{"_index":363,"title":{},"content":{"42":{"position":[[644,8]]}},"keywords":{}}],["entityid",{"_index":365,"title":{},"content":{"42":{"position":[[691,8]]}},"keywords":{}}],["entitypayload",{"_index":364,"title":{},"content":{"42":{"position":[[658,13]]}},"keywords":{}}],["evaera",{"_index":149,"title":{},"content":{"13":{"position":[[584,7]]}},"keywords":{}}],["event",{"_index":128,"title":{},"content":{"13":{"position":[[27,5],[127,5],[224,5],[334,6],[373,7]]},"24":{"position":[[248,5],[356,5],[516,7],[582,6]]},"25":{"position":[[141,7]]},"27":{"position":[[169,5]]},"30":{"position":[[111,6],[131,5]]},"32":{"position":[[115,6],[259,6]]},"42":{"position":[[586,5],[1838,9]]}},"keywords":{}}],["eventslack",{"_index":84,"title":{},"content":{"11":{"position":[[267,10]]}},"keywords":{}}],["exampl",{"_index":200,"title":{},"content":{"18":{"position":[[389,7]]},"25":{"position":[[303,8]]},"33":{"position":[[383,8]]},"35":{"position":[[122,8]]},"36":{"position":[[134,8]]},"39":{"position":[[517,8]]},"42":{"position":[[55,7],[122,7]]}},"keywords":{}}],["examplesystem(world",{"_index":400,"title":{},"content":{"42":{"position":[[2196,20]]}},"keywords":{}}],["expect",{"_index":322,"title":{},"content":{"39":{"position":[[335,6],[668,6]]},"40":{"position":[[370,6]]}},"keywords":{}}],["export",{"_index":155,"title":{},"content":{"15":{"position":[[91,6]]}},"keywords":{}}],["featur",{"_index":278,"title":{},"content":{"30":{"position":[[332,7]]},"39":{"position":[[840,9]]}},"keywords":{}}],["few",{"_index":312,"title":{},"content":{"38":{"position":[[12,3]]}},"keywords":{}}],["filter",{"_index":30,"title":{},"content":{"6":{"position":[[64,6],[87,7]]},"33":{"position":[[105,6]]},"41":{"position":[[524,6],[632,6]]}},"keywords":{}}],["final",{"_index":395,"title":{},"content":{"42":{"position":[[1943,8]]}},"keywords":{}}],["find",{"_index":162,"title":{},"content":{"16":{"position":[[8,4]]}},"keywords":{}}],["firstli",{"_index":354,"title":{},"content":{"42":{"position":[[300,8]]}},"keywords":{}}],["fix",{"_index":296,"title":{},"content":{"33":{"position":[[327,3]]}},"keywords":{}}],["frame",{"_index":144,"title":{},"content":{"13":{"position":[[443,5],[452,6]]},"17":{"position":[[320,5],[329,5]]},"24":{"position":[[210,6]]},"30":{"position":[[266,5],[430,5]]},"33":{"position":[[90,6]]},"38":{"position":[[318,6],[352,6]]},"40":{"position":[[109,6]]},"41":{"position":[[514,5]]},"42":{"position":[[2261,5],[2395,5]]}},"keywords":{}}],["function",{"_index":1,"title":{"1":{"position":[[0,10]]},"4":{"position":[[0,10]]},"23":{"position":[[0,10]]},"31":{"position":[[0,10]]}},"content":{"7":{"position":[[192,8]]},"12":{"position":[[430,13]]},"17":{"position":[[108,9]]},"18":{"position":[[195,9],[210,8],[239,8]]},"25":{"position":[[82,8],[190,8],[219,8]]},"35":{"position":[[52,8]]},"36":{"position":[[52,8]]},"42":{"position":[[236,8],[1169,10],[2187,8]]}},"keywords":{}}],["futur",{"_index":280,"title":{},"content":{"30":{"position":[[353,6]]}},"keywords":{}}],["game",{"_index":64,"title":{},"content":{"9":{"position":[[136,4]]},"12":{"position":[[155,4]]},"17":{"position":[[63,4]]},"18":{"position":[[64,4]]},"42":{"position":[[63,4],[99,5]]}},"keywords":{}}],["game:getservice("runservice"",{"_index":187,"title":{},"content":{"17":{"position":[[537,39]]},"18":{"position":[[488,39]]}},"keywords":{}}],["gener",{"_index":135,"title":{},"content":{"13":{"position":[[194,9]]}},"keywords":{}}],["get",{"_index":99,"title":{},"content":{"11":{"position":[[548,7]]}},"keywords":{}}],["go",{"_index":126,"title":{"13":{"position":[[4,2]]}},"content":{},"keywords":{}}],["handl",{"_index":208,"title":{},"content":{"22":{"position":[[72,8]]}},"keywords":{}}],["heartbeat",{"_index":179,"title":{},"content":{"17":{"position":[[234,9]]},"24":{"position":[[427,10]]},"25":{"position":[[337,10]]}},"keywords":{}}],["here",{"_index":394,"title":{},"content":{"42":{"position":[[1891,4]]}},"keywords":{}}],["hook",{"_index":168,"title":{"17":{"position":[[0,5]]}},"content":{"17":{"position":[[0,5],[21,5],[214,5],[374,5],[673,4]]},"18":{"position":[[105,4],[624,4]]},"25":{"position":[[354,4]]}},"keywords":{}}],["hooksdata",{"_index":95,"title":{},"content":{"11":{"position":[[455,9]]}},"keywords":{}}],["ident",{"_index":193,"title":{},"content":{"18":{"position":[[151,9]]}},"keywords":{}}],["identifi",{"_index":204,"title":{},"content":{"21":{"position":[[54,10],[77,8]]},"22":{"position":[[38,10]]},"32":{"position":[[90,11]]},"34":{"position":[[97,11]]}},"keywords":{}}],["implement",{"_index":48,"title":{},"content":{"7":{"position":[[216,14]]},"30":{"position":[[314,12]]}},"keywords":{}}],["incom",{"_index":308,"title":{},"content":{"35":{"position":[[74,8]]}},"keywords":{}}],["index",{"_index":222,"title":{},"content":{"24":{"position":[[312,5]]}},"keywords":{}}],["influenc",{"_index":113,"title":{},"content":{"12":{"position":[[178,10]]}},"keywords":{}}],["inform",{"_index":52,"title":{},"content":{"7":{"position":[[279,11]]},"33":{"position":[[487,12]]},"34":{"position":[[319,12]]},"35":{"position":[[328,12]]},"36":{"position":[[336,12]]}},"keywords":{}}],["init.client.luau",{"_index":379,"title":{},"content":{"42":{"position":[[1254,16]]}},"keywords":{}}],["init.server.luau",{"_index":378,"title":{},"content":{"42":{"position":[[1235,16]]}},"keywords":{}}],["initi",{"_index":211,"title":{},"content":{"24":{"position":[[97,11]]},"42":{"position":[[179,9]]}},"keywords":{}}],["inspir",{"_index":118,"title":{},"content":{"12":{"position":[[263,11]]}},"keywords":{}}],["instal",{"_index":150,"title":{"14":{"position":[[0,13]]}},"content":{"15":{"position":[[162,7]]}},"keywords":{}}],["integr",{"_index":41,"title":{},"content":{"7":{"position":[[106,9]]},"9":{"position":[[44,11],[109,11]]},"11":{"position":[[438,11]]},"17":{"position":[[40,9]]},"18":{"position":[[36,9]]}},"keywords":{}}],["intellisens",{"_index":87,"title":{},"content":{"11":{"position":[[299,12]]},"39":{"position":[[38,12]]}},"keywords":{}}],["interfac",{"_index":270,"title":{},"content":{"30":{"position":[[10,9]]}},"keywords":{}}],["intern",{"_index":50,"title":{},"content":{"7":{"position":[[258,11]]}},"keywords":{}}],["introduct",{"_index":70,"title":{"10":{"position":[[0,12]]}},"content":{},"keywords":{}}],["invoc",{"_index":276,"title":{},"content":{"30":{"position":[[252,11]]}},"keywords":{}}],["issu",{"_index":79,"title":{},"content":{"11":{"position":[[121,6],[186,6]]}},"keywords":{}}],["it'",{"_index":132,"title":{},"content":{"13":{"position":[[151,4],[486,4]]},"17":{"position":[[179,4]]},"25":{"position":[[280,4]]},"32":{"position":[[188,4]]},"42":{"position":[[79,4]]}},"keywords":{}}],["iter",{"_index":14,"title":{"5":{"position":[[0,9]]}},"content":{"5":{"position":[[64,9]]},"33":{"position":[[49,9],[247,9]]},"41":{"position":[[105,8]]}},"keywords":{}}],["keep",{"_index":101,"title":{},"content":{"11":{"position":[[589,4]]}},"keywords":{}}],["key",{"_index":110,"title":{},"content":{"12":{"position":[[79,3]]},"42":{"position":[[1848,3]]}},"keywords":{}}],["know",{"_index":139,"title":{},"content":{"13":{"position":[[297,4]]}},"keywords":{}}],["larg",{"_index":114,"title":{},"content":{"12":{"position":[[215,7]]}},"keywords":{}}],["learn",{"_index":59,"title":{},"content":{"9":{"position":[[12,8]]},"11":{"position":[[487,5],[605,5]]}},"keywords":{}}],["librari",{"_index":43,"title":{},"content":{"7":{"position":[[125,7]]},"9":{"position":[[267,8],[315,8]]},"11":{"position":[[20,7],[56,7],[198,7]]},"12":{"position":[[51,9],[207,7],[369,7],[457,9]]},"27":{"position":[[48,7]]}},"keywords":{}}],["limit",{"_index":295,"title":{},"content":{"33":{"position":[[208,11]]}},"keywords":{}}],["load",{"_index":373,"title":{},"content":{"42":{"position":[[912,6]]}},"keywords":{}}],["local",{"_index":185,"title":{},"content":{"17":{"position":[[518,5],[577,5],[619,5],[667,5]]},"18":{"position":[[469,5],[528,5],[570,5],[618,5]]},"25":{"position":[[348,5]]},"27":{"position":[[243,5],[291,5],[333,5],[405,5],[583,5],[610,5],[1026,5],[1053,5]]},"39":{"position":[[144,5],[186,5],[258,5]]},"40":{"position":[[179,5],[221,5],[293,5],[544,5]]},"41":{"position":[[175,5],[217,5],[289,5]]},"42":{"position":[[409,5],[451,5],[523,5],[800,5],[919,5],[1271,5],[1319,5],[1346,5],[1371,5],[1413,5],[1461,5],[1487,5],[1565,5],[2092,5],[2140,5],[2181,5]]}},"keywords":{}}],["loop",{"_index":32,"title":{"7":{"position":[[0,4]]}},"content":{"7":{"position":[[13,4],[27,5],[84,4]]},"24":{"position":[[21,5],[27,5],[44,4],[157,5]]},"30":{"position":[[177,4]]},"41":{"position":[[169,5]]},"42":{"position":[[294,5],[1125,5],[1352,4],[1493,4],[1815,4]]}},"keywords":{}}],["loop.new(world",{"_index":385,"title":{},"content":{"42":{"position":[[1500,15]]}},"keywords":{}}],["loop:begin",{"_index":224,"title":{},"content":{"24":{"position":[[370,12]]},"42":{"position":[[1896,12]]}},"keywords":{}}],["loop:schedulesystems(system",{"_index":392,"title":{},"content":{"42":{"position":[[1722,29]]}},"keywords":{}}],["lt;/>",{"_index":2,"title":{},"content":{"2":{"position":[[0,9]]},"5":{"position":[[0,9]]},"6":{"position":[[0,9]]},"21":{"position":[[0,9]]},"22":{"position":[[0,9]]},"24":{"position":[[0,9]]},"25":{"position":[[0,9]]},"30":{"position":[[0,9]]},"32":{"position":[[0,9]]},"33":{"position":[[0,9]]},"34":{"position":[[0,9]]},"35":{"position":[[0,9]]},"36":{"position":[[0,9]]}},"keywords":{}}],["luau",{"_index":69,"title":{},"content":{"9":{"position":[[306,4]]},"33":{"position":[[229,4]]}},"keywords":{}}],["luautypescript",{"_index":169,"title":{},"content":{"17":{"position":[[6,14]]},"18":{"position":[[13,14]]},"39":{"position":[[129,14]]},"40":{"position":[[0,14]]},"41":{"position":[[0,14]]},"42":{"position":[[158,14]]}},"keywords":{}}],["made",{"_index":111,"title":{},"content":{"12":{"position":[[106,4]]},"42":{"position":[[189,4]]}},"keywords":{}}],["make",{"_index":115,"title":{},"content":{"12":{"position":[[227,5]]},"13":{"position":[[275,5]]},"24":{"position":[[229,4]]},"42":{"position":[[1824,4]]}},"keywords":{}}],["manner",{"_index":143,"title":{},"content":{"13":{"position":[[436,6]]}},"keywords":{}}],["match",{"_index":21,"title":{},"content":{"5":{"position":[[152,5]]}},"keywords":{}}],["matter",{"_index":34,"title":{"42":{"position":[[0,6]]}},"content":{"7":{"position":[[20,6],[153,7]]},"9":{"position":[[170,7],[199,6]]},"13":{"position":[[563,6]]},"24":{"position":[[37,6],[150,6]]},"30":{"position":[[170,6]]},"42":{"position":[[0,6],[48,6],[202,6],[287,6],[782,6],[1118,6],[1277,6],[1957,6]]}},"keywords":{}}],["matter'",{"_index":377,"title":{},"content":{"42":{"position":[[1214,8]]}},"keywords":{}}],["matter.loop",{"_index":383,"title":{},"content":{"42":{"position":[[1359,11]]}},"keywords":{}}],["matter.world",{"_index":382,"title":{},"content":{"42":{"position":[[1333,12]]}},"keywords":{}}],["matterrepl",{"_index":369,"title":{},"content":{"42":{"position":[[806,18],[999,17],[1019,18]]}},"keywords":{}}],["mean",{"_index":331,"title":{},"content":{"39":{"position":[[594,5]]}},"keywords":{}}],["meant",{"_index":226,"title":{},"content":{"24":{"position":[[407,5]]}},"keywords":{}}],["method",{"_index":225,"title":{},"content":{"24":{"position":[[383,7]]},"33":{"position":[[158,6],[180,7]]},"39":{"position":[[609,7]]},"41":{"position":[[449,7],[593,6]]}},"keywords":{}}],["middlewar",{"_index":213,"title":{"26":{"position":[[0,10]]}},"content":{"24":{"position":[[131,10]]},"35":{"position":[[308,10]]},"36":{"position":[[316,10]]},"42":{"position":[[1223,11]]}},"keywords":{}}],["middlewarestrict",{"_index":91,"title":{},"content":{"11":{"position":[[379,16]]}},"keywords":{}}],["modifi",{"_index":7,"title":{},"content":{"2":{"position":[[86,8]]}},"keywords":{}}],["modulescript",{"_index":356,"title":{},"content":{"42":{"position":[[330,12],[1998,12]]}},"keywords":{}}],["more",{"_index":51,"title":{},"content":{"7":{"position":[[274,4]]},"11":{"position":[[493,4],[611,4]]},"33":{"position":[[482,4]]},"34":{"position":[[314,4]]},"35":{"position":[[323,4]]},"36":{"position":[[331,4]]}},"keywords":{}}],["name",{"_index":367,"title":{},"content":{"42":{"position":[[725,4]]}},"keywords":{}}],["net",{"_index":42,"title":{"19":{"position":[[0,3]]}},"content":{"7":{"position":[[121,3],[251,3]]},"9":{"position":[[66,3],[121,3],[247,3]]},"11":{"position":[[0,3],[342,3],[508,3],[687,4]]},"12":{"position":[[25,3],[98,3],[400,3]]},"13":{"position":[[356,3],[518,4]]},"15":{"position":[[15,3],[157,4]]},"16":{"position":[[13,3]]},"17":{"position":[[50,3],[338,3],[583,3]]},"18":{"position":[[46,3],[534,3]]},"25":{"position":[[34,5],[109,3]]},"27":{"position":[[297,3]]},"32":{"position":[[227,3]]},"39":{"position":[[150,3]]},"40":{"position":[[185,3]]},"41":{"position":[[181,3]]},"42":{"position":[[214,3],[415,3],[1165,3],[1377,3]]}},"keywords":{}}],["net<boolean>",{"_index":375,"title":{},"content":{"42":{"position":[[939,18]]}},"keywords":{}}],["net<entitypayload>",{"_index":370,"title":{},"content":{"42":{"position":[[825,24]]}},"keywords":{}}],["net<numb",{"_index":337,"title":{},"content":{"40":{"position":[[557,14]]}},"keywords":{}}],["net<u...>",{"_index":266,"title":{},"content":{"27":{"position":[[1168,15]]}},"keywords":{}}],["net'",{"_index":350,"title":{},"content":{"42":{"position":[[116,5]]}},"keywords":{}}],["net.createhook",{"_index":49,"title":{},"content":{"7":{"position":[[234,16],[304,15]]},"17":{"position":[[392,16]]},"18":{"position":[[116,16],[442,16]]},"25":{"position":[[10,15],[361,16]]}},"keywords":{}}],["net.createhook(rout",{"_index":190,"title":{},"content":{"17":{"position":[[680,22]]},"18":{"position":[[631,22]]}},"keywords":{}}],["net.new",{"_index":338,"title":{},"content":{"40":{"position":[[594,9]]}},"keywords":{}}],["net.new(defaultconfigur",{"_index":371,"title":{},"content":{"42":{"position":[[852,29],[960,29]]}},"keywords":{}}],["net.rout",{"_index":206,"title":{},"content":{"22":{"position":[[10,10]]},"27":{"position":[[347,9]]},"39":{"position":[[200,9]]},"40":{"position":[[235,9]]},"41":{"position":[[231,9]]},"42":{"position":[[465,9]]}},"keywords":{}}],["net.route<u...>",{"_index":245,"title":{},"content":{"27":{"position":[[382,22]]},"39":{"position":[[235,22]]},"40":{"position":[[270,22]]},"41":{"position":[[266,22]]},"42":{"position":[[500,22]]}},"keywords":{}}],["net.serv",{"_index":203,"title":{},"content":{"21":{"position":[[10,11]]},"41":{"position":[[764,10]]}},"keywords":{}}],["net.start",{"_index":210,"title":{},"content":{"24":{"position":[[10,10]]},"42":{"position":[[1786,15]]}},"keywords":{}}],["net.start(loop",{"_index":45,"title":{},"content":{"7":{"position":[[165,15]]},"18":{"position":[[168,15]]},"42":{"position":[[1147,15],[1541,15]]}},"keywords":{}}],["net:query():from(...send",{"_index":27,"title":{},"content":{"5":{"position":[[233,28]]}},"keywords":{}}],["network",{"_index":71,"title":{},"content":{"11":{"position":[[9,10],[152,10],[256,10]]},"12":{"position":[[40,10],[294,10],[358,10]]},"17":{"position":[[280,10]]},"35":{"position":[[206,8]]},"36":{"position":[[121,8],[214,8]]},"38":{"position":[[192,8]]},"42":{"position":[[2240,10],[2374,10]]}},"keywords":{}}],["never",{"_index":316,"title":{},"content":{"38":{"position":[[241,5]]}},"keywords":{}}],["new",{"_index":80,"title":{"32":{"position":[[0,4]]}},"content":{"11":{"position":[[140,3]]},"32":{"position":[[66,3]]}},"keywords":{}}],["next",{"_index":335,"title":{},"content":{"40":{"position":[[104,4]]}},"keywords":{}}],["note",{"_index":154,"title":{},"content":{"15":{"position":[[70,5]]},"24":{"position":[[217,4]]},"30":{"position":[[275,4]]},"32":{"position":[[122,4]]},"33":{"position":[[188,4]]}},"keywords":{}}],["now",{"_index":62,"title":{},"content":{"9":{"position":[[84,3]]},"42":{"position":[[1073,3]]}},"keywords":{}}],["npm",{"_index":164,"title":{},"content":{"16":{"position":[[37,4]]}},"keywords":{}}],["num",{"_index":328,"title":{},"content":{"39":{"position":[[454,4]]},"40":{"position":[[489,4]]},"41":{"position":[[370,4]]}},"keywords":{}}],["number",{"_index":16,"title":{},"content":{"5":{"position":[[14,7]]},"30":{"position":[[225,6]]},"39":{"position":[[564,7]]}},"keywords":{}}],["number>",{"_index":247,"title":{},"content":{"27":{"position":[[435,10]]}},"keywords":{}}],["object",{"_index":39,"title":{},"content":{"7":{"position":[[89,6]]},"22":{"position":[[49,6]]},"33":{"position":[[278,6],[371,7]]}},"keywords":{}}],["on",{"_index":107,"title":{},"content":{"12":{"position":[[0,3]]},"38":{"position":[[83,3]]}},"keywords":{}}],["one(",{"_index":10,"title":{},"content":{"2":{"position":[[131,6]]}},"keywords":{}}],["onto",{"_index":293,"title":{},"content":{"33":{"position":[[165,4]]}},"keywords":{}}],["oppos",{"_index":127,"title":{},"content":{"13":{"position":[[19,7]]}},"keywords":{}}],["opt",{"_index":134,"title":{},"content":{"13":{"position":[[178,3]]}},"keywords":{}}],["order",{"_index":137,"title":{},"content":{"13":{"position":[[260,9],[428,7]]},"27":{"position":[[135,5]]},"30":{"position":[[439,6],[505,6]]},"33":{"position":[[318,5]]},"38":{"position":[[271,8],[340,7]]}},"keywords":{}}],["out",{"_index":344,"title":{},"content":{"41":{"position":[[639,3]]},"42":{"position":[[17,3]]}},"keywords":{}}],["outgo",{"_index":311,"title":{},"content":{"36":{"position":[[74,8]]}},"keywords":{}}],["output",{"_index":341,"title":{},"content":{"41":{"position":[[124,6]]}},"keywords":{}}],["over",{"_index":15,"title":{"5":{"position":[[10,4]]}},"content":{"5":{"position":[[74,4]]},"33":{"position":[[257,4]]},"35":{"position":[[197,4]]},"36":{"position":[[112,4],[205,4]]},"38":{"position":[[183,4]]},"40":{"position":[[60,4]]}},"keywords":{}}],["overhead",{"_index":82,"title":{},"content":{"11":{"position":[[218,8]]}},"keywords":{}}],["packag",{"_index":159,"title":{},"content":{"15":{"position":[[176,7]]}},"keywords":{}}],["packet",{"_index":9,"title":{},"content":{"2":{"position":[[117,6]]},"5":{"position":[[109,7]]},"6":{"position":[[95,7]]},"17":{"position":[[170,8],[509,8]]},"18":{"position":[[338,7]]},"25":{"position":[[285,6]]},"27":{"position":[[510,7],[955,7]]},"30":{"position":[[392,7],[458,7]]},"33":{"position":[[66,7]]},"35":{"position":[[83,7],[174,6]]},"36":{"position":[[83,7],[184,6],[304,7]]},"38":{"position":[[166,7],[229,7],[291,7]]},"40":{"position":[[690,6]]},"41":{"position":[[53,7],[488,7],[566,7]]}},"keywords":{}}],["page",{"_index":33,"title":{"9":{"position":[[9,4]]}},"content":{"7":{"position":[[8,4]]}},"keywords":{}}],["paramet",{"_index":12,"title":{},"content":{"2":{"position":[[154,10]]},"27":{"position":[[175,9]]}},"keywords":{}}],["pass",{"_index":183,"title":{},"content":{"17":{"position":[[422,4]]},"34":{"position":[[248,7]]}},"keywords":{}}],["payload",{"_index":361,"title":{},"content":{"42":{"position":[[620,7]]}},"keywords":{}}],["per",{"_index":283,"title":{},"content":{"30":{"position":[[426,3]]},"38":{"position":[[314,3],[348,3]]}},"keywords":{}}],["player",{"_index":4,"title":{},"content":{"2":{"position":[[36,7],[48,6]]},"5":{"position":[[22,6]]},"34":{"position":[[258,6],[268,7]]},"40":{"position":[[763,6],[775,6]]},"41":{"position":[[744,6],[755,6]]},"42":{"position":[[901,6],[2288,7]]}},"keywords":{}}],["playerload",{"_index":374,"title":{},"content":{"42":{"position":[[925,13],[1038,12],[1053,13],[2146,12]]}},"keywords":{}}],["playerloaded:queri",{"_index":402,"title":{},"content":{"42":{"position":[[2307,20],[2436,20]]}},"keywords":{}}],["playerloaded:send(...data",{"_index":403,"title":{},"content":{"42":{"position":[[2523,26]]}},"keywords":{}}],["playerloaded:send(...data):to(play",{"_index":404,"title":{},"content":{"42":{"position":[[2591,37]]}},"keywords":{}}],["pleas",{"_index":217,"title":{},"content":{"24":{"position":[[222,6]]}},"keywords":{}}],["po",{"_index":26,"title":{},"content":{"5":{"position":[[213,4]]},"39":{"position":[[449,4]]},"40":{"position":[[484,4]]},"41":{"position":[[357,4]]}},"keywords":{}}],["posit",{"_index":342,"title":{},"content":{"41":{"position":[[131,9]]}},"keywords":{}}],["practic",{"_index":61,"title":{},"content":{"9":{"position":[[30,9]]}},"keywords":{}}],["prefer",{"_index":145,"title":{},"content":{"13":{"position":[[459,10]]}},"keywords":{}}],["previou",{"_index":291,"title":{},"content":{"33":{"position":[[81,8]]},"41":{"position":[[505,8]]}},"keywords":{}}],["process",{"_index":175,"title":{},"content":{"17":{"position":[[157,7],[496,7]]},"18":{"position":[[288,7]]},"25":{"position":[[272,7]]},"35":{"position":[[107,10]]},"40":{"position":[[94,9]]}},"keywords":{}}],["project",{"_index":351,"title":{},"content":{"42":{"position":[[130,8]]}},"keywords":{}}],["properti",{"_index":202,"title":{"20":{"position":[[0,11]]}},"content":{},"keywords":{}}],["provid",{"_index":11,"title":{},"content":{"2":{"position":[[138,8]]},"6":{"position":[[148,8]]},"11":{"position":[[132,7],[351,8]]},"12":{"position":[[414,7]]},"25":{"position":[[158,7]]},"27":{"position":[[1145,8]]},"39":{"position":[[30,7],[74,9]]},"42":{"position":[[218,8]]}},"keywords":{}}],["push",{"_index":124,"title":{},"content":{"12":{"position":[[404,6]]}},"keywords":{}}],["put",{"_index":346,"title":{},"content":{"41":{"position":[[715,7]]}},"keywords":{}}],["queri",{"_index":141,"title":{"33":{"position":[[0,6]]},"41":{"position":[[0,9]]}},"content":{"13":{"position":[[402,5]]},"22":{"position":[[81,7]]},"33":{"position":[[174,5],[464,8]]},"40":{"position":[[148,5]]},"41":{"position":[[15,8],[43,5],[443,5]]},"42":{"position":[[2220,5],[2354,5]]}},"keywords":{}}],["queryresult",{"_index":13,"title":{"3":{"position":[[0,11]]},"5":{"position":[[15,12]]}},"content":{"5":{"position":[[49,11],[81,11]]},"6":{"position":[[75,11]]},"33":{"position":[[26,11],[266,11],[359,11]]},"41":{"position":[[699,11]]}},"keywords":{}}],["queryresult'",{"_index":19,"title":{},"content":{"5":{"position":[[124,13]]},"6":{"position":[[112,13]]}},"keywords":{}}],["queryresult:from",{"_index":24,"title":{},"content":{"5":{"position":[[184,17]]},"6":{"position":[[10,17]]},"33":{"position":[[139,18]]}},"keywords":{}}],["queue",{"_index":194,"title":{},"content":{"18":{"position":[[309,6]]},"25":{"position":[[292,6]]}},"keywords":{}}],["quot;0.7.0",{"_index":166,"title":{},"content":{"16":{"position":[[76,11]]}},"keywords":{}}],["quot;@rbxts/yetanothernet"",{"_index":165,"title":{},"content":{"16":{"position":[[42,33]]}},"keywords":{}}],["quot;boolean"",{"_index":267,"title":{},"content":{"27":{"position":[[1239,19]]}},"keywords":{}}],["quot;default"",{"_index":273,"title":{},"content":{"30":{"position":[[194,19]]},"42":{"position":[[594,20]]}},"keywords":{}}],["quot;hello",{"_index":324,"title":{},"content":{"39":{"position":[[376,12]]},"40":{"position":[[411,12],[624,12]]}},"keywords":{}}],["quot;net_server"",{"_index":6,"title":{},"content":{"2":{"position":[[57,23]]},"21":{"position":[[22,22]]}},"keywords":{}}],["quot;reliable"",{"_index":250,"title":{},"content":{"27":{"position":[[470,21]]},"30":{"position":[[45,20]]},"42":{"position":[[564,21]]}},"keywords":{}}],["quot;string"",{"_index":258,"title":{},"content":{"27":{"position":[[759,18],[798,18],[1200,18]]}},"keywords":{}}],["quot;unreliable"",{"_index":271,"title":{},"content":{"30":{"position":[[68,22]]}},"keywords":{}}],["quot;yetanotherclown/yetanothernet@0.7.0"",{"_index":153,"title":{},"content":{"15":{"position":[[21,47]]}},"keywords":{}}],["ran",{"_index":307,"title":{},"content":{"35":{"position":[[67,3]]},"36":{"position":[[67,3]]}},"keywords":{}}],["ratelimit",{"_index":274,"title":{},"content":{"30":{"position":[[214,10],[294,12]]}},"keywords":{}}],["read",{"_index":102,"title":{},"content":{"11":{"position":[[594,7]]},"13":{"position":[[555,7]]}},"keywords":{}}],["real",{"_index":349,"title":{},"content":{"42":{"position":[[94,4]]}},"keywords":{}}],["receiv",{"_index":282,"title":{},"content":{"30":{"position":[[417,8],[493,8]]},"34":{"position":[[200,7]]},"35":{"position":[[163,8]]},"36":{"position":[[291,8]]},"40":{"position":[[164,9]]}},"keywords":{}}],["recipi",{"_index":8,"title":{},"content":{"2":{"position":[[99,10]]},"34":{"position":[[69,10]]}},"keywords":{}}],["recommend",{"_index":176,"title":{},"content":{"17":{"position":[[184,11]]},"32":{"position":[[193,11]]}},"keywords":{}}],["reliabl",{"_index":272,"title":{},"content":{"30":{"position":[[102,8],[378,9]]},"38":{"position":[[104,8]]}},"keywords":{}}],["remot",{"_index":289,"title":{},"content":{"32":{"position":[[180,7]]}},"keywords":{}}],["remoteev",{"_index":76,"title":{},"content":{"11":{"position":[[91,12],[329,12]]},"13":{"position":[[102,12]]}},"keywords":{}}],["remoteeventsord",{"_index":83,"title":{},"content":{"11":{"position":[[232,20]]}},"keywords":{}}],["replic",{"_index":362,"title":{},"content":{"42":{"position":[[632,11],[772,9]]}},"keywords":{}}],["replicatedstorag",{"_index":357,"title":{},"content":{"42":{"position":[[346,17]]}},"keywords":{}}],["repositori",{"_index":352,"title":{},"content":{"42":{"position":[[146,11]]}},"keywords":{}}],["request",{"_index":209,"title":{},"content":{"22":{"position":[[98,9]]}},"keywords":{}}],["requir",{"_index":147,"title":{},"content":{"13":{"position":[[534,9]]}},"keywords":{}}],["require("matter.luau"",{"_index":380,"title":{},"content":{"42":{"position":[[1286,32]]}},"keywords":{}}],["require("net.luau"",{"_index":188,"title":{},"content":{"17":{"position":[[589,29]]},"18":{"position":[[540,29]]},"27":{"position":[[303,29]]},"39":{"position":[[156,29]]},"40":{"position":[[191,29]]},"41":{"position":[[187,29]]},"42":{"position":[[421,29],[1383,29]]}},"keywords":{}}],["require("routes.luau"",{"_index":189,"title":{},"content":{"17":{"position":[[634,32]]},"18":{"position":[[585,32]]},"42":{"position":[[1428,32],[2107,32]]}},"keywords":{}}],["require("squash.luau"",{"_index":243,"title":{},"content":{"27":{"position":[[258,32]]}},"keywords":{}}],["require(child",{"_index":391,"title":{},"content":{"42":{"position":[[1698,15]]}},"keywords":{}}],["respons",{"_index":207,"title":{},"content":{"22":{"position":[[56,11]]}},"keywords":{}}],["rest",{"_index":117,"title":{},"content":{"12":{"position":[[252,5]]}},"keywords":{}}],["return",{"_index":18,"title":{},"content":{"5":{"position":[[98,6]]},"18":{"position":[[224,6]]},"25":{"position":[[204,6]]},"27":{"position":[[115,6],[525,9],[669,8],[822,6],[909,6],[1264,6],[1351,6]]},"33":{"position":[[294,6]]},"39":{"position":[[416,8],[658,6]]},"40":{"position":[[451,8]]},"41":{"position":[[95,6],[556,9]]},"42":{"position":[[990,6]]}},"keywords":{}}],["roblox",{"_index":72,"title":{"16":{"position":[[0,6]]}},"content":{"11":{"position":[[32,7],[166,7]]},"12":{"position":[[64,6],[380,7],[478,7]]},"13":{"position":[[86,7]]}},"keywords":{}}],["roblox'",{"_index":75,"title":{},"content":{"11":{"position":[[82,8]]}},"keywords":{}}],["rout",{"_index":46,"title":{"22":{"position":[[0,6]]},"28":{"position":[[0,5]]},"37":{"position":[[0,6]]}},"content":{"7":{"position":[[183,5]]},"11":{"position":[[569,7]]},"17":{"position":[[409,5],[446,7],[625,6]]},"18":{"position":[[133,5],[186,5],[301,7],[459,5],[576,6]]},"22":{"position":[[21,5]]},"24":{"position":[[49,7],[57,7],[83,6],[114,6],[186,6],[396,6],[496,6]]},"25":{"position":[[26,7],[58,6],[177,7],[262,5],[378,5]]},"27":{"position":[[339,5],[411,6]]},"30":{"position":[[153,5]]},"32":{"position":[[70,5],[131,6]]},"38":{"position":[[44,7],[69,6]]},"39":{"position":[[0,6],[121,7],[192,5],[264,6],[530,5],[762,7]]},"40":{"position":[[69,6],[227,5],[299,6],[550,6]]},"41":{"position":[[223,5],[295,6],[583,5]]},"42":{"position":[[265,6],[389,7],[457,5],[1197,6],[1419,6],[1534,6],[1557,7],[1860,6],[2025,6],[2098,6]]}},"keywords":{}}],["route<numb",{"_index":320,"title":{},"content":{"39":{"position":[[271,16]]},"40":{"position":[[306,16]]},"41":{"position":[[302,16]]}},"keywords":{}}],["route<str",{"_index":246,"title":{},"content":{"27":{"position":[[418,16]]}},"keywords":{}}],["route<u...>",{"_index":244,"title":{},"content":{"27":{"position":[[362,17]]},"39":{"position":[[215,17]]},"40":{"position":[[250,17]]},"41":{"position":[[246,17]]},"42":{"position":[[480,17]]}},"keywords":{}}],["route'",{"_index":301,"title":{},"content":{"34":{"position":[[89,7]]}},"keywords":{}}],["route.new",{"_index":248,"title":{},"content":{"27":{"position":[[448,11]]},"39":{"position":[[310,11]]},"40":{"position":[[345,11]]},"41":{"position":[[341,11]]}},"keywords":{}}],["route.new(configur",{"_index":286,"title":{},"content":{"32":{"position":[[10,24]]}},"keywords":{}}],["route.serv",{"_index":304,"title":{},"content":{"34":{"position":[[279,13]]}},"keywords":{}}],["route:addincomingmiddlewar",{"_index":306,"title":{},"content":{"35":{"position":[[10,29]]}},"keywords":{}}],["route:addincomingmiddleware(function(str",{"_index":252,"title":{},"content":{"27":{"position":[[535,41]]}},"keywords":{}}],["route:addoutgoingmiddlewar",{"_index":310,"title":{},"content":{"36":{"position":[[10,29]]}},"keywords":{}}],["route:addoutgoingmiddleware(function(str",{"_index":263,"title":{},"content":{"27":{"position":[[978,41]]}},"keywords":{}}],["route:queri",{"_index":290,"title":{},"content":{"33":{"position":[[10,13]]},"35":{"position":[[275,13]]},"39":{"position":[[472,13],[622,13]]},"40":{"position":[[507,13]]},"41":{"position":[[70,13],[388,13]]}},"keywords":{}}],["route:query():__it",{"_index":298,"title":{},"content":{"33":{"position":[[414,22]]}},"keywords":{}}],["route:query():from(...send",{"_index":345,"title":{},"content":{"41":{"position":[[662,29]]}},"keywords":{}}],["route:send",{"_index":299,"title":{},"content":{"34":{"position":[[10,12],[121,10]]},"35":{"position":[[229,12]]},"36":{"position":[[237,12]]},"39":{"position":[[640,12]]},"40":{"position":[[663,12]]}},"keywords":{}}],["route:send():to(recipi",{"_index":340,"title":{},"content":{"40":{"position":[[807,27]]}},"keywords":{}}],["route:send(...data",{"_index":334,"title":{},"content":{"40":{"position":[[27,19]]}},"keywords":{}}],["route:send(1",{"_index":323,"title":{},"content":{"39":{"position":[[362,13]]},"40":{"position":[[397,13]]}},"keywords":{}}],["route:send(5",{"_index":339,"title":{},"content":{"40":{"position":[[604,13]]}},"keywords":{}}],["routes.luau",{"_index":355,"title":{},"content":{"42":{"position":[[318,11],[397,11],[1986,11]]}},"keywords":{}}],["routes.playerload",{"_index":399,"title":{},"content":{"42":{"position":[[2161,19]]}},"keywords":{}}],["run",{"_index":178,"title":{},"content":{"17":{"position":[[223,3],[316,3]]},"24":{"position":[[193,3],[416,3],[487,3]]},"25":{"position":[[105,3],[315,3]]},"32":{"position":[[214,3]]},"35":{"position":[[142,3]]},"36":{"position":[[154,3]]},"38":{"position":[[76,3]]},"42":{"position":[[275,3],[1139,3],[1207,3],[1778,7]]}},"keywords":{}}],["runservic",{"_index":186,"title":{},"content":{"17":{"position":[[524,10]]},"18":{"position":[[475,10]]}},"keywords":{}}],["runservice.heartbeat",{"_index":180,"title":{},"content":{"17":{"position":[[250,21]]},"42":{"position":[[1919,20]]}},"keywords":{}}],["runservice.heartbeat:connect(hook",{"_index":191,"title":{},"content":{"17":{"position":[[703,34]]},"18":{"position":[[654,34]]},"25":{"position":[[387,34]]}},"keywords":{}}],["rust",{"_index":122,"title":{},"content":{"12":{"position":[[340,5]]}},"keywords":{}}],["same",{"_index":221,"title":{},"content":{"24":{"position":[[307,4]]},"32":{"position":[[147,4]]},"42":{"position":[[1084,4]]}},"keywords":{}}],["schedul",{"_index":182,"title":{},"content":{"17":{"position":[[303,9]]},"18":{"position":[[416,10]]},"25":{"position":[[113,10],[319,10]]},"30":{"position":[[140,8]]},"32":{"position":[[231,10]]},"42":{"position":[[249,10],[1183,8],[1519,9],[1755,8]]}},"keywords":{}}],["script",{"_index":376,"title":{},"content":{"42":{"position":[[1089,6]]}},"keywords":{}}],["script.systems:getchildren",{"_index":388,"title":{},"content":{"42":{"position":[[1600,28]]}},"keywords":{}}],["see",{"_index":53,"title":{},"content":{"7":{"position":[[300,3]]},"9":{"position":[[88,3],[191,3],[215,3]]},"13":{"position":[[79,3]]},"33":{"position":[[460,3]]},"34":{"position":[[293,3]]},"35":{"position":[[304,3]]},"36":{"position":[[312,3]]},"42":{"position":[[71,3],[105,3]]}},"keywords":{}}],["send",{"_index":142,"title":{"34":{"position":[[0,5]]},"40":{"position":[[0,8]]}},"content":{"13":{"position":[[412,4]]},"22":{"position":[[93,4]]},"27":{"position":[[970,7]]},"34":{"position":[[28,5],[137,4],[297,7]]},"36":{"position":[[176,5]]},"39":{"position":[[325,4]]},"40":{"position":[[50,4],[360,4],[681,4],[787,4]]},"42":{"position":[[2483,4],[2553,4]]}},"keywords":{}}],["send/rec",{"_index":195,"title":{},"content":{"18":{"position":[[320,12]]}},"keywords":{}}],["sender",{"_index":23,"title":{},"content":{"5":{"position":[[171,7],[218,7]]},"6":{"position":[[28,8],[37,9],[53,7],[157,8]]},"33":{"position":[[115,7],[399,7]]},"41":{"position":[[141,7],[362,7],[643,7]]}},"keywords":{}}],["sending/queri",{"_index":205,"title":{},"content":{"21":{"position":[[102,17]]}},"keywords":{}}],["sendrequest",{"_index":0,"title":{"0":{"position":[[0,11]]}},"content":{},"keywords":{}}],["sendrequest:to",{"_index":303,"title":{},"content":{"34":{"position":[[229,14]]}},"keywords":{}}],["sendrequest:to(recipi",{"_index":3,"title":{},"content":{"2":{"position":[[10,25]]}},"keywords":{}}],["sensit",{"_index":136,"title":{},"content":{"13":{"position":[[247,9]]}},"keywords":{}}],["sent",{"_index":264,"title":{},"content":{"27":{"position":[[1112,4]]},"30":{"position":[[408,4]]},"36":{"position":[[107,4]]},"38":{"position":[[178,4]]}},"keywords":{}}],["separ",{"_index":109,"title":{},"content":{"12":{"position":[[15,9]]}},"keywords":{}}],["serial",{"_index":237,"title":{},"content":{"27":{"position":[[71,9],[696,10],[945,9]]}},"keywords":{}}],["server",{"_index":196,"title":{"21":{"position":[[0,7]]}},"content":{"18":{"position":[[353,6]]},"21":{"position":[[90,6]]},"35":{"position":[[190,6],[249,6]]},"36":{"position":[[169,6],[257,6]]},"40":{"position":[[737,7]]},"42":{"position":[[2274,6],[2516,6],[2584,6]]}},"keywords":{}}],["set",{"_index":177,"title":{},"content":{"17":{"position":[[205,3]]},"24":{"position":[[258,3]]},"35":{"position":[[45,4]]},"36":{"position":[[45,4]]}},"keywords":{}}],["setup",{"_index":63,"title":{"18":{"position":[[6,6]]}},"content":{"9":{"position":[[98,6],[206,5],[233,5]]},"18":{"position":[[6,6]]}},"keywords":{}}],["sever",{"_index":89,"title":{},"content":{"11":{"position":[[360,7]]}},"keywords":{}}],["share",{"_index":287,"title":{},"content":{"32":{"position":[[165,5]]}},"keywords":{}}],["signal",{"_index":372,"title":{},"content":{"42":{"position":[[885,6]]}},"keywords":{}}],["similar",{"_index":47,"title":{},"content":{"7":{"position":[[208,7]]},"12":{"position":[[422,7]]}},"keywords":{}}],["simpl",{"_index":199,"title":{},"content":{"18":{"position":[[382,6]]},"41":{"position":[[27,7]]},"42":{"position":[[229,6]]}},"keywords":{}}],["simpli",{"_index":172,"title":{},"content":{"17":{"position":[[101,6]]},"27":{"position":[[108,6]]}},"keywords":{}}],["singl",{"_index":288,"title":{},"content":{"32":{"position":[[173,6],[252,6]]}},"keywords":{}}],["snapshot",{"_index":20,"title":{},"content":{"5":{"position":[[138,8]]},"6":{"position":[[126,8]]},"41":{"position":[[472,8]]}},"keywords":{}}],["solv",{"_index":77,"title":{},"content":{"11":{"position":[[107,5],[206,6]]},"13":{"position":[[344,5]]}},"keywords":{}}],["someth",{"_index":28,"title":{},"content":{"5":{"position":[[271,9]]},"33":{"position":[[446,9]]},"39":{"position":[[495,9]]},"40":{"position":[[530,9]]},"41":{"position":[[411,9]]},"42":{"position":[[2337,9],[2466,9]]}},"keywords":{}}],["specif",{"_index":300,"title":{},"content":{"34":{"position":[[60,8]]}},"keywords":{}}],["specifi",{"_index":302,"title":{},"content":{"34":{"position":[[175,7]]},"40":{"position":[[753,7]]}},"keywords":{}}],["squash",{"_index":236,"title":{},"content":{"27":{"position":[[61,6],[249,6],[689,6]]}},"keywords":{}}],["squash.boolean.des(boolean",{"_index":261,"title":{},"content":{"27":{"position":[[878,28]]}},"keywords":{}}],["squash.boolean.ser(boolean",{"_index":269,"title":{},"content":{"27":{"position":[[1320,28]]}},"keywords":{}}],["squash.string.alphabet(str",{"_index":256,"title":{},"content":{"27":{"position":[[627,27],[1070,27]]}},"keywords":{}}],["squash.string.des(str",{"_index":260,"title":{},"content":{"27":{"position":[[844,22]]}},"keywords":{}}],["squash.string.ser(str",{"_index":268,"title":{},"content":{"27":{"position":[[1286,22]]}},"keywords":{}}],["start",{"_index":100,"title":{"24":{"position":[[0,6]]}},"content":{"11":{"position":[[556,7]]}},"keywords":{}}],["step",{"_index":233,"title":{},"content":{"25":{"position":[[252,4]]}},"keywords":{}}],["still",{"_index":58,"title":{},"content":{"9":{"position":[[6,5]]}},"keywords":{}}],["str",{"_index":329,"title":{},"content":{"39":{"position":[[459,4]]},"40":{"position":[[494,4]]},"41":{"position":[[375,4]]}},"keywords":{}}],["strict",{"_index":158,"title":{},"content":{"15":{"position":[[138,6]]},"39":{"position":[[806,6]]}},"keywords":{}}],["strictli",{"_index":358,"title":{},"content":{"42":{"position":[[367,8]]}},"keywords":{}}],["string",{"_index":17,"title":{},"content":{"5":{"position":[[31,7]]},"27":{"position":[[736,6]]},"30":{"position":[[118,6]]},"39":{"position":[[288,7],[572,7]]},"40":{"position":[[323,7],[572,7]]},"41":{"position":[[319,7]]},"42":{"position":[[676,9],[700,9]]}},"keywords":{}}],["such",{"_index":130,"title":{},"content":{"13":{"position":[[94,4]]},"39":{"position":[[773,4]]},"41":{"position":[[543,4]]}},"keywords":{}}],["suggest",{"_index":148,"title":{},"content":{"13":{"position":[[547,7]]}},"keywords":{}}],["suppli",{"_index":22,"title":{},"content":{"5":{"position":[[162,8]]}},"keywords":{}}],["sure",{"_index":218,"title":{},"content":{"24":{"position":[[234,4]]},"42":{"position":[[1829,4]]}},"keywords":{}}],["system",{"_index":227,"title":{},"content":{"24":{"position":[[448,8]]},"33":{"position":[[239,7]]},"42":{"position":[[1571,7],[1764,7],[1964,6],[2056,8]]}},"keywords":{}}],["systems/examplesystem.luau",{"_index":398,"title":{},"content":{"42":{"position":[[2065,26]]}},"keywords":{}}],["tabl",{"_index":184,"title":{},"content":{"17":{"position":[[432,5]]},"24":{"position":[[69,5]]},"25":{"position":[[44,5],[168,5]]}},"keywords":{}}],["table.insert(system",{"_index":390,"title":{},"content":{"42":{"position":[[1676,21]]}},"keywords":{}}],["table.unpack(valu",{"_index":262,"title":{},"content":{"27":{"position":[[916,20],[1358,20]]}},"keywords":{}}],["take",{"_index":343,"title":{},"content":{"41":{"position":[[465,4]]}},"keywords":{}}],["technic",{"_index":35,"title":{},"content":{"7":{"position":[[37,9]]},"11":{"position":[[626,9]]}},"keywords":{}}],["themselv",{"_index":131,"title":{},"content":{"13":{"position":[[115,11]]}},"keywords":{}}],["thing",{"_index":108,"title":{},"content":{"12":{"position":[[4,5]]}},"keywords":{}}],["though",{"_index":146,"title":{},"content":{"13":{"position":[[523,6]]}},"keywords":{}}],["through",{"_index":401,"title":{},"content":{"42":{"position":[[2226,7],[2360,7]]}},"keywords":{}}],["tip",{"_index":347,"title":{},"content":{"42":{"position":[[7,3]]}},"keywords":{}}],["tri",{"_index":40,"title":{},"content":{"7":{"position":[[99,3]]}},"keywords":{}}],["true",{"_index":326,"title":{},"content":{"39":{"position":[[403,5]]},"40":{"position":[[438,5],[618,5]]}},"keywords":{}}],["tupl",{"_index":239,"title":{},"content":{"27":{"position":[[146,6]]}},"keywords":{}}],["two",{"_index":125,"title":{},"content":{"12":{"position":[[453,3]]},"38":{"position":[[90,3]]}},"keywords":{}}],["type",{"_index":85,"title":{"29":{"position":[[0,6]]},"39":{"position":[[0,4]]}},"content":{"11":{"position":[[281,4],[396,4]]},"15":{"position":[[98,5],[145,6],[184,5]]},"27":{"position":[[126,5],[357,4],[658,4],[707,5],[724,6],[1101,4],[1154,5]]},"33":{"position":[[234,4],[301,5]]},"39":{"position":[[14,4],[86,4],[210,4],[346,5],[439,5],[558,5],[681,6],[725,4],[813,6]]},"40":{"position":[[245,4],[381,5],[474,5]]},"41":{"position":[[241,4],[737,4]]},"42":{"position":[[475,4],[653,4]]}},"keywords":{}}],["type(boolean",{"_index":259,"title":{},"content":{"27":{"position":[[781,13],[1222,13]]}},"keywords":{}}],["type(str",{"_index":257,"title":{},"content":{"27":{"position":[[746,9],[1187,9]]}},"keywords":{}}],["typescript",{"_index":161,"title":{"16":{"position":[[7,11]]}},"content":{},"keywords":{}}],["u",{"_index":265,"title":{},"content":{"27":{"position":[[1160,4]]}},"keywords":{}}],["under",{"_index":55,"title":{"9":{"position":[[17,5]]}},"content":{},"keywords":{}}],["uniqu",{"_index":116,"title":{},"content":{"12":{"position":[[236,6]]},"21":{"position":[[47,6]]},"22":{"position":[[29,8]]},"32":{"position":[[83,6]]}},"keywords":{}}],["unreli",{"_index":284,"title":{},"content":{"30":{"position":[[446,11]]},"38":{"position":[[119,11],[280,10]]}},"keywords":{}}],["us",{"_index":37,"title":{},"content":{"7":{"position":[[71,3],[201,4]]},"9":{"position":[[60,5],[166,3],[243,3]]},"11":{"position":[[529,3]]},"12":{"position":[[315,3]]},"13":{"position":[[369,3],[505,3]]},"15":{"position":[[134,3]]},"17":{"position":[[244,5],[388,3]]},"18":{"position":[[110,5],[436,5]]},"21":{"position":[[65,4]]},"24":{"position":[[322,4]]},"27":{"position":[[42,3],[161,3]]},"40":{"position":[[23,3],[725,4],[801,5]]},"41":{"position":[[64,5]]},"42":{"position":[[84,4],[1978,3],[2036,3]]}},"keywords":{}}],["usag",{"_index":25,"title":{},"content":{"5":{"position":[[202,6]]}},"keywords":{}}],["util",{"_index":90,"title":{},"content":{"11":{"position":[[368,10]]}},"keywords":{}}],["v0.5.0",{"_index":277,"title":{},"content":{"30":{"position":[[286,7]]}},"keywords":{}}],["valu",{"_index":254,"title":{},"content":{"27":{"position":[[589,7],[678,7],[833,6],[1032,7],[1117,7],[1275,6]]},"33":{"position":[[307,7]]},"41":{"position":[[727,6]]}},"keywords":{}}],["version",{"_index":281,"title":{},"content":{"30":{"position":[[360,9]]},"42":{"position":[[33,7]]}},"keywords":{}}],["visit",{"_index":98,"title":{},"content":{"11":{"position":[[539,8]]}},"keywords":{}}],["walli",{"_index":151,"title":{"15":{"position":[[0,6]]}},"content":{"15":{"position":[[76,5],[170,5]]}},"keywords":{}}],["want",{"_index":171,"title":{},"content":{"17":{"position":[[85,5],[149,4],[488,4]]},"18":{"position":[[86,4],[280,4]]},"24":{"position":[[479,4]]}},"keywords":{}}],["way",{"_index":313,"title":{},"content":{"38":{"position":[[16,4],[157,3]]}},"keywords":{}}],["we'r",{"_index":57,"title":{},"content":{"9":{"position":[[0,5]]}},"keywords":{}}],["went",{"_index":104,"title":{},"content":{"11":{"position":[[668,4]]}},"keywords":{}}],["whatev",{"_index":192,"title":{},"content":{"18":{"position":[[55,8]]}},"keywords":{}}],["whenev",{"_index":174,"title":{},"content":{"17":{"position":[[136,8],[475,8]]},"18":{"position":[[267,8]]}},"keywords":{}}],["whether",{"_index":241,"title":{},"content":{"27":{"position":[[198,7]]}},"keywords":{}}],["wish",{"_index":157,"title":{},"content":{"15":{"position":[[126,4]]}},"keywords":{}}],["within",{"_index":397,"title":{},"content":{"42":{"position":[[2045,6]]}},"keywords":{}}],["woe",{"_index":133,"title":{},"content":{"13":{"position":[[156,5]]}},"keywords":{}}],["work",{"_index":88,"title":{},"content":{"11":{"position":[[316,7],[512,5]]},"12":{"position":[[114,4]]},"39":{"position":[[744,7]]}},"keywords":{}}],["world",{"_index":381,"title":{},"content":{"42":{"position":[[1325,5],[1467,5]]}},"keywords":{}}],["world!"",{"_index":325,"title":{},"content":{"39":{"position":[[389,13]]},"40":{"position":[[424,13],[637,13]]}},"keywords":{}}],["world.new",{"_index":384,"title":{},"content":{"42":{"position":[[1475,11]]}},"keywords":{}}],["wrap",{"_index":73,"title":{},"content":{"11":{"position":[[69,5]]}},"keywords":{}}],["yetanothernet",{"_index":163,"title":{},"content":{"16":{"position":[[20,13]]}},"keywords":{}}],["you'll",{"_index":336,"title":{},"content":{"40":{"position":[[130,6]]}},"keywords":{}}],["yourrunservice.heartbeat",{"_index":223,"title":{},"content":{"24":{"position":[[331,24]]}},"keywords":{}}]],"pipeline":["stemmer"]} \ No newline at end of file diff --git a/lunr-index-1707379851867.json b/lunr-index-1707379851867.json new file mode 100644 index 0000000..aaede44 --- /dev/null +++ b/lunr-index-1707379851867.json @@ -0,0 +1 @@ +{"version":"2.3.9","fields":["title","content","keywords"],"fieldVectors":[["title/0",[0,612.911]],["content/0",[]],["keywords/0",[]],["title/1",[1,63.655,2,291.07,3,342.915,4,342.915]],["content/1",[0,7.774,1,1.228,5,6.617,6,6.617,7,5.617,8,6.617,9,6.617,10,5.636,11,3.45,12,2.866,13,5.617,14,5.111,15,7.869,16,4.073,17,4.958,18,6.617,19,4.796,20,4.466,21,5.636,22,5.636,23,6.617,24,5.617]],["keywords/1",[]],["title/2",[25,408.705]],["content/2",[]],["keywords/2",[]],["title/3",[26,268.951]],["content/3",[]],["keywords/3",[]],["title/4",[25,235.274,27,280.514,28,217.669]],["content/4",[1,1.872,25,5.707,27,5.147,28,3.994,29,2.667,30,5.715,31,4.317,32,3.994,33,3.461,34,2.506,35,6.474,36,5.715,37,7.627,38,7.627,39,6.804,40,5.715,41,7.627,42,5.147,43,7.627,44,4.317,45,3.994]],["keywords/4",[]],["title/5",[]],["content/5",[1,2.02,25,4.856,29,3,34,2.819,35,7.283,36,6.428,39,8.479,40,6.428,46,8.152,47,8.58,48,4.175]],["keywords/5",[]],["title/6",[49,408.705]],["content/6",[1,1.988,2,5.827,10,4.225,11,3.086,12,2.563,14,3.341,19,4.919,21,4.225,22,4.225,26,2.557,49,6.06,50,5.827,51,5.827,52,5.827,53,5.144,54,6.865,55,5.144,56,1.761,57,5.827,58,5.827,59,6.339,60,6.865,61,3.886,62,4.225]],["keywords/6",[]],["title/7",[12,197.042]],["content/7",[]],["keywords/7",[]],["title/8",[63,722.082]],["content/8",[]],["keywords/8",[]],["title/9",[64,378.122]],["content/9",[11,3.165,29,3.368,64,5.044,65,8.176,66,8.176,67,6.5,68,7.889,69,9.632]],["keywords/9",[]],["title/10",[56,185.166]],["content/10",[29,3.254,53,6.972,56,2.386,67,6.28,68,6.28,70,5.267,71,9.306,72,9.306,73,4.528,74,3.946,75,9.306]],["keywords/10",[]],["title/11",[26,268.951]],["content/11",[]],["keywords/11",[]],["title/12",[76,612.911]],["content/12",[1,1.72,11,1.735,19,4.082,29,1.847,49,5.789,56,3.027,77,4.484,78,3.958,79,4.484,80,4.484,81,3.251,82,5.282,83,4.508,84,5.282,85,4.484,86,2.396,87,3.251,88,5.282,89,3.565,90,4.484,91,5.356,92,3.565,93,2.766,94,3.251,95,3.958,96,5.282,97,5.282,98,4.484,99,3.565,100,5.282,101,3.958,102,3.958,103,7.795,104,3.958,105,7.795,106,5.282,107,4.484]],["keywords/12",[]],["title/13",[108,722.082]],["content/13",[1,2.275,12,2.325,20,4.029,26,3.7,29,2.088,33,2.709,34,1.962,48,2.905,56,2.937,59,5.749,78,6.383,83,4.146,85,5.068,91,3.127,101,4.473,109,4.029,110,4.822,111,4.473,112,2.905,113,5.971,114,3.675,115,3.675,116,5.068,117,3.127,118,2.905,119,4.029,120,4.473]],["keywords/13",[]],["title/14",[121,722.082]],["content/14",[]],["keywords/14",[]],["title/15",[]],["content/15",[7,6.303,10,3.046,11,1.626,12,2.703,22,5.486,48,3.614,50,4.201,51,4.201,56,1.269,61,4.203,76,4.201,122,4.667,123,5.012,124,4.949,125,4.949,126,4.949,127,6.303,128,6.303,129,4.201,130,7.426,131,3.708,132,4.949,133,4.949,134,4.949,135,4.949,136,3.149,137,4.57,138,4.201,139,5.564,140,4.949,141,4.949,142,4.949,143,4.201,144,4.201,145,4.949,146,4.949,147,3.046,148,4.57,149,4.949,150,4.949,151,4.949,152,4.201,153,4.201,154,4.949,155,2.801]],["keywords/15",[]],["title/16",[147,255.826,148,255.826,156,176.274]],["content/16",[11,1.88,12,2.647,16,3.522,20,3.861,21,5.97,22,6.538,26,2.131,48,2.784,57,4.857,67,3.861,89,3.861,122,5.079,123,6.546,139,4.287,147,3.522,148,5.97,153,4.857,156,2.427,157,4.857,158,5.722,159,5.722,160,4.857,161,4.857,162,5.722,163,5.722,164,5.722,165,5.722,166,5.722,167,5.722,168,5.722,169,5.722,170,5.722,171,5.722,172,5.722,173,4.857]],["keywords/16",[]],["title/17",[147,255.826,156,176.274,174,415.672]],["content/17",[1,0.936,11,2.473,12,2.054,14,2.453,19,2.639,21,6.151,73,2.453,74,2.137,86,3.415,89,3.401,91,5.601,115,4.633,123,3.401,127,4.278,128,4.278,147,6.583,148,6.583,152,4.278,156,4.238,175,5.04,176,5.04,177,3.776,178,5.04,179,5.04,180,5.04,181,5.04,182,5.04,183,4.633,184,5.04,185,5.04,186,6.39,187,5.04,188,5.04,189,5.04,190,5.04,191,5.04,192,5.04]],["keywords/17",[]],["title/18",[193,612.911]],["content/18",[]],["keywords/18",[]],["title/19",[194,612.911]],["content/19",[1,1.521,11,2.693,12,2.883,87,5.044,136,4.959,193,6.957,194,8.969,195,8.196,196,8.196,197,8.196,198,8.196,199,8.196,200,6.957,201,8.196,202,8.196]],["keywords/19",[]],["title/20",[123,356.059,203,527.617]],["content/20",[12,2.724,204,9.982,205,9.982,206,9.982,207,9.982,208,9.982,209,9.982]],["keywords/20",[]],["title/21",[56,185.166]],["content/21",[]],["keywords/21",[]],["title/22",[136,306.213]],["content/22",[]],["keywords/22",[]],["title/23",[93,378.122]],["content/23",[1,1.811,19,3.028,29,2.022,30,4.332,32,3.028,34,2.735,49,3.273,56,1.483,58,4.908,86,3.777,87,3.559,91,4.36,93,3.028,94,5.124,109,3.902,110,3.273,183,5.124,210,5.782,211,5.124,212,4.332,213,5.782,214,7.067,215,4.908,216,8.326,217,5.782,218,5.782,219,5.782,220,4.908,221,5.782,222,5.782,223,4.908,224,3.902,225,5.124,226,4.908,227,4.908,228,4.908]],["keywords/23",[]],["title/24",[26,268.951]],["content/24",[]],["keywords/24",[]],["title/25",[131,541.002]],["content/25",[1,1.821,12,1.998,29,2.561,56,2.516,67,4.942,68,4.942,83,3.563,87,4.507,91,5.138,93,3.835,95,5.486,110,4.145,111,5.486,115,4.507,131,5.486,155,4.145,211,6.039,229,7.323,230,7.323,231,9.812,232,7.323,233,6.216]],["keywords/25",[]],["title/26",[73,351.373]],["content/26",[1,1.534,14,2.784,24,4.857,25,5.49,27,5.577,28,2.996,29,2.001,33,2.596,34,1.88,39,5.577,40,4.287,44,3.239,45,2.996,46,4.287,53,6.191,61,3.239,62,3.522,73,4.021,86,2.596,87,3.522,99,5.577,102,4.287,109,3.861,112,2.784,117,2.996,129,4.857,136,3.504,156,2.427,183,3.522,234,3.522,235,4.857,236,4.857,237,5.722,238,5.722,239,5.722,240,4.287,241,5.722,242,5.722,243,5.722]],["keywords/26",[]],["title/27",[74,306.213]],["content/27",[1,2.126,14,3.3,29,2.371,31,5.271,61,3.838,62,4.173,68,4.576,74,4.511,94,4.173,156,4.857,225,4.173,236,5.756,244,5.732,245,6.021,246,6.781,247,5.756,248,6.781,249,5.756,250,6.781,251,5.756,252,6.781]],["keywords/27",[]],["title/28",[253,722.082]],["content/28",[1,1.774,14,3.426,26,2.623,28,3.687,29,2.462,34,3.14,61,3.985,62,4.334,64,5.004,81,4.334,83,3.426,92,4.752,112,4.65,114,4.334,117,3.687,122,3.687,225,4.334,234,4.334,244,4.334,245,5.409,254,7.041,255,5.977,256,7.041,257,7.16]],["keywords/28",[]],["title/29",[258,722.082]],["content/29",[1,1.729,14,3.3,26,2.526,28,4.877,29,2.371,34,3.495,61,3.838,62,4.173,64,4.877,74,2.875,81,4.173,83,3.3,92,4.576,112,3.3,117,3.551,122,4.877,224,4.576,225,4.173,244,4.173,245,5.271,255,5.756,257,7.97,259,6.781,260,6.781]],["keywords/29",[]],["title/30",[119,487.293]],["content/30",[1,1.97,10,3.046,11,2.44,12,2.432,16,3.046,17,3.708,26,1.843,34,2.44,56,2.286,59,3.34,78,3.708,83,3.614,86,3.369,92,3.34,101,3.708,104,6.678,109,3.34,110,2.801,111,3.708,112,3.614,114,4.57,115,3.046,118,4.82,119,7.162,120,3.708,122,2.592,148,3.046,155,2.801,233,4.201,251,4.201,261,2.801,262,4.201,263,6.303,264,4.201,265,4.201,266,4.201,267,2.592,268,3.708,269,4.201]],["keywords/30",[]],["title/31",[270,722.082]],["content/31",[]],["keywords/31",[]],["title/32",[26,268.951]],["content/32",[]],["keywords/32",[]],["title/33",[]],["content/33",[1,2.407,29,3,31,6.158,34,2.819,48,4.175,66,7.283,247,7.283,271,8.58,272,8.58,273,8.58,274,7.283]],["keywords/33",[]],["title/34",[81,444.406]],["content/34",[]],["keywords/34",[]],["title/35",[275,612.911]],["content/35",[1,2.414,11,1.664,12,0.833,22,1.879,32,1.599,33,4.344,34,1.664,45,3.957,48,1.486,56,1.299,70,1.728,74,1.295,91,1.599,118,4.876,136,4.06,137,3.117,156,2.753,183,1.879,211,1.879,212,2.287,224,2.06,240,6.771,257,3.795,262,2.591,267,1.599,274,2.591,275,2.591,276,3.053,277,6.492,278,6.492,279,5.065,280,3.053,281,3.053,282,3.053,283,3.053,284,3.053,285,1.879,286,1.879,287,3.053,288,3.053,289,2.06,290,3.053,291,3.418,292,7.556,293,5.065,294,5.065,295,6.492,296,5.065,297,3.053,298,3.053,299,5.065,300,3.053,301,3.053,302,3.053,303,3.053,304,3.053,305,3.053]],["keywords/35",[]],["title/36",[15,541.002]],["content/36",[1,2.213,10,3.074,11,2.456,12,2.04,15,3.742,16,3.074,17,3.742,20,3.37,26,3.338,33,2.266,34,1.641,52,4.239,55,3.742,56,2.732,59,5.046,64,2.615,104,5.602,110,2.827,112,2.43,114,3.074,116,4.239,117,2.615,118,4.842,119,5.046,120,3.742,155,4.232,245,2.827,261,2.827,263,4.239,265,4.239,266,4.239,267,2.615,268,3.742,269,4.239,306,4.994,307,4.994,308,4.994,309,4.994,310,3.742,311,4.994]],["keywords/36",[]],["title/37",[56,185.166]],["content/37",[]],["keywords/37",[]],["title/38",[93,378.122]],["content/38",[28,3.424,34,3.429,56,2.329,83,3.182,86,4.121,93,3.424,107,5.55,122,3.424,143,5.55,157,5.55,173,5.55,183,5.59,211,6.423,214,5.55,224,4.413,226,7.709,227,7.709,228,7.709,312,6.539,313,9.083,314,6.539,315,6.539,316,6.539,317,9.083]],["keywords/38",[]],["title/39",[136,223.746,137,324.723]],["content/39",[1,1.722,12,1.19,30,3.267,32,3.531,33,3.059,42,2.943,44,2.468,45,2.283,48,3.281,56,2.72,70,2.468,74,1.849,99,2.943,117,2.283,118,4.012,136,4.973,137,4.15,138,3.701,139,3.267,144,5.724,155,2.468,177,3.267,186,3.701,200,3.701,220,3.701,234,4.15,244,2.684,261,2.468,267,2.283,285,2.684,286,2.684,289,2.943,291,2.943,318,6.743,319,6.998,320,3.267,321,3.267,322,5.724,323,3.701,324,3.701,325,3.701,326,3.701,327,3.267,328,3.267,329,3.267,330,4.36,331,4.36,332,6.743,333,4.36]],["keywords/39",[]],["title/40",[74,306.213]],["content/40",[1,2.047,11,2.695,12,1.18,28,2.265,31,3.793,32,3.509,33,1.963,34,1.421,42,2.919,44,2.449,45,3.509,56,2.369,64,2.265,70,2.449,73,2.105,74,3.918,86,1.963,94,2.662,114,2.662,118,4.496,136,3.479,156,3.479,225,2.662,234,2.662,244,2.662,245,2.449,249,3.672,261,2.449,267,2.265,285,2.662,286,2.662,289,2.919,291,2.919,319,3.672,320,3.241,321,5.021,322,3.672,323,3.672,324,5.689,325,5.689,326,5.689,327,3.241,328,3.241,329,3.241,334,4.326,335,4.326,336,4.326,337,4.326,338,4.326,339,4.326,340,4.326]],["keywords/40",[]],["title/41",[73,351.373]],["content/41",[1,2.149,11,1.492,12,1.239,25,2.57,27,3.064,31,3.937,32,2.378,33,3.156,34,2.778,36,3.402,39,5.707,42,3.064,44,2.57,45,2.378,46,5.212,49,2.57,56,2.168,65,3.854,70,2.57,73,4.115,86,2.06,99,4.694,112,4.115,118,4.115,136,2.95,156,1.925,177,3.402,234,4.281,235,3.854,240,3.402,261,2.57,267,2.378,285,2.794,286,2.794,289,3.064,291,3.064,310,3.402,320,3.402,321,3.402,327,3.402,328,3.402,329,3.402,341,4.54,342,4.54,343,4.54,344,3.854,345,4.54,346,4.54]],["keywords/41",[]],["title/42",[19,378.122]],["content/42",[1,2.309,11,1.46,12,1.471,13,1.571,14,1.602,16,2.026,19,4.143,21,1.139,26,1.656,31,1.863,32,1.723,33,0.84,44,1.863,45,3.235,48,0.9,49,3.496,55,2.466,56,2.238,64,2.328,70,1.047,73,1.602,74,1.396,77,1.571,79,1.571,80,1.571,81,1.139,83,2.623,86,1.493,89,1.249,90,1.571,91,1.723,93,0.969,94,1.139,95,1.386,98,1.571,102,4.038,110,3.05,112,1.602,115,1.139,117,1.723,118,5.025,122,1.723,136,1.396,137,1.139,155,1.863,156,2.619,160,1.571,161,1.571,211,1.139,212,1.386,215,1.571,223,1.571,245,2.516,261,1.047,264,1.571,267,1.723,268,2.466,285,1.139,286,1.139,310,1.386,344,1.571,347,1.85,348,1.85,349,1.85,350,1.85,351,1.85,352,1.85,353,1.85,354,1.85,355,4.445,356,3.291,357,1.85,358,1.85,359,1.85,360,1.85,361,1.85,362,3.291,363,1.85,364,1.85,365,1.85,366,3.291,367,1.85,368,1.85,369,4.445,370,1.85,371,3.291,372,1.85,373,1.85,374,5.389,375,1.85,376,1.85,377,1.85,378,1.85,379,1.85,380,1.85,381,3.291,382,1.85,383,1.85,384,1.85,385,1.85,386,3.291,387,1.85,388,1.85,389,1.85,390,1.85,391,1.85,392,1.85,393,1.85,394,1.85,395,1.85,396,1.85,397,1.85,398,1.85,399,1.85,400,1.85,401,3.291,402,3.291,403,1.85,404,1.85]],["keywords/42",[]]],"invertedIndex":[["",{"_index":1,"title":{"1":{"position":[[0,3]]}},"content":{"1":{"position":[[302,1]]},"4":{"position":[[29,1],[226,3]]},"5":{"position":[[71,1],[73,1]]},"6":{"position":[[181,1],[189,2],[255,2]]},"12":{"position":[[90,1],[92,1],[94,2]]},"13":{"position":[[65,1],[67,1],[69,2],[72,1],[74,2],[359,1],[384,2]]},"17":{"position":[[570,1]]},"19":{"position":[[19,1]]},"23":{"position":[[34,1],[66,1],[272,1]]},"25":{"position":[[51,1],[53,2]]},"26":{"position":[[24,1],[407,3]]},"27":{"position":[[23,1],[25,2],[256,1],[265,2]]},"28":{"position":[[40,1],[42,2]]},"29":{"position":[[40,1],[42,2]]},"30":{"position":[[415,2],[535,1],[587,1],[632,1],[678,1]]},"33":{"position":[[44,1],[46,1],[55,1],[81,1],[83,2]]},"35":{"position":[[256,1],[301,1],[345,1],[380,1],[446,1],[468,1],[492,2],[597,1],[603,1],[605,1],[607,2],[625,1],[756,2],[795,2],[840,1],[842,1],[907,1],[1040,1],[1046,1],[1048,1],[1050,2],[1068,1],[1197,2],[1236,2],[1282,1],[1284,1],[1349,1]]},"36":{"position":[[139,2],[184,1],[192,2],[465,3],[486,1],[538,1],[583,1],[629,1]]},"39":{"position":[[154,1],[198,1],[233,1],[308,1]]},"40":{"position":[[189,1],[233,1],[268,1],[343,1],[592,1],[773,1],[782,1]]},"41":{"position":[[185,1],[229,1],[264,1],[339,1],[742,1],[751,1],[753,1],[762,1]]},"42":{"position":[[419,1],[463,1],[498,1],[550,1],[552,1],[562,1],[592,1],[615,1],[672,1],[674,1],[686,1],[710,1],[763,1],[765,1],[767,1],[850,1],[958,1],[997,1],[1017,1],[1051,1],[1067,1],[1163,1],[1252,1],[1284,1],[1331,1],[1357,1],[1381,1],[1426,1],[1473,1],[1498,1],[1579,1],[1581,2],[1917,1],[1940,2],[2105,1],[2159,1]]}},"keywords":{}}],["_",{"_index":386,"title":{},"content":{"42":{"position":[[1588,2],[2422,2]]}},"keywords":{}}],["__iter",{"_index":242,"title":{},"content":{"26":{"position":[[342,9]]}},"keywords":{}}],["accept",{"_index":106,"title":{},"content":{"12":{"position":[[543,10]]}},"keywords":{}}],["access",{"_index":396,"title":{},"content":{"42":{"position":[[2014,6]]}},"keywords":{}}],["ad",{"_index":80,"title":{},"content":{"12":{"position":[[124,6]]},"42":{"position":[[1885,5]]}},"keywords":{}}],["adapt",{"_index":348,"title":{},"content":{"42":{"position":[[25,7]]}},"keywords":{}}],["addincomingmiddlewar",{"_index":253,"title":{"28":{"position":[[0,22]]}},"content":{},"keywords":{}}],["addoutgoingmiddlewar",{"_index":258,"title":{"29":{"position":[[0,22]]}},"content":{},"keywords":{}}],["aftman",{"_index":202,"title":{},"content":{"19":{"position":[[195,7]]}},"keywords":{}}],["allow",{"_index":109,"title":{},"content":{"13":{"position":[[91,6]]},"23":{"position":[[244,7]]},"26":{"position":[[38,6]]},"30":{"position":[[27,5]]}},"keywords":{}}],["alphabet",{"_index":292,"title":{},"content":{"35":{"position":[[616,8],[867,10],[1059,8],[1309,10]]}},"keywords":{}}],["alway",{"_index":317,"title":{},"content":{"38":{"position":[[264,6],[333,6]]}},"keywords":{}}],["amount",{"_index":217,"title":{},"content":{"23":{"position":[[234,6]]}},"keywords":{}}],["amp",{"_index":143,"title":{},"content":{"15":{"position":[[410,5]]},"38":{"position":[[113,5]]}},"keywords":{}}],["annot",{"_index":319,"title":{},"content":{"39":{"position":[[91,10],[352,9],[539,9]]},"40":{"position":[[387,9]]}},"keywords":{}}],["anoth",{"_index":20,"title":{},"content":{"1":{"position":[[255,7]]},"13":{"position":[[211,7]]},"16":{"position":[[350,7]]},"36":{"position":[[231,7]]}},"keywords":{}}],["api",{"_index":132,"title":{},"content":{"15":{"position":[[144,3]]}},"keywords":{}}],["approach",{"_index":162,"title":{},"content":{"16":{"position":[[143,8]]}},"keywords":{}}],["architectur",{"_index":17,"title":{},"content":{"1":{"position":[[141,13]]},"30":{"position":[[68,12]]},"36":{"position":[[69,12]]}},"keywords":{}}],["argument",{"_index":327,"title":{},"content":{"39":{"position":[[425,9]]},"40":{"position":[[460,9]]},"41":{"position":[[782,10]]}},"keywords":{}}],["around",{"_index":125,"title":{},"content":{"15":{"position":[[75,6]]}},"keywords":{}}],["auto",{"_index":144,"title":{},"content":{"15":{"position":[[416,4]]},"39":{"position":[[55,4],[705,4]]}},"keywords":{}}],["automat",{"_index":198,"title":{},"content":{"19":{"position":[[104,14]]}},"keywords":{}}],["base",{"_index":47,"title":{},"content":{"5":{"position":[[135,5]]}},"keywords":{}}],["be",{"_index":353,"title":{},"content":{"42":{"position":[[173,5]]}},"keywords":{}}],["befor",{"_index":257,"title":{},"content":{"28":{"position":[[91,6],[260,6]]},"29":{"position":[[91,6],[158,6],[268,6]]},"35":{"position":[[518,6],[963,6]]}},"keywords":{}}],["begin",{"_index":393,"title":{},"content":{"42":{"position":[[1805,5]]}},"keywords":{}}],["behavior",{"_index":311,"title":{},"content":{"36":{"position":[[427,8]]}},"keywords":{}}],["below",{"_index":309,"title":{},"content":{"36":{"position":[[371,5]]}},"keywords":{}}],["best",{"_index":8,"title":{},"content":{"1":{"position":[[25,4]]}},"keywords":{}}],["beta.3"",{"_index":209,"title":{},"content":{"20":{"position":[[88,12]]}},"keywords":{}}],["between",{"_index":84,"title":{},"content":{"12":{"position":[[197,7]]}},"keywords":{}}],["bevi",{"_index":169,"title":{},"content":{"16":{"position":[[328,4]]}},"keywords":{}}],["bevy_renet",{"_index":167,"title":{},"content":{"16":{"position":[[280,11]]}},"keywords":{}}],["bool",{"_index":291,"title":{},"content":{"35":{"position":[[577,5],[1020,5]]},"39":{"position":[[464,4]]},"40":{"position":[[499,4]]},"41":{"position":[[380,4]]}},"keywords":{}}],["boolean",{"_index":330,"title":{},"content":{"39":{"position":[[580,8]]}},"keywords":{}}],["boolean>",{"_index":321,"title":{},"content":{"39":{"position":[[296,11]]},"40":{"position":[[331,11],[580,11]]},"41":{"position":[[327,11]]}},"keywords":{}}],["bridgenet2",{"_index":171,"title":{},"content":{"16":{"position":[[388,11]]}},"keywords":{}}],["call",{"_index":112,"title":{},"content":{"13":{"position":[[236,4]]},"26":{"position":[[337,4]]},"28":{"position":[[221,7],[267,7]]},"29":{"position":[[229,7]]},"30":{"position":[[131,4],[467,4]]},"36":{"position":[[262,4]]},"41":{"position":[[434,4],[604,6],[654,7]]},"42":{"position":[[2251,4],[2385,4]]}},"keywords":{}}],["case",{"_index":103,"title":{},"content":{"12":{"position":[[465,5],[532,4]]}},"keywords":{}}],["certain",{"_index":129,"title":{},"content":{"15":{"position":[[113,7]]},"26":{"position":[[200,7]]}},"keywords":{}}],["chain",{"_index":236,"title":{},"content":{"26":{"position":[[126,8]]},"27":{"position":[[220,8]]}},"keywords":{}}],["chang",{"_index":107,"title":{},"content":{"12":{"position":[[557,6]]},"38":{"position":[[146,6]]}},"keywords":{}}],["channel",{"_index":211,"title":{},"content":{"23":{"position":[[36,8],[370,7]]},"25":{"position":[[102,8],[152,7]]},"35":{"position":[[460,7]]},"38":{"position":[[94,9],[137,8],[201,7]]},"42":{"position":[[554,7]]}},"keywords":{}}],["channelev",{"_index":314,"title":{},"content":{"38":{"position":[[52,12]]}},"keywords":{}}],["check",{"_index":137,"title":{"39":{"position":[[5,9]]}},"content":{"15":{"position":[[286,8],[401,8]]},"35":{"position":[[663,5],[1106,5]]},"39":{"position":[[19,7],[730,8]]},"42":{"position":[[11,5]]}},"keywords":{}}],["checkout",{"_index":23,"title":{},"content":{"1":{"position":[[289,8]]}},"keywords":{}}],["child",{"_index":387,"title":{},"content":{"42":{"position":[[1591,5]]}},"keywords":{}}],["child:isa("modulescript"",{"_index":389,"title":{},"content":{"42":{"position":[[1635,35]]}},"keywords":{}}],["choic",{"_index":153,"title":{},"content":{"15":{"position":[[655,7]]},"16":{"position":[[90,7]]}},"keywords":{}}],["client",{"_index":245,"title":{},"content":{"27":{"position":[[46,7],[158,8],[189,7]]},"28":{"position":[[156,6],[296,7]]},"29":{"position":[[198,6],[279,6]]},"36":{"position":[[363,7]]},"40":{"position":[[712,7]]},"42":{"position":[[2408,6],[2502,6],[2568,6]]}},"keywords":{}}],["code",{"_index":111,"title":{},"content":{"13":{"position":[[124,4]]},"25":{"position":[[242,4]]},"30":{"position":[[291,4]]}},"keywords":{}}],["come",{"_index":221,"title":{},"content":{"23":{"position":[[345,4]]}},"keywords":{}}],["commonli",{"_index":176,"title":{},"content":{"17":{"position":[[70,8]]}},"keywords":{}}],["complet",{"_index":318,"title":{},"content":{"39":{"position":[[60,10],[710,10]]}},"keywords":{}}],["completionsimpl",{"_index":145,"title":{},"content":{"15":{"position":[[421,16]]}},"keywords":{}}],["compliment",{"_index":333,"title":{},"content":{"39":{"position":[[823,10]]}},"keywords":{}}],["compon",{"_index":366,"title":{},"content":{"42":{"position":[[715,9],[789,10]]}},"keywords":{}}],["componentinstance<t>",{"_index":368,"title":{},"content":{"42":{"position":[[736,26]]}},"keywords":{}}],["compress",{"_index":275,"title":{"35":{"position":[[0,12]]}},"content":{"35":{"position":[[209,8]]}},"keywords":{}}],["compress/decompress",{"_index":276,"title":{},"content":{"35":{"position":[[3,19]]}},"keywords":{}}],["configur",{"_index":93,"title":{"23":{"position":[[0,14]]},"38":{"position":[[0,14]]}},"content":{"12":{"position":[[269,14]]},"23":{"position":[[20,13]]},"25":{"position":[[35,15]]},"38":{"position":[[29,9]]},"42":{"position":[[1867,13]]}},"keywords":{}}],["construct",{"_index":4,"title":{"1":{"position":[[23,14]]}},"content":{},"keywords":{}}],["crate",{"_index":168,"title":{},"content":{"16":{"position":[[305,5]]}},"keywords":{}}],["creat",{"_index":155,"title":{},"content":{"15":{"position":[[678,8]]},"25":{"position":[[56,7]]},"30":{"position":[[365,6]]},"36":{"position":[[94,8],[400,8]]},"39":{"position":[[107,8]]},"42":{"position":[[309,6],[1106,6]]}},"keywords":{}}],["createhook",{"_index":108,"title":{"13":{"position":[[0,11]]}},"content":{},"keywords":{}}],["custom",{"_index":52,"title":{},"content":{"6":{"position":[[77,6]]},"36":{"position":[[409,6]]}},"keywords":{}}],["data",{"_index":156,"title":{"16":{"position":[[0,4]]},"17":{"position":[[11,4]]}},"content":{"16":{"position":[[131,4]]},"17":{"position":[[0,4],[204,4],[321,4],[417,4]]},"26":{"position":[[473,4]]},"27":{"position":[[34,4],[146,4],[212,4],[305,4]]},"35":{"position":[[28,5],[102,5],[237,5]]},"40":{"position":[[55,4],[81,4],[700,4]]},"41":{"position":[[149,7]]},"42":{"position":[[730,5],[2296,7],[2425,7],[2488,4],[2558,4]]}},"keywords":{}}],["declar",{"_index":359,"title":{},"content":{"42":{"position":[[376,7]]}},"keywords":{}}],["decompress",{"_index":283,"title":{},"content":{"35":{"position":[[221,10]]}},"keywords":{}}],["default",{"_index":94,"title":{},"content":{"12":{"position":[[291,8]]},"23":{"position":[[93,8],[185,8]]},"27":{"position":[[112,8]]},"40":{"position":[[654,8]]},"42":{"position":[[1909,7]]}},"keywords":{}}],["defaultconfigur",{"_index":360,"title":{},"content":{"42":{"position":[[529,20]]}},"keywords":{}}],["depend",{"_index":195,"title":{},"content":{"19":{"position":[[0,14]]}},"keywords":{}}],["descriptionreli",{"_index":315,"title":{},"content":{"38":{"position":[[209,19]]}},"keywords":{}}],["deseri",{"_index":279,"title":{},"content":{"35":{"position":[[85,11],[498,11]]}},"keywords":{}}],["design",{"_index":148,"title":{"16":{"position":[[15,7]]}},"content":{"15":{"position":[[472,6],[648,6]]},"16":{"position":[[83,6],[160,7],[193,6]]},"17":{"position":[[12,6],[40,7],[140,6],[216,7],[237,6]]},"30":{"position":[[346,8]]}},"keywords":{}}],["detail",{"_index":51,"title":{},"content":{"6":{"position":[[47,8]]},"15":{"position":[[636,7]]}},"keywords":{}}],["determin",{"_index":281,"title":{},"content":{"35":{"position":[[188,9]]}},"keywords":{}}],["differ",{"_index":105,"title":{},"content":{"12":{"position":[[506,9],[572,9]]}},"keywords":{}}],["difficult",{"_index":184,"title":{},"content":{"17":{"position":[[284,9]]}},"keywords":{}}],["don't",{"_index":18,"title":{},"content":{"1":{"position":[[160,5]]}},"keywords":{}}],["driven",{"_index":147,"title":{"16":{"position":[[5,6]]},"17":{"position":[[16,8]]}},"content":{"15":{"position":[[465,6]]},"16":{"position":[[136,6]]},"17":{"position":[[5,6],[33,6],[133,6],[209,6],[230,6]]}},"keywords":{}}],["drop",{"_index":228,"title":{},"content":{"23":{"position":[[473,7]]},"38":{"position":[[247,8],[306,7]]}},"keywords":{}}],["due",{"_index":238,"title":{},"content":{"26":{"position":[[193,3]]}},"keywords":{}}],["each",{"_index":85,"title":{},"content":{"12":{"position":[[205,4]]},"13":{"position":[[257,4]]}},"keywords":{}}],["ec",{"_index":21,"title":{},"content":{"1":{"position":[[263,3],[311,3]]},"6":{"position":[[138,3]]},"16":{"position":[[124,4],[333,3],[471,3]]},"17":{"position":[[186,3],[475,4],[509,3],[576,4]]},"42":{"position":[[209,4]]}},"keywords":{}}],["ecr",{"_index":0,"title":{"0":{"position":[[0,3]]}},"content":{"1":{"position":[[75,4],[298,3]]}},"keywords":{}}],["enabl",{"_index":332,"title":{},"content":{"39":{"position":[[698,6],[799,6]]}},"keywords":{}}],["encourag",{"_index":186,"title":{},"content":{"17":{"position":[[384,10],[491,10]]},"39":{"position":[[784,10]]}},"keywords":{}}],["end",{"_index":45,"title":{},"content":{"4":{"position":[[281,3]]},"26":{"position":[[456,3]]},"35":{"position":[[829,3],[937,4],[1271,3],[1379,4]]},"39":{"position":[[505,3]]},"40":{"position":[[174,4],[540,3]]},"41":{"position":[[421,3]]},"42":{"position":[[1714,3],[1718,3],[2347,3],[2476,3],[2629,3]]}},"keywords":{}}],["ensur",{"_index":82,"title":{},"content":{"12":{"position":[[168,7]]}},"keywords":{}}],["entiti",{"_index":363,"title":{},"content":{"42":{"position":[[644,8]]}},"keywords":{}}],["entityid",{"_index":365,"title":{},"content":{"42":{"position":[[691,8]]}},"keywords":{}}],["entitypayload",{"_index":364,"title":{},"content":{"42":{"position":[[658,13]]}},"keywords":{}}],["evaera",{"_index":192,"title":{},"content":{"17":{"position":[[584,7]]}},"keywords":{}}],["event",{"_index":91,"title":{},"content":{"12":{"position":[[248,5],[356,5],[516,7],[582,6]]},"13":{"position":[[141,7]]},"17":{"position":[[27,5],[127,5],[224,5],[334,6],[373,7]]},"23":{"position":[[111,6],[131,5]]},"25":{"position":[[115,6],[259,6]]},"35":{"position":[[169,5]]},"42":{"position":[[586,5],[1838,9]]}},"keywords":{}}],["eventslack",{"_index":135,"title":{},"content":{"15":{"position":[[267,10]]}},"keywords":{}}],["exampl",{"_index":117,"title":{},"content":{"13":{"position":[[303,8]]},"26":{"position":[[383,8]]},"28":{"position":[[122,8]]},"29":{"position":[[134,8]]},"36":{"position":[[389,7]]},"39":{"position":[[517,8]]},"42":{"position":[[55,7],[122,7]]}},"keywords":{}}],["examplesystem(world",{"_index":400,"title":{},"content":{"42":{"position":[[2196,20]]}},"keywords":{}}],["expect",{"_index":322,"title":{},"content":{"39":{"position":[[335,6],[668,6]]},"40":{"position":[[370,6]]}},"keywords":{}}],["export",{"_index":197,"title":{},"content":{"19":{"position":[[91,6]]}},"keywords":{}}],["featur",{"_index":220,"title":{},"content":{"23":{"position":[[332,7]]},"39":{"position":[[840,9]]}},"keywords":{}}],["few",{"_index":312,"title":{},"content":{"38":{"position":[[12,3]]}},"keywords":{}}],["filter",{"_index":46,"title":{},"content":{"5":{"position":[[64,6],[87,7]]},"26":{"position":[[105,6]]},"41":{"position":[[524,6],[632,6]]}},"keywords":{}}],["final",{"_index":395,"title":{},"content":{"42":{"position":[[1943,8]]}},"keywords":{}}],["find",{"_index":204,"title":{},"content":{"20":{"position":[[8,4]]}},"keywords":{}}],["firstli",{"_index":354,"title":{},"content":{"42":{"position":[[300,8]]}},"keywords":{}}],["fix",{"_index":241,"title":{},"content":{"26":{"position":[[327,3]]}},"keywords":{}}],["frame",{"_index":86,"title":{},"content":{"12":{"position":[[210,6]]},"17":{"position":[[443,5],[452,6]]},"23":{"position":[[266,5],[430,5]]},"26":{"position":[[90,6]]},"30":{"position":[[320,5],[329,5]]},"38":{"position":[[318,6],[352,6]]},"40":{"position":[[109,6]]},"41":{"position":[[514,5]]},"42":{"position":[[2261,5],[2395,5]]}},"keywords":{}}],["function",{"_index":26,"title":{"3":{"position":[[0,10]]},"11":{"position":[[0,10]]},"24":{"position":[[0,10]]},"32":{"position":[[0,10]]}},"content":{"6":{"position":[[192,8]]},"13":{"position":[[82,8],[190,8],[219,8]]},"16":{"position":[[430,13]]},"28":{"position":[[52,8]]},"29":{"position":[[52,8]]},"30":{"position":[[108,9]]},"36":{"position":[[195,9],[210,8],[239,8]]},"42":{"position":[[236,8],[1169,10],[2187,8]]}},"keywords":{}}],["futur",{"_index":222,"title":{},"content":{"23":{"position":[[353,6]]}},"keywords":{}}],["game",{"_index":16,"title":{},"content":{"1":{"position":[[136,4]]},"16":{"position":[[155,4]]},"30":{"position":[[63,4]]},"36":{"position":[[64,4]]},"42":{"position":[[63,4],[99,5]]}},"keywords":{}}],["game:getservice("runservice"",{"_index":266,"title":{},"content":{"30":{"position":[[537,39]]},"36":{"position":[[488,39]]}},"keywords":{}}],["gener",{"_index":181,"title":{},"content":{"17":{"position":[[194,9]]}},"keywords":{}}],["get",{"_index":150,"title":{},"content":{"15":{"position":[[548,7]]}},"keywords":{}}],["go",{"_index":174,"title":{"17":{"position":[[4,2]]}},"content":{},"keywords":{}}],["handl",{"_index":72,"title":{},"content":{"10":{"position":[[72,8]]}},"keywords":{}}],["heartbeat",{"_index":101,"title":{},"content":{"12":{"position":[[427,10]]},"13":{"position":[[337,10]]},"30":{"position":[[234,9]]}},"keywords":{}}],["here",{"_index":394,"title":{},"content":{"42":{"position":[[1891,4]]}},"keywords":{}}],["hook",{"_index":119,"title":{"30":{"position":[[0,5]]}},"content":{"13":{"position":[[354,4]]},"30":{"position":[[0,5],[21,5],[214,5],[374,5],[673,4]]},"36":{"position":[[105,4],[624,4]]}},"keywords":{}}],["hooksdata",{"_index":146,"title":{},"content":{"15":{"position":[[455,9]]}},"keywords":{}}],["ident",{"_index":307,"title":{},"content":{"36":{"position":[[151,9]]}},"keywords":{}}],["identifi",{"_index":68,"title":{},"content":{"9":{"position":[[54,10],[77,8]]},"10":{"position":[[38,10]]},"25":{"position":[[90,11]]},"27":{"position":[[97,11]]}},"keywords":{}}],["implement",{"_index":58,"title":{},"content":{"6":{"position":[[216,14]]},"23":{"position":[[314,12]]}},"keywords":{}}],["incom",{"_index":256,"title":{},"content":{"28":{"position":[[74,8]]}},"keywords":{}}],["index",{"_index":96,"title":{},"content":{"12":{"position":[[312,5]]}},"keywords":{}}],["influenc",{"_index":163,"title":{},"content":{"16":{"position":[[178,10]]}},"keywords":{}}],["inform",{"_index":62,"title":{},"content":{"6":{"position":[[279,11]]},"26":{"position":[[487,12]]},"27":{"position":[[319,12]]},"28":{"position":[[328,12]]},"29":{"position":[[336,12]]}},"keywords":{}}],["init.client.luau",{"_index":379,"title":{},"content":{"42":{"position":[[1254,16]]}},"keywords":{}}],["init.server.luau",{"_index":378,"title":{},"content":{"42":{"position":[[1235,16]]}},"keywords":{}}],["initi",{"_index":79,"title":{},"content":{"12":{"position":[[97,11]]},"42":{"position":[[179,9]]}},"keywords":{}}],["inspir",{"_index":166,"title":{},"content":{"16":{"position":[[263,11]]}},"keywords":{}}],["instal",{"_index":193,"title":{"18":{"position":[[0,13]]}},"content":{"19":{"position":[[162,7]]}},"keywords":{}}],["integr",{"_index":10,"title":{},"content":{"1":{"position":[[44,11],[109,11]]},"6":{"position":[[106,9]]},"15":{"position":[[438,11]]},"30":{"position":[[40,9]]},"36":{"position":[[36,9]]}},"keywords":{}}],["intellisens",{"_index":138,"title":{},"content":{"15":{"position":[[299,12]]},"39":{"position":[[38,12]]}},"keywords":{}}],["interfac",{"_index":210,"title":{},"content":{"23":{"position":[[10,9]]}},"keywords":{}}],["intern",{"_index":60,"title":{},"content":{"6":{"position":[[258,11]]}},"keywords":{}}],["introduct",{"_index":121,"title":{"14":{"position":[[0,12]]}},"content":{},"keywords":{}}],["invoc",{"_index":218,"title":{},"content":{"23":{"position":[[252,11]]}},"keywords":{}}],["issu",{"_index":130,"title":{},"content":{"15":{"position":[[121,6],[186,6]]}},"keywords":{}}],["it'",{"_index":115,"title":{},"content":{"13":{"position":[[280,4]]},"17":{"position":[[151,4],[486,4]]},"25":{"position":[[188,4]]},"30":{"position":[[179,4]]},"42":{"position":[[79,4]]}},"keywords":{}}],["iter",{"_index":27,"title":{"4":{"position":[[0,9]]}},"content":{"4":{"position":[[64,9]]},"26":{"position":[[49,9],[247,9]]},"41":{"position":[[105,8]]}},"keywords":{}}],["keep",{"_index":151,"title":{},"content":{"15":{"position":[[589,4]]}},"keywords":{}}],["key",{"_index":160,"title":{},"content":{"16":{"position":[[79,3]]},"42":{"position":[[1848,3]]}},"keywords":{}}],["know",{"_index":185,"title":{},"content":{"17":{"position":[[297,4]]}},"keywords":{}}],["larg",{"_index":164,"title":{},"content":{"16":{"position":[[215,7]]}},"keywords":{}}],["learn",{"_index":7,"title":{},"content":{"1":{"position":[[12,8]]},"15":{"position":[[487,5],[605,5]]}},"keywords":{}}],["librari",{"_index":22,"title":{},"content":{"1":{"position":[[267,8],[315,8]]},"6":{"position":[[125,7]]},"15":{"position":[[20,7],[56,7],[198,7]]},"16":{"position":[[51,9],[207,7],[369,7],[457,9]]},"35":{"position":[[48,7]]}},"keywords":{}}],["limit",{"_index":239,"title":{},"content":{"26":{"position":[[208,11]]}},"keywords":{}}],["load",{"_index":373,"title":{},"content":{"42":{"position":[[912,6]]}},"keywords":{}}],["local",{"_index":118,"title":{},"content":{"13":{"position":[[348,5]]},"30":{"position":[[518,5],[577,5],[619,5],[667,5]]},"35":{"position":[[243,5],[291,5],[333,5],[405,5],[583,5],[610,5],[1026,5],[1053,5]]},"36":{"position":[[469,5],[528,5],[570,5],[618,5]]},"39":{"position":[[144,5],[186,5],[258,5]]},"40":{"position":[[179,5],[221,5],[293,5],[544,5]]},"41":{"position":[[175,5],[217,5],[289,5]]},"42":{"position":[[409,5],[451,5],[523,5],[800,5],[919,5],[1271,5],[1319,5],[1346,5],[1371,5],[1413,5],[1461,5],[1487,5],[1565,5],[2092,5],[2140,5],[2181,5]]}},"keywords":{}}],["loop",{"_index":49,"title":{"6":{"position":[[0,4]]}},"content":{"6":{"position":[[13,4],[27,5],[84,4]]},"12":{"position":[[21,5],[27,5],[44,4],[157,5]]},"23":{"position":[[177,4]]},"41":{"position":[[169,5]]},"42":{"position":[[294,5],[1125,5],[1352,4],[1493,4],[1815,4]]}},"keywords":{}}],["loop.new(world",{"_index":385,"title":{},"content":{"42":{"position":[[1500,15]]}},"keywords":{}}],["loop:begin",{"_index":98,"title":{},"content":{"12":{"position":[[370,12]]},"42":{"position":[[1896,12]]}},"keywords":{}}],["loop:schedulesystems(system",{"_index":392,"title":{},"content":{"42":{"position":[[1722,29]]}},"keywords":{}}],["lt;/>",{"_index":29,"title":{},"content":{"4":{"position":[[0,9]]},"5":{"position":[[0,9]]},"9":{"position":[[0,9]]},"10":{"position":[[0,9]]},"12":{"position":[[0,9]]},"13":{"position":[[0,9]]},"23":{"position":[[0,9]]},"25":{"position":[[0,9]]},"26":{"position":[[0,9]]},"27":{"position":[[0,9]]},"28":{"position":[[0,9]]},"29":{"position":[[0,9]]},"33":{"position":[[0,9]]}},"keywords":{}}],["luau",{"_index":24,"title":{},"content":{"1":{"position":[[306,4]]},"26":{"position":[[229,4]]}},"keywords":{}}],["luautypescript",{"_index":261,"title":{},"content":{"30":{"position":[[6,14]]},"36":{"position":[[13,14]]},"39":{"position":[[129,14]]},"40":{"position":[[0,14]]},"41":{"position":[[0,14]]},"42":{"position":[[158,14]]}},"keywords":{}}],["made",{"_index":161,"title":{},"content":{"16":{"position":[[106,4]]},"42":{"position":[[189,4]]}},"keywords":{}}],["make",{"_index":89,"title":{},"content":{"12":{"position":[[229,4]]},"16":{"position":[[227,5]]},"17":{"position":[[275,5]]},"42":{"position":[[1824,4]]}},"keywords":{}}],["manner",{"_index":187,"title":{},"content":{"17":{"position":[[436,6]]}},"keywords":{}}],["match",{"_index":37,"title":{},"content":{"4":{"position":[[152,5]]}},"keywords":{}}],["matter",{"_index":19,"title":{"42":{"position":[[0,6]]}},"content":{"1":{"position":[[170,7],[199,6]]},"6":{"position":[[20,6],[153,7]]},"12":{"position":[[37,6],[150,6]]},"17":{"position":[[563,6]]},"23":{"position":[[170,6]]},"42":{"position":[[0,6],[48,6],[202,6],[287,6],[782,6],[1118,6],[1277,6],[1957,6]]}},"keywords":{}}],["matter'",{"_index":377,"title":{},"content":{"42":{"position":[[1214,8]]}},"keywords":{}}],["matter.loop",{"_index":383,"title":{},"content":{"42":{"position":[[1359,11]]}},"keywords":{}}],["matter.world",{"_index":382,"title":{},"content":{"42":{"position":[[1333,12]]}},"keywords":{}}],["matterrepl",{"_index":369,"title":{},"content":{"42":{"position":[[806,18],[999,17],[1019,18]]}},"keywords":{}}],["mean",{"_index":331,"title":{},"content":{"39":{"position":[[594,5]]}},"keywords":{}}],["meant",{"_index":100,"title":{},"content":{"12":{"position":[[407,5]]}},"keywords":{}}],["method",{"_index":99,"title":{},"content":{"12":{"position":[[383,7]]},"26":{"position":[[158,6],[180,7]]},"39":{"position":[[609,7]]},"41":{"position":[[449,7],[593,6]]}},"keywords":{}}],["middlewar",{"_index":81,"title":{"34":{"position":[[0,10]]}},"content":{"12":{"position":[[131,10]]},"28":{"position":[[308,10]]},"29":{"position":[[316,10]]},"42":{"position":[[1223,11]]}},"keywords":{}}],["middlewarestrict",{"_index":142,"title":{},"content":{"15":{"position":[[379,16]]}},"keywords":{}}],["modifi",{"_index":272,"title":{},"content":{"33":{"position":[[86,8]]}},"keywords":{}}],["modulescript",{"_index":356,"title":{},"content":{"42":{"position":[[330,12],[1998,12]]}},"keywords":{}}],["more",{"_index":61,"title":{},"content":{"6":{"position":[[274,4]]},"15":{"position":[[493,4],[611,4]]},"26":{"position":[[482,4]]},"27":{"position":[[314,4]]},"28":{"position":[[323,4]]},"29":{"position":[[331,4]]}},"keywords":{}}],["name",{"_index":367,"title":{},"content":{"42":{"position":[[725,4]]}},"keywords":{}}],["net",{"_index":12,"title":{"7":{"position":[[0,3]]}},"content":{"1":{"position":[[66,3],[121,3],[247,3]]},"6":{"position":[[121,3],[251,3]]},"13":{"position":[[34,5],[109,3]]},"15":{"position":[[0,3],[342,3],[508,3],[687,4]]},"16":{"position":[[25,3],[98,3],[400,3]]},"17":{"position":[[356,3],[518,4]]},"19":{"position":[[15,3],[157,4]]},"20":{"position":[[13,3]]},"25":{"position":[[227,3]]},"30":{"position":[[50,3],[338,3],[583,3]]},"35":{"position":[[297,3]]},"36":{"position":[[46,3],[534,3]]},"39":{"position":[[150,3]]},"40":{"position":[[185,3]]},"41":{"position":[[181,3]]},"42":{"position":[[214,3],[415,3],[1165,3],[1377,3]]}},"keywords":{}}],["net<boolean>",{"_index":375,"title":{},"content":{"42":{"position":[[939,18]]}},"keywords":{}}],["net<entitypayload>",{"_index":370,"title":{},"content":{"42":{"position":[[825,24]]}},"keywords":{}}],["net<numb",{"_index":337,"title":{},"content":{"40":{"position":[[557,14]]}},"keywords":{}}],["net<u...>",{"_index":302,"title":{},"content":{"35":{"position":[[1168,15]]}},"keywords":{}}],["net'",{"_index":350,"title":{},"content":{"42":{"position":[[116,5]]}},"keywords":{}}],["net.createhook",{"_index":59,"title":{},"content":{"6":{"position":[[234,16],[304,15]]},"13":{"position":[[10,15],[361,16]]},"30":{"position":[[392,16]]},"36":{"position":[[116,16],[442,16]]}},"keywords":{}}],["net.createhook(rout",{"_index":269,"title":{},"content":{"30":{"position":[[680,22]]},"36":{"position":[[631,22]]}},"keywords":{}}],["net.new",{"_index":338,"title":{},"content":{"40":{"position":[[594,9]]}},"keywords":{}}],["net.new(defaultconfigur",{"_index":371,"title":{},"content":{"42":{"position":[[852,29],[960,29]]}},"keywords":{}}],["net.rout",{"_index":70,"title":{},"content":{"10":{"position":[[10,10]]},"35":{"position":[[347,9]]},"39":{"position":[[200,9]]},"40":{"position":[[235,9]]},"41":{"position":[[231,9]]},"42":{"position":[[465,9]]}},"keywords":{}}],["net.route<u...>",{"_index":286,"title":{},"content":{"35":{"position":[[382,22]]},"39":{"position":[[235,22]]},"40":{"position":[[270,22]]},"41":{"position":[[266,22]]},"42":{"position":[[500,22]]}},"keywords":{}}],["net.serv",{"_index":65,"title":{},"content":{"9":{"position":[[10,11]]},"41":{"position":[[764,10]]}},"keywords":{}}],["net.start",{"_index":77,"title":{},"content":{"12":{"position":[[10,10]]},"42":{"position":[[1786,15]]}},"keywords":{}}],["net.start(loop",{"_index":55,"title":{},"content":{"6":{"position":[[165,15]]},"36":{"position":[[168,15]]},"42":{"position":[[1147,15],[1541,15]]}},"keywords":{}}],["net:query():from(...send",{"_index":43,"title":{},"content":{"4":{"position":[[233,28]]}},"keywords":{}}],["network",{"_index":122,"title":{},"content":{"15":{"position":[[9,10],[152,10],[256,10]]},"16":{"position":[[40,10],[294,10],[358,10]]},"28":{"position":[[206,8]]},"29":{"position":[[121,8],[214,8]]},"30":{"position":[[280,10]]},"38":{"position":[[192,8]]},"42":{"position":[[2240,10],[2374,10]]}},"keywords":{}}],["never",{"_index":316,"title":{},"content":{"38":{"position":[[241,5]]}},"keywords":{}}],["new",{"_index":131,"title":{"25":{"position":[[0,4]]}},"content":{"15":{"position":[[140,3]]},"25":{"position":[[66,3]]}},"keywords":{}}],["next",{"_index":335,"title":{},"content":{"40":{"position":[[104,4]]}},"keywords":{}}],["note",{"_index":87,"title":{},"content":{"12":{"position":[[217,4]]},"19":{"position":[[70,5]]},"23":{"position":[[275,4]]},"25":{"position":[[122,4]]},"26":{"position":[[188,4]]}},"keywords":{}}],["now",{"_index":13,"title":{},"content":{"1":{"position":[[84,3]]},"42":{"position":[[1073,3]]}},"keywords":{}}],["npm",{"_index":206,"title":{},"content":{"20":{"position":[[37,4]]}},"keywords":{}}],["num",{"_index":328,"title":{},"content":{"39":{"position":[[454,4]]},"40":{"position":[[489,4]]},"41":{"position":[[370,4]]}},"keywords":{}}],["number",{"_index":30,"title":{},"content":{"4":{"position":[[14,7]]},"23":{"position":[[225,6]]},"39":{"position":[[564,7]]}},"keywords":{}}],["number>",{"_index":288,"title":{},"content":{"35":{"position":[[435,10]]}},"keywords":{}}],["object",{"_index":53,"title":{},"content":{"6":{"position":[[89,6]]},"10":{"position":[[49,6]]},"26":{"position":[[278,6],[371,7]]}},"keywords":{}}],["on",{"_index":157,"title":{},"content":{"16":{"position":[[0,3]]},"38":{"position":[[83,3]]}},"keywords":{}}],["one(",{"_index":273,"title":{},"content":{"33":{"position":[[131,6]]}},"keywords":{}}],["onto",{"_index":237,"title":{},"content":{"26":{"position":[[165,4]]}},"keywords":{}}],["oppos",{"_index":175,"title":{},"content":{"17":{"position":[[19,7]]}},"keywords":{}}],["opt",{"_index":180,"title":{},"content":{"17":{"position":[[178,3]]}},"keywords":{}}],["order",{"_index":183,"title":{},"content":{"17":{"position":[[260,9],[428,7]]},"23":{"position":[[439,6],[505,6]]},"26":{"position":[[318,5]]},"35":{"position":[[135,5]]},"38":{"position":[[271,8],[340,7]]}},"keywords":{}}],["out",{"_index":344,"title":{},"content":{"41":{"position":[[639,3]]},"42":{"position":[[17,3]]}},"keywords":{}}],["outgo",{"_index":260,"title":{},"content":{"29":{"position":[[74,8]]}},"keywords":{}}],["output",{"_index":341,"title":{},"content":{"41":{"position":[[124,6]]}},"keywords":{}}],["over",{"_index":28,"title":{"4":{"position":[[10,4]]}},"content":{"4":{"position":[[74,4]]},"26":{"position":[[257,4]]},"28":{"position":[[197,4]]},"29":{"position":[[112,4],[205,4]]},"38":{"position":[[183,4]]},"40":{"position":[[60,4]]}},"keywords":{}}],["overhead",{"_index":133,"title":{},"content":{"15":{"position":[[218,8]]}},"keywords":{}}],["packag",{"_index":201,"title":{},"content":{"19":{"position":[[176,7]]}},"keywords":{}}],["packet",{"_index":34,"title":{},"content":{"4":{"position":[[109,7]]},"5":{"position":[[95,7]]},"13":{"position":[[285,6]]},"23":{"position":[[392,7],[458,7]]},"26":{"position":[[66,7]]},"28":{"position":[[83,7],[174,6]]},"29":{"position":[[83,7],[184,6],[304,7]]},"30":{"position":[[170,8],[509,8]]},"33":{"position":[[117,6]]},"35":{"position":[[510,7],[955,7]]},"36":{"position":[[338,7]]},"38":{"position":[[166,7],[229,7],[291,7]]},"40":{"position":[[690,6]]},"41":{"position":[[53,7],[488,7],[566,7]]}},"keywords":{}}],["page",{"_index":2,"title":{"1":{"position":[[9,4]]}},"content":{"6":{"position":[[8,4]]}},"keywords":{}}],["paramet",{"_index":274,"title":{},"content":{"33":{"position":[[154,10]]},"35":{"position":[[175,9]]}},"keywords":{}}],["pass",{"_index":251,"title":{},"content":{"27":{"position":[[248,7]]},"30":{"position":[[422,4]]}},"keywords":{}}],["payload",{"_index":361,"title":{},"content":{"42":{"position":[[620,7]]}},"keywords":{}}],["per",{"_index":226,"title":{},"content":{"23":{"position":[[426,3]]},"38":{"position":[[314,3],[348,3]]}},"keywords":{}}],["player",{"_index":31,"title":{},"content":{"4":{"position":[[22,6]]},"27":{"position":[[258,6],[268,7]]},"33":{"position":[[36,7],[48,6]]},"40":{"position":[[763,6],[775,6]]},"41":{"position":[[744,6],[755,6]]},"42":{"position":[[901,6],[2288,7]]}},"keywords":{}}],["playerload",{"_index":374,"title":{},"content":{"42":{"position":[[925,13],[1038,12],[1053,13],[2146,12]]}},"keywords":{}}],["playerloaded:queri",{"_index":402,"title":{},"content":{"42":{"position":[[2307,20],[2436,20]]}},"keywords":{}}],["playerloaded:send(...data",{"_index":403,"title":{},"content":{"42":{"position":[[2523,26]]}},"keywords":{}}],["playerloaded:send(...data):to(play",{"_index":404,"title":{},"content":{"42":{"position":[[2591,37]]}},"keywords":{}}],["pleas",{"_index":88,"title":{},"content":{"12":{"position":[[222,6]]}},"keywords":{}}],["po",{"_index":42,"title":{},"content":{"4":{"position":[[213,4]]},"39":{"position":[[449,4]]},"40":{"position":[[484,4]]},"41":{"position":[[357,4]]}},"keywords":{}}],["posit",{"_index":342,"title":{},"content":{"41":{"position":[[131,9]]}},"keywords":{}}],["practic",{"_index":9,"title":{},"content":{"1":{"position":[[30,9]]}},"keywords":{}}],["prefer",{"_index":188,"title":{},"content":{"17":{"position":[[459,10]]}},"keywords":{}}],["previou",{"_index":235,"title":{},"content":{"26":{"position":[[81,8]]},"41":{"position":[[505,8]]}},"keywords":{}}],["process",{"_index":114,"title":{},"content":{"13":{"position":[[272,7]]},"28":{"position":[[107,10]]},"30":{"position":[[157,7],[496,7]]},"36":{"position":[[288,7]]},"40":{"position":[[94,9]]}},"keywords":{}}],["project",{"_index":351,"title":{},"content":{"42":{"position":[[130,8]]}},"keywords":{}}],["properti",{"_index":63,"title":{"8":{"position":[[0,11]]}},"content":{},"keywords":{}}],["provid",{"_index":48,"title":{},"content":{"5":{"position":[[148,8]]},"13":{"position":[[158,7]]},"15":{"position":[[132,7],[351,8]]},"16":{"position":[[414,7]]},"33":{"position":[[138,8]]},"35":{"position":[[1145,8]]},"39":{"position":[[30,7],[74,9]]},"42":{"position":[[218,8]]}},"keywords":{}}],["push",{"_index":172,"title":{},"content":{"16":{"position":[[404,6]]}},"keywords":{}}],["put",{"_index":346,"title":{},"content":{"41":{"position":[[715,7]]}},"keywords":{}}],["queri",{"_index":73,"title":{"26":{"position":[[0,6]]},"41":{"position":[[0,9]]}},"content":{"10":{"position":[[81,7]]},"17":{"position":[[402,5]]},"26":{"position":[[174,5],[464,8]]},"40":{"position":[[148,5]]},"41":{"position":[[15,8],[43,5],[443,5]]},"42":{"position":[[2220,5],[2354,5]]}},"keywords":{}}],["queryresult",{"_index":25,"title":{"2":{"position":[[0,11]]},"4":{"position":[[15,12]]}},"content":{"4":{"position":[[49,11],[81,11]]},"5":{"position":[[75,11]]},"26":{"position":[[26,11],[266,11],[359,11]]},"41":{"position":[[699,11]]}},"keywords":{}}],["queryresult'",{"_index":35,"title":{},"content":{"4":{"position":[[124,13]]},"5":{"position":[[112,13]]}},"keywords":{}}],["queryresult:from",{"_index":40,"title":{},"content":{"4":{"position":[[184,17]]},"5":{"position":[[10,17]]},"26":{"position":[[139,18]]}},"keywords":{}}],["queue",{"_index":116,"title":{},"content":{"13":{"position":[[292,6]]},"36":{"position":[[309,6]]}},"keywords":{}}],["quot;0.7.0",{"_index":208,"title":{},"content":{"20":{"position":[[76,11]]}},"keywords":{}}],["quot;@rbxts/yetanothernet"",{"_index":207,"title":{},"content":{"20":{"position":[[42,33]]}},"keywords":{}}],["quot;boolean"",{"_index":303,"title":{},"content":{"35":{"position":[[1239,19]]}},"keywords":{}}],["quot;default"",{"_index":215,"title":{},"content":{"23":{"position":[[194,19]]},"42":{"position":[[594,20]]}},"keywords":{}}],["quot;hello",{"_index":324,"title":{},"content":{"39":{"position":[[376,12]]},"40":{"position":[[411,12],[624,12]]}},"keywords":{}}],["quot;net_server"",{"_index":66,"title":{},"content":{"9":{"position":[[22,22]]},"33":{"position":[[57,23]]}},"keywords":{}}],["quot;reliable"",{"_index":212,"title":{},"content":{"23":{"position":[[45,20]]},"35":{"position":[[470,21]]},"42":{"position":[[564,21]]}},"keywords":{}}],["quot;string"",{"_index":295,"title":{},"content":{"35":{"position":[[759,18],[798,18],[1200,18]]}},"keywords":{}}],["quot;unreliable"",{"_index":213,"title":{},"content":{"23":{"position":[[68,22]]}},"keywords":{}}],["quot;yetanotherclown/yetanothernet@0.7.0"",{"_index":196,"title":{},"content":{"19":{"position":[[21,47]]}},"keywords":{}}],["ran",{"_index":255,"title":{},"content":{"28":{"position":[[67,3]]},"29":{"position":[[67,3]]}},"keywords":{}}],["ratelimit",{"_index":216,"title":{},"content":{"23":{"position":[[214,10],[294,12]]}},"keywords":{}}],["read",{"_index":152,"title":{},"content":{"15":{"position":[[594,7]]},"17":{"position":[[555,7]]}},"keywords":{}}],["real",{"_index":349,"title":{},"content":{"42":{"position":[[94,4]]}},"keywords":{}}],["receiv",{"_index":225,"title":{},"content":{"23":{"position":[[417,8],[493,8]]},"27":{"position":[[200,7]]},"28":{"position":[[163,8]]},"29":{"position":[[291,8]]},"40":{"position":[[164,9]]}},"keywords":{}}],["recipi",{"_index":247,"title":{},"content":{"27":{"position":[[69,10]]},"33":{"position":[[99,10]]}},"keywords":{}}],["recommend",{"_index":233,"title":{},"content":{"25":{"position":[[193,11]]},"30":{"position":[[184,11]]}},"keywords":{}}],["reliabl",{"_index":214,"title":{},"content":{"23":{"position":[[102,8],[378,9]]},"38":{"position":[[104,8]]}},"keywords":{}}],["remot",{"_index":232,"title":{},"content":{"25":{"position":[[180,7]]}},"keywords":{}}],["remoteev",{"_index":127,"title":{},"content":{"15":{"position":[[91,12],[329,12]]},"17":{"position":[[102,12]]}},"keywords":{}}],["remoteeventsord",{"_index":134,"title":{},"content":{"15":{"position":[[232,20]]}},"keywords":{}}],["replic",{"_index":362,"title":{},"content":{"42":{"position":[[632,11],[772,9]]}},"keywords":{}}],["replicatedstorag",{"_index":357,"title":{},"content":{"42":{"position":[[346,17]]}},"keywords":{}}],["repositori",{"_index":352,"title":{},"content":{"42":{"position":[[146,11]]}},"keywords":{}}],["request",{"_index":75,"title":{},"content":{"10":{"position":[[98,9]]}},"keywords":{}}],["requir",{"_index":190,"title":{},"content":{"17":{"position":[[534,9]]}},"keywords":{}}],["require("matter.luau"",{"_index":380,"title":{},"content":{"42":{"position":[[1286,32]]}},"keywords":{}}],["require("net.luau"",{"_index":267,"title":{},"content":{"30":{"position":[[589,29]]},"35":{"position":[[303,29]]},"36":{"position":[[540,29]]},"39":{"position":[[156,29]]},"40":{"position":[[191,29]]},"41":{"position":[[187,29]]},"42":{"position":[[421,29],[1383,29]]}},"keywords":{}}],["require("routes.luau"",{"_index":268,"title":{},"content":{"30":{"position":[[634,32]]},"36":{"position":[[585,32]]},"42":{"position":[[1428,32],[2107,32]]}},"keywords":{}}],["require("squash.luau"",{"_index":284,"title":{},"content":{"35":{"position":[[258,32]]}},"keywords":{}}],["require(child",{"_index":391,"title":{},"content":{"42":{"position":[[1698,15]]}},"keywords":{}}],["respons",{"_index":71,"title":{},"content":{"10":{"position":[[56,11]]}},"keywords":{}}],["rest",{"_index":165,"title":{},"content":{"16":{"position":[[252,5]]}},"keywords":{}}],["return",{"_index":33,"title":{},"content":{"4":{"position":[[98,6]]},"13":{"position":[[204,6]]},"26":{"position":[[294,6]]},"35":{"position":[[115,6],[525,9],[669,8],[822,6],[909,6],[1264,6],[1351,6]]},"36":{"position":[[224,6]]},"39":{"position":[[416,8],[658,6]]},"40":{"position":[[451,8]]},"41":{"position":[[95,6],[556,9]]},"42":{"position":[[990,6]]}},"keywords":{}}],["roblox",{"_index":123,"title":{"20":{"position":[[0,6]]}},"content":{"15":{"position":[[32,7],[166,7]]},"16":{"position":[[64,6],[380,7],[478,7]]},"17":{"position":[[86,7]]}},"keywords":{}}],["roblox'",{"_index":126,"title":{},"content":{"15":{"position":[[82,8]]}},"keywords":{}}],["rout",{"_index":56,"title":{"10":{"position":[[0,6]]},"21":{"position":[[0,5]]},"37":{"position":[[0,6]]}},"content":{"6":{"position":[[183,5]]},"10":{"position":[[21,5]]},"12":{"position":[[49,7],[57,7],[83,6],[114,6],[186,6],[396,6],[496,6]]},"13":{"position":[[26,7],[58,6],[177,7],[262,5],[378,5]]},"15":{"position":[[569,7]]},"23":{"position":[[153,5]]},"25":{"position":[[70,5],[131,6]]},"30":{"position":[[409,5],[446,7],[625,6]]},"35":{"position":[[339,5],[411,6]]},"36":{"position":[[133,5],[186,5],[301,7],[459,5],[576,6]]},"38":{"position":[[44,7],[69,6]]},"39":{"position":[[0,6],[121,7],[192,5],[264,6],[530,5],[762,7]]},"40":{"position":[[69,6],[227,5],[299,6],[550,6]]},"41":{"position":[[223,5],[295,6],[583,5]]},"42":{"position":[[265,6],[389,7],[457,5],[1197,6],[1419,6],[1534,6],[1557,7],[1860,6],[2025,6],[2098,6]]}},"keywords":{}}],["route<numb",{"_index":320,"title":{},"content":{"39":{"position":[[271,16]]},"40":{"position":[[306,16]]},"41":{"position":[[302,16]]}},"keywords":{}}],["route<str",{"_index":287,"title":{},"content":{"35":{"position":[[418,16]]}},"keywords":{}}],["route<u...>",{"_index":285,"title":{},"content":{"35":{"position":[[362,17]]},"39":{"position":[[215,17]]},"40":{"position":[[250,17]]},"41":{"position":[[246,17]]},"42":{"position":[[480,17]]}},"keywords":{}}],["route'",{"_index":248,"title":{},"content":{"27":{"position":[[89,7]]}},"keywords":{}}],["route.new",{"_index":289,"title":{},"content":{"35":{"position":[[448,11]]},"39":{"position":[[310,11]]},"40":{"position":[[345,11]]},"41":{"position":[[341,11]]}},"keywords":{}}],["route.new(configur",{"_index":229,"title":{},"content":{"25":{"position":[[10,24]]}},"keywords":{}}],["route.serv",{"_index":252,"title":{},"content":{"27":{"position":[[279,13]]}},"keywords":{}}],["route:addincomingmiddlewar",{"_index":254,"title":{},"content":{"28":{"position":[[10,29]]}},"keywords":{}}],["route:addincomingmiddleware(function(str",{"_index":290,"title":{},"content":{"35":{"position":[[535,41]]}},"keywords":{}}],["route:addoutgoingmiddlewar",{"_index":259,"title":{},"content":{"29":{"position":[[10,29]]}},"keywords":{}}],["route:addoutgoingmiddleware(function(str",{"_index":300,"title":{},"content":{"35":{"position":[[978,41]]}},"keywords":{}}],["route:queri",{"_index":234,"title":{},"content":{"26":{"position":[[10,13]]},"28":{"position":[[275,13]]},"39":{"position":[[472,13],[622,13]]},"40":{"position":[[507,13]]},"41":{"position":[[70,13],[388,13]]}},"keywords":{}}],["route:query():__it",{"_index":243,"title":{},"content":{"26":{"position":[[414,22]]}},"keywords":{}}],["route:query():from(...send",{"_index":345,"title":{},"content":{"41":{"position":[[662,29]]}},"keywords":{}}],["route:send",{"_index":244,"title":{},"content":{"27":{"position":[[10,12],[121,10]]},"28":{"position":[[229,12]]},"29":{"position":[[237,12]]},"39":{"position":[[640,12]]},"40":{"position":[[663,12]]}},"keywords":{}}],["route:send():to(recipi",{"_index":340,"title":{},"content":{"40":{"position":[[807,27]]}},"keywords":{}}],["route:send(...data",{"_index":334,"title":{},"content":{"40":{"position":[[27,19]]}},"keywords":{}}],["route:send(1",{"_index":323,"title":{},"content":{"39":{"position":[[362,13]]},"40":{"position":[[397,13]]}},"keywords":{}}],["route:send(5",{"_index":339,"title":{},"content":{"40":{"position":[[604,13]]}},"keywords":{}}],["routes.luau",{"_index":355,"title":{},"content":{"42":{"position":[[318,11],[397,11],[1986,11]]}},"keywords":{}}],["routes.playerload",{"_index":399,"title":{},"content":{"42":{"position":[[2161,19]]}},"keywords":{}}],["run",{"_index":83,"title":{},"content":{"12":{"position":[[193,3],[416,3],[487,3]]},"13":{"position":[[105,3],[315,3]]},"25":{"position":[[214,3]]},"28":{"position":[[142,3]]},"29":{"position":[[154,3]]},"30":{"position":[[223,3],[316,3]]},"38":{"position":[[76,3]]},"42":{"position":[[275,3],[1139,3],[1207,3],[1778,7]]}},"keywords":{}}],["runservic",{"_index":265,"title":{},"content":{"30":{"position":[[524,10]]},"36":{"position":[[475,10]]}},"keywords":{}}],["runservice.heartbeat",{"_index":264,"title":{},"content":{"30":{"position":[[250,21]]},"42":{"position":[[1919,20]]}},"keywords":{}}],["runservice.heartbeat:connect(hook",{"_index":120,"title":{},"content":{"13":{"position":[[387,34]]},"30":{"position":[[703,34]]},"36":{"position":[[654,34]]}},"keywords":{}}],["rust",{"_index":170,"title":{},"content":{"16":{"position":[[340,5]]}},"keywords":{}}],["same",{"_index":95,"title":{},"content":{"12":{"position":[[307,4]]},"25":{"position":[[147,4]]},"42":{"position":[[1084,4]]}},"keywords":{}}],["schedul",{"_index":110,"title":{},"content":{"13":{"position":[[113,10],[319,10]]},"23":{"position":[[140,8]]},"25":{"position":[[231,10]]},"30":{"position":[[303,9]]},"36":{"position":[[416,10]]},"42":{"position":[[249,10],[1183,8],[1519,9],[1755,8]]}},"keywords":{}}],["script",{"_index":376,"title":{},"content":{"42":{"position":[[1089,6]]}},"keywords":{}}],["script.systems:getchildren",{"_index":388,"title":{},"content":{"42":{"position":[[1600,28]]}},"keywords":{}}],["see",{"_index":14,"title":{},"content":{"1":{"position":[[88,3],[191,3],[215,3]]},"6":{"position":[[300,3]]},"17":{"position":[[79,3]]},"26":{"position":[[460,3]]},"27":{"position":[[293,3]]},"28":{"position":[[304,3]]},"29":{"position":[[312,3]]},"42":{"position":[[71,3],[105,3]]}},"keywords":{}}],["send",{"_index":74,"title":{"27":{"position":[[0,5]]},"40":{"position":[[0,8]]}},"content":{"10":{"position":[[93,4]]},"17":{"position":[[412,4]]},"27":{"position":[[28,5],[137,4],[297,7]]},"29":{"position":[[176,5]]},"35":{"position":[[970,7]]},"39":{"position":[[325,4]]},"40":{"position":[[50,4],[360,4],[681,4],[787,4]]},"42":{"position":[[2483,4],[2553,4]]}},"keywords":{}}],["send/rec",{"_index":308,"title":{},"content":{"36":{"position":[[320,12]]}},"keywords":{}}],["sender",{"_index":39,"title":{},"content":{"4":{"position":[[171,7],[218,7]]},"5":{"position":[[28,8],[37,9],[53,7],[157,8]]},"26":{"position":[[115,7],[399,7]]},"41":{"position":[[141,7],[362,7],[643,7]]}},"keywords":{}}],["sending/queri",{"_index":69,"title":{},"content":{"9":{"position":[[102,17]]}},"keywords":{}}],["sendrequest",{"_index":270,"title":{"31":{"position":[[0,11]]}},"content":{},"keywords":{}}],["sendrequest:to",{"_index":250,"title":{},"content":{"27":{"position":[[229,14]]}},"keywords":{}}],["sendrequest:to(recipi",{"_index":271,"title":{},"content":{"33":{"position":[[10,25]]}},"keywords":{}}],["sensit",{"_index":182,"title":{},"content":{"17":{"position":[[247,9]]}},"keywords":{}}],["sent",{"_index":224,"title":{},"content":{"23":{"position":[[408,4]]},"29":{"position":[[107,4]]},"35":{"position":[[1112,4]]},"38":{"position":[[178,4]]}},"keywords":{}}],["separ",{"_index":159,"title":{},"content":{"16":{"position":[[15,9]]}},"keywords":{}}],["serial",{"_index":278,"title":{},"content":{"35":{"position":[[71,9],[696,10],[945,9]]}},"keywords":{}}],["server",{"_index":64,"title":{"9":{"position":[[0,7]]}},"content":{"9":{"position":[[90,6]]},"28":{"position":[[190,6],[249,6]]},"29":{"position":[[169,6],[257,6]]},"36":{"position":[[353,6]]},"40":{"position":[[737,7]]},"42":{"position":[[2274,6],[2516,6],[2584,6]]}},"keywords":{}}],["set",{"_index":92,"title":{},"content":{"12":{"position":[[258,3]]},"28":{"position":[[45,4]]},"29":{"position":[[45,4]]},"30":{"position":[[205,3]]}},"keywords":{}}],["setup",{"_index":15,"title":{"36":{"position":[[6,6]]}},"content":{"1":{"position":[[98,6],[206,5],[233,5]]},"36":{"position":[[6,6]]}},"keywords":{}}],["sever",{"_index":140,"title":{},"content":{"15":{"position":[[360,7]]}},"keywords":{}}],["share",{"_index":230,"title":{},"content":{"25":{"position":[[165,5]]}},"keywords":{}}],["signal",{"_index":372,"title":{},"content":{"42":{"position":[[885,6]]}},"keywords":{}}],["similar",{"_index":57,"title":{},"content":{"6":{"position":[[208,7]]},"16":{"position":[[422,7]]}},"keywords":{}}],["simpl",{"_index":310,"title":{},"content":{"36":{"position":[[382,6]]},"41":{"position":[[27,7]]},"42":{"position":[[229,6]]}},"keywords":{}}],["simpli",{"_index":262,"title":{},"content":{"30":{"position":[[101,6]]},"35":{"position":[[108,6]]}},"keywords":{}}],["singl",{"_index":231,"title":{},"content":{"25":{"position":[[173,6],[252,6]]}},"keywords":{}}],["snapshot",{"_index":36,"title":{},"content":{"4":{"position":[[138,8]]},"5":{"position":[[126,8]]},"41":{"position":[[472,8]]}},"keywords":{}}],["solv",{"_index":128,"title":{},"content":{"15":{"position":[[107,5],[206,6]]},"17":{"position":[[344,5]]}},"keywords":{}}],["someth",{"_index":44,"title":{},"content":{"4":{"position":[[271,9]]},"26":{"position":[[446,9]]},"39":{"position":[[495,9]]},"40":{"position":[[530,9]]},"41":{"position":[[411,9]]},"42":{"position":[[2337,9],[2466,9]]}},"keywords":{}}],["specif",{"_index":246,"title":{},"content":{"27":{"position":[[60,8]]}},"keywords":{}}],["specifi",{"_index":249,"title":{},"content":{"27":{"position":[[175,7]]},"40":{"position":[[753,7]]}},"keywords":{}}],["squash",{"_index":277,"title":{},"content":{"35":{"position":[[61,6],[249,6],[689,6]]}},"keywords":{}}],["squash.boolean.des(boolean",{"_index":298,"title":{},"content":{"35":{"position":[[878,28]]}},"keywords":{}}],["squash.boolean.ser(boolean",{"_index":305,"title":{},"content":{"35":{"position":[[1320,28]]}},"keywords":{}}],["squash.string.alphabet(str",{"_index":293,"title":{},"content":{"35":{"position":[[627,27],[1070,27]]}},"keywords":{}}],["squash.string.des(str",{"_index":297,"title":{},"content":{"35":{"position":[[844,22]]}},"keywords":{}}],["squash.string.ser(str",{"_index":304,"title":{},"content":{"35":{"position":[[1286,22]]}},"keywords":{}}],["start",{"_index":76,"title":{"12":{"position":[[0,6]]}},"content":{"15":{"position":[[556,7]]}},"keywords":{}}],["step",{"_index":113,"title":{},"content":{"13":{"position":[[252,4]]}},"keywords":{}}],["still",{"_index":6,"title":{},"content":{"1":{"position":[[6,5]]}},"keywords":{}}],["str",{"_index":329,"title":{},"content":{"39":{"position":[[459,4]]},"40":{"position":[[494,4]]},"41":{"position":[[375,4]]}},"keywords":{}}],["strict",{"_index":200,"title":{},"content":{"19":{"position":[[138,6]]},"39":{"position":[[806,6]]}},"keywords":{}}],["strictli",{"_index":358,"title":{},"content":{"42":{"position":[[367,8]]}},"keywords":{}}],["string",{"_index":32,"title":{},"content":{"4":{"position":[[31,7]]},"23":{"position":[[118,6]]},"35":{"position":[[736,6]]},"39":{"position":[[288,7],[572,7]]},"40":{"position":[[323,7],[572,7]]},"41":{"position":[[319,7]]},"42":{"position":[[676,9],[700,9]]}},"keywords":{}}],["such",{"_index":177,"title":{},"content":{"17":{"position":[[94,4]]},"39":{"position":[[773,4]]},"41":{"position":[[543,4]]}},"keywords":{}}],["suggest",{"_index":191,"title":{},"content":{"17":{"position":[[547,7]]}},"keywords":{}}],["suppli",{"_index":38,"title":{},"content":{"4":{"position":[[162,8]]}},"keywords":{}}],["sure",{"_index":90,"title":{},"content":{"12":{"position":[[234,4]]},"42":{"position":[[1829,4]]}},"keywords":{}}],["system",{"_index":102,"title":{},"content":{"12":{"position":[[448,8]]},"26":{"position":[[239,7]]},"42":{"position":[[1571,7],[1764,7],[1964,6],[2056,8]]}},"keywords":{}}],["systems/examplesystem.luau",{"_index":398,"title":{},"content":{"42":{"position":[[2065,26]]}},"keywords":{}}],["tabl",{"_index":78,"title":{},"content":{"12":{"position":[[69,5]]},"13":{"position":[[44,5],[168,5]]},"30":{"position":[[432,5]]}},"keywords":{}}],["table.insert(system",{"_index":390,"title":{},"content":{"42":{"position":[[1676,21]]}},"keywords":{}}],["table.unpack(valu",{"_index":299,"title":{},"content":{"35":{"position":[[916,20],[1358,20]]}},"keywords":{}}],["take",{"_index":343,"title":{},"content":{"41":{"position":[[465,4]]}},"keywords":{}}],["technic",{"_index":50,"title":{},"content":{"6":{"position":[[37,9]]},"15":{"position":[[626,9]]}},"keywords":{}}],["themselv",{"_index":178,"title":{},"content":{"17":{"position":[[115,11]]}},"keywords":{}}],["thing",{"_index":158,"title":{},"content":{"16":{"position":[[4,5]]}},"keywords":{}}],["though",{"_index":189,"title":{},"content":{"17":{"position":[[523,6]]}},"keywords":{}}],["through",{"_index":401,"title":{},"content":{"42":{"position":[[2226,7],[2360,7]]}},"keywords":{}}],["tip",{"_index":347,"title":{},"content":{"42":{"position":[[7,3]]}},"keywords":{}}],["tri",{"_index":54,"title":{},"content":{"6":{"position":[[99,3]]}},"keywords":{}}],["true",{"_index":326,"title":{},"content":{"39":{"position":[[403,5]]},"40":{"position":[[438,5],[618,5]]}},"keywords":{}}],["tupl",{"_index":280,"title":{},"content":{"35":{"position":[[146,6]]}},"keywords":{}}],["two",{"_index":173,"title":{},"content":{"16":{"position":[[453,3]]},"38":{"position":[[90,3]]}},"keywords":{}}],["type",{"_index":136,"title":{"22":{"position":[[0,6]]},"39":{"position":[[0,4]]}},"content":{"15":{"position":[[281,4],[396,4]]},"19":{"position":[[98,5],[145,6],[184,5]]},"26":{"position":[[234,4],[301,5]]},"35":{"position":[[126,5],[357,4],[658,4],[707,5],[724,6],[1101,4],[1154,5]]},"39":{"position":[[14,4],[86,4],[210,4],[346,5],[439,5],[558,5],[681,6],[725,4],[813,6]]},"40":{"position":[[245,4],[381,5],[474,5]]},"41":{"position":[[241,4],[737,4]]},"42":{"position":[[475,4],[653,4]]}},"keywords":{}}],["type(boolean",{"_index":296,"title":{},"content":{"35":{"position":[[781,13],[1222,13]]}},"keywords":{}}],["type(str",{"_index":294,"title":{},"content":{"35":{"position":[[746,9],[1187,9]]}},"keywords":{}}],["typescript",{"_index":203,"title":{"20":{"position":[[7,11]]}},"content":{},"keywords":{}}],["u",{"_index":301,"title":{},"content":{"35":{"position":[[1160,4]]}},"keywords":{}}],["under",{"_index":3,"title":{"1":{"position":[[17,5]]}},"content":{},"keywords":{}}],["uniqu",{"_index":67,"title":{},"content":{"9":{"position":[[47,6]]},"10":{"position":[[29,8]]},"16":{"position":[[236,6]]},"25":{"position":[[83,6]]}},"keywords":{}}],["unreli",{"_index":227,"title":{},"content":{"23":{"position":[[446,11]]},"38":{"position":[[119,11],[280,10]]}},"keywords":{}}],["us",{"_index":11,"title":{},"content":{"1":{"position":[[60,5],[166,3],[243,3]]},"6":{"position":[[71,3],[201,4]]},"9":{"position":[[65,4]]},"12":{"position":[[322,4]]},"15":{"position":[[529,3]]},"16":{"position":[[315,3]]},"17":{"position":[[369,3],[505,3]]},"19":{"position":[[134,3]]},"30":{"position":[[244,5],[388,3]]},"35":{"position":[[42,3],[161,3]]},"36":{"position":[[110,5],[436,5]]},"40":{"position":[[23,3],[725,4],[801,5]]},"41":{"position":[[64,5]]},"42":{"position":[[84,4],[1978,3],[2036,3]]}},"keywords":{}}],["usag",{"_index":41,"title":{},"content":{"4":{"position":[[202,6]]}},"keywords":{}}],["util",{"_index":141,"title":{},"content":{"15":{"position":[[368,10]]}},"keywords":{}}],["v0.5.0",{"_index":219,"title":{},"content":{"23":{"position":[[286,7]]}},"keywords":{}}],["valu",{"_index":240,"title":{},"content":{"26":{"position":[[307,7]]},"35":{"position":[[589,7],[678,7],[833,6],[1032,7],[1117,7],[1275,6]]},"41":{"position":[[727,6]]}},"keywords":{}}],["version",{"_index":223,"title":{},"content":{"23":{"position":[[360,9]]},"42":{"position":[[33,7]]}},"keywords":{}}],["visit",{"_index":149,"title":{},"content":{"15":{"position":[[539,8]]}},"keywords":{}}],["walli",{"_index":194,"title":{"19":{"position":[[0,6]]}},"content":{"19":{"position":[[76,5],[170,5]]}},"keywords":{}}],["want",{"_index":104,"title":{},"content":{"12":{"position":[[479,4]]},"30":{"position":[[85,5],[149,4],[488,4]]},"36":{"position":[[86,4],[280,4]]}},"keywords":{}}],["way",{"_index":313,"title":{},"content":{"38":{"position":[[16,4],[157,3]]}},"keywords":{}}],["we'r",{"_index":5,"title":{},"content":{"1":{"position":[[0,5]]}},"keywords":{}}],["went",{"_index":154,"title":{},"content":{"15":{"position":[[668,4]]}},"keywords":{}}],["whatev",{"_index":306,"title":{},"content":{"36":{"position":[[55,8]]}},"keywords":{}}],["whenev",{"_index":263,"title":{},"content":{"30":{"position":[[136,8],[475,8]]},"36":{"position":[[267,8]]}},"keywords":{}}],["whether",{"_index":282,"title":{},"content":{"35":{"position":[[198,7]]}},"keywords":{}}],["wish",{"_index":199,"title":{},"content":{"19":{"position":[[126,4]]}},"keywords":{}}],["within",{"_index":397,"title":{},"content":{"42":{"position":[[2045,6]]}},"keywords":{}}],["woe",{"_index":179,"title":{},"content":{"17":{"position":[[156,5]]}},"keywords":{}}],["work",{"_index":139,"title":{},"content":{"15":{"position":[[316,7],[512,5]]},"16":{"position":[[114,4]]},"39":{"position":[[744,7]]}},"keywords":{}}],["world",{"_index":381,"title":{},"content":{"42":{"position":[[1325,5],[1467,5]]}},"keywords":{}}],["world!"",{"_index":325,"title":{},"content":{"39":{"position":[[389,13]]},"40":{"position":[[424,13],[637,13]]}},"keywords":{}}],["world.new",{"_index":384,"title":{},"content":{"42":{"position":[[1475,11]]}},"keywords":{}}],["wrap",{"_index":124,"title":{},"content":{"15":{"position":[[69,5]]}},"keywords":{}}],["yetanothernet",{"_index":205,"title":{},"content":{"20":{"position":[[20,13]]}},"keywords":{}}],["you'll",{"_index":336,"title":{},"content":{"40":{"position":[[130,6]]}},"keywords":{}}],["yourrunservice.heartbeat",{"_index":97,"title":{},"content":{"12":{"position":[[331,24]]}},"keywords":{}}]],"pipeline":["stemmer"]} \ No newline at end of file diff --git a/lunr-index.json b/lunr-index.json index 7976309..aaede44 100644 --- a/lunr-index.json +++ b/lunr-index.json @@ -1 +1 @@ -{"version":"2.3.9","fields":["title","content","keywords"],"fieldVectors":[["title/0",[0,722.082]],["content/0",[]],["keywords/0",[]],["title/1",[1,268.951]],["content/1",[]],["keywords/1",[]],["title/2",[]],["content/2",[2,3,3,8.58,4,6.158,5,2.407,6,7.283,7,8.58,8,7.283,9,2.819,10,8.58,11,4.175,12,7.283]],["keywords/2",[]],["title/3",[13,408.705]],["content/3",[]],["keywords/3",[]],["title/4",[1,268.951]],["content/4",[]],["keywords/4",[]],["title/5",[13,235.274,14,280.514,15,217.669]],["content/5",[2,2.667,4,4.317,5,1.872,9,2.506,13,5.707,14,5.147,15,3.994,16,5.715,17,3.994,18,3.461,19,6.474,20,5.715,21,7.627,22,7.627,23,6.804,24,5.715,25,7.627,26,5.147,27,7.627,28,4.317,29,3.994]],["keywords/5",[]],["title/6",[]],["content/6",[2,3,5,2.02,9,2.819,11,4.175,13,4.856,19,7.283,20,6.428,23,8.479,24,6.428,30,8.152,31,8.58]],["keywords/6",[]],["title/7",[32,408.705]],["content/7",[1,2.557,5,1.988,32,6.06,33,5.827,34,4.919,35,5.827,36,5.827,37,3.086,38,5.827,39,5.144,40,6.865,41,4.225,42,2.563,43,4.225,44,4.225,45,5.144,46,1.761,47,5.827,48,5.827,49,6.339,50,6.865,51,3.886,52,4.225,53,3.341]],["keywords/7",[]],["title/8",[54,612.911]],["content/8",[]],["keywords/8",[]],["title/9",[5,63.655,33,291.07,55,342.915,56,342.915]],["content/9",[5,1.228,34,4.796,37,3.45,41,5.636,42,2.866,43,5.636,44,5.636,53,5.111,54,7.774,57,6.617,58,6.617,59,5.617,60,6.617,61,6.617,62,5.617,63,7.869,64,4.073,65,4.958,66,6.617,67,4.466,68,6.617,69,5.617]],["keywords/9",[]],["title/10",[70,722.082]],["content/10",[]],["keywords/10",[]],["title/11",[]],["content/11",[11,3.614,35,4.201,36,4.201,37,1.626,41,3.046,42,2.703,43,5.486,46,1.269,51,4.203,59,6.303,71,4.667,72,5.012,73,4.949,74,4.949,75,4.949,76,6.303,77,6.303,78,4.201,79,7.426,80,3.708,81,4.949,82,4.949,83,4.949,84,4.949,85,3.149,86,4.57,87,4.201,88,5.564,89,4.949,90,4.949,91,4.949,92,4.201,93,4.201,94,4.949,95,4.949,96,3.046,97,4.57,98,4.949,99,4.949,100,4.201,101,4.949,102,4.201,103,4.201,104,4.949,105,2.801]],["keywords/11",[]],["title/12",[96,255.826,97,255.826,106,176.274]],["content/12",[1,2.131,11,2.784,37,1.88,42,2.647,43,6.538,44,5.97,47,4.857,64,3.522,67,3.861,71,5.079,72,6.546,88,4.287,96,3.522,97,5.97,103,4.857,106,2.427,107,4.857,108,5.722,109,5.722,110,4.857,111,4.857,112,5.722,113,5.722,114,5.722,115,3.861,116,3.861,117,5.722,118,5.722,119,5.722,120,5.722,121,5.722,122,5.722,123,5.722,124,5.722,125,4.857]],["keywords/12",[]],["title/13",[96,255.826,106,176.274,126,415.672]],["content/13",[5,0.936,34,2.639,37,2.473,42,2.054,44,6.151,53,2.453,72,3.401,76,4.278,77,4.278,96,6.583,97,6.583,102,4.278,106,4.238,115,3.401,127,5.04,128,5.601,129,5.04,130,3.776,131,5.04,132,4.633,133,5.04,134,5.04,135,5.04,136,5.04,137,4.633,138,5.04,139,5.04,140,6.39,141,2.453,142,2.137,143,5.04,144,3.415,145,5.04,146,5.04,147,5.04,148,5.04,149,5.04]],["keywords/13",[]],["title/14",[150,612.911]],["content/14",[]],["keywords/14",[]],["title/15",[151,612.911]],["content/15",[5,1.521,37,2.693,42,2.883,85,4.959,150,6.957,151,8.969,152,8.196,153,8.196,154,5.044,155,8.196,156,8.196,157,8.196,158,6.957,159,8.196,160,8.196]],["keywords/15",[]],["title/16",[72,356.059,161,527.617]],["content/16",[42,2.724,162,9.982,163,9.982,164,9.982,165,9.982,166,9.982,167,9.982]],["keywords/16",[]],["title/17",[168,487.293]],["content/17",[1,1.843,5,1.97,9,2.44,37,2.44,41,3.046,42,2.432,46,2.286,49,3.34,64,3.046,65,3.708,71,2.592,97,3.046,105,2.801,132,3.046,144,3.369,168,7.162,169,2.801,170,3.34,171,6.678,172,4.201,173,3.614,174,6.303,175,4.57,176,4.201,177,3.34,178,3.614,179,3.708,180,4.201,181,3.708,182,2.801,183,4.201,184,3.708,185,4.82,186,4.201,187,4.201,188,2.592,189,3.708,190,4.201,191,3.708]],["keywords/17",[]],["title/18",[63,541.002]],["content/18",[1,3.338,5,2.213,9,1.641,18,2.266,37,2.456,38,4.239,41,3.074,42,2.04,45,3.742,46,2.732,49,5.046,63,3.742,64,3.074,65,3.742,67,3.37,105,4.232,168,5.046,169,2.827,171,5.602,173,2.43,174,4.239,175,3.074,182,2.827,185,4.842,186,4.239,187,4.239,188,2.615,189,3.742,190,4.239,191,3.742,192,4.994,193,4.994,194,4.239,195,4.994,196,2.615,197,2.827,198,4.994,199,3.742,200,2.615,201,4.994]],["keywords/18",[]],["title/19",[42,197.042]],["content/19",[]],["keywords/19",[]],["title/20",[202,722.082]],["content/20",[]],["keywords/20",[]],["title/21",[196,378.122]],["content/21",[2,3.368,6,8.176,37,3.165,116,6.5,196,5.044,203,8.176,204,7.889,205,9.632]],["keywords/21",[]],["title/22",[46,185.166]],["content/22",[2,3.254,39,6.972,46,2.386,116,6.28,141,4.528,142,3.946,204,6.28,206,5.267,207,9.306,208,9.306,209,9.306]],["keywords/22",[]],["title/23",[1,268.951]],["content/23",[]],["keywords/23",[]],["title/24",[100,612.911]],["content/24",[2,1.847,5,1.72,32,5.789,34,4.082,37,1.735,46,3.027,115,3.565,128,5.356,144,2.396,154,3.251,171,3.958,177,3.565,178,4.508,179,3.958,184,3.958,210,4.484,211,4.484,212,4.484,213,3.251,214,5.282,215,5.282,216,4.484,217,5.282,218,4.484,219,2.766,220,3.251,221,3.958,222,5.282,223,5.282,224,4.484,225,3.565,226,5.282,227,3.958,228,7.795,229,7.795,230,5.282,231,4.484]],["keywords/24",[]],["title/25",[232,722.082]],["content/25",[1,3.7,2,2.088,5,2.275,9,1.962,11,2.905,18,2.709,42,2.325,46,2.937,49,5.749,67,4.029,128,3.127,132,3.675,168,4.029,170,4.029,173,2.905,175,3.675,178,4.146,179,4.473,181,4.473,182,4.822,184,6.383,185,2.905,191,4.473,194,5.068,200,3.127,216,5.068,233,5.971]],["keywords/25",[]],["title/26",[213,444.406]],["content/26",[]],["keywords/26",[]],["title/27",[234,612.911]],["content/27",[5,2.414,9,1.664,11,1.486,12,2.591,17,1.599,18,4.344,29,3.957,37,1.664,42,0.833,43,1.879,46,1.299,85,4.06,86,3.117,106,2.753,128,1.599,137,1.879,142,1.295,172,2.591,185,4.876,188,1.599,206,1.728,234,2.591,235,3.053,236,6.492,237,6.492,238,5.065,239,3.053,240,3.053,241,3.053,242,3.053,243,3.053,244,1.879,245,1.879,246,3.053,247,3.053,248,2.06,249,1.879,250,2.287,251,3.795,252,3.053,253,3.418,254,6.771,255,7.556,256,5.065,257,5.065,258,6.492,259,5.065,260,3.053,261,3.053,262,5.065,263,3.053,264,2.06,265,3.053,266,3.053,267,3.053,268,3.053,269,3.053]],["keywords/27",[]],["title/28",[46,185.166]],["content/28",[]],["keywords/28",[]],["title/29",[85,306.213]],["content/29",[]],["keywords/29",[]],["title/30",[219,378.122]],["content/30",[2,2.022,5,1.811,9,2.735,16,4.332,17,3.028,32,3.273,34,3.028,46,1.483,48,4.908,128,4.36,137,5.124,144,3.777,154,3.559,170,3.902,182,3.273,219,3.028,220,5.124,249,5.124,250,4.332,264,3.902,270,5.782,271,5.782,272,7.067,273,4.908,274,8.326,275,5.782,276,5.782,277,5.782,278,4.908,279,5.782,280,5.782,281,4.908,282,5.124,283,4.908,284,4.908,285,4.908]],["keywords/30",[]],["title/31",[1,268.951]],["content/31",[]],["keywords/31",[]],["title/32",[80,541.002]],["content/32",[2,2.561,5,1.821,42,1.998,46,2.516,80,5.486,105,4.145,116,4.942,128,5.138,132,4.507,154,4.507,176,6.216,178,3.563,181,5.486,182,4.145,204,4.942,219,3.835,221,5.486,249,6.039,286,7.323,287,7.323,288,9.812,289,7.323]],["keywords/32",[]],["title/33",[141,351.373]],["content/33",[2,2.001,5,1.534,9,1.88,13,5.49,14,5.577,15,2.996,18,2.596,23,5.577,24,4.287,28,3.239,29,2.996,30,4.287,39,6.191,51,3.239,52,3.522,53,2.784,69,4.857,78,4.857,85,3.504,106,2.427,137,3.522,141,4.021,144,2.596,154,3.522,170,3.861,173,2.784,200,2.996,225,5.577,227,4.287,254,4.287,290,3.522,291,4.857,292,4.857,293,5.722,294,5.722,295,5.722,296,5.722,297,5.722,298,5.722]],["keywords/33",[]],["title/34",[142,306.213]],["content/34",[2,2.371,4,5.271,5,2.126,8,5.756,51,3.838,52,4.173,53,3.3,106,4.857,142,4.511,183,5.756,197,6.021,204,4.576,220,4.173,282,4.173,292,5.756,299,5.732,300,6.781,301,6.781,302,5.756,303,6.781,304,6.781]],["keywords/34",[]],["title/35",[305,722.082]],["content/35",[1,2.623,2,2.462,5,1.774,9,3.14,15,3.687,51,3.985,52,4.334,53,3.426,71,3.687,173,4.65,175,4.334,177,4.752,178,3.426,196,5.004,197,5.409,200,3.687,213,4.334,251,7.16,282,4.334,290,4.334,299,4.334,306,7.041,307,5.977,308,7.041]],["keywords/35",[]],["title/36",[309,722.082]],["content/36",[1,2.526,2,2.371,5,1.729,9,3.495,15,4.877,51,3.838,52,4.173,53,3.3,71,4.877,142,2.875,173,3.3,177,4.576,178,3.3,196,4.877,197,5.271,200,3.551,213,4.173,251,7.97,264,4.576,282,4.173,299,4.173,307,5.756,310,6.781,311,6.781]],["keywords/36",[]],["title/37",[46,185.166]],["content/37",[]],["keywords/37",[]],["title/38",[219,378.122]],["content/38",[9,3.429,15,3.424,46,2.329,71,3.424,92,5.55,107,5.55,125,5.55,137,5.59,144,4.121,178,3.182,219,3.424,231,5.55,249,6.423,264,4.413,272,5.55,283,7.709,284,7.709,285,7.709,312,6.539,313,9.083,314,6.539,315,6.539,316,6.539,317,9.083]],["keywords/38",[]],["title/39",[85,223.746,86,324.723]],["content/39",[5,1.722,11,3.281,16,3.267,17,3.531,18,3.059,26,2.943,28,2.468,29,2.283,42,1.19,46,2.72,85,4.973,86,4.15,87,3.701,88,3.267,93,5.724,105,2.468,130,3.267,140,3.701,142,1.849,158,3.701,169,2.468,185,4.012,188,2.283,200,2.283,206,2.468,225,2.943,244,2.684,245,2.684,248,2.943,253,2.943,278,3.701,290,4.15,299,2.684,318,6.743,319,6.998,320,3.267,321,3.267,322,5.724,323,3.701,324,3.701,325,3.701,326,3.701,327,3.267,328,3.267,329,3.267,330,4.36,331,4.36,332,6.743,333,4.36]],["keywords/39",[]],["title/40",[142,306.213]],["content/40",[4,3.793,5,2.047,9,1.421,15,2.265,17,3.509,18,1.963,26,2.919,28,2.449,29,3.509,37,2.695,42,1.18,46,2.369,85,3.479,106,3.479,141,2.105,142,3.918,144,1.963,169,2.449,175,2.662,185,4.496,188,2.265,196,2.265,197,2.449,206,2.449,220,2.662,244,2.662,245,2.662,248,2.919,253,2.919,282,2.662,290,2.662,299,2.662,302,3.672,319,3.672,320,3.241,321,5.021,322,3.672,323,3.672,324,5.689,325,5.689,326,5.689,327,3.241,328,3.241,329,3.241,334,4.326,335,4.326,336,4.326,337,4.326,338,4.326,339,4.326,340,4.326]],["keywords/40",[]],["title/41",[141,351.373]],["content/41",[4,3.937,5,2.149,9,2.778,13,2.57,14,3.064,17,2.378,18,3.156,20,3.402,23,5.707,26,3.064,28,2.57,29,2.378,30,5.212,32,2.57,37,1.492,42,1.239,46,2.168,85,2.95,106,1.925,130,3.402,141,4.115,144,2.06,169,2.57,173,4.115,185,4.115,188,2.378,199,3.402,203,3.854,206,2.57,225,4.694,244,2.794,245,2.794,248,3.064,253,3.064,254,3.402,290,4.281,291,3.854,320,3.402,321,3.402,327,3.402,328,3.402,329,3.402,341,4.54,342,4.54,343,4.54,344,3.854,345,4.54,346,4.54]],["keywords/41",[]],["title/42",[34,378.122]],["content/42",[1,1.656,4,1.863,5,2.309,11,0.9,17,1.723,18,0.84,28,1.863,29,3.235,32,3.496,34,4.143,37,1.46,42,1.471,44,1.139,45,2.466,46,2.238,53,1.602,62,1.571,64,2.026,71,1.723,85,1.396,86,1.139,105,1.863,106,2.619,110,1.571,111,1.571,115,1.249,128,1.723,132,1.139,141,1.602,142,1.396,144,1.493,169,1.047,173,1.602,178,2.623,180,1.571,182,3.05,185,5.025,188,1.723,189,2.466,196,2.328,197,2.516,199,1.386,200,1.723,206,1.047,210,1.571,211,1.571,212,1.571,213,1.139,218,1.571,219,0.969,220,1.139,221,1.386,224,1.571,227,4.038,244,1.139,245,1.139,249,1.139,250,1.386,273,1.571,281,1.571,344,1.571,347,1.85,348,1.85,349,1.85,350,1.85,351,1.85,352,1.85,353,1.85,354,1.85,355,4.445,356,3.291,357,1.85,358,1.85,359,1.85,360,1.85,361,1.85,362,3.291,363,1.85,364,1.85,365,1.85,366,3.291,367,1.85,368,1.85,369,4.445,370,1.85,371,3.291,372,1.85,373,1.85,374,5.389,375,1.85,376,1.85,377,1.85,378,1.85,379,1.85,380,1.85,381,3.291,382,1.85,383,1.85,384,1.85,385,1.85,386,3.291,387,1.85,388,1.85,389,1.85,390,1.85,391,1.85,392,1.85,393,1.85,394,1.85,395,1.85,396,1.85,397,1.85,398,1.85,399,1.85,400,1.85,401,3.291,402,3.291,403,1.85,404,1.85]],["keywords/42",[]]],"invertedIndex":[["",{"_index":5,"title":{"9":{"position":[[0,3]]}},"content":{"2":{"position":[[44,1],[46,1],[55,1],[81,1],[83,2]]},"5":{"position":[[29,1],[226,3]]},"6":{"position":[[71,1],[73,1]]},"7":{"position":[[181,1],[189,2],[255,2]]},"9":{"position":[[302,1]]},"13":{"position":[[570,1]]},"15":{"position":[[19,1]]},"17":{"position":[[415,2],[535,1],[587,1],[632,1],[678,1]]},"18":{"position":[[139,2],[184,1],[192,2],[465,3],[486,1],[538,1],[583,1],[629,1]]},"24":{"position":[[90,1],[92,1],[94,2]]},"25":{"position":[[65,1],[67,1],[69,2],[72,1],[74,2],[359,1],[384,2]]},"27":{"position":[[256,1],[301,1],[345,1],[380,1],[446,1],[468,1],[492,2],[597,1],[603,1],[605,1],[607,2],[625,1],[756,2],[795,2],[840,1],[842,1],[907,1],[1040,1],[1046,1],[1048,1],[1050,2],[1068,1],[1197,2],[1236,2],[1282,1],[1284,1],[1349,1]]},"30":{"position":[[34,1],[66,1],[272,1]]},"32":{"position":[[51,1],[53,2]]},"33":{"position":[[24,1],[407,3]]},"34":{"position":[[23,1],[25,2],[256,1],[265,2]]},"35":{"position":[[40,1],[42,2]]},"36":{"position":[[40,1],[42,2]]},"39":{"position":[[154,1],[198,1],[233,1],[308,1]]},"40":{"position":[[189,1],[233,1],[268,1],[343,1],[592,1],[773,1],[782,1]]},"41":{"position":[[185,1],[229,1],[264,1],[339,1],[742,1],[751,1],[753,1],[762,1]]},"42":{"position":[[419,1],[463,1],[498,1],[550,1],[552,1],[562,1],[592,1],[615,1],[672,1],[674,1],[686,1],[710,1],[763,1],[765,1],[767,1],[850,1],[958,1],[997,1],[1017,1],[1051,1],[1067,1],[1163,1],[1252,1],[1284,1],[1331,1],[1357,1],[1381,1],[1426,1],[1473,1],[1498,1],[1579,1],[1581,2],[1917,1],[1940,2],[2105,1],[2159,1]]}},"keywords":{}}],["_",{"_index":386,"title":{},"content":{"42":{"position":[[1588,2],[2422,2]]}},"keywords":{}}],["__iter",{"_index":297,"title":{},"content":{"33":{"position":[[342,9]]}},"keywords":{}}],["accept",{"_index":230,"title":{},"content":{"24":{"position":[[543,10]]}},"keywords":{}}],["access",{"_index":396,"title":{},"content":{"42":{"position":[[2014,6]]}},"keywords":{}}],["ad",{"_index":212,"title":{},"content":{"24":{"position":[[124,6]]},"42":{"position":[[1885,5]]}},"keywords":{}}],["adapt",{"_index":348,"title":{},"content":{"42":{"position":[[25,7]]}},"keywords":{}}],["addincomingmiddlewar",{"_index":305,"title":{"35":{"position":[[0,22]]}},"content":{},"keywords":{}}],["addoutgoingmiddlewar",{"_index":309,"title":{"36":{"position":[[0,22]]}},"content":{},"keywords":{}}],["aftman",{"_index":160,"title":{},"content":{"15":{"position":[[195,7]]}},"keywords":{}}],["allow",{"_index":170,"title":{},"content":{"17":{"position":[[27,5]]},"25":{"position":[[91,6]]},"30":{"position":[[244,7]]},"33":{"position":[[38,6]]}},"keywords":{}}],["alphabet",{"_index":255,"title":{},"content":{"27":{"position":[[616,8],[867,10],[1059,8],[1309,10]]}},"keywords":{}}],["alway",{"_index":317,"title":{},"content":{"38":{"position":[[264,6],[333,6]]}},"keywords":{}}],["amount",{"_index":275,"title":{},"content":{"30":{"position":[[234,6]]}},"keywords":{}}],["amp",{"_index":92,"title":{},"content":{"11":{"position":[[410,5]]},"38":{"position":[[113,5]]}},"keywords":{}}],["annot",{"_index":319,"title":{},"content":{"39":{"position":[[91,10],[352,9],[539,9]]},"40":{"position":[[387,9]]}},"keywords":{}}],["anoth",{"_index":67,"title":{},"content":{"9":{"position":[[255,7]]},"12":{"position":[[350,7]]},"18":{"position":[[231,7]]},"25":{"position":[[211,7]]}},"keywords":{}}],["api",{"_index":81,"title":{},"content":{"11":{"position":[[144,3]]}},"keywords":{}}],["approach",{"_index":112,"title":{},"content":{"12":{"position":[[143,8]]}},"keywords":{}}],["architectur",{"_index":65,"title":{},"content":{"9":{"position":[[141,13]]},"17":{"position":[[68,12]]},"18":{"position":[[69,12]]}},"keywords":{}}],["argument",{"_index":327,"title":{},"content":{"39":{"position":[[425,9]]},"40":{"position":[[460,9]]},"41":{"position":[[782,10]]}},"keywords":{}}],["around",{"_index":74,"title":{},"content":{"11":{"position":[[75,6]]}},"keywords":{}}],["auto",{"_index":93,"title":{},"content":{"11":{"position":[[416,4]]},"39":{"position":[[55,4],[705,4]]}},"keywords":{}}],["automat",{"_index":156,"title":{},"content":{"15":{"position":[[104,14]]}},"keywords":{}}],["base",{"_index":31,"title":{},"content":{"6":{"position":[[135,5]]}},"keywords":{}}],["be",{"_index":353,"title":{},"content":{"42":{"position":[[173,5]]}},"keywords":{}}],["befor",{"_index":251,"title":{},"content":{"27":{"position":[[518,6],[963,6]]},"35":{"position":[[91,6],[260,6]]},"36":{"position":[[91,6],[158,6],[268,6]]}},"keywords":{}}],["begin",{"_index":393,"title":{},"content":{"42":{"position":[[1805,5]]}},"keywords":{}}],["behavior",{"_index":201,"title":{},"content":{"18":{"position":[[427,8]]}},"keywords":{}}],["below",{"_index":198,"title":{},"content":{"18":{"position":[[371,5]]}},"keywords":{}}],["best",{"_index":60,"title":{},"content":{"9":{"position":[[25,4]]}},"keywords":{}}],["beta.3"",{"_index":167,"title":{},"content":{"16":{"position":[[88,12]]}},"keywords":{}}],["between",{"_index":215,"title":{},"content":{"24":{"position":[[197,7]]}},"keywords":{}}],["bevi",{"_index":121,"title":{},"content":{"12":{"position":[[328,4]]}},"keywords":{}}],["bevy_renet",{"_index":119,"title":{},"content":{"12":{"position":[[280,11]]}},"keywords":{}}],["bool",{"_index":253,"title":{},"content":{"27":{"position":[[577,5],[1020,5]]},"39":{"position":[[464,4]]},"40":{"position":[[499,4]]},"41":{"position":[[380,4]]}},"keywords":{}}],["boolean",{"_index":330,"title":{},"content":{"39":{"position":[[580,8]]}},"keywords":{}}],["boolean>",{"_index":321,"title":{},"content":{"39":{"position":[[296,11]]},"40":{"position":[[331,11],[580,11]]},"41":{"position":[[327,11]]}},"keywords":{}}],["bridgenet2",{"_index":123,"title":{},"content":{"12":{"position":[[388,11]]}},"keywords":{}}],["call",{"_index":173,"title":{},"content":{"17":{"position":[[131,4],[467,4]]},"18":{"position":[[262,4]]},"25":{"position":[[236,4]]},"33":{"position":[[337,4]]},"35":{"position":[[221,7],[267,7]]},"36":{"position":[[229,7]]},"41":{"position":[[434,4],[604,6],[654,7]]},"42":{"position":[[2251,4],[2385,4]]}},"keywords":{}}],["case",{"_index":228,"title":{},"content":{"24":{"position":[[465,5],[532,4]]}},"keywords":{}}],["certain",{"_index":78,"title":{},"content":{"11":{"position":[[113,7]]},"33":{"position":[[200,7]]}},"keywords":{}}],["chain",{"_index":292,"title":{},"content":{"33":{"position":[[126,8]]},"34":{"position":[[220,8]]}},"keywords":{}}],["chang",{"_index":231,"title":{},"content":{"24":{"position":[[557,6]]},"38":{"position":[[146,6]]}},"keywords":{}}],["channel",{"_index":249,"title":{},"content":{"27":{"position":[[460,7]]},"30":{"position":[[36,8],[370,7]]},"32":{"position":[[102,8],[152,7]]},"38":{"position":[[94,9],[137,8],[201,7]]},"42":{"position":[[554,7]]}},"keywords":{}}],["channelev",{"_index":314,"title":{},"content":{"38":{"position":[[52,12]]}},"keywords":{}}],["check",{"_index":86,"title":{"39":{"position":[[5,9]]}},"content":{"11":{"position":[[286,8],[401,8]]},"27":{"position":[[663,5],[1106,5]]},"39":{"position":[[19,7],[730,8]]},"42":{"position":[[11,5]]}},"keywords":{}}],["checkout",{"_index":68,"title":{},"content":{"9":{"position":[[289,8]]}},"keywords":{}}],["child",{"_index":387,"title":{},"content":{"42":{"position":[[1591,5]]}},"keywords":{}}],["child:isa("modulescript"",{"_index":389,"title":{},"content":{"42":{"position":[[1635,35]]}},"keywords":{}}],["choic",{"_index":103,"title":{},"content":{"11":{"position":[[655,7]]},"12":{"position":[[90,7]]}},"keywords":{}}],["client",{"_index":197,"title":{},"content":{"18":{"position":[[363,7]]},"34":{"position":[[46,7],[158,8],[189,7]]},"35":{"position":[[156,6],[296,7]]},"36":{"position":[[198,6],[279,6]]},"40":{"position":[[712,7]]},"42":{"position":[[2408,6],[2502,6],[2568,6]]}},"keywords":{}}],["code",{"_index":181,"title":{},"content":{"17":{"position":[[291,4]]},"25":{"position":[[124,4]]},"32":{"position":[[242,4]]}},"keywords":{}}],["come",{"_index":279,"title":{},"content":{"30":{"position":[[345,4]]}},"keywords":{}}],["commonli",{"_index":129,"title":{},"content":{"13":{"position":[[70,8]]}},"keywords":{}}],["complet",{"_index":318,"title":{},"content":{"39":{"position":[[60,10],[710,10]]}},"keywords":{}}],["completionsimpl",{"_index":94,"title":{},"content":{"11":{"position":[[421,16]]}},"keywords":{}}],["compliment",{"_index":333,"title":{},"content":{"39":{"position":[[823,10]]}},"keywords":{}}],["compon",{"_index":366,"title":{},"content":{"42":{"position":[[715,9],[789,10]]}},"keywords":{}}],["componentinstance<t>",{"_index":368,"title":{},"content":{"42":{"position":[[736,26]]}},"keywords":{}}],["compress",{"_index":234,"title":{"27":{"position":[[0,12]]}},"content":{"27":{"position":[[209,8]]}},"keywords":{}}],["compress/decompress",{"_index":235,"title":{},"content":{"27":{"position":[[3,19]]}},"keywords":{}}],["configur",{"_index":219,"title":{"30":{"position":[[0,14]]},"38":{"position":[[0,14]]}},"content":{"24":{"position":[[269,14]]},"30":{"position":[[20,13]]},"32":{"position":[[35,15]]},"38":{"position":[[29,9]]},"42":{"position":[[1867,13]]}},"keywords":{}}],["construct",{"_index":56,"title":{"9":{"position":[[23,14]]}},"content":{},"keywords":{}}],["crate",{"_index":120,"title":{},"content":{"12":{"position":[[305,5]]}},"keywords":{}}],["creat",{"_index":105,"title":{},"content":{"11":{"position":[[678,8]]},"17":{"position":[[365,6]]},"18":{"position":[[94,8],[400,8]]},"32":{"position":[[56,7]]},"39":{"position":[[107,8]]},"42":{"position":[[309,6],[1106,6]]}},"keywords":{}}],["createhook",{"_index":232,"title":{"25":{"position":[[0,11]]}},"content":{},"keywords":{}}],["custom",{"_index":38,"title":{},"content":{"7":{"position":[[77,6]]},"18":{"position":[[409,6]]}},"keywords":{}}],["data",{"_index":106,"title":{"12":{"position":[[0,4]]},"13":{"position":[[11,4]]}},"content":{"12":{"position":[[131,4]]},"13":{"position":[[0,4],[204,4],[321,4],[417,4]]},"27":{"position":[[28,5],[102,5],[237,5]]},"33":{"position":[[473,4]]},"34":{"position":[[34,4],[146,4],[212,4],[305,4]]},"40":{"position":[[55,4],[81,4],[700,4]]},"41":{"position":[[149,7]]},"42":{"position":[[730,5],[2296,7],[2425,7],[2488,4],[2558,4]]}},"keywords":{}}],["declar",{"_index":359,"title":{},"content":{"42":{"position":[[376,7]]}},"keywords":{}}],["decompress",{"_index":242,"title":{},"content":{"27":{"position":[[221,10]]}},"keywords":{}}],["default",{"_index":220,"title":{},"content":{"24":{"position":[[291,8]]},"30":{"position":[[93,8],[185,8]]},"34":{"position":[[112,8]]},"40":{"position":[[654,8]]},"42":{"position":[[1909,7]]}},"keywords":{}}],["defaultconfigur",{"_index":360,"title":{},"content":{"42":{"position":[[529,20]]}},"keywords":{}}],["depend",{"_index":152,"title":{},"content":{"15":{"position":[[0,14]]}},"keywords":{}}],["descriptionreli",{"_index":315,"title":{},"content":{"38":{"position":[[209,19]]}},"keywords":{}}],["deseri",{"_index":238,"title":{},"content":{"27":{"position":[[85,11],[498,11]]}},"keywords":{}}],["design",{"_index":97,"title":{"12":{"position":[[15,7]]}},"content":{"11":{"position":[[472,6],[648,6]]},"12":{"position":[[83,6],[160,7],[193,6]]},"13":{"position":[[12,6],[40,7],[140,6],[216,7],[237,6]]},"17":{"position":[[346,8]]}},"keywords":{}}],["detail",{"_index":36,"title":{},"content":{"7":{"position":[[47,8]]},"11":{"position":[[636,7]]}},"keywords":{}}],["determin",{"_index":240,"title":{},"content":{"27":{"position":[[188,9]]}},"keywords":{}}],["differ",{"_index":229,"title":{},"content":{"24":{"position":[[506,9],[572,9]]}},"keywords":{}}],["difficult",{"_index":138,"title":{},"content":{"13":{"position":[[284,9]]}},"keywords":{}}],["don't",{"_index":66,"title":{},"content":{"9":{"position":[[160,5]]}},"keywords":{}}],["driven",{"_index":96,"title":{"12":{"position":[[5,6]]},"13":{"position":[[16,8]]}},"content":{"11":{"position":[[465,6]]},"12":{"position":[[136,6]]},"13":{"position":[[5,6],[33,6],[133,6],[209,6],[230,6]]}},"keywords":{}}],["drop",{"_index":285,"title":{},"content":{"30":{"position":[[473,7]]},"38":{"position":[[247,8],[306,7]]}},"keywords":{}}],["due",{"_index":294,"title":{},"content":{"33":{"position":[[193,3]]}},"keywords":{}}],["each",{"_index":216,"title":{},"content":{"24":{"position":[[205,4]]},"25":{"position":[[257,4]]}},"keywords":{}}],["ec",{"_index":44,"title":{},"content":{"7":{"position":[[138,3]]},"9":{"position":[[263,3],[311,3]]},"12":{"position":[[124,4],[333,3],[471,3]]},"13":{"position":[[186,3],[475,4],[509,3],[576,4]]},"42":{"position":[[209,4]]}},"keywords":{}}],["ecr",{"_index":54,"title":{"8":{"position":[[0,3]]}},"content":{"9":{"position":[[75,4],[298,3]]}},"keywords":{}}],["enabl",{"_index":332,"title":{},"content":{"39":{"position":[[698,6],[799,6]]}},"keywords":{}}],["encourag",{"_index":140,"title":{},"content":{"13":{"position":[[384,10],[491,10]]},"39":{"position":[[784,10]]}},"keywords":{}}],["end",{"_index":29,"title":{},"content":{"5":{"position":[[281,3]]},"27":{"position":[[829,3],[937,4],[1271,3],[1379,4]]},"33":{"position":[[456,3]]},"39":{"position":[[505,3]]},"40":{"position":[[174,4],[540,3]]},"41":{"position":[[421,3]]},"42":{"position":[[1714,3],[1718,3],[2347,3],[2476,3],[2629,3]]}},"keywords":{}}],["ensur",{"_index":214,"title":{},"content":{"24":{"position":[[168,7]]}},"keywords":{}}],["entiti",{"_index":363,"title":{},"content":{"42":{"position":[[644,8]]}},"keywords":{}}],["entityid",{"_index":365,"title":{},"content":{"42":{"position":[[691,8]]}},"keywords":{}}],["entitypayload",{"_index":364,"title":{},"content":{"42":{"position":[[658,13]]}},"keywords":{}}],["evaera",{"_index":149,"title":{},"content":{"13":{"position":[[584,7]]}},"keywords":{}}],["event",{"_index":128,"title":{},"content":{"13":{"position":[[27,5],[127,5],[224,5],[334,6],[373,7]]},"24":{"position":[[248,5],[356,5],[516,7],[582,6]]},"25":{"position":[[141,7]]},"27":{"position":[[169,5]]},"30":{"position":[[111,6],[131,5]]},"32":{"position":[[115,6],[259,6]]},"42":{"position":[[586,5],[1838,9]]}},"keywords":{}}],["eventslack",{"_index":84,"title":{},"content":{"11":{"position":[[267,10]]}},"keywords":{}}],["exampl",{"_index":200,"title":{},"content":{"18":{"position":[[389,7]]},"25":{"position":[[303,8]]},"33":{"position":[[383,8]]},"35":{"position":[[122,8]]},"36":{"position":[[134,8]]},"39":{"position":[[517,8]]},"42":{"position":[[55,7],[122,7]]}},"keywords":{}}],["examplesystem(world",{"_index":400,"title":{},"content":{"42":{"position":[[2196,20]]}},"keywords":{}}],["expect",{"_index":322,"title":{},"content":{"39":{"position":[[335,6],[668,6]]},"40":{"position":[[370,6]]}},"keywords":{}}],["export",{"_index":155,"title":{},"content":{"15":{"position":[[91,6]]}},"keywords":{}}],["featur",{"_index":278,"title":{},"content":{"30":{"position":[[332,7]]},"39":{"position":[[840,9]]}},"keywords":{}}],["few",{"_index":312,"title":{},"content":{"38":{"position":[[12,3]]}},"keywords":{}}],["filter",{"_index":30,"title":{},"content":{"6":{"position":[[64,6],[87,7]]},"33":{"position":[[105,6]]},"41":{"position":[[524,6],[632,6]]}},"keywords":{}}],["final",{"_index":395,"title":{},"content":{"42":{"position":[[1943,8]]}},"keywords":{}}],["find",{"_index":162,"title":{},"content":{"16":{"position":[[8,4]]}},"keywords":{}}],["firstli",{"_index":354,"title":{},"content":{"42":{"position":[[300,8]]}},"keywords":{}}],["fix",{"_index":296,"title":{},"content":{"33":{"position":[[327,3]]}},"keywords":{}}],["frame",{"_index":144,"title":{},"content":{"13":{"position":[[443,5],[452,6]]},"17":{"position":[[320,5],[329,5]]},"24":{"position":[[210,6]]},"30":{"position":[[266,5],[430,5]]},"33":{"position":[[90,6]]},"38":{"position":[[318,6],[352,6]]},"40":{"position":[[109,6]]},"41":{"position":[[514,5]]},"42":{"position":[[2261,5],[2395,5]]}},"keywords":{}}],["function",{"_index":1,"title":{"1":{"position":[[0,10]]},"4":{"position":[[0,10]]},"23":{"position":[[0,10]]},"31":{"position":[[0,10]]}},"content":{"7":{"position":[[192,8]]},"12":{"position":[[430,13]]},"17":{"position":[[108,9]]},"18":{"position":[[195,9],[210,8],[239,8]]},"25":{"position":[[82,8],[190,8],[219,8]]},"35":{"position":[[52,8]]},"36":{"position":[[52,8]]},"42":{"position":[[236,8],[1169,10],[2187,8]]}},"keywords":{}}],["futur",{"_index":280,"title":{},"content":{"30":{"position":[[353,6]]}},"keywords":{}}],["game",{"_index":64,"title":{},"content":{"9":{"position":[[136,4]]},"12":{"position":[[155,4]]},"17":{"position":[[63,4]]},"18":{"position":[[64,4]]},"42":{"position":[[63,4],[99,5]]}},"keywords":{}}],["game:getservice("runservice"",{"_index":187,"title":{},"content":{"17":{"position":[[537,39]]},"18":{"position":[[488,39]]}},"keywords":{}}],["gener",{"_index":135,"title":{},"content":{"13":{"position":[[194,9]]}},"keywords":{}}],["get",{"_index":99,"title":{},"content":{"11":{"position":[[548,7]]}},"keywords":{}}],["go",{"_index":126,"title":{"13":{"position":[[4,2]]}},"content":{},"keywords":{}}],["handl",{"_index":208,"title":{},"content":{"22":{"position":[[72,8]]}},"keywords":{}}],["heartbeat",{"_index":179,"title":{},"content":{"17":{"position":[[234,9]]},"24":{"position":[[427,10]]},"25":{"position":[[337,10]]}},"keywords":{}}],["here",{"_index":394,"title":{},"content":{"42":{"position":[[1891,4]]}},"keywords":{}}],["hook",{"_index":168,"title":{"17":{"position":[[0,5]]}},"content":{"17":{"position":[[0,5],[21,5],[214,5],[374,5],[673,4]]},"18":{"position":[[105,4],[624,4]]},"25":{"position":[[354,4]]}},"keywords":{}}],["hooksdata",{"_index":95,"title":{},"content":{"11":{"position":[[455,9]]}},"keywords":{}}],["ident",{"_index":193,"title":{},"content":{"18":{"position":[[151,9]]}},"keywords":{}}],["identifi",{"_index":204,"title":{},"content":{"21":{"position":[[54,10],[77,8]]},"22":{"position":[[38,10]]},"32":{"position":[[90,11]]},"34":{"position":[[97,11]]}},"keywords":{}}],["implement",{"_index":48,"title":{},"content":{"7":{"position":[[216,14]]},"30":{"position":[[314,12]]}},"keywords":{}}],["incom",{"_index":308,"title":{},"content":{"35":{"position":[[74,8]]}},"keywords":{}}],["index",{"_index":222,"title":{},"content":{"24":{"position":[[312,5]]}},"keywords":{}}],["influenc",{"_index":113,"title":{},"content":{"12":{"position":[[178,10]]}},"keywords":{}}],["inform",{"_index":52,"title":{},"content":{"7":{"position":[[279,11]]},"33":{"position":[[487,12]]},"34":{"position":[[319,12]]},"35":{"position":[[328,12]]},"36":{"position":[[336,12]]}},"keywords":{}}],["init.client.luau",{"_index":379,"title":{},"content":{"42":{"position":[[1254,16]]}},"keywords":{}}],["init.server.luau",{"_index":378,"title":{},"content":{"42":{"position":[[1235,16]]}},"keywords":{}}],["initi",{"_index":211,"title":{},"content":{"24":{"position":[[97,11]]},"42":{"position":[[179,9]]}},"keywords":{}}],["inspir",{"_index":118,"title":{},"content":{"12":{"position":[[263,11]]}},"keywords":{}}],["instal",{"_index":150,"title":{"14":{"position":[[0,13]]}},"content":{"15":{"position":[[162,7]]}},"keywords":{}}],["integr",{"_index":41,"title":{},"content":{"7":{"position":[[106,9]]},"9":{"position":[[44,11],[109,11]]},"11":{"position":[[438,11]]},"17":{"position":[[40,9]]},"18":{"position":[[36,9]]}},"keywords":{}}],["intellisens",{"_index":87,"title":{},"content":{"11":{"position":[[299,12]]},"39":{"position":[[38,12]]}},"keywords":{}}],["interfac",{"_index":270,"title":{},"content":{"30":{"position":[[10,9]]}},"keywords":{}}],["intern",{"_index":50,"title":{},"content":{"7":{"position":[[258,11]]}},"keywords":{}}],["introduct",{"_index":70,"title":{"10":{"position":[[0,12]]}},"content":{},"keywords":{}}],["invoc",{"_index":276,"title":{},"content":{"30":{"position":[[252,11]]}},"keywords":{}}],["issu",{"_index":79,"title":{},"content":{"11":{"position":[[121,6],[186,6]]}},"keywords":{}}],["it'",{"_index":132,"title":{},"content":{"13":{"position":[[151,4],[486,4]]},"17":{"position":[[179,4]]},"25":{"position":[[280,4]]},"32":{"position":[[188,4]]},"42":{"position":[[79,4]]}},"keywords":{}}],["iter",{"_index":14,"title":{"5":{"position":[[0,9]]}},"content":{"5":{"position":[[64,9]]},"33":{"position":[[49,9],[247,9]]},"41":{"position":[[105,8]]}},"keywords":{}}],["keep",{"_index":101,"title":{},"content":{"11":{"position":[[589,4]]}},"keywords":{}}],["key",{"_index":110,"title":{},"content":{"12":{"position":[[79,3]]},"42":{"position":[[1848,3]]}},"keywords":{}}],["know",{"_index":139,"title":{},"content":{"13":{"position":[[297,4]]}},"keywords":{}}],["larg",{"_index":114,"title":{},"content":{"12":{"position":[[215,7]]}},"keywords":{}}],["learn",{"_index":59,"title":{},"content":{"9":{"position":[[12,8]]},"11":{"position":[[487,5],[605,5]]}},"keywords":{}}],["librari",{"_index":43,"title":{},"content":{"7":{"position":[[125,7]]},"9":{"position":[[267,8],[315,8]]},"11":{"position":[[20,7],[56,7],[198,7]]},"12":{"position":[[51,9],[207,7],[369,7],[457,9]]},"27":{"position":[[48,7]]}},"keywords":{}}],["limit",{"_index":295,"title":{},"content":{"33":{"position":[[208,11]]}},"keywords":{}}],["load",{"_index":373,"title":{},"content":{"42":{"position":[[912,6]]}},"keywords":{}}],["local",{"_index":185,"title":{},"content":{"17":{"position":[[518,5],[577,5],[619,5],[667,5]]},"18":{"position":[[469,5],[528,5],[570,5],[618,5]]},"25":{"position":[[348,5]]},"27":{"position":[[243,5],[291,5],[333,5],[405,5],[583,5],[610,5],[1026,5],[1053,5]]},"39":{"position":[[144,5],[186,5],[258,5]]},"40":{"position":[[179,5],[221,5],[293,5],[544,5]]},"41":{"position":[[175,5],[217,5],[289,5]]},"42":{"position":[[409,5],[451,5],[523,5],[800,5],[919,5],[1271,5],[1319,5],[1346,5],[1371,5],[1413,5],[1461,5],[1487,5],[1565,5],[2092,5],[2140,5],[2181,5]]}},"keywords":{}}],["loop",{"_index":32,"title":{"7":{"position":[[0,4]]}},"content":{"7":{"position":[[13,4],[27,5],[84,4]]},"24":{"position":[[21,5],[27,5],[44,4],[157,5]]},"30":{"position":[[177,4]]},"41":{"position":[[169,5]]},"42":{"position":[[294,5],[1125,5],[1352,4],[1493,4],[1815,4]]}},"keywords":{}}],["loop.new(world",{"_index":385,"title":{},"content":{"42":{"position":[[1500,15]]}},"keywords":{}}],["loop:begin",{"_index":224,"title":{},"content":{"24":{"position":[[370,12]]},"42":{"position":[[1896,12]]}},"keywords":{}}],["loop:schedulesystems(system",{"_index":392,"title":{},"content":{"42":{"position":[[1722,29]]}},"keywords":{}}],["lt;/>",{"_index":2,"title":{},"content":{"2":{"position":[[0,9]]},"5":{"position":[[0,9]]},"6":{"position":[[0,9]]},"21":{"position":[[0,9]]},"22":{"position":[[0,9]]},"24":{"position":[[0,9]]},"25":{"position":[[0,9]]},"30":{"position":[[0,9]]},"32":{"position":[[0,9]]},"33":{"position":[[0,9]]},"34":{"position":[[0,9]]},"35":{"position":[[0,9]]},"36":{"position":[[0,9]]}},"keywords":{}}],["luau",{"_index":69,"title":{},"content":{"9":{"position":[[306,4]]},"33":{"position":[[229,4]]}},"keywords":{}}],["luautypescript",{"_index":169,"title":{},"content":{"17":{"position":[[6,14]]},"18":{"position":[[13,14]]},"39":{"position":[[129,14]]},"40":{"position":[[0,14]]},"41":{"position":[[0,14]]},"42":{"position":[[158,14]]}},"keywords":{}}],["made",{"_index":111,"title":{},"content":{"12":{"position":[[106,4]]},"42":{"position":[[189,4]]}},"keywords":{}}],["make",{"_index":115,"title":{},"content":{"12":{"position":[[227,5]]},"13":{"position":[[275,5]]},"24":{"position":[[229,4]]},"42":{"position":[[1824,4]]}},"keywords":{}}],["manner",{"_index":143,"title":{},"content":{"13":{"position":[[436,6]]}},"keywords":{}}],["match",{"_index":21,"title":{},"content":{"5":{"position":[[152,5]]}},"keywords":{}}],["matter",{"_index":34,"title":{"42":{"position":[[0,6]]}},"content":{"7":{"position":[[20,6],[153,7]]},"9":{"position":[[170,7],[199,6]]},"13":{"position":[[563,6]]},"24":{"position":[[37,6],[150,6]]},"30":{"position":[[170,6]]},"42":{"position":[[0,6],[48,6],[202,6],[287,6],[782,6],[1118,6],[1277,6],[1957,6]]}},"keywords":{}}],["matter'",{"_index":377,"title":{},"content":{"42":{"position":[[1214,8]]}},"keywords":{}}],["matter.loop",{"_index":383,"title":{},"content":{"42":{"position":[[1359,11]]}},"keywords":{}}],["matter.world",{"_index":382,"title":{},"content":{"42":{"position":[[1333,12]]}},"keywords":{}}],["matterrepl",{"_index":369,"title":{},"content":{"42":{"position":[[806,18],[999,17],[1019,18]]}},"keywords":{}}],["mean",{"_index":331,"title":{},"content":{"39":{"position":[[594,5]]}},"keywords":{}}],["meant",{"_index":226,"title":{},"content":{"24":{"position":[[407,5]]}},"keywords":{}}],["method",{"_index":225,"title":{},"content":{"24":{"position":[[383,7]]},"33":{"position":[[158,6],[180,7]]},"39":{"position":[[609,7]]},"41":{"position":[[449,7],[593,6]]}},"keywords":{}}],["middlewar",{"_index":213,"title":{"26":{"position":[[0,10]]}},"content":{"24":{"position":[[131,10]]},"35":{"position":[[308,10]]},"36":{"position":[[316,10]]},"42":{"position":[[1223,11]]}},"keywords":{}}],["middlewarestrict",{"_index":91,"title":{},"content":{"11":{"position":[[379,16]]}},"keywords":{}}],["modifi",{"_index":7,"title":{},"content":{"2":{"position":[[86,8]]}},"keywords":{}}],["modulescript",{"_index":356,"title":{},"content":{"42":{"position":[[330,12],[1998,12]]}},"keywords":{}}],["more",{"_index":51,"title":{},"content":{"7":{"position":[[274,4]]},"11":{"position":[[493,4],[611,4]]},"33":{"position":[[482,4]]},"34":{"position":[[314,4]]},"35":{"position":[[323,4]]},"36":{"position":[[331,4]]}},"keywords":{}}],["name",{"_index":367,"title":{},"content":{"42":{"position":[[725,4]]}},"keywords":{}}],["net",{"_index":42,"title":{"19":{"position":[[0,3]]}},"content":{"7":{"position":[[121,3],[251,3]]},"9":{"position":[[66,3],[121,3],[247,3]]},"11":{"position":[[0,3],[342,3],[508,3],[687,4]]},"12":{"position":[[25,3],[98,3],[400,3]]},"13":{"position":[[356,3],[518,4]]},"15":{"position":[[15,3],[157,4]]},"16":{"position":[[13,3]]},"17":{"position":[[50,3],[338,3],[583,3]]},"18":{"position":[[46,3],[534,3]]},"25":{"position":[[34,5],[109,3]]},"27":{"position":[[297,3]]},"32":{"position":[[227,3]]},"39":{"position":[[150,3]]},"40":{"position":[[185,3]]},"41":{"position":[[181,3]]},"42":{"position":[[214,3],[415,3],[1165,3],[1377,3]]}},"keywords":{}}],["net<boolean>",{"_index":375,"title":{},"content":{"42":{"position":[[939,18]]}},"keywords":{}}],["net<entitypayload>",{"_index":370,"title":{},"content":{"42":{"position":[[825,24]]}},"keywords":{}}],["net<numb",{"_index":337,"title":{},"content":{"40":{"position":[[557,14]]}},"keywords":{}}],["net<u...>",{"_index":266,"title":{},"content":{"27":{"position":[[1168,15]]}},"keywords":{}}],["net'",{"_index":350,"title":{},"content":{"42":{"position":[[116,5]]}},"keywords":{}}],["net.createhook",{"_index":49,"title":{},"content":{"7":{"position":[[234,16],[304,15]]},"17":{"position":[[392,16]]},"18":{"position":[[116,16],[442,16]]},"25":{"position":[[10,15],[361,16]]}},"keywords":{}}],["net.createhook(rout",{"_index":190,"title":{},"content":{"17":{"position":[[680,22]]},"18":{"position":[[631,22]]}},"keywords":{}}],["net.new",{"_index":338,"title":{},"content":{"40":{"position":[[594,9]]}},"keywords":{}}],["net.new(defaultconfigur",{"_index":371,"title":{},"content":{"42":{"position":[[852,29],[960,29]]}},"keywords":{}}],["net.rout",{"_index":206,"title":{},"content":{"22":{"position":[[10,10]]},"27":{"position":[[347,9]]},"39":{"position":[[200,9]]},"40":{"position":[[235,9]]},"41":{"position":[[231,9]]},"42":{"position":[[465,9]]}},"keywords":{}}],["net.route<u...>",{"_index":245,"title":{},"content":{"27":{"position":[[382,22]]},"39":{"position":[[235,22]]},"40":{"position":[[270,22]]},"41":{"position":[[266,22]]},"42":{"position":[[500,22]]}},"keywords":{}}],["net.serv",{"_index":203,"title":{},"content":{"21":{"position":[[10,11]]},"41":{"position":[[764,10]]}},"keywords":{}}],["net.start",{"_index":210,"title":{},"content":{"24":{"position":[[10,10]]},"42":{"position":[[1786,15]]}},"keywords":{}}],["net.start(loop",{"_index":45,"title":{},"content":{"7":{"position":[[165,15]]},"18":{"position":[[168,15]]},"42":{"position":[[1147,15],[1541,15]]}},"keywords":{}}],["net:query():from(...send",{"_index":27,"title":{},"content":{"5":{"position":[[233,28]]}},"keywords":{}}],["network",{"_index":71,"title":{},"content":{"11":{"position":[[9,10],[152,10],[256,10]]},"12":{"position":[[40,10],[294,10],[358,10]]},"17":{"position":[[280,10]]},"35":{"position":[[206,8]]},"36":{"position":[[121,8],[214,8]]},"38":{"position":[[192,8]]},"42":{"position":[[2240,10],[2374,10]]}},"keywords":{}}],["never",{"_index":316,"title":{},"content":{"38":{"position":[[241,5]]}},"keywords":{}}],["new",{"_index":80,"title":{"32":{"position":[[0,4]]}},"content":{"11":{"position":[[140,3]]},"32":{"position":[[66,3]]}},"keywords":{}}],["next",{"_index":335,"title":{},"content":{"40":{"position":[[104,4]]}},"keywords":{}}],["note",{"_index":154,"title":{},"content":{"15":{"position":[[70,5]]},"24":{"position":[[217,4]]},"30":{"position":[[275,4]]},"32":{"position":[[122,4]]},"33":{"position":[[188,4]]}},"keywords":{}}],["now",{"_index":62,"title":{},"content":{"9":{"position":[[84,3]]},"42":{"position":[[1073,3]]}},"keywords":{}}],["npm",{"_index":164,"title":{},"content":{"16":{"position":[[37,4]]}},"keywords":{}}],["num",{"_index":328,"title":{},"content":{"39":{"position":[[454,4]]},"40":{"position":[[489,4]]},"41":{"position":[[370,4]]}},"keywords":{}}],["number",{"_index":16,"title":{},"content":{"5":{"position":[[14,7]]},"30":{"position":[[225,6]]},"39":{"position":[[564,7]]}},"keywords":{}}],["number>",{"_index":247,"title":{},"content":{"27":{"position":[[435,10]]}},"keywords":{}}],["object",{"_index":39,"title":{},"content":{"7":{"position":[[89,6]]},"22":{"position":[[49,6]]},"33":{"position":[[278,6],[371,7]]}},"keywords":{}}],["on",{"_index":107,"title":{},"content":{"12":{"position":[[0,3]]},"38":{"position":[[83,3]]}},"keywords":{}}],["one(",{"_index":10,"title":{},"content":{"2":{"position":[[131,6]]}},"keywords":{}}],["onto",{"_index":293,"title":{},"content":{"33":{"position":[[165,4]]}},"keywords":{}}],["oppos",{"_index":127,"title":{},"content":{"13":{"position":[[19,7]]}},"keywords":{}}],["opt",{"_index":134,"title":{},"content":{"13":{"position":[[178,3]]}},"keywords":{}}],["order",{"_index":137,"title":{},"content":{"13":{"position":[[260,9],[428,7]]},"27":{"position":[[135,5]]},"30":{"position":[[439,6],[505,6]]},"33":{"position":[[318,5]]},"38":{"position":[[271,8],[340,7]]}},"keywords":{}}],["out",{"_index":344,"title":{},"content":{"41":{"position":[[639,3]]},"42":{"position":[[17,3]]}},"keywords":{}}],["outgo",{"_index":311,"title":{},"content":{"36":{"position":[[74,8]]}},"keywords":{}}],["output",{"_index":341,"title":{},"content":{"41":{"position":[[124,6]]}},"keywords":{}}],["over",{"_index":15,"title":{"5":{"position":[[10,4]]}},"content":{"5":{"position":[[74,4]]},"33":{"position":[[257,4]]},"35":{"position":[[197,4]]},"36":{"position":[[112,4],[205,4]]},"38":{"position":[[183,4]]},"40":{"position":[[60,4]]}},"keywords":{}}],["overhead",{"_index":82,"title":{},"content":{"11":{"position":[[218,8]]}},"keywords":{}}],["packag",{"_index":159,"title":{},"content":{"15":{"position":[[176,7]]}},"keywords":{}}],["packet",{"_index":9,"title":{},"content":{"2":{"position":[[117,6]]},"5":{"position":[[109,7]]},"6":{"position":[[95,7]]},"17":{"position":[[170,8],[509,8]]},"18":{"position":[[338,7]]},"25":{"position":[[285,6]]},"27":{"position":[[510,7],[955,7]]},"30":{"position":[[392,7],[458,7]]},"33":{"position":[[66,7]]},"35":{"position":[[83,7],[174,6]]},"36":{"position":[[83,7],[184,6],[304,7]]},"38":{"position":[[166,7],[229,7],[291,7]]},"40":{"position":[[690,6]]},"41":{"position":[[53,7],[488,7],[566,7]]}},"keywords":{}}],["page",{"_index":33,"title":{"9":{"position":[[9,4]]}},"content":{"7":{"position":[[8,4]]}},"keywords":{}}],["paramet",{"_index":12,"title":{},"content":{"2":{"position":[[154,10]]},"27":{"position":[[175,9]]}},"keywords":{}}],["pass",{"_index":183,"title":{},"content":{"17":{"position":[[422,4]]},"34":{"position":[[248,7]]}},"keywords":{}}],["payload",{"_index":361,"title":{},"content":{"42":{"position":[[620,7]]}},"keywords":{}}],["per",{"_index":283,"title":{},"content":{"30":{"position":[[426,3]]},"38":{"position":[[314,3],[348,3]]}},"keywords":{}}],["player",{"_index":4,"title":{},"content":{"2":{"position":[[36,7],[48,6]]},"5":{"position":[[22,6]]},"34":{"position":[[258,6],[268,7]]},"40":{"position":[[763,6],[775,6]]},"41":{"position":[[744,6],[755,6]]},"42":{"position":[[901,6],[2288,7]]}},"keywords":{}}],["playerload",{"_index":374,"title":{},"content":{"42":{"position":[[925,13],[1038,12],[1053,13],[2146,12]]}},"keywords":{}}],["playerloaded:queri",{"_index":402,"title":{},"content":{"42":{"position":[[2307,20],[2436,20]]}},"keywords":{}}],["playerloaded:send(...data",{"_index":403,"title":{},"content":{"42":{"position":[[2523,26]]}},"keywords":{}}],["playerloaded:send(...data):to(play",{"_index":404,"title":{},"content":{"42":{"position":[[2591,37]]}},"keywords":{}}],["pleas",{"_index":217,"title":{},"content":{"24":{"position":[[222,6]]}},"keywords":{}}],["po",{"_index":26,"title":{},"content":{"5":{"position":[[213,4]]},"39":{"position":[[449,4]]},"40":{"position":[[484,4]]},"41":{"position":[[357,4]]}},"keywords":{}}],["posit",{"_index":342,"title":{},"content":{"41":{"position":[[131,9]]}},"keywords":{}}],["practic",{"_index":61,"title":{},"content":{"9":{"position":[[30,9]]}},"keywords":{}}],["prefer",{"_index":145,"title":{},"content":{"13":{"position":[[459,10]]}},"keywords":{}}],["previou",{"_index":291,"title":{},"content":{"33":{"position":[[81,8]]},"41":{"position":[[505,8]]}},"keywords":{}}],["process",{"_index":175,"title":{},"content":{"17":{"position":[[157,7],[496,7]]},"18":{"position":[[288,7]]},"25":{"position":[[272,7]]},"35":{"position":[[107,10]]},"40":{"position":[[94,9]]}},"keywords":{}}],["project",{"_index":351,"title":{},"content":{"42":{"position":[[130,8]]}},"keywords":{}}],["properti",{"_index":202,"title":{"20":{"position":[[0,11]]}},"content":{},"keywords":{}}],["provid",{"_index":11,"title":{},"content":{"2":{"position":[[138,8]]},"6":{"position":[[148,8]]},"11":{"position":[[132,7],[351,8]]},"12":{"position":[[414,7]]},"25":{"position":[[158,7]]},"27":{"position":[[1145,8]]},"39":{"position":[[30,7],[74,9]]},"42":{"position":[[218,8]]}},"keywords":{}}],["push",{"_index":124,"title":{},"content":{"12":{"position":[[404,6]]}},"keywords":{}}],["put",{"_index":346,"title":{},"content":{"41":{"position":[[715,7]]}},"keywords":{}}],["queri",{"_index":141,"title":{"33":{"position":[[0,6]]},"41":{"position":[[0,9]]}},"content":{"13":{"position":[[402,5]]},"22":{"position":[[81,7]]},"33":{"position":[[174,5],[464,8]]},"40":{"position":[[148,5]]},"41":{"position":[[15,8],[43,5],[443,5]]},"42":{"position":[[2220,5],[2354,5]]}},"keywords":{}}],["queryresult",{"_index":13,"title":{"3":{"position":[[0,11]]},"5":{"position":[[15,12]]}},"content":{"5":{"position":[[49,11],[81,11]]},"6":{"position":[[75,11]]},"33":{"position":[[26,11],[266,11],[359,11]]},"41":{"position":[[699,11]]}},"keywords":{}}],["queryresult'",{"_index":19,"title":{},"content":{"5":{"position":[[124,13]]},"6":{"position":[[112,13]]}},"keywords":{}}],["queryresult:from",{"_index":24,"title":{},"content":{"5":{"position":[[184,17]]},"6":{"position":[[10,17]]},"33":{"position":[[139,18]]}},"keywords":{}}],["queue",{"_index":194,"title":{},"content":{"18":{"position":[[309,6]]},"25":{"position":[[292,6]]}},"keywords":{}}],["quot;0.7.0",{"_index":166,"title":{},"content":{"16":{"position":[[76,11]]}},"keywords":{}}],["quot;@rbxts/yetanothernet"",{"_index":165,"title":{},"content":{"16":{"position":[[42,33]]}},"keywords":{}}],["quot;boolean"",{"_index":267,"title":{},"content":{"27":{"position":[[1239,19]]}},"keywords":{}}],["quot;default"",{"_index":273,"title":{},"content":{"30":{"position":[[194,19]]},"42":{"position":[[594,20]]}},"keywords":{}}],["quot;hello",{"_index":324,"title":{},"content":{"39":{"position":[[376,12]]},"40":{"position":[[411,12],[624,12]]}},"keywords":{}}],["quot;net_server"",{"_index":6,"title":{},"content":{"2":{"position":[[57,23]]},"21":{"position":[[22,22]]}},"keywords":{}}],["quot;reliable"",{"_index":250,"title":{},"content":{"27":{"position":[[470,21]]},"30":{"position":[[45,20]]},"42":{"position":[[564,21]]}},"keywords":{}}],["quot;string"",{"_index":258,"title":{},"content":{"27":{"position":[[759,18],[798,18],[1200,18]]}},"keywords":{}}],["quot;unreliable"",{"_index":271,"title":{},"content":{"30":{"position":[[68,22]]}},"keywords":{}}],["quot;yetanotherclown/yetanothernet@0.7.0"",{"_index":153,"title":{},"content":{"15":{"position":[[21,47]]}},"keywords":{}}],["ran",{"_index":307,"title":{},"content":{"35":{"position":[[67,3]]},"36":{"position":[[67,3]]}},"keywords":{}}],["ratelimit",{"_index":274,"title":{},"content":{"30":{"position":[[214,10],[294,12]]}},"keywords":{}}],["read",{"_index":102,"title":{},"content":{"11":{"position":[[594,7]]},"13":{"position":[[555,7]]}},"keywords":{}}],["real",{"_index":349,"title":{},"content":{"42":{"position":[[94,4]]}},"keywords":{}}],["receiv",{"_index":282,"title":{},"content":{"30":{"position":[[417,8],[493,8]]},"34":{"position":[[200,7]]},"35":{"position":[[163,8]]},"36":{"position":[[291,8]]},"40":{"position":[[164,9]]}},"keywords":{}}],["recipi",{"_index":8,"title":{},"content":{"2":{"position":[[99,10]]},"34":{"position":[[69,10]]}},"keywords":{}}],["recommend",{"_index":176,"title":{},"content":{"17":{"position":[[184,11]]},"32":{"position":[[193,11]]}},"keywords":{}}],["reliabl",{"_index":272,"title":{},"content":{"30":{"position":[[102,8],[378,9]]},"38":{"position":[[104,8]]}},"keywords":{}}],["remot",{"_index":289,"title":{},"content":{"32":{"position":[[180,7]]}},"keywords":{}}],["remoteev",{"_index":76,"title":{},"content":{"11":{"position":[[91,12],[329,12]]},"13":{"position":[[102,12]]}},"keywords":{}}],["remoteeventsord",{"_index":83,"title":{},"content":{"11":{"position":[[232,20]]}},"keywords":{}}],["replic",{"_index":362,"title":{},"content":{"42":{"position":[[632,11],[772,9]]}},"keywords":{}}],["replicatedstorag",{"_index":357,"title":{},"content":{"42":{"position":[[346,17]]}},"keywords":{}}],["repositori",{"_index":352,"title":{},"content":{"42":{"position":[[146,11]]}},"keywords":{}}],["request",{"_index":209,"title":{},"content":{"22":{"position":[[98,9]]}},"keywords":{}}],["requir",{"_index":147,"title":{},"content":{"13":{"position":[[534,9]]}},"keywords":{}}],["require("matter.luau"",{"_index":380,"title":{},"content":{"42":{"position":[[1286,32]]}},"keywords":{}}],["require("net.luau"",{"_index":188,"title":{},"content":{"17":{"position":[[589,29]]},"18":{"position":[[540,29]]},"27":{"position":[[303,29]]},"39":{"position":[[156,29]]},"40":{"position":[[191,29]]},"41":{"position":[[187,29]]},"42":{"position":[[421,29],[1383,29]]}},"keywords":{}}],["require("routes.luau"",{"_index":189,"title":{},"content":{"17":{"position":[[634,32]]},"18":{"position":[[585,32]]},"42":{"position":[[1428,32],[2107,32]]}},"keywords":{}}],["require("squash.luau"",{"_index":243,"title":{},"content":{"27":{"position":[[258,32]]}},"keywords":{}}],["require(child",{"_index":391,"title":{},"content":{"42":{"position":[[1698,15]]}},"keywords":{}}],["respons",{"_index":207,"title":{},"content":{"22":{"position":[[56,11]]}},"keywords":{}}],["rest",{"_index":117,"title":{},"content":{"12":{"position":[[252,5]]}},"keywords":{}}],["return",{"_index":18,"title":{},"content":{"5":{"position":[[98,6]]},"18":{"position":[[224,6]]},"25":{"position":[[204,6]]},"27":{"position":[[115,6],[525,9],[669,8],[822,6],[909,6],[1264,6],[1351,6]]},"33":{"position":[[294,6]]},"39":{"position":[[416,8],[658,6]]},"40":{"position":[[451,8]]},"41":{"position":[[95,6],[556,9]]},"42":{"position":[[990,6]]}},"keywords":{}}],["roblox",{"_index":72,"title":{"16":{"position":[[0,6]]}},"content":{"11":{"position":[[32,7],[166,7]]},"12":{"position":[[64,6],[380,7],[478,7]]},"13":{"position":[[86,7]]}},"keywords":{}}],["roblox'",{"_index":75,"title":{},"content":{"11":{"position":[[82,8]]}},"keywords":{}}],["rout",{"_index":46,"title":{"22":{"position":[[0,6]]},"28":{"position":[[0,5]]},"37":{"position":[[0,6]]}},"content":{"7":{"position":[[183,5]]},"11":{"position":[[569,7]]},"17":{"position":[[409,5],[446,7],[625,6]]},"18":{"position":[[133,5],[186,5],[301,7],[459,5],[576,6]]},"22":{"position":[[21,5]]},"24":{"position":[[49,7],[57,7],[83,6],[114,6],[186,6],[396,6],[496,6]]},"25":{"position":[[26,7],[58,6],[177,7],[262,5],[378,5]]},"27":{"position":[[339,5],[411,6]]},"30":{"position":[[153,5]]},"32":{"position":[[70,5],[131,6]]},"38":{"position":[[44,7],[69,6]]},"39":{"position":[[0,6],[121,7],[192,5],[264,6],[530,5],[762,7]]},"40":{"position":[[69,6],[227,5],[299,6],[550,6]]},"41":{"position":[[223,5],[295,6],[583,5]]},"42":{"position":[[265,6],[389,7],[457,5],[1197,6],[1419,6],[1534,6],[1557,7],[1860,6],[2025,6],[2098,6]]}},"keywords":{}}],["route<numb",{"_index":320,"title":{},"content":{"39":{"position":[[271,16]]},"40":{"position":[[306,16]]},"41":{"position":[[302,16]]}},"keywords":{}}],["route<str",{"_index":246,"title":{},"content":{"27":{"position":[[418,16]]}},"keywords":{}}],["route<u...>",{"_index":244,"title":{},"content":{"27":{"position":[[362,17]]},"39":{"position":[[215,17]]},"40":{"position":[[250,17]]},"41":{"position":[[246,17]]},"42":{"position":[[480,17]]}},"keywords":{}}],["route'",{"_index":301,"title":{},"content":{"34":{"position":[[89,7]]}},"keywords":{}}],["route.new",{"_index":248,"title":{},"content":{"27":{"position":[[448,11]]},"39":{"position":[[310,11]]},"40":{"position":[[345,11]]},"41":{"position":[[341,11]]}},"keywords":{}}],["route.new(configur",{"_index":286,"title":{},"content":{"32":{"position":[[10,24]]}},"keywords":{}}],["route.serv",{"_index":304,"title":{},"content":{"34":{"position":[[279,13]]}},"keywords":{}}],["route:addincomingmiddlewar",{"_index":306,"title":{},"content":{"35":{"position":[[10,29]]}},"keywords":{}}],["route:addincomingmiddleware(function(str",{"_index":252,"title":{},"content":{"27":{"position":[[535,41]]}},"keywords":{}}],["route:addoutgoingmiddlewar",{"_index":310,"title":{},"content":{"36":{"position":[[10,29]]}},"keywords":{}}],["route:addoutgoingmiddleware(function(str",{"_index":263,"title":{},"content":{"27":{"position":[[978,41]]}},"keywords":{}}],["route:queri",{"_index":290,"title":{},"content":{"33":{"position":[[10,13]]},"35":{"position":[[275,13]]},"39":{"position":[[472,13],[622,13]]},"40":{"position":[[507,13]]},"41":{"position":[[70,13],[388,13]]}},"keywords":{}}],["route:query():__it",{"_index":298,"title":{},"content":{"33":{"position":[[414,22]]}},"keywords":{}}],["route:query():from(...send",{"_index":345,"title":{},"content":{"41":{"position":[[662,29]]}},"keywords":{}}],["route:send",{"_index":299,"title":{},"content":{"34":{"position":[[10,12],[121,10]]},"35":{"position":[[229,12]]},"36":{"position":[[237,12]]},"39":{"position":[[640,12]]},"40":{"position":[[663,12]]}},"keywords":{}}],["route:send():to(recipi",{"_index":340,"title":{},"content":{"40":{"position":[[807,27]]}},"keywords":{}}],["route:send(...data",{"_index":334,"title":{},"content":{"40":{"position":[[27,19]]}},"keywords":{}}],["route:send(1",{"_index":323,"title":{},"content":{"39":{"position":[[362,13]]},"40":{"position":[[397,13]]}},"keywords":{}}],["route:send(5",{"_index":339,"title":{},"content":{"40":{"position":[[604,13]]}},"keywords":{}}],["routes.luau",{"_index":355,"title":{},"content":{"42":{"position":[[318,11],[397,11],[1986,11]]}},"keywords":{}}],["routes.playerload",{"_index":399,"title":{},"content":{"42":{"position":[[2161,19]]}},"keywords":{}}],["run",{"_index":178,"title":{},"content":{"17":{"position":[[223,3],[316,3]]},"24":{"position":[[193,3],[416,3],[487,3]]},"25":{"position":[[105,3],[315,3]]},"32":{"position":[[214,3]]},"35":{"position":[[142,3]]},"36":{"position":[[154,3]]},"38":{"position":[[76,3]]},"42":{"position":[[275,3],[1139,3],[1207,3],[1778,7]]}},"keywords":{}}],["runservic",{"_index":186,"title":{},"content":{"17":{"position":[[524,10]]},"18":{"position":[[475,10]]}},"keywords":{}}],["runservice.heartbeat",{"_index":180,"title":{},"content":{"17":{"position":[[250,21]]},"42":{"position":[[1919,20]]}},"keywords":{}}],["runservice.heartbeat:connect(hook",{"_index":191,"title":{},"content":{"17":{"position":[[703,34]]},"18":{"position":[[654,34]]},"25":{"position":[[387,34]]}},"keywords":{}}],["rust",{"_index":122,"title":{},"content":{"12":{"position":[[340,5]]}},"keywords":{}}],["same",{"_index":221,"title":{},"content":{"24":{"position":[[307,4]]},"32":{"position":[[147,4]]},"42":{"position":[[1084,4]]}},"keywords":{}}],["schedul",{"_index":182,"title":{},"content":{"17":{"position":[[303,9]]},"18":{"position":[[416,10]]},"25":{"position":[[113,10],[319,10]]},"30":{"position":[[140,8]]},"32":{"position":[[231,10]]},"42":{"position":[[249,10],[1183,8],[1519,9],[1755,8]]}},"keywords":{}}],["script",{"_index":376,"title":{},"content":{"42":{"position":[[1089,6]]}},"keywords":{}}],["script.systems:getchildren",{"_index":388,"title":{},"content":{"42":{"position":[[1600,28]]}},"keywords":{}}],["see",{"_index":53,"title":{},"content":{"7":{"position":[[300,3]]},"9":{"position":[[88,3],[191,3],[215,3]]},"13":{"position":[[79,3]]},"33":{"position":[[460,3]]},"34":{"position":[[293,3]]},"35":{"position":[[304,3]]},"36":{"position":[[312,3]]},"42":{"position":[[71,3],[105,3]]}},"keywords":{}}],["send",{"_index":142,"title":{"34":{"position":[[0,5]]},"40":{"position":[[0,8]]}},"content":{"13":{"position":[[412,4]]},"22":{"position":[[93,4]]},"27":{"position":[[970,7]]},"34":{"position":[[28,5],[137,4],[297,7]]},"36":{"position":[[176,5]]},"39":{"position":[[325,4]]},"40":{"position":[[50,4],[360,4],[681,4],[787,4]]},"42":{"position":[[2483,4],[2553,4]]}},"keywords":{}}],["send/rec",{"_index":195,"title":{},"content":{"18":{"position":[[320,12]]}},"keywords":{}}],["sender",{"_index":23,"title":{},"content":{"5":{"position":[[171,7],[218,7]]},"6":{"position":[[28,8],[37,9],[53,7],[157,8]]},"33":{"position":[[115,7],[399,7]]},"41":{"position":[[141,7],[362,7],[643,7]]}},"keywords":{}}],["sending/queri",{"_index":205,"title":{},"content":{"21":{"position":[[102,17]]}},"keywords":{}}],["sendrequest",{"_index":0,"title":{"0":{"position":[[0,11]]}},"content":{},"keywords":{}}],["sendrequest:to",{"_index":303,"title":{},"content":{"34":{"position":[[229,14]]}},"keywords":{}}],["sendrequest:to(recipi",{"_index":3,"title":{},"content":{"2":{"position":[[10,25]]}},"keywords":{}}],["sensit",{"_index":136,"title":{},"content":{"13":{"position":[[247,9]]}},"keywords":{}}],["sent",{"_index":264,"title":{},"content":{"27":{"position":[[1112,4]]},"30":{"position":[[408,4]]},"36":{"position":[[107,4]]},"38":{"position":[[178,4]]}},"keywords":{}}],["separ",{"_index":109,"title":{},"content":{"12":{"position":[[15,9]]}},"keywords":{}}],["serial",{"_index":237,"title":{},"content":{"27":{"position":[[71,9],[696,10],[945,9]]}},"keywords":{}}],["server",{"_index":196,"title":{"21":{"position":[[0,7]]}},"content":{"18":{"position":[[353,6]]},"21":{"position":[[90,6]]},"35":{"position":[[190,6],[249,6]]},"36":{"position":[[169,6],[257,6]]},"40":{"position":[[737,7]]},"42":{"position":[[2274,6],[2516,6],[2584,6]]}},"keywords":{}}],["set",{"_index":177,"title":{},"content":{"17":{"position":[[205,3]]},"24":{"position":[[258,3]]},"35":{"position":[[45,4]]},"36":{"position":[[45,4]]}},"keywords":{}}],["setup",{"_index":63,"title":{"18":{"position":[[6,6]]}},"content":{"9":{"position":[[98,6],[206,5],[233,5]]},"18":{"position":[[6,6]]}},"keywords":{}}],["sever",{"_index":89,"title":{},"content":{"11":{"position":[[360,7]]}},"keywords":{}}],["share",{"_index":287,"title":{},"content":{"32":{"position":[[165,5]]}},"keywords":{}}],["signal",{"_index":372,"title":{},"content":{"42":{"position":[[885,6]]}},"keywords":{}}],["similar",{"_index":47,"title":{},"content":{"7":{"position":[[208,7]]},"12":{"position":[[422,7]]}},"keywords":{}}],["simpl",{"_index":199,"title":{},"content":{"18":{"position":[[382,6]]},"41":{"position":[[27,7]]},"42":{"position":[[229,6]]}},"keywords":{}}],["simpli",{"_index":172,"title":{},"content":{"17":{"position":[[101,6]]},"27":{"position":[[108,6]]}},"keywords":{}}],["singl",{"_index":288,"title":{},"content":{"32":{"position":[[173,6],[252,6]]}},"keywords":{}}],["snapshot",{"_index":20,"title":{},"content":{"5":{"position":[[138,8]]},"6":{"position":[[126,8]]},"41":{"position":[[472,8]]}},"keywords":{}}],["solv",{"_index":77,"title":{},"content":{"11":{"position":[[107,5],[206,6]]},"13":{"position":[[344,5]]}},"keywords":{}}],["someth",{"_index":28,"title":{},"content":{"5":{"position":[[271,9]]},"33":{"position":[[446,9]]},"39":{"position":[[495,9]]},"40":{"position":[[530,9]]},"41":{"position":[[411,9]]},"42":{"position":[[2337,9],[2466,9]]}},"keywords":{}}],["specif",{"_index":300,"title":{},"content":{"34":{"position":[[60,8]]}},"keywords":{}}],["specifi",{"_index":302,"title":{},"content":{"34":{"position":[[175,7]]},"40":{"position":[[753,7]]}},"keywords":{}}],["squash",{"_index":236,"title":{},"content":{"27":{"position":[[61,6],[249,6],[689,6]]}},"keywords":{}}],["squash.boolean.des(boolean",{"_index":261,"title":{},"content":{"27":{"position":[[878,28]]}},"keywords":{}}],["squash.boolean.ser(boolean",{"_index":269,"title":{},"content":{"27":{"position":[[1320,28]]}},"keywords":{}}],["squash.string.alphabet(str",{"_index":256,"title":{},"content":{"27":{"position":[[627,27],[1070,27]]}},"keywords":{}}],["squash.string.des(str",{"_index":260,"title":{},"content":{"27":{"position":[[844,22]]}},"keywords":{}}],["squash.string.ser(str",{"_index":268,"title":{},"content":{"27":{"position":[[1286,22]]}},"keywords":{}}],["start",{"_index":100,"title":{"24":{"position":[[0,6]]}},"content":{"11":{"position":[[556,7]]}},"keywords":{}}],["step",{"_index":233,"title":{},"content":{"25":{"position":[[252,4]]}},"keywords":{}}],["still",{"_index":58,"title":{},"content":{"9":{"position":[[6,5]]}},"keywords":{}}],["str",{"_index":329,"title":{},"content":{"39":{"position":[[459,4]]},"40":{"position":[[494,4]]},"41":{"position":[[375,4]]}},"keywords":{}}],["strict",{"_index":158,"title":{},"content":{"15":{"position":[[138,6]]},"39":{"position":[[806,6]]}},"keywords":{}}],["strictli",{"_index":358,"title":{},"content":{"42":{"position":[[367,8]]}},"keywords":{}}],["string",{"_index":17,"title":{},"content":{"5":{"position":[[31,7]]},"27":{"position":[[736,6]]},"30":{"position":[[118,6]]},"39":{"position":[[288,7],[572,7]]},"40":{"position":[[323,7],[572,7]]},"41":{"position":[[319,7]]},"42":{"position":[[676,9],[700,9]]}},"keywords":{}}],["such",{"_index":130,"title":{},"content":{"13":{"position":[[94,4]]},"39":{"position":[[773,4]]},"41":{"position":[[543,4]]}},"keywords":{}}],["suggest",{"_index":148,"title":{},"content":{"13":{"position":[[547,7]]}},"keywords":{}}],["suppli",{"_index":22,"title":{},"content":{"5":{"position":[[162,8]]}},"keywords":{}}],["sure",{"_index":218,"title":{},"content":{"24":{"position":[[234,4]]},"42":{"position":[[1829,4]]}},"keywords":{}}],["system",{"_index":227,"title":{},"content":{"24":{"position":[[448,8]]},"33":{"position":[[239,7]]},"42":{"position":[[1571,7],[1764,7],[1964,6],[2056,8]]}},"keywords":{}}],["systems/examplesystem.luau",{"_index":398,"title":{},"content":{"42":{"position":[[2065,26]]}},"keywords":{}}],["tabl",{"_index":184,"title":{},"content":{"17":{"position":[[432,5]]},"24":{"position":[[69,5]]},"25":{"position":[[44,5],[168,5]]}},"keywords":{}}],["table.insert(system",{"_index":390,"title":{},"content":{"42":{"position":[[1676,21]]}},"keywords":{}}],["table.unpack(valu",{"_index":262,"title":{},"content":{"27":{"position":[[916,20],[1358,20]]}},"keywords":{}}],["take",{"_index":343,"title":{},"content":{"41":{"position":[[465,4]]}},"keywords":{}}],["technic",{"_index":35,"title":{},"content":{"7":{"position":[[37,9]]},"11":{"position":[[626,9]]}},"keywords":{}}],["themselv",{"_index":131,"title":{},"content":{"13":{"position":[[115,11]]}},"keywords":{}}],["thing",{"_index":108,"title":{},"content":{"12":{"position":[[4,5]]}},"keywords":{}}],["though",{"_index":146,"title":{},"content":{"13":{"position":[[523,6]]}},"keywords":{}}],["through",{"_index":401,"title":{},"content":{"42":{"position":[[2226,7],[2360,7]]}},"keywords":{}}],["tip",{"_index":347,"title":{},"content":{"42":{"position":[[7,3]]}},"keywords":{}}],["tri",{"_index":40,"title":{},"content":{"7":{"position":[[99,3]]}},"keywords":{}}],["true",{"_index":326,"title":{},"content":{"39":{"position":[[403,5]]},"40":{"position":[[438,5],[618,5]]}},"keywords":{}}],["tupl",{"_index":239,"title":{},"content":{"27":{"position":[[146,6]]}},"keywords":{}}],["two",{"_index":125,"title":{},"content":{"12":{"position":[[453,3]]},"38":{"position":[[90,3]]}},"keywords":{}}],["type",{"_index":85,"title":{"29":{"position":[[0,6]]},"39":{"position":[[0,4]]}},"content":{"11":{"position":[[281,4],[396,4]]},"15":{"position":[[98,5],[145,6],[184,5]]},"27":{"position":[[126,5],[357,4],[658,4],[707,5],[724,6],[1101,4],[1154,5]]},"33":{"position":[[234,4],[301,5]]},"39":{"position":[[14,4],[86,4],[210,4],[346,5],[439,5],[558,5],[681,6],[725,4],[813,6]]},"40":{"position":[[245,4],[381,5],[474,5]]},"41":{"position":[[241,4],[737,4]]},"42":{"position":[[475,4],[653,4]]}},"keywords":{}}],["type(boolean",{"_index":259,"title":{},"content":{"27":{"position":[[781,13],[1222,13]]}},"keywords":{}}],["type(str",{"_index":257,"title":{},"content":{"27":{"position":[[746,9],[1187,9]]}},"keywords":{}}],["typescript",{"_index":161,"title":{"16":{"position":[[7,11]]}},"content":{},"keywords":{}}],["u",{"_index":265,"title":{},"content":{"27":{"position":[[1160,4]]}},"keywords":{}}],["under",{"_index":55,"title":{"9":{"position":[[17,5]]}},"content":{},"keywords":{}}],["uniqu",{"_index":116,"title":{},"content":{"12":{"position":[[236,6]]},"21":{"position":[[47,6]]},"22":{"position":[[29,8]]},"32":{"position":[[83,6]]}},"keywords":{}}],["unreli",{"_index":284,"title":{},"content":{"30":{"position":[[446,11]]},"38":{"position":[[119,11],[280,10]]}},"keywords":{}}],["us",{"_index":37,"title":{},"content":{"7":{"position":[[71,3],[201,4]]},"9":{"position":[[60,5],[166,3],[243,3]]},"11":{"position":[[529,3]]},"12":{"position":[[315,3]]},"13":{"position":[[369,3],[505,3]]},"15":{"position":[[134,3]]},"17":{"position":[[244,5],[388,3]]},"18":{"position":[[110,5],[436,5]]},"21":{"position":[[65,4]]},"24":{"position":[[322,4]]},"27":{"position":[[42,3],[161,3]]},"40":{"position":[[23,3],[725,4],[801,5]]},"41":{"position":[[64,5]]},"42":{"position":[[84,4],[1978,3],[2036,3]]}},"keywords":{}}],["usag",{"_index":25,"title":{},"content":{"5":{"position":[[202,6]]}},"keywords":{}}],["util",{"_index":90,"title":{},"content":{"11":{"position":[[368,10]]}},"keywords":{}}],["v0.5.0",{"_index":277,"title":{},"content":{"30":{"position":[[286,7]]}},"keywords":{}}],["valu",{"_index":254,"title":{},"content":{"27":{"position":[[589,7],[678,7],[833,6],[1032,7],[1117,7],[1275,6]]},"33":{"position":[[307,7]]},"41":{"position":[[727,6]]}},"keywords":{}}],["version",{"_index":281,"title":{},"content":{"30":{"position":[[360,9]]},"42":{"position":[[33,7]]}},"keywords":{}}],["visit",{"_index":98,"title":{},"content":{"11":{"position":[[539,8]]}},"keywords":{}}],["walli",{"_index":151,"title":{"15":{"position":[[0,6]]}},"content":{"15":{"position":[[76,5],[170,5]]}},"keywords":{}}],["want",{"_index":171,"title":{},"content":{"17":{"position":[[85,5],[149,4],[488,4]]},"18":{"position":[[86,4],[280,4]]},"24":{"position":[[479,4]]}},"keywords":{}}],["way",{"_index":313,"title":{},"content":{"38":{"position":[[16,4],[157,3]]}},"keywords":{}}],["we'r",{"_index":57,"title":{},"content":{"9":{"position":[[0,5]]}},"keywords":{}}],["went",{"_index":104,"title":{},"content":{"11":{"position":[[668,4]]}},"keywords":{}}],["whatev",{"_index":192,"title":{},"content":{"18":{"position":[[55,8]]}},"keywords":{}}],["whenev",{"_index":174,"title":{},"content":{"17":{"position":[[136,8],[475,8]]},"18":{"position":[[267,8]]}},"keywords":{}}],["whether",{"_index":241,"title":{},"content":{"27":{"position":[[198,7]]}},"keywords":{}}],["wish",{"_index":157,"title":{},"content":{"15":{"position":[[126,4]]}},"keywords":{}}],["within",{"_index":397,"title":{},"content":{"42":{"position":[[2045,6]]}},"keywords":{}}],["woe",{"_index":133,"title":{},"content":{"13":{"position":[[156,5]]}},"keywords":{}}],["work",{"_index":88,"title":{},"content":{"11":{"position":[[316,7],[512,5]]},"12":{"position":[[114,4]]},"39":{"position":[[744,7]]}},"keywords":{}}],["world",{"_index":381,"title":{},"content":{"42":{"position":[[1325,5],[1467,5]]}},"keywords":{}}],["world!"",{"_index":325,"title":{},"content":{"39":{"position":[[389,13]]},"40":{"position":[[424,13],[637,13]]}},"keywords":{}}],["world.new",{"_index":384,"title":{},"content":{"42":{"position":[[1475,11]]}},"keywords":{}}],["wrap",{"_index":73,"title":{},"content":{"11":{"position":[[69,5]]}},"keywords":{}}],["yetanothernet",{"_index":163,"title":{},"content":{"16":{"position":[[20,13]]}},"keywords":{}}],["you'll",{"_index":336,"title":{},"content":{"40":{"position":[[130,6]]}},"keywords":{}}],["yourrunservice.heartbeat",{"_index":223,"title":{},"content":{"24":{"position":[[331,24]]}},"keywords":{}}]],"pipeline":["stemmer"]} \ No newline at end of file +{"version":"2.3.9","fields":["title","content","keywords"],"fieldVectors":[["title/0",[0,612.911]],["content/0",[]],["keywords/0",[]],["title/1",[1,63.655,2,291.07,3,342.915,4,342.915]],["content/1",[0,7.774,1,1.228,5,6.617,6,6.617,7,5.617,8,6.617,9,6.617,10,5.636,11,3.45,12,2.866,13,5.617,14,5.111,15,7.869,16,4.073,17,4.958,18,6.617,19,4.796,20,4.466,21,5.636,22,5.636,23,6.617,24,5.617]],["keywords/1",[]],["title/2",[25,408.705]],["content/2",[]],["keywords/2",[]],["title/3",[26,268.951]],["content/3",[]],["keywords/3",[]],["title/4",[25,235.274,27,280.514,28,217.669]],["content/4",[1,1.872,25,5.707,27,5.147,28,3.994,29,2.667,30,5.715,31,4.317,32,3.994,33,3.461,34,2.506,35,6.474,36,5.715,37,7.627,38,7.627,39,6.804,40,5.715,41,7.627,42,5.147,43,7.627,44,4.317,45,3.994]],["keywords/4",[]],["title/5",[]],["content/5",[1,2.02,25,4.856,29,3,34,2.819,35,7.283,36,6.428,39,8.479,40,6.428,46,8.152,47,8.58,48,4.175]],["keywords/5",[]],["title/6",[49,408.705]],["content/6",[1,1.988,2,5.827,10,4.225,11,3.086,12,2.563,14,3.341,19,4.919,21,4.225,22,4.225,26,2.557,49,6.06,50,5.827,51,5.827,52,5.827,53,5.144,54,6.865,55,5.144,56,1.761,57,5.827,58,5.827,59,6.339,60,6.865,61,3.886,62,4.225]],["keywords/6",[]],["title/7",[12,197.042]],["content/7",[]],["keywords/7",[]],["title/8",[63,722.082]],["content/8",[]],["keywords/8",[]],["title/9",[64,378.122]],["content/9",[11,3.165,29,3.368,64,5.044,65,8.176,66,8.176,67,6.5,68,7.889,69,9.632]],["keywords/9",[]],["title/10",[56,185.166]],["content/10",[29,3.254,53,6.972,56,2.386,67,6.28,68,6.28,70,5.267,71,9.306,72,9.306,73,4.528,74,3.946,75,9.306]],["keywords/10",[]],["title/11",[26,268.951]],["content/11",[]],["keywords/11",[]],["title/12",[76,612.911]],["content/12",[1,1.72,11,1.735,19,4.082,29,1.847,49,5.789,56,3.027,77,4.484,78,3.958,79,4.484,80,4.484,81,3.251,82,5.282,83,4.508,84,5.282,85,4.484,86,2.396,87,3.251,88,5.282,89,3.565,90,4.484,91,5.356,92,3.565,93,2.766,94,3.251,95,3.958,96,5.282,97,5.282,98,4.484,99,3.565,100,5.282,101,3.958,102,3.958,103,7.795,104,3.958,105,7.795,106,5.282,107,4.484]],["keywords/12",[]],["title/13",[108,722.082]],["content/13",[1,2.275,12,2.325,20,4.029,26,3.7,29,2.088,33,2.709,34,1.962,48,2.905,56,2.937,59,5.749,78,6.383,83,4.146,85,5.068,91,3.127,101,4.473,109,4.029,110,4.822,111,4.473,112,2.905,113,5.971,114,3.675,115,3.675,116,5.068,117,3.127,118,2.905,119,4.029,120,4.473]],["keywords/13",[]],["title/14",[121,722.082]],["content/14",[]],["keywords/14",[]],["title/15",[]],["content/15",[7,6.303,10,3.046,11,1.626,12,2.703,22,5.486,48,3.614,50,4.201,51,4.201,56,1.269,61,4.203,76,4.201,122,4.667,123,5.012,124,4.949,125,4.949,126,4.949,127,6.303,128,6.303,129,4.201,130,7.426,131,3.708,132,4.949,133,4.949,134,4.949,135,4.949,136,3.149,137,4.57,138,4.201,139,5.564,140,4.949,141,4.949,142,4.949,143,4.201,144,4.201,145,4.949,146,4.949,147,3.046,148,4.57,149,4.949,150,4.949,151,4.949,152,4.201,153,4.201,154,4.949,155,2.801]],["keywords/15",[]],["title/16",[147,255.826,148,255.826,156,176.274]],["content/16",[11,1.88,12,2.647,16,3.522,20,3.861,21,5.97,22,6.538,26,2.131,48,2.784,57,4.857,67,3.861,89,3.861,122,5.079,123,6.546,139,4.287,147,3.522,148,5.97,153,4.857,156,2.427,157,4.857,158,5.722,159,5.722,160,4.857,161,4.857,162,5.722,163,5.722,164,5.722,165,5.722,166,5.722,167,5.722,168,5.722,169,5.722,170,5.722,171,5.722,172,5.722,173,4.857]],["keywords/16",[]],["title/17",[147,255.826,156,176.274,174,415.672]],["content/17",[1,0.936,11,2.473,12,2.054,14,2.453,19,2.639,21,6.151,73,2.453,74,2.137,86,3.415,89,3.401,91,5.601,115,4.633,123,3.401,127,4.278,128,4.278,147,6.583,148,6.583,152,4.278,156,4.238,175,5.04,176,5.04,177,3.776,178,5.04,179,5.04,180,5.04,181,5.04,182,5.04,183,4.633,184,5.04,185,5.04,186,6.39,187,5.04,188,5.04,189,5.04,190,5.04,191,5.04,192,5.04]],["keywords/17",[]],["title/18",[193,612.911]],["content/18",[]],["keywords/18",[]],["title/19",[194,612.911]],["content/19",[1,1.521,11,2.693,12,2.883,87,5.044,136,4.959,193,6.957,194,8.969,195,8.196,196,8.196,197,8.196,198,8.196,199,8.196,200,6.957,201,8.196,202,8.196]],["keywords/19",[]],["title/20",[123,356.059,203,527.617]],["content/20",[12,2.724,204,9.982,205,9.982,206,9.982,207,9.982,208,9.982,209,9.982]],["keywords/20",[]],["title/21",[56,185.166]],["content/21",[]],["keywords/21",[]],["title/22",[136,306.213]],["content/22",[]],["keywords/22",[]],["title/23",[93,378.122]],["content/23",[1,1.811,19,3.028,29,2.022,30,4.332,32,3.028,34,2.735,49,3.273,56,1.483,58,4.908,86,3.777,87,3.559,91,4.36,93,3.028,94,5.124,109,3.902,110,3.273,183,5.124,210,5.782,211,5.124,212,4.332,213,5.782,214,7.067,215,4.908,216,8.326,217,5.782,218,5.782,219,5.782,220,4.908,221,5.782,222,5.782,223,4.908,224,3.902,225,5.124,226,4.908,227,4.908,228,4.908]],["keywords/23",[]],["title/24",[26,268.951]],["content/24",[]],["keywords/24",[]],["title/25",[131,541.002]],["content/25",[1,1.821,12,1.998,29,2.561,56,2.516,67,4.942,68,4.942,83,3.563,87,4.507,91,5.138,93,3.835,95,5.486,110,4.145,111,5.486,115,4.507,131,5.486,155,4.145,211,6.039,229,7.323,230,7.323,231,9.812,232,7.323,233,6.216]],["keywords/25",[]],["title/26",[73,351.373]],["content/26",[1,1.534,14,2.784,24,4.857,25,5.49,27,5.577,28,2.996,29,2.001,33,2.596,34,1.88,39,5.577,40,4.287,44,3.239,45,2.996,46,4.287,53,6.191,61,3.239,62,3.522,73,4.021,86,2.596,87,3.522,99,5.577,102,4.287,109,3.861,112,2.784,117,2.996,129,4.857,136,3.504,156,2.427,183,3.522,234,3.522,235,4.857,236,4.857,237,5.722,238,5.722,239,5.722,240,4.287,241,5.722,242,5.722,243,5.722]],["keywords/26",[]],["title/27",[74,306.213]],["content/27",[1,2.126,14,3.3,29,2.371,31,5.271,61,3.838,62,4.173,68,4.576,74,4.511,94,4.173,156,4.857,225,4.173,236,5.756,244,5.732,245,6.021,246,6.781,247,5.756,248,6.781,249,5.756,250,6.781,251,5.756,252,6.781]],["keywords/27",[]],["title/28",[253,722.082]],["content/28",[1,1.774,14,3.426,26,2.623,28,3.687,29,2.462,34,3.14,61,3.985,62,4.334,64,5.004,81,4.334,83,3.426,92,4.752,112,4.65,114,4.334,117,3.687,122,3.687,225,4.334,234,4.334,244,4.334,245,5.409,254,7.041,255,5.977,256,7.041,257,7.16]],["keywords/28",[]],["title/29",[258,722.082]],["content/29",[1,1.729,14,3.3,26,2.526,28,4.877,29,2.371,34,3.495,61,3.838,62,4.173,64,4.877,74,2.875,81,4.173,83,3.3,92,4.576,112,3.3,117,3.551,122,4.877,224,4.576,225,4.173,244,4.173,245,5.271,255,5.756,257,7.97,259,6.781,260,6.781]],["keywords/29",[]],["title/30",[119,487.293]],["content/30",[1,1.97,10,3.046,11,2.44,12,2.432,16,3.046,17,3.708,26,1.843,34,2.44,56,2.286,59,3.34,78,3.708,83,3.614,86,3.369,92,3.34,101,3.708,104,6.678,109,3.34,110,2.801,111,3.708,112,3.614,114,4.57,115,3.046,118,4.82,119,7.162,120,3.708,122,2.592,148,3.046,155,2.801,233,4.201,251,4.201,261,2.801,262,4.201,263,6.303,264,4.201,265,4.201,266,4.201,267,2.592,268,3.708,269,4.201]],["keywords/30",[]],["title/31",[270,722.082]],["content/31",[]],["keywords/31",[]],["title/32",[26,268.951]],["content/32",[]],["keywords/32",[]],["title/33",[]],["content/33",[1,2.407,29,3,31,6.158,34,2.819,48,4.175,66,7.283,247,7.283,271,8.58,272,8.58,273,8.58,274,7.283]],["keywords/33",[]],["title/34",[81,444.406]],["content/34",[]],["keywords/34",[]],["title/35",[275,612.911]],["content/35",[1,2.414,11,1.664,12,0.833,22,1.879,32,1.599,33,4.344,34,1.664,45,3.957,48,1.486,56,1.299,70,1.728,74,1.295,91,1.599,118,4.876,136,4.06,137,3.117,156,2.753,183,1.879,211,1.879,212,2.287,224,2.06,240,6.771,257,3.795,262,2.591,267,1.599,274,2.591,275,2.591,276,3.053,277,6.492,278,6.492,279,5.065,280,3.053,281,3.053,282,3.053,283,3.053,284,3.053,285,1.879,286,1.879,287,3.053,288,3.053,289,2.06,290,3.053,291,3.418,292,7.556,293,5.065,294,5.065,295,6.492,296,5.065,297,3.053,298,3.053,299,5.065,300,3.053,301,3.053,302,3.053,303,3.053,304,3.053,305,3.053]],["keywords/35",[]],["title/36",[15,541.002]],["content/36",[1,2.213,10,3.074,11,2.456,12,2.04,15,3.742,16,3.074,17,3.742,20,3.37,26,3.338,33,2.266,34,1.641,52,4.239,55,3.742,56,2.732,59,5.046,64,2.615,104,5.602,110,2.827,112,2.43,114,3.074,116,4.239,117,2.615,118,4.842,119,5.046,120,3.742,155,4.232,245,2.827,261,2.827,263,4.239,265,4.239,266,4.239,267,2.615,268,3.742,269,4.239,306,4.994,307,4.994,308,4.994,309,4.994,310,3.742,311,4.994]],["keywords/36",[]],["title/37",[56,185.166]],["content/37",[]],["keywords/37",[]],["title/38",[93,378.122]],["content/38",[28,3.424,34,3.429,56,2.329,83,3.182,86,4.121,93,3.424,107,5.55,122,3.424,143,5.55,157,5.55,173,5.55,183,5.59,211,6.423,214,5.55,224,4.413,226,7.709,227,7.709,228,7.709,312,6.539,313,9.083,314,6.539,315,6.539,316,6.539,317,9.083]],["keywords/38",[]],["title/39",[136,223.746,137,324.723]],["content/39",[1,1.722,12,1.19,30,3.267,32,3.531,33,3.059,42,2.943,44,2.468,45,2.283,48,3.281,56,2.72,70,2.468,74,1.849,99,2.943,117,2.283,118,4.012,136,4.973,137,4.15,138,3.701,139,3.267,144,5.724,155,2.468,177,3.267,186,3.701,200,3.701,220,3.701,234,4.15,244,2.684,261,2.468,267,2.283,285,2.684,286,2.684,289,2.943,291,2.943,318,6.743,319,6.998,320,3.267,321,3.267,322,5.724,323,3.701,324,3.701,325,3.701,326,3.701,327,3.267,328,3.267,329,3.267,330,4.36,331,4.36,332,6.743,333,4.36]],["keywords/39",[]],["title/40",[74,306.213]],["content/40",[1,2.047,11,2.695,12,1.18,28,2.265,31,3.793,32,3.509,33,1.963,34,1.421,42,2.919,44,2.449,45,3.509,56,2.369,64,2.265,70,2.449,73,2.105,74,3.918,86,1.963,94,2.662,114,2.662,118,4.496,136,3.479,156,3.479,225,2.662,234,2.662,244,2.662,245,2.449,249,3.672,261,2.449,267,2.265,285,2.662,286,2.662,289,2.919,291,2.919,319,3.672,320,3.241,321,5.021,322,3.672,323,3.672,324,5.689,325,5.689,326,5.689,327,3.241,328,3.241,329,3.241,334,4.326,335,4.326,336,4.326,337,4.326,338,4.326,339,4.326,340,4.326]],["keywords/40",[]],["title/41",[73,351.373]],["content/41",[1,2.149,11,1.492,12,1.239,25,2.57,27,3.064,31,3.937,32,2.378,33,3.156,34,2.778,36,3.402,39,5.707,42,3.064,44,2.57,45,2.378,46,5.212,49,2.57,56,2.168,65,3.854,70,2.57,73,4.115,86,2.06,99,4.694,112,4.115,118,4.115,136,2.95,156,1.925,177,3.402,234,4.281,235,3.854,240,3.402,261,2.57,267,2.378,285,2.794,286,2.794,289,3.064,291,3.064,310,3.402,320,3.402,321,3.402,327,3.402,328,3.402,329,3.402,341,4.54,342,4.54,343,4.54,344,3.854,345,4.54,346,4.54]],["keywords/41",[]],["title/42",[19,378.122]],["content/42",[1,2.309,11,1.46,12,1.471,13,1.571,14,1.602,16,2.026,19,4.143,21,1.139,26,1.656,31,1.863,32,1.723,33,0.84,44,1.863,45,3.235,48,0.9,49,3.496,55,2.466,56,2.238,64,2.328,70,1.047,73,1.602,74,1.396,77,1.571,79,1.571,80,1.571,81,1.139,83,2.623,86,1.493,89,1.249,90,1.571,91,1.723,93,0.969,94,1.139,95,1.386,98,1.571,102,4.038,110,3.05,112,1.602,115,1.139,117,1.723,118,5.025,122,1.723,136,1.396,137,1.139,155,1.863,156,2.619,160,1.571,161,1.571,211,1.139,212,1.386,215,1.571,223,1.571,245,2.516,261,1.047,264,1.571,267,1.723,268,2.466,285,1.139,286,1.139,310,1.386,344,1.571,347,1.85,348,1.85,349,1.85,350,1.85,351,1.85,352,1.85,353,1.85,354,1.85,355,4.445,356,3.291,357,1.85,358,1.85,359,1.85,360,1.85,361,1.85,362,3.291,363,1.85,364,1.85,365,1.85,366,3.291,367,1.85,368,1.85,369,4.445,370,1.85,371,3.291,372,1.85,373,1.85,374,5.389,375,1.85,376,1.85,377,1.85,378,1.85,379,1.85,380,1.85,381,3.291,382,1.85,383,1.85,384,1.85,385,1.85,386,3.291,387,1.85,388,1.85,389,1.85,390,1.85,391,1.85,392,1.85,393,1.85,394,1.85,395,1.85,396,1.85,397,1.85,398,1.85,399,1.85,400,1.85,401,3.291,402,3.291,403,1.85,404,1.85]],["keywords/42",[]]],"invertedIndex":[["",{"_index":1,"title":{"1":{"position":[[0,3]]}},"content":{"1":{"position":[[302,1]]},"4":{"position":[[29,1],[226,3]]},"5":{"position":[[71,1],[73,1]]},"6":{"position":[[181,1],[189,2],[255,2]]},"12":{"position":[[90,1],[92,1],[94,2]]},"13":{"position":[[65,1],[67,1],[69,2],[72,1],[74,2],[359,1],[384,2]]},"17":{"position":[[570,1]]},"19":{"position":[[19,1]]},"23":{"position":[[34,1],[66,1],[272,1]]},"25":{"position":[[51,1],[53,2]]},"26":{"position":[[24,1],[407,3]]},"27":{"position":[[23,1],[25,2],[256,1],[265,2]]},"28":{"position":[[40,1],[42,2]]},"29":{"position":[[40,1],[42,2]]},"30":{"position":[[415,2],[535,1],[587,1],[632,1],[678,1]]},"33":{"position":[[44,1],[46,1],[55,1],[81,1],[83,2]]},"35":{"position":[[256,1],[301,1],[345,1],[380,1],[446,1],[468,1],[492,2],[597,1],[603,1],[605,1],[607,2],[625,1],[756,2],[795,2],[840,1],[842,1],[907,1],[1040,1],[1046,1],[1048,1],[1050,2],[1068,1],[1197,2],[1236,2],[1282,1],[1284,1],[1349,1]]},"36":{"position":[[139,2],[184,1],[192,2],[465,3],[486,1],[538,1],[583,1],[629,1]]},"39":{"position":[[154,1],[198,1],[233,1],[308,1]]},"40":{"position":[[189,1],[233,1],[268,1],[343,1],[592,1],[773,1],[782,1]]},"41":{"position":[[185,1],[229,1],[264,1],[339,1],[742,1],[751,1],[753,1],[762,1]]},"42":{"position":[[419,1],[463,1],[498,1],[550,1],[552,1],[562,1],[592,1],[615,1],[672,1],[674,1],[686,1],[710,1],[763,1],[765,1],[767,1],[850,1],[958,1],[997,1],[1017,1],[1051,1],[1067,1],[1163,1],[1252,1],[1284,1],[1331,1],[1357,1],[1381,1],[1426,1],[1473,1],[1498,1],[1579,1],[1581,2],[1917,1],[1940,2],[2105,1],[2159,1]]}},"keywords":{}}],["_",{"_index":386,"title":{},"content":{"42":{"position":[[1588,2],[2422,2]]}},"keywords":{}}],["__iter",{"_index":242,"title":{},"content":{"26":{"position":[[342,9]]}},"keywords":{}}],["accept",{"_index":106,"title":{},"content":{"12":{"position":[[543,10]]}},"keywords":{}}],["access",{"_index":396,"title":{},"content":{"42":{"position":[[2014,6]]}},"keywords":{}}],["ad",{"_index":80,"title":{},"content":{"12":{"position":[[124,6]]},"42":{"position":[[1885,5]]}},"keywords":{}}],["adapt",{"_index":348,"title":{},"content":{"42":{"position":[[25,7]]}},"keywords":{}}],["addincomingmiddlewar",{"_index":253,"title":{"28":{"position":[[0,22]]}},"content":{},"keywords":{}}],["addoutgoingmiddlewar",{"_index":258,"title":{"29":{"position":[[0,22]]}},"content":{},"keywords":{}}],["aftman",{"_index":202,"title":{},"content":{"19":{"position":[[195,7]]}},"keywords":{}}],["allow",{"_index":109,"title":{},"content":{"13":{"position":[[91,6]]},"23":{"position":[[244,7]]},"26":{"position":[[38,6]]},"30":{"position":[[27,5]]}},"keywords":{}}],["alphabet",{"_index":292,"title":{},"content":{"35":{"position":[[616,8],[867,10],[1059,8],[1309,10]]}},"keywords":{}}],["alway",{"_index":317,"title":{},"content":{"38":{"position":[[264,6],[333,6]]}},"keywords":{}}],["amount",{"_index":217,"title":{},"content":{"23":{"position":[[234,6]]}},"keywords":{}}],["amp",{"_index":143,"title":{},"content":{"15":{"position":[[410,5]]},"38":{"position":[[113,5]]}},"keywords":{}}],["annot",{"_index":319,"title":{},"content":{"39":{"position":[[91,10],[352,9],[539,9]]},"40":{"position":[[387,9]]}},"keywords":{}}],["anoth",{"_index":20,"title":{},"content":{"1":{"position":[[255,7]]},"13":{"position":[[211,7]]},"16":{"position":[[350,7]]},"36":{"position":[[231,7]]}},"keywords":{}}],["api",{"_index":132,"title":{},"content":{"15":{"position":[[144,3]]}},"keywords":{}}],["approach",{"_index":162,"title":{},"content":{"16":{"position":[[143,8]]}},"keywords":{}}],["architectur",{"_index":17,"title":{},"content":{"1":{"position":[[141,13]]},"30":{"position":[[68,12]]},"36":{"position":[[69,12]]}},"keywords":{}}],["argument",{"_index":327,"title":{},"content":{"39":{"position":[[425,9]]},"40":{"position":[[460,9]]},"41":{"position":[[782,10]]}},"keywords":{}}],["around",{"_index":125,"title":{},"content":{"15":{"position":[[75,6]]}},"keywords":{}}],["auto",{"_index":144,"title":{},"content":{"15":{"position":[[416,4]]},"39":{"position":[[55,4],[705,4]]}},"keywords":{}}],["automat",{"_index":198,"title":{},"content":{"19":{"position":[[104,14]]}},"keywords":{}}],["base",{"_index":47,"title":{},"content":{"5":{"position":[[135,5]]}},"keywords":{}}],["be",{"_index":353,"title":{},"content":{"42":{"position":[[173,5]]}},"keywords":{}}],["befor",{"_index":257,"title":{},"content":{"28":{"position":[[91,6],[260,6]]},"29":{"position":[[91,6],[158,6],[268,6]]},"35":{"position":[[518,6],[963,6]]}},"keywords":{}}],["begin",{"_index":393,"title":{},"content":{"42":{"position":[[1805,5]]}},"keywords":{}}],["behavior",{"_index":311,"title":{},"content":{"36":{"position":[[427,8]]}},"keywords":{}}],["below",{"_index":309,"title":{},"content":{"36":{"position":[[371,5]]}},"keywords":{}}],["best",{"_index":8,"title":{},"content":{"1":{"position":[[25,4]]}},"keywords":{}}],["beta.3"",{"_index":209,"title":{},"content":{"20":{"position":[[88,12]]}},"keywords":{}}],["between",{"_index":84,"title":{},"content":{"12":{"position":[[197,7]]}},"keywords":{}}],["bevi",{"_index":169,"title":{},"content":{"16":{"position":[[328,4]]}},"keywords":{}}],["bevy_renet",{"_index":167,"title":{},"content":{"16":{"position":[[280,11]]}},"keywords":{}}],["bool",{"_index":291,"title":{},"content":{"35":{"position":[[577,5],[1020,5]]},"39":{"position":[[464,4]]},"40":{"position":[[499,4]]},"41":{"position":[[380,4]]}},"keywords":{}}],["boolean",{"_index":330,"title":{},"content":{"39":{"position":[[580,8]]}},"keywords":{}}],["boolean>",{"_index":321,"title":{},"content":{"39":{"position":[[296,11]]},"40":{"position":[[331,11],[580,11]]},"41":{"position":[[327,11]]}},"keywords":{}}],["bridgenet2",{"_index":171,"title":{},"content":{"16":{"position":[[388,11]]}},"keywords":{}}],["call",{"_index":112,"title":{},"content":{"13":{"position":[[236,4]]},"26":{"position":[[337,4]]},"28":{"position":[[221,7],[267,7]]},"29":{"position":[[229,7]]},"30":{"position":[[131,4],[467,4]]},"36":{"position":[[262,4]]},"41":{"position":[[434,4],[604,6],[654,7]]},"42":{"position":[[2251,4],[2385,4]]}},"keywords":{}}],["case",{"_index":103,"title":{},"content":{"12":{"position":[[465,5],[532,4]]}},"keywords":{}}],["certain",{"_index":129,"title":{},"content":{"15":{"position":[[113,7]]},"26":{"position":[[200,7]]}},"keywords":{}}],["chain",{"_index":236,"title":{},"content":{"26":{"position":[[126,8]]},"27":{"position":[[220,8]]}},"keywords":{}}],["chang",{"_index":107,"title":{},"content":{"12":{"position":[[557,6]]},"38":{"position":[[146,6]]}},"keywords":{}}],["channel",{"_index":211,"title":{},"content":{"23":{"position":[[36,8],[370,7]]},"25":{"position":[[102,8],[152,7]]},"35":{"position":[[460,7]]},"38":{"position":[[94,9],[137,8],[201,7]]},"42":{"position":[[554,7]]}},"keywords":{}}],["channelev",{"_index":314,"title":{},"content":{"38":{"position":[[52,12]]}},"keywords":{}}],["check",{"_index":137,"title":{"39":{"position":[[5,9]]}},"content":{"15":{"position":[[286,8],[401,8]]},"35":{"position":[[663,5],[1106,5]]},"39":{"position":[[19,7],[730,8]]},"42":{"position":[[11,5]]}},"keywords":{}}],["checkout",{"_index":23,"title":{},"content":{"1":{"position":[[289,8]]}},"keywords":{}}],["child",{"_index":387,"title":{},"content":{"42":{"position":[[1591,5]]}},"keywords":{}}],["child:isa("modulescript"",{"_index":389,"title":{},"content":{"42":{"position":[[1635,35]]}},"keywords":{}}],["choic",{"_index":153,"title":{},"content":{"15":{"position":[[655,7]]},"16":{"position":[[90,7]]}},"keywords":{}}],["client",{"_index":245,"title":{},"content":{"27":{"position":[[46,7],[158,8],[189,7]]},"28":{"position":[[156,6],[296,7]]},"29":{"position":[[198,6],[279,6]]},"36":{"position":[[363,7]]},"40":{"position":[[712,7]]},"42":{"position":[[2408,6],[2502,6],[2568,6]]}},"keywords":{}}],["code",{"_index":111,"title":{},"content":{"13":{"position":[[124,4]]},"25":{"position":[[242,4]]},"30":{"position":[[291,4]]}},"keywords":{}}],["come",{"_index":221,"title":{},"content":{"23":{"position":[[345,4]]}},"keywords":{}}],["commonli",{"_index":176,"title":{},"content":{"17":{"position":[[70,8]]}},"keywords":{}}],["complet",{"_index":318,"title":{},"content":{"39":{"position":[[60,10],[710,10]]}},"keywords":{}}],["completionsimpl",{"_index":145,"title":{},"content":{"15":{"position":[[421,16]]}},"keywords":{}}],["compliment",{"_index":333,"title":{},"content":{"39":{"position":[[823,10]]}},"keywords":{}}],["compon",{"_index":366,"title":{},"content":{"42":{"position":[[715,9],[789,10]]}},"keywords":{}}],["componentinstance<t>",{"_index":368,"title":{},"content":{"42":{"position":[[736,26]]}},"keywords":{}}],["compress",{"_index":275,"title":{"35":{"position":[[0,12]]}},"content":{"35":{"position":[[209,8]]}},"keywords":{}}],["compress/decompress",{"_index":276,"title":{},"content":{"35":{"position":[[3,19]]}},"keywords":{}}],["configur",{"_index":93,"title":{"23":{"position":[[0,14]]},"38":{"position":[[0,14]]}},"content":{"12":{"position":[[269,14]]},"23":{"position":[[20,13]]},"25":{"position":[[35,15]]},"38":{"position":[[29,9]]},"42":{"position":[[1867,13]]}},"keywords":{}}],["construct",{"_index":4,"title":{"1":{"position":[[23,14]]}},"content":{},"keywords":{}}],["crate",{"_index":168,"title":{},"content":{"16":{"position":[[305,5]]}},"keywords":{}}],["creat",{"_index":155,"title":{},"content":{"15":{"position":[[678,8]]},"25":{"position":[[56,7]]},"30":{"position":[[365,6]]},"36":{"position":[[94,8],[400,8]]},"39":{"position":[[107,8]]},"42":{"position":[[309,6],[1106,6]]}},"keywords":{}}],["createhook",{"_index":108,"title":{"13":{"position":[[0,11]]}},"content":{},"keywords":{}}],["custom",{"_index":52,"title":{},"content":{"6":{"position":[[77,6]]},"36":{"position":[[409,6]]}},"keywords":{}}],["data",{"_index":156,"title":{"16":{"position":[[0,4]]},"17":{"position":[[11,4]]}},"content":{"16":{"position":[[131,4]]},"17":{"position":[[0,4],[204,4],[321,4],[417,4]]},"26":{"position":[[473,4]]},"27":{"position":[[34,4],[146,4],[212,4],[305,4]]},"35":{"position":[[28,5],[102,5],[237,5]]},"40":{"position":[[55,4],[81,4],[700,4]]},"41":{"position":[[149,7]]},"42":{"position":[[730,5],[2296,7],[2425,7],[2488,4],[2558,4]]}},"keywords":{}}],["declar",{"_index":359,"title":{},"content":{"42":{"position":[[376,7]]}},"keywords":{}}],["decompress",{"_index":283,"title":{},"content":{"35":{"position":[[221,10]]}},"keywords":{}}],["default",{"_index":94,"title":{},"content":{"12":{"position":[[291,8]]},"23":{"position":[[93,8],[185,8]]},"27":{"position":[[112,8]]},"40":{"position":[[654,8]]},"42":{"position":[[1909,7]]}},"keywords":{}}],["defaultconfigur",{"_index":360,"title":{},"content":{"42":{"position":[[529,20]]}},"keywords":{}}],["depend",{"_index":195,"title":{},"content":{"19":{"position":[[0,14]]}},"keywords":{}}],["descriptionreli",{"_index":315,"title":{},"content":{"38":{"position":[[209,19]]}},"keywords":{}}],["deseri",{"_index":279,"title":{},"content":{"35":{"position":[[85,11],[498,11]]}},"keywords":{}}],["design",{"_index":148,"title":{"16":{"position":[[15,7]]}},"content":{"15":{"position":[[472,6],[648,6]]},"16":{"position":[[83,6],[160,7],[193,6]]},"17":{"position":[[12,6],[40,7],[140,6],[216,7],[237,6]]},"30":{"position":[[346,8]]}},"keywords":{}}],["detail",{"_index":51,"title":{},"content":{"6":{"position":[[47,8]]},"15":{"position":[[636,7]]}},"keywords":{}}],["determin",{"_index":281,"title":{},"content":{"35":{"position":[[188,9]]}},"keywords":{}}],["differ",{"_index":105,"title":{},"content":{"12":{"position":[[506,9],[572,9]]}},"keywords":{}}],["difficult",{"_index":184,"title":{},"content":{"17":{"position":[[284,9]]}},"keywords":{}}],["don't",{"_index":18,"title":{},"content":{"1":{"position":[[160,5]]}},"keywords":{}}],["driven",{"_index":147,"title":{"16":{"position":[[5,6]]},"17":{"position":[[16,8]]}},"content":{"15":{"position":[[465,6]]},"16":{"position":[[136,6]]},"17":{"position":[[5,6],[33,6],[133,6],[209,6],[230,6]]}},"keywords":{}}],["drop",{"_index":228,"title":{},"content":{"23":{"position":[[473,7]]},"38":{"position":[[247,8],[306,7]]}},"keywords":{}}],["due",{"_index":238,"title":{},"content":{"26":{"position":[[193,3]]}},"keywords":{}}],["each",{"_index":85,"title":{},"content":{"12":{"position":[[205,4]]},"13":{"position":[[257,4]]}},"keywords":{}}],["ec",{"_index":21,"title":{},"content":{"1":{"position":[[263,3],[311,3]]},"6":{"position":[[138,3]]},"16":{"position":[[124,4],[333,3],[471,3]]},"17":{"position":[[186,3],[475,4],[509,3],[576,4]]},"42":{"position":[[209,4]]}},"keywords":{}}],["ecr",{"_index":0,"title":{"0":{"position":[[0,3]]}},"content":{"1":{"position":[[75,4],[298,3]]}},"keywords":{}}],["enabl",{"_index":332,"title":{},"content":{"39":{"position":[[698,6],[799,6]]}},"keywords":{}}],["encourag",{"_index":186,"title":{},"content":{"17":{"position":[[384,10],[491,10]]},"39":{"position":[[784,10]]}},"keywords":{}}],["end",{"_index":45,"title":{},"content":{"4":{"position":[[281,3]]},"26":{"position":[[456,3]]},"35":{"position":[[829,3],[937,4],[1271,3],[1379,4]]},"39":{"position":[[505,3]]},"40":{"position":[[174,4],[540,3]]},"41":{"position":[[421,3]]},"42":{"position":[[1714,3],[1718,3],[2347,3],[2476,3],[2629,3]]}},"keywords":{}}],["ensur",{"_index":82,"title":{},"content":{"12":{"position":[[168,7]]}},"keywords":{}}],["entiti",{"_index":363,"title":{},"content":{"42":{"position":[[644,8]]}},"keywords":{}}],["entityid",{"_index":365,"title":{},"content":{"42":{"position":[[691,8]]}},"keywords":{}}],["entitypayload",{"_index":364,"title":{},"content":{"42":{"position":[[658,13]]}},"keywords":{}}],["evaera",{"_index":192,"title":{},"content":{"17":{"position":[[584,7]]}},"keywords":{}}],["event",{"_index":91,"title":{},"content":{"12":{"position":[[248,5],[356,5],[516,7],[582,6]]},"13":{"position":[[141,7]]},"17":{"position":[[27,5],[127,5],[224,5],[334,6],[373,7]]},"23":{"position":[[111,6],[131,5]]},"25":{"position":[[115,6],[259,6]]},"35":{"position":[[169,5]]},"42":{"position":[[586,5],[1838,9]]}},"keywords":{}}],["eventslack",{"_index":135,"title":{},"content":{"15":{"position":[[267,10]]}},"keywords":{}}],["exampl",{"_index":117,"title":{},"content":{"13":{"position":[[303,8]]},"26":{"position":[[383,8]]},"28":{"position":[[122,8]]},"29":{"position":[[134,8]]},"36":{"position":[[389,7]]},"39":{"position":[[517,8]]},"42":{"position":[[55,7],[122,7]]}},"keywords":{}}],["examplesystem(world",{"_index":400,"title":{},"content":{"42":{"position":[[2196,20]]}},"keywords":{}}],["expect",{"_index":322,"title":{},"content":{"39":{"position":[[335,6],[668,6]]},"40":{"position":[[370,6]]}},"keywords":{}}],["export",{"_index":197,"title":{},"content":{"19":{"position":[[91,6]]}},"keywords":{}}],["featur",{"_index":220,"title":{},"content":{"23":{"position":[[332,7]]},"39":{"position":[[840,9]]}},"keywords":{}}],["few",{"_index":312,"title":{},"content":{"38":{"position":[[12,3]]}},"keywords":{}}],["filter",{"_index":46,"title":{},"content":{"5":{"position":[[64,6],[87,7]]},"26":{"position":[[105,6]]},"41":{"position":[[524,6],[632,6]]}},"keywords":{}}],["final",{"_index":395,"title":{},"content":{"42":{"position":[[1943,8]]}},"keywords":{}}],["find",{"_index":204,"title":{},"content":{"20":{"position":[[8,4]]}},"keywords":{}}],["firstli",{"_index":354,"title":{},"content":{"42":{"position":[[300,8]]}},"keywords":{}}],["fix",{"_index":241,"title":{},"content":{"26":{"position":[[327,3]]}},"keywords":{}}],["frame",{"_index":86,"title":{},"content":{"12":{"position":[[210,6]]},"17":{"position":[[443,5],[452,6]]},"23":{"position":[[266,5],[430,5]]},"26":{"position":[[90,6]]},"30":{"position":[[320,5],[329,5]]},"38":{"position":[[318,6],[352,6]]},"40":{"position":[[109,6]]},"41":{"position":[[514,5]]},"42":{"position":[[2261,5],[2395,5]]}},"keywords":{}}],["function",{"_index":26,"title":{"3":{"position":[[0,10]]},"11":{"position":[[0,10]]},"24":{"position":[[0,10]]},"32":{"position":[[0,10]]}},"content":{"6":{"position":[[192,8]]},"13":{"position":[[82,8],[190,8],[219,8]]},"16":{"position":[[430,13]]},"28":{"position":[[52,8]]},"29":{"position":[[52,8]]},"30":{"position":[[108,9]]},"36":{"position":[[195,9],[210,8],[239,8]]},"42":{"position":[[236,8],[1169,10],[2187,8]]}},"keywords":{}}],["futur",{"_index":222,"title":{},"content":{"23":{"position":[[353,6]]}},"keywords":{}}],["game",{"_index":16,"title":{},"content":{"1":{"position":[[136,4]]},"16":{"position":[[155,4]]},"30":{"position":[[63,4]]},"36":{"position":[[64,4]]},"42":{"position":[[63,4],[99,5]]}},"keywords":{}}],["game:getservice("runservice"",{"_index":266,"title":{},"content":{"30":{"position":[[537,39]]},"36":{"position":[[488,39]]}},"keywords":{}}],["gener",{"_index":181,"title":{},"content":{"17":{"position":[[194,9]]}},"keywords":{}}],["get",{"_index":150,"title":{},"content":{"15":{"position":[[548,7]]}},"keywords":{}}],["go",{"_index":174,"title":{"17":{"position":[[4,2]]}},"content":{},"keywords":{}}],["handl",{"_index":72,"title":{},"content":{"10":{"position":[[72,8]]}},"keywords":{}}],["heartbeat",{"_index":101,"title":{},"content":{"12":{"position":[[427,10]]},"13":{"position":[[337,10]]},"30":{"position":[[234,9]]}},"keywords":{}}],["here",{"_index":394,"title":{},"content":{"42":{"position":[[1891,4]]}},"keywords":{}}],["hook",{"_index":119,"title":{"30":{"position":[[0,5]]}},"content":{"13":{"position":[[354,4]]},"30":{"position":[[0,5],[21,5],[214,5],[374,5],[673,4]]},"36":{"position":[[105,4],[624,4]]}},"keywords":{}}],["hooksdata",{"_index":146,"title":{},"content":{"15":{"position":[[455,9]]}},"keywords":{}}],["ident",{"_index":307,"title":{},"content":{"36":{"position":[[151,9]]}},"keywords":{}}],["identifi",{"_index":68,"title":{},"content":{"9":{"position":[[54,10],[77,8]]},"10":{"position":[[38,10]]},"25":{"position":[[90,11]]},"27":{"position":[[97,11]]}},"keywords":{}}],["implement",{"_index":58,"title":{},"content":{"6":{"position":[[216,14]]},"23":{"position":[[314,12]]}},"keywords":{}}],["incom",{"_index":256,"title":{},"content":{"28":{"position":[[74,8]]}},"keywords":{}}],["index",{"_index":96,"title":{},"content":{"12":{"position":[[312,5]]}},"keywords":{}}],["influenc",{"_index":163,"title":{},"content":{"16":{"position":[[178,10]]}},"keywords":{}}],["inform",{"_index":62,"title":{},"content":{"6":{"position":[[279,11]]},"26":{"position":[[487,12]]},"27":{"position":[[319,12]]},"28":{"position":[[328,12]]},"29":{"position":[[336,12]]}},"keywords":{}}],["init.client.luau",{"_index":379,"title":{},"content":{"42":{"position":[[1254,16]]}},"keywords":{}}],["init.server.luau",{"_index":378,"title":{},"content":{"42":{"position":[[1235,16]]}},"keywords":{}}],["initi",{"_index":79,"title":{},"content":{"12":{"position":[[97,11]]},"42":{"position":[[179,9]]}},"keywords":{}}],["inspir",{"_index":166,"title":{},"content":{"16":{"position":[[263,11]]}},"keywords":{}}],["instal",{"_index":193,"title":{"18":{"position":[[0,13]]}},"content":{"19":{"position":[[162,7]]}},"keywords":{}}],["integr",{"_index":10,"title":{},"content":{"1":{"position":[[44,11],[109,11]]},"6":{"position":[[106,9]]},"15":{"position":[[438,11]]},"30":{"position":[[40,9]]},"36":{"position":[[36,9]]}},"keywords":{}}],["intellisens",{"_index":138,"title":{},"content":{"15":{"position":[[299,12]]},"39":{"position":[[38,12]]}},"keywords":{}}],["interfac",{"_index":210,"title":{},"content":{"23":{"position":[[10,9]]}},"keywords":{}}],["intern",{"_index":60,"title":{},"content":{"6":{"position":[[258,11]]}},"keywords":{}}],["introduct",{"_index":121,"title":{"14":{"position":[[0,12]]}},"content":{},"keywords":{}}],["invoc",{"_index":218,"title":{},"content":{"23":{"position":[[252,11]]}},"keywords":{}}],["issu",{"_index":130,"title":{},"content":{"15":{"position":[[121,6],[186,6]]}},"keywords":{}}],["it'",{"_index":115,"title":{},"content":{"13":{"position":[[280,4]]},"17":{"position":[[151,4],[486,4]]},"25":{"position":[[188,4]]},"30":{"position":[[179,4]]},"42":{"position":[[79,4]]}},"keywords":{}}],["iter",{"_index":27,"title":{"4":{"position":[[0,9]]}},"content":{"4":{"position":[[64,9]]},"26":{"position":[[49,9],[247,9]]},"41":{"position":[[105,8]]}},"keywords":{}}],["keep",{"_index":151,"title":{},"content":{"15":{"position":[[589,4]]}},"keywords":{}}],["key",{"_index":160,"title":{},"content":{"16":{"position":[[79,3]]},"42":{"position":[[1848,3]]}},"keywords":{}}],["know",{"_index":185,"title":{},"content":{"17":{"position":[[297,4]]}},"keywords":{}}],["larg",{"_index":164,"title":{},"content":{"16":{"position":[[215,7]]}},"keywords":{}}],["learn",{"_index":7,"title":{},"content":{"1":{"position":[[12,8]]},"15":{"position":[[487,5],[605,5]]}},"keywords":{}}],["librari",{"_index":22,"title":{},"content":{"1":{"position":[[267,8],[315,8]]},"6":{"position":[[125,7]]},"15":{"position":[[20,7],[56,7],[198,7]]},"16":{"position":[[51,9],[207,7],[369,7],[457,9]]},"35":{"position":[[48,7]]}},"keywords":{}}],["limit",{"_index":239,"title":{},"content":{"26":{"position":[[208,11]]}},"keywords":{}}],["load",{"_index":373,"title":{},"content":{"42":{"position":[[912,6]]}},"keywords":{}}],["local",{"_index":118,"title":{},"content":{"13":{"position":[[348,5]]},"30":{"position":[[518,5],[577,5],[619,5],[667,5]]},"35":{"position":[[243,5],[291,5],[333,5],[405,5],[583,5],[610,5],[1026,5],[1053,5]]},"36":{"position":[[469,5],[528,5],[570,5],[618,5]]},"39":{"position":[[144,5],[186,5],[258,5]]},"40":{"position":[[179,5],[221,5],[293,5],[544,5]]},"41":{"position":[[175,5],[217,5],[289,5]]},"42":{"position":[[409,5],[451,5],[523,5],[800,5],[919,5],[1271,5],[1319,5],[1346,5],[1371,5],[1413,5],[1461,5],[1487,5],[1565,5],[2092,5],[2140,5],[2181,5]]}},"keywords":{}}],["loop",{"_index":49,"title":{"6":{"position":[[0,4]]}},"content":{"6":{"position":[[13,4],[27,5],[84,4]]},"12":{"position":[[21,5],[27,5],[44,4],[157,5]]},"23":{"position":[[177,4]]},"41":{"position":[[169,5]]},"42":{"position":[[294,5],[1125,5],[1352,4],[1493,4],[1815,4]]}},"keywords":{}}],["loop.new(world",{"_index":385,"title":{},"content":{"42":{"position":[[1500,15]]}},"keywords":{}}],["loop:begin",{"_index":98,"title":{},"content":{"12":{"position":[[370,12]]},"42":{"position":[[1896,12]]}},"keywords":{}}],["loop:schedulesystems(system",{"_index":392,"title":{},"content":{"42":{"position":[[1722,29]]}},"keywords":{}}],["lt;/>",{"_index":29,"title":{},"content":{"4":{"position":[[0,9]]},"5":{"position":[[0,9]]},"9":{"position":[[0,9]]},"10":{"position":[[0,9]]},"12":{"position":[[0,9]]},"13":{"position":[[0,9]]},"23":{"position":[[0,9]]},"25":{"position":[[0,9]]},"26":{"position":[[0,9]]},"27":{"position":[[0,9]]},"28":{"position":[[0,9]]},"29":{"position":[[0,9]]},"33":{"position":[[0,9]]}},"keywords":{}}],["luau",{"_index":24,"title":{},"content":{"1":{"position":[[306,4]]},"26":{"position":[[229,4]]}},"keywords":{}}],["luautypescript",{"_index":261,"title":{},"content":{"30":{"position":[[6,14]]},"36":{"position":[[13,14]]},"39":{"position":[[129,14]]},"40":{"position":[[0,14]]},"41":{"position":[[0,14]]},"42":{"position":[[158,14]]}},"keywords":{}}],["made",{"_index":161,"title":{},"content":{"16":{"position":[[106,4]]},"42":{"position":[[189,4]]}},"keywords":{}}],["make",{"_index":89,"title":{},"content":{"12":{"position":[[229,4]]},"16":{"position":[[227,5]]},"17":{"position":[[275,5]]},"42":{"position":[[1824,4]]}},"keywords":{}}],["manner",{"_index":187,"title":{},"content":{"17":{"position":[[436,6]]}},"keywords":{}}],["match",{"_index":37,"title":{},"content":{"4":{"position":[[152,5]]}},"keywords":{}}],["matter",{"_index":19,"title":{"42":{"position":[[0,6]]}},"content":{"1":{"position":[[170,7],[199,6]]},"6":{"position":[[20,6],[153,7]]},"12":{"position":[[37,6],[150,6]]},"17":{"position":[[563,6]]},"23":{"position":[[170,6]]},"42":{"position":[[0,6],[48,6],[202,6],[287,6],[782,6],[1118,6],[1277,6],[1957,6]]}},"keywords":{}}],["matter'",{"_index":377,"title":{},"content":{"42":{"position":[[1214,8]]}},"keywords":{}}],["matter.loop",{"_index":383,"title":{},"content":{"42":{"position":[[1359,11]]}},"keywords":{}}],["matter.world",{"_index":382,"title":{},"content":{"42":{"position":[[1333,12]]}},"keywords":{}}],["matterrepl",{"_index":369,"title":{},"content":{"42":{"position":[[806,18],[999,17],[1019,18]]}},"keywords":{}}],["mean",{"_index":331,"title":{},"content":{"39":{"position":[[594,5]]}},"keywords":{}}],["meant",{"_index":100,"title":{},"content":{"12":{"position":[[407,5]]}},"keywords":{}}],["method",{"_index":99,"title":{},"content":{"12":{"position":[[383,7]]},"26":{"position":[[158,6],[180,7]]},"39":{"position":[[609,7]]},"41":{"position":[[449,7],[593,6]]}},"keywords":{}}],["middlewar",{"_index":81,"title":{"34":{"position":[[0,10]]}},"content":{"12":{"position":[[131,10]]},"28":{"position":[[308,10]]},"29":{"position":[[316,10]]},"42":{"position":[[1223,11]]}},"keywords":{}}],["middlewarestrict",{"_index":142,"title":{},"content":{"15":{"position":[[379,16]]}},"keywords":{}}],["modifi",{"_index":272,"title":{},"content":{"33":{"position":[[86,8]]}},"keywords":{}}],["modulescript",{"_index":356,"title":{},"content":{"42":{"position":[[330,12],[1998,12]]}},"keywords":{}}],["more",{"_index":61,"title":{},"content":{"6":{"position":[[274,4]]},"15":{"position":[[493,4],[611,4]]},"26":{"position":[[482,4]]},"27":{"position":[[314,4]]},"28":{"position":[[323,4]]},"29":{"position":[[331,4]]}},"keywords":{}}],["name",{"_index":367,"title":{},"content":{"42":{"position":[[725,4]]}},"keywords":{}}],["net",{"_index":12,"title":{"7":{"position":[[0,3]]}},"content":{"1":{"position":[[66,3],[121,3],[247,3]]},"6":{"position":[[121,3],[251,3]]},"13":{"position":[[34,5],[109,3]]},"15":{"position":[[0,3],[342,3],[508,3],[687,4]]},"16":{"position":[[25,3],[98,3],[400,3]]},"17":{"position":[[356,3],[518,4]]},"19":{"position":[[15,3],[157,4]]},"20":{"position":[[13,3]]},"25":{"position":[[227,3]]},"30":{"position":[[50,3],[338,3],[583,3]]},"35":{"position":[[297,3]]},"36":{"position":[[46,3],[534,3]]},"39":{"position":[[150,3]]},"40":{"position":[[185,3]]},"41":{"position":[[181,3]]},"42":{"position":[[214,3],[415,3],[1165,3],[1377,3]]}},"keywords":{}}],["net<boolean>",{"_index":375,"title":{},"content":{"42":{"position":[[939,18]]}},"keywords":{}}],["net<entitypayload>",{"_index":370,"title":{},"content":{"42":{"position":[[825,24]]}},"keywords":{}}],["net<numb",{"_index":337,"title":{},"content":{"40":{"position":[[557,14]]}},"keywords":{}}],["net<u...>",{"_index":302,"title":{},"content":{"35":{"position":[[1168,15]]}},"keywords":{}}],["net'",{"_index":350,"title":{},"content":{"42":{"position":[[116,5]]}},"keywords":{}}],["net.createhook",{"_index":59,"title":{},"content":{"6":{"position":[[234,16],[304,15]]},"13":{"position":[[10,15],[361,16]]},"30":{"position":[[392,16]]},"36":{"position":[[116,16],[442,16]]}},"keywords":{}}],["net.createhook(rout",{"_index":269,"title":{},"content":{"30":{"position":[[680,22]]},"36":{"position":[[631,22]]}},"keywords":{}}],["net.new",{"_index":338,"title":{},"content":{"40":{"position":[[594,9]]}},"keywords":{}}],["net.new(defaultconfigur",{"_index":371,"title":{},"content":{"42":{"position":[[852,29],[960,29]]}},"keywords":{}}],["net.rout",{"_index":70,"title":{},"content":{"10":{"position":[[10,10]]},"35":{"position":[[347,9]]},"39":{"position":[[200,9]]},"40":{"position":[[235,9]]},"41":{"position":[[231,9]]},"42":{"position":[[465,9]]}},"keywords":{}}],["net.route<u...>",{"_index":286,"title":{},"content":{"35":{"position":[[382,22]]},"39":{"position":[[235,22]]},"40":{"position":[[270,22]]},"41":{"position":[[266,22]]},"42":{"position":[[500,22]]}},"keywords":{}}],["net.serv",{"_index":65,"title":{},"content":{"9":{"position":[[10,11]]},"41":{"position":[[764,10]]}},"keywords":{}}],["net.start",{"_index":77,"title":{},"content":{"12":{"position":[[10,10]]},"42":{"position":[[1786,15]]}},"keywords":{}}],["net.start(loop",{"_index":55,"title":{},"content":{"6":{"position":[[165,15]]},"36":{"position":[[168,15]]},"42":{"position":[[1147,15],[1541,15]]}},"keywords":{}}],["net:query():from(...send",{"_index":43,"title":{},"content":{"4":{"position":[[233,28]]}},"keywords":{}}],["network",{"_index":122,"title":{},"content":{"15":{"position":[[9,10],[152,10],[256,10]]},"16":{"position":[[40,10],[294,10],[358,10]]},"28":{"position":[[206,8]]},"29":{"position":[[121,8],[214,8]]},"30":{"position":[[280,10]]},"38":{"position":[[192,8]]},"42":{"position":[[2240,10],[2374,10]]}},"keywords":{}}],["never",{"_index":316,"title":{},"content":{"38":{"position":[[241,5]]}},"keywords":{}}],["new",{"_index":131,"title":{"25":{"position":[[0,4]]}},"content":{"15":{"position":[[140,3]]},"25":{"position":[[66,3]]}},"keywords":{}}],["next",{"_index":335,"title":{},"content":{"40":{"position":[[104,4]]}},"keywords":{}}],["note",{"_index":87,"title":{},"content":{"12":{"position":[[217,4]]},"19":{"position":[[70,5]]},"23":{"position":[[275,4]]},"25":{"position":[[122,4]]},"26":{"position":[[188,4]]}},"keywords":{}}],["now",{"_index":13,"title":{},"content":{"1":{"position":[[84,3]]},"42":{"position":[[1073,3]]}},"keywords":{}}],["npm",{"_index":206,"title":{},"content":{"20":{"position":[[37,4]]}},"keywords":{}}],["num",{"_index":328,"title":{},"content":{"39":{"position":[[454,4]]},"40":{"position":[[489,4]]},"41":{"position":[[370,4]]}},"keywords":{}}],["number",{"_index":30,"title":{},"content":{"4":{"position":[[14,7]]},"23":{"position":[[225,6]]},"39":{"position":[[564,7]]}},"keywords":{}}],["number>",{"_index":288,"title":{},"content":{"35":{"position":[[435,10]]}},"keywords":{}}],["object",{"_index":53,"title":{},"content":{"6":{"position":[[89,6]]},"10":{"position":[[49,6]]},"26":{"position":[[278,6],[371,7]]}},"keywords":{}}],["on",{"_index":157,"title":{},"content":{"16":{"position":[[0,3]]},"38":{"position":[[83,3]]}},"keywords":{}}],["one(",{"_index":273,"title":{},"content":{"33":{"position":[[131,6]]}},"keywords":{}}],["onto",{"_index":237,"title":{},"content":{"26":{"position":[[165,4]]}},"keywords":{}}],["oppos",{"_index":175,"title":{},"content":{"17":{"position":[[19,7]]}},"keywords":{}}],["opt",{"_index":180,"title":{},"content":{"17":{"position":[[178,3]]}},"keywords":{}}],["order",{"_index":183,"title":{},"content":{"17":{"position":[[260,9],[428,7]]},"23":{"position":[[439,6],[505,6]]},"26":{"position":[[318,5]]},"35":{"position":[[135,5]]},"38":{"position":[[271,8],[340,7]]}},"keywords":{}}],["out",{"_index":344,"title":{},"content":{"41":{"position":[[639,3]]},"42":{"position":[[17,3]]}},"keywords":{}}],["outgo",{"_index":260,"title":{},"content":{"29":{"position":[[74,8]]}},"keywords":{}}],["output",{"_index":341,"title":{},"content":{"41":{"position":[[124,6]]}},"keywords":{}}],["over",{"_index":28,"title":{"4":{"position":[[10,4]]}},"content":{"4":{"position":[[74,4]]},"26":{"position":[[257,4]]},"28":{"position":[[197,4]]},"29":{"position":[[112,4],[205,4]]},"38":{"position":[[183,4]]},"40":{"position":[[60,4]]}},"keywords":{}}],["overhead",{"_index":133,"title":{},"content":{"15":{"position":[[218,8]]}},"keywords":{}}],["packag",{"_index":201,"title":{},"content":{"19":{"position":[[176,7]]}},"keywords":{}}],["packet",{"_index":34,"title":{},"content":{"4":{"position":[[109,7]]},"5":{"position":[[95,7]]},"13":{"position":[[285,6]]},"23":{"position":[[392,7],[458,7]]},"26":{"position":[[66,7]]},"28":{"position":[[83,7],[174,6]]},"29":{"position":[[83,7],[184,6],[304,7]]},"30":{"position":[[170,8],[509,8]]},"33":{"position":[[117,6]]},"35":{"position":[[510,7],[955,7]]},"36":{"position":[[338,7]]},"38":{"position":[[166,7],[229,7],[291,7]]},"40":{"position":[[690,6]]},"41":{"position":[[53,7],[488,7],[566,7]]}},"keywords":{}}],["page",{"_index":2,"title":{"1":{"position":[[9,4]]}},"content":{"6":{"position":[[8,4]]}},"keywords":{}}],["paramet",{"_index":274,"title":{},"content":{"33":{"position":[[154,10]]},"35":{"position":[[175,9]]}},"keywords":{}}],["pass",{"_index":251,"title":{},"content":{"27":{"position":[[248,7]]},"30":{"position":[[422,4]]}},"keywords":{}}],["payload",{"_index":361,"title":{},"content":{"42":{"position":[[620,7]]}},"keywords":{}}],["per",{"_index":226,"title":{},"content":{"23":{"position":[[426,3]]},"38":{"position":[[314,3],[348,3]]}},"keywords":{}}],["player",{"_index":31,"title":{},"content":{"4":{"position":[[22,6]]},"27":{"position":[[258,6],[268,7]]},"33":{"position":[[36,7],[48,6]]},"40":{"position":[[763,6],[775,6]]},"41":{"position":[[744,6],[755,6]]},"42":{"position":[[901,6],[2288,7]]}},"keywords":{}}],["playerload",{"_index":374,"title":{},"content":{"42":{"position":[[925,13],[1038,12],[1053,13],[2146,12]]}},"keywords":{}}],["playerloaded:queri",{"_index":402,"title":{},"content":{"42":{"position":[[2307,20],[2436,20]]}},"keywords":{}}],["playerloaded:send(...data",{"_index":403,"title":{},"content":{"42":{"position":[[2523,26]]}},"keywords":{}}],["playerloaded:send(...data):to(play",{"_index":404,"title":{},"content":{"42":{"position":[[2591,37]]}},"keywords":{}}],["pleas",{"_index":88,"title":{},"content":{"12":{"position":[[222,6]]}},"keywords":{}}],["po",{"_index":42,"title":{},"content":{"4":{"position":[[213,4]]},"39":{"position":[[449,4]]},"40":{"position":[[484,4]]},"41":{"position":[[357,4]]}},"keywords":{}}],["posit",{"_index":342,"title":{},"content":{"41":{"position":[[131,9]]}},"keywords":{}}],["practic",{"_index":9,"title":{},"content":{"1":{"position":[[30,9]]}},"keywords":{}}],["prefer",{"_index":188,"title":{},"content":{"17":{"position":[[459,10]]}},"keywords":{}}],["previou",{"_index":235,"title":{},"content":{"26":{"position":[[81,8]]},"41":{"position":[[505,8]]}},"keywords":{}}],["process",{"_index":114,"title":{},"content":{"13":{"position":[[272,7]]},"28":{"position":[[107,10]]},"30":{"position":[[157,7],[496,7]]},"36":{"position":[[288,7]]},"40":{"position":[[94,9]]}},"keywords":{}}],["project",{"_index":351,"title":{},"content":{"42":{"position":[[130,8]]}},"keywords":{}}],["properti",{"_index":63,"title":{"8":{"position":[[0,11]]}},"content":{},"keywords":{}}],["provid",{"_index":48,"title":{},"content":{"5":{"position":[[148,8]]},"13":{"position":[[158,7]]},"15":{"position":[[132,7],[351,8]]},"16":{"position":[[414,7]]},"33":{"position":[[138,8]]},"35":{"position":[[1145,8]]},"39":{"position":[[30,7],[74,9]]},"42":{"position":[[218,8]]}},"keywords":{}}],["push",{"_index":172,"title":{},"content":{"16":{"position":[[404,6]]}},"keywords":{}}],["put",{"_index":346,"title":{},"content":{"41":{"position":[[715,7]]}},"keywords":{}}],["queri",{"_index":73,"title":{"26":{"position":[[0,6]]},"41":{"position":[[0,9]]}},"content":{"10":{"position":[[81,7]]},"17":{"position":[[402,5]]},"26":{"position":[[174,5],[464,8]]},"40":{"position":[[148,5]]},"41":{"position":[[15,8],[43,5],[443,5]]},"42":{"position":[[2220,5],[2354,5]]}},"keywords":{}}],["queryresult",{"_index":25,"title":{"2":{"position":[[0,11]]},"4":{"position":[[15,12]]}},"content":{"4":{"position":[[49,11],[81,11]]},"5":{"position":[[75,11]]},"26":{"position":[[26,11],[266,11],[359,11]]},"41":{"position":[[699,11]]}},"keywords":{}}],["queryresult'",{"_index":35,"title":{},"content":{"4":{"position":[[124,13]]},"5":{"position":[[112,13]]}},"keywords":{}}],["queryresult:from",{"_index":40,"title":{},"content":{"4":{"position":[[184,17]]},"5":{"position":[[10,17]]},"26":{"position":[[139,18]]}},"keywords":{}}],["queue",{"_index":116,"title":{},"content":{"13":{"position":[[292,6]]},"36":{"position":[[309,6]]}},"keywords":{}}],["quot;0.7.0",{"_index":208,"title":{},"content":{"20":{"position":[[76,11]]}},"keywords":{}}],["quot;@rbxts/yetanothernet"",{"_index":207,"title":{},"content":{"20":{"position":[[42,33]]}},"keywords":{}}],["quot;boolean"",{"_index":303,"title":{},"content":{"35":{"position":[[1239,19]]}},"keywords":{}}],["quot;default"",{"_index":215,"title":{},"content":{"23":{"position":[[194,19]]},"42":{"position":[[594,20]]}},"keywords":{}}],["quot;hello",{"_index":324,"title":{},"content":{"39":{"position":[[376,12]]},"40":{"position":[[411,12],[624,12]]}},"keywords":{}}],["quot;net_server"",{"_index":66,"title":{},"content":{"9":{"position":[[22,22]]},"33":{"position":[[57,23]]}},"keywords":{}}],["quot;reliable"",{"_index":212,"title":{},"content":{"23":{"position":[[45,20]]},"35":{"position":[[470,21]]},"42":{"position":[[564,21]]}},"keywords":{}}],["quot;string"",{"_index":295,"title":{},"content":{"35":{"position":[[759,18],[798,18],[1200,18]]}},"keywords":{}}],["quot;unreliable"",{"_index":213,"title":{},"content":{"23":{"position":[[68,22]]}},"keywords":{}}],["quot;yetanotherclown/yetanothernet@0.7.0"",{"_index":196,"title":{},"content":{"19":{"position":[[21,47]]}},"keywords":{}}],["ran",{"_index":255,"title":{},"content":{"28":{"position":[[67,3]]},"29":{"position":[[67,3]]}},"keywords":{}}],["ratelimit",{"_index":216,"title":{},"content":{"23":{"position":[[214,10],[294,12]]}},"keywords":{}}],["read",{"_index":152,"title":{},"content":{"15":{"position":[[594,7]]},"17":{"position":[[555,7]]}},"keywords":{}}],["real",{"_index":349,"title":{},"content":{"42":{"position":[[94,4]]}},"keywords":{}}],["receiv",{"_index":225,"title":{},"content":{"23":{"position":[[417,8],[493,8]]},"27":{"position":[[200,7]]},"28":{"position":[[163,8]]},"29":{"position":[[291,8]]},"40":{"position":[[164,9]]}},"keywords":{}}],["recipi",{"_index":247,"title":{},"content":{"27":{"position":[[69,10]]},"33":{"position":[[99,10]]}},"keywords":{}}],["recommend",{"_index":233,"title":{},"content":{"25":{"position":[[193,11]]},"30":{"position":[[184,11]]}},"keywords":{}}],["reliabl",{"_index":214,"title":{},"content":{"23":{"position":[[102,8],[378,9]]},"38":{"position":[[104,8]]}},"keywords":{}}],["remot",{"_index":232,"title":{},"content":{"25":{"position":[[180,7]]}},"keywords":{}}],["remoteev",{"_index":127,"title":{},"content":{"15":{"position":[[91,12],[329,12]]},"17":{"position":[[102,12]]}},"keywords":{}}],["remoteeventsord",{"_index":134,"title":{},"content":{"15":{"position":[[232,20]]}},"keywords":{}}],["replic",{"_index":362,"title":{},"content":{"42":{"position":[[632,11],[772,9]]}},"keywords":{}}],["replicatedstorag",{"_index":357,"title":{},"content":{"42":{"position":[[346,17]]}},"keywords":{}}],["repositori",{"_index":352,"title":{},"content":{"42":{"position":[[146,11]]}},"keywords":{}}],["request",{"_index":75,"title":{},"content":{"10":{"position":[[98,9]]}},"keywords":{}}],["requir",{"_index":190,"title":{},"content":{"17":{"position":[[534,9]]}},"keywords":{}}],["require("matter.luau"",{"_index":380,"title":{},"content":{"42":{"position":[[1286,32]]}},"keywords":{}}],["require("net.luau"",{"_index":267,"title":{},"content":{"30":{"position":[[589,29]]},"35":{"position":[[303,29]]},"36":{"position":[[540,29]]},"39":{"position":[[156,29]]},"40":{"position":[[191,29]]},"41":{"position":[[187,29]]},"42":{"position":[[421,29],[1383,29]]}},"keywords":{}}],["require("routes.luau"",{"_index":268,"title":{},"content":{"30":{"position":[[634,32]]},"36":{"position":[[585,32]]},"42":{"position":[[1428,32],[2107,32]]}},"keywords":{}}],["require("squash.luau"",{"_index":284,"title":{},"content":{"35":{"position":[[258,32]]}},"keywords":{}}],["require(child",{"_index":391,"title":{},"content":{"42":{"position":[[1698,15]]}},"keywords":{}}],["respons",{"_index":71,"title":{},"content":{"10":{"position":[[56,11]]}},"keywords":{}}],["rest",{"_index":165,"title":{},"content":{"16":{"position":[[252,5]]}},"keywords":{}}],["return",{"_index":33,"title":{},"content":{"4":{"position":[[98,6]]},"13":{"position":[[204,6]]},"26":{"position":[[294,6]]},"35":{"position":[[115,6],[525,9],[669,8],[822,6],[909,6],[1264,6],[1351,6]]},"36":{"position":[[224,6]]},"39":{"position":[[416,8],[658,6]]},"40":{"position":[[451,8]]},"41":{"position":[[95,6],[556,9]]},"42":{"position":[[990,6]]}},"keywords":{}}],["roblox",{"_index":123,"title":{"20":{"position":[[0,6]]}},"content":{"15":{"position":[[32,7],[166,7]]},"16":{"position":[[64,6],[380,7],[478,7]]},"17":{"position":[[86,7]]}},"keywords":{}}],["roblox'",{"_index":126,"title":{},"content":{"15":{"position":[[82,8]]}},"keywords":{}}],["rout",{"_index":56,"title":{"10":{"position":[[0,6]]},"21":{"position":[[0,5]]},"37":{"position":[[0,6]]}},"content":{"6":{"position":[[183,5]]},"10":{"position":[[21,5]]},"12":{"position":[[49,7],[57,7],[83,6],[114,6],[186,6],[396,6],[496,6]]},"13":{"position":[[26,7],[58,6],[177,7],[262,5],[378,5]]},"15":{"position":[[569,7]]},"23":{"position":[[153,5]]},"25":{"position":[[70,5],[131,6]]},"30":{"position":[[409,5],[446,7],[625,6]]},"35":{"position":[[339,5],[411,6]]},"36":{"position":[[133,5],[186,5],[301,7],[459,5],[576,6]]},"38":{"position":[[44,7],[69,6]]},"39":{"position":[[0,6],[121,7],[192,5],[264,6],[530,5],[762,7]]},"40":{"position":[[69,6],[227,5],[299,6],[550,6]]},"41":{"position":[[223,5],[295,6],[583,5]]},"42":{"position":[[265,6],[389,7],[457,5],[1197,6],[1419,6],[1534,6],[1557,7],[1860,6],[2025,6],[2098,6]]}},"keywords":{}}],["route<numb",{"_index":320,"title":{},"content":{"39":{"position":[[271,16]]},"40":{"position":[[306,16]]},"41":{"position":[[302,16]]}},"keywords":{}}],["route<str",{"_index":287,"title":{},"content":{"35":{"position":[[418,16]]}},"keywords":{}}],["route<u...>",{"_index":285,"title":{},"content":{"35":{"position":[[362,17]]},"39":{"position":[[215,17]]},"40":{"position":[[250,17]]},"41":{"position":[[246,17]]},"42":{"position":[[480,17]]}},"keywords":{}}],["route'",{"_index":248,"title":{},"content":{"27":{"position":[[89,7]]}},"keywords":{}}],["route.new",{"_index":289,"title":{},"content":{"35":{"position":[[448,11]]},"39":{"position":[[310,11]]},"40":{"position":[[345,11]]},"41":{"position":[[341,11]]}},"keywords":{}}],["route.new(configur",{"_index":229,"title":{},"content":{"25":{"position":[[10,24]]}},"keywords":{}}],["route.serv",{"_index":252,"title":{},"content":{"27":{"position":[[279,13]]}},"keywords":{}}],["route:addincomingmiddlewar",{"_index":254,"title":{},"content":{"28":{"position":[[10,29]]}},"keywords":{}}],["route:addincomingmiddleware(function(str",{"_index":290,"title":{},"content":{"35":{"position":[[535,41]]}},"keywords":{}}],["route:addoutgoingmiddlewar",{"_index":259,"title":{},"content":{"29":{"position":[[10,29]]}},"keywords":{}}],["route:addoutgoingmiddleware(function(str",{"_index":300,"title":{},"content":{"35":{"position":[[978,41]]}},"keywords":{}}],["route:queri",{"_index":234,"title":{},"content":{"26":{"position":[[10,13]]},"28":{"position":[[275,13]]},"39":{"position":[[472,13],[622,13]]},"40":{"position":[[507,13]]},"41":{"position":[[70,13],[388,13]]}},"keywords":{}}],["route:query():__it",{"_index":243,"title":{},"content":{"26":{"position":[[414,22]]}},"keywords":{}}],["route:query():from(...send",{"_index":345,"title":{},"content":{"41":{"position":[[662,29]]}},"keywords":{}}],["route:send",{"_index":244,"title":{},"content":{"27":{"position":[[10,12],[121,10]]},"28":{"position":[[229,12]]},"29":{"position":[[237,12]]},"39":{"position":[[640,12]]},"40":{"position":[[663,12]]}},"keywords":{}}],["route:send():to(recipi",{"_index":340,"title":{},"content":{"40":{"position":[[807,27]]}},"keywords":{}}],["route:send(...data",{"_index":334,"title":{},"content":{"40":{"position":[[27,19]]}},"keywords":{}}],["route:send(1",{"_index":323,"title":{},"content":{"39":{"position":[[362,13]]},"40":{"position":[[397,13]]}},"keywords":{}}],["route:send(5",{"_index":339,"title":{},"content":{"40":{"position":[[604,13]]}},"keywords":{}}],["routes.luau",{"_index":355,"title":{},"content":{"42":{"position":[[318,11],[397,11],[1986,11]]}},"keywords":{}}],["routes.playerload",{"_index":399,"title":{},"content":{"42":{"position":[[2161,19]]}},"keywords":{}}],["run",{"_index":83,"title":{},"content":{"12":{"position":[[193,3],[416,3],[487,3]]},"13":{"position":[[105,3],[315,3]]},"25":{"position":[[214,3]]},"28":{"position":[[142,3]]},"29":{"position":[[154,3]]},"30":{"position":[[223,3],[316,3]]},"38":{"position":[[76,3]]},"42":{"position":[[275,3],[1139,3],[1207,3],[1778,7]]}},"keywords":{}}],["runservic",{"_index":265,"title":{},"content":{"30":{"position":[[524,10]]},"36":{"position":[[475,10]]}},"keywords":{}}],["runservice.heartbeat",{"_index":264,"title":{},"content":{"30":{"position":[[250,21]]},"42":{"position":[[1919,20]]}},"keywords":{}}],["runservice.heartbeat:connect(hook",{"_index":120,"title":{},"content":{"13":{"position":[[387,34]]},"30":{"position":[[703,34]]},"36":{"position":[[654,34]]}},"keywords":{}}],["rust",{"_index":170,"title":{},"content":{"16":{"position":[[340,5]]}},"keywords":{}}],["same",{"_index":95,"title":{},"content":{"12":{"position":[[307,4]]},"25":{"position":[[147,4]]},"42":{"position":[[1084,4]]}},"keywords":{}}],["schedul",{"_index":110,"title":{},"content":{"13":{"position":[[113,10],[319,10]]},"23":{"position":[[140,8]]},"25":{"position":[[231,10]]},"30":{"position":[[303,9]]},"36":{"position":[[416,10]]},"42":{"position":[[249,10],[1183,8],[1519,9],[1755,8]]}},"keywords":{}}],["script",{"_index":376,"title":{},"content":{"42":{"position":[[1089,6]]}},"keywords":{}}],["script.systems:getchildren",{"_index":388,"title":{},"content":{"42":{"position":[[1600,28]]}},"keywords":{}}],["see",{"_index":14,"title":{},"content":{"1":{"position":[[88,3],[191,3],[215,3]]},"6":{"position":[[300,3]]},"17":{"position":[[79,3]]},"26":{"position":[[460,3]]},"27":{"position":[[293,3]]},"28":{"position":[[304,3]]},"29":{"position":[[312,3]]},"42":{"position":[[71,3],[105,3]]}},"keywords":{}}],["send",{"_index":74,"title":{"27":{"position":[[0,5]]},"40":{"position":[[0,8]]}},"content":{"10":{"position":[[93,4]]},"17":{"position":[[412,4]]},"27":{"position":[[28,5],[137,4],[297,7]]},"29":{"position":[[176,5]]},"35":{"position":[[970,7]]},"39":{"position":[[325,4]]},"40":{"position":[[50,4],[360,4],[681,4],[787,4]]},"42":{"position":[[2483,4],[2553,4]]}},"keywords":{}}],["send/rec",{"_index":308,"title":{},"content":{"36":{"position":[[320,12]]}},"keywords":{}}],["sender",{"_index":39,"title":{},"content":{"4":{"position":[[171,7],[218,7]]},"5":{"position":[[28,8],[37,9],[53,7],[157,8]]},"26":{"position":[[115,7],[399,7]]},"41":{"position":[[141,7],[362,7],[643,7]]}},"keywords":{}}],["sending/queri",{"_index":69,"title":{},"content":{"9":{"position":[[102,17]]}},"keywords":{}}],["sendrequest",{"_index":270,"title":{"31":{"position":[[0,11]]}},"content":{},"keywords":{}}],["sendrequest:to",{"_index":250,"title":{},"content":{"27":{"position":[[229,14]]}},"keywords":{}}],["sendrequest:to(recipi",{"_index":271,"title":{},"content":{"33":{"position":[[10,25]]}},"keywords":{}}],["sensit",{"_index":182,"title":{},"content":{"17":{"position":[[247,9]]}},"keywords":{}}],["sent",{"_index":224,"title":{},"content":{"23":{"position":[[408,4]]},"29":{"position":[[107,4]]},"35":{"position":[[1112,4]]},"38":{"position":[[178,4]]}},"keywords":{}}],["separ",{"_index":159,"title":{},"content":{"16":{"position":[[15,9]]}},"keywords":{}}],["serial",{"_index":278,"title":{},"content":{"35":{"position":[[71,9],[696,10],[945,9]]}},"keywords":{}}],["server",{"_index":64,"title":{"9":{"position":[[0,7]]}},"content":{"9":{"position":[[90,6]]},"28":{"position":[[190,6],[249,6]]},"29":{"position":[[169,6],[257,6]]},"36":{"position":[[353,6]]},"40":{"position":[[737,7]]},"42":{"position":[[2274,6],[2516,6],[2584,6]]}},"keywords":{}}],["set",{"_index":92,"title":{},"content":{"12":{"position":[[258,3]]},"28":{"position":[[45,4]]},"29":{"position":[[45,4]]},"30":{"position":[[205,3]]}},"keywords":{}}],["setup",{"_index":15,"title":{"36":{"position":[[6,6]]}},"content":{"1":{"position":[[98,6],[206,5],[233,5]]},"36":{"position":[[6,6]]}},"keywords":{}}],["sever",{"_index":140,"title":{},"content":{"15":{"position":[[360,7]]}},"keywords":{}}],["share",{"_index":230,"title":{},"content":{"25":{"position":[[165,5]]}},"keywords":{}}],["signal",{"_index":372,"title":{},"content":{"42":{"position":[[885,6]]}},"keywords":{}}],["similar",{"_index":57,"title":{},"content":{"6":{"position":[[208,7]]},"16":{"position":[[422,7]]}},"keywords":{}}],["simpl",{"_index":310,"title":{},"content":{"36":{"position":[[382,6]]},"41":{"position":[[27,7]]},"42":{"position":[[229,6]]}},"keywords":{}}],["simpli",{"_index":262,"title":{},"content":{"30":{"position":[[101,6]]},"35":{"position":[[108,6]]}},"keywords":{}}],["singl",{"_index":231,"title":{},"content":{"25":{"position":[[173,6],[252,6]]}},"keywords":{}}],["snapshot",{"_index":36,"title":{},"content":{"4":{"position":[[138,8]]},"5":{"position":[[126,8]]},"41":{"position":[[472,8]]}},"keywords":{}}],["solv",{"_index":128,"title":{},"content":{"15":{"position":[[107,5],[206,6]]},"17":{"position":[[344,5]]}},"keywords":{}}],["someth",{"_index":44,"title":{},"content":{"4":{"position":[[271,9]]},"26":{"position":[[446,9]]},"39":{"position":[[495,9]]},"40":{"position":[[530,9]]},"41":{"position":[[411,9]]},"42":{"position":[[2337,9],[2466,9]]}},"keywords":{}}],["specif",{"_index":246,"title":{},"content":{"27":{"position":[[60,8]]}},"keywords":{}}],["specifi",{"_index":249,"title":{},"content":{"27":{"position":[[175,7]]},"40":{"position":[[753,7]]}},"keywords":{}}],["squash",{"_index":277,"title":{},"content":{"35":{"position":[[61,6],[249,6],[689,6]]}},"keywords":{}}],["squash.boolean.des(boolean",{"_index":298,"title":{},"content":{"35":{"position":[[878,28]]}},"keywords":{}}],["squash.boolean.ser(boolean",{"_index":305,"title":{},"content":{"35":{"position":[[1320,28]]}},"keywords":{}}],["squash.string.alphabet(str",{"_index":293,"title":{},"content":{"35":{"position":[[627,27],[1070,27]]}},"keywords":{}}],["squash.string.des(str",{"_index":297,"title":{},"content":{"35":{"position":[[844,22]]}},"keywords":{}}],["squash.string.ser(str",{"_index":304,"title":{},"content":{"35":{"position":[[1286,22]]}},"keywords":{}}],["start",{"_index":76,"title":{"12":{"position":[[0,6]]}},"content":{"15":{"position":[[556,7]]}},"keywords":{}}],["step",{"_index":113,"title":{},"content":{"13":{"position":[[252,4]]}},"keywords":{}}],["still",{"_index":6,"title":{},"content":{"1":{"position":[[6,5]]}},"keywords":{}}],["str",{"_index":329,"title":{},"content":{"39":{"position":[[459,4]]},"40":{"position":[[494,4]]},"41":{"position":[[375,4]]}},"keywords":{}}],["strict",{"_index":200,"title":{},"content":{"19":{"position":[[138,6]]},"39":{"position":[[806,6]]}},"keywords":{}}],["strictli",{"_index":358,"title":{},"content":{"42":{"position":[[367,8]]}},"keywords":{}}],["string",{"_index":32,"title":{},"content":{"4":{"position":[[31,7]]},"23":{"position":[[118,6]]},"35":{"position":[[736,6]]},"39":{"position":[[288,7],[572,7]]},"40":{"position":[[323,7],[572,7]]},"41":{"position":[[319,7]]},"42":{"position":[[676,9],[700,9]]}},"keywords":{}}],["such",{"_index":177,"title":{},"content":{"17":{"position":[[94,4]]},"39":{"position":[[773,4]]},"41":{"position":[[543,4]]}},"keywords":{}}],["suggest",{"_index":191,"title":{},"content":{"17":{"position":[[547,7]]}},"keywords":{}}],["suppli",{"_index":38,"title":{},"content":{"4":{"position":[[162,8]]}},"keywords":{}}],["sure",{"_index":90,"title":{},"content":{"12":{"position":[[234,4]]},"42":{"position":[[1829,4]]}},"keywords":{}}],["system",{"_index":102,"title":{},"content":{"12":{"position":[[448,8]]},"26":{"position":[[239,7]]},"42":{"position":[[1571,7],[1764,7],[1964,6],[2056,8]]}},"keywords":{}}],["systems/examplesystem.luau",{"_index":398,"title":{},"content":{"42":{"position":[[2065,26]]}},"keywords":{}}],["tabl",{"_index":78,"title":{},"content":{"12":{"position":[[69,5]]},"13":{"position":[[44,5],[168,5]]},"30":{"position":[[432,5]]}},"keywords":{}}],["table.insert(system",{"_index":390,"title":{},"content":{"42":{"position":[[1676,21]]}},"keywords":{}}],["table.unpack(valu",{"_index":299,"title":{},"content":{"35":{"position":[[916,20],[1358,20]]}},"keywords":{}}],["take",{"_index":343,"title":{},"content":{"41":{"position":[[465,4]]}},"keywords":{}}],["technic",{"_index":50,"title":{},"content":{"6":{"position":[[37,9]]},"15":{"position":[[626,9]]}},"keywords":{}}],["themselv",{"_index":178,"title":{},"content":{"17":{"position":[[115,11]]}},"keywords":{}}],["thing",{"_index":158,"title":{},"content":{"16":{"position":[[4,5]]}},"keywords":{}}],["though",{"_index":189,"title":{},"content":{"17":{"position":[[523,6]]}},"keywords":{}}],["through",{"_index":401,"title":{},"content":{"42":{"position":[[2226,7],[2360,7]]}},"keywords":{}}],["tip",{"_index":347,"title":{},"content":{"42":{"position":[[7,3]]}},"keywords":{}}],["tri",{"_index":54,"title":{},"content":{"6":{"position":[[99,3]]}},"keywords":{}}],["true",{"_index":326,"title":{},"content":{"39":{"position":[[403,5]]},"40":{"position":[[438,5],[618,5]]}},"keywords":{}}],["tupl",{"_index":280,"title":{},"content":{"35":{"position":[[146,6]]}},"keywords":{}}],["two",{"_index":173,"title":{},"content":{"16":{"position":[[453,3]]},"38":{"position":[[90,3]]}},"keywords":{}}],["type",{"_index":136,"title":{"22":{"position":[[0,6]]},"39":{"position":[[0,4]]}},"content":{"15":{"position":[[281,4],[396,4]]},"19":{"position":[[98,5],[145,6],[184,5]]},"26":{"position":[[234,4],[301,5]]},"35":{"position":[[126,5],[357,4],[658,4],[707,5],[724,6],[1101,4],[1154,5]]},"39":{"position":[[14,4],[86,4],[210,4],[346,5],[439,5],[558,5],[681,6],[725,4],[813,6]]},"40":{"position":[[245,4],[381,5],[474,5]]},"41":{"position":[[241,4],[737,4]]},"42":{"position":[[475,4],[653,4]]}},"keywords":{}}],["type(boolean",{"_index":296,"title":{},"content":{"35":{"position":[[781,13],[1222,13]]}},"keywords":{}}],["type(str",{"_index":294,"title":{},"content":{"35":{"position":[[746,9],[1187,9]]}},"keywords":{}}],["typescript",{"_index":203,"title":{"20":{"position":[[7,11]]}},"content":{},"keywords":{}}],["u",{"_index":301,"title":{},"content":{"35":{"position":[[1160,4]]}},"keywords":{}}],["under",{"_index":3,"title":{"1":{"position":[[17,5]]}},"content":{},"keywords":{}}],["uniqu",{"_index":67,"title":{},"content":{"9":{"position":[[47,6]]},"10":{"position":[[29,8]]},"16":{"position":[[236,6]]},"25":{"position":[[83,6]]}},"keywords":{}}],["unreli",{"_index":227,"title":{},"content":{"23":{"position":[[446,11]]},"38":{"position":[[119,11],[280,10]]}},"keywords":{}}],["us",{"_index":11,"title":{},"content":{"1":{"position":[[60,5],[166,3],[243,3]]},"6":{"position":[[71,3],[201,4]]},"9":{"position":[[65,4]]},"12":{"position":[[322,4]]},"15":{"position":[[529,3]]},"16":{"position":[[315,3]]},"17":{"position":[[369,3],[505,3]]},"19":{"position":[[134,3]]},"30":{"position":[[244,5],[388,3]]},"35":{"position":[[42,3],[161,3]]},"36":{"position":[[110,5],[436,5]]},"40":{"position":[[23,3],[725,4],[801,5]]},"41":{"position":[[64,5]]},"42":{"position":[[84,4],[1978,3],[2036,3]]}},"keywords":{}}],["usag",{"_index":41,"title":{},"content":{"4":{"position":[[202,6]]}},"keywords":{}}],["util",{"_index":141,"title":{},"content":{"15":{"position":[[368,10]]}},"keywords":{}}],["v0.5.0",{"_index":219,"title":{},"content":{"23":{"position":[[286,7]]}},"keywords":{}}],["valu",{"_index":240,"title":{},"content":{"26":{"position":[[307,7]]},"35":{"position":[[589,7],[678,7],[833,6],[1032,7],[1117,7],[1275,6]]},"41":{"position":[[727,6]]}},"keywords":{}}],["version",{"_index":223,"title":{},"content":{"23":{"position":[[360,9]]},"42":{"position":[[33,7]]}},"keywords":{}}],["visit",{"_index":149,"title":{},"content":{"15":{"position":[[539,8]]}},"keywords":{}}],["walli",{"_index":194,"title":{"19":{"position":[[0,6]]}},"content":{"19":{"position":[[76,5],[170,5]]}},"keywords":{}}],["want",{"_index":104,"title":{},"content":{"12":{"position":[[479,4]]},"30":{"position":[[85,5],[149,4],[488,4]]},"36":{"position":[[86,4],[280,4]]}},"keywords":{}}],["way",{"_index":313,"title":{},"content":{"38":{"position":[[16,4],[157,3]]}},"keywords":{}}],["we'r",{"_index":5,"title":{},"content":{"1":{"position":[[0,5]]}},"keywords":{}}],["went",{"_index":154,"title":{},"content":{"15":{"position":[[668,4]]}},"keywords":{}}],["whatev",{"_index":306,"title":{},"content":{"36":{"position":[[55,8]]}},"keywords":{}}],["whenev",{"_index":263,"title":{},"content":{"30":{"position":[[136,8],[475,8]]},"36":{"position":[[267,8]]}},"keywords":{}}],["whether",{"_index":282,"title":{},"content":{"35":{"position":[[198,7]]}},"keywords":{}}],["wish",{"_index":199,"title":{},"content":{"19":{"position":[[126,4]]}},"keywords":{}}],["within",{"_index":397,"title":{},"content":{"42":{"position":[[2045,6]]}},"keywords":{}}],["woe",{"_index":179,"title":{},"content":{"17":{"position":[[156,5]]}},"keywords":{}}],["work",{"_index":139,"title":{},"content":{"15":{"position":[[316,7],[512,5]]},"16":{"position":[[114,4]]},"39":{"position":[[744,7]]}},"keywords":{}}],["world",{"_index":381,"title":{},"content":{"42":{"position":[[1325,5],[1467,5]]}},"keywords":{}}],["world!"",{"_index":325,"title":{},"content":{"39":{"position":[[389,13]]},"40":{"position":[[424,13],[637,13]]}},"keywords":{}}],["world.new",{"_index":384,"title":{},"content":{"42":{"position":[[1475,11]]}},"keywords":{}}],["wrap",{"_index":124,"title":{},"content":{"15":{"position":[[69,5]]}},"keywords":{}}],["yetanothernet",{"_index":205,"title":{},"content":{"20":{"position":[[20,13]]}},"keywords":{}}],["you'll",{"_index":336,"title":{},"content":{"40":{"position":[[130,6]]}},"keywords":{}}],["yourrunservice.heartbeat",{"_index":97,"title":{},"content":{"12":{"position":[[331,24]]}},"keywords":{}}]],"pipeline":["stemmer"]} \ No newline at end of file diff --git a/search-doc-1707322688709.json b/search-doc-1707322688709.json deleted file mode 100644 index bf3f687..0000000 --- a/search-doc-1707322688709.json +++ /dev/null @@ -1 +0,0 @@ -[{"title":"SendRequest","type":0,"sectionRef":"#","url":"/YetAnotherNet/api/SendRequest","content":"","keywords":""},{"title":"Functions​","type":1,"pageTitle":"SendRequest","url":"/YetAnotherNet/api/SendRequest#functions","content":" "},{"title":"to​","type":1,"pageTitle":"SendRequest","url":"/YetAnotherNet/api/SendRequest#to","content":"</> SendRequest:to(recipient: {Player } | Player | "NET_SERVER") → () Modifies the recipients of the packet to the one(s) provided in the parameter. "},{"title":"QueryResult","type":0,"sectionRef":"#","url":"/YetAnotherNet/api/QueryResult","content":"","keywords":""},{"title":"Functions​","type":1,"pageTitle":"QueryResult","url":"/YetAnotherNet/api/QueryResult#functions","content":" "},{"title":"iterating over QueryResult​","type":1,"pageTitle":"QueryResult","url":"/YetAnotherNet/api/QueryResult#__iter","content":"</> for number, Player | string, ...any in QueryResult do Iterating over a QueryResult will return the Packets in the QueryResult's Snapshot that match the supplied Senders from QueryResult:from. Usage: for pos, sender, ... in net:query():from(...senders) do -- Do something end "},{"title":"from​","type":1,"pageTitle":"QueryResult","url":"/YetAnotherNet/api/QueryResult#from","content":"</> QueryResult:from( senders: ...sender-- The Senders to filter ) → QueryResult Filters Packets from the QueryResult's Snapshot based on the provided Senders. "},{"title":"Loop","type":0,"sectionRef":"#","url":"/YetAnotherNet/api/Loop","content":"On this page Loop A Matter Loop. For technical details, if you were to use a custom Loop object or try to integrate this Net Library in a ECS other than Matter, the Net.start(loop, { Route }) function uses a similar implementation to Net.createHook({ Net }) internally. For more information on this, see Net.createHook.","keywords":""},{"title":"ECR","type":0,"sectionRef":"#","url":"/YetAnotherNet/docs/setup/ecr","content":"","keywords":""},{"title":"🏗️ This page is under construction.​","type":1,"pageTitle":"ECR","url":"/YetAnotherNet/docs/setup/ecr#️-this-page-is-under-construction","content":"We're still learning the best practices for integrating and using Net with ECR, for now see Other Setups for integrating Net into other game architectures that don't use Matter. You can also see the Matter Setup to see how you would setup and use Net for another ECS library. You can also checkout ECR — A Luau ECS library. "},{"title":"Introduction","type":0,"sectionRef":"#","url":"/YetAnotherNet/docs/intro","content":"","keywords":""},{"title":"What is this?​","type":1,"pageTitle":"Introduction","url":"/YetAnotherNet/docs/intro#what-is-this","content":"Net is a networking library for Roblox, or rather its a library that wraps around Roblox's RemoteEvents to solve certain issues and provide new API for networking on Roblox. Some of the issues this library solves are: Overhead from RemoteEventsOrdering of Networking EventsLack of Type-Checking and Intellisense for working with RemoteEvents Net also provides several utilities: MiddlewareStrict Type-Checking & Auto-completionSimple integration with HooksData-driven Design You can learn more about how Net works and how to use it by visiting Getting Started with Routes. Or, you can keep reading to learn more about the technical details and design choices that went into creating Net. "},{"title":"Data-driven by design​","type":1,"pageTitle":"Introduction","url":"/YetAnotherNet/docs/intro#data-driven-by-design","content":"One thing that separates Net from other networking libraries on Roblox is this key design choice. Net was made to work with ECS, a Data-driven approach to game design, which has influenced the design of the library largely and makes it unique from the rest. With inspiration from Bevy_Renet, a Networking crate for use with the Bevy ECS in Rust, and another networking library on Roblox, BridgeNet2, Net pushes to provide similar functionality to these two libraries for ECS on Roblox. "},{"title":"Why go for Data-driven?​","type":1,"pageTitle":"Introduction","url":"/YetAnotherNet/docs/intro#why-go-for-data-driven","content":"Data-driven design opposes Event-driven design, which is what you can commonly see on Roblox, such as RemoteEvents themselves. Event-driven design has it's woes, which is why we opt for ECS and generally Data-driven design. Event-driven design is sensitive to ordering, this makes it difficult to know when you might get data from an event. To solve this, Net does not use Events, it encourages you to query and send data in an ordered manner frame-by-frame, preferably with ECS. Since it's encouraged to use ECS with Net, though not required, we suggest reading Matter — Why ECS? by Evaera. "},{"title":"Installation​","type":1,"pageTitle":"Introduction","url":"/YetAnotherNet/docs/intro#installation","content":""},{"title":"Wally​","type":1,"pageTitle":"Introduction","url":"/YetAnotherNet/docs/intro#wally","content":"[dependencies] Net = "yetanotherclown/yetanothernet@0.7.0" Note: Wally does not export types automatically, if you wish to use Strict Typing with Net, install Wally Package Types with Aftman. "},{"title":"Roblox Typescript​","type":1,"pageTitle":"Introduction","url":"/YetAnotherNet/docs/intro#roblox-typescript","content":"You can find Net as YetAnotherNet on NPM. "@rbxts/yetanothernet": "0.7.0-beta.3" "},{"title":"Hooks","type":0,"sectionRef":"#","url":"/YetAnotherNet/docs/getting-started/hooks","content":"Hooks LuauTypescript Hooks allow you to integrate Net into any game architecture you want. These are simply functions that you can call whenever you want to process your Packets. It's recommended that you set your hooks to run on the Heartbeat using RunService.Heartbeat, so your Networking Code can be scheduled to run frame-by-frame as Net was designed to do. To create a hook, you can use Net.createHook({ Route }) and pass in a table of your Routes, then you can call it whenever you want to process your packets. local RunService = game:GetService("RunService") local Net = require("Net.luau") local routes = require("routes.luau") local hook = Net.createHook(routes) RunService.Heartbeat:Connect(hook) ","keywords":""},{"title":"Other Setups","type":0,"sectionRef":"#","url":"/YetAnotherNet/docs/setup/other","content":"Other Setups LuauTypescript You can integrate Net into whatever game architecture you want by creating a Hook using Net.createHook({ Route }) which is identical to the Net.start(loop, { Route }) function. This function will return another function which you can call whenever you want to process your Routes' queues and send/receive your Packets on the Server or Client. Below is a simple example of creating custom scheduling behavior using Net.createHook({ Route }), local RunService = game:GetService("RunService") local Net = require("Net.luau") local routes = require("routes.luau") local hook = Net.createHook(routes) RunService.Heartbeat:Connect(hook) ","keywords":""},{"title":"Net","type":0,"sectionRef":"#","url":"/YetAnotherNet/api/Net","content":"","keywords":""},{"title":"Properties​","type":1,"pageTitle":"Net","url":"/YetAnotherNet/api/Net#properties","content":" "},{"title":"server​","type":1,"pageTitle":"Net","url":"/YetAnotherNet/api/Net#server","content":"</> Net.server: "Net_Server" A unique identifier used for to identify the Server when sending/querying. "},{"title":"Route​","type":1,"pageTitle":"Net","url":"/YetAnotherNet/api/Net#Route","content":"</> Net.Route: Route A uniquely identified Object responsible for handling queries and send requests. "},{"title":"Functions​","type":1,"pageTitle":"Net","url":"/YetAnotherNet/api/Net#functions","content":" "},{"title":"start​","type":1,"pageTitle":"Net","url":"/YetAnotherNet/api/Net#start","content":"</> Net.start( loop: Loop,-- A Matter Loop routes: {Route}-- A table of your Routes ) → () Initializes your Routes by adding middleware to your Matter Loop. This ensures that your Routes run between each frame. note Please make sure that the event you set in the Configuration, or the default, is the same index you used for yourRunService.Heartbeat event in your Loop:begin() method. Your Routes are meant to run on the heartbeat, like most systems. In some cases you may want to run your Routes on different events, in this case it is acceptable to change it to a different event. "},{"title":"createHook​","type":1,"pageTitle":"Net","url":"/YetAnotherNet/api/Net#createHook","content":"</> Net.createHook( routes: {Net}-- A table of your Routes ) → () → () This function allows you to run Net scheduling code on your own events. When you provide a table of Routes, this function will return another function you can call which will step each Route and process it's Packet Queue. For example, to run scheduling on the Heartbeat: local hook = Net.createHook({ Route }) RunService.Heartbeat:Connect(hook) "},{"title":"Middleware","type":0,"sectionRef":"#","url":"/YetAnotherNet/docs/getting-started/middleware","content":"","keywords":""},{"title":"Compression​","type":1,"pageTitle":"Middleware","url":"/YetAnotherNet/docs/getting-started/middleware#compression","content":"To compress/decompress your data, you can use a library like Squash to serialize and deserialize your data. Simply return the types in order as a tuple, you can use the event parameter to determine whether to compress or decompress your data. local Squash = require("Squash.luau") local Net = require("Net.luau") local Route = Net.Route type Route<U...> = Net.Route<U...>; local route: Route<string, number> = Route.new({ Channel = "Reliable", }) -- Deserialize Packets before returning route:addIncomingMiddleware(function(str, bool) local values: { any } = {} local alphabet = Squash.string.alphabet(str) -- Type-check returned values; -- Squash serializes types into other types, like string if type(str) ~= "string" or type(boolean) ~= "string" then return end values = { Squash.string.des(str, alphabet), Squash.boolean.des(boolean), } return table.unpack(values) end) -- Serialize Packets before sending route:addOutgoingMiddleware(function(str, bool) local values: { any } = {} local alphabet = Squash.string.alphabet(str) -- Type-check sent values, -- Should be of the provided types U... in Net<U...> if type(str) ~= "string" or type(boolean) ~= "boolean" then return end values = { Squash.string.ser(str, alphabet), Squash.boolean.ser(boolean), } return table.unpack(values) end) "},{"title":"Route","type":0,"sectionRef":"#","url":"/YetAnotherNet/api/Route","content":"","keywords":""},{"title":"Types​","type":1,"pageTitle":"Route","url":"/YetAnotherNet/api/Route#types","content":" "},{"title":"Configuration​","type":1,"pageTitle":"Route","url":"/YetAnotherNet/api/Route#Configuration","content":"</> interface Configuration { Channel: "Reliable" | "Unreliable"-- Default: Reliable Event: string-- The event to schedule the Route on in your Matter Loop -- Default: "default" Ratelimit: number-- Amount of allowed invocations a frame } note As of v0.5.0, Ratelimiting is not implemented. This feature will come in future versions. Channel Reliable: All packets will be sent and received per frame in order. Unreliable: Packets may be dropped but will be received in order. "},{"title":"Functions​","type":1,"pageTitle":"Route","url":"/YetAnotherNet/api/Route#functions","content":" "},{"title":"new​","type":1,"pageTitle":"Route","url":"/YetAnotherNet/api/Route#new","content":"</> Route.new(configuration: Configuration?) → () Creates a new Route with a unique identifier, channel, and event. note All Routes with the same Channel will share a single Remote. It's recommended that you run all your Net scheduling code on a single event. "},{"title":"query​","type":1,"pageTitle":"Route","url":"/YetAnotherNet/api/Route#query","content":"</> Route:query() → QueryResult Allows for iteration of all packets of the previous frame. You can filter by Senders by chaining the QueryResult:from() method onto the query method. note Due to certain limitations with the Luau Type System, iterating over the QueryResult Object will not return typed values. In order to fix this, call :__iter() on the QueryResult Object. For example: for i, sender, ... in route:query():__iter() do -- Do something end See Querying Data for more information. "},{"title":"send​","type":1,"pageTitle":"Route","url":"/YetAnotherNet/api/Route#send","content":"</> Route:send() → () Sends data to all clients or to specific recipients from the Route's identifier. By default, Route:send will send the data to all Clients. You can specify which Clients to receive the data by chaining SendRequest:to and passing { Player }, Player, or Route.Server. See Sending Data for more information. "},{"title":"addIncomingMiddleware​","type":1,"pageTitle":"Route","url":"/YetAnotherNet/api/Route#addIncomingMiddleware","content":"</> Route:addIncomingMiddleware() → () Sets a function to be ran on Incoming packets before they are processed. For example, this would run after the Client receives a Packet from the Server over the network: after calling Route:send() on the Server and before calling Route:query() on the Client. See Middleware for more information. "},{"title":"addOutgoingMiddleware​","type":1,"pageTitle":"Route","url":"/YetAnotherNet/api/Route#addOutgoingMiddleware","content":"</> Route:addOutgoingMiddleware() → () Sets a function to be ran on Outgoing packets before they are sent over the network. For example, this would run before the Server sends a Packet to the Client over the network: after calling Route:send() on the Server and before the Client ever receives the Packet. See Middleware for more information. "},{"title":"Routes","type":0,"sectionRef":"#","url":"/YetAnotherNet/docs/getting-started/routes","content":"","keywords":""},{"title":"Configuration​","type":1,"pageTitle":"Routes","url":"/YetAnotherNet/docs/getting-started/routes#configuration","content":"There are a few ways you can configure your Routes: ChannelEvent All Routes run on one of two channels: Reliable & Unreliable. These channels change the way your packets are sent over the network. Channel\tDescriptionReliable\tPackets are never dropped, and are always ordered. Unreliable\tPackets may be dropped per frame, but are always ordered per frame. "},{"title":"Type-checking​","type":1,"pageTitle":"Routes","url":"/YetAnotherNet/docs/getting-started/routes#type-checking","content":"Routes can be Type-checked to provide intellisense and auto-completion by providing a type annotation when creating your Routes. LuauTypescript local Net = require("Net.luau") local Route = Net.Route type Route<U...> = Net.Route<U...>; local route: Route<number, string, boolean> = Route.new() -- Send will expect the types annotated route:send(1, "Hello, world!", true) -- The returned arguments are typed for pos, num, str, bool in route:query() do -- Do something end In this example, the Route is annotated with the types number, string, boolean, this means that our methods like Route:query() and Route:send() will return or expect these types. This will enable auto-completion and type-checking when working with your Routes, as such it is encouraged you enable Strict Typing to compliment these features. "},{"title":"Sending​","type":1,"pageTitle":"Routes","url":"/YetAnotherNet/docs/getting-started/routes#sending","content":"LuauTypescript You can use Route:send(...data) to send data over the Route. This data will be processed next frame, which is when you'll be able to query it on the receiving end. local Net = require("Net.luau") local Route = Net.Route type Route<U...> = Net.Route<U...>; local route: Route<number, string, boolean> = Route.new() -- Send will expect the types annotated route:send(1, "Hello, world!", true) -- The returned arguments are typed for pos, num, str, bool in route:query() do -- Do something end local Route: Net<number, string, boolean> = Net.new() Route:send(5, true, "Hello, world!") By default, Route:send() will send the Packet of data to all Clients when used on the Server. You can specify a Player or { Player } to send it to by using Route:send():to(recipient). "},{"title":"Querying​","type":1,"pageTitle":"Routes","url":"/YetAnotherNet/docs/getting-started/routes#querying","content":"LuauTypescript Querying is simple, you can query for Packets by using Route:query() which will return an iterator that will output position, sender, ...data in your for loop. local Net = require("Net.luau") local Route = Net.Route type Route<U...> = Net.Route<U...>; local Route: Route<number, string, boolean> = Route.new() for pos, sender, num, str, bool in Route:query() do -- Do something end When you call the query method, it will take a snapshot of all Packets from the previous frame and filter it for you, such as only returning Packets from the Route the method was called on. Or, you can also filter out senders by calling Route:query():from(...sender) on the QueryResult and putting any values of type { Player } | Player | Net.server in the arguments. "},{"title":"Matter","type":0,"sectionRef":"#","url":"/YetAnotherNet/docs/setup/matter","content":"Matter tip Check out the adapted version of the Matter Example game to see how it's used in a real game. See all of Net's example projects in the repository. LuauTypescript Being initially made for the Matter ECS, Net provides a simple function for scheduling your Routes to run on your Matter Loop. Firstly, create a routes.luau ModuleScript in ReplicatedStorage to strictly declare your Routes. routes.luau local Net = require("Net.luau") local Route = Net.Route type Route<U...> = Net.Route<U...>; local defaultConfiguration = { Channel = "Reliable", Event = "default", } -- Payload for replicating Entities type EntityPayload = { [string]: { -- EntityId [string]: { -- Component name data: ComponentInstance<T> } } } -- Replicate Matter Components local MatterReplication: Net<EntityPayload> = Net.new(defaultConfiguration) -- Signal that the Player has loaded local PlayerLoaded: Net<boolean> = Net.new(defaultConfiguration) return { MatterReplication = MatterReplication, PlayerLoaded = PlayerLoaded, } And now in the same script where you create your Matter Loop, you can run the Net.start(Loop, { Net })function to schedule your Routes to run on Matter's Middleware. init.server.luau / init.client.luau local Matter = require("Matter.luau") local World = Matter.World local Loop = Matter.Loop local Net = require("Net.luau") local routes = require("routes.luau") local world = World.new() local loop = Loop.new(world) -- Schedules your Routes Net.start(loop, routes) local systems = {} for _, child in script.systems:GetChildren() do if child:IsA("ModuleScript") then table.insert(systems, require(child)) end end loop:scheduleSystems(systems) -- Schedule systems after running ``Net.start()`` -- Begin the loop and make sure the ``Event`` key in your Routes configuration are added here loop:begin({ default = RunService.Heartbeat }) Finally, in a Matter System we can use our routes.luau ModuleScript to access our Routes and use them within our Systems. systems/exampleSystem.luau local routes = require("routes.luau") local PlayerLoaded = routes.PlayerLoaded local function exampleSystem(world) -- Query through every networking call that frame on the Server for i, player, ...data in PlayerLoaded:query() do -- Do something end -- Query through every networking call that frame on the Client for i, _, ...data in PlayerLoaded:query() do -- Do something end -- Send data from the Client to the Server PlayerLoaded:send(...data) -- Send data to a Client from the Server PlayerLoaded:send(...data):to(Player) end ","keywords":""}] \ No newline at end of file diff --git a/search-doc-1707379851867.json b/search-doc-1707379851867.json new file mode 100644 index 0000000..efe3ea8 --- /dev/null +++ b/search-doc-1707379851867.json @@ -0,0 +1 @@ +[{"title":"ECR","type":0,"sectionRef":"#","url":"/YetAnotherNet/docs/setup/ecr","content":"","keywords":""},{"title":"🏗️ This page is under construction.​","type":1,"pageTitle":"ECR","url":"/YetAnotherNet/docs/setup/ecr#️-this-page-is-under-construction","content":"We're still learning the best practices for integrating and using Net with ECR, for now see Other Setups for integrating Net into other game architectures that don't use Matter. You can also see the Matter Setup to see how you would setup and use Net for another ECS library. You can also checkout ECR — A Luau ECS library. "},{"title":"QueryResult","type":0,"sectionRef":"#","url":"/YetAnotherNet/api/QueryResult","content":"","keywords":""},{"title":"Functions​","type":1,"pageTitle":"QueryResult","url":"/YetAnotherNet/api/QueryResult#functions","content":" "},{"title":"iterating over QueryResult​","type":1,"pageTitle":"QueryResult","url":"/YetAnotherNet/api/QueryResult#__iter","content":"</> for number, Player | string, ...any in QueryResult do Iterating over a QueryResult will return the Packets in the QueryResult's Snapshot that match the supplied Senders from QueryResult:from. Usage: for pos, sender, ... in net:query():from(...senders) do -- Do something end "},{"title":"from​","type":1,"pageTitle":"QueryResult","url":"/YetAnotherNet/api/QueryResult#from","content":"</> QueryResult:from( senders: ...sender-- The Senders to filter ) → QueryResult Filters Packets from the QueryResult's Snapshot based on the provided Senders. "},{"title":"Loop","type":0,"sectionRef":"#","url":"/YetAnotherNet/api/Loop","content":"On this page Loop A Matter Loop. For technical details, if you were to use a custom Loop object or try to integrate this Net Library in a ECS other than Matter, the Net.start(loop, { Route }) function uses a similar implementation to Net.createHook({ Net }) internally. For more information on this, see Net.createHook.","keywords":""},{"title":"Net","type":0,"sectionRef":"#","url":"/YetAnotherNet/api/Net","content":"","keywords":""},{"title":"Properties​","type":1,"pageTitle":"Net","url":"/YetAnotherNet/api/Net#properties","content":" "},{"title":"server​","type":1,"pageTitle":"Net","url":"/YetAnotherNet/api/Net#server","content":"</> Net.server: "Net_Server" A unique identifier used for to identify the Server when sending/querying. "},{"title":"Route​","type":1,"pageTitle":"Net","url":"/YetAnotherNet/api/Net#Route","content":"</> Net.Route: Route A uniquely identified Object responsible for handling queries and send requests. "},{"title":"Functions​","type":1,"pageTitle":"Net","url":"/YetAnotherNet/api/Net#functions","content":" "},{"title":"start​","type":1,"pageTitle":"Net","url":"/YetAnotherNet/api/Net#start","content":"</> Net.start( loop: Loop,-- A Matter Loop routes: {Route}-- A table of your Routes ) → () Initializes your Routes by adding middleware to your Matter Loop. This ensures that your Routes run between each frame. note Please make sure that the event you set in the Configuration, or the default, is the same index you used for yourRunService.Heartbeat event in your Loop:begin() method. Your Routes are meant to run on the heartbeat, like most systems. In some cases you may want to run your Routes on different events, in this case it is acceptable to change it to a different event. "},{"title":"createHook​","type":1,"pageTitle":"Net","url":"/YetAnotherNet/api/Net#createHook","content":"</> Net.createHook( routes: {Net}-- A table of your Routes ) → () → () This function allows you to run Net scheduling code on your own events. When you provide a table of Routes, this function will return another function you can call which will step each Route and process it's Packet Queue. For example, to run scheduling on the Heartbeat: local hook = Net.createHook({ Route }) RunService.Heartbeat:Connect(hook) "},{"title":"Introduction","type":0,"sectionRef":"#","url":"/YetAnotherNet/docs/intro","content":"","keywords":""},{"title":"What is this?​","type":1,"pageTitle":"Introduction","url":"/YetAnotherNet/docs/intro#what-is-this","content":"Net is a networking library for Roblox, or rather its a library that wraps around Roblox's RemoteEvents to solve certain issues and provide new API for networking on Roblox. Some of the issues this library solves are: Overhead from RemoteEventsOrdering of Networking EventsLack of Type-Checking and Intellisense for working with RemoteEvents Net also provides several utilities: MiddlewareStrict Type-Checking & Auto-completionSimple integration with HooksData-driven Design You can learn more about how Net works and how to use it by visiting Getting Started with Routes. Or, you can keep reading to learn more about the technical details and design choices that went into creating Net. "},{"title":"Data-driven by design​","type":1,"pageTitle":"Introduction","url":"/YetAnotherNet/docs/intro#data-driven-by-design","content":"One thing that separates Net from other networking libraries on Roblox is this key design choice. Net was made to work with ECS, a Data-driven approach to game design, which has influenced the design of the library largely and makes it unique from the rest. With inspiration from Bevy_Renet, a Networking crate for use with the Bevy ECS in Rust, and another networking library on Roblox, BridgeNet2, Net pushes to provide similar functionality to these two libraries for ECS on Roblox. "},{"title":"Why go for Data-driven?​","type":1,"pageTitle":"Introduction","url":"/YetAnotherNet/docs/intro#why-go-for-data-driven","content":"Data-driven design opposes Event-driven design, which is what you can commonly see on Roblox, such as RemoteEvents themselves. Event-driven design has it's woes, which is why we opt for ECS and generally Data-driven design. Event-driven design is sensitive to ordering, this makes it difficult to know when you might get data from an event. To solve this, Net does not use Events, it encourages you to query and send data in an ordered manner frame-by-frame, preferably with ECS. Since it's encouraged to use ECS with Net, though not required, we suggest reading Matter — Why ECS? by Evaera. "},{"title":"Installation​","type":1,"pageTitle":"Introduction","url":"/YetAnotherNet/docs/intro#installation","content":""},{"title":"Wally​","type":1,"pageTitle":"Introduction","url":"/YetAnotherNet/docs/intro#wally","content":"[dependencies] Net = "yetanotherclown/yetanothernet@0.7.0" Note: Wally does not export types automatically, if you wish to use Strict Typing with Net, install Wally Package Types with Aftman. "},{"title":"Roblox Typescript​","type":1,"pageTitle":"Introduction","url":"/YetAnotherNet/docs/intro#roblox-typescript","content":"You can find Net as YetAnotherNet on NPM. "@rbxts/yetanothernet": "0.7.0-beta.3" "},{"title":"Route","type":0,"sectionRef":"#","url":"/YetAnotherNet/api/Route","content":"","keywords":""},{"title":"Types​","type":1,"pageTitle":"Route","url":"/YetAnotherNet/api/Route#types","content":" "},{"title":"Configuration​","type":1,"pageTitle":"Route","url":"/YetAnotherNet/api/Route#Configuration","content":"</> interface Configuration { Channel: "Reliable" | "Unreliable"-- Default: Reliable Event: string-- The event to schedule the Route on in your Matter Loop -- Default: "default" Ratelimit: number-- Amount of allowed invocations a frame } note As of v0.5.0, Ratelimiting is not implemented. This feature will come in future versions. Channel Reliable: All packets will be sent and received per frame in order. Unreliable: Packets may be dropped but will be received in order. "},{"title":"Functions​","type":1,"pageTitle":"Route","url":"/YetAnotherNet/api/Route#functions","content":" "},{"title":"new​","type":1,"pageTitle":"Route","url":"/YetAnotherNet/api/Route#new","content":"</> Route.new(configuration: Configuration?) → () Creates a new Route with a unique identifier, channel, and event. note All Routes with the same Channel will share a single Remote. It's recommended that you run all your Net scheduling code on a single event. "},{"title":"query​","type":1,"pageTitle":"Route","url":"/YetAnotherNet/api/Route#query","content":"</> Route:query() → QueryResult Allows for iteration of all packets of the previous frame. You can filter by Senders by chaining the QueryResult:from() method onto the query method. note Due to certain limitations with the Luau Type System, iterating over the QueryResult Object will not return typed values. In order to fix this, call :__iter() on the QueryResult Object. For example: for i, sender, ... in route:query():__iter() do -- Do something end See Querying Data for more information. "},{"title":"send​","type":1,"pageTitle":"Route","url":"/YetAnotherNet/api/Route#send","content":"</> Route:send() → () Sends data to all clients or to specific recipients from the Route's identifier. By default, Route:send will send the data to all Clients. You can specify which Clients to receive the data by chaining SendRequest:to and passing { Player }, Player, or Route.Server. See Sending Data for more information. "},{"title":"addIncomingMiddleware​","type":1,"pageTitle":"Route","url":"/YetAnotherNet/api/Route#addIncomingMiddleware","content":"</> Route:addIncomingMiddleware() → () Sets a function to be ran on Incoming packets before they are processed. For example, this would run after the Client receives a Packet from the Server over the network: after calling Route:send() on the Server and before calling Route:query() on the Client. See Middleware for more information. "},{"title":"addOutgoingMiddleware​","type":1,"pageTitle":"Route","url":"/YetAnotherNet/api/Route#addOutgoingMiddleware","content":"</> Route:addOutgoingMiddleware() → () Sets a function to be ran on Outgoing packets before they are sent over the network. For example, this would run before the Server sends a Packet to the Client over the network: after calling Route:send() on the Server and before the Client ever receives the Packet. See Middleware for more information. "},{"title":"Hooks","type":0,"sectionRef":"#","url":"/YetAnotherNet/docs/getting-started/hooks","content":"Hooks LuauTypescript Hooks allow you to integrate Net into any game architecture you want. These are simply functions that you can call whenever you want to process your Packets. It's recommended that you set your hooks to run on the Heartbeat using RunService.Heartbeat, so your Networking Code can be scheduled to run frame-by-frame as Net was designed to do. To create a hook, you can use Net.createHook({ Route }) and pass in a table of your Routes, then you can call it whenever you want to process your packets. local RunService = game:GetService("RunService") local Net = require("Net.luau") local routes = require("routes.luau") local hook = Net.createHook(routes) RunService.Heartbeat:Connect(hook) ","keywords":""},{"title":"SendRequest","type":0,"sectionRef":"#","url":"/YetAnotherNet/api/SendRequest","content":"","keywords":""},{"title":"Functions​","type":1,"pageTitle":"SendRequest","url":"/YetAnotherNet/api/SendRequest#functions","content":" "},{"title":"to​","type":1,"pageTitle":"SendRequest","url":"/YetAnotherNet/api/SendRequest#to","content":"</> SendRequest:to(recipient: {Player } | Player | "NET_SERVER") → () Modifies the recipients of the packet to the one(s) provided in the parameter. "},{"title":"Middleware","type":0,"sectionRef":"#","url":"/YetAnotherNet/docs/getting-started/middleware","content":"","keywords":""},{"title":"Compression​","type":1,"pageTitle":"Middleware","url":"/YetAnotherNet/docs/getting-started/middleware#compression","content":"To compress/decompress your data, you can use a library like Squash to serialize and deserialize your data. Simply return the types in order as a tuple, you can use the event parameter to determine whether to compress or decompress your data. local Squash = require("Squash.luau") local Net = require("Net.luau") local Route = Net.Route type Route<U...> = Net.Route<U...>; local route: Route<string, number> = Route.new({ Channel = "Reliable", }) -- Deserialize Packets before returning route:addIncomingMiddleware(function(str, bool) local values: { any } = {} local alphabet = Squash.string.alphabet(str) -- Type-check returned values; -- Squash serializes types into other types, like string if type(str) ~= "string" or type(boolean) ~= "string" then return end values = { Squash.string.des(str, alphabet), Squash.boolean.des(boolean), } return table.unpack(values) end) -- Serialize Packets before sending route:addOutgoingMiddleware(function(str, bool) local values: { any } = {} local alphabet = Squash.string.alphabet(str) -- Type-check sent values, -- Should be of the provided types U... in Net<U...> if type(str) ~= "string" or type(boolean) ~= "boolean" then return end values = { Squash.string.ser(str, alphabet), Squash.boolean.ser(boolean), } return table.unpack(values) end) "},{"title":"Other Setups","type":0,"sectionRef":"#","url":"/YetAnotherNet/docs/setup/other","content":"Other Setups LuauTypescript You can integrate Net into whatever game architecture you want by creating a Hook using Net.createHook({ Route }) which is identical to the Net.start(loop, { Route }) function. This function will return another function which you can call whenever you want to process your Routes' queues and send/receive your Packets on the Server or Client. Below is a simple example of creating custom scheduling behavior using Net.createHook({ Route }), local RunService = game:GetService("RunService") local Net = require("Net.luau") local routes = require("routes.luau") local hook = Net.createHook(routes) RunService.Heartbeat:Connect(hook) ","keywords":""},{"title":"Routes","type":0,"sectionRef":"#","url":"/YetAnotherNet/docs/getting-started/routes","content":"","keywords":""},{"title":"Configuration​","type":1,"pageTitle":"Routes","url":"/YetAnotherNet/docs/getting-started/routes#configuration","content":"There are a few ways you can configure your Routes: ChannelEvent All Routes run on one of two channels: Reliable & Unreliable. These channels change the way your packets are sent over the network. Channel\tDescriptionReliable\tPackets are never dropped, and are always ordered. Unreliable\tPackets may be dropped per frame, but are always ordered per frame. "},{"title":"Type-checking​","type":1,"pageTitle":"Routes","url":"/YetAnotherNet/docs/getting-started/routes#type-checking","content":"Routes can be Type-checked to provide intellisense and auto-completion by providing a type annotation when creating your Routes. LuauTypescript local Net = require("Net.luau") local Route = Net.Route type Route<U...> = Net.Route<U...>; local route: Route<number, string, boolean> = Route.new() -- Send will expect the types annotated route:send(1, "Hello, world!", true) -- The returned arguments are typed for pos, num, str, bool in route:query() do -- Do something end In this example, the Route is annotated with the types number, string, boolean, this means that our methods like Route:query() and Route:send() will return or expect these types. This will enable auto-completion and type-checking when working with your Routes, as such it is encouraged you enable Strict Typing to compliment these features. "},{"title":"Sending​","type":1,"pageTitle":"Routes","url":"/YetAnotherNet/docs/getting-started/routes#sending","content":"LuauTypescript You can use Route:send(...data) to send data over the Route. This data will be processed next frame, which is when you'll be able to query it on the receiving end. local Net = require("Net.luau") local Route = Net.Route type Route<U...> = Net.Route<U...>; local route: Route<number, string, boolean> = Route.new() -- Send will expect the types annotated route:send(1, "Hello, world!", true) -- The returned arguments are typed for pos, num, str, bool in route:query() do -- Do something end local Route: Net<number, string, boolean> = Net.new() Route:send(5, true, "Hello, world!") By default, Route:send() will send the Packet of data to all Clients when used on the Server. You can specify a Player or { Player } to send it to by using Route:send():to(recipient). "},{"title":"Querying​","type":1,"pageTitle":"Routes","url":"/YetAnotherNet/docs/getting-started/routes#querying","content":"LuauTypescript Querying is simple, you can query for Packets by using Route:query() which will return an iterator that will output position, sender, ...data in your for loop. local Net = require("Net.luau") local Route = Net.Route type Route<U...> = Net.Route<U...>; local Route: Route<number, string, boolean> = Route.new() for pos, sender, num, str, bool in Route:query() do -- Do something end When you call the query method, it will take a snapshot of all Packets from the previous frame and filter it for you, such as only returning Packets from the Route the method was called on. Or, you can also filter out senders by calling Route:query():from(...sender) on the QueryResult and putting any values of type { Player } | Player | Net.server in the arguments. "},{"title":"Matter","type":0,"sectionRef":"#","url":"/YetAnotherNet/docs/setup/matter","content":"Matter tip Check out the adapted version of the Matter Example game to see how it's used in a real game. See all of Net's example projects in the repository. LuauTypescript Being initially made for the Matter ECS, Net provides a simple function for scheduling your Routes to run on your Matter Loop. Firstly, create a routes.luau ModuleScript in ReplicatedStorage to strictly declare your Routes. routes.luau local Net = require("Net.luau") local Route = Net.Route type Route<U...> = Net.Route<U...>; local defaultConfiguration = { Channel = "Reliable", Event = "default", } -- Payload for replicating Entities type EntityPayload = { [string]: { -- EntityId [string]: { -- Component name data: ComponentInstance<T> } } } -- Replicate Matter Components local MatterReplication: Net<EntityPayload> = Net.new(defaultConfiguration) -- Signal that the Player has loaded local PlayerLoaded: Net<boolean> = Net.new(defaultConfiguration) return { MatterReplication = MatterReplication, PlayerLoaded = PlayerLoaded, } And now in the same script where you create your Matter Loop, you can run the Net.start(Loop, { Net })function to schedule your Routes to run on Matter's Middleware. init.server.luau / init.client.luau local Matter = require("Matter.luau") local World = Matter.World local Loop = Matter.Loop local Net = require("Net.luau") local routes = require("routes.luau") local world = World.new() local loop = Loop.new(world) -- Schedules your Routes Net.start(loop, routes) local systems = {} for _, child in script.systems:GetChildren() do if child:IsA("ModuleScript") then table.insert(systems, require(child)) end end loop:scheduleSystems(systems) -- Schedule systems after running ``Net.start()`` -- Begin the loop and make sure the ``Event`` key in your Routes configuration are added here loop:begin({ default = RunService.Heartbeat }) Finally, in a Matter System we can use our routes.luau ModuleScript to access our Routes and use them within our Systems. systems/exampleSystem.luau local routes = require("routes.luau") local PlayerLoaded = routes.PlayerLoaded local function exampleSystem(world) -- Query through every networking call that frame on the Server for i, player, ...data in PlayerLoaded:query() do -- Do something end -- Query through every networking call that frame on the Client for i, _, ...data in PlayerLoaded:query() do -- Do something end -- Send data from the Client to the Server PlayerLoaded:send(...data) -- Send data to a Client from the Server PlayerLoaded:send(...data):to(Player) end ","keywords":""}] \ No newline at end of file diff --git a/search-doc.json b/search-doc.json index bf3f687..efe3ea8 100644 --- a/search-doc.json +++ b/search-doc.json @@ -1 +1 @@ -[{"title":"SendRequest","type":0,"sectionRef":"#","url":"/YetAnotherNet/api/SendRequest","content":"","keywords":""},{"title":"Functions​","type":1,"pageTitle":"SendRequest","url":"/YetAnotherNet/api/SendRequest#functions","content":" "},{"title":"to​","type":1,"pageTitle":"SendRequest","url":"/YetAnotherNet/api/SendRequest#to","content":"</> SendRequest:to(recipient: {Player } | Player | "NET_SERVER") → () Modifies the recipients of the packet to the one(s) provided in the parameter. "},{"title":"QueryResult","type":0,"sectionRef":"#","url":"/YetAnotherNet/api/QueryResult","content":"","keywords":""},{"title":"Functions​","type":1,"pageTitle":"QueryResult","url":"/YetAnotherNet/api/QueryResult#functions","content":" "},{"title":"iterating over QueryResult​","type":1,"pageTitle":"QueryResult","url":"/YetAnotherNet/api/QueryResult#__iter","content":"</> for number, Player | string, ...any in QueryResult do Iterating over a QueryResult will return the Packets in the QueryResult's Snapshot that match the supplied Senders from QueryResult:from. Usage: for pos, sender, ... in net:query():from(...senders) do -- Do something end "},{"title":"from​","type":1,"pageTitle":"QueryResult","url":"/YetAnotherNet/api/QueryResult#from","content":"</> QueryResult:from( senders: ...sender-- The Senders to filter ) → QueryResult Filters Packets from the QueryResult's Snapshot based on the provided Senders. "},{"title":"Loop","type":0,"sectionRef":"#","url":"/YetAnotherNet/api/Loop","content":"On this page Loop A Matter Loop. For technical details, if you were to use a custom Loop object or try to integrate this Net Library in a ECS other than Matter, the Net.start(loop, { Route }) function uses a similar implementation to Net.createHook({ Net }) internally. For more information on this, see Net.createHook.","keywords":""},{"title":"ECR","type":0,"sectionRef":"#","url":"/YetAnotherNet/docs/setup/ecr","content":"","keywords":""},{"title":"🏗️ This page is under construction.​","type":1,"pageTitle":"ECR","url":"/YetAnotherNet/docs/setup/ecr#️-this-page-is-under-construction","content":"We're still learning the best practices for integrating and using Net with ECR, for now see Other Setups for integrating Net into other game architectures that don't use Matter. You can also see the Matter Setup to see how you would setup and use Net for another ECS library. You can also checkout ECR — A Luau ECS library. "},{"title":"Introduction","type":0,"sectionRef":"#","url":"/YetAnotherNet/docs/intro","content":"","keywords":""},{"title":"What is this?​","type":1,"pageTitle":"Introduction","url":"/YetAnotherNet/docs/intro#what-is-this","content":"Net is a networking library for Roblox, or rather its a library that wraps around Roblox's RemoteEvents to solve certain issues and provide new API for networking on Roblox. Some of the issues this library solves are: Overhead from RemoteEventsOrdering of Networking EventsLack of Type-Checking and Intellisense for working with RemoteEvents Net also provides several utilities: MiddlewareStrict Type-Checking & Auto-completionSimple integration with HooksData-driven Design You can learn more about how Net works and how to use it by visiting Getting Started with Routes. Or, you can keep reading to learn more about the technical details and design choices that went into creating Net. "},{"title":"Data-driven by design​","type":1,"pageTitle":"Introduction","url":"/YetAnotherNet/docs/intro#data-driven-by-design","content":"One thing that separates Net from other networking libraries on Roblox is this key design choice. Net was made to work with ECS, a Data-driven approach to game design, which has influenced the design of the library largely and makes it unique from the rest. With inspiration from Bevy_Renet, a Networking crate for use with the Bevy ECS in Rust, and another networking library on Roblox, BridgeNet2, Net pushes to provide similar functionality to these two libraries for ECS on Roblox. "},{"title":"Why go for Data-driven?​","type":1,"pageTitle":"Introduction","url":"/YetAnotherNet/docs/intro#why-go-for-data-driven","content":"Data-driven design opposes Event-driven design, which is what you can commonly see on Roblox, such as RemoteEvents themselves. Event-driven design has it's woes, which is why we opt for ECS and generally Data-driven design. Event-driven design is sensitive to ordering, this makes it difficult to know when you might get data from an event. To solve this, Net does not use Events, it encourages you to query and send data in an ordered manner frame-by-frame, preferably with ECS. Since it's encouraged to use ECS with Net, though not required, we suggest reading Matter — Why ECS? by Evaera. "},{"title":"Installation​","type":1,"pageTitle":"Introduction","url":"/YetAnotherNet/docs/intro#installation","content":""},{"title":"Wally​","type":1,"pageTitle":"Introduction","url":"/YetAnotherNet/docs/intro#wally","content":"[dependencies] Net = "yetanotherclown/yetanothernet@0.7.0" Note: Wally does not export types automatically, if you wish to use Strict Typing with Net, install Wally Package Types with Aftman. "},{"title":"Roblox Typescript​","type":1,"pageTitle":"Introduction","url":"/YetAnotherNet/docs/intro#roblox-typescript","content":"You can find Net as YetAnotherNet on NPM. "@rbxts/yetanothernet": "0.7.0-beta.3" "},{"title":"Hooks","type":0,"sectionRef":"#","url":"/YetAnotherNet/docs/getting-started/hooks","content":"Hooks LuauTypescript Hooks allow you to integrate Net into any game architecture you want. These are simply functions that you can call whenever you want to process your Packets. It's recommended that you set your hooks to run on the Heartbeat using RunService.Heartbeat, so your Networking Code can be scheduled to run frame-by-frame as Net was designed to do. To create a hook, you can use Net.createHook({ Route }) and pass in a table of your Routes, then you can call it whenever you want to process your packets. local RunService = game:GetService("RunService") local Net = require("Net.luau") local routes = require("routes.luau") local hook = Net.createHook(routes) RunService.Heartbeat:Connect(hook) ","keywords":""},{"title":"Other Setups","type":0,"sectionRef":"#","url":"/YetAnotherNet/docs/setup/other","content":"Other Setups LuauTypescript You can integrate Net into whatever game architecture you want by creating a Hook using Net.createHook({ Route }) which is identical to the Net.start(loop, { Route }) function. This function will return another function which you can call whenever you want to process your Routes' queues and send/receive your Packets on the Server or Client. Below is a simple example of creating custom scheduling behavior using Net.createHook({ Route }), local RunService = game:GetService("RunService") local Net = require("Net.luau") local routes = require("routes.luau") local hook = Net.createHook(routes) RunService.Heartbeat:Connect(hook) ","keywords":""},{"title":"Net","type":0,"sectionRef":"#","url":"/YetAnotherNet/api/Net","content":"","keywords":""},{"title":"Properties​","type":1,"pageTitle":"Net","url":"/YetAnotherNet/api/Net#properties","content":" "},{"title":"server​","type":1,"pageTitle":"Net","url":"/YetAnotherNet/api/Net#server","content":"</> Net.server: "Net_Server" A unique identifier used for to identify the Server when sending/querying. "},{"title":"Route​","type":1,"pageTitle":"Net","url":"/YetAnotherNet/api/Net#Route","content":"</> Net.Route: Route A uniquely identified Object responsible for handling queries and send requests. "},{"title":"Functions​","type":1,"pageTitle":"Net","url":"/YetAnotherNet/api/Net#functions","content":" "},{"title":"start​","type":1,"pageTitle":"Net","url":"/YetAnotherNet/api/Net#start","content":"</> Net.start( loop: Loop,-- A Matter Loop routes: {Route}-- A table of your Routes ) → () Initializes your Routes by adding middleware to your Matter Loop. This ensures that your Routes run between each frame. note Please make sure that the event you set in the Configuration, or the default, is the same index you used for yourRunService.Heartbeat event in your Loop:begin() method. Your Routes are meant to run on the heartbeat, like most systems. In some cases you may want to run your Routes on different events, in this case it is acceptable to change it to a different event. "},{"title":"createHook​","type":1,"pageTitle":"Net","url":"/YetAnotherNet/api/Net#createHook","content":"</> Net.createHook( routes: {Net}-- A table of your Routes ) → () → () This function allows you to run Net scheduling code on your own events. When you provide a table of Routes, this function will return another function you can call which will step each Route and process it's Packet Queue. For example, to run scheduling on the Heartbeat: local hook = Net.createHook({ Route }) RunService.Heartbeat:Connect(hook) "},{"title":"Middleware","type":0,"sectionRef":"#","url":"/YetAnotherNet/docs/getting-started/middleware","content":"","keywords":""},{"title":"Compression​","type":1,"pageTitle":"Middleware","url":"/YetAnotherNet/docs/getting-started/middleware#compression","content":"To compress/decompress your data, you can use a library like Squash to serialize and deserialize your data. Simply return the types in order as a tuple, you can use the event parameter to determine whether to compress or decompress your data. local Squash = require("Squash.luau") local Net = require("Net.luau") local Route = Net.Route type Route<U...> = Net.Route<U...>; local route: Route<string, number> = Route.new({ Channel = "Reliable", }) -- Deserialize Packets before returning route:addIncomingMiddleware(function(str, bool) local values: { any } = {} local alphabet = Squash.string.alphabet(str) -- Type-check returned values; -- Squash serializes types into other types, like string if type(str) ~= "string" or type(boolean) ~= "string" then return end values = { Squash.string.des(str, alphabet), Squash.boolean.des(boolean), } return table.unpack(values) end) -- Serialize Packets before sending route:addOutgoingMiddleware(function(str, bool) local values: { any } = {} local alphabet = Squash.string.alphabet(str) -- Type-check sent values, -- Should be of the provided types U... in Net<U...> if type(str) ~= "string" or type(boolean) ~= "boolean" then return end values = { Squash.string.ser(str, alphabet), Squash.boolean.ser(boolean), } return table.unpack(values) end) "},{"title":"Route","type":0,"sectionRef":"#","url":"/YetAnotherNet/api/Route","content":"","keywords":""},{"title":"Types​","type":1,"pageTitle":"Route","url":"/YetAnotherNet/api/Route#types","content":" "},{"title":"Configuration​","type":1,"pageTitle":"Route","url":"/YetAnotherNet/api/Route#Configuration","content":"</> interface Configuration { Channel: "Reliable" | "Unreliable"-- Default: Reliable Event: string-- The event to schedule the Route on in your Matter Loop -- Default: "default" Ratelimit: number-- Amount of allowed invocations a frame } note As of v0.5.0, Ratelimiting is not implemented. This feature will come in future versions. Channel Reliable: All packets will be sent and received per frame in order. Unreliable: Packets may be dropped but will be received in order. "},{"title":"Functions​","type":1,"pageTitle":"Route","url":"/YetAnotherNet/api/Route#functions","content":" "},{"title":"new​","type":1,"pageTitle":"Route","url":"/YetAnotherNet/api/Route#new","content":"</> Route.new(configuration: Configuration?) → () Creates a new Route with a unique identifier, channel, and event. note All Routes with the same Channel will share a single Remote. It's recommended that you run all your Net scheduling code on a single event. "},{"title":"query​","type":1,"pageTitle":"Route","url":"/YetAnotherNet/api/Route#query","content":"</> Route:query() → QueryResult Allows for iteration of all packets of the previous frame. You can filter by Senders by chaining the QueryResult:from() method onto the query method. note Due to certain limitations with the Luau Type System, iterating over the QueryResult Object will not return typed values. In order to fix this, call :__iter() on the QueryResult Object. For example: for i, sender, ... in route:query():__iter() do -- Do something end See Querying Data for more information. "},{"title":"send​","type":1,"pageTitle":"Route","url":"/YetAnotherNet/api/Route#send","content":"</> Route:send() → () Sends data to all clients or to specific recipients from the Route's identifier. By default, Route:send will send the data to all Clients. You can specify which Clients to receive the data by chaining SendRequest:to and passing { Player }, Player, or Route.Server. See Sending Data for more information. "},{"title":"addIncomingMiddleware​","type":1,"pageTitle":"Route","url":"/YetAnotherNet/api/Route#addIncomingMiddleware","content":"</> Route:addIncomingMiddleware() → () Sets a function to be ran on Incoming packets before they are processed. For example, this would run after the Client receives a Packet from the Server over the network: after calling Route:send() on the Server and before calling Route:query() on the Client. See Middleware for more information. "},{"title":"addOutgoingMiddleware​","type":1,"pageTitle":"Route","url":"/YetAnotherNet/api/Route#addOutgoingMiddleware","content":"</> Route:addOutgoingMiddleware() → () Sets a function to be ran on Outgoing packets before they are sent over the network. For example, this would run before the Server sends a Packet to the Client over the network: after calling Route:send() on the Server and before the Client ever receives the Packet. See Middleware for more information. "},{"title":"Routes","type":0,"sectionRef":"#","url":"/YetAnotherNet/docs/getting-started/routes","content":"","keywords":""},{"title":"Configuration​","type":1,"pageTitle":"Routes","url":"/YetAnotherNet/docs/getting-started/routes#configuration","content":"There are a few ways you can configure your Routes: ChannelEvent All Routes run on one of two channels: Reliable & Unreliable. These channels change the way your packets are sent over the network. Channel\tDescriptionReliable\tPackets are never dropped, and are always ordered. Unreliable\tPackets may be dropped per frame, but are always ordered per frame. "},{"title":"Type-checking​","type":1,"pageTitle":"Routes","url":"/YetAnotherNet/docs/getting-started/routes#type-checking","content":"Routes can be Type-checked to provide intellisense and auto-completion by providing a type annotation when creating your Routes. LuauTypescript local Net = require("Net.luau") local Route = Net.Route type Route<U...> = Net.Route<U...>; local route: Route<number, string, boolean> = Route.new() -- Send will expect the types annotated route:send(1, "Hello, world!", true) -- The returned arguments are typed for pos, num, str, bool in route:query() do -- Do something end In this example, the Route is annotated with the types number, string, boolean, this means that our methods like Route:query() and Route:send() will return or expect these types. This will enable auto-completion and type-checking when working with your Routes, as such it is encouraged you enable Strict Typing to compliment these features. "},{"title":"Sending​","type":1,"pageTitle":"Routes","url":"/YetAnotherNet/docs/getting-started/routes#sending","content":"LuauTypescript You can use Route:send(...data) to send data over the Route. This data will be processed next frame, which is when you'll be able to query it on the receiving end. local Net = require("Net.luau") local Route = Net.Route type Route<U...> = Net.Route<U...>; local route: Route<number, string, boolean> = Route.new() -- Send will expect the types annotated route:send(1, "Hello, world!", true) -- The returned arguments are typed for pos, num, str, bool in route:query() do -- Do something end local Route: Net<number, string, boolean> = Net.new() Route:send(5, true, "Hello, world!") By default, Route:send() will send the Packet of data to all Clients when used on the Server. You can specify a Player or { Player } to send it to by using Route:send():to(recipient). "},{"title":"Querying​","type":1,"pageTitle":"Routes","url":"/YetAnotherNet/docs/getting-started/routes#querying","content":"LuauTypescript Querying is simple, you can query for Packets by using Route:query() which will return an iterator that will output position, sender, ...data in your for loop. local Net = require("Net.luau") local Route = Net.Route type Route<U...> = Net.Route<U...>; local Route: Route<number, string, boolean> = Route.new() for pos, sender, num, str, bool in Route:query() do -- Do something end When you call the query method, it will take a snapshot of all Packets from the previous frame and filter it for you, such as only returning Packets from the Route the method was called on. Or, you can also filter out senders by calling Route:query():from(...sender) on the QueryResult and putting any values of type { Player } | Player | Net.server in the arguments. "},{"title":"Matter","type":0,"sectionRef":"#","url":"/YetAnotherNet/docs/setup/matter","content":"Matter tip Check out the adapted version of the Matter Example game to see how it's used in a real game. See all of Net's example projects in the repository. LuauTypescript Being initially made for the Matter ECS, Net provides a simple function for scheduling your Routes to run on your Matter Loop. Firstly, create a routes.luau ModuleScript in ReplicatedStorage to strictly declare your Routes. routes.luau local Net = require("Net.luau") local Route = Net.Route type Route<U...> = Net.Route<U...>; local defaultConfiguration = { Channel = "Reliable", Event = "default", } -- Payload for replicating Entities type EntityPayload = { [string]: { -- EntityId [string]: { -- Component name data: ComponentInstance<T> } } } -- Replicate Matter Components local MatterReplication: Net<EntityPayload> = Net.new(defaultConfiguration) -- Signal that the Player has loaded local PlayerLoaded: Net<boolean> = Net.new(defaultConfiguration) return { MatterReplication = MatterReplication, PlayerLoaded = PlayerLoaded, } And now in the same script where you create your Matter Loop, you can run the Net.start(Loop, { Net })function to schedule your Routes to run on Matter's Middleware. init.server.luau / init.client.luau local Matter = require("Matter.luau") local World = Matter.World local Loop = Matter.Loop local Net = require("Net.luau") local routes = require("routes.luau") local world = World.new() local loop = Loop.new(world) -- Schedules your Routes Net.start(loop, routes) local systems = {} for _, child in script.systems:GetChildren() do if child:IsA("ModuleScript") then table.insert(systems, require(child)) end end loop:scheduleSystems(systems) -- Schedule systems after running ``Net.start()`` -- Begin the loop and make sure the ``Event`` key in your Routes configuration are added here loop:begin({ default = RunService.Heartbeat }) Finally, in a Matter System we can use our routes.luau ModuleScript to access our Routes and use them within our Systems. systems/exampleSystem.luau local routes = require("routes.luau") local PlayerLoaded = routes.PlayerLoaded local function exampleSystem(world) -- Query through every networking call that frame on the Server for i, player, ...data in PlayerLoaded:query() do -- Do something end -- Query through every networking call that frame on the Client for i, _, ...data in PlayerLoaded:query() do -- Do something end -- Send data from the Client to the Server PlayerLoaded:send(...data) -- Send data to a Client from the Server PlayerLoaded:send(...data):to(Player) end ","keywords":""}] \ No newline at end of file +[{"title":"ECR","type":0,"sectionRef":"#","url":"/YetAnotherNet/docs/setup/ecr","content":"","keywords":""},{"title":"🏗️ This page is under construction.​","type":1,"pageTitle":"ECR","url":"/YetAnotherNet/docs/setup/ecr#️-this-page-is-under-construction","content":"We're still learning the best practices for integrating and using Net with ECR, for now see Other Setups for integrating Net into other game architectures that don't use Matter. You can also see the Matter Setup to see how you would setup and use Net for another ECS library. You can also checkout ECR — A Luau ECS library. "},{"title":"QueryResult","type":0,"sectionRef":"#","url":"/YetAnotherNet/api/QueryResult","content":"","keywords":""},{"title":"Functions​","type":1,"pageTitle":"QueryResult","url":"/YetAnotherNet/api/QueryResult#functions","content":" "},{"title":"iterating over QueryResult​","type":1,"pageTitle":"QueryResult","url":"/YetAnotherNet/api/QueryResult#__iter","content":"</> for number, Player | string, ...any in QueryResult do Iterating over a QueryResult will return the Packets in the QueryResult's Snapshot that match the supplied Senders from QueryResult:from. Usage: for pos, sender, ... in net:query():from(...senders) do -- Do something end "},{"title":"from​","type":1,"pageTitle":"QueryResult","url":"/YetAnotherNet/api/QueryResult#from","content":"</> QueryResult:from( senders: ...sender-- The Senders to filter ) → QueryResult Filters Packets from the QueryResult's Snapshot based on the provided Senders. "},{"title":"Loop","type":0,"sectionRef":"#","url":"/YetAnotherNet/api/Loop","content":"On this page Loop A Matter Loop. For technical details, if you were to use a custom Loop object or try to integrate this Net Library in a ECS other than Matter, the Net.start(loop, { Route }) function uses a similar implementation to Net.createHook({ Net }) internally. For more information on this, see Net.createHook.","keywords":""},{"title":"Net","type":0,"sectionRef":"#","url":"/YetAnotherNet/api/Net","content":"","keywords":""},{"title":"Properties​","type":1,"pageTitle":"Net","url":"/YetAnotherNet/api/Net#properties","content":" "},{"title":"server​","type":1,"pageTitle":"Net","url":"/YetAnotherNet/api/Net#server","content":"</> Net.server: "Net_Server" A unique identifier used for to identify the Server when sending/querying. "},{"title":"Route​","type":1,"pageTitle":"Net","url":"/YetAnotherNet/api/Net#Route","content":"</> Net.Route: Route A uniquely identified Object responsible for handling queries and send requests. "},{"title":"Functions​","type":1,"pageTitle":"Net","url":"/YetAnotherNet/api/Net#functions","content":" "},{"title":"start​","type":1,"pageTitle":"Net","url":"/YetAnotherNet/api/Net#start","content":"</> Net.start( loop: Loop,-- A Matter Loop routes: {Route}-- A table of your Routes ) → () Initializes your Routes by adding middleware to your Matter Loop. This ensures that your Routes run between each frame. note Please make sure that the event you set in the Configuration, or the default, is the same index you used for yourRunService.Heartbeat event in your Loop:begin() method. Your Routes are meant to run on the heartbeat, like most systems. In some cases you may want to run your Routes on different events, in this case it is acceptable to change it to a different event. "},{"title":"createHook​","type":1,"pageTitle":"Net","url":"/YetAnotherNet/api/Net#createHook","content":"</> Net.createHook( routes: {Net}-- A table of your Routes ) → () → () This function allows you to run Net scheduling code on your own events. When you provide a table of Routes, this function will return another function you can call which will step each Route and process it's Packet Queue. For example, to run scheduling on the Heartbeat: local hook = Net.createHook({ Route }) RunService.Heartbeat:Connect(hook) "},{"title":"Introduction","type":0,"sectionRef":"#","url":"/YetAnotherNet/docs/intro","content":"","keywords":""},{"title":"What is this?​","type":1,"pageTitle":"Introduction","url":"/YetAnotherNet/docs/intro#what-is-this","content":"Net is a networking library for Roblox, or rather its a library that wraps around Roblox's RemoteEvents to solve certain issues and provide new API for networking on Roblox. Some of the issues this library solves are: Overhead from RemoteEventsOrdering of Networking EventsLack of Type-Checking and Intellisense for working with RemoteEvents Net also provides several utilities: MiddlewareStrict Type-Checking & Auto-completionSimple integration with HooksData-driven Design You can learn more about how Net works and how to use it by visiting Getting Started with Routes. Or, you can keep reading to learn more about the technical details and design choices that went into creating Net. "},{"title":"Data-driven by design​","type":1,"pageTitle":"Introduction","url":"/YetAnotherNet/docs/intro#data-driven-by-design","content":"One thing that separates Net from other networking libraries on Roblox is this key design choice. Net was made to work with ECS, a Data-driven approach to game design, which has influenced the design of the library largely and makes it unique from the rest. With inspiration from Bevy_Renet, a Networking crate for use with the Bevy ECS in Rust, and another networking library on Roblox, BridgeNet2, Net pushes to provide similar functionality to these two libraries for ECS on Roblox. "},{"title":"Why go for Data-driven?​","type":1,"pageTitle":"Introduction","url":"/YetAnotherNet/docs/intro#why-go-for-data-driven","content":"Data-driven design opposes Event-driven design, which is what you can commonly see on Roblox, such as RemoteEvents themselves. Event-driven design has it's woes, which is why we opt for ECS and generally Data-driven design. Event-driven design is sensitive to ordering, this makes it difficult to know when you might get data from an event. To solve this, Net does not use Events, it encourages you to query and send data in an ordered manner frame-by-frame, preferably with ECS. Since it's encouraged to use ECS with Net, though not required, we suggest reading Matter — Why ECS? by Evaera. "},{"title":"Installation​","type":1,"pageTitle":"Introduction","url":"/YetAnotherNet/docs/intro#installation","content":""},{"title":"Wally​","type":1,"pageTitle":"Introduction","url":"/YetAnotherNet/docs/intro#wally","content":"[dependencies] Net = "yetanotherclown/yetanothernet@0.7.0" Note: Wally does not export types automatically, if you wish to use Strict Typing with Net, install Wally Package Types with Aftman. "},{"title":"Roblox Typescript​","type":1,"pageTitle":"Introduction","url":"/YetAnotherNet/docs/intro#roblox-typescript","content":"You can find Net as YetAnotherNet on NPM. "@rbxts/yetanothernet": "0.7.0-beta.3" "},{"title":"Route","type":0,"sectionRef":"#","url":"/YetAnotherNet/api/Route","content":"","keywords":""},{"title":"Types​","type":1,"pageTitle":"Route","url":"/YetAnotherNet/api/Route#types","content":" "},{"title":"Configuration​","type":1,"pageTitle":"Route","url":"/YetAnotherNet/api/Route#Configuration","content":"</> interface Configuration { Channel: "Reliable" | "Unreliable"-- Default: Reliable Event: string-- The event to schedule the Route on in your Matter Loop -- Default: "default" Ratelimit: number-- Amount of allowed invocations a frame } note As of v0.5.0, Ratelimiting is not implemented. This feature will come in future versions. Channel Reliable: All packets will be sent and received per frame in order. Unreliable: Packets may be dropped but will be received in order. "},{"title":"Functions​","type":1,"pageTitle":"Route","url":"/YetAnotherNet/api/Route#functions","content":" "},{"title":"new​","type":1,"pageTitle":"Route","url":"/YetAnotherNet/api/Route#new","content":"</> Route.new(configuration: Configuration?) → () Creates a new Route with a unique identifier, channel, and event. note All Routes with the same Channel will share a single Remote. It's recommended that you run all your Net scheduling code on a single event. "},{"title":"query​","type":1,"pageTitle":"Route","url":"/YetAnotherNet/api/Route#query","content":"</> Route:query() → QueryResult Allows for iteration of all packets of the previous frame. You can filter by Senders by chaining the QueryResult:from() method onto the query method. note Due to certain limitations with the Luau Type System, iterating over the QueryResult Object will not return typed values. In order to fix this, call :__iter() on the QueryResult Object. For example: for i, sender, ... in route:query():__iter() do -- Do something end See Querying Data for more information. "},{"title":"send​","type":1,"pageTitle":"Route","url":"/YetAnotherNet/api/Route#send","content":"</> Route:send() → () Sends data to all clients or to specific recipients from the Route's identifier. By default, Route:send will send the data to all Clients. You can specify which Clients to receive the data by chaining SendRequest:to and passing { Player }, Player, or Route.Server. See Sending Data for more information. "},{"title":"addIncomingMiddleware​","type":1,"pageTitle":"Route","url":"/YetAnotherNet/api/Route#addIncomingMiddleware","content":"</> Route:addIncomingMiddleware() → () Sets a function to be ran on Incoming packets before they are processed. For example, this would run after the Client receives a Packet from the Server over the network: after calling Route:send() on the Server and before calling Route:query() on the Client. See Middleware for more information. "},{"title":"addOutgoingMiddleware​","type":1,"pageTitle":"Route","url":"/YetAnotherNet/api/Route#addOutgoingMiddleware","content":"</> Route:addOutgoingMiddleware() → () Sets a function to be ran on Outgoing packets before they are sent over the network. For example, this would run before the Server sends a Packet to the Client over the network: after calling Route:send() on the Server and before the Client ever receives the Packet. See Middleware for more information. "},{"title":"Hooks","type":0,"sectionRef":"#","url":"/YetAnotherNet/docs/getting-started/hooks","content":"Hooks LuauTypescript Hooks allow you to integrate Net into any game architecture you want. These are simply functions that you can call whenever you want to process your Packets. It's recommended that you set your hooks to run on the Heartbeat using RunService.Heartbeat, so your Networking Code can be scheduled to run frame-by-frame as Net was designed to do. To create a hook, you can use Net.createHook({ Route }) and pass in a table of your Routes, then you can call it whenever you want to process your packets. local RunService = game:GetService("RunService") local Net = require("Net.luau") local routes = require("routes.luau") local hook = Net.createHook(routes) RunService.Heartbeat:Connect(hook) ","keywords":""},{"title":"SendRequest","type":0,"sectionRef":"#","url":"/YetAnotherNet/api/SendRequest","content":"","keywords":""},{"title":"Functions​","type":1,"pageTitle":"SendRequest","url":"/YetAnotherNet/api/SendRequest#functions","content":" "},{"title":"to​","type":1,"pageTitle":"SendRequest","url":"/YetAnotherNet/api/SendRequest#to","content":"</> SendRequest:to(recipient: {Player } | Player | "NET_SERVER") → () Modifies the recipients of the packet to the one(s) provided in the parameter. "},{"title":"Middleware","type":0,"sectionRef":"#","url":"/YetAnotherNet/docs/getting-started/middleware","content":"","keywords":""},{"title":"Compression​","type":1,"pageTitle":"Middleware","url":"/YetAnotherNet/docs/getting-started/middleware#compression","content":"To compress/decompress your data, you can use a library like Squash to serialize and deserialize your data. Simply return the types in order as a tuple, you can use the event parameter to determine whether to compress or decompress your data. local Squash = require("Squash.luau") local Net = require("Net.luau") local Route = Net.Route type Route<U...> = Net.Route<U...>; local route: Route<string, number> = Route.new({ Channel = "Reliable", }) -- Deserialize Packets before returning route:addIncomingMiddleware(function(str, bool) local values: { any } = {} local alphabet = Squash.string.alphabet(str) -- Type-check returned values; -- Squash serializes types into other types, like string if type(str) ~= "string" or type(boolean) ~= "string" then return end values = { Squash.string.des(str, alphabet), Squash.boolean.des(boolean), } return table.unpack(values) end) -- Serialize Packets before sending route:addOutgoingMiddleware(function(str, bool) local values: { any } = {} local alphabet = Squash.string.alphabet(str) -- Type-check sent values, -- Should be of the provided types U... in Net<U...> if type(str) ~= "string" or type(boolean) ~= "boolean" then return end values = { Squash.string.ser(str, alphabet), Squash.boolean.ser(boolean), } return table.unpack(values) end) "},{"title":"Other Setups","type":0,"sectionRef":"#","url":"/YetAnotherNet/docs/setup/other","content":"Other Setups LuauTypescript You can integrate Net into whatever game architecture you want by creating a Hook using Net.createHook({ Route }) which is identical to the Net.start(loop, { Route }) function. This function will return another function which you can call whenever you want to process your Routes' queues and send/receive your Packets on the Server or Client. Below is a simple example of creating custom scheduling behavior using Net.createHook({ Route }), local RunService = game:GetService("RunService") local Net = require("Net.luau") local routes = require("routes.luau") local hook = Net.createHook(routes) RunService.Heartbeat:Connect(hook) ","keywords":""},{"title":"Routes","type":0,"sectionRef":"#","url":"/YetAnotherNet/docs/getting-started/routes","content":"","keywords":""},{"title":"Configuration​","type":1,"pageTitle":"Routes","url":"/YetAnotherNet/docs/getting-started/routes#configuration","content":"There are a few ways you can configure your Routes: ChannelEvent All Routes run on one of two channels: Reliable & Unreliable. These channels change the way your packets are sent over the network. Channel\tDescriptionReliable\tPackets are never dropped, and are always ordered. Unreliable\tPackets may be dropped per frame, but are always ordered per frame. "},{"title":"Type-checking​","type":1,"pageTitle":"Routes","url":"/YetAnotherNet/docs/getting-started/routes#type-checking","content":"Routes can be Type-checked to provide intellisense and auto-completion by providing a type annotation when creating your Routes. LuauTypescript local Net = require("Net.luau") local Route = Net.Route type Route<U...> = Net.Route<U...>; local route: Route<number, string, boolean> = Route.new() -- Send will expect the types annotated route:send(1, "Hello, world!", true) -- The returned arguments are typed for pos, num, str, bool in route:query() do -- Do something end In this example, the Route is annotated with the types number, string, boolean, this means that our methods like Route:query() and Route:send() will return or expect these types. This will enable auto-completion and type-checking when working with your Routes, as such it is encouraged you enable Strict Typing to compliment these features. "},{"title":"Sending​","type":1,"pageTitle":"Routes","url":"/YetAnotherNet/docs/getting-started/routes#sending","content":"LuauTypescript You can use Route:send(...data) to send data over the Route. This data will be processed next frame, which is when you'll be able to query it on the receiving end. local Net = require("Net.luau") local Route = Net.Route type Route<U...> = Net.Route<U...>; local route: Route<number, string, boolean> = Route.new() -- Send will expect the types annotated route:send(1, "Hello, world!", true) -- The returned arguments are typed for pos, num, str, bool in route:query() do -- Do something end local Route: Net<number, string, boolean> = Net.new() Route:send(5, true, "Hello, world!") By default, Route:send() will send the Packet of data to all Clients when used on the Server. You can specify a Player or { Player } to send it to by using Route:send():to(recipient). "},{"title":"Querying​","type":1,"pageTitle":"Routes","url":"/YetAnotherNet/docs/getting-started/routes#querying","content":"LuauTypescript Querying is simple, you can query for Packets by using Route:query() which will return an iterator that will output position, sender, ...data in your for loop. local Net = require("Net.luau") local Route = Net.Route type Route<U...> = Net.Route<U...>; local Route: Route<number, string, boolean> = Route.new() for pos, sender, num, str, bool in Route:query() do -- Do something end When you call the query method, it will take a snapshot of all Packets from the previous frame and filter it for you, such as only returning Packets from the Route the method was called on. Or, you can also filter out senders by calling Route:query():from(...sender) on the QueryResult and putting any values of type { Player } | Player | Net.server in the arguments. "},{"title":"Matter","type":0,"sectionRef":"#","url":"/YetAnotherNet/docs/setup/matter","content":"Matter tip Check out the adapted version of the Matter Example game to see how it's used in a real game. See all of Net's example projects in the repository. LuauTypescript Being initially made for the Matter ECS, Net provides a simple function for scheduling your Routes to run on your Matter Loop. Firstly, create a routes.luau ModuleScript in ReplicatedStorage to strictly declare your Routes. routes.luau local Net = require("Net.luau") local Route = Net.Route type Route<U...> = Net.Route<U...>; local defaultConfiguration = { Channel = "Reliable", Event = "default", } -- Payload for replicating Entities type EntityPayload = { [string]: { -- EntityId [string]: { -- Component name data: ComponentInstance<T> } } } -- Replicate Matter Components local MatterReplication: Net<EntityPayload> = Net.new(defaultConfiguration) -- Signal that the Player has loaded local PlayerLoaded: Net<boolean> = Net.new(defaultConfiguration) return { MatterReplication = MatterReplication, PlayerLoaded = PlayerLoaded, } And now in the same script where you create your Matter Loop, you can run the Net.start(Loop, { Net })function to schedule your Routes to run on Matter's Middleware. init.server.luau / init.client.luau local Matter = require("Matter.luau") local World = Matter.World local Loop = Matter.Loop local Net = require("Net.luau") local routes = require("routes.luau") local world = World.new() local loop = Loop.new(world) -- Schedules your Routes Net.start(loop, routes) local systems = {} for _, child in script.systems:GetChildren() do if child:IsA("ModuleScript") then table.insert(systems, require(child)) end end loop:scheduleSystems(systems) -- Schedule systems after running ``Net.start()`` -- Begin the loop and make sure the ``Event`` key in your Routes configuration are added here loop:begin({ default = RunService.Heartbeat }) Finally, in a Matter System we can use our routes.luau ModuleScript to access our Routes and use them within our Systems. systems/exampleSystem.luau local routes = require("routes.luau") local PlayerLoaded = routes.PlayerLoaded local function exampleSystem(world) -- Query through every networking call that frame on the Server for i, player, ...data in PlayerLoaded:query() do -- Do something end -- Query through every networking call that frame on the Client for i, _, ...data in PlayerLoaded:query() do -- Do something end -- Send data from the Client to the Server PlayerLoaded:send(...data) -- Send data to a Client from the Server PlayerLoaded:send(...data):to(Player) end ","keywords":""}] \ No newline at end of file diff --git a/sitemap.xml b/sitemap.xml index bcfabf3..08bd9f4 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -1 +1 @@ -https://yetanotherclown.github.io/YetAnotherNet/api/weekly0.5https://yetanotherclown.github.io/YetAnotherNet/api/Loopweekly0.5https://yetanotherclown.github.io/YetAnotherNet/api/Netweekly0.5https://yetanotherclown.github.io/YetAnotherNet/api/QueryResultweekly0.5https://yetanotherclown.github.io/YetAnotherNet/api/Routeweekly0.5https://yetanotherclown.github.io/YetAnotherNet/api/SendRequestweekly0.5https://yetanotherclown.github.io/YetAnotherNet/docs/getting-started/hooksweekly0.5https://yetanotherclown.github.io/YetAnotherNet/docs/getting-started/middlewareweekly0.5https://yetanotherclown.github.io/YetAnotherNet/docs/getting-started/routesweekly0.5https://yetanotherclown.github.io/YetAnotherNet/docs/introweekly0.5https://yetanotherclown.github.io/YetAnotherNet/docs/setup/ecrweekly0.5https://yetanotherclown.github.io/YetAnotherNet/docs/setup/matterweekly0.5https://yetanotherclown.github.io/YetAnotherNet/docs/setup/otherweekly0.5https://yetanotherclown.github.io/YetAnotherNet/weekly0.5 \ No newline at end of file +https://yetanotherclown.github.io/YetAnotherNet/api/weekly0.5https://yetanotherclown.github.io/YetAnotherNet/api/Loopweekly0.5https://yetanotherclown.github.io/YetAnotherNet/api/Netweekly0.5https://yetanotherclown.github.io/YetAnotherNet/api/QueryResultweekly0.5https://yetanotherclown.github.io/YetAnotherNet/api/Routeweekly0.5https://yetanotherclown.github.io/YetAnotherNet/api/SendRequestweekly0.5https://yetanotherclown.github.io/YetAnotherNet/CHANGELOGweekly0.5https://yetanotherclown.github.io/YetAnotherNet/docs/getting-started/hooksweekly0.5https://yetanotherclown.github.io/YetAnotherNet/docs/getting-started/middlewareweekly0.5https://yetanotherclown.github.io/YetAnotherNet/docs/getting-started/routesweekly0.5https://yetanotherclown.github.io/YetAnotherNet/docs/introweekly0.5https://yetanotherclown.github.io/YetAnotherNet/docs/setup/ecrweekly0.5https://yetanotherclown.github.io/YetAnotherNet/docs/setup/matterweekly0.5https://yetanotherclown.github.io/YetAnotherNet/docs/setup/otherweekly0.5https://yetanotherclown.github.io/YetAnotherNet/weekly0.5 \ No newline at end of file