Version Description
- Update: User connection is no longer required for Speed Scores.
- Update: Completely revamped how site speed scores are retreived.
- Update: Reduced backend dashboard JavaScript bundle size.
- Update: Added a message to explain how site score is calculated.
- Update: Added "Offline Mode" to allow testing Jetpack Boost on local environments easily.
- Update: Improved error handling and the error messages provided.
- Update: Improved Critical CSS Generation stability.
- Update: Remove animations from Critical CSS.
- Fix: Incompatibility with UsersWP and similar plugins that might introduce redirects during Critical CSS Generation.
Download this release
Release Info
Developer | pyronaur |
Plugin | Jetpack Boost – Website Speed, Performance and Critical CSS |
Version | 1.1.0 |
Comparing to | |
See all releases |
Code changes from version 1.0.6 to 1.1.0
- .husky/_/husky.sh +30 -0
- .husky/pre-push +4 -0
- app/admin/class-admin.php +15 -30
- app/assets/dist/admin-style.css +0 -1
- app/assets/dist/admin.js +0 -68
.husky/_/husky.sh
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#!/bin/sh
|
2 |
+
if [ -z "$husky_skip_init" ]; then
|
3 |
+
debug () {
|
4 |
+
[ "$HUSKY_DEBUG" = "1" ] && echo "husky (debug) - $1"
|
5 |
+
}
|
6 |
+
|
7 |
+
readonly hook_name="$(basename "$0")"
|
8 |
+
debug "starting $hook_name..."
|
9 |
+
|
10 |
+
if [ "$HUSKY" = "0" ]; then
|
11 |
+
debug "HUSKY env variable is set to 0, skipping hook"
|
12 |
+
exit 0
|
13 |
+
fi
|
14 |
+
|
15 |
+
if [ -f ~/.huskyrc ]; then
|
16 |
+
debug "sourcing ~/.huskyrc"
|
17 |
+
. ~/.huskyrc
|
18 |
+
fi
|
19 |
+
|
20 |
+
export readonly husky_skip_init=1
|
21 |
+
sh -e "$0" "$@"
|
22 |
+
exitCode="$?"
|
23 |
+
|
24 |
+
if [ $exitCode != 0 ]; then
|
25 |
+
echo "husky - $hook_name hook exited with code $exitCode (error)"
|
26 |
+
exit $exitCode
|
27 |
+
fi
|
28 |
+
|
29 |
+
exit 0
|
30 |
+
fi
|
.husky/pre-push
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
1 |
+
#!/bin/sh
|
2 |
+
. "$(dirname "$0")/_/husky.sh"
|
3 |
+
|
4 |
+
npm run lint && npm test
|
app/admin/class-admin.php
CHANGED
@@ -8,11 +8,11 @@
|
|
8 |
|
9 |
namespace Automattic\Jetpack_Boost\Admin;
|
10 |
|
|
|
11 |
use Automattic\Jetpack_Boost\Jetpack_Boost;
|
12 |
-
use Automattic\Jetpack_Boost\Lib\Benchmark;
|
13 |
use Automattic\Jetpack_Boost\Lib\Environment_Change_Detector;
|
14 |
-
use Automattic\Jetpack_Boost\Lib\Metrics;
|
15 |
use Automattic\Jetpack_Boost\Lib\Preview;
|
|
|
16 |
|
17 |
/**
|
18 |
* The admin-specific functionality of the plugin.
|
@@ -32,18 +32,11 @@ class Admin {
|
|
32 |
protected $jetpack_boost;
|
33 |
|
34 |
/**
|
35 |
-
*
|
36 |
*
|
37 |
-
* @var \Automattic\Jetpack_Boost\Lib\
|
38 |
*/
|
39 |
-
protected $
|
40 |
-
|
41 |
-
/**
|
42 |
-
* Metrics class instance.
|
43 |
-
*
|
44 |
-
* @var \Automattic\Jetpack_Boost\Lib\Metrics instance.
|
45 |
-
*/
|
46 |
-
protected $metrics;
|
47 |
|
48 |
/**
|
49 |
* Preview class instance.
|
@@ -66,8 +59,7 @@ class Admin {
|
|
66 |
*/
|
67 |
public function __construct( Jetpack_Boost $jetpack_boost ) {
|
68 |
$this->jetpack_boost = $jetpack_boost;
|
69 |
-
$this->
|
70 |
-
$this->metrics = new Metrics();
|
71 |
$this->preview = new Preview( $jetpack_boost );
|
72 |
$this->environment_change_detector = new Environment_Change_Detector();
|
73 |
|
@@ -137,7 +129,7 @@ class Admin {
|
|
137 |
|
138 |
wp_enqueue_style(
|
139 |
$this->jetpack_boost->get_plugin_name() . '-css',
|
140 |
-
plugins_url( $internal_path . '
|
141 |
array( 'wp-components' ),
|
142 |
JETPACK_BOOST_VERSION,
|
143 |
'all'
|
@@ -156,19 +148,11 @@ class Admin {
|
|
156 |
|
157 |
$internal_path = apply_filters( 'jetpack_boost_asset_internal_path', 'app/assets/dist/' );
|
158 |
|
159 |
-
wp_enqueue_script(
|
160 |
-
$this->jetpack_boost->get_plugin_name() . '-runtime',
|
161 |
-
plugins_url( $internal_path . 'runtime.js', JETPACK_BOOST_PATH ),
|
162 |
-
array(),
|
163 |
-
JETPACK_BOOST_VERSION,
|
164 |
-
true
|
165 |
-
);
|
166 |
-
|
167 |
$admin_js_handle = $this->jetpack_boost->get_plugin_name() . '-admin';
|
168 |
|
169 |
wp_register_script(
|
170 |
$admin_js_handle,
|
171 |
-
plugins_url( $internal_path . '
|
172 |
array(),
|
173 |
JETPACK_BOOST_VERSION,
|
174 |
true
|
@@ -176,15 +160,19 @@ class Admin {
|
|
176 |
|
177 |
// Prepare configuration constants for JavaScript.
|
178 |
$constants = array(
|
|
|
179 |
'api' => array(
|
180 |
'namespace' => JETPACK_BOOST_REST_NAMESPACE,
|
181 |
'prefix' => JETPACK_BOOST_REST_PREFIX,
|
182 |
),
|
183 |
-
'siteUrl' => get_site_url(),
|
184 |
'modules' => $this->jetpack_boost->get_available_modules(),
|
185 |
'config' => $this->jetpack_boost->config()->get_data(),
|
186 |
-
'version' => JETPACK_BOOST_VERSION,
|
187 |
'locale' => get_locale(),
|
|
|
|
|
|
|
|
|
|
|
188 |
);
|
189 |
|
190 |
// Give each module an opportunity to define extra constants.
|
@@ -204,6 +192,7 @@ class Admin {
|
|
204 |
public function plugin_page_settings_link( $links ) {
|
205 |
$settings_link = '<a href="' . admin_url( '?page=jetpack-boost' ) . '">' . esc_html__( 'Settings', 'jetpack-boost' ) . '</a>';
|
206 |
array_unshift( $links, $settings_link );
|
|
|
207 |
return $links;
|
208 |
}
|
209 |
|
@@ -230,10 +219,6 @@ class Admin {
|
|
230 |
* @return bool
|
231 |
*/
|
232 |
public function check_for_permissions() {
|
233 |
-
if ( ! $this->jetpack_boost->connection->is_connected() ) {
|
234 |
-
return false;
|
235 |
-
}
|
236 |
-
|
237 |
return current_user_can( 'manage_options' );
|
238 |
}
|
239 |
|
8 |
|
9 |
namespace Automattic\Jetpack_Boost\Admin;
|
10 |
|
11 |
+
use Automattic\Jetpack\Status;
|
12 |
use Automattic\Jetpack_Boost\Jetpack_Boost;
|
|
|
13 |
use Automattic\Jetpack_Boost\Lib\Environment_Change_Detector;
|
|
|
14 |
use Automattic\Jetpack_Boost\Lib\Preview;
|
15 |
+
use Automattic\Jetpack_Boost\Lib\Speed_Score;
|
16 |
|
17 |
/**
|
18 |
* The admin-specific functionality of the plugin.
|
32 |
protected $jetpack_boost;
|
33 |
|
34 |
/**
|
35 |
+
* Speed_Score class instance.
|
36 |
*
|
37 |
+
* @var \Automattic\Jetpack_Boost\Lib\Speed_Score instance.
|
38 |
*/
|
39 |
+
protected $speed_score;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
|
41 |
/**
|
42 |
* Preview class instance.
|
59 |
*/
|
60 |
public function __construct( Jetpack_Boost $jetpack_boost ) {
|
61 |
$this->jetpack_boost = $jetpack_boost;
|
62 |
+
$this->speed_score = new Speed_Score();
|
|
|
63 |
$this->preview = new Preview( $jetpack_boost );
|
64 |
$this->environment_change_detector = new Environment_Change_Detector();
|
65 |
|
129 |
|
130 |
wp_enqueue_style(
|
131 |
$this->jetpack_boost->get_plugin_name() . '-css',
|
132 |
+
plugins_url( $internal_path . 'jetpack-boost.css', JETPACK_BOOST_PATH ),
|
133 |
array( 'wp-components' ),
|
134 |
JETPACK_BOOST_VERSION,
|
135 |
'all'
|
148 |
|
149 |
$internal_path = apply_filters( 'jetpack_boost_asset_internal_path', 'app/assets/dist/' );
|
150 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
151 |
$admin_js_handle = $this->jetpack_boost->get_plugin_name() . '-admin';
|
152 |
|
153 |
wp_register_script(
|
154 |
$admin_js_handle,
|
155 |
+
plugins_url( $internal_path . 'jetpack-boost.js', JETPACK_BOOST_PATH ),
|
156 |
array(),
|
157 |
JETPACK_BOOST_VERSION,
|
158 |
true
|
160 |
|
161 |
// Prepare configuration constants for JavaScript.
|
162 |
$constants = array(
|
163 |
+
'version' => JETPACK_BOOST_VERSION,
|
164 |
'api' => array(
|
165 |
'namespace' => JETPACK_BOOST_REST_NAMESPACE,
|
166 |
'prefix' => JETPACK_BOOST_REST_PREFIX,
|
167 |
),
|
|
|
168 |
'modules' => $this->jetpack_boost->get_available_modules(),
|
169 |
'config' => $this->jetpack_boost->config()->get_data(),
|
|
|
170 |
'locale' => get_locale(),
|
171 |
+
'site' => array(
|
172 |
+
'url' => get_site_url(),
|
173 |
+
'online' => ! ( new Status() )->is_offline_mode(),
|
174 |
+
'assetPath' => plugins_url( $internal_path, JETPACK_BOOST_PATH ),
|
175 |
+
),
|
176 |
);
|
177 |
|
178 |
// Give each module an opportunity to define extra constants.
|
192 |
public function plugin_page_settings_link( $links ) {
|
193 |
$settings_link = '<a href="' . admin_url( '?page=jetpack-boost' ) . '">' . esc_html__( 'Settings', 'jetpack-boost' ) . '</a>';
|
194 |
array_unshift( $links, $settings_link );
|
195 |
+
|
196 |
return $links;
|
197 |
}
|
198 |
|
219 |
* @return bool
|
220 |
*/
|
221 |
public function check_for_permissions() {
|
|
|
|
|
|
|
|
|
222 |
return current_user_can( 'manage_options' );
|
223 |
}
|
224 |
|
app/assets/dist/admin-style.css
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
@charset "UTF-8";#jb-settings *{box-sizing:border-box}.jb-settings{--wp-admin-theme-color:#008710;--wp-admin-theme-link-color:#1d2327;--wp-admin-theme-color-darker-10:#007117;--wp-admin-theme-color-darker-20:#005b18}.jb-settings a{color:var(--wp-admin-theme-link-color)}.jb-settings .components-button.is-primary{background-color:#008710;border-radius:4px;font-weight:600;margin-bottom:1.5rem}.jb-settings .components-button.is-link{color:var(--wp-admin-theme-link-color)}.jb-settings h1,.jb-settings h2,.jb-settings h3,.jb-settings h4,.jb-settings h5,.jb-settings h6{color:#000;line-height:1.3}.jb-settings p{color:#2c3338}.toplevel_page_jetpack-boost #wpcontent{padding-left:0;background:#fff;min-height:100vh}.jb-settings,.jb-settings p{font-size:16px}.jb-section,.jb-section--alt{margin-bottom:4em}.jb-section--alt{padding-top:4em;padding-bottom:4em;background-color:#f9f9f6}.jb-container,.jb-container--narrow{width:80%;margin-left:auto;margin-right:auto}.jb-container--narrow{max-width:744px}.jb-settings-header{display:flex;justify-content:space-between;height:120px;align-items:center;position:relative}.jb-settings-header__logo{display:flex;height:27px}@media (min-width:992px){.jb-settings-header__logo{height:32px}}.jb-settings-footer{display:flex;justify-content:space-between;align-items:center}@media (max-width:767px){.jb-settings-footer{flex-direction:column;justify-content:flex-start}}.jb-signature--jetpack{margin-left:7px;font-weight:600;font-size:12px;color:#23282d;display:flex;align-items:center}.jb-signature--jetpack svg{margin-right:.5em}.jb-signature--automattic{transform:translateY(-2px)}.jb-warning-modal__actions{display:flex;justify-content:flex-end}.jb-warning-modal__actions>div{display:flex;flex-direction:column}.jb-warning-modal__actions>div>div{display:flex}.jb-warning-modal__actions button{margin-left:auto}.jb-warning-modal__actions button.confirm{margin-left:10px}.jb-warning-modal__actions .checkbox{font-size:12px;margin-top:10px}.jb-connection{display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start;padding:0 20px}@media (min-width:992px){.jb-connection{justify-content:center;align-items:center;text-align:center;margin-top:50px;padding:0}}@media (min-width:992px){.jb-connection__header{width:552px}}.jb-connection__active{display:flex;flex-direction:column;margin-bottom:35px}@media (min-width:992px){.jb-connection__active{flex-direction:row}}.jb-connection__active__left-side{flex-basis:100%}@media (min-width:992px){.jb-connection__active__left-side{flex-basis:66%;padding-right:30px}}.jb-connection__active__right-side{flex-basis:100%;margin-top:35px}@media (min-width:992px){.jb-connection__active__right-side{flex-basis:34%;margin-top:0;padding-top:12px}}.jb-connection .checklist{border:1px solid #dcdcde;display:grid;grid-template-columns:1fr 1fr;grid-gap:24px;padding:40px;border-radius:4px;margin-bottom:2rem}.jb-connection .checklist__item{display:flex;justify-content:flex-start}.jb-connection .checklist svg{fill:#008710}.jb-connection .checklist span{margin-left:12px;line-height:24px;color:#444}.jb-connection__iframe{width:100%;height:342px;padding-top:0;box-sizing:border-box;border-radius:4px}.jb-connection__iframe__spinner{display:flex;justify-content:center;align-items:center;padding:0}.jb-connection__iframe__spinner span{display:flex;min-width:300px;flex-direction:column;justify-content:center;align-items:center}.jb-connection__description{margin-bottom:36px;font-weight:400;line-height:24px;color:#444}.jb-connection__title{margin:0 0 24px;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-style:normal;font-weight:700;font-size:32px;line-height:40px;color:#23282d}@media (min-width:992px){.jb-connection__title{padding:0 70px}}.jb-connection-overlay{line-height:20px;text-align:center;margin-left:auto;margin-right:auto}@media (min-width:992px){.jb-connection-overlay{width:445px}}.jb-current-user{padding:11px 11px 17px;z-index:50;box-sizing:border-box;display:flex;flex-direction:column;border:1px solid transparent;border-radius:3px;background:#fff;position:absolute;right:-14px;top:25px}.jb-current-user__header{cursor:pointer;justify-content:flex-start}.jb-current-user__header,.jb-current-user__header__avatar{display:flex;align-items:center}.jb-current-user__header__avatar img{border-radius:50%;width:42px;height:42px}@media (min-width:768px){.jb-current-user__header__avatar{display:none}}.jb-current-user__header__name{display:none;align-items:center;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-size:16px;line-height:24px;font-weight:400;margin:auto 5px}@media (min-width:768px){.jb-current-user__header__name{display:flex}}.jb-current-user__header__arrow{display:flex;align-items:center;height:42px;color:#000;margin-left:auto}.jb-current-user__header__arrow i{width:12px;height:12px;font-size:12px;padding-top:2px}.jb-current-user__content{display:none;padding-top:20px;font-size:14px;line-height:20px;color:#000;max-width:180px}.jb-current-user__content__disconnect-info{display:flex;flex-direction:column}.jb-current-user__actions{display:none;padding-top:20px;font-size:14px}.jb-current-user__actions button.is-small{font-size:12px;line-height:18px;height:26px}.jb-current-user__actions button.is-secondary{color:#000;display:flex;align-items:center;text-align:center;box-shadow:inset 0 0 0 1px #000;border-radius:3px}.jb-current-user__actions button.is-secondary:hover:not(:disabled){color:#000;box-shadow:inset 0 0 0 1px #000}.jb-current-user.expanded{border:1px solid #ccd0d4;background:#fff}.jb-current-user.expanded .jb-current-user__actions,.jb-current-user.expanded .jb-current-user__content,.jb-current-user.expanded .jb-current-user__header__avatar,.jb-current-user.expanded .jb-current-user__header__name{display:flex}.jb-feature-toggle{margin-bottom:2em;display:flex;margin-left:auto;margin-right:auto}.jb-feature-toggle a{text-decoration:underline}.jb-feature-toggle h2{font-size:22px;margin-top:0}.jb-feature-toggle__toggle{transform:translateY(5px);margin-right:2em}.jb-benchmarks{margin:0 auto}.jb-benchmarks__title{font-size:20px;font-weight:700;margin-bottom:3em}@media (min-width:992px){.jb-benchmarks__items{display:grid;grid-template-columns:1fr 1fr;grid-gap:2em}}.jb-benchmarks .item{margin-bottom:2em}@media (min-width:768px){.jb-benchmarks .item{display:grid;grid-template-columns:80px 1fr;grid-gap:1em}}.jb-benchmarks .item__rate{font-size:24px;font-weight:400;line-height:30px;color:#23282d}@media (min-width:992px){.jb-benchmarks .item__rate{flex-basis:20%;font-size:36px;line-height:43px}}.jb-benchmarks .item__description{flex-basis:70%;font-weight:400;line-height:24px;color:#444}@media (min-width:992px){.jb-benchmarks .item__description{flex-basis:80%}}.jb-benchmarks .item__description a{color:#1d2327;text-decoration:underline}.jb-site-score__header{font-size:32px;font-weight:700;line-height:1.2}@media (max-width:767px){.jb-site-score__header{font-size:27px}}.jb-site-score__top{display:flex;justify-content:space-between;align-items:center;color:#000;margin-bottom:2em}.jb-site-score button,.jb-site-score button.components-button.is-link:hover{color:#1d2327}.jb-site-score button svg{margin:4px 4px 2px 0;fill:#008710}.jb-site-score--error{margin-top:1em}@media (max-width:767px){.jb-site-score--error .jb-site-score{display:none}}.jb-site-score--error .jb-score-bar__filler,.jb-site-score--error .jb-score-bar__loading{display:none}.jb-site-score--error .jb-score-bar__label{opacity:.8;color:#646970}.jb-site-score--error svg{fill:#646970}.jb-score-bar__label,.jb-score-bar__loading,.jb-score-bar__score{background-color:#fff;border-radius:42px;height:42px;display:flex;align-items:center;border:2px solid transparent}.jb-score-bar{width:100%;margin-bottom:1rem;display:flex}@media (max-width:767px){.jb-score-bar{flex-direction:column}.jb-score-bar__label{background-color:transparent}}.jb-score-bar__loading{width:42px;display:flex;align-items:center;justify-content:center}.jb-score-bar__label{display:grid;grid-template-columns:24px 1fr;grid-column-gap:10px;justify-content:center;font-size:14px;position:relative;z-index:50}@media (min-width:768px){.jb-score-bar__label{padding-left:15px;padding-right:15px;width:200px}}.jb-score-bar__score{border-radius:100%;font-weight:700;width:42px;justify-content:center;position:absolute;right:-1px;height:42px}.jb-score-bar__bounds{background-color:#f1f1f1;border-radius:21px;display:flex;height:42px;width:100%;max-width:100%;position:relative;z-index:40}@media (min-width:768px){.jb-score-bar__bounds{width:calc(100% + 42px);margin-left:-42px}}.jb-score-bar__filler{display:flex;min-width:85px;justify-content:flex-end;border-radius:42px;transition:width .3s ease-in-out;will-change:width;width:0;position:relative}@media (max-width:767px){.jb-score-bar__filler{min-width:43px}}.jb-score-bar .fill-loading{background-color:#fff}.jb-score-bar .fill-good{background-color:#008710}.jb-score-bar .fill-mediocre{background-color:#ff8c00}.jb-score-bar .fill-bad{background-color:#f94017}.jb-critical-css-progress__label{color:#787c82;margin-bottom:1em;display:block;font-size:14px;line-height:20px}.jb-critical-css__meta{color:#50575e;font-size:14px;line-height:20px;display:flex;flex-direction:row;align-items:center}@media (max-width:767px){.jb-critical-css__meta{display:block}}.jb-critical-css__meta div{margin-right:5px}.jb-critical-css__meta button{font-size:14px;color:#1d2327}.jb-critical-css__meta button.components-button.is-link{margin-left:8px}.jb-critical-css__meta button.components-button.is-link:hover{color:#1d2327}@media (max-width:767px){.jb-critical-css__meta button.components-button.is-link{margin-left:0}}.jb-critical-css__meta button svg{margin:4px 4px 2px 0;fill:#008710}.jb-progress-bar{height:20px;border-radius:50px;background-color:#f1f1f1}.jb-progress-bar__filler{height:100%;width:0;will-change:width;transition:width .7s ease-in-out;border-radius:50px;background-color:#069e08}.jb-error{position:relative;padding:25px 0}.jb-error p{margin:.25em 0;color:#d63638}.jb-error:before{content:"•";color:#d63638;font-size:30px;position:absolute;left:-50px;top:32px;line-height:0}.jb-error .jb-error__description{color:#d63638;font-weight:700;margin-bottom:.5em}.jb-error .jb-error__message{list-style-type:disc;color:#d63638}.jb-error .action{color:#1d2327;font-weight:700}.jb-error--offset{padding-left:2em}.jb-error--offset:before{left:0}#jb-admin-settings .general-notices{position:absolute;top:30px;right:0;z-index:3}.tab-panel-separator{margin:48px auto;border:0;border-top:1px solid #dcdcde}
|
|
app/assets/dist/admin.js
DELETED
@@ -1,68 +0,0 @@
|
|
1 |
-
var JetpackBoostLib=(window.webpackJsonpJetpackBoostLib=window.webpackJsonpJetpackBoostLib||[]).push([["admin"],{"+/L5":function(e,t,n){var r=n("t1UP").isCustomProperty,i=n("vd7W").TYPE,o=n("4njK").mode,a=i.Ident,s=i.Hash,l=i.Colon,u=i.Semicolon,c=i.Delim,d=i.WhiteSpace;function p(e){return this.Raw(e,o.exclamationMarkOrSemicolon,!0)}function f(e){return this.Raw(e,o.exclamationMarkOrSemicolon,!1)}function m(){var e=this.scanner.tokenIndex,t=this.Value();return"Raw"!==t.type&&!1===this.scanner.eof&&this.scanner.tokenType!==u&&!1===this.scanner.isDelim(33)&&!1===this.scanner.isBalanceEdge(e)&&this.error(),t}function h(){var e=this.scanner.tokenStart;if(this.scanner.tokenType===c)switch(this.scanner.source.charCodeAt(this.scanner.tokenStart)){case 42:case 36:case 43:case 35:case 38:this.scanner.next();break;case 47:this.scanner.next(),this.scanner.isDelim(47)&&this.scanner.next()}return this.scanner.tokenType===s?this.eat(s):this.eat(a),this.scanner.substrToCursor(e)}function g(){this.eat(c),this.scanner.skipSC();var e=this.consume(a);return"important"===e||e}e.exports={name:"Declaration",structure:{important:[Boolean,String],property:String,value:["Value","Raw"]},parse:function(){var e,t=this.scanner.tokenStart,n=this.scanner.tokenIndex,i=h.call(this),o=r(i),a=o?this.parseCustomProperty:this.parseValue,s=o?f:p,c=!1;this.scanner.skipSC(),this.eat(l);const v=this.scanner.tokenIndex;if(o||this.scanner.skipSC(),e=a?this.parseWithFallback(m,s):s.call(this,this.scanner.tokenIndex),o&&"Value"===e.type&&e.children.isEmpty())for(let t=v-this.scanner.tokenIndex;t<=0;t++)if(this.scanner.lookupType(t)===d){e.children.appendData({type:"WhiteSpace",loc:null,value:" "});break}return this.scanner.isDelim(33)&&(c=g.call(this),this.scanner.skipSC()),!1===this.scanner.eof&&this.scanner.tokenType!==u&&!1===this.scanner.isBalanceEdge(n)&&this.error(),{type:"Declaration",loc:this.getLocation(t,this.scanner.tokenStart),important:c,property:i,value:e}},generate:function(e){this.chunk(e.property),this.chunk(":"),this.node(e.value),e.important&&this.chunk(!0===e.important?"!important":"!"+e.important)},walkContext:"declaration"}},"+Kd2":function(e,t,n){var r=n("vd7W").TYPE,i=n("4njK").mode,o=r.Comma,a=r.WhiteSpace;e.exports=function(){var e=this.createList();if(this.scanner.skipSC(),e.push(this.Identifier()),this.scanner.skipSC(),this.scanner.tokenType===o){e.push(this.Operator());const t=this.scanner.tokenIndex,n=this.parseCustomProperty?this.Value(null):this.Raw(this.scanner.tokenIndex,i.exclamationMarkOrSemicolon,!1);if("Value"===n.type&&n.children.isEmpty())for(let e=t-this.scanner.tokenIndex;e<=0;e++)if(this.scanner.lookupType(e)===a){n.children.appendData({type:"WhiteSpace",loc:null,value:" "});break}e.push(n)}return e}},"+OUa":function(e,t,n){var r=n("4dtu").shallow,i=n("dzo0"),o=n("Ttul");function a(e){for(var t=0,n=e.length;t<n;t++){var r=e[t][1];if("inherit"!=r&&r!=o.COMMA&&r!=o.FORWARD_SLASH)return!1}return!0}function s(e){var t=e.components,n=t[0].value[0],r=t[1].value[0],i=t[2].value[0],o=t[3].value[0];return n[1]==r[1]&&n[1]==i[1]&&n[1]==o[1]?[n]:n[1]==i[1]&&r[1]==o[1]?[n,r]:r[1]==o[1]?[n,r,i]:[n,r,i,o]}function l(e,t,n){var r,i,o;for(i=0,o=e.length;i<o;i++)if((r=e[i]).name==n&&r.value[0][1]==t[n].defaultValue)return!0;return!1}e.exports={background:function(e,t,n){var r,s,l=e.components,u=[];function c(e){Array.prototype.unshift.apply(u,e.value)}function d(e){var n=t[e.name];return n.doubleValues&&1==n.defaultValue.length?e.value[0][1]==n.defaultValue[0]&&(!e.value[1]||e.value[1][1]==n.defaultValue[0]):n.doubleValues&&1!=n.defaultValue.length?e.value[0][1]==n.defaultValue[0]&&(e.value[1]?e.value[1][1]:e.value[0][1])==n.defaultValue[1]:e.value[0][1]==n.defaultValue}for(var p=l.length-1;p>=0;p--){var f=l[p],m=d(f);if("background-clip"==f.name){var h=l[p-1],g=d(h);s=!(r=f.value[0][1]==h.value[0][1])&&(g&&!m||!g&&!m||!g&&m&&f.value[0][1]!=h.value[0][1]),r?c(h):s&&(c(f),c(h)),p--}else if("background-size"==f.name){var v=l[p-1],y=d(v);s=!(r=!y&&m)&&(y&&!m||!y&&!m),r?c(v):s?(c(f),u.unshift([i.PROPERTY_VALUE,o.FORWARD_SLASH]),c(v)):1==v.value.length&&c(v),p--}else{if(m||t[f.name].multiplexLastOnly&&!n)continue;c(f)}}return 0===u.length&&1==e.value.length&&"0"==e.value[0][1]&&u.push(e.value[0]),0===u.length&&u.push([i.PROPERTY_VALUE,t[e.name].defaultValue]),a(u)?[u[0]]:u},borderRadius:function(e,t){if(e.multiplex){for(var n=r(e),a=r(e),l=0;l<4;l++){var u=e.components[l],c=r(e);c.value=[u.value[0]],n.components.push(c);var d=r(e);d.value=[u.value[1]||u.value[0]],a.components.push(d)}var p=s(n),f=s(a);return p.length!=f.length||p[0][1]!=f[0][1]||p.length>1&&p[1][1]!=f[1][1]||p.length>2&&p[2][1]!=f[2][1]||p.length>3&&p[3][1]!=f[3][1]?p.concat([[i.PROPERTY_VALUE,o.FORWARD_SLASH]]).concat(f):p}return s(e)},font:function(e,t){var n,r=e.components,s=[],l=0,u=0;if(0===e.value[0][1].indexOf(o.INTERNAL))return e.value[0][1]=e.value[0][1].substring(o.INTERNAL.length),e.value;for(;l<4;)(n=r[l]).value[0][1]!=t[n.name].defaultValue&&Array.prototype.push.apply(s,n.value),l++;for(Array.prototype.push.apply(s,r[l].value),r[++l].value[0][1]!=t[r[l].name].defaultValue&&(Array.prototype.push.apply(s,[[i.PROPERTY_VALUE,o.FORWARD_SLASH]]),Array.prototype.push.apply(s,r[l].value)),l++;r[l].value[u];)s.push(r[l].value[u]),r[l].value[u+1]&&s.push([i.PROPERTY_VALUE,o.COMMA]),u++;return a(s)?[s[0]]:s},fourValues:s,multiplex:function(e){return function(t,n){if(!t.multiplex)return e(t,n,!0);var a,s,l=0,u=[],c={};for(a=0,s=t.components[0].value.length;a<s;a++)t.components[0].value[a][1]==o.COMMA&&l++;for(a=0;a<=l;a++){for(var d=r(t),p=0,f=t.components.length;p<f;p++){var m=t.components[p],h=r(m);d.components.push(h);for(var g=c[h.name]||0,v=m.value.length;g<v;g++){if(m.value[g][1]==o.COMMA){c[h.name]=g+1;break}h.value.push(m.value[g])}}var y=e(d,n,a==l);Array.prototype.push.apply(u,y),a<l&&u.push([i.PROPERTY_VALUE,o.COMMA])}return u}},withoutDefaults:function(e,t){for(var n=e.components,r=[],o=n.length-1;o>=0;o--){var s=n[o],u=t[s.name];(s.value[0][1]!=u.defaultValue||"keepUnlessDefault"in u&&!l(n,t,u.keepUnlessDefault))&&r.unshift(s.value[0])}return 0===r.length&&r.push([i.PROPERTY_VALUE,t[e.name].defaultValue]),a(r)?[r[0]]:r}}},"+QJf":function(e,t,n){var r=n("J/fw"),i=n("yF14"),o=n("MFAA"),a=n("fn/D"),s=n("Nwoi").OptimizationLevel,l=n("cj6p").body,u=n("cj6p").rules,c=n("dzo0");e.exports=function(e,t){for(var n=[null,[],[]],d=t.options,p=d.compatibility.selectors.adjacentSpace,f=d.level[s.One].selectorsSortingMethod,m=d.compatibility.selectors.mergeablePseudoClasses,h=d.compatibility.selectors.mergeablePseudoElements,g=d.compatibility.selectors.mergeLimit,v=d.compatibility.selectors.multiplePseudoMerging,y=0,b=e.length;y<b;y++){var S=e[y];S[0]==c.RULE?n[0]==c.RULE&&u(S[1])==u(n[1])?(Array.prototype.push.apply(n[2],S[2]),i(n[2],!0,!0,t),S[2]=[]):n[0]==c.RULE&&l(S[2])==l(n[2])&&r(u(S[1]),m,h,v)&&r(u(n[1]),m,h,v)&&n[1].length<g?(n[1]=a(n[1].concat(S[1]),!1,p,!1,t.warnings),n[1]=n.length>1?o(n[1],f):n[1],S[2]=[]):n=S:n=[null,[],[]]}}},"+nbL":function(e,t,n){"use strict";var r=Object.assign||function(e){for(var t,n=1;n<arguments.length;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e};Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e){var t=e.size,n=void 0===t?24:t,i=e.onClick,o=(e.icon,e.className),s=function(e,t){var n={};for(var r in e)0<=t.indexOf(r)||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}(e,["size","onClick","icon","className"]),l=["gridicon","gridicons-computer",o,!1,!1,!1].filter(Boolean).join(" ");return a.default.createElement("svg",r({className:l,height:n,width:n,onClick:i},s,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}),a.default.createElement("g",null,a.default.createElement("path",{d:"M20 2H4c-1.104 0-2 .896-2 2v12c0 1.104.896 2 2 2h6v2H7v2h10v-2h-3v-2h6c1.104 0 2-.896 2-2V4c0-1.104-.896-2-2-2zm0 14H4V4h16v12z"})))};var i,o=n("q1tI"),a=(i=o)&&i.__esModule?i:{default:i};e.exports=t.default},"+qE3":function(e,t,n){"use strict";var r,i="object"==typeof Reflect?Reflect:null,o=i&&"function"==typeof i.apply?i.apply:function(e,t,n){return Function.prototype.apply.call(e,t,n)};r=i&&"function"==typeof i.ownKeys?i.ownKeys:Object.getOwnPropertySymbols?function(e){return Object.getOwnPropertyNames(e).concat(Object.getOwnPropertySymbols(e))}:function(e){return Object.getOwnPropertyNames(e)};var a=Number.isNaN||function(e){return e!=e};function s(){s.init.call(this)}e.exports=s,e.exports.once=function(e,t){return new Promise((function(n,r){function i(n){e.removeListener(t,o),r(n)}function o(){"function"==typeof e.removeListener&&e.removeListener("error",i),n([].slice.call(arguments))}v(e,t,o,{once:!0}),"error"!==t&&function(e,t,n){"function"==typeof e.on&&v(e,"error",t,n)}(e,i,{once:!0})}))},s.EventEmitter=s,s.prototype._events=void 0,s.prototype._eventsCount=0,s.prototype._maxListeners=void 0;var l=10;function u(e){if("function"!=typeof e)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof e)}function c(e){return void 0===e._maxListeners?s.defaultMaxListeners:e._maxListeners}function d(e,t,n,r){var i,o,a,s;if(u(n),void 0===(o=e._events)?(o=e._events=Object.create(null),e._eventsCount=0):(void 0!==o.newListener&&(e.emit("newListener",t,n.listener?n.listener:n),o=e._events),a=o[t]),void 0===a)a=o[t]=n,++e._eventsCount;else if("function"==typeof a?a=o[t]=r?[n,a]:[a,n]:r?a.unshift(n):a.push(n),(i=c(e))>0&&a.length>i&&!a.warned){a.warned=!0;var l=new Error("Possible EventEmitter memory leak detected. "+a.length+" "+String(t)+" listeners added. Use emitter.setMaxListeners() to increase limit");l.name="MaxListenersExceededWarning",l.emitter=e,l.type=t,l.count=a.length,s=l,console&&console.warn&&console.warn(s)}return e}function p(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,0===arguments.length?this.listener.call(this.target):this.listener.apply(this.target,arguments)}function f(e,t,n){var r={fired:!1,wrapFn:void 0,target:e,type:t,listener:n},i=p.bind(r);return i.listener=n,r.wrapFn=i,i}function m(e,t,n){var r=e._events;if(void 0===r)return[];var i=r[t];return void 0===i?[]:"function"==typeof i?n?[i.listener||i]:[i]:n?function(e){for(var t=new Array(e.length),n=0;n<t.length;++n)t[n]=e[n].listener||e[n];return t}(i):g(i,i.length)}function h(e){var t=this._events;if(void 0!==t){var n=t[e];if("function"==typeof n)return 1;if(void 0!==n)return n.length}return 0}function g(e,t){for(var n=new Array(t),r=0;r<t;++r)n[r]=e[r];return n}function v(e,t,n,r){if("function"==typeof e.on)r.once?e.once(t,n):e.on(t,n);else{if("function"!=typeof e.addEventListener)throw new TypeError('The "emitter" argument must be of type EventEmitter. Received type '+typeof e);e.addEventListener(t,(function i(o){r.once&&e.removeEventListener(t,i),n(o)}))}}Object.defineProperty(s,"defaultMaxListeners",{enumerable:!0,get:function(){return l},set:function(e){if("number"!=typeof e||e<0||a(e))throw new RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received '+e+".");l=e}}),s.init=function(){void 0!==this._events&&this._events!==Object.getPrototypeOf(this)._events||(this._events=Object.create(null),this._eventsCount=0),this._maxListeners=this._maxListeners||void 0},s.prototype.setMaxListeners=function(e){if("number"!=typeof e||e<0||a(e))throw new RangeError('The value of "n" is out of range. It must be a non-negative number. Received '+e+".");return this._maxListeners=e,this},s.prototype.getMaxListeners=function(){return c(this)},s.prototype.emit=function(e){for(var t=[],n=1;n<arguments.length;n++)t.push(arguments[n]);var r="error"===e,i=this._events;if(void 0!==i)r=r&&void 0===i.error;else if(!r)return!1;if(r){var a;if(t.length>0&&(a=t[0]),a instanceof Error)throw a;var s=new Error("Unhandled error."+(a?" ("+a.message+")":""));throw s.context=a,s}var l=i[e];if(void 0===l)return!1;if("function"==typeof l)o(l,this,t);else{var u=l.length,c=g(l,u);for(n=0;n<u;++n)o(c[n],this,t)}return!0},s.prototype.addListener=function(e,t){return d(this,e,t,!1)},s.prototype.on=s.prototype.addListener,s.prototype.prependListener=function(e,t){return d(this,e,t,!0)},s.prototype.once=function(e,t){return u(t),this.on(e,f(this,e,t)),this},s.prototype.prependOnceListener=function(e,t){return u(t),this.prependListener(e,f(this,e,t)),this},s.prototype.removeListener=function(e,t){var n,r,i,o,a;if(u(t),void 0===(r=this._events))return this;if(void 0===(n=r[e]))return this;if(n===t||n.listener===t)0==--this._eventsCount?this._events=Object.create(null):(delete r[e],r.removeListener&&this.emit("removeListener",e,n.listener||t));else if("function"!=typeof n){for(i=-1,o=n.length-1;o>=0;o--)if(n[o]===t||n[o].listener===t){a=n[o].listener,i=o;break}if(i<0)return this;0===i?n.shift():function(e,t){for(;t+1<e.length;t++)e[t]=e[t+1];e.pop()}(n,i),1===n.length&&(r[e]=n[0]),void 0!==r.removeListener&&this.emit("removeListener",e,a||t)}return this},s.prototype.off=s.prototype.removeListener,s.prototype.removeAllListeners=function(e){var t,n,r;if(void 0===(n=this._events))return this;if(void 0===n.removeListener)return 0===arguments.length?(this._events=Object.create(null),this._eventsCount=0):void 0!==n[e]&&(0==--this._eventsCount?this._events=Object.create(null):delete n[e]),this;if(0===arguments.length){var i,o=Object.keys(n);for(r=0;r<o.length;++r)"removeListener"!==(i=o[r])&&this.removeAllListeners(i);return this.removeAllListeners("removeListener"),this._events=Object.create(null),this._eventsCount=0,this}if("function"==typeof(t=n[e]))this.removeListener(e,t);else if(void 0!==t)for(r=t.length-1;r>=0;r--)this.removeListener(e,t[r]);return this},s.prototype.listeners=function(e){return m(this,e,!0)},s.prototype.rawListeners=function(e){return m(this,e,!1)},s.listenerCount=function(e,t){return"function"==typeof e.listenerCount?e.listenerCount(t):h.call(e,t)},s.prototype.listenerCount=h,s.prototype.eventNames=function(){return this._eventsCount>0?r(this._events):[]}},"+wdc":function(e,t,n){"use strict";
|
2 |
-
/** @license React v0.19.1
|
3 |
-
* scheduler.production.min.js
|
4 |
-
*
|
5 |
-
* Copyright (c) Facebook, Inc. and its affiliates.
|
6 |
-
*
|
7 |
-
* This source code is licensed under the MIT license found in the
|
8 |
-
* LICENSE file in the root directory of this source tree.
|
9 |
-
*/var r,i,o,a,s;if("undefined"==typeof window||"function"!=typeof MessageChannel){var l=null,u=null,c=function(){if(null!==l)try{var e=t.unstable_now();l(!0,e),l=null}catch(e){throw setTimeout(c,0),e}},d=Date.now();t.unstable_now=function(){return Date.now()-d},r=function(e){null!==l?setTimeout(r,0,e):(l=e,setTimeout(c,0))},i=function(e,t){u=setTimeout(e,t)},o=function(){clearTimeout(u)},a=function(){return!1},s=t.unstable_forceFrameRate=function(){}}else{var p=window.performance,f=window.Date,m=window.setTimeout,h=window.clearTimeout;if("undefined"!=typeof console){var g=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://fb.me/react-polyfills"),"function"!=typeof g&&console.error("This browser doesn't support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https://fb.me/react-polyfills")}if("object"==typeof p&&"function"==typeof p.now)t.unstable_now=function(){return p.now()};else{var v=f.now();t.unstable_now=function(){return f.now()-v}}var y=!1,b=null,S=-1,x=5,w=0;a=function(){return t.unstable_now()>=w},s=function(){},t.unstable_forceFrameRate=function(e){0>e||125<e?console.error("forceFrameRate takes a positive int between 0 and 125, forcing framerates higher than 125 fps is not unsupported"):x=0<e?Math.floor(1e3/e):5};var k=new MessageChannel,C=k.port2;k.port1.onmessage=function(){if(null!==b){var e=t.unstable_now();w=e+x;try{b(!0,e)?C.postMessage(null):(y=!1,b=null)}catch(e){throw C.postMessage(null),e}}else y=!1},r=function(e){b=e,y||(y=!0,C.postMessage(null))},i=function(e,n){S=m((function(){e(t.unstable_now())}),n)},o=function(){h(S),S=-1}}function O(e,t){var n=e.length;e.push(t);e:for(;;){var r=n-1>>>1,i=e[r];if(!(void 0!==i&&0<T(i,t)))break e;e[r]=t,e[n]=i,n=r}}function _(e){return void 0===(e=e[0])?null:e}function E(e){var t=e[0];if(void 0!==t){var n=e.pop();if(n!==t){e[0]=n;e:for(var r=0,i=e.length;r<i;){var o=2*(r+1)-1,a=e[o],s=o+1,l=e[s];if(void 0!==a&&0>T(a,n))void 0!==l&&0>T(l,a)?(e[r]=l,e[s]=n,r=s):(e[r]=a,e[o]=n,r=o);else{if(!(void 0!==l&&0>T(l,n)))break e;e[r]=l,e[s]=n,r=s}}}return t}return null}function T(e,t){var n=e.sortIndex-t.sortIndex;return 0!==n?n:e.id-t.id}var A=[],P=[],R=1,z=null,L=3,j=!1,M=!1,B=!1;function W(e){for(var t=_(P);null!==t;){if(null===t.callback)E(P);else{if(!(t.startTime<=e))break;E(P),t.sortIndex=t.expirationTime,O(A,t)}t=_(P)}}function N(e){if(B=!1,W(e),!M)if(null!==_(A))M=!0,r(I);else{var t=_(P);null!==t&&i(N,t.startTime-e)}}function I(e,n){M=!1,B&&(B=!1,o()),j=!0;var r=L;try{for(W(n),z=_(A);null!==z&&(!(z.expirationTime>n)||e&&!a());){var s=z.callback;if(null!==s){z.callback=null,L=z.priorityLevel;var l=s(z.expirationTime<=n);n=t.unstable_now(),"function"==typeof l?z.callback=l:z===_(A)&&E(A),W(n)}else E(A);z=_(A)}if(null!==z)var u=!0;else{var c=_(P);null!==c&&i(N,c.startTime-n),u=!1}return u}finally{z=null,L=r,j=!1}}function D(e){switch(e){case 1:return-1;case 2:return 250;case 5:return 1073741823;case 4:return 1e4;default:return 5e3}}var U=s;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(){M||j||(M=!0,r(I))},t.unstable_getCurrentPriorityLevel=function(){return L},t.unstable_getFirstCallbackNode=function(){return _(A)},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=U,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,n,a){var s=t.unstable_now();if("object"==typeof a&&null!==a){var l=a.delay;l="number"==typeof l&&0<l?s+l:s,a="number"==typeof a.timeout?a.timeout:D(e)}else a=D(e),l=s;return e={id:R++,callback:n,priorityLevel:e,startTime:l,expirationTime:a=l+a,sortIndex:-1},l>s?(e.sortIndex=l,O(P,e),null===_(A)&&e===_(P)&&(B?o():B=!0,i(N,l-s))):(e.sortIndex=a,O(A,e),M||j||(M=!0,r(I))),e},t.unstable_shouldYield=function(){var e=t.unstable_now();W(e);var n=_(A);return n!==z&&null!==z&&null!==n&&null!==n.callback&&n.startTime<=e&&n.expirationTime<z.expirationTime||a()},t.unstable_wrapCallback=function(e){var t=L;return function(){var n=L;L=t;try{return e.apply(this,arguments)}finally{L=n}}}},"/+5V":function(e,t){function n(e){function t(e){return null!==e&&("Type"===e.type||"Property"===e.type||"Keyword"===e.type)}var n=null;return null!==this.matched&&function r(i){if(Array.isArray(i.match)){for(var o=0;o<i.match.length;o++)if(r(i.match[o]))return t(i.syntax)&&n.unshift(i.syntax),!0}else if(i.node===e)return n=t(i.syntax)?[i.syntax]:[],!0;return!1}(this.matched),n}function r(e,t,r){var i=n.call(e,t);return null!==i&&i.some(r)}e.exports={getTrace:n,isType:function(e,t){return r(this,e,(function(e){return"Type"===e.type&&e.name===t}))},isProperty:function(e,t){return r(this,e,(function(e){return"Property"===e.type&&e.name===t}))},isKeyword:function(e){return r(this,e,(function(e){return"Keyword"===e.type}))}}},"/BcF":function(e,t){e.exports={name:"Selector",structure:{children:[["TypeSelector","IdSelector","ClassSelector","AttributeSelector","PseudoClassSelector","PseudoElementSelector","Combinator","WhiteSpace"]]},parse:function(){var e=this.readSequence(this.scope.Selector);return null===this.getFirstListNode(e)&&this.error("Selector is expected"),{type:"Selector",loc:this.getLocationFromList(e),children:e}},generate:function(e){this.children(e)}}},"/slF":function(e,t,n){var r=n("vd7W").isDigit,i=n("vd7W").cmpChar,o=n("vd7W").TYPE,a=o.Delim,s=o.WhiteSpace,l=o.Comment,u=o.Ident,c=o.Number,d=o.Dimension;function p(e,t){return null!==e&&e.type===a&&e.value.charCodeAt(0)===t}function f(e,t,n){for(;null!==e&&(e.type===s||e.type===l);)e=n(++t);return t}function m(e,t,n,i){if(!e)return 0;var o=e.value.charCodeAt(t);if(43===o||45===o){if(n)return 0;t++}for(;t<e.value.length;t++)if(!r(e.value.charCodeAt(t)))return 0;return i+1}function h(e,t,n){var r=!1,i=f(e,t,n);if(null===(e=n(i)))return t;if(e.type!==c){if(!p(e,43)&&!p(e,45))return t;if(r=!0,i=f(n(++i),i,n),null===(e=n(i))&&e.type!==c)return 0}if(!r){var o=e.value.charCodeAt(0);if(43!==o&&45!==o)return 0}return m(e,r?0:1,r,i)}e.exports=function(e,t){var n=0;if(!e)return 0;if(e.type===c)return m(e,0,!1,n);if(e.type===u&&45===e.value.charCodeAt(0)){if(!i(e.value,1,110))return 0;switch(e.value.length){case 2:return h(t(++n),n,t);case 3:return 45!==e.value.charCodeAt(2)?0:(n=f(t(++n),n,t),m(e=t(n),0,!0,n));default:return 45!==e.value.charCodeAt(2)?0:m(e,3,!0,n)}}else if(e.type===u||p(e,43)&&t(n+1).type===u){if(e.type!==u&&(e=t(++n)),null===e||!i(e.value,0,110))return 0;switch(e.value.length){case 1:return h(t(++n),n,t);case 2:return 45!==e.value.charCodeAt(1)?0:(n=f(t(++n),n,t),m(e=t(n),0,!0,n));default:return 45!==e.value.charCodeAt(1)?0:m(e,2,!0,n)}}else if(e.type===d){for(var o=e.value.charCodeAt(0),a=43===o||45===o?1:0,s=a;s<e.value.length&&r(e.value.charCodeAt(s));s++);return s===a?0:i(e.value,s,110)?s+1===e.value.length?h(t(++n),n,t):45!==e.value.charCodeAt(s+1)?0:s+2===e.value.length?(n=f(t(++n),n,t),m(e=t(n),0,!0,n)):m(e,s+2,!0,n):0}return 0}},0:function(e,t){},"06ho":function(e,t){e.exports={name:"Value",structure:{children:[[]]},parse:function(){var e=this.scanner.tokenStart,t=this.readSequence(this.scope.Value);return{type:"Value",loc:this.getLocation(e,this.scanner.tokenStart),children:t}},generate:function(e){this.children(e)}}},"0999":function(e,t,n){var r=n("MGdK");e.exports=function(e){return e||r}},"0GbM":function(e,t,n){const r=n("137P"),i=n("9PCU"),o=n("KaxQ"),a=n("gOT2"),s=/^\s*\|\s*/;function l(e,t){const n={};for(const t in e)n[t]=e[t].syntax||e[t];for(const r in t)r in e?t[r].syntax?n[r]=s.test(t[r].syntax)?n[r]+" "+t[r].syntax.trim():t[r].syntax:delete n[r]:t[r].syntax&&(n[r]=t[r].syntax.replace(s,""));return n}function u(e){const t={};for(const n in e)t[n]=e[n].syntax;return t}e.exports={types:l(o,a.syntaxes),atrules:function(e,t){const n={};for(const r in e){const i=t[r]&&t[r].descriptors||null;n[r]={prelude:r in t&&"prelude"in t[r]?t[r].prelude:e[r].prelude||null,descriptors:e[r].descriptors?l(e[r].descriptors,i||{}):i&&u(i)}}for(const r in t)hasOwnProperty.call(e,r)||(n[r]={prelude:t[r].prelude||null,descriptors:t[r].descriptors&&u(t[r].descriptors)});return n}(function(e){const t=Object.create(null);for(const n in e){const r=e[n];let i=null;if(r.descriptors){i=Object.create(null);for(const e in r.descriptors)i[e]=r.descriptors[e].syntax}t[n.substr(1)]={prelude:r.syntax.trim().match(/^@\S+\s+([^;\{]*)/)[1].trim()||null,descriptors:i}}return t}(r),a.atrules),properties:l(i,a.properties)}},"0uey":function(e,t,n){const{InternalError:r}=n("XQQa");class i{async runInPage(e,t,n,...i){throw new r({message:"Undefined interface method: BrowserInterface.runInPage()"})}async cleanup(){}async getCssIncludes(e){return await this.runInPage(e,null,i.innerGetCssIncludes)}static innerGetCssIncludes(e){return[...e.document.getElementsByTagName("link")].filter(e=>"stylesheet"===e.rel).reduce((e,t)=>(e[t.href]={media:t.media||null},e),{})}}e.exports=i},"0vxD":function(e,t,n){"use strict";e.exports=n("DUzY")},1:function(e,t){},"1+vA":function(e,t){var n=/^https:\/\//;e.exports=function(e){return n.test(e)}},"137P":function(e){e.exports=JSON.parse('{"@charset":{"syntax":"@charset \\"<charset>\\";","groups":["CSS Charsets"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/@charset"},"@counter-style":{"syntax":"@counter-style <counter-style-name> {\\n [ system: <counter-system>; ] ||\\n [ symbols: <counter-symbols>; ] ||\\n [ additive-symbols: <additive-symbols>; ] ||\\n [ negative: <negative-symbol>; ] ||\\n [ prefix: <prefix>; ] ||\\n [ suffix: <suffix>; ] ||\\n [ range: <range>; ] ||\\n [ pad: <padding>; ] ||\\n [ speak-as: <speak-as>; ] ||\\n [ fallback: <counter-style-name>; ]\\n}","interfaces":["CSSCounterStyleRule"],"groups":["CSS Counter Styles"],"descriptors":{"additive-symbols":{"syntax":"[ <integer> && <symbol> ]#","media":"all","initial":"n/a (required)","percentages":"no","computed":"asSpecified","order":"orderOfAppearance","status":"standard"},"fallback":{"syntax":"<counter-style-name>","media":"all","initial":"decimal","percentages":"no","computed":"asSpecified","order":"uniqueOrder","status":"standard"},"negative":{"syntax":"<symbol> <symbol>?","media":"all","initial":"\\"-\\" hyphen-minus","percentages":"no","computed":"asSpecified","order":"orderOfAppearance","status":"standard"},"pad":{"syntax":"<integer> && <symbol>","media":"all","initial":"0 \\"\\"","percentages":"no","computed":"asSpecified","order":"uniqueOrder","status":"standard"},"prefix":{"syntax":"<symbol>","media":"all","initial":"\\"\\"","percentages":"no","computed":"asSpecified","order":"uniqueOrder","status":"standard"},"range":{"syntax":"[ [ <integer> | infinite ]{2} ]# | auto","media":"all","initial":"auto","percentages":"no","computed":"asSpecified","order":"orderOfAppearance","status":"standard"},"speak-as":{"syntax":"auto | bullets | numbers | words | spell-out | <counter-style-name>","media":"all","initial":"auto","percentages":"no","computed":"asSpecified","order":"uniqueOrder","status":"standard"},"suffix":{"syntax":"<symbol>","media":"all","initial":"\\". \\"","percentages":"no","computed":"asSpecified","order":"uniqueOrder","status":"standard"},"symbols":{"syntax":"<symbol>+","media":"all","initial":"n/a (required)","percentages":"no","computed":"asSpecified","order":"orderOfAppearance","status":"standard"},"system":{"syntax":"cyclic | numeric | alphabetic | symbolic | additive | [ fixed <integer>? ] | [ extends <counter-style-name> ]","media":"all","initial":"symbolic","percentages":"no","computed":"asSpecified","order":"uniqueOrder","status":"standard"}},"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/@counter-style"},"@document":{"syntax":"@document [ <url> | url-prefix(<string>) | domain(<string>) | media-document(<string>) | regexp(<string>) ]# {\\n <group-rule-body>\\n}","interfaces":["CSSGroupingRule","CSSConditionRule"],"groups":["CSS Conditional Rules"],"status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/@document"},"@font-face":{"syntax":"@font-face {\\n [ font-family: <family-name>; ] ||\\n [ src: <src>; ] ||\\n [ unicode-range: <unicode-range>; ] ||\\n [ font-variant: <font-variant>; ] ||\\n [ font-feature-settings: <font-feature-settings>; ] ||\\n [ font-variation-settings: <font-variation-settings>; ] ||\\n [ font-stretch: <font-stretch>; ] ||\\n [ font-weight: <font-weight>; ] ||\\n [ font-style: <font-style>; ]\\n}","interfaces":["CSSFontFaceRule"],"groups":["CSS Fonts"],"descriptors":{"font-display":{"syntax":"[ auto | block | swap | fallback | optional ]","media":"visual","percentages":"no","initial":"auto","computed":"asSpecified","order":"uniqueOrder","status":"experimental"},"font-family":{"syntax":"<family-name>","media":"all","initial":"n/a (required)","percentages":"no","computed":"asSpecified","order":"uniqueOrder","status":"standard"},"font-feature-settings":{"syntax":"normal | <feature-tag-value>#","media":"all","initial":"normal","percentages":"no","computed":"asSpecified","order":"orderOfAppearance","status":"standard"},"font-variation-settings":{"syntax":"normal | [ <string> <number> ]#","media":"all","initial":"normal","percentages":"no","computed":"asSpecified","order":"orderOfAppearance","status":"standard"},"font-stretch":{"syntax":"<font-stretch-absolute>{1,2}","media":"all","initial":"normal","percentages":"no","computed":"asSpecified","order":"uniqueOrder","status":"standard"},"font-style":{"syntax":"normal | italic | oblique <angle>{0,2}","media":"all","initial":"normal","percentages":"no","computed":"asSpecified","order":"uniqueOrder","status":"standard"},"font-weight":{"syntax":"<font-weight-absolute>{1,2}","media":"all","initial":"normal","percentages":"no","computed":"asSpecified","order":"uniqueOrder","status":"standard"},"font-variant":{"syntax":"normal | none | [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> || stylistic(<feature-value-name>) || historical-forms || styleset(<feature-value-name>#) || character-variant(<feature-value-name>#) || swash(<feature-value-name>) || ornaments(<feature-value-name>) || annotation(<feature-value-name>) || [ small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps ] || <numeric-figure-values> || <numeric-spacing-values> || <numeric-fraction-values> || ordinal || slashed-zero || <east-asian-variant-values> || <east-asian-width-values> || ruby ]","media":"all","initial":"normal","percentages":"no","computed":"asSpecified","order":"orderOfAppearance","status":"standard"},"src":{"syntax":"[ <url> [ format( <string># ) ]? | local( <family-name> ) ]#","media":"all","initial":"n/a (required)","percentages":"no","computed":"asSpecified","order":"orderOfAppearance","status":"standard"},"unicode-range":{"syntax":"<unicode-range>#","media":"all","initial":"U+0-10FFFF","percentages":"no","computed":"asSpecified","order":"orderOfAppearance","status":"standard"}},"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/@font-face"},"@font-feature-values":{"syntax":"@font-feature-values <family-name># {\\n <feature-value-block-list>\\n}","interfaces":["CSSFontFeatureValuesRule"],"groups":["CSS Fonts"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/@font-feature-values"},"@import":{"syntax":"@import [ <string> | <url> ] [ <media-query-list> ]?;","groups":["Media Queries"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/@import"},"@keyframes":{"syntax":"@keyframes <keyframes-name> {\\n <keyframe-block-list>\\n}","interfaces":["CSSKeyframeRule","CSSKeyframesRule"],"groups":["CSS Animations"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/@keyframes"},"@media":{"syntax":"@media <media-query-list> {\\n <group-rule-body>\\n}","interfaces":["CSSGroupingRule","CSSConditionRule","CSSMediaRule","CSSCustomMediaRule"],"groups":["CSS Conditional Rules","Media Queries"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/@media"},"@namespace":{"syntax":"@namespace <namespace-prefix>? [ <string> | <url> ];","groups":["CSS Namespaces"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/@namespace"},"@page":{"syntax":"@page <page-selector-list> {\\n <page-body>\\n}","interfaces":["CSSPageRule"],"groups":["CSS Pages"],"descriptors":{"bleed":{"syntax":"auto | <length>","media":["visual","paged"],"initial":"auto","percentages":"no","computed":"asSpecified","order":"uniqueOrder","status":"standard"},"marks":{"syntax":"none | [ crop || cross ]","media":["visual","paged"],"initial":"none","percentages":"no","computed":"asSpecified","order":"orderOfAppearance","status":"standard"},"size":{"syntax":"<length>{1,2} | auto | [ <page-size> || [ portrait | landscape ] ]","media":["visual","paged"],"initial":"auto","percentages":"no","computed":"asSpecifiedRelativeToAbsoluteLengths","order":"orderOfAppearance","status":"standard"}},"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/@page"},"@property":{"syntax":"@property <custom-property-name> {\\n <declaration-list>\\n}","interfaces":["CSS","CSSPropertyRule"],"groups":["CSS Houdini"],"descriptors":{"syntax":{"syntax":"<string>","media":"all","percentages":"no","initial":"n/a (required)","computed":"asSpecified","order":"uniqueOrder","status":"experimental"},"inherits":{"syntax":"true | false","media":"all","percentages":"no","initial":"auto","computed":"asSpecified","order":"uniqueOrder","status":"experimental"},"initial-value":{"syntax":"<string>","media":"all","initial":"n/a (required)","percentages":"no","computed":"asSpecified","order":"uniqueOrder","status":"experimental"}},"status":"experimental","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/@property"},"@supports":{"syntax":"@supports <supports-condition> {\\n <group-rule-body>\\n}","interfaces":["CSSGroupingRule","CSSConditionRule","CSSSupportsRule"],"groups":["CSS Conditional Rules"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/@supports"},"@viewport":{"syntax":"@viewport {\\n <group-rule-body>\\n}","interfaces":["CSSViewportRule"],"groups":["CSS Device Adaptation"],"descriptors":{"height":{"syntax":"<viewport-length>{1,2}","media":["visual","continuous"],"initial":["min-height","max-height"],"percentages":["min-height","max-height"],"computed":["min-height","max-height"],"order":"orderOfAppearance","status":"standard"},"max-height":{"syntax":"<viewport-length>","media":["visual","continuous"],"initial":"auto","percentages":"referToHeightOfInitialViewport","computed":"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto","order":"uniqueOrder","status":"standard"},"max-width":{"syntax":"<viewport-length>","media":["visual","continuous"],"initial":"auto","percentages":"referToWidthOfInitialViewport","computed":"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto","order":"uniqueOrder","status":"standard"},"max-zoom":{"syntax":"auto | <number> | <percentage>","media":["visual","continuous"],"initial":"auto","percentages":"the zoom factor itself","computed":"autoNonNegativeOrPercentage","order":"uniqueOrder","status":"standard"},"min-height":{"syntax":"<viewport-length>","media":["visual","continuous"],"initial":"auto","percentages":"referToHeightOfInitialViewport","computed":"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto","order":"uniqueOrder","status":"standard"},"min-width":{"syntax":"<viewport-length>","media":["visual","continuous"],"initial":"auto","percentages":"referToWidthOfInitialViewport","computed":"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto","order":"uniqueOrder","status":"standard"},"min-zoom":{"syntax":"auto | <number> | <percentage>","media":["visual","continuous"],"initial":"auto","percentages":"the zoom factor itself","computed":"autoNonNegativeOrPercentage","order":"uniqueOrder","status":"standard"},"orientation":{"syntax":"auto | portrait | landscape","media":["visual","continuous"],"initial":"auto","percentages":"referToSizeOfBoundingBox","computed":"asSpecified","order":"uniqueOrder","status":"standard"},"user-zoom":{"syntax":"zoom | fixed","media":["visual","continuous"],"initial":"zoom","percentages":"referToSizeOfBoundingBox","computed":"asSpecified","order":"uniqueOrder","status":"standard"},"viewport-fit":{"syntax":"auto | contain | cover","media":["visual","continuous"],"initial":"auto","percentages":"no","computed":"asSpecified","order":"uniqueOrder","status":"standard"},"width":{"syntax":"<viewport-length>{1,2}","media":["visual","continuous"],"initial":["min-width","max-width"],"percentages":["min-width","max-width"],"computed":["min-width","max-width"],"order":"orderOfAppearance","status":"standard"},"zoom":{"syntax":"auto | <number> | <percentage>","media":["visual","continuous"],"initial":"auto","percentages":"the zoom factor itself","computed":"autoNonNegativeOrPercentage","order":"uniqueOrder","status":"standard"}},"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/@viewport"}}')},"16Al":function(e,t,n){"use strict";var r=n("WbBG");function i(){}function o(){}o.resetWarningCache=i,e.exports=function(){function e(e,t,n,i,o,a){if(a!==r){var s=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 s.name="Invariant Violation",s}}function t(){return e}e.isRequired=e;var n={array: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:i};return n.PropTypes=n,n}},"17hS":function(e,t,n){var r=n("dzo0"),i=n("cj6p").body,o=n("cj6p").rules;e.exports=function(e){for(var t,n,a,s,l={},u=[],c=0,d=e.length;c<d;c++)(n=e[c])[0]==r.RULE&&(l[t=o(n[1])]&&1==l[t].length?u.push(t):l[t]=l[t]||[],l[t].push(c));for(c=0,d=u.length;c<d;c++){s=[];for(var p=l[t=u[c]].length-1;p>=0;p--)n=e[l[t][p]],a=i(n[2]),s.indexOf(a)>-1?n[2]=[]:s.push(a)}}},"17x9":function(e,t,n){e.exports=n("16Al")()},"1Lqr":function(e,t,n){var r=n("G7ev");function i(){this._array=[],this._sorted=!0,this._last={generatedLine:-1,generatedColumn:0}}i.prototype.unsortedForEach=function(e,t){this._array.forEach(e,t)},i.prototype.add=function(e){var t,n,i,o,a,s;t=this._last,n=e,i=t.generatedLine,o=n.generatedLine,a=t.generatedColumn,s=n.generatedColumn,o>i||o==i&&s>=a||r.compareByGeneratedPositionsInflated(t,n)<=0?(this._last=e,this._array.push(e)):(this._sorted=!1,this._array.push(e))},i.prototype.toArray=function(){return this._sorted||(this._array.sort(r.compareByGeneratedPositionsInflated),this._sorted=!0),this._array},t.MappingList=i},"1aLD":function(e,t,n){var r=n("XDwu");function i(e,t){function n(e,t){return r.slice(e,t).map((function(t,n){for(var r=String(e+n+1);r.length<l;)r=" "+r;return r+" |"+t})).join("\n")}var r=e.source.split(/\r\n?|\n|\f/),i=e.line,o=e.column,a=Math.max(1,i-t)-1,s=Math.min(i+t,r.length+1),l=Math.max(4,String(s).length)+1,u=0;(o+=(" ".length-1)*(r[i-1].substr(0,o-1).match(/\t/g)||[]).length)>100&&(u=o-60+3,o=58);for(var c=a;c<=s;c++)c>=0&&c<r.length&&(r[c]=r[c].replace(/\t/g," "),r[c]=(u>0&&r[c].length>u?"…":"")+r[c].substr(u,98)+(r[c].length>u+100-1?"…":""));return[n(a,i),new Array(o+l+2).join("-")+"^",n(i,s)].filter(Boolean).join("\n")}e.exports=function(e,t,n,o,a){var s=r("SyntaxError",e);return s.source=t,s.offset=n,s.line=o,s.column=a,s.sourceFragment=function(e){return i(s,isNaN(e)?0:e)},Object.defineProperty(s,"formattedMessage",{get:function(){return"Parse error: "+s.message+"\n"+i(s,2)}}),s.parseError={offset:n,line:o,column:a},s}},"24Ow":function(e,t,n){(function(t,r){var i=n("Po9p"),o=n("33yf"),a=n("eIV0"),s=n("b8gD"),l=n("zdw7"),u=n("c+DE"),c=n("dzo0"),d=n("tQxF"),p=n("Ec1c"),f=n("GHqe"),m=/^\/\*# sourceMappingURL=(\S+) \*\/$/;function h(e){var t,n,r,i=[],o=g(e.sourceTokens[0]);for(r=e.sourceTokens.length;e.index<r;e.index++)if((t=g(n=e.sourceTokens[e.index]))!=o&&(i=[],o=t),i.push(n),e.processedTokens.push(n),n[0]==c.COMMENT&&m.test(n[1]))return v(n[1],t,i,e);return e.callback(e.processedTokens)}function g(e){return(e[0]==c.AT_RULE||e[0]==c.COMMENT?e[2][0]:e[1][0][2][0])[2]}function v(e,n,g,v){return function(e,n,c){var h,g,v,y=m.exec(e)[1];return p(y)?(g=function(e){var n=s(e),i=n[2]?n[2].split(/[=;]/)[2]:"us-ascii",o=n[3]?n[3].split(";")[1]:"utf8",a="utf8"==o?t.unescape(n[4]):n[4],l=new r(a,o);return l.charset=i,JSON.parse(l.toString())}(y),c(g)):f(y)?function(e,t,n){var r=a(e,!0,t.inline),i=!d(e);if(t.localOnly)return t.warnings.push('Cannot fetch remote resource from "'+e+'" as no callback given.'),n(null);if(i)return t.warnings.push('Cannot fetch "'+e+'" as no protocol given.'),n(null);if(!r)return t.warnings.push('Cannot fetch "'+e+'" as resource is not allowed.'),n(null);t.fetch(e,t.inlineRequest,t.inlineTimeout,(function(r,i){if(r)return t.warnings.push('Missing source map at "'+e+'" - '+r),n(null);n(i)}))}(y,n,(function(e){var t;e?(t=JSON.parse(e),v=u(t,y),c(v)):c(null)})):(h=o.resolve(n.rebaseTo,y),(g=function(e,t){var n,r=a(e,!1,t.inline);if(!i.existsSync(e)||!i.statSync(e).isFile())return t.warnings.push('Ignoring local source map at "'+e+'" as resource is missing.'),null;if(!r)return t.warnings.push('Cannot fetch "'+e+'" as resource is not allowed.'),null;return n=i.readFileSync(e,"utf-8"),JSON.parse(n)}(h,n))?(v=l(g,h,n.rebaseTo),c(v)):c(null))}(e,v,(function(e){return e&&(v.inputSourceMapTracker.track(n,e),function e(t,n){var r,i,o;for(i=0,o=t.length;i<o;i++)switch((r=t[i])[0]){case c.AT_RULE:y(r,n);break;case c.AT_RULE_BLOCK:e(r[1],n),e(r[2],n);break;case c.AT_RULE_BLOCK_SCOPE:y(r,n);break;case c.NESTED_BLOCK:e(r[1],n),e(r[2],n);break;case c.NESTED_BLOCK_SCOPE:case c.COMMENT:y(r,n);break;case c.PROPERTY:e(r,n);break;case c.PROPERTY_BLOCK:e(r[1],n);break;case c.PROPERTY_NAME:case c.PROPERTY_VALUE:y(r,n);break;case c.RULE:e(r[1],n),e(r[2],n);break;case c.RULE_SCOPE:y(r,n)}return t}(g,v.inputSourceMapTracker)),v.index++,h(v)}))}function y(e,t){var n,r,i=e[1],o=e[2],a=[];for(n=0,r=o.length;n<r;n++)a.push(t.originalPositionFor(o[n],i.length));e[2]=a}e.exports=function(e,t,n){var r={callback:n,fetch:t.options.fetch,index:0,inline:t.options.inline,inlineRequest:t.options.inlineRequest,inlineTimeout:t.options.inlineTimeout,inputSourceMapTracker:t.inputSourceMapTracker,localOnly:t.localOnly,processedTokens:[],rebaseTo:t.options.rebaseTo,sourceTokens:e,warnings:t.warnings};return t.options.sourceMap&&e.length>0?h(r):n(e)}}).call(this,n("yLpj"),n("HDXh").Buffer)},"2GZ4":function(e,t,n){var r=n("Ag6s");function i(e,t){return e.components.filter(t)[0]}e.exports=function(e,t){var n,o=(n=t,function(e){return n.name===e.name});return i(e,o)||function(e,t){var n,o,a,s;if(!r[e.name].shorthandComponents)return;for(a=0,s=e.components.length;a<s;a++)if(n=e.components[a],o=i(n,t))return o;return}(e,o)}},"2Gxe":function(e,t,n){var r=n("vd7W").TYPE,i=r.Ident,o=r.String,a=r.Colon,s=r.LeftSquareBracket,l=r.RightSquareBracket;function u(){this.scanner.eof&&this.error("Unexpected end of input");var e=this.scanner.tokenStart,t=!1,n=!0;return this.scanner.isDelim(42)?(t=!0,n=!1,this.scanner.next()):this.scanner.isDelim(124)||this.eat(i),this.scanner.isDelim(124)?61!==this.scanner.source.charCodeAt(this.scanner.tokenStart+1)?(this.scanner.next(),this.eat(i)):t&&this.error("Identifier is expected",this.scanner.tokenEnd):t&&this.error("Vertical line is expected"),n&&this.scanner.tokenType===a&&(this.scanner.next(),this.eat(i)),{type:"Identifier",loc:this.getLocation(e,this.scanner.tokenStart),name:this.scanner.substrToCursor(e)}}function c(){var e=this.scanner.tokenStart,t=this.scanner.source.charCodeAt(e);return 61!==t&&126!==t&&94!==t&&36!==t&&42!==t&&124!==t&&this.error("Attribute selector (=, ~=, ^=, $=, *=, |=) is expected"),this.scanner.next(),61!==t&&(this.scanner.isDelim(61)||this.error("Equal sign is expected"),this.scanner.next()),this.scanner.substrToCursor(e)}e.exports={name:"AttributeSelector",structure:{name:"Identifier",matcher:[String,null],value:["String","Identifier",null],flags:[String,null]},parse:function(){var e,t=this.scanner.tokenStart,n=null,r=null,a=null;return this.eat(s),this.scanner.skipSC(),e=u.call(this),this.scanner.skipSC(),this.scanner.tokenType!==l&&(this.scanner.tokenType!==i&&(n=c.call(this),this.scanner.skipSC(),r=this.scanner.tokenType===o?this.String():this.Identifier(),this.scanner.skipSC()),this.scanner.tokenType===i&&(a=this.scanner.getTokenValue(),this.scanner.next(),this.scanner.skipSC())),this.eat(l),{type:"AttributeSelector",loc:this.getLocation(t,this.scanner.tokenStart),name:e,matcher:n,value:r,flags:a}},generate:function(e){var t=" ";this.chunk("["),this.node(e.name),null!==e.matcher&&(this.chunk(e.matcher),null!==e.value&&(this.node(e.value),"String"===e.value.type&&(t=""))),null!==e.flags&&(this.chunk(t),this.chunk(e.flags)),this.chunk("]")}}},"2TAq":function(e,t,n){var r=n("vd7W").isHexDigit,i=n("vd7W").cmpChar,o=n("vd7W").TYPE,a=o.Ident,s=o.Delim,l=o.Number,u=o.Dimension;function c(e,t){return null!==e&&e.type===s&&e.value.charCodeAt(0)===t}function d(e,t){return e.value.charCodeAt(0)===t}function p(e,t,n){for(var i=t,o=0;i<e.value.length;i++){var a=e.value.charCodeAt(i);if(45===a&&n&&0!==o)return p(e,t+o+1,!1)>0?6:0;if(!r(a))return 0;if(++o>6)return 0}return o}function f(e,t,n){if(!e)return 0;for(;c(n(t),63);){if(++e>6)return 0;t++}return t}e.exports=function(e,t){var n=0;if(null===e||e.type!==a||!i(e.value,0,117))return 0;if(null===(e=t(++n)))return 0;if(c(e,43))return null===(e=t(++n))?0:e.type===a?f(p(e,0,!0),++n,t):c(e,63)?f(1,++n,t):0;if(e.type===l){if(!d(e,43))return 0;var r=p(e,1,!0);return 0===r?0:null===(e=t(++n))?n:e.type===u||e.type===l?d(e,45)&&p(e,1,!1)?n+1:0:f(r,n,t)}return e.type===u&&d(e,43)?f(p(e,1,!0),++n,t):0}},"2Tiy":function(e,t,n){var r=n("HDXh").Buffer;e.exports=function(e){if(e instanceof Uint8Array){if(0===e.byteOffset&&e.byteLength===e.buffer.byteLength)return e.buffer;if("function"==typeof e.buffer.slice)return e.buffer.slice(e.byteOffset,e.byteOffset+e.byteLength)}if(r.isBuffer(e)){for(var t=new Uint8Array(e.length),n=e.length,i=0;i<n;i++)t[i]=e[i];return t.buffer}throw new Error("Argument must be a Buffer")}},"2mql":function(e,t,n){"use strict";var r=n("r36Y"),i={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},a={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},s={};function l(e){return r.isMemo(e)?a:s[e.$$typeof]||i}s[r.ForwardRef]={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},s[r.Memo]=a;var u=Object.defineProperty,c=Object.getOwnPropertyNames,d=Object.getOwnPropertySymbols,p=Object.getOwnPropertyDescriptor,f=Object.getPrototypeOf,m=Object.prototype;e.exports=function e(t,n,r){if("string"!=typeof n){if(m){var i=f(n);i&&i!==m&&e(t,i,r)}var a=c(n);d&&(a=a.concat(d(n)));for(var s=l(t),h=l(n),g=0;g<a.length;++g){var v=a[g];if(!(o[v]||r&&r[v]||h&&h[v]||s&&s[v])){var y=p(n,v);try{u(t,v,y)}catch(e){}}}}return t}},"2oJN":function(e,t,n){"use strict";n.r(t);var r={};n.r(r),n.d(r,"find",(function(){return Sr}));var i={};n.r(i),n.d(i,"isTabbableIndex",(function(){return wr})),n.d(i,"find",(function(){return Er})),n.d(i,"findPrevious",(function(){return Tr})),n.d(i,"findNext",(function(){return Ar}));var o={};n.r(o),n.d(o,"TooltipContent",(function(){return ls})),n.d(o,"TooltipPopoverView",(function(){return us})),n.d(o,"noOutline",(function(){return cs})),n.d(o,"TooltipShortcut",(function(){return ds}));var a=n("q1tI"),s=n.n(a),l=n("i8i4"),u=n.n(l),c=n("17x9"),d=n.n(c),p=s.a.createContext(null);var f=function(e){e()},m={notify:function(){}};function h(){var e=f,t=null,n=null;return{clear:function(){t=null,n=null},notify:function(){e((function(){for(var e=t;e;)e.callback(),e=e.next}))},get:function(){for(var e=[],n=t;n;)e.push(n),n=n.next;return e},subscribe:function(e){var r=!0,i=n={callback:e,next:null,prev:n};return i.prev?i.prev.next=i:t=i,function(){r&&null!==t&&(r=!1,i.next?i.next.prev=i.prev:n=i.prev,i.prev?i.prev.next=i.next:t=i.next)}}}}var g=function(){function e(e,t){this.store=e,this.parentSub=t,this.unsubscribe=null,this.listeners=m,this.handleChangeWrapper=this.handleChangeWrapper.bind(this)}var t=e.prototype;return t.addNestedSub=function(e){return this.trySubscribe(),this.listeners.subscribe(e)},t.notifyNestedSubs=function(){this.listeners.notify()},t.handleChangeWrapper=function(){this.onStateChange&&this.onStateChange()},t.isSubscribed=function(){return Boolean(this.unsubscribe)},t.trySubscribe=function(){this.unsubscribe||(this.unsubscribe=this.parentSub?this.parentSub.addNestedSub(this.handleChangeWrapper):this.store.subscribe(this.handleChangeWrapper),this.listeners=h())},t.tryUnsubscribe=function(){this.unsubscribe&&(this.unsubscribe(),this.unsubscribe=null,this.listeners.clear(),this.listeners=m)},e}(),v="undefined"!=typeof window&&void 0!==window.document&&void 0!==window.document.createElement?a.useLayoutEffect:a.useEffect;var y=function(e){var t=e.store,n=e.context,r=e.children,i=Object(a.useMemo)((function(){var e=new g(t);return e.onStateChange=e.notifyNestedSubs,{store:t,subscription:e}}),[t]),o=Object(a.useMemo)((function(){return t.getState()}),[t]);v((function(){var e=i.subscription;return e.trySubscribe(),o!==t.getState()&&e.notifyNestedSubs(),function(){e.tryUnsubscribe(),e.onStateChange=null}}),[i,o]);var l=n||p;return s.a.createElement(l.Provider,{value:i},r)};function b(){return(b=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}).apply(this,arguments)}function S(e,t){if(null==e)return{};var n,r,i={},o=Object.keys(e);for(r=0;r<o.length;r++)n=o[r],t.indexOf(n)>=0||(i[n]=e[n]);return i}var x=n("2mql"),w=n.n(x),k=n("0vxD"),C=[],O=[null,null];function _(e,t){var n=e[1];return[t.payload,n+1]}function E(e,t,n){v((function(){return e.apply(void 0,t)}),n)}function T(e,t,n,r,i,o,a){e.current=r,t.current=i,n.current=!1,o.current&&(o.current=null,a())}function A(e,t,n,r,i,o,a,s,l,u){if(e){var c=!1,d=null,p=function(){if(!c){var e,n,p=t.getState();try{e=r(p,i.current)}catch(e){n=e,d=e}n||(d=null),e===o.current?a.current||l():(o.current=e,s.current=e,a.current=!0,u({type:"STORE_UPDATED",payload:{error:n}}))}};n.onStateChange=p,n.trySubscribe(),p();return function(){if(c=!0,n.tryUnsubscribe(),n.onStateChange=null,d)throw d}}}var P=function(){return[null,0]};function R(e,t){void 0===t&&(t={});var n=t,r=n.getDisplayName,i=void 0===r?function(e){return"ConnectAdvanced("+e+")"}:r,o=n.methodName,l=void 0===o?"connectAdvanced":o,u=n.renderCountProp,c=void 0===u?void 0:u,d=n.shouldHandleStateChanges,f=void 0===d||d,m=n.storeKey,h=void 0===m?"store":m,v=(n.withRef,n.forwardRef),y=void 0!==v&&v,x=n.context,R=void 0===x?p:x,z=S(n,["getDisplayName","methodName","renderCountProp","shouldHandleStateChanges","storeKey","withRef","forwardRef","context"]),L=R;return function(t){var n=t.displayName||t.name||"Component",r=i(n),o=b({},z,{getDisplayName:i,methodName:l,renderCountProp:c,shouldHandleStateChanges:f,storeKey:h,displayName:r,wrappedComponentName:n,WrappedComponent:t}),u=z.pure;var d=u?a.useMemo:function(e){return e()};function p(n){var r=Object(a.useMemo)((function(){var e=n.reactReduxForwardedRef,t=S(n,["reactReduxForwardedRef"]);return[n.context,e,t]}),[n]),i=r[0],l=r[1],u=r[2],c=Object(a.useMemo)((function(){return i&&i.Consumer&&Object(k.isContextConsumer)(s.a.createElement(i.Consumer,null))?i:L}),[i,L]),p=Object(a.useContext)(c),m=Boolean(n.store)&&Boolean(n.store.getState)&&Boolean(n.store.dispatch);Boolean(p)&&Boolean(p.store);var h=m?n.store:p.store,v=Object(a.useMemo)((function(){return function(t){return e(t.dispatch,o)}(h)}),[h]),y=Object(a.useMemo)((function(){if(!f)return O;var e=new g(h,m?null:p.subscription),t=e.notifyNestedSubs.bind(e);return[e,t]}),[h,m,p]),x=y[0],w=y[1],R=Object(a.useMemo)((function(){return m?p:b({},p,{subscription:x})}),[m,p,x]),z=Object(a.useReducer)(_,C,P),j=z[0][0],M=z[1];if(j&&j.error)throw j.error;var B=Object(a.useRef)(),W=Object(a.useRef)(u),N=Object(a.useRef)(),I=Object(a.useRef)(!1),D=d((function(){return N.current&&u===W.current?N.current:v(h.getState(),u)}),[h,j,u]);E(T,[W,B,I,u,D,N,w]),E(A,[f,h,x,v,W,B,I,N,w,M],[h,x,v]);var U=Object(a.useMemo)((function(){return s.a.createElement(t,b({},D,{ref:l}))}),[l,t,D]);return Object(a.useMemo)((function(){return f?s.a.createElement(c.Provider,{value:R},U):U}),[c,U,R])}var m=u?s.a.memo(p):p;if(m.WrappedComponent=t,m.displayName=p.displayName=r,y){var v=s.a.forwardRef((function(e,t){return s.a.createElement(m,b({},e,{reactReduxForwardedRef:t}))}));return v.displayName=r,v.WrappedComponent=t,w()(v,t)}return w()(m,t)}}function z(e,t){return e===t?0!==e||0!==t||1/e==1/t:e!=e&&t!=t}function L(e,t){if(z(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(var i=0;i<n.length;i++)if(!Object.prototype.hasOwnProperty.call(t,n[i])||!z(e[n[i]],t[n[i]]))return!1;return!0}function j(e){return function(t,n){var r=e(t,n);function i(){return r}return i.dependsOnOwnProps=!1,i}}function M(e){return null!==e.dependsOnOwnProps&&void 0!==e.dependsOnOwnProps?Boolean(e.dependsOnOwnProps):1!==e.length}function B(e,t){return function(t,n){n.displayName;var r=function(e,t){return r.dependsOnOwnProps?r.mapToProps(e,t):r.mapToProps(e)};return r.dependsOnOwnProps=!0,r.mapToProps=function(t,n){r.mapToProps=e,r.dependsOnOwnProps=M(e);var i=r(t,n);return"function"==typeof i&&(r.mapToProps=i,r.dependsOnOwnProps=M(i),i=r(t,n)),i},r}}var W=[function(e){return"function"==typeof e?B(e):void 0},function(e){return e?void 0:j((function(e){return{dispatch:e}}))},function(e){return e&&"object"==typeof e?j((function(t){return function(e,t){var n={},r=function(r){var i=e[r];"function"==typeof i&&(n[r]=function(){return t(i.apply(void 0,arguments))})};for(var i in e)r(i);return n}(e,t)})):void 0}];var N=[function(e){return"function"==typeof e?B(e):void 0},function(e){return e?void 0:j((function(){return{}}))}];function I(e,t,n){return b({},n,e,t)}var D=[function(e){return"function"==typeof e?function(e){return function(t,n){n.displayName;var r,i=n.pure,o=n.areMergedPropsEqual,a=!1;return function(t,n,s){var l=e(t,n,s);return a?i&&o(l,r)||(r=l):(a=!0,r=l),r}}}(e):void 0},function(e){return e?void 0:function(){return I}}];function U(e,t,n,r){return function(i,o){return n(e(i,o),t(r,o),o)}}function q(e,t,n,r,i){var o,a,s,l,u,c=i.areStatesEqual,d=i.areOwnPropsEqual,p=i.areStatePropsEqual,f=!1;function m(i,f){var m,h,g=!d(f,a),v=!c(i,o);return o=i,a=f,g&&v?(s=e(o,a),t.dependsOnOwnProps&&(l=t(r,a)),u=n(s,l,a)):g?(e.dependsOnOwnProps&&(s=e(o,a)),t.dependsOnOwnProps&&(l=t(r,a)),u=n(s,l,a)):v?(m=e(o,a),h=!p(m,s),s=m,h&&(u=n(s,l,a)),u):u}return function(i,c){return f?m(i,c):(s=e(o=i,a=c),l=t(r,a),u=n(s,l,a),f=!0,u)}}function F(e,t){var n=t.initMapStateToProps,r=t.initMapDispatchToProps,i=t.initMergeProps,o=S(t,["initMapStateToProps","initMapDispatchToProps","initMergeProps"]),a=n(e,o),s=r(e,o),l=i(e,o);return(o.pure?q:U)(a,s,l,e,o)}function V(e,t,n){for(var r=t.length-1;r>=0;r--){var i=t[r](e);if(i)return i}return function(t,r){throw new Error("Invalid value of type "+typeof e+" for "+n+" argument when connecting component "+r.wrappedComponentName+".")}}function G(e,t){return e===t}function H(e){var t=void 0===e?{}:e,n=t.connectHOC,r=void 0===n?R:n,i=t.mapStateToPropsFactories,o=void 0===i?N:i,a=t.mapDispatchToPropsFactories,s=void 0===a?W:a,l=t.mergePropsFactories,u=void 0===l?D:l,c=t.selectorFactory,d=void 0===c?F:c;return function(e,t,n,i){void 0===i&&(i={});var a=i,l=a.pure,c=void 0===l||l,p=a.areStatesEqual,f=void 0===p?G:p,m=a.areOwnPropsEqual,h=void 0===m?L:m,g=a.areStatePropsEqual,v=void 0===g?L:g,y=a.areMergedPropsEqual,x=void 0===y?L:y,w=S(a,["pure","areStatesEqual","areOwnPropsEqual","areStatePropsEqual","areMergedPropsEqual"]),k=V(e,o,"mapStateToProps"),C=V(t,s,"mapDispatchToProps"),O=V(n,u,"mergeProps");return r(d,b({methodName:"connect",getDisplayName:function(e){return"Connect("+e+")"},shouldHandleStateChanges:Boolean(e),initMapStateToProps:k,initMapDispatchToProps:C,initMergeProps:O,pure:c,areStatesEqual:f,areOwnPropsEqual:h,areStatePropsEqual:v,areMergedPropsEqual:x},w))}}var K=H();function $(){return Object(a.useContext)(p)}function Y(e){void 0===e&&(e=p);var t=e===p?$:function(){return Object(a.useContext)(e)};return function(){return t().store}}var Q=Y();function X(e){void 0===e&&(e=p);var t=e===p?Q:Y(e);return function(){return t().dispatch}}var J=X(),Z=function(e,t){return e===t};function ee(e){void 0===e&&(e=p);var t=e===p?$:function(){return Object(a.useContext)(e)};return function(e,n){void 0===n&&(n=Z);var r=t(),i=function(e,t,n,r){var i,o=Object(a.useReducer)((function(e){return e+1}),0)[1],s=Object(a.useMemo)((function(){return new g(n,r)}),[n,r]),l=Object(a.useRef)(),u=Object(a.useRef)(),c=Object(a.useRef)(),d=Object(a.useRef)(),p=n.getState();try{if(e!==u.current||p!==c.current||l.current){var f=e(p);i=void 0!==d.current&&t(f,d.current)?d.current:f}else i=d.current}catch(e){throw l.current&&(e.message+="\nThe error may be correlated with this previous error:\n"+l.current.stack+"\n\n"),e}return v((function(){u.current=e,c.current=p,d.current=i,l.current=void 0})),v((function(){function e(){try{var e=n.getState(),r=u.current(e);if(t(r,d.current))return;d.current=r,c.current=e}catch(e){l.current=e}o()}return s.onStateChange=e,s.trySubscribe(),e(),function(){return s.tryUnsubscribe()}}),[n,s]),i}(e,n,r.store,r.subscription);return Object(a.useDebugValue)(i),i}}var te,ne=ee();te=l.unstable_batchedUpdates,f=te;var re=n("4eJC"),ie=n.n(re),oe=n("4Z/T"),ae=n.n(oe);const se=ie()(console.error);function le(e,...t){try{return ae.a.sprintf(e,...t)}catch(t){return se("sprintf error: \n\n"+t.toString()),e}}var ue,ce,de,pe;ue={"(":9,"!":8,"*":7,"/":7,"%":7,"+":6,"-":6,"<":5,"<=":5,">":5,">=":5,"==":4,"!=":4,"&&":3,"||":2,"?":1,"?:":1},ce=["(","?"],de={")":["("],":":["?","?:"]},pe=/<=|>=|==|!=|&&|\|\||\?:|\(|!|\*|\/|%|\+|-|<|>|\?|\)|:/;var fe={"!":function(e){return!e},"*":function(e,t){return e*t},"/":function(e,t){return e/t},"%":function(e,t){return e%t},"+":function(e,t){return e+t},"-":function(e,t){return e-t},"<":function(e,t){return e<t},"<=":function(e,t){return e<=t},">":function(e,t){return e>t},">=":function(e,t){return e>=t},"==":function(e,t){return e===t},"!=":function(e,t){return e!==t},"&&":function(e,t){return e&&t},"||":function(e,t){return e||t},"?:":function(e,t,n){if(e)throw t;return n}};function me(e){var t=function(e){for(var t,n,r,i,o=[],a=[];t=e.match(pe);){for(n=t[0],(r=e.substr(0,t.index).trim())&&o.push(r);i=a.pop();){if(de[n]){if(de[n][0]===i){n=de[n][1]||n;break}}else if(ce.indexOf(i)>=0||ue[i]<ue[n]){a.push(i);break}o.push(i)}de[n]||a.push(n),e=e.substr(t.index+n.length)}return(e=e.trim())&&o.push(e),o.concat(a.reverse())}(e);return function(e){return function(e,t){var n,r,i,o,a,s,l=[];for(n=0;n<e.length;n++){if(a=e[n],o=fe[a]){for(r=o.length,i=Array(r);r--;)i[r]=l.pop();try{s=o.apply(null,i)}catch(e){return e}}else s=t.hasOwnProperty(a)?t[a]:+a;l.push(s)}return l[0]}(t,e)}}var he={contextDelimiter:"",onMissingKey:null};function ge(e,t){var n;for(n in this.data=e,this.pluralForms={},this.options={},he)this.options[n]=void 0!==t&&n in t?t[n]:he[n]}ge.prototype.getPluralForm=function(e,t){var n,r,i,o,a=this.pluralForms[e];return a||("function"!=typeof(i=(n=this.data[e][""])["Plural-Forms"]||n["plural-forms"]||n.plural_forms)&&(r=function(e){var t,n,r;for(t=e.split(";"),n=0;n<t.length;n++)if(0===(r=t[n].trim()).indexOf("plural="))return r.substr(7)}(n["Plural-Forms"]||n["plural-forms"]||n.plural_forms),o=me(r),i=function(e){return+o({n:e})}),a=this.pluralForms[e]=i),a(t)},ge.prototype.dcnpgettext=function(e,t,n,r,i){var o,a,s;return o=void 0===i?0:this.getPluralForm(e,i),a=n,t&&(a=t+this.options.contextDelimiter+n),(s=this.data[e][a])&&s[o]?s[o]:(this.options.onMissingKey&&this.options.onMissingKey(n,e),0===o?n:r)};const ve={"":{plural_forms:e=>1===e?0:1}},ye=/^i18n\.(n?gettext|has_translation)(_|$)/;var be=function(e){return"string"!=typeof e||""===e?(console.error("The namespace must be a non-empty string."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.\-\/]*$/.test(e)||(console.error("The namespace can only contain numbers, letters, dashes, periods, underscores and slashes."),!1)};var Se=function(e){return"string"!=typeof e||""===e?(console.error("The hook name must be a non-empty string."),!1):/^__/.test(e)?(console.error("The hook name cannot begin with `__`."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.-]*$/.test(e)||(console.error("The hook name can only contain numbers, letters, dashes, periods and underscores."),!1)};var xe=function(e,t){return function(n,r,i,o=10){const a=e[t];if(!Se(n))return;if(!be(r))return;if("function"!=typeof i)return void console.error("The hook callback must be a function.");if("number"!=typeof o)return void console.error("If specified, the hook priority must be a number.");const s={callback:i,priority:o,namespace:r};if(a[n]){const e=a[n].handlers;let t;for(t=e.length;t>0&&!(o>=e[t-1].priority);t--);t===e.length?e[t]=s:e.splice(t,0,s),a.__current.forEach(e=>{e.name===n&&e.currentIndex>=t&&e.currentIndex++})}else a[n]={handlers:[s],runs:0};"hookAdded"!==n&&e.doAction("hookAdded",n,r,i,o)}};var we=function(e,t,n=!1){return function(r,i){const o=e[t];if(!Se(r))return;if(!n&&!be(i))return;if(!o[r])return 0;let a=0;if(n)a=o[r].handlers.length,o[r]={runs:o[r].runs,handlers:[]};else{const e=o[r].handlers;for(let t=e.length-1;t>=0;t--)e[t].namespace===i&&(e.splice(t,1),a++,o.__current.forEach(e=>{e.name===r&&e.currentIndex>=t&&e.currentIndex--}))}return"hookRemoved"!==r&&e.doAction("hookRemoved",r,i),a}};var ke=function(e,t){return function(n,r){const i=e[t];return void 0!==r?n in i&&i[n].handlers.some(e=>e.namespace===r):n in i}};var Ce=function(e,t,n=!1){return function(r,...i){const o=e[t];o[r]||(o[r]={handlers:[],runs:0}),o[r].runs++;const a=o[r].handlers;if(!a||!a.length)return n?i[0]:void 0;const s={name:r,currentIndex:0};for(o.__current.push(s);s.currentIndex<a.length;){const e=a[s.currentIndex].callback.apply(null,i);n&&(i[0]=e),s.currentIndex++}return o.__current.pop(),n?i[0]:void 0}};var Oe=function(e,t){return function(){var n,r;const i=e[t];return null!==(n=null===(r=i.__current[i.__current.length-1])||void 0===r?void 0:r.name)&&void 0!==n?n:null}};var _e=function(e,t){return function(n){const r=e[t];return void 0===n?void 0!==r.__current[0]:!!r.__current[0]&&n===r.__current[0].name}};var Ee=function(e,t){return function(n){const r=e[t];if(Se(n))return r[n]&&r[n].runs?r[n].runs:0}};class Te{constructor(){this.actions=Object.create(null),this.actions.__current=[],this.filters=Object.create(null),this.filters.__current=[],this.addAction=xe(this,"actions"),this.addFilter=xe(this,"filters"),this.removeAction=we(this,"actions"),this.removeFilter=we(this,"filters"),this.hasAction=ke(this,"actions"),this.hasFilter=ke(this,"filters"),this.removeAllActions=we(this,"actions",!0),this.removeAllFilters=we(this,"filters",!0),this.doAction=Ce(this,"actions"),this.applyFilters=Ce(this,"filters",!0),this.currentAction=Oe(this,"actions"),this.currentFilter=Oe(this,"filters"),this.doingAction=_e(this,"actions"),this.doingFilter=_e(this,"filters"),this.didAction=Ee(this,"actions"),this.didFilter=Ee(this,"filters")}}const Ae=function(){return new Te}(),{addAction:Pe,addFilter:Re,removeAction:ze,removeFilter:Le,hasAction:je,hasFilter:Me,removeAllActions:Be,removeAllFilters:We,doAction:Ne,applyFilters:Ie,currentAction:De,currentFilter:Ue,doingAction:qe,doingFilter:Fe,didAction:Ve,didFilter:Ge,actions:He,filters:Ke}=Ae,$e=((e,t,n)=>{const r=new ge({}),i=new Set,o=()=>{i.forEach(e=>e())},a=(e,t="default")=>{r.data[t]={...ve,...r.data[t],...e},r.data[t][""]={...ve[""],...r.data[t][""]}},s=(e,t)=>{a(e,t),o()},l=(e="default",t,n,i,o)=>(r.data[e]||a(void 0,e),r.dcnpgettext(e,t,n,i,o)),u=(e="default")=>e,c=(e,t,r)=>{let i=l(r,t,e);return n?(i=n.applyFilters("i18n.gettext_with_context",i,e,t,r),n.applyFilters("i18n.gettext_with_context_"+u(r),i,e,t,r)):i};if(e&&s(e,t),n){const e=e=>{ye.test(e)&&o()};n.addAction("hookAdded","core/i18n",e),n.addAction("hookRemoved","core/i18n",e)}return{getLocaleData:(e="default")=>r.data[e],setLocaleData:s,resetLocaleData:(e,t)=>{r.data={},r.pluralForms={},s(e,t)},subscribe:e=>(i.add(e),()=>i.delete(e)),__:(e,t)=>{let r=l(t,void 0,e);return n?(r=n.applyFilters("i18n.gettext",r,e,t),n.applyFilters("i18n.gettext_"+u(t),r,e,t)):r},_x:c,_n:(e,t,r,i)=>{let o=l(i,void 0,e,t,r);return n?(o=n.applyFilters("i18n.ngettext",o,e,t,r,i),n.applyFilters("i18n.ngettext_"+u(i),o,e,t,r,i)):o},_nx:(e,t,r,i,o)=>{let a=l(o,i,e,t,r);return n?(a=n.applyFilters("i18n.ngettext_with_context",a,e,t,r,i,o),n.applyFilters("i18n.ngettext_with_context_"+u(o),a,e,t,r,i,o)):a},isRTL:()=>"rtl"===c("ltr","text direction"),hasTranslation:(e,t,i)=>{var o,a;const s=t?t+""+e:e;let l=!(null===(o=r.data)||void 0===o||null===(a=o[null!=i?i:"default"])||void 0===a||!a[s]);return n&&(l=n.applyFilters("i18n.has_translation",l,e,t,i),l=n.applyFilters("i18n.has_translation_"+u(i),l,e,t,i)),l}}})(void 0,void 0,Ae);$e.getLocaleData.bind($e),$e.setLocaleData.bind($e),$e.resetLocaleData.bind($e),$e.subscribe.bind($e);const Ye=$e.__.bind($e),Qe=($e._x.bind($e),$e._n.bind($e)),Xe=($e._nx.bind($e),$e.isRTL.bind($e));$e.hasTranslation.bind($e);function Je(e){for(var t=arguments.length,n=Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];throw Error("[Immer] minified error nr: "+e+(n.length?" "+n.map((function(e){return"'"+e+"'"})).join(","):"")+". Find the full error at: https://bit.ly/3cXEKWf")}function Ze(e){return!!e&&!!e[qt]}function et(e){return!!e&&(function(e){if(!e||"object"!=typeof e)return!1;var t=Object.getPrototypeOf(e);if(null===t)return!0;var n=Object.hasOwnProperty.call(t,"constructor")&&t.constructor;return"function"==typeof n&&Function.toString.call(n)===Ft}(e)||Array.isArray(e)||!!e[Ut]||!!e.constructor[Ut]||st(e)||lt(e))}function tt(e,t,n){void 0===n&&(n=!1),0===nt(e)?(n?Object.keys:Vt)(e).forEach((function(r){n&&"symbol"==typeof r||t(r,e[r],e)})):e.forEach((function(n,r){return t(r,n,e)}))}function nt(e){var t=e[qt];return t?t.i>3?t.i-4:t.i:Array.isArray(e)?1:st(e)?2:lt(e)?3:0}function rt(e,t){return 2===nt(e)?e.has(t):Object.prototype.hasOwnProperty.call(e,t)}function it(e,t){return 2===nt(e)?e.get(t):e[t]}function ot(e,t,n){var r=nt(e);2===r?e.set(t,n):3===r?(e.delete(t),e.add(n)):e[t]=n}function at(e,t){return e===t?0!==e||1/e==1/t:e!=e&&t!=t}function st(e){return Wt&&e instanceof Map}function lt(e){return Nt&&e instanceof Set}function ut(e){return e.o||e.t}function ct(e){if(Array.isArray(e))return Array.prototype.slice.call(e);var t=Gt(e);delete t[qt];for(var n=Vt(t),r=0;r<n.length;r++){var i=n[r],o=t[i];!1===o.writable&&(o.writable=!0,o.configurable=!0),(o.get||o.set)&&(t[i]={configurable:!0,writable:!0,enumerable:o.enumerable,value:e[i]})}return Object.create(Object.getPrototypeOf(e),t)}function dt(e,t){return void 0===t&&(t=!1),ft(e)||Ze(e)||!et(e)||(nt(e)>1&&(e.set=e.add=e.clear=e.delete=pt),Object.freeze(e),t&&tt(e,(function(e,t){return dt(t,!0)}),!0)),e}function pt(){Je(2)}function ft(e){return null==e||"object"!=typeof e||Object.isFrozen(e)}function mt(e){var t=Ht[e];return t||Je(18,e),t}function ht(e,t){Ht[e]||(Ht[e]=t)}function gt(){return Mt}function vt(e,t){t&&(mt("Patches"),e.u=[],e.s=[],e.v=t)}function yt(e){bt(e),e.p.forEach(xt),e.p=null}function bt(e){e===Mt&&(Mt=e.l)}function St(e){return Mt={p:[],l:Mt,h:e,m:!0,_:0}}function xt(e){var t=e[qt];0===t.i||1===t.i?t.j():t.g=!0}function wt(e,t){t._=t.p.length;var n=t.p[0],r=void 0!==e&&e!==n;return t.h.O||mt("ES5").S(t,e,r),r?(n[qt].P&&(yt(t),Je(4)),et(e)&&(e=kt(t,e),t.l||Ot(t,e)),t.u&&mt("Patches").M(n[qt],e,t.u,t.s)):e=kt(t,n,[]),yt(t),t.u&&t.v(t.u,t.s),e!==Dt?e:void 0}function kt(e,t,n){if(ft(t))return t;var r=t[qt];if(!r)return tt(t,(function(i,o){return Ct(e,r,t,i,o,n)}),!0),t;if(r.A!==e)return t;if(!r.P)return Ot(e,r.t,!0),r.t;if(!r.I){r.I=!0,r.A._--;var i=4===r.i||5===r.i?r.o=ct(r.k):r.o;tt(3===r.i?new Set(i):i,(function(t,o){return Ct(e,r,i,t,o,n)})),Ot(e,i,!1),n&&e.u&&mt("Patches").R(r,n,e.u,e.s)}return r.o}function Ct(e,t,n,r,i,o){if(Ze(i)){var a=kt(e,i,o&&t&&3!==t.i&&!rt(t.D,r)?o.concat(r):void 0);if(ot(n,r,a),!Ze(a))return;e.m=!1}if(et(i)&&!ft(i)){if(!e.h.F&&e._<1)return;kt(e,i),t&&t.A.l||Ot(e,i)}}function Ot(e,t,n){void 0===n&&(n=!1),e.h.F&&e.m&&dt(t,n)}function _t(e,t){var n=e[qt];return(n?ut(n):e)[t]}function Et(e,t){if(t in e)for(var n=Object.getPrototypeOf(e);n;){var r=Object.getOwnPropertyDescriptor(n,t);if(r)return r;n=Object.getPrototypeOf(n)}}function Tt(e){e.P||(e.P=!0,e.l&&Tt(e.l))}function At(e){e.o||(e.o=ct(e.t))}function Pt(e,t,n){var r=st(t)?mt("MapSet").N(t,n):lt(t)?mt("MapSet").T(t,n):e.O?function(e,t){var n=Array.isArray(e),r={i:n?1:0,A:t?t.A:gt(),P:!1,I:!1,D:{},l:t,t:e,k:null,o:null,j:null,C:!1},i=r,o=Kt;n&&(i=[r],o=$t);var a=Proxy.revocable(i,o),s=a.revoke,l=a.proxy;return r.k=l,r.j=s,l}(t,n):mt("ES5").J(t,n);return(n?n.A:gt()).p.push(r),r}function Rt(e){return Ze(e)||Je(22,e),function e(t){if(!et(t))return t;var n,r=t[qt],i=nt(t);if(r){if(!r.P&&(r.i<4||!mt("ES5").K(r)))return r.t;r.I=!0,n=zt(t,i),r.I=!1}else n=zt(t,i);return tt(n,(function(t,i){r&&it(r.t,t)===i||ot(n,t,e(i))})),3===i?new Set(n):n}(e)}function zt(e,t){switch(t){case 2:return new Map(e);case 3:return Array.from(e)}return ct(e)}function Lt(){function e(e,t){var n=i[e];return n?n.enumerable=t:i[e]=n={configurable:!0,enumerable:t,get:function(){var t=this[qt];return Kt.get(t,e)},set:function(t){var n=this[qt];Kt.set(n,e,t)}},n}function t(e){for(var t=e.length-1;t>=0;t--){var i=e[t][qt];if(!i.P)switch(i.i){case 5:r(i)&&Tt(i);break;case 4:n(i)&&Tt(i)}}}function n(e){for(var t=e.t,n=e.k,r=Vt(n),i=r.length-1;i>=0;i--){var o=r[i];if(o!==qt){var a=t[o];if(void 0===a&&!rt(t,o))return!0;var s=n[o],l=s&&s[qt];if(l?l.t!==a:!at(s,a))return!0}}var u=!!t[qt];return r.length!==Vt(t).length+(u?0:1)}function r(e){var t=e.k;if(t.length!==e.t.length)return!0;var n=Object.getOwnPropertyDescriptor(t,t.length-1);return!(!n||n.get)}var i={};ht("ES5",{J:function(t,n){var r=Array.isArray(t),i=function(t,n){if(t){for(var r=Array(n.length),i=0;i<n.length;i++)Object.defineProperty(r,""+i,e(i,!0));return r}var o=Gt(n);delete o[qt];for(var a=Vt(o),s=0;s<a.length;s++){var l=a[s];o[l]=e(l,t||!!o[l].enumerable)}return Object.create(Object.getPrototypeOf(n),o)}(r,t),o={i:r?5:4,A:n?n.A:gt(),P:!1,I:!1,D:{},l:n,t:t,k:i,o:null,g:!1,C:!1};return Object.defineProperty(i,qt,{value:o,writable:!0}),i},S:function(e,n,i){i?Ze(n)&&n[qt].A===e&&t(e.p):(e.u&&function e(t){if(t&&"object"==typeof t){var n=t[qt];if(n){var i=n.t,o=n.k,a=n.D,s=n.i;if(4===s)tt(o,(function(t){t!==qt&&(void 0!==i[t]||rt(i,t)?a[t]||e(o[t]):(a[t]=!0,Tt(n)))})),tt(i,(function(e){void 0!==o[e]||rt(o,e)||(a[e]=!1,Tt(n))}));else if(5===s){if(r(n)&&(Tt(n),a.length=!0),o.length<i.length)for(var l=o.length;l<i.length;l++)a[l]=!1;else for(var u=i.length;u<o.length;u++)a[u]=!0;for(var c=Math.min(o.length,i.length),d=0;d<c;d++)void 0===a[d]&&e(o[d])}}}}(e.p[0]),t(e.p))},K:function(e){return 4===e.i?n(e):r(e)}})}var jt,Mt,Bt="undefined"!=typeof Symbol&&"symbol"==typeof Symbol("x"),Wt="undefined"!=typeof Map,Nt="undefined"!=typeof Set,It="undefined"!=typeof Proxy&&void 0!==Proxy.revocable&&"undefined"!=typeof Reflect,Dt=Bt?Symbol.for("immer-nothing"):((jt={})["immer-nothing"]=!0,jt),Ut=Bt?Symbol.for("immer-draftable"):"__$immer_draftable",qt=Bt?Symbol.for("immer-state"):"__$immer_state",Ft=("undefined"!=typeof Symbol&&Symbol.iterator,""+Object.prototype.constructor),Vt="undefined"!=typeof Reflect&&Reflect.ownKeys?Reflect.ownKeys:void 0!==Object.getOwnPropertySymbols?function(e){return Object.getOwnPropertyNames(e).concat(Object.getOwnPropertySymbols(e))}:Object.getOwnPropertyNames,Gt=Object.getOwnPropertyDescriptors||function(e){var t={};return Vt(e).forEach((function(n){t[n]=Object.getOwnPropertyDescriptor(e,n)})),t},Ht={},Kt={get:function(e,t){if(t===qt)return e;var n=ut(e);if(!rt(n,t))return function(e,t,n){var r,i=Et(t,n);return i?"value"in i?i.value:null===(r=i.get)||void 0===r?void 0:r.call(e.k):void 0}(e,n,t);var r=n[t];return e.I||!et(r)?r:r===_t(e.t,t)?(At(e),e.o[t]=Pt(e.A.h,r,e)):r},has:function(e,t){return t in ut(e)},ownKeys:function(e){return Reflect.ownKeys(ut(e))},set:function(e,t,n){var r=Et(ut(e),t);if(null==r?void 0:r.set)return r.set.call(e.k,n),!0;if(!e.P){var i=_t(ut(e),t),o=null==i?void 0:i[qt];if(o&&o.t===n)return e.o[t]=n,e.D[t]=!1,!0;if(at(n,i)&&(void 0!==n||rt(e.t,t)))return!0;At(e),Tt(e)}return e.o[t]===n&&"number"!=typeof n||(e.o[t]=n,e.D[t]=!0,!0)},deleteProperty:function(e,t){return void 0!==_t(e.t,t)||t in e.t?(e.D[t]=!1,At(e),Tt(e)):delete e.D[t],e.o&&delete e.o[t],!0},getOwnPropertyDescriptor:function(e,t){var n=ut(e),r=Reflect.getOwnPropertyDescriptor(n,t);return r?{writable:!0,configurable:1!==e.i||"length"!==t,enumerable:r.enumerable,value:n[t]}:r},defineProperty:function(){Je(11)},getPrototypeOf:function(e){return Object.getPrototypeOf(e.t)},setPrototypeOf:function(){Je(12)}},$t={};tt(Kt,(function(e,t){$t[e]=function(){return arguments[0]=arguments[0][0],t.apply(this,arguments)}})),$t.deleteProperty=function(e,t){return Kt.deleteProperty.call(this,e[0],t)},$t.set=function(e,t,n){return Kt.set.call(this,e[0],t,n,e[0])};var Yt=new(function(){function e(e){var t=this;this.O=It,this.F=!0,this.produce=function(e,n,r){if("function"==typeof e&&"function"!=typeof n){var i=n;n=e;var o=t;return function(e){var t=this;void 0===e&&(e=i);for(var r=arguments.length,a=Array(r>1?r-1:0),s=1;s<r;s++)a[s-1]=arguments[s];return o.produce(e,(function(e){var r;return(r=n).call.apply(r,[t,e].concat(a))}))}}var a;if("function"!=typeof n&&Je(6),void 0!==r&&"function"!=typeof r&&Je(7),et(e)){var s=St(t),l=Pt(t,e,void 0),u=!0;try{a=n(l),u=!1}finally{u?yt(s):bt(s)}return"undefined"!=typeof Promise&&a instanceof Promise?a.then((function(e){return vt(s,r),wt(e,s)}),(function(e){throw yt(s),e})):(vt(s,r),wt(a,s))}if(!e||"object"!=typeof e){if((a=n(e))===Dt)return;return void 0===a&&(a=e),t.F&&dt(a,!0),a}Je(21,e)},this.produceWithPatches=function(e,n){return"function"==typeof e?function(n){for(var r=arguments.length,i=Array(r>1?r-1:0),o=1;o<r;o++)i[o-1]=arguments[o];return t.produceWithPatches(n,(function(t){return e.apply(void 0,[t].concat(i))}))}:[t.produce(e,n,(function(e,t){r=e,i=t})),r,i];var r,i},"boolean"==typeof(null==e?void 0:e.useProxies)&&this.setUseProxies(e.useProxies),"boolean"==typeof(null==e?void 0:e.autoFreeze)&&this.setAutoFreeze(e.autoFreeze)}var t=e.prototype;return t.createDraft=function(e){et(e)||Je(8),Ze(e)&&(e=Rt(e));var t=St(this),n=Pt(this,e,void 0);return n[qt].C=!0,bt(t),n},t.finishDraft=function(e,t){var n=(e&&e[qt]).A;return vt(n,t),wt(void 0,n)},t.setAutoFreeze=function(e){this.F=e},t.setUseProxies=function(e){e&&!It&&Je(20),this.O=e},t.applyPatches=function(e,t){var n;for(n=t.length-1;n>=0;n--){var r=t[n];if(0===r.path.length&&"replace"===r.op){e=r.value;break}}var i=mt("Patches").$;return Ze(e)?i(e,t):this.produce(e,(function(e){return i(e,t.slice(n+1))}))},e}()),Qt=Yt.produce,Xt=(Yt.produceWithPatches.bind(Yt),Yt.setAutoFreeze.bind(Yt),Yt.setUseProxies.bind(Yt),Yt.applyPatches.bind(Yt),Yt.createDraft.bind(Yt),Yt.finishDraft.bind(Yt),Qt);function Jt(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Zt(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function en(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Zt(Object(n),!0).forEach((function(t){Jt(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Zt(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function tn(e){return"Minified Redux error #"+e+"; visit https://redux.js.org/Errors?code="+e+" for the full message or use the non-minified dev environment for full errors. "}var nn="function"==typeof Symbol&&Symbol.observable||"@@observable",rn=function(){return Math.random().toString(36).substring(7).split("").join(".")},on={INIT:"@@redux/INIT"+rn(),REPLACE:"@@redux/REPLACE"+rn(),PROBE_UNKNOWN_ACTION:function(){return"@@redux/PROBE_UNKNOWN_ACTION"+rn()}};function an(e){if("object"!=typeof e||null===e)return!1;for(var t=e;null!==Object.getPrototypeOf(t);)t=Object.getPrototypeOf(t);return Object.getPrototypeOf(e)===t}function sn(e,t,n){var r;if("function"==typeof t&&"function"==typeof n||"function"==typeof n&&"function"==typeof arguments[3])throw new Error(tn(0));if("function"==typeof t&&void 0===n&&(n=t,t=void 0),void 0!==n){if("function"!=typeof n)throw new Error(tn(1));return n(sn)(e,t)}if("function"!=typeof e)throw new Error(tn(2));var i=e,o=t,a=[],s=a,l=!1;function u(){s===a&&(s=a.slice())}function c(){if(l)throw new Error(tn(3));return o}function d(e){if("function"!=typeof e)throw new Error(tn(4));if(l)throw new Error(tn(5));var t=!0;return u(),s.push(e),function(){if(t){if(l)throw new Error(tn(6));t=!1,u();var n=s.indexOf(e);s.splice(n,1),a=null}}}function p(e){if(!an(e))throw new Error(tn(7));if(void 0===e.type)throw new Error(tn(8));if(l)throw new Error(tn(9));try{l=!0,o=i(o,e)}finally{l=!1}for(var t=a=s,n=0;n<t.length;n++){(0,t[n])()}return e}function f(e){if("function"!=typeof e)throw new Error(tn(10));i=e,p({type:on.REPLACE})}function m(){var e,t=d;return(e={subscribe:function(e){if("object"!=typeof e||null===e)throw new Error(tn(11));function n(){e.next&&e.next(c())}return n(),{unsubscribe:t(n)}}})[nn]=function(){return this},e}return p({type:on.INIT}),(r={dispatch:p,subscribe:d,getState:c,replaceReducer:f})[nn]=m,r}function ln(e){for(var t=Object.keys(e),n={},r=0;r<t.length;r++){var i=t[r];0,"function"==typeof e[i]&&(n[i]=e[i])}var o,a=Object.keys(n);try{!function(e){Object.keys(e).forEach((function(t){var n=e[t];if(void 0===n(void 0,{type:on.INIT}))throw new Error(tn(12));if(void 0===n(void 0,{type:on.PROBE_UNKNOWN_ACTION()}))throw new Error(tn(13))}))}(n)}catch(e){o=e}return function(e,t){if(void 0===e&&(e={}),o)throw o;for(var r=!1,i={},s=0;s<a.length;s++){var l=a[s],u=n[l],c=e[l],d=u(c,t);if(void 0===d){t&&t.type;throw new Error(tn(14))}i[l]=d,r=r||d!==c}return(r=r||a.length!==Object.keys(e).length)?i:e}}function un(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return 0===t.length?function(e){return e}:1===t.length?t[0]:t.reduce((function(e,t){return function(){return e(t.apply(void 0,arguments))}}))}function cn(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return function(e){return function(){var n=e.apply(void 0,arguments),r=function(){throw new Error(tn(15))},i={getState:n.getState,dispatch:function(){return r.apply(void 0,arguments)}},o=t.map((function(e){return e(i)}));return r=un.apply(void 0,o)(n.dispatch),en(en({},n),{},{dispatch:r})}}}function dn(e,t){return e===t}function pn(e,t,n){if(null===t||null===n||t.length!==n.length)return!1;for(var r=t.length,i=0;i<r;i++)if(!e(t[i],n[i]))return!1;return!0}function fn(e){var t=Array.isArray(e[0])?e[0]:e;if(!t.every((function(e){return"function"==typeof e}))){var n=t.map((function(e){return typeof e})).join(", ");throw new Error("Selector creators expect all input-selectors to be functions, instead received the following types: ["+n+"]")}return t}!function(e){for(var t=arguments.length,n=Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r]}((function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:dn,n=null,r=null;return function(){return pn(t,n,arguments)||(r=e.apply(null,arguments)),n=arguments,r}}));function mn(e){return function(t){var n=t.dispatch,r=t.getState;return function(t){return function(i){return"function"==typeof i?i(n,r,e):t(i)}}}}var hn=mn();hn.withExtraArgument=mn;var gn=hn;function vn(){return(vn=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}).apply(this,arguments)}"undefined"!=typeof window&&window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__&&window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__;function yn(e,t){function n(){if(t){var n=t.apply(void 0,arguments);if(!n)throw new Error("prepareAction did not return an object");return vn({type:e,payload:n.payload},"meta"in n&&{meta:n.meta},{},"error"in n&&{error:n.error})}return{type:e,payload:arguments.length<=0?void 0:arguments[0]}}return n.toString=function(){return""+e},n.type=e,n.match=function(t){return t.type===e},n}function bn(e){var t,n={},r=[],i={addCase:function(e,t){var r="string"==typeof e?e:e.type;if(r in n)throw new Error("addCase cannot be called with two reducers for the same action type");return n[r]=t,i},addMatcher:function(e,t){return r.push({matcher:e,reducer:t}),i},addDefaultCase:function(e){return t=e,i}};return e(i),[n,r,t]}function Sn(e,t,n,r){void 0===n&&(n=[]);var i="function"==typeof t?bn(t):[t,n,r],o=i[0],a=i[1],s=i[2],l=Xt(e,(function(){}));return function(e,t){void 0===e&&(e=l);var n=[o[t.type]].concat(a.filter((function(e){return(0,e.matcher)(t)})).map((function(e){return e.reducer})));return 0===n.filter((function(e){return!!e})).length&&(n=[s]),n.reduce((function(e,n){if(n){if(Ze(e)){var r=n(e,t);return void 0===r?e:r}if(et(e))return Xt(e,(function(e){return n(e,t)}));var i=n(e,t);if(void 0===i){if(null===e)return e;throw Error("A case reducer on a non-draftable value must not return undefined")}return i}return e}),e)}}"undefined"!=typeof Symbol&&(Symbol.iterator||(Symbol.iterator=Symbol("Symbol.iterator"))),"undefined"!=typeof Symbol&&(Symbol.asyncIterator||(Symbol.asyncIterator=Symbol("Symbol.asyncIterator")));var xn=["name","message","stack","code"],wn=function(e){this.payload=e,this.name="RejectWithValue",this.message="Rejected"},kn=function(e){if("object"==typeof e&&null!==e){var t={},n=xn,r=Array.isArray(n),i=0;for(n=r?n:n[Symbol.iterator]();;){var o;if(r){if(i>=n.length)break;o=n[i++]}else{if((i=n.next()).done)break;o=i.value}var a=o;"string"==typeof e[a]&&(t[a]=e[a])}return t}return{message:String(e)}};function Cn(e,t,n){var r=yn(e+"/fulfilled",(function(e,t,n){return{payload:e,meta:{arg:n,requestId:t,requestStatus:"fulfilled"}}})),i=yn(e+"/pending",(function(e,t){return{payload:void 0,meta:{arg:t,requestId:e,requestStatus:"pending"}}})),o=yn(e+"/rejected",(function(e,t,r){var i=e instanceof wn,o=!!e&&"AbortError"===e.name,a=!!e&&"ConditionError"===e.name;return{payload:e instanceof wn?e.payload:void 0,error:(n&&n.serializeError||kn)(e||"Rejected"),meta:{arg:r,requestId:t,rejectedWithValue:i,requestStatus:"rejected",aborted:o,condition:a}}})),a="undefined"!=typeof AbortController?AbortController:function(){function e(){this.signal={aborted:!1,addEventListener:function(){},dispatchEvent:function(){return!1},onabort:function(){},removeEventListener:function(){}}}return e.prototype.abort=function(){0},e}();return Object.assign((function(e){return function(s,l,u){var c,d=function(e){void 0===e&&(e=21);for(var t="",n=e;n--;)t+="ModuleSymbhasOwnPr-0123456789ABCDEFGHNRVfgctiUvz_KqYTJkLxpZXIjQW"[64*Math.random()|0];return t}(),p=new a,f=new Promise((function(e,t){return p.signal.addEventListener("abort",(function(){return t({name:"AbortError",message:c||"Aborted"})}))})),m=!1;var h=function(){try{var a,c=function(e){return h?e:(n&&!n.dispatchConditionRejection&&o.match(a)&&a.meta.condition||s(a),a)},h=!1,g=function(e,t){try{var n=e()}catch(e){return t(e)}return n&&n.then?n.then(void 0,t):n}((function(){if(n&&n.condition&&!1===n.condition(e,{getState:l,extra:u}))throw{name:"ConditionError",message:"Aborted due to condition callback returning false."};return m=!0,s(i(d,e)),Promise.resolve(Promise.race([f,Promise.resolve(t(e,{dispatch:s,getState:l,extra:u,requestId:d,signal:p.signal,rejectWithValue:function(e){return new wn(e)}})).then((function(t){return t instanceof wn?o(t,d,e):r(t,d,e)}))])).then((function(e){a=e}))}),(function(t){a=o(t,d,e)}));return Promise.resolve(g&&g.then?g.then(c):c(g))}catch(e){return Promise.reject(e)}}();return Object.assign(h,{abort:function(e){m&&(c=e,p.abort())},requestId:d,arg:e})}}),{pending:i,rejected:o,fulfilled:r,typePrefix:e})}let On,_n,En,Tn;Lt();const An=/<(\/)?(\w+)\s*(\/)?>/g;function Pn(e,t,n,r,i){return{element:e,tokenStart:t,tokenLength:n,prevOffset:r,leadingTextStart:i,children:[]}}const Rn=e=>{const t="object"==typeof e,n=t&&Object.values(e);return t&&n.length&&n.every(e=>Object(a.isValidElement)(e))};function zn(e){const t=function(){const e=An.exec(On);if(null===e)return["no-more-tokens"];const t=e.index,[n,r,i,o]=e,a=n.length;if(o)return["self-closed",i,t,a];if(r)return["closer",i,t,a];return["opener",i,t,a]}(),[n,r,i,o]=t,s=Tn.length,l=i>_n?_n:null;if(!e[r])return Ln(),!1;switch(n){case"no-more-tokens":if(0!==s){const{leadingTextStart:e,tokenStart:t}=Tn.pop();En.push(On.substr(e,t))}return Ln(),!1;case"self-closed":return 0===s?(null!==l&&En.push(On.substr(l,i-l)),En.push(e[r]),_n=i+o,!0):(jn(Pn(e[r],i,o)),_n=i+o,!0);case"opener":return Tn.push(Pn(e[r],i,o,i+o,l)),_n=i+o,!0;case"closer":if(1===s)return function(e){const{element:t,leadingTextStart:n,prevOffset:r,tokenStart:i,children:o}=Tn.pop(),s=e?On.substr(r,e-r):On.substr(r);s&&o.push(s);null!==n&&En.push(On.substr(n,i-n));En.push(Object(a.cloneElement)(t,null,...o))}(i),_n=i+o,!0;const t=Tn.pop(),n=On.substr(t.prevOffset,i-t.prevOffset);t.children.push(n),t.prevOffset=i+o;const u=Pn(t.element,t.tokenStart,t.tokenLength,i+o);return u.children=t.children,jn(u),_n=i+o,!0;default:return Ln(),!1}}function Ln(){const e=On.length-_n;0!==e&&En.push(On.substr(_n,e))}function jn(e){const{element:t,tokenStart:n,tokenLength:r,prevOffset:i,children:o}=e,s=Tn[Tn.length-1],l=On.substr(s.prevOffset,n-s.prevOffset);l&&s.children.push(l),s.children.push(Object(a.cloneElement)(t,null,...o)),s.prevOffset=i||n+r}var Mn=(e,t)=>{if(On=e,_n=0,En=[],Tn=[],An.lastIndex=0,!Rn(t))throw new TypeError("The conversionMap provided is not valid. It must be an object with values that are WPElements");do{}while(zn(t));return Object(a.createElement)(a.Fragment,null,...En)};const Bn=(e,t,n)=>({status:e,reference:t,message:n});var Wn=(...e)=>Bn("info",...e),Nn=(...e)=>Bn("error",...e);async function In(e,t,n=null){if(jQuery&&"function"==typeof jQuery.wpcom_proxy_request){const r={apiNamespace:"wpcom/v2",path:`/sites/${Jetpack_Boost.connection.wpcomBlogId}${Jetpack_Boost.api.prefix}${t}`,method:e,headers:{}};return"post"!==e&&"delete"!==e||!n||(r.body=n,r.headers["Content-Type"]="application/json"),new Promise(e=>{jQuery.wpcom_proxy_request(r,(t,n)=>{e({ok:!0,status:n,json:()=>Promise.resolve(t)})})})}const r={method:e,mode:"cors",headers:{"X-WP-Nonce":wpApiSettings.nonce}};return"post"!==e&&"delete"!==e||!n||(r.body=JSON.stringify(n),r.headers["Content-Type"]="application/json"),fetch(function(e){return wpApiSettings.root+Jetpack_Boost.api.namespace+Jetpack_Boost.api.prefix+e}(t),r)}async function Dn(e,t,n=null){const r=await In(e,t,n);if(!r.ok)throw new Error(await Un(r,t));return r.json()}const Un=async(e,t)=>{let n=le(Ye("HTTP %d error received while communicating with the server.","jetpack-boost"),e.status);const r=Ye("Your site's REST API does not seem to be accessible. Jetpack Boost requires access to your REST API in order to receive site performance scores. Please make sure that your site's REST API is active and accessible, and try again.","jetpack-boost");let i=null;if(500===e.status)try{i=await e.json();const{code:t}=i;"http_rest_api"===t&&(n=r)}catch(e){n=e.message}return 403===e.status&&(n=r),"/connection"===t&&(n=await qn(i,e)),n},qn=async(e,t)=>{try{e||(e=await t.json());const{code:n,message:r}=e;let i=r.replace("If you need further assistance, contact Jetpack Support: https://jetpack.com/support/","");return"siteurl_private_ip"===n&&(i=le(Ye("Your %s site does not seem to be publicly accessible. Jetpack Boost can only connect to public sites. Please make sure that your site is publicly accessible and try again.","jetpack-boost"),Jetpack_Boost.siteUrl)),n.includes("site_inaccessible")&&(i=le(Ye("Jetpack Boost needs to connect to WordPress.com which was unable to communicate with your site %1$s [HTTP 403]. Ask your web host if they allow connections from WordPress.com. Also you might want to check your %1$s/xmlrpc.php is accessible.","jetpack-boost"),Jetpack_Boost.siteUrl)),i}catch(e){return e.message}};var Fn=e=>Dn("get",e),Vn=(e,t)=>Dn("post",e,t),Gn=(e,t=null)=>Dn("delete",e,t);const Hn=[Ye("Speed up your site load time","jetpack-boost"),Ye("Decrease bounce rate of your visitors","jetpack-boost"),Ye("Improve your SEO ranking","jetpack-boost"),Ye("Sell more stuff","jetpack-boost")],Kn=Cn("connection/connect-site",async()=>{const e=await Vn("/connection");return{active:e.active,connected:e.connected,isUserConnected:e.isUserConnected,authorizeUrl:e.authorizeUrl,flowVariation:e.flowVariation,userData:e.userData}});var $n=Kn;const Yn={[Kn.rejected]:e=>{const t=Mn(le(Ye("%s If you need further assistance, contact <supportLink>Jetpack Boost Support</supportLink>.","jetpack-boost"),e.error.message),{supportLink:s.a.createElement("a",{href:"https://wordpress.org/support/plugin/jetpack-boost",target:"_blank",rel:"noopener noreferrer"})});return Nn("connect-site",t)}};var Qn=n("TSYQ"),Xn=n.n(Qn),Jn=n("LvDl");const Zn=Object.create(null);function er(e,t={}){const{since:n,version:r,alternative:i,plugin:o,link:a,hint:s}=t,l=`${e} is deprecated${n?" since version "+n:""}${r?` and will be removed${o?" from "+o:""} in version ${r}`:""}.${i?` Please use ${i} instead.`:""}${a?" See: "+a:""}${s?" Note: "+s:""}`;l in Zn||(Ne("deprecated",e,t,l),console.warn(l),Zn[l]=!0)}function tr(e,t){var n=Object(a.useState)((function(){return{inputs:t,result:e()}}))[0],r=Object(a.useRef)(!0),i=Object(a.useRef)(n),o=r.current||Boolean(t&&i.current.inputs&&function(e,t){if(e.length!==t.length)return!1;for(var n=0;n<e.length;n++)if(e[n]!==t[n])return!1;return!0}(t,i.current.inputs))?i.current:{inputs:t,result:e()};return Object(a.useEffect)((function(){r.current=!1,i.current=o}),[o]),o.result}function nr(e,t){0}function rr(e=null){if(!e){if("undefined"==typeof window)return!1;e=window}const{platform:t}=e.navigator;return-1!==t.indexOf("Mac")||Object(Jn.includes)(["iPad","iPhone"],t)}const ir="alt",or="ctrl",ar="meta",sr="shift",lr={primary:e=>e()?[ar]:[or],primaryShift:e=>e()?[sr,ar]:[or,sr],primaryAlt:e=>e()?[ir,ar]:[or,ir],secondary:e=>e()?[sr,ir,ar]:[or,sr,ir],access:e=>e()?[or,ir]:[sr,ir],ctrl:()=>[or],alt:()=>[ir],ctrlShift:()=>[or,sr],shift:()=>[sr],shiftAlt:()=>[sr,ir]},ur=(Object(Jn.mapValues)(lr,e=>(t,n=rr)=>[...e(n),t.toLowerCase()].join("+")),Object(Jn.mapValues)(lr,e=>(t,n=rr)=>{const r=n(),i={[ir]:r?"⌥":"Alt",[or]:r?"⌃":"Ctrl",[ar]:"⌘",[sr]:r?"⇧":"Shift"};return[...e(n).reduce((e,t)=>{const n=Object(Jn.get)(i,t,t);return r?[...e,n]:[...e,n,"+"]},[]),Object(Jn.capitalize)(t)]}));Object(Jn.mapValues)(ur,e=>(t,n=rr)=>e(t,n).join("")),Object(Jn.mapValues)(lr,e=>(t,n=rr)=>{const r=n(),i={[sr]:"Shift",[ar]:r?"Command":"Control",[or]:"Control",[ir]:r?"Option":"Alt",",":Ye("Comma"),".":Ye("Period"),"`":Ye("Backtick")};return[...e(n),t].map(e=>Object(Jn.capitalize)(Object(Jn.get)(i,e,e))).join(r?" ":" + ")});Object(Jn.mapValues)(lr,e=>(t,n,r=rr)=>{const i=e(r),o=function(e){return[ir,or,ar,sr].filter(t=>e[t+"Key"])}(t);return!Object(Jn.xor)(i,o).length&&(n?t.key===n:Object(Jn.includes)(i,t.key.toLowerCase()))});const cr={huge:1440,wide:1280,large:960,medium:782,small:600,mobile:480},dr={">=":"min-width","<":"max-width"},pr={">=":(e,t)=>t>=e,"<":(e,t)=>t<e},fr=Object(a.createContext)(null),mr=(e,t=">=")=>{const n=Object(a.useContext)(fr),r=function(e){const[t,n]=Object(a.useState)(()=>!(!e||"undefined"==typeof window||!window.matchMedia(e).matches));return Object(a.useEffect)(()=>{if(!e)return;const t=()=>n(window.matchMedia(e).matches);t();const r=window.matchMedia(e);return r.addListener(t),()=>{r.removeListener(t)}},[e]),e&&t}(!n&&`(${dr[t]}: ${cr[e]}px)`);return n?pr[t](cr[e],n):r};mr.__experimentalWidthProvider=fr.Provider;var hr=mr,gr=n("SSiF"),vr=n.n(gr).a;const yr=["[tabindex]","a[href]","button:not([disabled])",'input:not([type="hidden"]):not([disabled])',"select:not([disabled])","textarea:not([disabled])","iframe","object","embed","area[href]","[contenteditable]:not([contenteditable=false])"].join(",");function br(e){return e.offsetWidth>0||e.offsetHeight>0||e.getClientRects().length>0}function Sr(e){const t=e.querySelectorAll(yr);return Array.from(t).filter(e=>{if(!br(e)||function(e){return"iframe"===e.nodeName.toLowerCase()&&"-1"===e.getAttribute("tabindex")}(e))return!1;const{nodeName:t}=e;return"AREA"!==t||function(e){const t=e.closest("map[name]");if(!t)return!1;const n=e.ownerDocument.querySelector('img[usemap="#'+t.name+'"]');return!!n&&br(n)}(e)})}function xr(e){const t=e.getAttribute("tabindex");return null===t?0:parseInt(t,10)}function wr(e){return-1!==xr(e)}function kr(e,t){return{element:e,index:t}}function Cr(e){return e.element}function Or(e,t){const n=xr(e.element),r=xr(t.element);return n===r?e.index-t.index:n-r}function _r(e){return e.filter(wr).map(kr).sort(Or).map(Cr).reduce(function(){const e={};return function(t,n){const{nodeName:r,type:i,checked:o,name:a}=n;if("INPUT"!==r||"radio"!==i||!a)return t.concat(n);const s=e.hasOwnProperty(a);if(!(o||!s))return t;if(s){const n=e[a];t=Object(Jn.without)(t,n)}return e[a]=n,t.concat(n)}}(),[])}function Er(e){return _r(Sr(e))}function Tr(e){const t=Sr(e.ownerDocument.body),n=t.indexOf(e);return t.length=n,Object(Jn.last)(_r(t))}function Ar(e){const t=Sr(e.ownerDocument.body),n=t.indexOf(e),r=t.slice(n+1).filter(t=>!e.contains(t));return Object(Jn.first)(_r(r))}const Pr={focusable:r,tabbable:i};var Rr=function(){return Object(a.useCallback)(e=>{e&&e.addEventListener("keydown",t=>{if(9!==t.keyCode)return;const n=Pr.tabbable.find(e);if(!n.length)return;const r=n[0],i=n[n.length-1];t.shiftKey&&t.target===r?(t.preventDefault(),i.focus()):(t.shiftKey||t.target!==i)&&n.includes(t.target)||(t.preventDefault(),r.focus())})},[])};var zr=function(e){const t=Object(a.useRef)(),n=Object(a.useRef)(),r=Object(a.useRef)(e);return Object(a.useEffect)(()=>{r.current=e},[e]),Object(a.useCallback)(e=>{if(e){if(t.current=e,n.current)return;n.current=e.ownerDocument.activeElement}else if(n.current){const e=t.current.contains(t.current.ownerDocument.activeElement);if(t.current.isConnected&&!e)return;r.current?r.current():n.current.focus()}},[])};function Lr(e="firstElement"){const t=Object(a.useRef)(e);return Object(a.useEffect)(()=>{t.current=e},[e]),Object(a.useCallback)(e=>{if(!e||!1===t.current)return;if(e.contains(e.ownerDocument.activeElement))return;let n=e;if("firstElement"===t.current){const t=Pr.tabbable.find(e)[0];t&&(n=t)}n.focus()},[])}const jr=["button","submit"];function Mr(e){const t=Object(a.useRef)(e);Object(a.useEffect)(()=>{t.current=e},[e]);const n=Object(a.useRef)(!1),r=Object(a.useRef)(),i=Object(a.useCallback)(()=>{clearTimeout(r.current)},[]);Object(a.useEffect)(()=>()=>i(),[]),Object(a.useEffect)(()=>{e||i()},[e,i]);const o=Object(a.useCallback)(e=>{const{type:t,target:r}=e;Object(Jn.includes)(["mouseup","touchend"],t)?n.current=!1:function(e){if(!(e instanceof window.HTMLElement))return!1;switch(e.nodeName){case"A":case"BUTTON":return!0;case"INPUT":return Object(Jn.includes)(jr,e.type)}return!1}(r)&&(n.current=!0)},[]),s=Object(a.useCallback)(e=>{e.persist(),n.current||(r.current=setTimeout(()=>{document.hasFocus()?"function"==typeof t.current&&t.current(e):e.preventDefault()},0))},[]);return{onFocus:i,onMouseDown:o,onMouseUp:o,onTouchStart:o,onTouchEnd:o,onBlur:s}}function Br(e){const t=Object(a.useRef)(null),n=Object(a.useRef)(!1),r=Object(a.useRef)(e),i=Object(a.useRef)(e);return i.current=e,Object(a.useLayoutEffect)(()=>{e.forEach((e,i)=>{const o=r.current[i];"function"==typeof e&&e!==o&&!1===n.current&&(o(null),e(t.current))}),r.current=e},e),Object(a.useLayoutEffect)(()=>{n.current=!1}),Object(a.useCallback)(e=>{t.current=e,n.current=!0;(e?i.current:r.current).forEach(t=>{"function"==typeof t?t(e):t&&t.hasOwnProperty("current")&&(t.current=e)})},[])}const Wr=e=>Object(a.createElement)("path",e),Nr=({className:e,isPressed:t,...n})=>{const r={...n,className:Xn()(e,{"is-pressed":t})||void 0,role:"img","aria-hidden":!0,focusable:!1};return Object(a.createElement)("svg",r)};var Ir=Object(a.createElement)(Nr,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(a.createElement)(Wr,{d:"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z"}));function Dr(e,t,n="top",r,i,o,a,s){const[l,u="center",c]=n.split(" "),d=function(e,t,n,r,i,o,a,s){const{height:l}=t;if(i){const t=i.getBoundingClientRect().top+l-a;if(e.top<=t)return{yAxis:n,popoverTop:Math.min(e.bottom,t)}}let u=e.top+e.height/2;"bottom"===r?u=e.bottom:"top"===r&&(u=e.top);const c={popoverTop:u,contentHeight:(u-l/2>0?l/2:u)+(u+l/2>window.innerHeight?window.innerHeight-u:l/2)},d={popoverTop:e.top,contentHeight:e.top-10-l>0?l:e.top-10},p={popoverTop:e.bottom,contentHeight:e.bottom+10+l>window.innerHeight?window.innerHeight-10-e.bottom:l};let f,m=n,h=null;if(!i&&!s)if("middle"===n&&c.contentHeight===l)m="middle";else if("top"===n&&d.contentHeight===l)m="top";else if("bottom"===n&&p.contentHeight===l)m="bottom";else{m=d.contentHeight>p.contentHeight?"top":"bottom";const e="top"===m?d.contentHeight:p.contentHeight;h=e!==l?e:null}return f="middle"===m?c.popoverTop:"top"===m?d.popoverTop:p.popoverTop,{yAxis:m,popoverTop:f,contentHeight:h}}(e,t,l,c,r,0,o,s);return{...function(e,t,n,r,i,o,a,s){const{width:l}=t;"left"===n&&Xe()?n="right":"right"===n&&Xe()&&(n="left"),"left"===r&&Xe()?r="right":"right"===r&&Xe()&&(r="left");const u=Math.round(e.left+e.width/2),c={popoverLeft:u,contentWidth:(u-l/2>0?l/2:u)+(u+l/2>window.innerWidth?window.innerWidth-u:l/2)};let d=e.left;"right"===r?d=e.right:"middle"!==o&&(d=u);let p=e.right;"left"===r?p=e.left:"middle"!==o&&(p=u);const f={popoverLeft:d,contentWidth:d-l>0?l:d},m={popoverLeft:p,contentWidth:p+l>window.innerWidth?window.innerWidth-p:l};let h,g=n,v=null;if(!i&&!s)if("center"===n&&c.contentWidth===l)g="center";else if("left"===n&&f.contentWidth===l)g="left";else if("right"===n&&m.contentWidth===l)g="right";else{g=f.contentWidth>m.contentWidth?"left":"right";const e="left"===g?f.contentWidth:m.contentWidth;l>window.innerWidth&&(v=window.innerWidth),e!==l&&(g="center",c.popoverLeft=window.innerWidth/2)}if(h="center"===g?c.popoverLeft:"left"===g?f.popoverLeft:m.popoverLeft,a){const e=a.getBoundingClientRect();h=Math.min(h,e.right-l),Xe()||(h=Math.max(h,0))}return{xAxis:g,popoverLeft:h,contentWidth:v}}(e,t,u,c,r,d.yAxis,a,s),...d}}function Ur(e,t){const{defaultView:n}=t,{frameElement:r}=n;if(!r)return e;const i=r.getBoundingClientRect();return new n.DOMRect(e.left+i.left,e.top+i.top,e.width,e.height)}let qr=0;function Fr(e){const t=document.scrollingElement||document.body;e&&(qr=t.scrollTop);const n=e?"add":"remove";t.classList[n]("lockscroll"),document.documentElement.classList[n]("lockscroll"),e||(t.scrollTop=qr)}let Vr=0;function Gr(){return Object(a.useEffect)(()=>(0===Vr&&Fr(!0),++Vr,()=>{1===Vr&&Fr(!1),--Vr}),[]),null}var Hr=n("JYkG");function Kr(e){const t=Object(a.useContext)(Hr.a),n=t.slots[e]||{},r=t.fills[e],i=Object(a.useMemo)(()=>r||[],[r]);return{...n,updateSlot:Object(a.useCallback)(n=>{t.updateSlot(e,n)},[e,t.updateSlot]),unregisterSlot:Object(a.useCallback)(n=>{t.unregisterSlot(e,n)},[e,t.unregisterSlot]),fills:i,registerFill:Object(a.useCallback)(n=>{t.registerFill(e,n)},[e,t.registerFill]),unregisterFill:Object(a.useCallback)(n=>{t.unregisterFill(e,n)},[e,t.unregisterFill])}}var $r=Object(a.createContext)({registerSlot:()=>{},unregisterSlot:()=>{},registerFill:()=>{},unregisterFill:()=>{},getSlot:()=>{},getFills:()=>{},subscribe:()=>{}});var Yr=e=>{const{getSlot:t,subscribe:n}=Object(a.useContext)($r),[r,i]=Object(a.useState)(t(e));return Object(a.useEffect)(()=>{i(t(e));return n(()=>{i(t(e))})},[e]),r};function Qr({name:e,children:t,registerFill:n,unregisterFill:r}){const i=Yr(e),o=Object(a.useRef)({name:e,children:t});return Object(a.useLayoutEffect)(()=>(n(e,o.current),()=>r(e,o.current)),[]),Object(a.useLayoutEffect)(()=>{o.current.children=t,i&&i.forceUpdate()},[t]),Object(a.useLayoutEffect)(()=>{e!==o.current.name&&(r(o.current.name,o.current),o.current.name=e,n(e,o.current))},[e]),i&&i.node?(Object(Jn.isFunction)(t)&&(t=t(i.props.fillProps)),Object(l.createPortal)(t,i.node)):null}var Xr=e=>Object(a.createElement)($r.Consumer,null,({registerFill:t,unregisterFill:n})=>Object(a.createElement)(Qr,b({},e,{registerFill:t,unregisterFill:n})));const Jr=e=>!Object(Jn.isNumber)(e)&&(Object(Jn.isString)(e)||Object(Jn.isArray)(e)?!e.length:!e);class Zr extends a.Component{constructor(){super(...arguments),this.isUnmounted=!1,this.bindNode=this.bindNode.bind(this)}componentDidMount(){const{registerSlot:e}=this.props;e(this.props.name,this)}componentWillUnmount(){const{unregisterSlot:e}=this.props;this.isUnmounted=!0,e(this.props.name,this)}componentDidUpdate(e){const{name:t,unregisterSlot:n,registerSlot:r}=this.props;e.name!==t&&(n(e.name),r(t,this))}bindNode(e){this.node=e}forceUpdate(){this.isUnmounted||super.forceUpdate()}render(){const{children:e,name:t,fillProps:n={},getFills:r}=this.props,i=Object(Jn.map)(r(t,this),e=>{const t=Object(Jn.isFunction)(e.children)?e.children(n):e.children;return a.Children.map(t,(e,t)=>{if(!e||Object(Jn.isString)(e))return e;const n=e.key||t;return Object(a.cloneElement)(e,{key:n})})}).filter(Object(Jn.negate)(Jr));return Object(a.createElement)(a.Fragment,null,Object(Jn.isFunction)(e)?e(i):i)}}var ei=e=>Object(a.createElement)($r.Consumer,null,({registerSlot:t,unregisterSlot:n,getFills:r})=>Object(a.createElement)(Zr,b({},e,{registerSlot:t,unregisterSlot:n,getFills:r})));function ti(){const[,e]=Object(a.useState)({}),t=Object(a.useRef)(!0);return Object(a.useEffect)(()=>()=>{t.current=!1},[]),()=>{t.current&&e({})}}function ni({name:e,children:t}){const n=Kr(e),r=Object(a.useRef)({rerender:ti()});return Object(a.useEffect)(()=>(n.registerFill(r),()=>{n.unregisterFill(r)}),[n.registerFill,n.unregisterFill]),n.ref&&n.ref.current?("function"==typeof t&&(t=t(n.fillProps)),Object(l.createPortal)(t,n.ref.current)):null}function ri({name:e,fillProps:t={},as:n="div",...r}){const i=Object(a.useContext)(Hr.a),o=Object(a.useRef)();return Object(a.useLayoutEffect)(()=>(i.registerSlot(e,o,t),()=>{i.unregisterSlot(e,o)}),[i.registerSlot,i.unregisterSlot,e]),Object(a.useLayoutEffect)(()=>{i.updateSlot(e,t)}),Object(a.createElement)(n,b({ref:o},r))}a.Component;function ii(e){return Object(a.createElement)(a.Fragment,null,Object(a.createElement)(Xr,e),Object(a.createElement)(ni,e))}function oi({bubblesVirtually:e,...t}){return e?Object(a.createElement)(ri,t):Object(a.createElement)(ei,t)}function ai(e){return"appear"===e?"top":"left"}function si(e){if("loading"===e.type)return Xn()("components-animate__loading");const{type:t,origin:n=ai(t)}=e;if("appear"===t){const[e,t="center"]=n.split(" ");return Xn()("components-animate__appear",{["is-from-"+t]:"center"!==t,["is-from-"+e]:"middle"!==e})}return"slide-in"===t?Xn()("components-animate__slide-in","is-from-"+n):void 0}function li(e,t,n,r=!1,i){if(t)return t;if(n){if(!e.current)return;return Ur(n(e.current),e.current.ownerDocument)}if(!1!==r){if(!(r&&window.Range&&window.Element&&window.DOMRect))return;if("function"==typeof(null==r?void 0:r.cloneRange))return Ur(function(e){if(!e.collapsed){const t=Array.from(e.getClientRects());if(1===t.length)return t[0];const n=t.filter(({width:e})=>e>1);if(0===n.length)return e.getBoundingClientRect();if(1===n.length)return n[0];let{top:r,bottom:i,left:o,right:a}=n[0];for(const{top:e,bottom:t,left:s,right:l}of n)e<r&&(r=e),t>i&&(i=t),s<o&&(o=s),l>a&&(a=l);return new window.DOMRect(o,r,a-o,i-r)}const{startContainer:t}=e,{ownerDocument:n}=t;if("BR"===t.nodeName){const{parentNode:r}=t;nr();const i=Array.from(r.childNodes).indexOf(t);nr(),(e=n.createRange()).setStart(r,i),e.setEnd(r,i)}let r=e.getClientRects()[0];if(!r){nr();const t=n.createTextNode("");(e=e.cloneRange()).insertNode(t),r=e.getClientRects()[0],nr(t.parentNode),t.parentNode.removeChild(t)}return r}(r),r.endContainer.ownerDocument);if("function"==typeof(null==r?void 0:r.getBoundingClientRect)){const e=Ur(r.getBoundingClientRect(),r.ownerDocument);return i?e:ui(e,r)}const{top:e,bottom:t}=r,n=e.getBoundingClientRect(),o=t.getBoundingClientRect(),a=Ur(new window.DOMRect(n.left,n.top,n.width,o.bottom-n.top),e.ownerDocument);return i?a:ui(a,r)}if(!e.current)return;const{parentNode:o}=e.current,a=o.getBoundingClientRect();return i?a:ui(a,o)}function ui(e,t){const{paddingTop:n,paddingBottom:r,paddingLeft:i,paddingRight:o}=(a=t).ownerDocument.defaultView.getComputedStyle(a);var a;const s=n?parseInt(n,10):0,l=r?parseInt(r,10):0,u=i?parseInt(i,10):0,c=o?parseInt(o,10):0;return{x:e.left+u,y:e.top+s,width:e.width-u-c,height:e.height-s-l,left:e.left+u,right:e.right-c,top:e.top+s,bottom:e.bottom-l}}function ci(e,t,n){n?e.getAttribute(t)!==n&&e.setAttribute(t,n):e.hasAttribute(t)&&e.removeAttribute(t)}function di(e,t,n=""){e.style[t]!==n&&(e.style[t]=n)}function pi(e,t,n){n?e.classList.contains(t)||e.classList.add(t):e.classList.contains(t)&&e.classList.remove(t)}const fi=({headerTitle:e,onClose:t,onKeyDown:n,children:r,className:i,noArrow:o=!0,isAlternate:s,position:l="bottom right",range:u,focusOnMount:c="firstElement",anchorRef:d,shouldAnchorIncludePadding:p,anchorRect:f,getAnchorRect:m,expandOnMobile:h,animate:g=!0,onClickOutside:v,onFocusOutside:y,__unstableStickyBoundaryElement:S,__unstableSlotName:x="Popover",__unstableObserveElement:w,__unstableBoundaryParent:k,__unstableForcePosition:C,...O})=>{const _=Object(a.useRef)(null),E=Object(a.useRef)(null),T=Object(a.useRef)(),A=hr("medium","<"),[P,R]=Object(a.useState)(),z=Kr(x),L=h&&A,[j,M]=vr();o=L||o,Object(a.useLayoutEffect)(()=>{if(L)return pi(T.current,"is-without-arrow",o),pi(T.current,"is-alternate",s),ci(T.current,"data-x-axis"),ci(T.current,"data-y-axis"),di(T.current,"top"),di(T.current,"left"),di(E.current,"maxHeight"),void di(E.current,"maxWidth");const e=()=>{if(!T.current||!E.current)return;let e=li(_,f,m,d,p);if(!e)return;const{offsetParent:t,ownerDocument:n}=T.current;let r,i=0;if(t&&t!==n.body){const n=t.getBoundingClientRect();i=n.top,e=new window.DOMRect(e.left-n.left,e.top-n.top,e.width,e.height)}var a;k&&(r=null===(a=T.current.closest(".popover-slot"))||void 0===a?void 0:a.parentNode);const u=M.height?M:E.current.getBoundingClientRect(),{popoverTop:c,popoverLeft:h,xAxis:g,yAxis:v,contentHeight:y,contentWidth:b}=Dr(e,u,l,S,T.current,i,r,C);"number"==typeof c&&"number"==typeof h&&(di(T.current,"top",c+"px"),di(T.current,"left",h+"px")),pi(T.current,"is-without-arrow",o||"center"===g&&"middle"===v),pi(T.current,"is-alternate",s),ci(T.current,"data-x-axis",g),ci(T.current,"data-y-axis",v),di(E.current,"maxHeight","number"==typeof y?y+"px":""),di(E.current,"maxWidth","number"==typeof b?b+"px":"");R(({left:"right",right:"left"}[g]||"center")+" "+({top:"bottom",bottom:"top"}[v]||"middle"))};e();const{ownerDocument:t}=T.current,{defaultView:n}=t,r=n.setInterval(e,500);let i;const a=()=>{n.cancelAnimationFrame(i),i=n.requestAnimationFrame(e)};n.addEventListener("click",a),n.addEventListener("resize",e),n.addEventListener("scroll",e,!0);const u=function(e){if(e)return e.endContainer?e.endContainer.ownerDocument:e.top?e.top.ownerDocument:e.ownerDocument}(d);let c;return u&&u!==t&&(u.defaultView.addEventListener("resize",e),u.defaultView.addEventListener("scroll",e,!0)),w&&(c=new n.MutationObserver(e),c.observe(w,{attributes:!0})),()=>{n.clearInterval(r),n.removeEventListener("resize",e),n.removeEventListener("scroll",e,!0),n.removeEventListener("click",a),n.cancelAnimationFrame(i),u&&u!==t&&(u.defaultView.removeEventListener("resize",e),u.defaultView.removeEventListener("scroll",e,!0)),c&&c.disconnect()}},[L,f,m,d,p,l,M,S,w,k]);const B=Rr(),W=zr(),N=Lr(c),I=Mr((function(e){if(y)return void y(e);if(!v)return void(t&&t());let n;try{n=new window.MouseEvent("click")}catch(e){n=document.createEvent("MouseEvent"),n.initMouseEvent("click",!0,!0,window,0,0,0,0,0,!1,!1,!1,!1,0,null)}Object.defineProperty(n,"target",{get:()=>e.relatedTarget}),er("Popover onClickOutside prop",{since:"5.3",alternative:"onFocusOutside"}),v(n)})),D=Br([T,c?B:null,c?W:null,c?N:null]);const U=Boolean(g&&P)&&si({type:"appear",origin:P});let q=Object(a.createElement)("div",b({className:Xn()("components-popover",i,U,{"is-expanded":L,"is-without-arrow":o,"is-alternate":s})},O,{onKeyDown:e=>{27===e.keyCode&&t&&(e.stopPropagation(),t()),n&&n(e)}},I,{ref:D,tabIndex:"-1"}),L&&Object(a.createElement)(Gr,null),L&&Object(a.createElement)("div",{className:"components-popover__header"},Object(a.createElement)("span",{className:"components-popover__header-title"},e),Object(a.createElement)(Ts,{className:"components-popover__close",icon:Ir,onClick:t})),Object(a.createElement)("div",{ref:E,className:"components-popover__content"},Object(a.createElement)("div",{style:{position:"relative"}},j,r)));return z.ref&&(q=Object(a.createElement)(ii,{name:x},q)),d||f?q:Object(a.createElement)("span",{ref:_},q)};fi.Slot=({name:e="Popover"})=>Object(a.createElement)(oi,{bubblesVirtually:!0,name:e,className:"popover-slot"});var mi=fi;var hi,gi=function({shortcut:e,className:t}){if(!e)return null;let n,r;return Object(Jn.isString)(e)&&(n=e),Object(Jn.isObject)(e)&&(n=e.display,r=e.ariaLabel),Object(a.createElement)("span",{className:t,"aria-label":r},n)},vi=n("7Jlx"),yi=n("C6yU");function bi(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Si(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function xi(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Si(Object(n),!0).forEach((function(t){bi(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Si(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function wi(e,t){if(null==e)return{};var n,r,i={},o=Object.keys(e);for(r=0;r<o.length;r++)n=o[r],t.indexOf(n)>=0||(i[n]=e[n]);return i}function ki(e){return"object"==typeof e&&null!=e}function Ci(e){return Object(a.useState)(e)[0]}function Oi(e,t){if(e===t)return!0;if(!e)return!1;if(!t)return!1;if("object"!=typeof e)return!1;if("object"!=typeof t)return!1;var n=Object.keys(e),r=Object.keys(t),i=n.length;if(r.length!==i)return!1;for(var o=0,a=n;o<a.length;o++){var s=a[o];if(e[s]!==t[s])return!1}return!0}function _i(e){return e?e.ownerDocument||e:document}try{hi=window}catch(e){}var Ei,Ti,Ai=(Ti=Ei&&_i(Ei).defaultView||hi,Boolean(void 0!==Ti&&Ti.document&&Ti.document.createElement)),Pi=Ai?a.useLayoutEffect:a.useEffect;function Ri(e){return!!Ai&&-1!==window.navigator.userAgent.indexOf(e)}function zi(e){var t=e.getBoundingClientRect();return{width:t.width,height:t.height,top:t.top,right:t.right,bottom:t.bottom,left:t.left,x:t.left,y:t.top}}function Li(e){if(null==e)return window;if("[object Window]"!==e.toString()){var t=e.ownerDocument;return t&&t.defaultView||window}return e}function ji(e){var t=Li(e);return{scrollLeft:t.pageXOffset,scrollTop:t.pageYOffset}}function Mi(e){return e instanceof Li(e).Element||e instanceof Element}function Bi(e){return e instanceof Li(e).HTMLElement||e instanceof HTMLElement}function Wi(e){return"undefined"!=typeof ShadowRoot&&(e instanceof Li(e).ShadowRoot||e instanceof ShadowRoot)}function Ni(e){return e?(e.nodeName||"").toLowerCase():null}function Ii(e){return((Mi(e)?e.ownerDocument:e.document)||window.document).documentElement}function Di(e){return zi(Ii(e)).left+ji(e).scrollLeft}function Ui(e){return Li(e).getComputedStyle(e)}function qi(e){var t=Ui(e),n=t.overflow,r=t.overflowX,i=t.overflowY;return/auto|scroll|overlay|hidden/.test(n+i+r)}function Fi(e,t,n){void 0===n&&(n=!1);var r,i=Ii(t),o=zi(e),a=Bi(t),s={scrollLeft:0,scrollTop:0},l={x:0,y:0};return(a||!a&&!n)&&(("body"!==Ni(t)||qi(i))&&(s=(r=t)!==Li(r)&&Bi(r)?function(e){return{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}}(r):ji(r)),Bi(t)?((l=zi(t)).x+=t.clientLeft,l.y+=t.clientTop):i&&(l.x=Di(i))),{x:o.left+s.scrollLeft-l.x,y:o.top+s.scrollTop-l.y,width:o.width,height:o.height}}function Vi(e){var t=zi(e),n=e.offsetWidth,r=e.offsetHeight;return Math.abs(t.width-n)<=1&&(n=t.width),Math.abs(t.height-r)<=1&&(r=t.height),{x:e.offsetLeft,y:e.offsetTop,width:n,height:r}}function Gi(e){return"html"===Ni(e)?e:e.assignedSlot||e.parentNode||(Wi(e)?e.host:null)||Ii(e)}function Hi(e,t){var n;void 0===t&&(t=[]);var r=function e(t){return["html","body","#document"].indexOf(Ni(t))>=0?t.ownerDocument.body:Bi(t)&&qi(t)?t:e(Gi(t))}(e),i=r===(null==(n=e.ownerDocument)?void 0:n.body),o=Li(r),a=i?[o].concat(o.visualViewport||[],qi(r)?r:[]):r,s=t.concat(a);return i?s:s.concat(Hi(Gi(a)))}function Ki(e){return["table","td","th"].indexOf(Ni(e))>=0}function $i(e){return Bi(e)&&"fixed"!==Ui(e).position?e.offsetParent:null}function Yi(e){for(var t=Li(e),n=$i(e);n&&Ki(n)&&"static"===Ui(n).position;)n=$i(n);return n&&("html"===Ni(n)||"body"===Ni(n)&&"static"===Ui(n).position)?t:n||function(e){var t=-1!==navigator.userAgent.toLowerCase().indexOf("firefox");if(-1!==navigator.userAgent.indexOf("Trident")&&Bi(e)&&"fixed"===Ui(e).position)return null;for(var n=Gi(e);Bi(n)&&["html","body"].indexOf(Ni(n))<0;){var r=Ui(n);if("none"!==r.transform||"none"!==r.perspective||"paint"===r.contain||-1!==["transform","perspective"].indexOf(r.willChange)||t&&"filter"===r.willChange||t&&r.filter&&"none"!==r.filter)return n;n=n.parentNode}return null}(e)||t}var Qi="top",Xi="bottom",Ji="right",Zi="left",eo=[Qi,Xi,Ji,Zi],to=eo.reduce((function(e,t){return e.concat([t+"-start",t+"-end"])}),[]),no=[].concat(eo,["auto"]).reduce((function(e,t){return e.concat([t,t+"-start",t+"-end"])}),[]),ro=["beforeRead","read","afterRead","beforeMain","main","afterMain","beforeWrite","write","afterWrite"];function io(e){var t=new Map,n=new Set,r=[];return e.forEach((function(e){t.set(e.name,e)})),e.forEach((function(e){n.has(e.name)||function e(i){n.add(i.name),[].concat(i.requires||[],i.requiresIfExists||[]).forEach((function(r){if(!n.has(r)){var i=t.get(r);i&&e(i)}})),r.push(i)}(e)})),r}var oo={placement:"bottom",modifiers:[],strategy:"absolute"};function ao(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return!t.some((function(e){return!(e&&"function"==typeof e.getBoundingClientRect)}))}function so(e){void 0===e&&(e={});var t=e,n=t.defaultModifiers,r=void 0===n?[]:n,i=t.defaultOptions,o=void 0===i?oo:i;return function(e,t,n){void 0===n&&(n=o);var i,a,s={placement:"bottom",orderedModifiers:[],options:Object.assign({},oo,o),modifiersData:{},elements:{reference:e,popper:t},attributes:{},styles:{}},l=[],u=!1,c={state:s,setOptions:function(n){d(),s.options=Object.assign({},o,s.options,n),s.scrollParents={reference:Mi(e)?Hi(e):e.contextElement?Hi(e.contextElement):[],popper:Hi(t)};var i=function(e){var t=io(e);return ro.reduce((function(e,n){return e.concat(t.filter((function(e){return e.phase===n})))}),[])}(function(e){var t=e.reduce((function(e,t){var n=e[t.name];return e[t.name]=n?Object.assign({},n,t,{options:Object.assign({},n.options,t.options),data:Object.assign({},n.data,t.data)}):t,e}),{});return Object.keys(t).map((function(e){return t[e]}))}([].concat(r,s.options.modifiers)));return s.orderedModifiers=i.filter((function(e){return e.enabled})),s.orderedModifiers.forEach((function(e){var t=e.name,n=e.options,r=void 0===n?{}:n,i=e.effect;if("function"==typeof i){var o=i({state:s,name:t,instance:c,options:r});l.push(o||function(){})}})),c.update()},forceUpdate:function(){if(!u){var e=s.elements,t=e.reference,n=e.popper;if(ao(t,n)){s.rects={reference:Fi(t,Yi(n),"fixed"===s.options.strategy),popper:Vi(n)},s.reset=!1,s.placement=s.options.placement,s.orderedModifiers.forEach((function(e){return s.modifiersData[e.name]=Object.assign({},e.data)}));for(var r=0;r<s.orderedModifiers.length;r++)if(!0!==s.reset){var i=s.orderedModifiers[r],o=i.fn,a=i.options,l=void 0===a?{}:a,d=i.name;"function"==typeof o&&(s=o({state:s,options:l,name:d,instance:c})||s)}else s.reset=!1,r=-1}}},update:(i=function(){return new Promise((function(e){c.forceUpdate(),e(s)}))},function(){return a||(a=new Promise((function(e){Promise.resolve().then((function(){a=void 0,e(i())}))}))),a}),destroy:function(){d(),u=!0}};if(!ao(e,t))return c;function d(){l.forEach((function(e){return e()})),l=[]}return c.setOptions(n).then((function(e){!u&&n.onFirstUpdate&&n.onFirstUpdate(e)})),c}}var lo={passive:!0};var uo={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:function(e){var t=e.state,n=e.instance,r=e.options,i=r.scroll,o=void 0===i||i,a=r.resize,s=void 0===a||a,l=Li(t.elements.popper),u=[].concat(t.scrollParents.reference,t.scrollParents.popper);return o&&u.forEach((function(e){e.addEventListener("scroll",n.update,lo)})),s&&l.addEventListener("resize",n.update,lo),function(){o&&u.forEach((function(e){e.removeEventListener("scroll",n.update,lo)})),s&&l.removeEventListener("resize",n.update,lo)}},data:{}};function co(e){return e.split("-")[0]}function po(e){return e.split("-")[1]}function fo(e){return["top","bottom"].indexOf(e)>=0?"x":"y"}function mo(e){var t,n=e.reference,r=e.element,i=e.placement,o=i?co(i):null,a=i?po(i):null,s=n.x+n.width/2-r.width/2,l=n.y+n.height/2-r.height/2;switch(o){case Qi:t={x:s,y:n.y-r.height};break;case Xi:t={x:s,y:n.y+n.height};break;case Ji:t={x:n.x+n.width,y:l};break;case Zi:t={x:n.x-r.width,y:l};break;default:t={x:n.x,y:n.y}}var u=o?fo(o):null;if(null!=u){var c="y"===u?"height":"width";switch(a){case"start":t[u]=t[u]-(n[c]/2-r[c]/2);break;case"end":t[u]=t[u]+(n[c]/2-r[c]/2)}}return t}var ho={name:"popperOffsets",enabled:!0,phase:"read",fn:function(e){var t=e.state,n=e.name;t.modifiersData[n]=mo({reference:t.rects.reference,element:t.rects.popper,strategy:"absolute",placement:t.placement})},data:{}},go=Math.max,vo=Math.min,yo=Math.round,bo={top:"auto",right:"auto",bottom:"auto",left:"auto"};function So(e){var t,n=e.popper,r=e.popperRect,i=e.placement,o=e.offsets,a=e.position,s=e.gpuAcceleration,l=e.adaptive,u=e.roundOffsets,c=!0===u?function(e){var t=e.x,n=e.y,r=window.devicePixelRatio||1;return{x:yo(yo(t*r)/r)||0,y:yo(yo(n*r)/r)||0}}(o):"function"==typeof u?u(o):o,d=c.x,p=void 0===d?0:d,f=c.y,m=void 0===f?0:f,h=o.hasOwnProperty("x"),g=o.hasOwnProperty("y"),v=Zi,y=Qi,b=window;if(l){var S=Yi(n),x="clientHeight",w="clientWidth";S===Li(n)&&"static"!==Ui(S=Ii(n)).position&&(x="scrollHeight",w="scrollWidth"),S=S,i===Qi&&(y=Xi,m-=S[x]-r.height,m*=s?1:-1),i===Zi&&(v=Ji,p-=S[w]-r.width,p*=s?1:-1)}var k,C=Object.assign({position:a},l&&bo);return s?Object.assign({},C,((k={})[y]=g?"0":"",k[v]=h?"0":"",k.transform=(b.devicePixelRatio||1)<2?"translate("+p+"px, "+m+"px)":"translate3d("+p+"px, "+m+"px, 0)",k)):Object.assign({},C,((t={})[y]=g?m+"px":"",t[v]=h?p+"px":"",t.transform="",t))}var xo={left:"right",right:"left",bottom:"top",top:"bottom"};function wo(e){return e.replace(/left|right|bottom|top/g,(function(e){return xo[e]}))}var ko={start:"end",end:"start"};function Co(e){return e.replace(/start|end/g,(function(e){return ko[e]}))}function Oo(e,t){var n=t.getRootNode&&t.getRootNode();if(e.contains(t))return!0;if(n&&Wi(n)){var r=t;do{if(r&&e.isSameNode(r))return!0;r=r.parentNode||r.host}while(r)}return!1}function _o(e){return Object.assign({},e,{left:e.x,top:e.y,right:e.x+e.width,bottom:e.y+e.height})}function Eo(e,t){return"viewport"===t?_o(function(e){var t=Li(e),n=Ii(e),r=t.visualViewport,i=n.clientWidth,o=n.clientHeight,a=0,s=0;return r&&(i=r.width,o=r.height,/^((?!chrome|android).)*safari/i.test(navigator.userAgent)||(a=r.offsetLeft,s=r.offsetTop)),{width:i,height:o,x:a+Di(e),y:s}}(e)):Bi(t)?function(e){var t=zi(e);return t.top=t.top+e.clientTop,t.left=t.left+e.clientLeft,t.bottom=t.top+e.clientHeight,t.right=t.left+e.clientWidth,t.width=e.clientWidth,t.height=e.clientHeight,t.x=t.left,t.y=t.top,t}(t):_o(function(e){var t,n=Ii(e),r=ji(e),i=null==(t=e.ownerDocument)?void 0:t.body,o=go(n.scrollWidth,n.clientWidth,i?i.scrollWidth:0,i?i.clientWidth:0),a=go(n.scrollHeight,n.clientHeight,i?i.scrollHeight:0,i?i.clientHeight:0),s=-r.scrollLeft+Di(e),l=-r.scrollTop;return"rtl"===Ui(i||n).direction&&(s+=go(n.clientWidth,i?i.clientWidth:0)-o),{width:o,height:a,x:s,y:l}}(Ii(e)))}function To(e,t,n){var r="clippingParents"===t?function(e){var t=Hi(Gi(e)),n=["absolute","fixed"].indexOf(Ui(e).position)>=0&&Bi(e)?Yi(e):e;return Mi(n)?t.filter((function(e){return Mi(e)&&Oo(e,n)&&"body"!==Ni(e)})):[]}(e):[].concat(t),i=[].concat(r,[n]),o=i[0],a=i.reduce((function(t,n){var r=Eo(e,n);return t.top=go(r.top,t.top),t.right=vo(r.right,t.right),t.bottom=vo(r.bottom,t.bottom),t.left=go(r.left,t.left),t}),Eo(e,o));return a.width=a.right-a.left,a.height=a.bottom-a.top,a.x=a.left,a.y=a.top,a}function Ao(e){return Object.assign({},{top:0,right:0,bottom:0,left:0},e)}function Po(e,t){return t.reduce((function(t,n){return t[n]=e,t}),{})}function Ro(e,t){void 0===t&&(t={});var n=t,r=n.placement,i=void 0===r?e.placement:r,o=n.boundary,a=void 0===o?"clippingParents":o,s=n.rootBoundary,l=void 0===s?"viewport":s,u=n.elementContext,c=void 0===u?"popper":u,d=n.altBoundary,p=void 0!==d&&d,f=n.padding,m=void 0===f?0:f,h=Ao("number"!=typeof m?m:Po(m,eo)),g="popper"===c?"reference":"popper",v=e.elements.reference,y=e.rects.popper,b=e.elements[p?g:c],S=To(Mi(b)?b:b.contextElement||Ii(e.elements.popper),a,l),x=zi(v),w=mo({reference:x,element:y,strategy:"absolute",placement:i}),k=_o(Object.assign({},y,w)),C="popper"===c?k:x,O={top:S.top-C.top+h.top,bottom:C.bottom-S.bottom+h.bottom,left:S.left-C.left+h.left,right:C.right-S.right+h.right},_=e.modifiersData.offset;if("popper"===c&&_){var E=_[i];Object.keys(O).forEach((function(e){var t=[Ji,Xi].indexOf(e)>=0?1:-1,n=[Qi,Xi].indexOf(e)>=0?"y":"x";O[e]+=E[n]*t}))}return O}function zo(e,t,n){return go(e,vo(t,n))}function Lo(e,t,n){return void 0===n&&(n={x:0,y:0}),{top:e.top-t.height-n.y,right:e.right-t.width+n.x,bottom:e.bottom-t.height+n.y,left:e.left-t.width-n.x}}function jo(e){return[Qi,Ji,Xi,Zi].some((function(t){return e[t]>=0}))}var Mo=so({defaultModifiers:[uo,ho,{name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:function(e){var t=e.state,n=e.options,r=n.gpuAcceleration,i=void 0===r||r,o=n.adaptive,a=void 0===o||o,s=n.roundOffsets,l=void 0===s||s,u={placement:co(t.placement),popper:t.elements.popper,popperRect:t.rects.popper,gpuAcceleration:i};null!=t.modifiersData.popperOffsets&&(t.styles.popper=Object.assign({},t.styles.popper,So(Object.assign({},u,{offsets:t.modifiersData.popperOffsets,position:t.options.strategy,adaptive:a,roundOffsets:l})))),null!=t.modifiersData.arrow&&(t.styles.arrow=Object.assign({},t.styles.arrow,So(Object.assign({},u,{offsets:t.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:l})))),t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-placement":t.placement})},data:{}},{name:"applyStyles",enabled:!0,phase:"write",fn:function(e){var t=e.state;Object.keys(t.elements).forEach((function(e){var n=t.styles[e]||{},r=t.attributes[e]||{},i=t.elements[e];Bi(i)&&Ni(i)&&(Object.assign(i.style,n),Object.keys(r).forEach((function(e){var t=r[e];!1===t?i.removeAttribute(e):i.setAttribute(e,!0===t?"":t)})))}))},effect:function(e){var t=e.state,n={popper:{position:t.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(t.elements.popper.style,n.popper),t.styles=n,t.elements.arrow&&Object.assign(t.elements.arrow.style,n.arrow),function(){Object.keys(t.elements).forEach((function(e){var r=t.elements[e],i=t.attributes[e]||{},o=Object.keys(t.styles.hasOwnProperty(e)?t.styles[e]:n[e]).reduce((function(e,t){return e[t]="",e}),{});Bi(r)&&Ni(r)&&(Object.assign(r.style,o),Object.keys(i).forEach((function(e){r.removeAttribute(e)})))}))}},requires:["computeStyles"]},{name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:function(e){var t=e.state,n=e.options,r=e.name,i=n.offset,o=void 0===i?[0,0]:i,a=no.reduce((function(e,n){return e[n]=function(e,t,n){var r=co(e),i=[Zi,Qi].indexOf(r)>=0?-1:1,o="function"==typeof n?n(Object.assign({},t,{placement:e})):n,a=o[0],s=o[1];return a=a||0,s=(s||0)*i,[Zi,Ji].indexOf(r)>=0?{x:s,y:a}:{x:a,y:s}}(n,t.rects,o),e}),{}),s=a[t.placement],l=s.x,u=s.y;null!=t.modifiersData.popperOffsets&&(t.modifiersData.popperOffsets.x+=l,t.modifiersData.popperOffsets.y+=u),t.modifiersData[r]=a}},{name:"flip",enabled:!0,phase:"main",fn:function(e){var t=e.state,n=e.options,r=e.name;if(!t.modifiersData[r]._skip){for(var i=n.mainAxis,o=void 0===i||i,a=n.altAxis,s=void 0===a||a,l=n.fallbackPlacements,u=n.padding,c=n.boundary,d=n.rootBoundary,p=n.altBoundary,f=n.flipVariations,m=void 0===f||f,h=n.allowedAutoPlacements,g=t.options.placement,v=co(g),y=l||(v===g||!m?[wo(g)]:function(e){if("auto"===co(e))return[];var t=wo(e);return[Co(e),t,Co(t)]}(g)),b=[g].concat(y).reduce((function(e,n){return e.concat("auto"===co(n)?function(e,t){void 0===t&&(t={});var n=t,r=n.placement,i=n.boundary,o=n.rootBoundary,a=n.padding,s=n.flipVariations,l=n.allowedAutoPlacements,u=void 0===l?no:l,c=po(r),d=c?s?to:to.filter((function(e){return po(e)===c})):eo,p=d.filter((function(e){return u.indexOf(e)>=0}));0===p.length&&(p=d);var f=p.reduce((function(t,n){return t[n]=Ro(e,{placement:n,boundary:i,rootBoundary:o,padding:a})[co(n)],t}),{});return Object.keys(f).sort((function(e,t){return f[e]-f[t]}))}(t,{placement:n,boundary:c,rootBoundary:d,padding:u,flipVariations:m,allowedAutoPlacements:h}):n)}),[]),S=t.rects.reference,x=t.rects.popper,w=new Map,k=!0,C=b[0],O=0;O<b.length;O++){var _=b[O],E=co(_),T="start"===po(_),A=[Qi,Xi].indexOf(E)>=0,P=A?"width":"height",R=Ro(t,{placement:_,boundary:c,rootBoundary:d,altBoundary:p,padding:u}),z=A?T?Ji:Zi:T?Xi:Qi;S[P]>x[P]&&(z=wo(z));var L=wo(z),j=[];if(o&&j.push(R[E]<=0),s&&j.push(R[z]<=0,R[L]<=0),j.every((function(e){return e}))){C=_,k=!1;break}w.set(_,j)}if(k)for(var M=function(e){var t=b.find((function(t){var n=w.get(t);if(n)return n.slice(0,e).every((function(e){return e}))}));if(t)return C=t,"break"},B=m?3:1;B>0;B--){if("break"===M(B))break}t.placement!==C&&(t.modifiersData[r]._skip=!0,t.placement=C,t.reset=!0)}},requiresIfExists:["offset"],data:{_skip:!1}},{name:"preventOverflow",enabled:!0,phase:"main",fn:function(e){var t=e.state,n=e.options,r=e.name,i=n.mainAxis,o=void 0===i||i,a=n.altAxis,s=void 0!==a&&a,l=n.boundary,u=n.rootBoundary,c=n.altBoundary,d=n.padding,p=n.tether,f=void 0===p||p,m=n.tetherOffset,h=void 0===m?0:m,g=Ro(t,{boundary:l,rootBoundary:u,padding:d,altBoundary:c}),v=co(t.placement),y=po(t.placement),b=!y,S=fo(v),x="x"===S?"y":"x",w=t.modifiersData.popperOffsets,k=t.rects.reference,C=t.rects.popper,O="function"==typeof h?h(Object.assign({},t.rects,{placement:t.placement})):h,_={x:0,y:0};if(w){if(o||s){var E="y"===S?Qi:Zi,T="y"===S?Xi:Ji,A="y"===S?"height":"width",P=w[S],R=w[S]+g[E],z=w[S]-g[T],L=f?-C[A]/2:0,j="start"===y?k[A]:C[A],M="start"===y?-C[A]:-k[A],B=t.elements.arrow,W=f&&B?Vi(B):{width:0,height:0},N=t.modifiersData["arrow#persistent"]?t.modifiersData["arrow#persistent"].padding:{top:0,right:0,bottom:0,left:0},I=N[E],D=N[T],U=zo(0,k[A],W[A]),q=b?k[A]/2-L-U-I-O:j-U-I-O,F=b?-k[A]/2+L+U+D+O:M+U+D+O,V=t.elements.arrow&&Yi(t.elements.arrow),G=V?"y"===S?V.clientTop||0:V.clientLeft||0:0,H=t.modifiersData.offset?t.modifiersData.offset[t.placement][S]:0,K=w[S]+q-H-G,$=w[S]+F-H;if(o){var Y=zo(f?vo(R,K):R,P,f?go(z,$):z);w[S]=Y,_[S]=Y-P}if(s){var Q="x"===S?Qi:Zi,X="x"===S?Xi:Ji,J=w[x],Z=J+g[Q],ee=J-g[X],te=zo(f?vo(Z,K):Z,J,f?go(ee,$):ee);w[x]=te,_[x]=te-J}}t.modifiersData[r]=_}},requiresIfExists:["offset"]},{name:"arrow",enabled:!0,phase:"main",fn:function(e){var t,n=e.state,r=e.name,i=e.options,o=n.elements.arrow,a=n.modifiersData.popperOffsets,s=co(n.placement),l=fo(s),u=[Zi,Ji].indexOf(s)>=0?"height":"width";if(o&&a){var c=function(e,t){return Ao("number"!=typeof(e="function"==typeof e?e(Object.assign({},t.rects,{placement:t.placement})):e)?e:Po(e,eo))}(i.padding,n),d=Vi(o),p="y"===l?Qi:Zi,f="y"===l?Xi:Ji,m=n.rects.reference[u]+n.rects.reference[l]-a[l]-n.rects.popper[u],h=a[l]-n.rects.reference[l],g=Yi(o),v=g?"y"===l?g.clientHeight||0:g.clientWidth||0:0,y=m/2-h/2,b=c[p],S=v-d[u]-c[f],x=v/2-d[u]/2+y,w=zo(b,x,S),k=l;n.modifiersData[r]=((t={})[k]=w,t.centerOffset=w-x,t)}},effect:function(e){var t=e.state,n=e.options.element,r=void 0===n?"[data-popper-arrow]":n;null!=r&&("string"!=typeof r||(r=t.elements.popper.querySelector(r)))&&Oo(t.elements.popper,r)&&(t.elements.arrow=r)},requires:["popperOffsets"],requiresIfExists:["preventOverflow"]},{name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:function(e){var t=e.state,n=e.name,r=t.rects.reference,i=t.rects.popper,o=t.modifiersData.preventOverflow,a=Ro(t,{elementContext:"reference"}),s=Ro(t,{altBoundary:!0}),l=Lo(a,r),u=Lo(s,i,o),c=jo(l),d=jo(u);t.modifiersData[n]={referenceClippingOffsets:l,popperEscapeOffsets:u,isReferenceHidden:c,hasPopperEscaped:d},t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-reference-hidden":c,"data-popper-escaped":d})}}]});function Bo(e){return void 0===e&&(e="id"),(e?e+"-":"")+Math.random().toString(32).substr(2,6)}var Wo=Object(a.createContext)(Bo);function No(e){void 0===e&&(e={});var t,n,r=Ci(e),i=r.visible,o=void 0!==i&&i,s=r.animated,l=void 0!==s&&s,u=function(e){void 0===e&&(e={});var t=Ci(e).baseId,n=Object(a.useContext)(Wo),r=Object(a.useRef)(0),i=Object(a.useState)((function(){return t||n()}));return{baseId:i[0],setBaseId:i[1],unstable_idCountRef:r}}(wi(r,["visible","animated"])),c=Object(a.useState)(o),d=c[0],p=c[1],f=Object(a.useState)(l),m=f[0],h=f[1],g=Object(a.useState)(!1),v=g[0],y=g[1],b=(t=d,n=Object(a.useRef)(null),Pi((function(){n.current=t}),[t]),n),S=null!=b.current&&b.current!==d;m&&!v&&S&&y(!0),Object(a.useEffect)((function(){if("number"==typeof m&&v){var e=setTimeout((function(){return y(!1)}),m);return function(){clearTimeout(e)}}return function(){}}),[m,v]);var x=Object(a.useCallback)((function(){return p(!0)}),[]),w=Object(a.useCallback)((function(){return p(!1)}),[]),k=Object(a.useCallback)((function(){return p((function(e){return!e}))}),[]),C=Object(a.useCallback)((function(){return y(!1)}),[]);return xi(xi({},u),{},{visible:d,animated:m,animating:v,show:x,hide:w,toggle:k,setVisible:p,setAnimated:h,stopAnimation:C})}var Io=Ri("Mac")&&!Ri("Chrome")&&Ri("Safari");function Do(e){return function(t){return e&&!Oi(t,e)?e:t}}function Uo(e){void 0===e&&(e={});var t=Ci(e),n=t.gutter,r=void 0===n?12:n,i=t.placement,o=void 0===i?"bottom":i,s=t.unstable_flip,l=void 0===s||s,u=t.unstable_offset,c=t.unstable_preventOverflow,d=void 0===c||c,p=t.unstable_fixed,f=void 0!==p&&p,m=t.modal,h=void 0!==m&&m,g=wi(t,["gutter","placement","unstable_flip","unstable_offset","unstable_preventOverflow","unstable_fixed","modal"]),v=Object(a.useRef)(null),y=Object(a.useRef)(null),b=Object(a.useRef)(null),S=Object(a.useRef)(null),x=Object(a.useState)(o),w=x[0],k=x[1],C=Object(a.useState)(o),O=C[0],_=C[1],E=Object(a.useState)(u||[0,r])[0],T=Object(a.useState)({position:"fixed",left:"100%",top:"100%"}),A=T[0],P=T[1],R=Object(a.useState)({}),z=R[0],L=R[1],j=function(e){void 0===e&&(e={});var t=Ci(e),n=t.modal,r=void 0===n||n,i=No(wi(t,["modal"])),o=Object(a.useState)(r),s=o[0],l=o[1],u=Object(a.useRef)(null);return xi(xi({},i),{},{modal:s,setModal:l,unstable_disclosureRef:u})}(xi({modal:h},g)),M=Object(a.useCallback)((function(){return!!v.current&&(v.current.forceUpdate(),!0)}),[]),B=Object(a.useCallback)((function(e){e.placement&&_(e.placement),e.styles&&(P(Do(e.styles.popper)),S.current&&L(Do(e.styles.arrow)))}),[]);return Pi((function(){return y.current&&b.current&&(v.current=Mo(y.current,b.current,{placement:w,strategy:f?"fixed":"absolute",onFirstUpdate:Io?B:void 0,modifiers:[{name:"eventListeners",enabled:j.visible},{name:"applyStyles",enabled:!1},{name:"flip",enabled:l,options:{padding:8}},{name:"offset",options:{offset:E}},{name:"preventOverflow",enabled:d,options:{tetherOffset:function(){var e;return(null===(e=S.current)||void 0===e?void 0:e.clientWidth)||0}}},{name:"arrow",enabled:!!S.current,options:{element:S.current}},{name:"updateState",phase:"write",requires:["computeStyles"],enabled:j.visible&&!0,fn:function(e){var t=e.state;return B(t)}}]})),function(){v.current&&(v.current.destroy(),v.current=null)}}),[w,f,j.visible,l,E,d]),Object(a.useEffect)((function(){if(j.visible){var e=window.requestAnimationFrame((function(){var e;null===(e=v.current)||void 0===e||e.forceUpdate()}));return function(){window.cancelAnimationFrame(e)}}}),[j.visible]),xi(xi({},j),{},{unstable_referenceRef:y,unstable_popoverRef:b,unstable_arrowRef:S,unstable_popoverStyles:A,unstable_arrowStyles:z,unstable_update:M,unstable_originalPlacement:w,placement:O,place:k})}var qo={currentTooltipId:null,listeners:new Set,subscribe:function(e){var t=this;return this.listeners.add(e),function(){t.listeners.delete(e)}},show:function(e){this.currentTooltipId=e,this.listeners.forEach((function(t){return t(e)}))},hide:function(e){this.currentTooltipId===e&&(this.currentTooltipId=null,this.listeners.forEach((function(e){return e(null)})))}};function Fo(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Vo(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Go(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Vo(Object(n),!0).forEach((function(t){Fo(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Vo(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Ho(e,t){if(null==e)return{};var n,r,i={},o=Object.keys(e);for(r=0;r<o.length;r++)n=o[r],t.indexOf(n)>=0||(i[n]=e[n]);return i}function Ko(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function $o(e,t){var n;if("undefined"==typeof Symbol||null==e[Symbol.iterator]){if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return Ko(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Ko(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0;return function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}return(n=e[Symbol.iterator]()).next.bind(n)}var Yo=Object(a.createContext)({});var Qo=function(e,t,n){void 0===n&&(n=t.children);var r=Object(a.useContext)(Yo);if(r.useCreateElement)return r.useCreateElement(e,t,n);if("string"==typeof e&&function(e){return"function"==typeof e}(n)){t.children;return n(Ho(t,["children"]))}return Object(a.createElement)(e,t,n)};function Xo(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Jo(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Zo(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Jo(Object(n),!0).forEach((function(t){Xo(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Jo(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function ea(e){var t;if(!ki(e))return!1;var n=Object.getPrototypeOf(e);return null==n||(null===(t=n.constructor)||void 0===t?void 0:t.toString())===Object.toString()}function ta(e,t){for(var n={},r={},i=0,o=Object.keys(e);i<o.length;i++){var a=o[i];t.indexOf(a)>=0?n[a]=e[a]:r[a]=e[a]}return[n,r]}function na(e,t){if(void 0===t&&(t=[]),!ea(e.state))return ta(e,t);var n=ta(e,[].concat(t,["state"])),r=n[0],i=n[1],o=r.state,a=function(e,t){if(null==e)return{};var n,r,i={},o=Object.keys(e);for(r=0;r<o.length;r++)n=o[r],t.indexOf(n)>=0||(i[n]=e[n]);return i}(r,["state"]);return[Zo(Zo({},o),a),i]}function ra(e){return"normalizePropsAreEqualInner"===e.name?e:function(t,n){return ea(t.state)&&ea(n.state)?e(Zo(Zo({},t.state),t),Zo(Zo({},n.state),n)):e(t,n)}}function ia(e){var t,n=e.as,r=e.useHook,i=e.memo,o=e.propsAreEqual,s=void 0===o?null==r?void 0:r.unstable_propsAreEqual:o,l=e.keys,u=void 0===l?(null==r?void 0:r.__keys)||[]:l,c=e.useCreateElement,d=void 0===c?Qo:c,p=function(e,t){var i=e.as,o=void 0===i?n:i,a=Ho(e,["as"]);if(r){var s,l=na(a,u),c=l[0],p=l[1],f=r(c,Go({ref:t},p)),m=f.wrapElement,h=Ho(f,["wrapElement"]),g=(null===(s=o.render)||void 0===s?void 0:s.__keys)||o.__keys,v=g&&na(a,g)[0],y=v?Go(Go({},h),v):h,b=d(o,y);return m?m(b):b}return d(o,Go({ref:t},a))};return t=p,p=Object(a.forwardRef)(t),i&&(p=function(e,t){return Object(a.memo)(e,t)}(p,s&&ra(s))),p.__keys=u,p.unstable_propsAreEqual=ra(s||Oi),p}function oa(e,t){Object(a.useDebugValue)(e);var n=Object(a.useContext)(Yo);return null!=n[e]?n[e]:t}function aa(e){var t,n,r,i=(r=e.compose,Array.isArray(r)?r:void 0!==r?[r]:[]),o=function(t,n){if(e.useOptions&&(t=e.useOptions(t,n)),e.name&&(t=function(e,t,n){void 0===t&&(t={}),void 0===n&&(n={});var r="use"+e+"Options";Object(a.useDebugValue)(r);var i=oa(r);return i?Go(Go({},t),i(t,n)):t}(e.name,t,n)),e.compose)for(var r,o=$o(i);!(r=o()).done;){t=r.value.__useOptions(t,n)}return t},s=function(t,n,r){if(void 0===t&&(t={}),void 0===n&&(n={}),void 0===r&&(r=!1),r||(t=o(t,n)),e.useProps&&(n=e.useProps(t,n)),e.name&&(n=function(e,t,n){void 0===t&&(t={}),void 0===n&&(n={});var r="use"+e+"Props";Object(a.useDebugValue)(r);var i=oa(r);return i?i(t,n):n}(e.name,t,n)),e.compose)if(e.useComposeOptions&&(t=e.useComposeOptions(t,n)),e.useComposeProps)n=e.useComposeProps(t,n);else for(var s,l=$o(i);!(s=l()).done;){n=(0,s.value)(t,n,!0)}var u={},c=n||{};for(var d in c)void 0!==c[d]&&(u[d]=c[d]);return u};s.__useOptions=o;var l=i.reduce((function(e,t){return e.push.apply(e,t.__keys||[]),e}),[]);return s.__keys=[].concat(l,(null===(t=e.useState)||void 0===t?void 0:t.__keys)||[],e.keys||[]),s.unstable_propsAreEqual=e.propsAreEqual||(null===(n=i[0])||void 0===n?void 0:n.unstable_propsAreEqual)||Oi,s}function sa(e,t){void 0===t&&(t=null),e&&("function"==typeof e?e(t):e.current=t)}function la(e,t){return Object(a.useMemo)((function(){return null==e&&null==t?null:function(n){sa(e,n),sa(t,n)}}),[e,t])}function ua(e){var t=Object(a.useRef)(e);return Pi((function(){t.current=e})),t}var ca=aa({name:"Role",keys:["unstable_system"],propsAreEqual:function(e,t){var n=e.unstable_system,r=wi(e,["unstable_system"]),i=t.unstable_system,o=wi(t,["unstable_system"]);return!(n!==i&&!Oi(n,i))&&Oi(r,o)}}),da=(ia({as:"div",useHook:ca}),["baseId","unstable_idCountRef","visible","animated","animating","setBaseId","show","hide","toggle","setVisible","setAnimated","stopAnimation","unstable_disclosureRef","unstable_referenceRef","unstable_popoverRef","unstable_arrowRef","unstable_popoverStyles","unstable_arrowStyles","unstable_originalPlacement","unstable_update","placement","place","unstable_timeout","unstable_setTimeout"]),pa=[].concat(da,["unstable_portal"]),fa=ia({as:"div",useHook:aa({name:"TooltipReference",compose:ca,keys:da,useProps:function(e,t){var n=t.ref,r=t.onFocus,i=t.onBlur,o=t.onMouseEnter,s=t.onMouseLeave,l=wi(t,["ref","onFocus","onBlur","onMouseEnter","onMouseLeave"]),u=ua(r),c=ua(i),d=ua(o),p=ua(s),f=Object(a.useCallback)((function(t){var n,r;null===(n=u.current)||void 0===n||n.call(u,t),t.defaultPrevented||null===(r=e.show)||void 0===r||r.call(e)}),[e.show]),m=Object(a.useCallback)((function(t){var n,r;null===(n=c.current)||void 0===n||n.call(c,t),t.defaultPrevented||null===(r=e.hide)||void 0===r||r.call(e)}),[e.hide]),h=Object(a.useCallback)((function(t){var n,r;null===(n=d.current)||void 0===n||n.call(d,t),t.defaultPrevented||null===(r=e.show)||void 0===r||r.call(e)}),[e.show]),g=Object(a.useCallback)((function(t){var n,r;null===(n=p.current)||void 0===n||n.call(p,t),t.defaultPrevented||null===(r=e.hide)||void 0===r||r.call(e)}),[e.hide]);return xi({ref:la(e.unstable_referenceRef,n),tabIndex:0,onFocus:f,onBlur:m,onMouseEnter:h,onMouseLeave:g,"aria-describedby":e.baseId},l)}})});const ma=Object(a.createContext)({});var ha=n("kDDq");var ga=aa({name:"DisclosureContent",compose:ca,keys:["baseId","unstable_idCountRef","visible","animated","animating","setBaseId","show","hide","toggle","setVisible","setAnimated","stopAnimation"],useProps:function(e,t){var n=t.onTransitionEnd,r=t.onAnimationEnd,i=t.style,o=wi(t,["onTransitionEnd","onAnimationEnd","style"]),s=e.animated&&e.animating,l=Object(a.useState)(null),u=l[0],c=l[1],d=!e.visible&&!s,p=d?xi({display:"none"},i):i,f=ua(n),m=ua(r),h=Object(a.useRef)(0);Object(a.useEffect)((function(){if(e.animated)return h.current=window.requestAnimationFrame((function(){h.current=window.requestAnimationFrame((function(){e.visible?c("enter"):c(s?"leave":null)}))})),function(){return window.cancelAnimationFrame(h.current)}}),[e.animated,e.visible,s]);var g=Object(a.useCallback)((function(t){var n;(function(e){return e.target===e.currentTarget})(t)&&(s&&!0===e.animated&&(null===(n=e.stopAnimation)||void 0===n||n.call(e)))}),[e.animated,s,e.stopAnimation]),v=Object(a.useCallback)((function(e){var t;null===(t=f.current)||void 0===t||t.call(f,e),g(e)}),[g]),y=Object(a.useCallback)((function(e){var t;null===(t=m.current)||void 0===t||t.call(m,e),g(e)}),[g]);return xi({id:e.baseId,"data-enter":"enter"===u?"":void 0,"data-leave":"leave"===u?"":void 0,onTransitionEnd:v,onAnimationEnd:y,hidden:d,style:p},o)}});ia({as:"div",useHook:ga});function va(){return Ai?document.body:null}var ya=Object(a.createContext)(va());function ba(e){var t=e.children,n=Object(a.useContext)(ya)||va(),r=Object(a.useState)((function(){if(Ai){var e=document.createElement("div");return e.className=ba.__className,e}return null}))[0];return Pi((function(){if(r&&n)return n.appendChild(r),function(){n.removeChild(r)}}),[r,n]),r?Object(l.createPortal)(Object(a.createElement)(ya.Provider,{value:r},t),r):null}function Sa(e){e.defaultPrevented||"Escape"===e.key&&qo.show(null)}ba.__className="__reakit-portal",ba.__selector="."+ba.__className;var xa=ia({as:"div",memo:!0,useHook:aa({name:"Tooltip",compose:ga,keys:pa,useOptions:function(e){var t=e.unstable_portal;return xi({unstable_portal:void 0===t||t},wi(e,["unstable_portal"]))},useProps:function(e,t){var n=t.ref,r=t.style,i=t.wrapElement,o=wi(t,["ref","style","wrapElement"]);Object(a.useEffect)((function(){var t;_i(null===(t=e.unstable_popoverRef)||void 0===t?void 0:t.current).addEventListener("keydown",Sa)}),[]);var s=Object(a.useCallback)((function(t){return e.unstable_portal&&(t=Object(a.createElement)(ba,null,t)),i?i(t):t}),[e.unstable_portal,i]);return xi({ref:la(e.unstable_popoverRef,n),role:"tooltip",style:xi(xi({},e.unstable_popoverStyles),{},{pointerEvents:"none"},r),wrapElement:s},o)}})}),wa=n("lSNA"),ka=n.n(wa),Ca=n("4qRI"),Oa=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|download|draggable|encType|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|inert|itemProp|itemScope|itemType|itemID|itemRef|on|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,_a=Object(Ca.a)((function(e){return Oa.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91}));function Ea(e,t){return(Ea=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var Ta=n("TqVZ"),Aa=(n("VbXa"),n("SIPS")),Pa=n("MiSq"),Ra=(Object.prototype.hasOwnProperty,Object(a.createContext)("undefined"!=typeof HTMLElement?Object(Ta.a)():null)),za=Object(a.createContext)({}),La=(Ra.Provider,function(e){var t=function(t,n){return Object(a.createElement)(Ra.Consumer,null,(function(r){return e(t,r,n)}))};return Object(a.forwardRef)(t)});var ja=n("z9I/");a.Component;var Ma=function e(t){for(var n=t.length,r=0,i="";r<n;r++){var o=t[r];if(null!=o){var a=void 0;switch(typeof o){case"boolean":break;case"object":if(Array.isArray(o))a=e(o);else for(var s in a="",o)o[s]&&s&&(a&&(a+=" "),a+=s);break;default:a=o}a&&(i&&(i+=" "),i+=a)}}return i};function Ba(e,t,n){var r=[],i=Object(Aa.a)(e,r,n);return r.length<2?n:i+t(r)}La((function(e,t){return Object(a.createElement)(za.Consumer,null,(function(n){var r=function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];var i=Object(Pa.a)(n,t.registered);return Object(Aa.b)(t,i,!1),t.key+"-"+i.name},i={css:r,cx:function(){for(var e=arguments.length,n=new Array(e),i=0;i<e;i++)n[i]=arguments[i];return Ba(t.registered,r,Ma(n))},theme:n},o=e.children(i);return!0,o}))}));var Wa=_a,Na=function(e){return"theme"!==e&&"innerRef"!==e},Ia=function(e){return"string"==typeof e&&e.charCodeAt(0)>96?Wa:Na};function Da(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Ua(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Da(n,!0).forEach((function(t){ka()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Da(n).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var qa=function e(t,n){var r,i,o;void 0!==n&&(r=n.label,o=n.target,i=t.__emotion_forwardProp&&n.shouldForwardProp?function(e){return t.__emotion_forwardProp(e)&&n.shouldForwardProp(e)}:n.shouldForwardProp);var s=t.__emotion_real===t,l=s&&t.__emotion_base||t;"function"!=typeof i&&s&&(i=t.__emotion_forwardProp);var u=i||Ia(l),c=!u("as");return function(){var d=arguments,p=s&&void 0!==t.__emotion_styles?t.__emotion_styles.slice(0):[];if(void 0!==r&&p.push("label:"+r+";"),null==d[0]||void 0===d[0].raw)p.push.apply(p,d);else{0,p.push(d[0][0]);for(var f=d.length,m=1;m<f;m++)p.push(d[m],d[0][m])}var h=La((function(e,t,n){return Object(a.createElement)(za.Consumer,null,(function(r){var s=c&&e.as||l,d="",f=[],m=e;if(null==e.theme){for(var h in m={},e)m[h]=e[h];m.theme=r}"string"==typeof e.className?d=Object(Aa.a)(t.registered,f,e.className):null!=e.className&&(d=e.className+" ");var g=Object(Pa.a)(p.concat(f),t.registered,m);Object(Aa.b)(t,g,"string"==typeof s);d+=t.key+"-"+g.name,void 0!==o&&(d+=" "+o);var v=c&&void 0===i?Ia(s):u,y={};for(var b in e)c&&"as"===b||v(b)&&(y[b]=e[b]);return y.className=d,y.ref=n||e.innerRef,Object(a.createElement)(s,y)}))}));return h.displayName=void 0!==r?r:"Styled("+("string"==typeof l?l:l.displayName||l.name||"Component")+")",h.defaultProps=t.defaultProps,h.__emotion_real=h,h.__emotion_base=l,h.__emotion_styles=p,h.__emotion_forwardProp=i,Object.defineProperty(h,"toString",{value:function(){return"."+o}}),h.withComponent=function(t,r){return e(t,void 0!==r?Ua({},n||{},{},r):n).apply(void 0,p)},h}};const Fa=qa("div",{target:"egi4jkx0",label:"View"})("");Fa.displayName="View";var Va=Fa;var Ga=Object(vi.a)((function(e,t){const{shortcut:n,className:r,...i}=Object(yi.a)(e,"Shortcut");if(!n)return null;let o,s;return"string"==typeof n?o=n:(o=n.display,s=n.ariaLabel),Object(a.createElement)("span",b({className:r,"aria-label":s,ref:t},i),o)}),"Shortcut");function Ha(e){return"number"==typeof e?`calc(4px * ${e})`:e}var Ka=n("Zss7"),$a=n.n(Ka);function Ya(e="",t=1){const{r:n,g:r,b:i}=$a()(e).toRgb();return`rgba(${n}, ${r}, ${i}, ${t})`}const Qa={black:"#000",white:"#fff"},Xa={blue:{medium:{focus:"#007cba",focusDark:"#fff"}},gray:{900:"#1e1e1e",700:"#757575",600:"#949494",400:"#ccc",200:"#ddd",100:"#f0f0f0"},darkGray:{primary:"#1e1e1e",heading:"#050505"},mediumGray:{text:"#757575"},lightGray:{ui:"#949494",secondary:"#ccc",tertiary:"#e7e8e9"}},Ja={900:"#191e23",800:"#23282d",700:"#32373c",600:"#40464d",500:"#555d66",400:"#606a73",300:"#6c7781",200:"#7e8993",150:"#8d96a0",100:"#8f98a1",placeholder:Ya(Xa.gray[900],.62)},Za={900:Ya("#000510",.9),800:Ya("#00000a",.85),700:Ya("#06060b",.8),600:Ya("#000913",.75),500:Ya("#0a1829",.7),400:Ya("#0a1829",.65),300:Ya("#0e1c2e",.62),200:Ya("#162435",.55),100:Ya("#223443",.5),backgroundFill:Ya(Ja[700],.7)},es={900:Ya("#304455",.45),800:Ya("#425863",.4),700:Ya("#667886",.35),600:Ya("#7b86a2",.3),500:Ya("#9197a2",.25),400:Ya("#95959c",.2),300:Ya("#829493",.15),200:Ya("#8b8b96",.1),100:Ya("#747474",.05)},ts={900:"#a2aab2",800:"#b5bcc2",700:"#ccd0d4",600:"#d7dade",500:"#e2e4e7",400:"#e8eaeb",300:"#edeff0",200:"#f3f4f5",100:"#f8f9f9",placeholder:Ya(Qa.white,.65)},ns={900:Ya(Qa.white,.5),800:Ya(Qa.white,.45),700:Ya(Qa.white,.4),600:Ya(Qa.white,.35),500:Ya(Qa.white,.3),400:Ya(Qa.white,.25),300:Ya(Qa.white,.2),200:Ya(Qa.white,.15),100:Ya(Qa.white,.1),backgroundFill:Ya(ts[300],.8)},rs={wordpress:{700:"#00669b"},dark:{900:"#0071a1"},medium:{900:"#006589",800:"#00739c",700:"#007fac",600:"#008dbe",500:"#00a0d2",400:"#33b3db",300:"#66c6e4",200:"#bfe7f3",100:"#e5f5fa",highlight:"#b3e7fe",focus:"#007cba"}},is={theme:`var( --wp-admin-theme-color, ${rs.wordpress[700]})`,themeDark10:`var( --wp-admin-theme-color-darker-10, ${rs.medium.focus})`},os={theme:is.theme,background:Qa.white,backgroundDisabled:ts[200],border:Xa.gray[700],borderFocus:is.themeDark10,borderDisabled:Xa.gray[400],borderLight:Xa.gray[200],label:Ja[500],textDisabled:Ja[150],textDark:Qa.white,textLight:Qa.black},as={...Qa,darkGray:Object(Jn.merge)({},Ja,Xa.darkGray),darkOpacity:Za,darkOpacityLight:es,mediumGray:Xa.mediumGray,gray:Xa.gray,lightGray:Object(Jn.merge)({},ts,Xa.lightGray),lightGrayLight:ns,blue:Object(Jn.merge)({},rs,Xa.blue),alert:{yellow:"#f0b849",red:"#d94f4f",green:"#4ab866"},admin:is,ui:os};Ha(3),Ha(3);Ha(1),as.white,as.white,as.white;var ss="100ms";const ls=Object(ha.a)("z-index:",1000002,";box-sizing:border-box;opacity:0;outline:none;transform-origin:top center;transition:opacity ",ss," ease;&[data-enter]{opacity:1;};label:TooltipContent;"),us=qa("div",{target:"e7tfjmw0",label:"TooltipPopoverView"})("background:rgba( 0,0,0,0.8 );border-radius:6px;box-shadow:0 0 0 1px rgba( 255,255,255,0.04 );color:",as.white,";padding:4px 8px;"),cs=Object(ha.a)({name:"xdig24-noOutline",styles:"outline:none;;label:noOutline;"}),ds=qa(Ga,{target:"e7tfjmw1",label:"TooltipShortcut"})("display:inline-block;margin-left:",Ha(1),";"),{TooltipPopoverView:ps}=o;var fs=Object(vi.a)((function(e,t){const{children:n,className:r,...i}=Object(yi.a)(e,"TooltipContent"),{tooltip:o}=Object(a.useContext)(ma),s=Object(ha.b)(ls,r);return Object(a.createElement)(xa,b({as:Va},i,o,{className:s,ref:t}),Object(a.createElement)(ps,null,n))}),"TooltipContent");var ms=Object(vi.a)((function(e,t){const{animated:n=!0,animationDuration:r=160,baseId:i,children:o,content:s,focusable:l=!0,gutter:u=4,id:c,modal:d=!0,placement:p,visible:f=!1,shortcut:m,...h}=Object(yi.a)(e,"Tooltip"),g=function(e){void 0===e&&(e={});var t=Ci(e),n=t.placement,r=void 0===n?"top":n,i=t.unstable_timeout,o=void 0===i?0:i,s=wi(t,["placement","unstable_timeout"]),l=Object(a.useState)(o),u=l[0],c=l[1],d=Object(a.useRef)(null),p=Object(a.useRef)(null),f=Uo(xi(xi({},s),{},{placement:r})),m=(f.modal,f.setModal,wi(f,["modal","setModal"])),h=Object(a.useCallback)((function(){null!==d.current&&window.clearTimeout(d.current),null!==p.current&&window.clearTimeout(p.current)}),[]),g=Object(a.useCallback)((function(){h(),m.hide(),p.current=window.setTimeout((function(){qo.hide(m.baseId)}),u)}),[h,m.hide,u,m.baseId]),v=Object(a.useCallback)((function(){h(),!u||qo.currentTooltipId?(qo.show(m.baseId),m.show()):(qo.show(null),d.current=window.setTimeout((function(){qo.show(m.baseId),m.show()}),u))}),[h,u,m.show,m.baseId]);return Object(a.useEffect)((function(){return qo.subscribe((function(e){e!==m.baseId&&(h(),m.visible&&m.hide())}))}),[m.baseId,h,m.visible,m.hide]),Object(a.useEffect)((function(){return function(){h(),qo.hide(m.baseId)}}),[h,m.baseId]),xi(xi({},m),{},{hide:g,show:v,unstable_timeout:u,unstable_setTimeout:c})}({animated:n?r:void 0,baseId:i||c,gutter:u,placement:p,visible:f,...h}),v=Object(a.useMemo)(()=>({tooltip:g}),[g]);return Object(a.createElement)(ma.Provider,{value:v},s&&Object(a.createElement)(fs,{unstable_portal:d,ref:t},s,m&&Object(a.createElement)(ds,{shortcut:m})),o&&Object(a.createElement)(fa,b({},g,o.props,{ref:null==o?void 0:o.ref}),e=>(l||(e.tabIndex=void 0),Object(a.cloneElement)(o,e))))}),"Tooltip");const hs=1===Object({NODE_ENV:"production"}).COMPONENT_SYSTEM_PHASE?ms:void 0,gs=({text:e,...t})=>({...t,content:e});const vs=Object(a.createElement)("div",{className:"event-catcher"}),ys=({eventHandlers:e,child:t,childrenWithPopover:n})=>Object(a.cloneElement)(Object(a.createElement)("span",{className:"disabled-element-wrapper"},Object(a.cloneElement)(vs,e),Object(a.cloneElement)(t,{children:n}),","),e),bs=({child:e,eventHandlers:t,childrenWithPopover:n})=>Object(a.cloneElement)(e,{...t,children:n}),Ss=({grandchildren:e,isOver:t,position:n,text:r,shortcut:i})=>function(...e){return e.reduce((e,t,n)=>(a.Children.forEach(t,(t,r)=>{t&&"string"!=typeof t&&(t=Object(a.cloneElement)(t,{key:[n,r].join()})),e.push(t)}),e),[])}(e,t&&Object(a.createElement)(mi,{focusOnMount:!1,position:n,className:"components-tooltip","aria-hidden":"true",animate:!1,noArrow:!0},r,Object(a.createElement)(gi,{className:"components-tooltip__shortcut",shortcut:i}))),xs=(e,t,n)=>{if(1!==a.Children.count(e))return;const r=a.Children.only(e);"function"==typeof r.props[t]&&r.props[t](n)};var ws=function(e,t=(()=>null),n="Component",r=(e=>e)){if(1===Object({NODE_ENV:"production"}).COMPONENT_SYSTEM_PHASE){const i=(i,o)=>{const{__unstableVersion:s,...l}=Object(yi.a)(i,n);if("next"===s){const e=r(l);return Object(a.createElement)(t,b({},e,{ref:o}))}return Object(a.createElement)(e,b({},i,{ref:o}))};return Object(vi.a)(i,n)}return e}((function({children:e,position:t,text:n,shortcut:r}){const[i,o]=Object(a.useState)(!1),[s,l]=Object(a.useState)(!1),u=function(...e){const t=tr(()=>Object(Jn.debounce)(...e),e);return Object(a.useEffect)(()=>()=>t.cancel(),[t]),t}(l,700),c=t=>{xs(e,"onMouseDown",t),document.addEventListener("mouseup",f),o(!0)},d=t=>{xs(e,"onMouseUp",t),document.removeEventListener("mouseup",f),o(!1)},p=e=>"mouseUp"===e?d:"mouseDown"===e?c:void 0,f=p("mouseUp"),m=(t,n)=>r=>{if(xs(e,t,r),r.currentTarget.disabled)return;if("focus"===r.type&&i)return;u.cancel();const o=Object(Jn.includes)(["focus","mouseenter"],r.type);o!==s&&(n?u(o):l(o))},h=()=>{u.cancel()};if(Object(a.useEffect)(()=>h,[]),1!==a.Children.count(e))return e;const g={onMouseEnter:m("onMouseEnter",!0),onMouseLeave:m("onMouseLeave"),onClick:m("onClick"),onFocus:m("onFocus"),onBlur:m("onBlur"),onMouseDown:p("mouseDown")},v=a.Children.only(e),{children:y,disabled:b}=v.props;return(b?ys:bs)({child:v,eventHandlers:g,childrenWithPopover:Ss({grandchildren:y,isOver:s,position:t,text:n,shortcut:r})})}),hs,"WPComponentsTooltip",gs);var ks=function({icon:e,className:t,...n}){const r=["dashicon","dashicons","dashicons-"+e,t].filter(Boolean).join(" ");return Object(a.createElement)("span",b({className:r},n))};var Cs=function({icon:e=null,size:t,...n}){if("string"==typeof e)return Object(a.createElement)(ks,b({icon:e},n));if(e&&ks===e.type)return Object(a.cloneElement)(e,{...n});const r=t||24;if("function"==typeof e)return e.prototype instanceof a.Component?Object(a.createElement)(e,{size:r,...n}):e({size:r,...n});if(e&&("svg"===e.type||e.type===Nr)){const t={width:r,height:r,...e.props,...n};return Object(a.createElement)(Nr,t)}return Object(a.isValidElement)(e)?Object(a.cloneElement)(e,{size:r,...n}):e};const Os=Object(ha.a)("border:0;clip:rect( 1px,1px,1px,1px );-webkit-clip-path:inset( 50% );clip-path:inset( 50% );height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal !important;&:focus{background-color:",as.lightGray[300],";clip:auto !important;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000;};label:VisuallyHidden;");var _s=(({as:e,name:t,useHook:n,memo:r=!1})=>{function i(t,r){const i=n(t);return Object(a.createElement)(Va,b({as:e||"div"},i,{ref:r}))}return i.displayName=t,Object(vi.a)(i,t,{memo:r})})({as:"div",useHook:function({className:e,...t}){return{className:Object(ha.b)("components-visually-hidden",e,Os),...t}},name:"VisuallyHidden"});const Es=["onMouseDown","onClick"];var Ts=Object(a.forwardRef)((function(e,t){const{href:n,target:r,isPrimary:i,isSmall:o,isTertiary:s,isPressed:l,isBusy:u,isDefault:c,isSecondary:d,isLink:p,isDestructive:f,className:m,disabled:h,icon:g,iconPosition:v="left",iconSize:y,showTooltip:S,tooltipPosition:x,shortcut:w,label:k,children:C,text:O,__experimentalIsFocusable:_,describedBy:E,...T}=e;c&&er("Button isDefault prop",{since:"5.4",alternative:"isSecondary"});const A=Xn()("components-button",m,{"is-secondary":c||d,"is-primary":i,"is-small":o,"is-tertiary":s,"is-pressed":l,"is-busy":u,"is-link":p,"is-destructive":f,"has-text":!!g&&!!C,"has-icon":!!g}),P=h&&!_,R=void 0===n||P?"button":"a",z="a"===R?{href:n,target:r}:{type:"button",disabled:P,"aria-pressed":l};if(h&&_){z["aria-disabled"]=!0;for(const e of Es)T[e]=e=>{e.stopPropagation(),e.preventDefault()}}const L=!P&&(S&&k||w||!!k&&(!C||Object(Jn.isArray)(C)&&!C.length)&&!1!==S),j=E?Object(Jn.uniqueId)():null,M=T["aria-describedby"]||j,B=Object(a.createElement)(R,b({},z,T,{className:A,"aria-label":T["aria-label"]||k,"aria-describedby":M,ref:t}),g&&"left"===v&&Object(a.createElement)(Cs,{icon:g,size:y}),O&&Object(a.createElement)(a.Fragment,null,O),g&&"right"===v&&Object(a.createElement)(Cs,{icon:g,size:y}),C);return L?Object(a.createElement)(a.Fragment,null,Object(a.createElement)(ws,{text:E||k,shortcut:w,position:x},B),E&&Object(a.createElement)(_s,null,Object(a.createElement)("span",{id:j},E))):Object(a.createElement)(a.Fragment,null,B,E&&Object(a.createElement)(_s,null,Object(a.createElement)("span",{id:j},E)))}));const As={notice:(e,t)=>e.notice[t]||{},message:(e,t)=>As.notice(e,t).message,status:(e,t)=>As.notice(e,t).status,exists:(e,t)=>!!e.notice[t]};var Ps=As;function Rs(e,t={}){const n={};if(0===e.search("https://")){const t=new URL(e);e=`https://${t.host}${t.pathname}`,n.url=encodeURIComponent(e)}else n.source=encodeURIComponent(e);const r=["site","path","query","anchor"];Object.keys(t).forEach(e=>{r.includes(e)&&(n[e]=encodeURIComponent(t[e]))}),!Object.keys(n).includes("site")&&"undefined"!=typeof Jetpack_Boost&&Jetpack_Boost.hasOwnProperty("siteUrl")&&(n.site=Jetpack_Boost.siteUrl);return"https://jetpack.com/redirect/?"+Object.keys(n).map(e=>e+"="+n[e]).join("&")}var zs=n("ivgv"),Ls=n.n(zs);const js=({checklist:e})=>{const t=()=>s.a.createElement(Ls.a,null);return s.a.createElement("div",{className:"checklist"},e.map((e,n)=>s.a.createElement("div",{key:n,className:"checklist__item"},s.a.createElement(t,null),s.a.createElement("span",null,e))))};js.propTypes={checklist:d.a.array,className:d.a.string};var Ms=js;const Bs=/[\u007F-\u009F "'>/="\uFDD0-\uFDEF]/;function Ws(e){return e.replace(/&(?!([a-z0-9]+|#[0-9]+|#x[a-f0-9]+);)/gi,"&")}function Ns(e){return e.replace(/</g,"<")}function Is(e){return function(e){return e.replace(/>/g,">")}(function(e){return e.replace(/"/g,""")}(Ws(e)))}function Ds({children:e,...t}){return Object(a.createElement)("div",{dangerouslySetInnerHTML:{__html:e},...t})}const{Provider:Us,Consumer:qs}=Object(a.createContext)(void 0),Fs=Object(a.forwardRef)(()=>null),Vs=new Set(["string","boolean","number"]),Gs=new Set(["area","base","br","col","command","embed","hr","img","input","keygen","link","meta","param","source","track","wbr"]),Hs=new Set(["allowfullscreen","allowpaymentrequest","allowusermedia","async","autofocus","autoplay","checked","controls","default","defer","disabled","download","formnovalidate","hidden","ismap","itemscope","loop","multiple","muted","nomodule","novalidate","open","playsinline","readonly","required","reversed","selected","typemustmatch"]),Ks=new Set(["autocapitalize","autocomplete","charset","contenteditable","crossorigin","decoding","dir","draggable","enctype","formenctype","formmethod","http-equiv","inputmode","kind","method","preload","scope","shape","spellcheck","translate","type","wrap"]),$s=new Set(["animation","animationIterationCount","baselineShift","borderImageOutset","borderImageSlice","borderImageWidth","columnCount","cx","cy","fillOpacity","flexGrow","flexShrink","floodOpacity","fontWeight","gridColumnEnd","gridColumnStart","gridRowEnd","gridRowStart","lineHeight","opacity","order","orphans","r","rx","ry","shapeImageThreshold","stopOpacity","strokeDasharray","strokeDashoffset","strokeMiterlimit","strokeOpacity","strokeWidth","tabSize","widows","x","y","zIndex","zoom"]);function Ys(e,t){return t.some(t=>0===e.indexOf(t))}function Qs(e){return"key"===e||"children"===e}function Xs(e,t){switch(e){case"style":return function(e){if(!Object(Jn.isPlainObject)(e))return e;let t;for(const n in e){const r=e[n];if(null==r)continue;t?t+=";":t="";const i=Zs(n),o=el(n,r);t+=i+":"+o}return t}(t)}return t}function Js(e){switch(e){case"htmlFor":return"for";case"className":return"class"}return e.toLowerCase()}function Zs(e){return Object(Jn.startsWith)(e,"--")?e:Ys(e,["ms","O","Moz","Webkit"])?"-"+Object(Jn.kebabCase)(e):Object(Jn.kebabCase)(e)}function el(e,t){return"number"!=typeof t||0===t||$s.has(e)?t:t+"px"}function tl(e,t,n={}){if(null==e||!1===e)return"";if(Array.isArray(e))return rl(e,t,n);switch(typeof e){case"string":return Ns(Ws(e));case"number":return e.toString()}const{type:r,props:i}=e;switch(r){case a.StrictMode:case a.Fragment:return rl(i.children,t,n);case Ds:const{children:e,...r}=i;return nl(Object(Jn.isEmpty)(r)?null:"div",{...r,dangerouslySetInnerHTML:{__html:e}},t,n)}switch(typeof r){case"string":return nl(r,i,t,n);case"function":return r.prototype&&"function"==typeof r.prototype.render?function(e,t,n,r={}){const i=new e(t,r);"function"==typeof i.getChildContext&&Object.assign(r,i.getChildContext());return tl(i.render(),n,r)}(r,i,t,n):tl(r(i,n),t,n)}switch(r&&r.$$typeof){case Us.$$typeof:return rl(i.children,i.value,n);case qs.$$typeof:return tl(i.children(t||r._currentValue),t,n);case Fs.$$typeof:return tl(r.render(i),t,n)}return""}function nl(e,t,n,r={}){let i="";if("textarea"===e&&t.hasOwnProperty("value")?(i=rl(t.value,n,r),t=Object(Jn.omit)(t,"value")):t.dangerouslySetInnerHTML&&"string"==typeof t.dangerouslySetInnerHTML.__html?i=t.dangerouslySetInnerHTML.__html:void 0!==t.children&&(i=rl(t.children,n,r)),!e)return i;const o=function(e){let t="";for(const r in e){const i=Js(r);if(n=i,Bs.test(n))continue;let o=Xs(r,e[r]);if(!Vs.has(typeof o))continue;if(Qs(r))continue;const a=Hs.has(i);if(a&&!1===o)continue;const s=a||Ys(r,["data-","aria-"])||Ks.has(i);("boolean"!=typeof o||s)&&(t+=" "+i,a||("string"==typeof o&&(o=Is(o)),t+='="'+o+'"'))}var n;return t}(t);return Gs.has(e)?"<"+e+o+"/>":"<"+e+o+">"+i+"</"+e+">"}function rl(e,t,n={}){let r="";e=Object(Jn.castArray)(e);for(let i=0;i<e.length;i++){r+=tl(e[i],t,n)}return r}var il=tl;function ol(e="polite"){const t=document.createElement("div");t.id="a11y-speak-"+e,t.className="a11y-speak-region",t.setAttribute("style","position: absolute;margin: -1px;padding: 0;height: 1px;width: 1px;overflow: hidden;clip: rect(1px, 1px, 1px, 1px);-webkit-clip-path: inset(50%);clip-path: inset(50%);border: 0;word-wrap: normal !important;"),t.setAttribute("aria-live",e),t.setAttribute("aria-relevant","additions text"),t.setAttribute("aria-atomic","true");const{body:n}=document;return n&&n.appendChild(t),t}let al="";var sl;function ll(e,t){!function(){const e=document.getElementsByClassName("a11y-speak-region"),t=document.getElementById("a11y-speak-intro-text");for(let t=0;t<e.length;t++)e[t].textContent="";t&&t.setAttribute("hidden","hidden")}(),e=function(e){return e=e.replace(/<[^<>]+>/g," "),al===e&&(e+=" "),al=e,e}(e);const n=document.getElementById("a11y-speak-intro-text"),r=document.getElementById("a11y-speak-assertive"),i=document.getElementById("a11y-speak-polite");r&&"assertive"===t?r.textContent=e:i&&(i.textContent=e),n&&n.removeAttribute("hidden")}function ul(e){switch(e){case"success":case"warning":case"info":return"polite";case"error":default:return"assertive"}}sl=function(){const e=document.getElementById("a11y-speak-intro-text"),t=document.getElementById("a11y-speak-assertive"),n=document.getElementById("a11y-speak-polite");null===e&&function(){const e=document.createElement("p");e.id="a11y-speak-intro-text",e.className="a11y-speak-intro-text",e.textContent=Ye("Notifications"),e.setAttribute("style","position: absolute;margin: -1px;padding: 0;height: 1px;width: 1px;overflow: hidden;clip: rect(1px, 1px, 1px, 1px);-webkit-clip-path: inset(50%);clip-path: inset(50%);border: 0;word-wrap: normal !important;"),e.setAttribute("hidden","hidden");const{body:t}=document;t&&t.appendChild(e)}(),null===t&&ol("assertive"),null===n&&ol("polite")},"undefined"!=typeof document&&("complete"!==document.readyState&&"interactive"!==document.readyState?document.addEventListener("DOMContentLoaded",sl):sl());var cl=function({className:e,status:t="info",children:n,spokenMessage:r=n,onRemove:i=Jn.noop,isDismissible:o=!0,actions:s=[],politeness:l=ul(t),__unstableHTML:u}){!function(e,t){const n="string"==typeof e?e:il(e);Object(a.useEffect)(()=>{n&&ll(n,t)},[n,t])}(r,l);const c=Xn()(e,"components-notice","is-"+t,{"is-dismissible":o});return u&&(n=Object(a.createElement)(Ds,null,n)),Object(a.createElement)("div",{className:c},Object(a.createElement)("div",{className:"components-notice__content"},n,s.map(({className:e,label:t,isPrimary:n,noDefaultClasses:r=!1,onClick:i,url:o},s)=>Object(a.createElement)(Ts,{key:s,href:o,isPrimary:n,isSecondary:!r&&!o,isLink:!r&&!!o,onClick:o?void 0:i,className:Xn()("components-notice__action",e)},t))),o&&Object(a.createElement)(Ts,{className:"components-notice__dismiss",icon:Ir,label:Ye("Dismiss this notice"),onClick:i,showTooltip:!1}))};const dl=yn("notice/clear"),pl=({status:e,message:t,isDismissible:n,clearNotice:r})=>e?s.a.createElement(cl,{status:e,onRemove:r,isDismissible:n},t):null;pl.propTypes={status:d.a.string,message:d.a.oneOfType([d.a.string,d.a.object]),isDismissible:d.a.bool,clearNotice:d.a.func};var fl=K((e,{type:t})=>({status:Ps.status(e,t),message:Ps.message(e,t)}),(e,{type:t})=>({clearNotice:()=>e(dl(t))}))(pl);const ml=({type:e,hasNotice:t,isDismissible:n,children:r,style:i,className:o})=>t?s.a.createElement("div",{style:i,className:o},s.a.createElement(fl,{isDismissible:n,type:e}),r):null;ml.propTypes={type:d.a.string,reference:d.a.string,isDismissible:d.a.bool,children:d.a.node,style:d.a.object,className:d.a.string};var hl=K((e,{type:t})=>({hasNotice:Ps.exists(e,t)}),{})(ml);const gl={userData:e=>e.connection.userData,wpcomUser:e=>gl.userData(e).wpcomUser,avatarUrl:e=>gl.wpcomUser(e).avatar,displayName:e=>gl.wpcomUser(e).display_name,email:e=>gl.wpcomUser(e).email,isPrimaryUser:e=>gl.userData(e).isPrimaryUser,canDisconnect:e=>gl.userData(e).canDisconnect,flowVariation:e=>e.connection.flowVariation,authorizeUrl:e=>e.connection.authorizeUrl,isActive:e=>e.connection.active,isConnected:e=>e.connection.connected,isConnecting:e=>e.connection.connecting,isDisconnecting:e=>e.connection.disconnecting,isUserConnected:e=>e.connection.isUserConnected,isConnectionReady:e=>e.connection.active&&!e.connection.shouldClarifyTos,shouldClarifyTos:e=>e.connection.shouldClarifyTos};var vl=gl;var yl=({buttonCallback:e})=>{const t=ne(e=>vl.isConnecting(e)),n=ne(e=>Ps.status(e,"jetpack-disconnect"));return s.a.createElement(s.a.Fragment,null,"info"===n&&s.a.createElement(hl,{type:"jetpack-disconnect",className:"general-notices"}),s.a.createElement(Ms,{checklist:Hn}),s.a.createElement(Ts,{isPrimary:!0,onClick:e,disabled:t},Ye(t?"Loading…":"Get Started","jetpack-boost")),s.a.createElement(hl,{type:"connect-site",isDismissible:!1,style:{maxWidth:"720px"}}),s.a.createElement("div",{className:"jb-connection-overlay"},s.a.createElement("p",null,Mn(Ye("By clicking the button above, you agree to our <tosLink>Terms of Service</tosLink> and to <shareDetailsLink>share details</shareDetailsLink> with WordPress.com.","jetpack-boost"),{tosLink:s.a.createElement("a",{href:Rs("wpcom-tos"),rel:"noopener noreferrer",target:"_blank"}),shareDetailsLink:s.a.createElement("a",{href:Rs("jetpack-support-what-data-does-jetpack-sync"),rel:"noopener noreferrer",target:"_blank"})}))))};const bl=Cn("connection/accept-tos-clarification",async()=>{await Vn("/connection/accept-tos-clarification")});var Sl=bl;const xl={[bl.rejected]:e=>Nn("accept-tos",e.error.message)};var wl=()=>{const e=J(),t="https://jetpack.com/redirect/?source=wpcom-tos&site="+encodeURIComponent(Jetpack_Boost.siteUrl);return s.a.createElement("div",null,s.a.createElement("div",null,s.a.createElement("h1",null,Ye("Jetpack Boost is ready to roll","jetpack-boost")),s.a.createElement("p",null,Mn(Ye("Jetpack Boost shares the same cloud connection with other Jetpack plugins. By using Boost, you agree to the <a>Jetpack Terms of Service Agreement</a>.","jetpack-boost"),{a:s.a.createElement("a",{href:t,target:"_blank"})})),s.a.createElement(Ts,{isPrimary:!0,onClick:()=>e(Sl())},Ye("I understand","jetpack-boost")),s.a.createElement(hl,{type:"accept-tos"})))};const kl=Cn("connection/fetch-status",async()=>{const e=await Fn("/connection");return{active:e.active,connected:e.connected,isUserConnected:e.isUserConnected,authorizeUrl:e.authorizeUrl,flowVariation:e.flowVariation,userData:e.userData}});var Cl=kl;const Ol={[kl.rejected]:e=>Nn("fetch-connection-status",e.error.message)};var _l;function El(){return(El=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}).apply(this,arguments)}var Tl=function(e){return a.createElement("svg",El({xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 128 128"},e),_l||(_l=a.createElement("g",null,a.createElement("path",{d:"M64 0a7 7 0 11-7 7 7 7 0 017-7zm29.86 12.2a2.8 2.8 0 11-3.83 1.02 2.8 2.8 0 013.83-1.02zm22.16 21.68a3.15 3.15 0 11-4.3-1.15 3.15 3.15 0 014.3 1.15zm.87 60.53a4.2 4.2 0 11-1.57-5.7 4.2 4.2 0 011.54 5.73zm7.8-30.5a3.85 3.85 0 11-3.85-3.85 3.85 3.85 0 013.85 3.84zm-30 53.2a4.55 4.55 0 111.66-6.23 4.55 4.55 0 01-1.67 6.22zM64 125.9a4.9 4.9 0 114.9-4.9 4.9 4.9 0 01-4.9 4.9zm-31.06-8.22a5.25 5.25 0 117.17-1.93 5.25 5.25 0 01-7.14 1.93zM9.9 95.1a5.6 5.6 0 117.65 2.06A5.6 5.6 0 019.9 95.1zM1.18 63.9a5.95 5.95 0 115.95 5.94 5.95 5.95 0 01-5.96-5.94zm8.1-31.6a6.3 6.3 0 112.32 8.6 6.3 6.3 0 01-2.3-8.6zM32.25 8.87a6.65 6.65 0 11-2.44 9.1 6.65 6.65 0 012.46-9.1z"}),a.createElement("animateTransform",{attributeName:"transform",type:"rotate",values:"0 64 64;30 64 64;60 64 64;90 64 64;120 64 64;150 64 64;180 64 64;210 64 64;240 64 64;270 64 64;300 64 64;330 64 64",calcMode:"discrete",dur:"1080ms",repeatCount:"indefinite"}))))};var Al=()=>{const e=Object(a.useRef)(),[t,n]=Object(a.useState)(!0),r=J(),i=ne(e=>vl.flowVariation(e)),o=ne(e=>vl.authorizeUrl(e)),l=ne(e=>vl.isActive(e)),u=ne(e=>vl.isConnected(e)),c=ne(e=>vl.isUserConnected(e)),d=()=>{setTimeout(()=>{window.location.href=o.replace("authorize_iframe/","authorize/")},100)},p=t=>{t.origin!==Jetpack_Boost.connectionIframeOriginUrl||t.source!==e.current.contentWindow||"close"!==t.data?"wpcom_nocookie"===t.data&&d():r(Cl())},f=()=>{n(!1)};return"original"!==i||(!u||l)&&c||d(),Object(a.useEffect)(()=>{const t=document.getElementById("jb-iframe"),n=e.current;return null!==t&&n.addEventListener("load",f),window.addEventListener("message",p),()=>{null!==t&&n.removeEventListener("load",f),window.removeEventListener("message",p)}}),s.a.createElement(s.a.Fragment,null,"in_place"===i?s.a.createElement("div",{id:"jb-iframe"},s.a.createElement("div",{className:"jb-connection__iframe jb-connection__iframe__spinner",style:{display:t?"flex":"none"}},s.a.createElement("span",null,s.a.createElement(Tl,null))),s.a.createElement("iframe",{title:"Connect",ref:e,className:"jb-connection__iframe",style:{display:t?"none":"block"},src:o}),s.a.createElement(hl,{type:"fetch-connection-status",isDismissible:!1,style:{maxWidth:"720px"}})):s.a.createElement("span",null,Ye("Redirecting you to WordPress.com","jetpack-boost")))};var Pl=()=>{const e=J(),[t,n]=Object(a.useState)(!1),r=ne(e=>vl.isUserConnected(e)),i=ne(e=>vl.isActive(e)),o=ne(e=>vl.isConnected(e)),l=ne(e=>vl.shouldClarifyTos(e)),u=ne(e=>vl.authorizeUrl(e));return s.a.createElement("div",{className:"jb-connection"},s.a.createElement("div",{className:"jb-connection__header"},s.a.createElement("h1",{className:"jb-connection__title"},Ye("Get faster loading times with Jetpack Boost","jetpack-boost")),s.a.createElement("p",{className:"jb-connection__description",dangerouslySetInnerHTML:{__html:Ye("Connect Jetpack Boost and we will make your site faster in no time.","jetpack-boost")}})),(!i||!r)&&!(o&&u)&&s.a.createElement(yl,{buttonCallback:()=>e($n())}),!i&&o&&s.a.createElement(Al,null),i&&o&&!r&&s.a.createElement(s.a.Fragment,null,t?s.a.createElement(Al,null):s.a.createElement(yl,{buttonCallback:()=>n(!0)})),i&&l&&s.a.createElement(s.a.Fragment,null,s.a.createElement(Ms,{checklist:Hn}),s.a.createElement(wl,null)))};const Rl=new WeakMap;function zl(e,t,n=""){return Object(a.useMemo)(()=>{if(n)return n;const r=function(e){const t=Rl.get(e)||0;return Rl.set(e,t+1),t}(e);return t?`${t}-${r}`:r},[e])}var Ll=function({className:e,checked:t,id:n,disabled:r,onChange:i=Jn.noop,...o}){const s=Xn()("components-form-toggle",e,{"is-checked":t,"is-disabled":r});return Object(a.createElement)("span",{className:s},Object(a.createElement)("input",b({className:"components-form-toggle__input",id:n,type:"checkbox",checked:t,onChange:i,disabled:r},o)),Object(a.createElement)("span",{className:"components-form-toggle__track"}),Object(a.createElement)("span",{className:"components-form-toggle__thumb"}))},jl={"default.fontFamily":"-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif","default.fontSize":"13px","helpText.fontSize":"12px",mobileTextMinFontSize:"16px"};function Ml(e){return Object(Jn.get)(jl,e,"")}function Bl(e=1){return isNaN(e)?"8px":8*e+"px"}const Wl=qa("div",{target:"e1puf3u0",label:"Wrapper"})("font-family:",Ml("default.fontFamily"),";font-size:",Ml("default.fontSize"),";"),Nl=qa("div",{target:"e1puf3u1",label:"StyledField"})("margin-bottom:",Bl(1),";.components-panel__row &{margin-bottom:inherit;}"),Il=qa("label",{target:"e1puf3u2",label:"StyledLabel"})("display:inline-block;margin-bottom:",Bl(1),";"),Dl=qa("p",{target:"e1puf3u3",label:"StyledHelp"})("font-size:",Ml("helpText.fontSize"),";font-style:normal;color:",(Ul="mediumGray.text",Object(Jn.get)(as,Ul,"#000")),";");var Ul;function ql({id:e,label:t,hideLabelFromVision:n,help:r,className:i,children:o}){return Object(a.createElement)(Wl,{className:Xn()("components-base-control",i)},Object(a.createElement)(Nl,{className:"components-base-control__field"},t&&e&&(n?Object(a.createElement)(_s,{as:"label",htmlFor:e},t):Object(a.createElement)(Il,{className:"components-base-control__label",htmlFor:e},t)),t&&!e&&(n?Object(a.createElement)(_s,{as:"label"},t):Object(a.createElement)(ql.VisualLabel,null,t)),o),!!r&&Object(a.createElement)(Dl,{id:e+"__help",className:"components-base-control__help"},r))}ql.VisualLabel=({className:e,children:t})=>(e=Xn()("components-base-control__label",e),Object(a.createElement)("span",{className:e},t));var Fl=ql;function Vl({label:e,checked:t,help:n,className:r,onChange:i,disabled:o}){const s="inspector-toggle-control-"+zl(Vl);let l,u;return n&&(l=s+"__help",u=Object(Jn.isFunction)(n)?n(t):n),Object(a.createElement)(Fl,{id:s,help:u,className:Xn()("components-toggle-control",r)},Object(a.createElement)(Ll,{id:s,checked:t,onChange:function(e){i(e.target.checked)},"aria-describedby":l,disabled:o}),Object(a.createElement)("label",{htmlFor:s,className:"components-toggle-control__label"},e))}var Gl={isModuleEnabled:(e,t)=>e.config[t]&&e.config[t].enabled&&!e.config[t].updating,isModuleStatusUpdating:(e,t)=>e.config[t]&&e.config[t].updating};const Hl=Cn("config/update-module-status",async({moduleSlug:e,moduleStatus:t})=>{if(await Vn(`/module/${e}/status`,{status:t})!==t)throw new Error("update-module-status-out-of-sync");return t});var Kl=Hl;const $l={[Hl.rejected]:({meta:{arg:{moduleStatus:e,moduleSlug:t}}})=>Nn("update-module-status-"+t,Ye(e?"An error occurred while trying to enable this feature. You may need to reload this page and try again.":"An error occurred while trying to disable this feature. You may need to reload this page and try again.","jetpack-boost"))},Yl=({title:e,text:t,moduleAvailable:n,moduleEnabled:r,moduleStatusUpdating:i,setModuleStatus:o,moduleSlug:a,ErrorComponent:l=null,inlineSettings:u=null})=>n?s.a.createElement("div",{className:"jb-feature-toggle"},s.a.createElement("div",{className:"jb-feature-toggle__toggle"},s.a.createElement(Vl,{disabled:i,checked:r,onChange:o,className:a+"-toggle"})),s.a.createElement("div",{className:"jb-feature-toggle__content"},s.a.createElement("h2",null,e),s.a.createElement("div",{className:"jb-feature-toggle__text"},s.a.createElement("p",null,t)),r&&u&&u(),s.a.createElement(hl,{type:"update-module-status-"+a}),l&&l)):null;Yl.propTypes={title:d.a.string,text:d.a.oneOfType([d.a.string,d.a.object]),moduleAvailable:d.a.bool,moduleEnabled:d.a.bool,moduleStatusUpdating:d.a.bool,setModuleStatus:d.a.func,moduleSlug:d.a.string,ErrorComponent:d.a.node};var Ql=K((e,{moduleSlug:t})=>{return{moduleAvailable:(n=t,Jetpack_Boost.modules.includes(n)),moduleEnabled:Gl.isModuleEnabled(e,t),moduleStatusUpdating:Gl.isModuleStatusUpdating(e,t)};var n},(e,{moduleSlug:t})=>({setModuleStatus:n=>e(Kl({moduleSlug:t,moduleStatus:n}))}))(Yl),Xl=["second","minute","hour","day","week","month","year"],Jl=["秒","分钟","小时","天","周","个月","年"],Zl={},eu=function(e,t){Zl[e]=t},tu=function(e){return Zl[e]||Zl.en_US},nu=[60,60,24,7,365/7/12,12];function ru(e){return e instanceof Date?e:!isNaN(e)||/^\d+$/.test(e)?new Date(parseInt(e)):(e=(e||"").trim().replace(/\.\d+/,"").replace(/-/,"/").replace(/-/,"/").replace(/(\d)T(\d)/,"$1 $2").replace(/Z/," UTC").replace(/([+-]\d\d):?(\d\d)/," $1$2"),new Date(e))}function iu(e,t){for(var n=e<0?1:0,r=e=Math.abs(e),i=0;e>=nu[i]&&i<nu.length;i++)e/=nu[i];return(e=Math.floor(e))>(0===(i*=2)?9:1)&&(i+=1),t(e,i,r)[n].replace("%s",e.toString())}function ou(e,t){return(+(t?ru(t):new Date)-+ru(e))/1e3}function au(e){return parseInt(e.getAttribute("timeago-id"))}var su={},lu=function(e){clearTimeout(e),delete su[e]};function uu(e,t,n,r){lu(au(e));var i=r.relativeDate,o=r.minInterval,a=ou(t,i);e.innerText=iu(a,n);var s=setTimeout((function(){uu(e,t,n,r)}),Math.min(1e3*Math.max(function(e){for(var t=1,n=0,r=Math.abs(e);e>=nu[n]&&n<nu.length;n++)e/=nu[n],t*=nu[n];return r=(r%=t)?t-r:t,Math.ceil(r)}(a),o||1),2147483647));su[s]=0,function(e,t){e.setAttribute("timeago-id",t)}(e,s)}function cu(e){e?lu(au(e)):Object.keys(su).forEach(lu)}eu("en_US",(function(e,t){if(0===t)return["just now","right now"];var n=Xl[Math.floor(t/2)];return e>1&&(n+="s"),[e+" "+n+" ago","in "+e+" "+n]})),eu("zh_CN",(function(e,t){if(0===t)return["刚刚","片刻后"];var n=Jl[~~(t/2)];return[e+" "+n+"前",e+" "+n+"后"]}));var du,pu=(du=function(e,t){return(du=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)},function(e,t){function n(){this.constructor=e}du(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}),fu=function(){return(fu=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var i in t=arguments[n])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e}).apply(this,arguments)},mu=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var i=0;for(r=Object.getOwnPropertySymbols(e);i<r.length;i++)t.indexOf(r[i])<0&&Object.prototype.propertyIsEnumerable.call(e,r[i])&&(n[r[i]]=e[r[i]])}return n},hu=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.dom=null,t}return pu(t,e),t.prototype.componentDidMount=function(){this.renderTimeAgo()},t.prototype.componentDidUpdate=function(){this.renderTimeAgo()},t.prototype.renderTimeAgo=function(){var e,t=this.props,n=t.live,r=t.datetime,i=t.locale,o=t.opts;cu(this.dom),!1!==n&&(this.dom.setAttribute("datetime",""+((e=r)instanceof Date?e.getTime():e)),function(e,t,n){var r=e.length?e:[e];r.forEach((function(e){uu(e,function(e){return e.getAttribute("datetime")}(e),tu(t),n||{})}))}(this.dom,i,o))},t.prototype.componentWillUnmount=function(){cu(this.dom)},t.prototype.render=function(){var e=this,t=this.props,n=t.datetime,r=(t.live,t.locale),i=t.opts,o=mu(t,["datetime","live","locale","opts"]);return a.createElement("time",fu({ref:function(t){e.dom=t}},o),function(e,t,n){return iu(ou(e,n&&n.relativeDate),tu(t))}(n,r,i))},t.defaultProps={live:!0,className:""},t}(a.Component),gu=n("PFem"),vu=n.n(gu),yu=(e,t,n)=>{let r="";e||(e=new Date);const i={year:"numeric",month:"2-digit",day:"numeric",hour:"2-digit",minute:"2-digit",second:"2-digit",...n};if(!t)return e.toLocaleDateString("en-US",i);try{r=e.toLocaleDateString(t.replace("_","-"),i)}catch(t){r=e.toLocaleDateString("en-US",i)}return r};const bu={isGenerating:e=>"requesting"===e.criticalCss.status,isNotGenerated:e=>"not_generated"===e.criticalCss.status,isReset:e=>"reset"===e.criticalCss.status,isError:e=>"error"===e.criticalCss.status,isRequestingGeneration:e=>e.criticalCss.requestingGeneration,error:e=>bu.isError(e)&&e.criticalCss.error,created:e=>e.criticalCss.created?yu(new Date(1e3*e.criticalCss.created),Jetpack_Boost.locale):void 0,percentComplete:e=>e.criticalCss.percent_complete||0,isServiceRequest:e=>e.criticalCss.service_request,successCount:e=>e.criticalCss.success_count,shouldPollStatus:e=>bu.isGenerating(e)&&bu.isServiceRequest(e),isLocalGeneratorRunning:e=>e.criticalCss.localGeneratorRunning,shouldLocalGeneratorRun:e=>bu.isGenerating(e)&&!bu.isServiceRequest(e),requestNonce:e=>e.criticalCss.generation_nonce,callbackPassthrough:e=>e.criticalCss.callback_passthrough,viewports:e=>e.criticalCss.viewports,pendingProviderKeys:e=>Object.keys(e.criticalCss.pending_provider_keys||{}),providerKeyUrls:(e,t)=>e.criticalCss.pending_provider_keys&&e.criticalCss.pending_provider_keys[t]||[]};var Su=bu;function xu(e){return yn("critical-css/"+e)}var wu={statusUpdated:xu("status-updated"),localGeneratorProgress:xu("generator-progress"),localGeneratorBegin:xu("generator-begin"),localGeneratorEnd:xu("generator-end")},ku=n("tanQ"),Cu=n.n(ku);class Ou{constructor(e,t){this.majorStep=0,this.minorStep=0,this.callback=t,this.majorSteps=Math.max(1,e||100)}setMajorStep(e){this.majorStep=e,this.minorStep=0,this.broadcast()}setMinorStep(e,t){this.minorStep=e/(t||100),this.broadcast()}broadcast(){this.callback(100*(this.majorStep+this.minorStep)/this.majorSteps)}}var _u=()=>async(e,t)=>{if(!Su.isLocalGeneratorRunning(t())){e(wu.localGeneratorBegin());try{await e(Eu())}finally{e(wu.localGeneratorEnd())}}};const Eu=Cn("critical-css/local-gen",async(e,t)=>{const n=t.getState(),r=Su.viewports(n),i=Su.pendingProviderKeys(n),o=Su.successCount(n),a=Su.callbackPassthrough(n),s=Su.requestNonce(n),l=i.length+o,u=new Ou(l,e=>{t.dispatch(wu.localGeneratorProgress(e))});for(const[e,n]of i.entries()){u.setMajorStep(e+o);try{const[e,i]=await Pu(Su.providerKeyUrls(t.getState(),n),r,s,(e,t)=>u.setMinorStep(e,t));await t.dispatch(Ru(e,i,n,a))}catch(e){await t.dispatch(zu(e,n,a))}}}),Tu={[Eu.rejected]:e=>Nn("critical-css",e.error.message)};function Au(e,t,n){return!!n.querySelector('meta[name="jb-generate-critical-css"]')}async function Pu(e,t,n,r){const i={"jb-generate-critical-css":n},o=new Cu.a.BrowserInterfaceIframe({requestGetParameters:i,verifyPage:Au,allowScripts:!1});return Cu.a.generateCriticalCSS({urls:e,viewports:t,progressCallback:r,browserInterface:o})}const Ru=(e,t,n,r)=>async i=>{const o=await Lu(n,"success",{data:e,warnings:t,passthrough:r});i(ju(o))},zu=(e,t,n)=>async r=>{let i=e.message;e instanceof Cu.a.CriticalCssError&&(i=e);const o=await Lu(t,"error",{data:i,passthrough:n});await r(ju(o))};async function Lu(e,t,n){try{const r=await Vn(`/critical-css/${e}/${t}`,n);if("module-unavailable"===r.status)return;if("success"!==r.status)throw new Error(r.code);return r.status_update}catch(e){throw new Error(le(Ye("An error occurred while sending Critical CSS generation results to the server: %s","jetpack-boost"),e.message))}}var ju=e=>(t,n)=>{t(wu.statusUpdated(e)),Su.shouldLocalGeneratorRun(n())&&t(_u())};const Mu=Cn("critical-css/request-generation",async(e,t)=>{(e=>{const t=document.getElementById(e);t&&t.remove()})("jetpack-boost-notice-regenerate-critical-css");const n=await Vn("/critical-css/request-generate");if("module-unavailable"!==n.status){if("success"!==n.status)throw new Error(n.code);t.dispatch(ju(n.status_update))}});var Bu=Mu;const Wu={[Mu.rejected]:e=>Nn("critical-css",e.error&&e.error.message||Ye("An unknown error occurred while sending a request to generate Critical CSS","jetpack-boost"))},Nu=e=>{const t=["jb-error"];return e&&t.push("jb-error--"+e),t.join(" ")},Iu=(e,t)=>s.a.createElement("div",{key:t,className:"jb-error__message"},e),Du=({title:e,description:t,errors:n,type:r})=>("string"==typeof n&&(n=[n]),s.a.createElement("div",{className:Nu(r)},e&&s.a.createElement("div",{className:"jb-error__description"},e),t&&s.a.createElement("div",{className:"jb-error__message"},t),n&&n.length>0&&n.map(Iu))),Uu=({children:e,href:t="#",isLink:n=!0,onClick:r,preventDefault:i=!0})=>{const o=i?e=>e.preventDefault&&r(e):r;return n?s.a.createElement("a",{className:"action",href:t,onClick:o},e):s.a.createElement("button",{className:"jb-error__button",onClick:r},e)},qu={HttpError:{description:e=>le(Ye("Boost received HTTP error %d while reading <url/>.","jetpack-boost"),e.get("code")),suggestion:()=>Ye("Please check that the URL is reachable and <retry>try again</retry>.","jetpack-boost")},GenericUrlError:{description:e=>le(Ye("Error while reading <url/>: %s","jetpack-boost"),e.get("message")),suggestion:()=>Ye("Please check the URL is valid and <retry>try again</retry>.","jetpack-boost")},CrossDomainError:{description:()=>Ye("Failed to read cross-domain content at <url/>.","jetpack-boost"),suggestion:()=>Ye("Please check the URL is on the same hostname as your site and <retry>try again</retry>.","jetpack-boost")},LoadTimeoutError:{description:()=>Ye("Timed out while reading <url/>.","jetpack-boost"),suggestion:()=>Ye("Please verify the URL is working and <retry>try again</retry>.","jetpack-boost")},UrlVerifyError:{description:()=>Ye("Unexpected content loaded at <url/>","jetpack-boost"),suggestion:()=>Ye("Please verify the URL is a part of your site and <retry>try again</retry>.","jetpack-boost")},ConfigurationError:{description:e=>le(Ye("An internal configuration error has occurred: %s","jetpack-boost"),e.get("message")),suggestion:()=>Ye("Please contact Jetpack Boost support for assistance, or <retry>try again</retry>.","jetpack-boost")},InternalError:{description:e=>le(Ye("An internal error has occurred: %s","jetpack-boost"),e.get("message")),suggestion:()=>Ye("Please contact Jetpack Boost support for assistance, or <retry>try again</retry>.","jetpack-boost")},UnknownError:{description:e=>e.message,suggestion:()=>Ye("<retry>Try again</retry>, or contact Jetpack Boost support for assistance.","jetpack-boost")}};function Fu(e){const t=new URL(e);for(const e of t.searchParams.keys())e.startsWith("jb-")&&t.searchParams.delete(e);return s.a.createElement("a",{href:e,target:"_blank",rel:"noopener noreferrer"},t.toString())}function Vu(e){const t=(qu[e.getType()]||qu.UnknownError).description(e);return e.has("url")?Mn(t,{url:Fu(e.get("url"))}):t}function Gu(e,t){const n=qu[e.getType()]||qu.UnknownError;return Mn(n.suggestion(),{retry:s.a.createElement(Uu,{onClick:t})})}var Hu=K(e=>({error:Su.error(e)}),e=>({requestGenerate:()=>e(Bu())}))((function({error:e,requestGenerate:t}){const n=[];for(const[r,i]of Object.entries(e)){const e=ku.CriticalCssError.fromJSON(i),o=s.a.createElement(s.a.Fragment,null,s.a.createElement("p",null,Vu(e)),s.a.createElement("p",null,Gu(e,t)));n.push(s.a.createElement(Du,{key:r,title:Ye("Failed to generate Critical CSS:","jetpack-boost"),description:o}))}return n}));const Ku=Cn("critical-css/get-status",async(e,t)=>{const n=await Fn("/critical-css/status");t.dispatch(ju(n))});var $u=Ku;const Yu={[Ku.rejected]:e=>Nn("critical-css",e.error.message)},Qu=({completed:e,className:t="jb-progress-bar"})=>{const n={width:e+"%"};return s.a.createElement("div",{role:"progressbar","aria-valuemax":"100","aria-valuemin":"0","aria-valuenow":e,className:t},s.a.createElement("div",{className:t+"__filler",style:n,"aria-hidden":"true"}))};Qu.propTypes={completed:d.a.number,text:d.a.node};var Xu=Qu;var Ju=K(e=>({cssBlockCount:e.criticalCss.success_count,isNotGenerated:Su.isNotGenerated(e),isGenerating:Su.isGenerating(e),wasReset:Su.isReset(e),generatedTime:Su.created(e),error:Su.error(e),isRequestingGeneration:Su.isRequestingGeneration(e),generatingPercent:Su.percentComplete(e),shouldLocalGeneratorRun:Su.shouldLocalGeneratorRun(e),shouldPollStatus:Su.shouldPollStatus(e)}),e=>({requestGenerate:()=>e(Bu()),runLocalGenerator:()=>e(_u()),updateStatus:()=>e($u())}))(({cssBlockCount:e,generatedTime:t,isGenerating:n,generatingPercent:r,requestGenerate:i,error:o,wasReset:l,isNotGenerated:u,isRequestingGeneration:c,runLocalGenerator:d,shouldLocalGeneratorRun:p,shouldPollStatus:f,updateStatus:m})=>{return Object(a.useEffect)(()=>{(u||l&&!c)&&i()},[u,l,c,i]),Object(a.useEffect)(()=>{p&&d()},[p,d]),Object(a.useEffect)(()=>{if(f){const e=setInterval(m,5e3);return()=>clearInterval(e)}},[f,m]),n?(h=r,s.a.createElement("div",{className:"jb-critical-css-progress"},s.a.createElement("span",{className:"jb-critical-css-progress__label"},Ye("Generating Critical CSS…","jetpack-boost")),s.a.createElement(Xu,{completed:h}))):o?s.a.createElement(Hu,null):s.a.createElement("div",{className:"jb-critical-css__meta"},function(e,t){if(!e)return null;const n=le(Qe("%1$d file generated ","%1$d files generated ",e,"jetpack-boost"),e);return s.a.createElement("div",null,n,s.a.createElement(hu,{datetime:t,locale:Jetpack_Boost.locale}),".")}(e,t),function(e){return s.a.createElement(s.a.Fragment,null,s.a.createElement(Ts,{isLink:!0,onClick:t=>{t.preventDefault(),e()}},s.a.createElement(vu.a,{size:"15"}),Ye("Regenerate","jetpack-boost")))}(i));var h});const Zu=Cn("cache/clear",async()=>await Gn("/cache"));var ec=Zu;const tc={[Zu.rejected]:e=>Nn("clear-cache",e.error&&e.error.message||Ye("An unknown error occurred clearing the cache","jetpack-boost")),[Zu.fulfilled]:()=>Wn("clear-cache",Ye("Cache cleared","jetpack-boost"))},nc=()=>s.a.createElement(s.a.Fragment,null,s.a.createElement(Ql,{moduleSlug:"critical-css",title:Ye("Optimize CSS Loading","jetpack-boost"),ErrorComponent:s.a.createElement(hl,{type:"critical-css"}),text:Mn(Ye("Move important styling information to the start of the page, which helps pages display your content sooner. Commonly referred to as <criticalCssLink>Critical CSS</criticalCssLink>.","jetpack-boost"),{criticalCssLink:s.a.createElement("a",{href:"https://web.dev/extract-critical-css/",target:"_blank",rel:"noopener noreferrer"})}),inlineSettings:()=>s.a.createElement(Ju,null)}),s.a.createElement(Ql,{moduleSlug:"render-blocking-js",title:Ye("Defer Non-Essential Javascript","jetpack-boost"),text:Mn(Ye("Run non-essential javascript after the page has loaded so that styles and images can load more quickly. Read more on <webDevLink>web.dev</webDevLink>.","jetpack-boost"),{webDevLink:s.a.createElement("a",{href:"https://web.dev/efficiently-load-third-party-javascript/",target:"_blank",rel:"noopener noreferrer"})})}),s.a.createElement(Ql,{moduleSlug:"lazy-images",title:Ye("Lazy Image Loading","jetpack-boost"),enableBenchmark:!0,text:Mn(Ye("Improve page loading speed by only loading images when they are required. Read more on <webDevLink>web.dev</webDevLink>.","jetpack-boost"),{webDevLink:s.a.createElement("a",{href:"https://web.dev/browser-level-image-lazy-loading/",target:"_blank",rel:"noopener noreferrer"})})}));nc.propTypes={criticalCssRequestGeneration:d.a.object};var rc=K(()=>({}),e=>({clearCache:()=>e(ec())}))(nc);const ic=e=>{const{rate:t,description:n}=e;return s.a.createElement("div",{className:"item"},s.a.createElement("div",{className:"item__rate"},t),s.a.createElement("div",{className:"item__description"},n))},oc=()=>s.a.createElement("div",{className:"jb-benchmarks"},s.a.createElement("div",{className:"jb-benchmarks__title"},Ye("Did you know?","jetpack-boost")),s.a.createElement("div",{className:"jb-benchmarks__items"},s.a.createElement(ic,{rate:"4x",description:Mn(Ye("Pages that take over 3 seconds to load have 4x the bounce rate of pages that load in 2 seconds or less. (source: <pingdomLink>Pingdom</pingdomLink>).","jetpack-boost"),{pingdomLink:s.a.createElement("a",{href:"https://royal.pingdom.com/page-load-time-really-affect-bounce-rate/",target:"_blank",rel:"noopener noreferrer"})})}),s.a.createElement(ic,{rate:"20%",description:Mn(Ye("A one-second delay in loading times can reduce conversion rates by 20%. (source: <googleLink>Google</googleLink>).","jetpack-boost"),{googleLink:s.a.createElement("a",{href:"https://web.dev/why-speed-matters/",target:"_blank",rel:"noopener noreferrer"})})})));oc.propTypes={rate:d.a.string,description:d.a.object};var ac=oc;const sc={request:(e,t)=>e.metrics[t]||{},results:(e,t)=>sc.request(e,t).results,generatedAt:(e,t)=>sc.request(e,t).generatedAt,error:(e,t)=>sc.request(e,t).error,isRequesting:(e,t)=>sc.request(e,t).requesting,siteScore:(e,t)=>{const n=sc.results(e,"site-score-"+t);return n&&n.score&&Math.ceil(100*parseFloat(n.score))}};var lc=sc,uc=e=>"site-score-"+e,cc=(e,t)=>(t||(t=Ye("An unknown error occurred","jetpack-boost")),"string"==typeof e||e instanceof String?e:e.message?e.message:t);const dc=Cn("metrics/request",async({url:e,type:t,viewport:n,clearCache:r})=>await Promise.all([pc({url:e,type:t,strategy:"mobile",viewport:n,requestSlug:uc("mobile")},r),pc({url:e,type:t,strategy:"desktop",viewport:n,requestSlug:uc("desktop")},r)])),pc=async(e,t)=>{t&&await Gn("/metrics",e);const n=await Vn("/metrics",e);if(n.error){const e=Ye("An unknown error occurred while requesting metrics","jetpack-boost");throw new Error(cc(n.error,e))}if(n.results&&Object.keys(n.results).length>0)return{requestSlug:e.requestSlug,results:n.results,created:n.created};if(!n.id)throw new Error(Ye("Invalid response while requesting metrics","jetpack-boost"));return await async function(e,t){let n,r;return new Promise((i,o)=>{n=setTimeout(()=>{o(Ye("Timed out while waiting for metrics","jetpack-boost"))},12e4),r=setInterval(async()=>{try{const n=await Vn("/metrics/"+t+"/update");if(n.error){const e=Ye("An unknown error occurred while polling metrics","jetpack-boost");o(new Error(cc(n.error,e)))}n.results&&Object.keys(n.results).length>0&&i({requestSlug:e,results:n.results,created:n.created})}catch(e){o(e.message)}},5e3)}).finally(()=>{n&&clearTimeout(n),r&&clearInterval(r)})}(e.requestSlug,n.id)};var fc=dc;dc.rejected;var mc=n("fMw4"),hc=n.n(mc),gc=n("+nbL"),vc=n.n(gc);const yc=({strategy:e})=>"mobile"===e?s.a.createElement(s.a.Fragment,null,s.a.createElement(hc.a,null),s.a.createElement("div",null,Ye("Mobile score","jetpack-boost"))):s.a.createElement(s.a.Fragment,null,s.a.createElement(vc.a,null),s.a.createElement("div",null,Ye("Desktop score","jetpack-boost")));yc.propTypes={strategy:d.a.string};const bc=({score:e})=>!1===e||void 0===e?s.a.createElement("div",{className:"jb-score-bar__loading"},s.a.createElement(Tl,null)):s.a.createElement("div",{className:"jb-score-bar__score"},e);bc.propTypes={score:d.a.oneOfType([d.a.number,d.a.bool])};const Sc=({strategy:e,score:t})=>{const n={width:t+"%"},r=(e=>!1===e||void 0===e?"fill-loading":e>70?"fill-good":e>50?"fill-mediocre":"fill-bad")(t);return s.a.createElement("div",{className:"jb-site-score"},s.a.createElement("div",{className:"jb-score-bar"},s.a.createElement("div",{className:"jb-score-bar__label"},s.a.createElement(yc,{strategy:e})),s.a.createElement("div",{className:"jb-score-bar__bounds"},s.a.createElement("div",{className:"jb-score-bar__filler "+r,style:n},s.a.createElement(bc,{score:t})))))};Sc.propTypes={score:d.a.number,strategy:d.a.string};var xc=Sc;const wc=({mobile:e,desktop:t})=>e&&t?s.a.createElement("div",{className:"jb-site-score__header jb-site-score--loading"},Ye("Overall score: ","jetpack-boost"),(({mobile:e,desktop:t})=>{const n=(e+t)/2;return n>90?"A":n>75?"B":n>50?"C":n>25?"D":"F"})({mobile:e,desktop:t})):s.a.createElement("div",{className:"jb-site-score__header jb-site-score--loading"},Ye("Calculating score… ","jetpack-boost")),kc=({errors:e,retry:t})=>{const n=s.a.createElement(s.a.Fragment,null,Ye("Couldn't get the site score","jetpack-boost")," ",s.a.createElement(Uu,{onClick:()=>t(!0)},Ye("Retry","jetpack-boost")));return s.a.createElement(s.a.Fragment,null,s.a.createElement("div",{className:"jb-site-score__header"},Ye("Whoops, something went wrong","jetpack-boost")),s.a.createElement(Du,{title:n,errors:e,type:"offset"}))},Cc=({metrics:e,requestMetrics:t})=>{const{mobile:n,desktop:r}=e,[i,o]=Object(a.useState)(!1);Object(a.useEffect)(()=>{n.results&&r.results||i||(o(!0),t())},[t,e,i,n.results,r.results]);const l=(u=[n.error,r.error],[...new Set(u)]).filter(Boolean);var u;const c=l.length>0;return s.a.createElement("div",{className:"jb-site-score "+(c&&"jb-site-score--error")},c?s.a.createElement(kc,{errors:l,retry:t}):s.a.createElement("div",{className:"jb-site-score__top"},s.a.createElement(wc,{mobile:n.score,desktop:r.score}),s.a.createElement("div",null,s.a.createElement(Ts,{isLink:!0,onClick:()=>t(!0),disabled:r.isRequesting||n.isRequesting},s.a.createElement(vu.a,{size:"15"}),Ye(" Refresh","jetpack-boost")))),s.a.createElement(xc,{strategy:"mobile",score:n.score}),s.a.createElement(xc,{strategy:"desktop",score:r.score}))};Cc.propTypes={metrics:d.a.object,requestMetrics:d.a.func};const Oc=(e,t)=>({error:lc.error(e,uc(t)),metrics:lc.results(e,uc(t)),score:lc.siteScore(e,t),isRequesting:lc.isRequesting(e,uc(t))});var _c=K(e=>({metrics:{mobile:Oc(e,"mobile"),desktop:Oc(e,"desktop")}}),e=>({requestMetrics:t=>{e(fc({clearCache:t,url:Jetpack_Boost.siteUrl,type:"lighthouse",viewport:{width:1024,height:768}}))}}))(Cc);var Ec=function(e,t){return n=>{const r=e(n),i=n.displayName||n.name||"Component";return r.displayName=`${Object(Jn.upperFirst)(Object(Jn.camelCase)(t))}(${i})`,r}},Tc=Ec(e=>t=>{const n=zl(e);return Object(a.createElement)(e,b({},t,{instanceId:n}))},"withInstanceId"),Ac=Ec(e=>t=>{const[n,r]=Object(a.useState)(),i=Object(a.useCallback)(e=>r(()=>null!=e&&e.handleFocusOutside?e.handleFocusOutside.bind(e):void 0),[]);return Object(a.createElement)("div",Mr(n),Object(a.createElement)(e,b({ref:i},t)))},"withFocusOutside");function Pc({overlayClassName:e,contentLabel:t,aria:{describedby:n,labelledby:r},children:i,className:o,role:s,style:l,focusOnMount:u,shouldCloseOnEsc:c,onRequestClose:d}){const p=Lr(u),f=Rr(),m=zr();return Object(a.createElement)("div",{className:Xn()("components-modal__screen-overlay",e),onKeyDown:function(e){c&&27===e.keyCode&&(e.stopPropagation(),d&&d(e))}},Object(a.createElement)("div",{className:Xn()("components-modal__frame",o),style:l,ref:Br([f,m,p]),role:s,"aria-label":t,"aria-labelledby":t?null:r,"aria-describedby":n,tabIndex:"-1"},i))}class Rc extends a.Component{constructor(){super(...arguments),this.handleFocusOutside=this.handleFocusOutside.bind(this)}handleFocusOutside(e){this.props.shouldCloseOnClickOutside&&this.props.onRequestClose&&this.props.onRequestClose(e)}render(){return Object(a.createElement)(Pc,this.props)}}var zc=Ac(Rc);var Lc=Object(a.createElement)(Nr,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(a.createElement)(Wr,{d:"M12 13.06l3.712 3.713 1.061-1.06L13.061 12l3.712-3.712-1.06-1.06L12 10.938 8.288 7.227l-1.061 1.06L10.939 12l-3.712 3.712 1.06 1.061L12 13.061z"}));var jc=({icon:e,title:t,onClose:n,closeLabel:r,headingId:i,isDismissible:o})=>{const s=r||Ye("Close dialog");return Object(a.createElement)("div",{className:"components-modal__header"},Object(a.createElement)("div",{className:"components-modal__header-heading-container"},e&&Object(a.createElement)("span",{className:"components-modal__icon-container","aria-hidden":!0},e),t&&Object(a.createElement)("h1",{id:i,className:"components-modal__header-heading"},t)),o&&Object(a.createElement)(Ts,{onClick:n,icon:Lc,label:s}))};const Mc=new Set(["alert","status","log","marquee","timer"]);let Bc=[],Wc=!1;function Nc(e){if(Wc)return;const t=document.body.children;Object(Jn.forEach)(t,t=>{t!==e&&function(e){const t=e.getAttribute("role");return!("SCRIPT"===e.tagName||e.hasAttribute("aria-hidden")||e.hasAttribute("aria-live")||Mc.has(t))}(t)&&(t.setAttribute("aria-hidden","true"),Bc.push(t))}),Wc=!0}let Ic,Dc=0;class Uc extends a.Component{constructor(e){super(e),this.prepareDOM()}componentDidMount(){Dc++,1===Dc&&this.openFirstModal()}componentWillUnmount(){Dc--,0===Dc&&this.closeLastModal(),this.cleanDOM()}prepareDOM(){Ic||(Ic=document.createElement("div"),document.body.appendChild(Ic)),this.node=document.createElement("div"),Ic.appendChild(this.node)}cleanDOM(){Ic.removeChild(this.node)}openFirstModal(){Nc(Ic),document.body.classList.add(this.props.bodyOpenClassName)}closeLastModal(){document.body.classList.remove(this.props.bodyOpenClassName),Wc&&(Object(Jn.forEach)(Bc,e=>{e.removeAttribute("aria-hidden")}),Bc=[],Wc=!1)}render(){const{onRequestClose:e,title:t,icon:n,closeButtonLabel:r,children:i,aria:o,instanceId:s,isDismissible:u,isDismissable:c,...d}=this.props,p=t?"components-modal-header-"+s:o.labelledby;return c&&er("isDismissable prop of the Modal component",{since:"5.4",alternative:"isDismissible prop (renamed) of the Modal component"}),Object(l.createPortal)(Object(a.createElement)(zc,b({onRequestClose:e,aria:{labelledby:p,describedby:o.describedby}},d),Object(a.createElement)("div",{className:"components-modal__content",role:"document"},Object(a.createElement)(jc,{closeLabel:r,headingId:t&&p,icon:n,isDismissible:u||c,onClose:e,title:t}),i)),this.node)}}Uc.defaultProps={bodyOpenClassName:"modal-open",role:"dialog",title:null,focusOnMount:!0,shouldCloseOnEsc:!0,shouldCloseOnClickOutside:!0,isDismissible:!0,aria:{labelledby:null,describedby:null}};var qc=Tc(Uc);var Fc=function({icon:e,size:t=24,...n}){return Object(a.cloneElement)(e,{width:t,height:t,...n})};var Vc=Object(a.createElement)(Nr,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(a.createElement)(Wr,{d:"M18.3 5.6L9.9 16.9l-4.6-3.4-.9 1.2 5.8 4.3 9.3-12.6z"}));function Gc({label:e,className:t,heading:n,checked:r,help:i,onChange:o,...s}){n&&er("`heading` prop in `CheckboxControl`",{alternative:"a separate element to implement a heading",plugin:"Gutenberg"});const l="inspector-checkbox-control-"+zl(Gc);return Object(a.createElement)(Fl,{label:n,id:l,help:i,className:Xn()("components-checkbox-control",t)},Object(a.createElement)("span",{className:"components-checkbox-control__input-container"},Object(a.createElement)("input",b({id:l,className:"components-checkbox-control__input",type:"checkbox",value:"1",onChange:e=>o(e.target.checked),checked:r,"aria-describedby":i?l+"__help":void 0},s)),r?Object(a.createElement)(Fc,{icon:Vc,className:"components-checkbox-control__checked",role:"presentation"}):null),Object(a.createElement)("label",{className:"components-checkbox-control__label",htmlFor:l},e))}var Hc=({isOpen:e,closeModalHandler:t})=>{const[n,r]=Object(a.useState)(!1),[i,o]=Object(a.useState)(!1),l=async()=>{r(!1),t("cancel")};return s.a.createElement(s.a.Fragment,null,e&&s.a.createElement(qc,{title:Ye("Jetpack Boost - Warning","jetpack-boost"),shouldCloseOnClickOutside:!0,shouldCloseOnEsc:!0,onRequestClose:l,isDismissible:!1},s.a.createElement("div",{className:"jb-warning-modal"},s.a.createElement("p",null,Ye("Jetpack Boost is currently generating Critical CSS for your site.","jetpack-boost")),s.a.createElement("p",null,Ye("If you navigate away from this page, the process will be paused. You can resume the process any time by returning to this page.","jetpack-boost")),s.a.createElement("div",{className:"jb-warning-modal__actions"},s.a.createElement("div",null,s.a.createElement("div",null,s.a.createElement(Ts,{isSecondary:!0,disabled:i,onClick:l},Ye("Cancel","jetpack-boost")),s.a.createElement(Ts,{className:"confirm",isPrimary:!0,disabled:i,onClick:async()=>{o(!0),await(async e=>{const t=new FormData;t.append("action","permanently_dismiss_warning_modal"),t.append("nonce",Jetpack_Boost.criticalCssWarningNonce),t.append("permanentlyDismissWarning",e),await fetch(ajaxurl,{method:"POST",credentials:"same-origin",body:t})})(n),t("confirm")}},Ye("Ok","jetpack-boost"))),s.a.createElement(Gc,{className:"checkbox",label:Ye("Don't show me this warning again","jetpack-boost"),disabled:i,checked:n,onChange:e=>{r(e)}}))))))};var Kc=()=>{const e=Object(a.useRef)(null),[t,n]=Object(a.useState)(!1),[r,i]=Object(a.useState)(null),o=ne(e=>Su.isGenerating(e)),l=t=>{if(1===Number(Jetpack_Boost.showCriticalCssWarningModal)&&e.current&&!e.current.contains(t.target)){const e=(e=>{if(!e||0===e.length)return"";let t=e;do{if(t===document)break;if("A"===t.nodeName)return t.href}while(t=t.parentNode);return""})(t.srcElement);e&&!e.includes("#")&&(t.preventDefault(),n(!0),i(e))}};return Object(a.useEffect)(()=>(o&&document.addEventListener("mousedown",l),()=>{document.removeEventListener("mousedown",l)}),[e,o]),s.a.createElement("div",{ref:e},s.a.createElement(Hc,{isOpen:t,closeModalHandler:e=>{"confirm"===e?window.location.href=r:n(!1)}}),s.a.createElement("div",{className:"jb-section--alt"},s.a.createElement("div",{className:"jb-container"},s.a.createElement(_c,null))),s.a.createElement("div",{className:"jb-section"},s.a.createElement("div",{className:"jb-container--narrow"},s.a.createElement(rc,null))),s.a.createElement("div",{className:"jb-section--alt"},s.a.createElement("div",{className:"jb-container--narrow"},s.a.createElement(ac,null))))};const $c=Cn("connection/disconnect-site",async()=>{await Gn("/connection")});var Yc=$c;const Qc={[$c.fulfilled]:()=>Wn("jetpack-disconnect",Ye("Your site has been successfully disconnected from Jetpack Boost","jetpack-boost")),[$c.rejected]:e=>Nn("jetpack-disconnect",e.error.message)},Xc=Cn("connection/disconnect-user",async()=>{await Gn("/connection",{disconnectOnlyUser:!0})});var Jc=Xc;const Zc={[Xc.fulfilled]:()=>Wn("jetpack-disconnect",Ye("You have successfully been disconnected from Jetpack Boost","jetpack-boost")),[Xc.rejected]:e=>Nn("jetpack-disconnect",e.error.message)},ed=({type:e,onClickCallback:t})=>{const n=ne(e=>Ps.status(e,"jetpack-disconnect")),r=ne(e=>vl.isDisconnecting(e)),i=ne(e=>vl.canDisconnect(e));let o=Ye("user"===e?"Disconnect User":"Disconnect Site","jetpack-boost");return r&&(o=Ye("Disconnecting…","jetpack-boost")),s.a.createElement("div",{className:"jb-current-user__disconnect-info__button"},s.a.createElement(Ts,{isSecondary:!0,isSmall:!0,onClick:t,disabled:!i||r},o),"error"===n&&s.a.createElement(hl,{type:"jetpack-disconnect"}))};ed.propTypes={type:d.a.string,onClickCallback:d.a.func};var td,nd,rd,id=()=>{const[e,t]=Object(a.useState)(!1),n=J(),r=ne(e=>vl.email(e)),i=ne(e=>vl.avatarUrl(e)),o=ne(e=>vl.displayName(e)),l=ne(e=>vl.isPrimaryUser(e)),u=e?"dashicons-arrow-up-alt2":"dashicons-arrow-down-alt2";return s.a.createElement("div",{className:"jb-current-user "+(e?"expanded":"")},s.a.createElement("div",{className:"jb-current-user__header",tabIndex:0,onClick:()=>t(!e),role:"button","aria-pressed":e},s.a.createElement("div",{className:"jb-current-user__header__avatar"},s.a.createElement("img",{src:i||void 0,alt:o})),s.a.createElement("strong",{className:"jb-current-user__header__name"},o),s.a.createElement("div",{className:"jb-current-user__header__arrow"},s.a.createElement("i",{className:"dashicons "+u}))),s.a.createElement("div",{className:"jb-current-user__content"},s.a.createElement("div",{className:"jb-current-user__content__disconnect-info"},s.a.createElement("span",null,le(Ye("You are connected as %1$s","jetpack-boost"),o)),s.a.createElement("span",null,"(",r,")."))),s.a.createElement("div",{className:"jb-current-user__actions"},s.a.createElement("div",{className:"jb-current-user__disconnect-info__button"},l?s.a.createElement(ed,{type:"site",onClickCallback:()=>{t(!1),n(Yc())}}):s.a.createElement(ed,{type:"user",onClickCallback:()=>{t(!1),n(Jc())}}))))};function od(){return(od=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}).apply(this,arguments)}var ad,sd,ld,ud=function(e){return a.createElement("svg",od({xmlns:"http://www.w3.org/2000/svg",width:176,height:32,fill:"none"},e),td||(td=a.createElement("path",{d:"M131.517 10.878c0 .656-.149 1.257-.446 1.804-.3.547-.79 1-1.477 1.364v.045c.381.128.73.292 1.047.492a3.205 3.205 0 011.339 1.646c.126.347.188.735.188 1.164 0 .37-.059.766-.177 1.188a3.68 3.68 0 01-.624 1.228 4.8 4.8 0 01-1.19 1.091c-.495.332-1.121.596-1.876.792-.191.045-.398.087-.624.125-.225.037-.475.07-.75.096-.275.026-.58.045-.915.056-.336.01-.713.016-1.133.016h-4.45V6.852h5.32c1.137 0 2.053.113 2.747.34.52.165.969.382 1.35.65.381.268.697.566.944.894a3.513 3.513 0 01.727 2.142zm-5.756 2.206c.762 0 1.33-.075 1.705-.226.42-.173.719-.413.899-.718.178-.306.268-.651.268-1.035 0-.4-.103-.756-.31-1.069-.205-.313-.556-.545-1.051-.696a3.915 3.915 0 00-.72-.13c-.276-.027-.615-.04-1.02-.04h-2.3v3.914h2.529zm-2.529 2.318v4.265h1.83a17.1 17.1 0 001.26-.04c.35-.026.652-.07.904-.13.39-.083.713-.194.973-.334.259-.14.469-.298.63-.476.16-.176.274-.373.343-.588.07-.215.102-.442.102-.684 0-.422-.117-.791-.354-1.108-.236-.317-.606-.554-1.11-.713a4.023 4.023 0 00-.778-.146c-.298-.03-.679-.046-1.144-.046h-2.656zM144.904 16.511c0 .86-.13 1.644-.39 2.353a5.163 5.163 0 01-1.116 1.821 4.945 4.945 0 01-1.756 1.17c-.686.276-1.453.413-2.3.413-.87 0-1.65-.138-2.34-.413a4.87 4.87 0 01-1.757-1.17 5.104 5.104 0 01-1.104-1.821c-.255-.708-.383-1.494-.383-2.353 0-.86.13-1.643.389-2.353a5.152 5.152 0 011.116-1.82 4.942 4.942 0 011.756-1.171c.687-.276 1.453-.413 2.3-.413.87 0 1.65.138 2.34.413.691.276 1.276.665 1.757 1.17.48.505.848 1.112 1.104 1.821.255.71.384 1.494.384 2.353zm-2.804 0c0-.58-.069-1.093-.206-1.539a3.308 3.308 0 00-.573-1.12 2.328 2.328 0 00-.882-.678 2.753 2.753 0 00-1.12-.226 2.68 2.68 0 00-1.105.226c-.338.152-.63.378-.874.679a3.318 3.318 0 00-.573 1.12 5.241 5.241 0 00-.206 1.538c0 .58.07 1.093.206 1.539.137.444.33.816.578 1.114.248.298.542.524.881.678.339.155.71.232 1.116.232.404 0 .774-.077 1.11-.232a2.42 2.42 0 00.869-.678 3.25 3.25 0 00.573-1.114c.137-.446.206-.959.206-1.539zM157.476 16.511c0 .86-.129 1.644-.389 2.353a5.163 5.163 0 01-1.116 1.821 4.952 4.952 0 01-1.756 1.17c-.686.276-1.453.413-2.3.413-.87 0-1.65-.138-2.34-.413a4.87 4.87 0 01-1.757-1.17 5.104 5.104 0 01-1.104-1.821c-.255-.708-.383-1.494-.383-2.353 0-.86.13-1.643.389-2.353a5.152 5.152 0 011.116-1.82 4.942 4.942 0 011.756-1.171c.687-.276 1.453-.413 2.3-.413.87 0 1.65.138 2.34.413.691.276 1.276.665 1.757 1.17.48.505.848 1.112 1.104 1.821.255.71.383 1.494.383 2.353zm-2.804 0c0-.58-.07-1.093-.206-1.539a3.308 3.308 0 00-.573-1.12 2.334 2.334 0 00-.881-.678 2.753 2.753 0 00-1.122-.226 2.68 2.68 0 00-1.104.226c-.339.152-.631.378-.875.679a3.317 3.317 0 00-.572 1.12c-.137.444-.206.957-.206 1.538 0 .58.069 1.093.206 1.539.138.444.33.816.578 1.114.248.298.541.524.88.678.34.155.712.232 1.116.232a2.63 2.63 0 001.111-.232c.336-.154.625-.38.87-.678a3.25 3.25 0 00.572-1.114c.138-.446.206-.959.206-1.539zM164.359 18.806a.842.842 0 00-.2-.576 1.592 1.592 0 00-.532-.38 4.742 4.742 0 00-.762-.266 42.567 42.567 0 00-.898-.226 11.73 11.73 0 01-1.144-.367 3.471 3.471 0 01-.966-.548c-.28-.227-.5-.511-.664-.854-.164-.343-.247-.763-.247-1.261 0-.611.11-1.14.332-1.59.22-.448.52-.819.898-1.114a3.836 3.836 0 011.316-.656 5.718 5.718 0 011.585-.215 10.58 10.58 0 013.524.588v2.184a12.7 12.7 0 00-1.643-.418c-.286-.053-.57-.096-.853-.13a6.67 6.67 0 00-.801-.05c-.32 0-.591.029-.812.09-.222.06-.4.14-.538.242a.917.917 0 00-.39.763c0 .25.068.453.2.612.134.158.318.286.554.385.237.098.485.178.745.243l.755.187c.382.09.762.2 1.144.327.382.128.725.308 1.03.538.305.23.555.528.75.893.194.366.291.832.291 1.396 0 .62-.117 1.158-.355 1.618-.236.46-.566.842-.989 1.148-.423.305-.931.531-1.523.678-.59.147-1.24.22-1.95.22a9.935 9.935 0 01-1.893-.164c-.56-.109-1.025-.247-1.391-.412v-2.16a8.79 8.79 0 001.648.447c.503.08.973.119 1.408.119.335 0 .648-.024.938-.074.29-.048.539-.126.75-.232.21-.105.376-.239.497-.401a.928.928 0 00.186-.584zM176 21.973c-.306.09-.67.163-1.093.215a9.57 9.57 0 01-1.184.08c-.93 0-1.692-.149-2.282-.447-.592-.298-1.01-.726-1.254-1.284-.175-.4-.264-.942-.264-1.629v-5.677h-2.07v-2.206h2.07V7.96h2.713v3.066h3.203v2.206h-3.203v5.327c0 .423.064.736.194.94.228.347.682.52 1.361.52.312 0 .623-.024.933-.074.309-.049.6-.112.874-.187v2.215H176z",fill:"#787C82"})),nd||(nd=a.createElement("path",{d:"M39.777 26.842c-.46-.695-.887-1.388-1.316-2.052 2.265-1.359 3.03-2.445 3.03-4.498V8.429h-2.663V6.167h5.662v13.522c0 3.441-1.01 5.372-4.713 7.153zM63.494 18.753c0 1.146.826 1.267 1.377 1.267s1.347-.181 1.958-.362v2.113c-.857.272-1.744.483-2.968.483-1.47 0-3.183-.544-3.183-3.08v-6.218h-1.56v-2.143h1.56V7.645h2.816v3.169h3.55v2.143h-3.55v5.796zM69.37 27.898V10.783h2.693v1.026c1.07-.815 2.264-1.328 3.733-1.328 2.54 0 4.56 1.751 4.56 5.524 0 3.743-2.203 6.218-5.845 6.218-.887 0-1.59-.12-2.326-.272v5.916H69.37v.03zm5.691-15.122c-.826 0-1.867.392-2.846 1.238v5.826c.611.12 1.255.21 2.111.21 1.989 0 3.122-1.238 3.122-3.833 0-2.385-.827-3.441-2.387-3.441zM91.432 21.982h-2.631v-1.238h-.062c-.918.694-2.05 1.449-3.733 1.449-1.469 0-3.06-1.057-3.06-3.2 0-2.867 2.478-3.41 4.223-3.652l2.478-.332v-.331c0-1.51-.612-1.992-2.051-1.992-.704 0-2.356.21-3.703.754l-.244-2.234c1.224-.422 2.907-.724 4.315-.724 2.754 0 4.529 1.087 4.529 4.317v7.183h-.061zm-2.815-5.222l-2.327.362c-.704.09-1.438.513-1.438 1.54 0 .905.52 1.418 1.285 1.418.827 0 1.714-.483 2.478-1.026V16.76h.002zM103.061 21.62c-1.162.392-2.203.634-3.52.634-4.222 0-5.906-2.385-5.906-5.855 0-3.652 2.327-5.917 6.09-5.917 1.407 0 2.264.242 3.212.544v2.354c-.826-.302-2.02-.633-3.182-.633-1.714 0-3.182.905-3.182 3.5 0 2.868 1.468 3.744 3.335 3.744.887 0 1.867-.182 3.182-.695v2.324h-.029zM108.385 15.614c.246-.272.43-.544 3.978-4.8h3.672l-4.59 5.313 5.018 5.885h-3.672l-4.376-5.312v5.312h-2.814V6.166h2.816v9.448h-.032zM57.006 21.62a13.455 13.455 0 01-4.193.634c-3.611 0-5.845-1.78-5.845-5.947 0-3.049 1.898-5.826 5.539-5.826 3.61 0 4.866 2.475 4.866 4.83 0 .784-.062 1.207-.092 1.659H50c.061 2.444 1.469 3.018 3.58 3.018 1.162 0 2.203-.271 3.397-.694v2.324h.03v.002zm-2.57-6.49c0-1.359-.46-2.536-1.958-2.536-1.407 0-2.264.996-2.448 2.536h4.406z",fill:"#000"})),rd||(rd=a.createElement("path",{d:"M15.714 0C7.047 0 0 6.951 0 15.5S7.047 31 15.714 31c8.667 0 15.715-6.951 15.715-15.5S24.38 0 15.714 0zm-.81 18.073H7.078l7.828-15.026v15.026zm1.59 9.85V12.898h7.827l-7.827 15.027z",fill:"#069E08"})))};function cd(){return(cd=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}).apply(this,arguments)}var dd=function(e){return a.createElement("svg",cd({xmlns:"http://www.w3.org/2000/svg",width:152,height:27,fill:"none"},e),ad||(ad=a.createElement("path",{d:"M113.583 9.474c0 .572-.129 1.095-.386 1.572-.258.476-.682.871-1.275 1.187v.04c.33.111.63.254.904.428s.507.38.702.62c.193.241.346.512.454.814.11.302.163.64.163 1.014 0 .322-.05.667-.153 1.035-.102.368-.281.724-.539 1.07a4.16 4.16 0 01-1.027.95c-.428.288-.969.518-1.62.69a8.08 8.08 0 01-.54.108c-.194.032-.41.06-.648.083-.236.023-.5.04-.79.05-.29.009-.616.014-.978.014h-3.843V5.967h4.595c.981 0 1.772.1 2.372.296.448.144.836.334 1.166.567.33.234.601.493.815.778a3.069 3.069 0 01.628 1.866zm-4.972 1.922c.659 0 1.15-.066 1.473-.197.362-.151.62-.36.776-.626.154-.266.232-.567.232-.901 0-.348-.089-.658-.267-.931-.178-.273-.48-.475-.909-.606a3.356 3.356 0 00-.622-.114 9.338 9.338 0 00-.88-.034h-1.986v3.409h2.183zm-2.183 2.019v3.714h1.58c.422 0 .785-.011 1.088-.034.303-.024.563-.061.781-.114a3.14 3.14 0 00.84-.29 1.99 1.99 0 00.544-.415c.139-.154.237-.325.297-.512s.088-.385.088-.596c0-.368-.102-.69-.306-.965-.204-.276-.523-.482-.959-.62a3.449 3.449 0 00-.672-.129 10.18 10.18 0 00-.988-.039h-2.293zM125.144 14.38a5.96 5.96 0 01-.336 2.05 4.503 4.503 0 01-.964 1.586c-.419.44-.924.78-1.517 1.02-.593.24-1.255.359-1.986.359-.752 0-1.425-.12-2.021-.36a4.203 4.203 0 01-1.518-1.019 4.453 4.453 0 01-.953-1.586 6.055 6.055 0 01-.331-2.05c0-.748.112-1.43.336-2.049a4.494 4.494 0 01.964-1.586c.418-.44.924-.78 1.517-1.02.593-.24 1.254-.358 1.986-.358.751 0 1.425.12 2.021.359a4.22 4.22 0 011.517 1.02c.415.44.733.968.953 1.585.22.618.332 1.301.332 2.05zm-2.421 0c0-.505-.06-.951-.178-1.34a2.89 2.89 0 00-.495-.975 2.013 2.013 0 00-.761-.59 2.36 2.36 0 00-.969-.197c-.343 0-.66.065-.953.196a2.025 2.025 0 00-.755.591 2.9 2.9 0 00-.495.975 4.601 4.601 0 00-.178 1.34c0 .506.06.953.178 1.34.119.388.286.712.5.971.213.26.467.457.76.591.292.135.613.202.964.202.348 0 .669-.067.958-.202.29-.134.54-.331.75-.59.212-.26.377-.584.496-.971.118-.388.178-.835.178-1.34zM136.002 14.38c0 .749-.111 1.432-.336 2.05a4.503 4.503 0 01-.963 1.586c-.42.44-.925.78-1.518 1.02-.592.24-1.254.359-1.986.359-.751 0-1.424-.12-2.02-.36a4.203 4.203 0 01-1.518-1.019 4.453 4.453 0 01-.953-1.586 6.055 6.055 0 01-.332-2.05c0-.748.112-1.43.336-2.049a4.494 4.494 0 01.965-1.586c.418-.44.924-.78 1.516-1.02.593-.24 1.255-.358 1.986-.358.752 0 1.425.12 2.022.359a4.22 4.22 0 011.516 1.02c.416.44.733.968.954 1.585.22.618.331 1.301.331 2.05zm-2.422 0c0-.505-.06-.951-.178-1.34a2.89 2.89 0 00-.494-.975 2.018 2.018 0 00-.762-.59 2.36 2.36 0 00-.968-.197c-.343 0-.66.065-.953.196a2.022 2.022 0 00-.756.591 2.898 2.898 0 00-.494.975 4.577 4.577 0 00-.179 1.34c0 .506.06.953.179 1.34.118.388.285.712.5.971.213.26.466.457.76.591.292.135.613.202.963.202s.669-.067.96-.202c.289-.134.539-.331.75-.59.21-.26.376-.584.494-.971.12-.388.178-.835.178-1.34zM141.946 16.38a.737.737 0 00-.173-.503 1.375 1.375 0 00-.46-.33 4.072 4.072 0 00-.657-.232 36.509 36.509 0 00-.775-.197 10.07 10.07 0 01-.988-.32 2.991 2.991 0 01-.835-.477 2.116 2.116 0 01-.573-.744c-.142-.298-.213-.664-.213-1.098 0-.532.095-.993.286-1.384.19-.391.45-.714.776-.97a3.303 3.303 0 011.136-.572 4.9 4.9 0 011.369-.187 9.063 9.063 0 013.043.512v1.902a10.898 10.898 0 00-2.155-.478 5.713 5.713 0 00-.692-.044c-.276 0-.51.026-.701.079a1.397 1.397 0 00-.465.211.797.797 0 00-.336.665c0 .217.058.394.173.532.115.139.274.25.478.336.204.085.419.155.643.212l.652.162c.33.08.659.174.988.286.33.111.626.268.89.468.263.2.48.46.647.778.168.319.252.724.252 1.216 0 .539-.102 1.008-.307 1.408-.204.401-.489.734-.854 1a3.76 3.76 0 01-1.315.591 6.928 6.928 0 01-1.684.193 8.51 8.51 0 01-1.636-.144 5.495 5.495 0 01-1.2-.359v-1.881c.513.19.987.32 1.423.39.434.068.84.103 1.215.103.29 0 .56-.021.81-.065.251-.042.466-.109.648-.201.181-.093.325-.209.43-.35a.813.813 0 00.16-.508zM152 19.138a5.93 5.93 0 01-.944.187c-.365.047-.706.07-1.023.07-.803 0-1.46-.13-1.97-.39-.512-.259-.872-.632-1.083-1.118-.151-.348-.228-.82-.228-1.419v-4.945h-1.789V9.602h1.789V6.933h2.342v2.67h2.767v1.921h-2.767v4.64c0 .369.056.641.168.818.197.303.59.454 1.176.454.27 0 .538-.021.805-.065.267-.042.519-.097.756-.162v1.93H152z",fill:"#787C82"})),sd||(sd=a.createElement("path",{d:"M34.353 23.378c-.397-.605-.766-1.209-1.136-1.787 1.955-1.183 2.616-2.13 2.616-3.917V7.342h-2.3V5.37h4.89v11.777c0 2.997-.872 4.68-4.07 6.23zM54.836 16.333c0 .999.713 1.104 1.19 1.104.475 0 1.162-.158 1.69-.315v1.84c-.74.237-1.506.42-2.563.42-1.27 0-2.749-.473-2.749-2.682v-5.416h-1.347V9.418h1.347v-2.76h2.432v2.76H57.9v1.867h-3.065v5.048zM59.91 24.298V9.392h2.326v.894c.925-.71 1.956-1.157 3.224-1.157 2.194 0 3.938 1.525 3.938 4.81 0 3.261-1.902 5.417-5.047 5.417-.766 0-1.375-.105-2.01-.237v5.153h-2.43v.026zm4.915-13.17c-.713 0-1.612.34-2.458 1.077v5.075a8.867 8.867 0 001.824.183c1.717 0 2.696-1.078 2.696-3.339 0-2.077-.714-2.997-2.062-2.997zM78.964 19.146h-2.273v-1.079h-.052c-.794.605-1.772 1.262-3.225 1.262-1.268 0-2.643-.92-2.643-2.787 0-2.497 2.14-2.97 3.647-3.18l2.14-.29v-.288c0-1.315-.528-1.735-1.77-1.735-.609 0-2.036.183-3.199.657l-.21-1.946c1.056-.368 2.51-.63 3.726-.63 2.378 0 3.911.947 3.911 3.76v6.256h-.052zm-2.431-4.548l-2.01.315c-.608.079-1.241.447-1.241 1.34 0 .789.449 1.236 1.11 1.236.713 0 1.48-.42 2.14-.894v-1.997zM89.008 18.83c-1.005.342-1.903.552-3.04.552-3.647 0-5.101-2.077-5.101-5.1 0-3.18 2.009-5.152 5.259-5.152 1.215 0 1.955.21 2.774.473v2.05c-.713-.263-1.744-.551-2.748-.551-1.48 0-2.748.788-2.748 3.049 0 2.497 1.268 3.26 2.88 3.26.767 0 1.613-.158 2.749-.605v2.024h-.025zM93.606 13.6c.211-.238.37-.474 3.435-4.181h3.171l-3.964 4.627 4.333 5.126h-3.17l-3.78-4.627v4.627h-2.43V5.371h2.432v8.228h-.027zM49.232 18.83a11.53 11.53 0 01-3.62.552c-3.12 0-5.048-1.55-5.048-5.18 0-2.655 1.638-5.073 4.783-5.073 3.118 0 4.202 2.155 4.202 4.206 0 .683-.053 1.052-.079 1.445h-6.29c.054 2.13 1.27 2.63 3.093 2.63 1.004 0 1.902-.238 2.934-.606v2.024h.025v.002zm-2.219-5.652c0-1.184-.397-2.209-1.691-2.209-1.215 0-1.956.867-2.115 2.209h3.806z",fill:"#000"})),ld||(ld=a.createElement("path",{d:"M13.571 0C6.086 0 0 6.054 0 13.5S6.086 27 13.571 27c7.485 0 13.572-6.054 13.572-13.5S21.056 0 13.57 0zm-.699 15.741h-6.76l6.76-13.087V15.74zm1.373 8.58V11.233h6.76l-6.76 13.088z",fill:"#069E08"})))};const pd=()=>{const e=window.innerWidth,t=ne(e=>vl.isUserConnected(e)),n=ne(e=>vl.isConnectionReady(e));return s.a.createElement("div",{className:"jb-container"},s.a.createElement("div",{className:"jb-settings-header"},s.a.createElement("div",{className:"jb-settings-header__logo"},e<768?s.a.createElement(dd,null):s.a.createElement(ud,null)),n&&t&&s.a.createElement(id,null)))};pd.propTypes={connection:d.a.object};var fd,md=pd;function hd(){return(hd=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}).apply(this,arguments)}var gd,vd,yd=function(e){return a.createElement("svg",hd({xmlns:"http://www.w3.org/2000/svg",width:16,height:16,fill:"none"},e),fd||(fd=a.createElement("path",{d:"M8 0C3.588 0 0 3.588 0 8s3.588 8 8 8 8-3.588 8-8-3.588-8-8-8zm-.412 9.328H3.603l3.985-7.755v7.755zm.809 5.084V6.656h3.985l-3.985 7.756z",fill:"#000",fillOpacity:.7})))};function bd(){return(bd=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}).apply(this,arguments)}var Sd=function(e){return a.createElement("svg",bd({width:177,height:7,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),gd||(gd=a.createElement("g",{clipPath:"url(#footer-automattic_svg__clip0)",fill:"#000",fillOpacity:.8},a.createElement("path",{d:"M59.878 7c-2.38 0-3.909-1.668-3.909-3.39v-.22c0-1.76 1.548-3.39 3.909-3.39 2.379 0 3.927 1.63 3.927 3.39v.22c0 1.722-1.548 3.39-3.927 3.39zm2.662-3.592c0-1.264-.944-2.382-2.662-2.382-1.719 0-2.644 1.118-2.644 2.382v.165c0 1.265.944 2.4 2.644 2.4 1.7 0 2.662-1.135 2.662-2.4v-.165zM33.045 6.743l-.887-1.612H28.21l-.85 1.612H26.04L29.646.238h1.039l3.682 6.505h-1.322zm-2.889-5.24l-1.454 2.73h2.965l-1.511-2.73zM40.107 7c-2.398 0-3.53-1.264-3.53-2.969V.238h1.245v3.83c0 1.21.813 1.924 2.36 1.924 1.587 0 2.248-.715 2.248-1.924V.238h1.265v3.793C43.695 5.644 42.638 7 40.107 7zM50.72 1.246v5.497h-1.266V1.246h-2.926V.238h7.118v1.008H50.72zm24.302 5.497V1.594l-.34.568-2.814 4.581h-.623l-2.776-4.58-.34-.569v5.15h-1.227V.237h1.737l2.644 4.471.321.55.321-.55L74.55.24h1.718v6.504h-1.246zm10.782 0l-.887-1.612H80.97l-.85 1.612h-1.322L82.425.238h1.039l3.682 6.505h-1.34zm-2.889-5.24l-1.454 2.73h2.965l-1.511-2.73zm9.31-.257v5.497h-1.266V1.246h-2.927V.238h7.12v1.008h-2.928zm9.233 0v5.497h-1.265V1.246h-2.927V.238h7.119v1.008h-2.927zm6.043 5.497v-5.9c.509 0 .698-.257.698-.623h.529v6.505l-1.227.018zm11.084-4.672c-.604-.532-1.492-1.045-2.682-1.045-1.793 0-2.794 1.191-2.794 2.437v.129c0 1.227 1.019 2.382 2.889 2.382 1.114 0 2.039-.513 2.625-1.045l.755.77c-.737.696-1.983 1.301-3.456 1.301-2.53 0-4.078-1.594-4.078-3.353v-.22c0-1.76 1.68-3.427 4.135-3.427 1.416 0 2.7.568 3.399 1.301l-.793.77zm-57.876.201c.226.147.283.44.15.66l-1.151 1.722a.501.501 0 01-.68.147.486.486 0 01-.151-.66l1.152-1.722a.485.485 0 01.68-.147zM7.081 6.725l-.887-1.63H2.209l-.868 1.63H0L3.663.147h1.058l3.72 6.578H7.08zM4.154 1.43L2.681 4.196h3.003L4.154 1.43zm11.481 5.296l-4.4-4.398-.434-.458v4.875H9.536V.147h1.227l4.268 4.398.434.476V.147h1.265v6.578h-1.095zM135.938 6.78l-.907-1.63h-3.984l-.868 1.63h-1.341L132.52.183h1.058l3.738 6.597h-1.378zm-2.927-5.314l-1.473 2.767h3.003l-1.53-2.767zm5.401 5.314V.183h1.284V6.78h-1.284zm9.063 0c-.34 0-.491-.458-.547-1.063l-.038-.678c-.038-.66-.321-.934-1.586-.934h-2.417V6.78h-1.265V.183h3.701c2.039 0 2.964.788 2.964 1.814 0 .715-.377 1.411-1.699 1.65 1.322.091 1.605.678 1.624 1.447l.019.55c.019.458.094.788.415 1.118v.018h-1.171zm-.472-4.618c0-.476-.396-.934-1.491-.934h-2.606v1.979h2.719c.944 0 1.378-.44 1.378-.953v-.092zm3.078 4.618V.183h1.284v5.57h5.325V6.78h-6.609zm7.912 0V.183h1.284V6.78h-1.284zm9.347 0l-4.418-4.416-.435-.458V6.78h-1.284V.183h1.228l4.286 4.416.434.477V.183h1.284V6.78h-1.095zm3.04 0V.183h6.175V1.21h-4.91v1.686h3.777v1.008h-3.777v1.85h4.91V6.78h-6.175z"}))),vd||(vd=a.createElement("defs",null,a.createElement("clipPath",{id:"footer-automattic_svg__clip0"},a.createElement("path",{fill:"#fff",d:"M0 0h176.556v7H0z"})))))};var xd=()=>s.a.createElement("div",{className:"jb-container"},s.a.createElement("footer",{className:"jb-settings-footer"},s.a.createElement("div",{className:"jb-signature--jetpack"},s.a.createElement(yd,null),Ye("Jetpack Boost","jetpack-boost")," ",Jetpack_Boost.version),s.a.createElement("div",{className:"jb-signature--automattic"},s.a.createElement(Sd,null))));const wd=()=>{const e=Object(a.useRef)(null),t=ne(e=>vl.isUserConnected(e)),n=ne(e=>vl.isConnectionReady(e));return s.a.createElement("div",{ref:e,id:"jb-settings",className:"jb-settings"},s.a.createElement(md,null),n&&t?s.a.createElement(Kc,{wrapperReference:e}):s.a.createElement("div",{className:"jb-section__inner connection"},s.a.createElement(Pl,null)),s.a.createElement(xd,null))};wd.propTypes={connection:d.a.object};var kd=wd;var Cd=Sn({...Jetpack_Boost.connection,connecting:!1,fetching:!1,disconnecting:!1},{[Sl.rejected]:e=>({...e,shouldClarifyTos:!0}),[Sl.fulfilled]:e=>({...e,shouldClarifyTos:!1}),[$n.pending]:e=>({...e,connecting:!0}),[$n.rejected]:e=>({...e,connecting:!1}),[$n.fulfilled]:(e,t)=>({...e,connecting:!1,active:t.payload.active,connected:t.payload.connected,isUserConnected:t.payload.isUserConnected,authorizeUrl:t.payload.authorizeUrl,flowVariation:t.payload.flowVariation,userData:t.payload.userData,shouldClarifyTos:!1}),[Yc.pending]:e=>({...e,disconnecting:!0}),[Yc.rejected]:e=>({...e,disconnecting:!1}),[Yc.fulfilled]:e=>({...e,connected:!1,disconnecting:!1,authorizeUrl:null,flowVariation:null,active:!1}),[Jc.pending]:e=>({...e,disconnecting:!0}),[Jc.rejected]:e=>({...e,disconnecting:!1}),[Jc.fulfilled]:e=>({...e,isUserConnected:!1,disconnecting:!1}),[Cl.pending]:e=>({...e,fetching:!0}),[Cl.rejected]:e=>({...e,fetching:!1}),[Cl.fulfilled]:(e,t)=>({...e,fetching:!1,active:t.payload.active,connected:t.payload.connected,isUserConnected:t.payload.isUserConnected,authorizeUrl:t.payload.authorizeUrl,flowVariation:t.payload.flowVariation,userData:t.payload.userData})});const Od=[tc,$l,xl,Yn,Qc,Zc,Ol,Tu,Yu,Wu];function _d(e,t){for(const[n,r]of Object.entries(t))e.addCase(n,(e,t)=>{const n=r(t);if(n)return{...e,[n.reference]:{status:n.status,message:n.message}}})}var Ed=Sn({},e=>{e.addCase(dl,(e,t)=>({...e,[t.payload]:void 0}));for(const t of Od)_d(e,t)});var Td=Sn({...Jetpack_Boost.config},{[Kl.pending]:(e,t)=>({...e,[t.meta.arg.moduleSlug]:{...e[t.meta.arg.moduleSlug],enabled:t.meta.arg.moduleStatus,updating:!0}}),[Kl.rejected]:(e,t)=>({...e,[t.meta.arg.moduleSlug]:{...e[t.meta.arg.moduleSlug],enabled:!t.meta.arg.moduleStatus,updating:!1}}),[Kl.fulfilled]:(e,t)=>({...e,[t.meta.arg.moduleSlug]:{...e[t.meta.arg.moduleSlug],enabled:t.payload,updating:!1}})});var Ad=Sn({},{[fc.pending]:e=>({...e,[uc("mobile")]:{requesting:!0},[uc("desktop")]:{requesting:!0}}),[fc.rejected]:(e,t)=>{const n=t.error&&t.error.message?t.error.message:Ye("An unknown error has occurred","jetpack-boost");return{...e,[uc("mobile")]:{requesting:!1,error:n},[uc("desktop")]:{requesting:!1,error:n}}},[fc.fulfilled]:(e,t)=>{const n={};for(const e of t.payload)n[e.requestSlug]={requesting:!1,results:e.results,generatedAt:yu(new Date(1e3*e.created),Jetpack_Boost.locale)};return{...e,...n}}});var Pd=sn(ln({connection:Cd,notice:Ed,config:Td,criticalCss:Sn(Object.assign({status:"not_generated",requestingGeneration:!1,localGeneratorRunning:!1},Jetpack_Boost.criticalCssStatus||{}),{[wu.statusUpdated]:(e,t)=>{let n=e.percent_complete;return!e.localGeneratorRunning&&t.payload.percent_complete&&(n=t.payload.percent_complete),{...e,...t.payload,percent_complete:n}},[ec.fulfilled]:e=>({...e,status:"not_generated"}),[Bu.pending]:e=>({...e,requestingGeneration:!0}),[Bu.rejected]:e=>({...e,requestingGeneration:!1}),[Bu.succeeded]:e=>({...e,requestingGeneration:!1}),[wu.localGeneratorBegin]:e=>({...e,localGeneratorRunning:!0}),[wu.localGeneratorEnd]:e=>({...e,localGeneratorRunning:!1}),[wu.localGeneratorProgress]:(e,t)=>({...e,percent_complete:t.payload})}),metrics:Ad}),un(cn(gn),"object"==typeof window&&void 0!==window.__REDUX_DEVTOOLS_EXTENSION__?window.__REDUX_DEVTOOLS_EXTENSION__():e=>e));u.a.render(s.a.createElement(y,{store:Pd},s.a.createElement(kd,null)),document.getElementById("jb-admin-settings"))},"2pxp":function(e,t){e.exports={parse:function(){return this.createSingleNodeList(this.SelectorList())}}},"2q0v":function(e,t){e.exports=function(e,t){return("@import "+e+" "+t).trim()}},"33Dm":function(e,t,n){var r=n("vd7W").TYPE,i=r.WhiteSpace,o=r.Comment,a=r.Ident,s=r.LeftParenthesis;e.exports={name:"MediaQuery",structure:{children:[["Identifier","MediaFeature","WhiteSpace"]]},parse:function(){this.scanner.skipSC();var e=this.createList(),t=null,n=null;e:for(;!this.scanner.eof;){switch(this.scanner.tokenType){case o:this.scanner.next();continue;case i:n=this.WhiteSpace();continue;case a:t=this.Identifier();break;case s:t=this.MediaFeature();break;default:break e}null!==n&&(e.push(n),n=null),e.push(t)}return null===t&&this.error("Identifier or parenthesis is expected"),{type:"MediaQuery",loc:this.getLocationFromList(e),children:e}},generate:function(e){this.children(e)}}},"33yf":function(e,t,n){(function(e){function n(e,t){for(var n=0,r=e.length-1;r>=0;r--){var i=e[r];"."===i?e.splice(r,1):".."===i?(e.splice(r,1),n++):n&&(e.splice(r,1),n--)}if(t)for(;n--;n)e.unshift("..");return e}function r(e,t){if(e.filter)return e.filter(t);for(var n=[],r=0;r<e.length;r++)t(e[r],r,e)&&n.push(e[r]);return n}t.resolve=function(){for(var t="",i=!1,o=arguments.length-1;o>=-1&&!i;o--){var a=o>=0?arguments[o]:e.cwd();if("string"!=typeof a)throw new TypeError("Arguments to path.resolve must be strings");a&&(t=a+"/"+t,i="/"===a.charAt(0))}return(i?"/":"")+(t=n(r(t.split("/"),(function(e){return!!e})),!i).join("/"))||"."},t.normalize=function(e){var o=t.isAbsolute(e),a="/"===i(e,-1);return(e=n(r(e.split("/"),(function(e){return!!e})),!o).join("/"))||o||(e="."),e&&a&&(e+="/"),(o?"/":"")+e},t.isAbsolute=function(e){return"/"===e.charAt(0)},t.join=function(){var e=Array.prototype.slice.call(arguments,0);return t.normalize(r(e,(function(e,t){if("string"!=typeof e)throw new TypeError("Arguments to path.join must be strings");return e})).join("/"))},t.relative=function(e,n){function r(e){for(var t=0;t<e.length&&""===e[t];t++);for(var n=e.length-1;n>=0&&""===e[n];n--);return t>n?[]:e.slice(t,n-t+1)}e=t.resolve(e).substr(1),n=t.resolve(n).substr(1);for(var i=r(e.split("/")),o=r(n.split("/")),a=Math.min(i.length,o.length),s=a,l=0;l<a;l++)if(i[l]!==o[l]){s=l;break}var u=[];for(l=s;l<i.length;l++)u.push("..");return(u=u.concat(o.slice(s))).join("/")},t.sep="/",t.delimiter=":",t.dirname=function(e){if("string"!=typeof e&&(e+=""),0===e.length)return".";for(var t=e.charCodeAt(0),n=47===t,r=-1,i=!0,o=e.length-1;o>=1;--o)if(47===(t=e.charCodeAt(o))){if(!i){r=o;break}}else i=!1;return-1===r?n?"/":".":n&&1===r?"/":e.slice(0,r)},t.basename=function(e,t){var n=function(e){"string"!=typeof e&&(e+="");var t,n=0,r=-1,i=!0;for(t=e.length-1;t>=0;--t)if(47===e.charCodeAt(t)){if(!i){n=t+1;break}}else-1===r&&(i=!1,r=t+1);return-1===r?"":e.slice(n,r)}(e);return t&&n.substr(-1*t.length)===t&&(n=n.substr(0,n.length-t.length)),n},t.extname=function(e){"string"!=typeof e&&(e+="");for(var t=-1,n=0,r=-1,i=!0,o=0,a=e.length-1;a>=0;--a){var s=e.charCodeAt(a);if(47!==s)-1===r&&(i=!1,r=a+1),46===s?-1===t?t=a:1!==o&&(o=1):-1!==t&&(o=-1);else if(!i){n=a+1;break}}return-1===t||-1===r||0===o||1===o&&t===r-1&&t===n+1?"":e.slice(t,r)};var i="b"==="ab".substr(-1)?function(e,t,n){return e.substr(t,n)}:function(e,t,n){return t<0&&(t=e.length+t),e.substr(t,n)}}).call(this,n("8oxB"))},"3Vmb":function(e,t,n){var r=n("Ag6s");e.exports=function(e){var t=r[e.name];return t&&t.shorthand?t.restore(e,r):e.value}},"3XNy":function(e,t){function n(e){return e>=48&&e<=57}function r(e){return e>=65&&e<=90}function i(e){return e>=97&&e<=122}function o(e){return r(e)||i(e)}function a(e){return e>=128}function s(e){return o(e)||a(e)||95===e}function l(e){return e>=0&&e<=8||11===e||e>=14&&e<=31||127===e}function u(e){return 10===e||13===e||12===e}function c(e){return u(e)||32===e||9===e}function d(e,t){return 92===e&&(!u(t)&&0!==t)}var p=new Array(128);m.Eof=128,m.WhiteSpace=130,m.Digit=131,m.NameStart=132,m.NonPrintable=133;for(var f=0;f<p.length;f++)switch(!0){case c(f):p[f]=m.WhiteSpace;break;case n(f):p[f]=m.Digit;break;case s(f):p[f]=m.NameStart;break;case l(f):p[f]=m.NonPrintable;break;default:p[f]=f||m.Eof}function m(e){return e<128?p[e]:m.NameStart}e.exports={isDigit:n,isHexDigit:function(e){return n(e)||e>=65&&e<=70||e>=97&&e<=102},isUppercaseLetter:r,isLowercaseLetter:i,isLetter:o,isNonAscii:a,isNameStart:s,isName:function(e){return s(e)||n(e)||45===e},isNonPrintable:l,isNewline:u,isWhiteSpace:c,isValidEscape:d,isIdentifierStart:function(e,t,n){return 45===e?s(t)||45===t||d(t,n):!!s(e)||92===e&&d(e,t)},isNumberStart:function(e,t,r){return 43===e||45===e?n(t)?2:46===t&&n(r)?3:0:46===e?n(t)?2:0:n(e)?1:0},isBOM:function(e){return 65279===e||65534===e?1:0},charCodeCategory:m}},"49sm":function(e,t){var n={}.toString;e.exports=Array.isArray||function(e){return"[object Array]"==n.call(e)}},"4HHr":function(e,t){var n=Object.prototype.hasOwnProperty,r=function(){};function i(e){return"function"==typeof e?e:r}function o(e,t){return function(n,r,i){n.type===t&&e.call(this,n,r,i)}}function a(e,t){var r=t.structure,i=[];for(var o in r)if(!1!==n.call(r,o)){var a=r[o],s={name:o,type:!1,nullable:!1};Array.isArray(r[o])||(a=[r[o]]);for(var l=0;l<a.length;l++){var u=a[l];null===u?s.nullable=!0:"string"==typeof u?s.type="node":Array.isArray(u)&&(s.type="list")}s.type&&i.push(s)}return i.length?{context:t.walkContext,fields:i}:null}function s(e,t){var n=e.fields.slice(),r=e.context,i="string"==typeof r;return t&&n.reverse(),function(e,o,a,s){var l;i&&(l=o[r],o[r]=e);for(var u=0;u<n.length;u++){var c=n[u],d=e[c.name];if(!c.nullable||d)if("list"===c.type){if(t?d.reduceRight(s,!1):d.reduce(s,!1))return!0}else if(a(d))return!0}i&&(o[r]=l)}}function l(e){return{Atrule:{StyleSheet:e.StyleSheet,Atrule:e.Atrule,Rule:e.Rule,Block:e.Block},Rule:{StyleSheet:e.StyleSheet,Atrule:e.Atrule,Rule:e.Rule,Block:e.Block},Declaration:{StyleSheet:e.StyleSheet,Atrule:e.Atrule,Rule:e.Rule,Block:e.Block,DeclarationList:e.DeclarationList}}}e.exports=function(e){var t=function(e){var t={};for(var r in e.node)if(n.call(e.node,r)){var i=e.node[r];if(!i.structure)throw new Error("Missed `structure` field in `"+r+"` node type definition");t[r]=a(0,i)}return t}(e),u={},c={},d=Symbol("break-walk"),p=Symbol("skip-node");for(var f in t)n.call(t,f)&&null!==t[f]&&(u[f]=s(t[f],!1),c[f]=s(t[f],!0));var m=l(u),h=l(c),g=function(e,n){function a(e,t,n){var r=l.call(v,e,t,n);return r===d||r!==p&&(!(!g.hasOwnProperty(e.type)||!g[e.type](e,v,a,s))||f.call(v,e,t,n)===d)}var s=(e,t,n,r)=>e||a(t,n,r),l=r,f=r,g=u,v={break:d,skip:p,root:e,stylesheet:null,atrule:null,atrulePrelude:null,rule:null,selector:null,block:null,declaration:null,function:null};if("function"==typeof n)l=n;else if(n&&(l=i(n.enter),f=i(n.leave),n.reverse&&(g=c),n.visit)){if(m.hasOwnProperty(n.visit))g=n.reverse?h[n.visit]:m[n.visit];else if(!t.hasOwnProperty(n.visit))throw new Error("Bad value `"+n.visit+"` for `visit` option (should be: "+Object.keys(t).join(", ")+")");l=o(l,n.visit),f=o(f,n.visit)}if(l===r&&f===r)throw new Error("Neither `enter` nor `leave` walker handler is set or both aren't a function");a(e)};return g.break=d,g.skip=p,g.find=function(e,t){var n=null;return g(e,(function(e,r,i){if(t.call(this,e,r,i))return n=e,d})),n},g.findLast=function(e,t){var n=null;return g(e,{reverse:!0,enter:function(e,r,i){if(t.call(this,e,r,i))return n=e,d}}),n},g.findAll=function(e,t){var n=[];return g(e,(function(e,r,i){t.call(this,e,r,i)&&n.push(e)})),n},g}},"4JlD":function(e,t,n){"use strict";var r=function(e){switch(typeof e){case"string":return e;case"boolean":return e?"true":"false";case"number":return isFinite(e)?e:"";default:return""}};e.exports=function(e,t,n,s){return t=t||"&",n=n||"=",null===e&&(e=void 0),"object"==typeof e?o(a(e),(function(a){var s=encodeURIComponent(r(a))+n;return i(e[a])?o(e[a],(function(e){return s+encodeURIComponent(r(e))})).join(t):s+encodeURIComponent(r(e[a]))})).join(t):s?encodeURIComponent(r(s))+n+encodeURIComponent(r(e)):""};var i=Array.isArray||function(e){return"[object Array]"===Object.prototype.toString.call(e)};function o(e,t){if(e.map)return e.map(t);for(var n=[],r=0;r<e.length;r++)n.push(t(e[r],r));return n}var a=Object.keys||function(e){var t=[];for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.push(n);return t}},"4Z/T":function(e,t,n){var r;!function(){"use strict";var i={not_string:/[^s]/,not_bool:/[^t]/,not_type:/[^T]/,not_primitive:/[^v]/,number:/[diefg]/,numeric_arg:/[bcdiefguxX]/,json:/[j]/,not_json:/[^j]/,text:/^[^\x25]+/,modulo:/^\x25{2}/,placeholder:/^\x25(?:([1-9]\d*)\$|\(([^)]+)\))?(\+)?(0|'[^$])?(-)?(\d+)?(?:\.(\d+))?([b-gijostTuvxX])/,key:/^([a-z_][a-z_\d]*)/i,key_access:/^\.([a-z_][a-z_\d]*)/i,index_access:/^\[(\d+)\]/,sign:/^[+-]/};function o(e){return s(u(e),arguments)}function a(e,t){return o.apply(null,[e].concat(t||[]))}function s(e,t){var n,r,a,s,l,u,c,d,p,f=1,m=e.length,h="";for(r=0;r<m;r++)if("string"==typeof e[r])h+=e[r];else if("object"==typeof e[r]){if((s=e[r]).keys)for(n=t[f],a=0;a<s.keys.length;a++){if(null==n)throw new Error(o('[sprintf] Cannot access property "%s" of undefined value "%s"',s.keys[a],s.keys[a-1]));n=n[s.keys[a]]}else n=s.param_no?t[s.param_no]:t[f++];if(i.not_type.test(s.type)&&i.not_primitive.test(s.type)&&n instanceof Function&&(n=n()),i.numeric_arg.test(s.type)&&"number"!=typeof n&&isNaN(n))throw new TypeError(o("[sprintf] expecting number but found %T",n));switch(i.number.test(s.type)&&(d=n>=0),s.type){case"b":n=parseInt(n,10).toString(2);break;case"c":n=String.fromCharCode(parseInt(n,10));break;case"d":case"i":n=parseInt(n,10);break;case"j":n=JSON.stringify(n,null,s.width?parseInt(s.width):0);break;case"e":n=s.precision?parseFloat(n).toExponential(s.precision):parseFloat(n).toExponential();break;case"f":n=s.precision?parseFloat(n).toFixed(s.precision):parseFloat(n);break;case"g":n=s.precision?String(Number(n.toPrecision(s.precision))):parseFloat(n);break;case"o":n=(parseInt(n,10)>>>0).toString(8);break;case"s":n=String(n),n=s.precision?n.substring(0,s.precision):n;break;case"t":n=String(!!n),n=s.precision?n.substring(0,s.precision):n;break;case"T":n=Object.prototype.toString.call(n).slice(8,-1).toLowerCase(),n=s.precision?n.substring(0,s.precision):n;break;case"u":n=parseInt(n,10)>>>0;break;case"v":n=n.valueOf(),n=s.precision?n.substring(0,s.precision):n;break;case"x":n=(parseInt(n,10)>>>0).toString(16);break;case"X":n=(parseInt(n,10)>>>0).toString(16).toUpperCase()}i.json.test(s.type)?h+=n:(!i.number.test(s.type)||d&&!s.sign?p="":(p=d?"+":"-",n=n.toString().replace(i.sign,"")),u=s.pad_char?"0"===s.pad_char?"0":s.pad_char.charAt(1):" ",c=s.width-(p+n).length,l=s.width&&c>0?u.repeat(c):"",h+=s.align?p+n+l:"0"===u?p+l+n:l+p+n)}return h}var l=Object.create(null);function u(e){if(l[e])return l[e];for(var t,n=e,r=[],o=0;n;){if(null!==(t=i.text.exec(n)))r.push(t[0]);else if(null!==(t=i.modulo.exec(n)))r.push("%");else{if(null===(t=i.placeholder.exec(n)))throw new SyntaxError("[sprintf] unexpected placeholder");if(t[2]){o|=1;var a=[],s=t[2],u=[];if(null===(u=i.key.exec(s)))throw new SyntaxError("[sprintf] failed to parse named argument key");for(a.push(u[1]);""!==(s=s.substring(u[0].length));)if(null!==(u=i.key_access.exec(s)))a.push(u[1]);else{if(null===(u=i.index_access.exec(s)))throw new SyntaxError("[sprintf] failed to parse named argument key");a.push(u[1])}t[2]=a}else o|=2;if(3===o)throw new Error("[sprintf] mixing positional and named placeholders is not (yet) supported");r.push({placeholder:t[0],param_no:t[1],keys:t[2],sign:t[3],pad_char:t[4],align:t[5],width:t[6],precision:t[7],type:t[8]})}n=n.substring(t[0].length)}return l[e]=r}t.sprintf=o,t.vsprintf=a,"undefined"!=typeof window&&(window.sprintf=o,window.vsprintf=a,void 0===(r=function(){return{sprintf:o,vsprintf:a}}.call(t,n,t,e))||(e.exports=r))}()},"4dtu":function(e,t,n){var r=n("m4yl").single,i=n("dzo0");function o(e){var t=r([i.PROPERTY,[i.PROPERTY_NAME,e.name]]);return t.important=e.important,t.hack=e.hack,t.unused=!1,t}e.exports={deep:function(e){for(var t=o(e),n=e.components.length-1;n>=0;n--){var r=o(e.components[n]);r.value=e.components[n].value.slice(0),t.components.unshift(r)}return t.dirty=!0,t.value=e.value.slice(0),t},shallow:o}},"4eJC":function(e,t,n){e.exports=function(e,t){var n,r,i=0;function o(){var o,a,s=n,l=arguments.length;e:for(;s;){if(s.args.length===arguments.length){for(a=0;a<l;a++)if(s.args[a]!==arguments[a]){s=s.next;continue e}return s!==n&&(s===r&&(r=s.prev),s.prev.next=s.next,s.next&&(s.next.prev=s.prev),s.next=n,s.prev=null,n.prev=s,n=s),s.val}s=s.next}for(o=new Array(l),a=0;a<l;a++)o[a]=arguments[a];return s={args:o,val:e.apply(null,o)},n?(n.prev=s,s.next=n):r=s,i===t.maxSize?(r=r.prev).next=null:i++,n=s,s.val}return t=t||{},o.clear=function(){n=null,r=null,i=0},o}},"4njK":function(e,t,n){var r=n("vd7W").TYPE,i=r.WhiteSpace,o=r.Semicolon,a=r.LeftCurlyBracket,s=r.Delim;function l(){return this.scanner.tokenIndex>0&&this.scanner.lookupType(-1)===i?this.scanner.tokenIndex>1?this.scanner.getTokenStart(this.scanner.tokenIndex-1):this.scanner.firstCharOffset:this.scanner.tokenStart}function u(){return 0}e.exports={name:"Raw",structure:{value:String},parse:function(e,t,n){var r,i=this.scanner.getTokenStart(e);return this.scanner.skip(this.scanner.getRawLength(e,t||u)),r=n&&this.scanner.tokenStart>i?l.call(this):this.scanner.tokenStart,{type:"Raw",loc:this.getLocation(i,r),value:this.scanner.source.substring(i,r)}},generate:function(e){this.chunk(e.value)},mode:{default:u,leftCurlyBracket:function(e){return e===a?1:0},leftCurlyBracketOrSemicolon:function(e){return e===a||e===o?1:0},exclamationMarkOrSemicolon:function(e,t,n){return e===s&&33===t.charCodeAt(n)||e===o?1:0},semicolonIncluded:function(e){return e===o?2:0}}}},"4qRI":function(e,t,n){"use strict";t.a=function(e){var t={};return function(n){return void 0===t[n]&&(t[n]=e(n)),t[n]}}},"585i":function(e,t,n){e.exports={AnPlusB:n("Iyun"),Atrule:n("G9/t"),AtrulePrelude:n("FEnK"),AttributeSelector:n("2Gxe"),Block:n("DJod"),Brackets:n("gCdt"),CDC:n("aUQo"),CDO:n("HOgr"),ClassSelector:n("gTGj"),Combinator:n("8mYp"),Comment:n("Y+H1"),Declaration:n("+/L5"),DeclarationList:n("e1rG"),Dimension:n("klIg"),Function:n("UwDK"),Hash:n("ge3I"),Identifier:n("OyBZ"),IdSelector:n("dB5I"),MediaFeature:n("QBsF"),MediaQuery:n("33Dm"),MediaQueryList:n("Pd0I"),Nth:n("n6Bp"),Number:n("mb2m"),Operator:n("HHXC"),Parentheses:n("Vj1t"),Percentage:n("kPWa"),PseudoClassSelector:n("PzWj"),PseudoElementSelector:n("DDB3"),Ratio:n("F977"),Raw:n("4njK"),Rule:n("yTw5"),Selector:n("/BcF"),SelectorList:n("Lw+5"),String:n("r1XK"),StyleSheet:n("6RFS"),TypeSelector:n("STE7"),UnicodeRange:n("Tnl3"),Url:n("ZVk9"),Value:n("06ho"),WhiteSpace:n("Tpyv")}},"6Aqh":function(e,t){var n="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".split("");t.encode=function(e){if(0<=e&&e<n.length)return n[e];throw new TypeError("Must be between 0 and 63: "+e)},t.decode=function(e){return 65<=e&&e<=90?e-65:97<=e&&e<=122?e-97+26:48<=e&&e<=57?e-48+52:43==e?62:47==e?63:-1}},"6RFS":function(e,t,n){var r=n("vd7W").TYPE,i=r.WhiteSpace,o=r.Comment,a=r.AtKeyword,s=r.CDO,l=r.CDC;function u(e){return this.Raw(e,null,!1)}e.exports={name:"StyleSheet",structure:{children:[["Comment","CDO","CDC","Atrule","Rule","Raw"]]},parse:function(){for(var e,t=this.scanner.tokenStart,n=this.createList();!this.scanner.eof;){switch(this.scanner.tokenType){case i:this.scanner.next();continue;case o:if(33!==this.scanner.source.charCodeAt(this.scanner.tokenStart+2)){this.scanner.next();continue}e=this.Comment();break;case s:e=this.CDO();break;case l:e=this.CDC();break;case a:e=this.parseWithFallback(this.Atrule,u);break;default:e=this.parseWithFallback(this.Rule,u)}n.push(e)}return{type:"StyleSheet",loc:this.getLocation(t,this.scanner.tokenStart),children:n}},generate:function(e){this.children(e)},walkContext:"stylesheet"}},"6dTv":function(e,t,n){e.exports={"font-face":n("xODi"),import:n("bxbb"),media:n("eAxx"),page:n("dv2O"),supports:n("EaiB")}},"6hmj":function(e,t,n){var r=n("dzo0"),i=n("cj6p").all;e.exports=function(e){var t,n,o,a,s=[];for(o=0,a=e.length;o<a;o++)(t=e[o])[0]!=r.AT_RULE_BLOCK&&"@font-face"!=t[1][0][1]||(n=i([t]),s.indexOf(n)>-1?t[2]=[]:s.push(n))}},"6zzY":function(e,t,n){"use strict";n.d(t,"a",(function(){return s}));var r=n("q1tI"),i=n("LvDl");const o="undefined"!=typeof window?r.useLayoutEffect:r.useEffect,a=Object(r.createContext)({}),s=()=>Object(r.useContext)(a);Object(r.memo)(({children:e,value:t})=>{const n=function({value:e}){const t=s(),n=Object(r.useRef)(t),a=Object(r.useRef)(Object(i.merge)(t,e)),[l,u]=Object(r.useState)(a.current);return o(()=>{let r=!1;Object(i.isEqual)(e,a.current)||(a.current=e,r=!0),Object(i.isEqual)(t,n.current)||(a.current=Object(i.merge)(t,a.current),n.current=t,r=!0),r&&u(e=>({...e,...a.current}))},[e,t]),l}({value:t});return Object(r.createElement)(a.Provider,{value:n},e)})},"7GzS":function(e,t,n){var r=n("vd7W").cmpChar,i=n("vd7W").cmpStr,o=n("vd7W").TYPE,a=o.Ident,s=o.String,l=o.Number,u=o.Function,c=o.Url,d=o.Hash,p=o.Dimension,f=o.Percentage,m=o.LeftParenthesis,h=o.LeftSquareBracket,g=o.Comma,v=o.Delim;e.exports=function(e){switch(this.scanner.tokenType){case d:return this.Hash();case g:return e.space=null,e.ignoreWSAfter=!0,this.Operator();case m:return this.Parentheses(this.readSequence,e.recognizer);case h:return this.Brackets(this.readSequence,e.recognizer);case s:return this.String();case p:return this.Dimension();case f:return this.Percentage();case l:return this.Number();case u:return i(this.scanner.source,this.scanner.tokenStart,this.scanner.tokenEnd,"url(")?this.Url():this.Function(this.readSequence,e.recognizer);case c:return this.Url();case a:return r(this.scanner.source,this.scanner.tokenStart,117)&&r(this.scanner.source,this.scanner.tokenStart+1,43)?this.UnicodeRange():this.Identifier();case v:var t=this.scanner.source.charCodeAt(this.scanner.tokenStart);if(47===t||42===t||43===t||45===t)return this.Operator();35===t&&this.error("Hex or identifier is expected",this.scanner.tokenStart+1)}}},"7Jlx":function(e,t,n){"use strict";(function(e){n.d(t,"a",(function(){return s}));var r=n("LvDl"),i=n("q1tI"),o=(n("WyMB"),n("tQ+x")),a=n("UAm0");function s(t,n,s={}){const{memo:l=!1}=s;let u=Object(i.forwardRef)(t);l&&(u=Object(i.memo)(u)),void 0===n&&void 0!==e&&Object({NODE_ENV:"production"});let c=u[o.c]||[n];return Array.isArray(n)&&(c=[...c,...n]),"string"==typeof n&&(c=[...c,n]),u.displayName=n,u[o.c]=Object(r.uniq)(c),u.selector="."+Object(a.a)(n),u}}).call(this,n("8oxB"))},"7WHS":function(e,t){t.getArg=function(e,t,n){if(t in e)return e[t];if(3===arguments.length)return n;throw new Error('"'+t+'" is a required argument.')};var n=/^(?:([\w+\-.]+):)?\/\/(?:(\w+:\w+)@)?([\w.-]*)(?::(\d+))?(.*)$/,r=/^data:.+\,.+$/;function i(e){var t=e.match(n);return t?{scheme:t[1],auth:t[2],host:t[3],port:t[4],path:t[5]}:null}function o(e){var t="";return e.scheme&&(t+=e.scheme+":"),t+="//",e.auth&&(t+=e.auth+"@"),e.host&&(t+=e.host),e.port&&(t+=":"+e.port),e.path&&(t+=e.path),t}function a(e){var n=e,r=i(e);if(r){if(!r.path)return e;n=r.path}for(var a,s=t.isAbsolute(n),l=n.split(/\/+/),u=0,c=l.length-1;c>=0;c--)"."===(a=l[c])?l.splice(c,1):".."===a?u++:u>0&&(""===a?(l.splice(c+1,u),u=0):(l.splice(c,2),u--));return""===(n=l.join("/"))&&(n=s?"/":"."),r?(r.path=n,o(r)):n}function s(e,t){""===e&&(e="."),""===t&&(t=".");var n=i(t),s=i(e);if(s&&(e=s.path||"/"),n&&!n.scheme)return s&&(n.scheme=s.scheme),o(n);if(n||t.match(r))return t;if(s&&!s.host&&!s.path)return s.host=t,o(s);var l="/"===t.charAt(0)?t:a(e.replace(/\/+$/,"")+"/"+t);return s?(s.path=l,o(s)):l}t.urlParse=i,t.urlGenerate=o,t.normalize=a,t.join=s,t.isAbsolute=function(e){return"/"===e.charAt(0)||n.test(e)},t.relative=function(e,t){""===e&&(e="."),e=e.replace(/\/$/,"");for(var n=0;0!==t.indexOf(e+"/");){var r=e.lastIndexOf("/");if(r<0)return t;if((e=e.slice(0,r)).match(/^([^\/]+:\/)?\/*$/))return t;++n}return Array(n+1).join("../")+t.substr(e.length+1)};var l=!("__proto__"in Object.create(null));function u(e){return e}function c(e){if(!e)return!1;var t=e.length;if(t<9)return!1;if(95!==e.charCodeAt(t-1)||95!==e.charCodeAt(t-2)||111!==e.charCodeAt(t-3)||116!==e.charCodeAt(t-4)||111!==e.charCodeAt(t-5)||114!==e.charCodeAt(t-6)||112!==e.charCodeAt(t-7)||95!==e.charCodeAt(t-8)||95!==e.charCodeAt(t-9))return!1;for(var n=t-10;n>=0;n--)if(36!==e.charCodeAt(n))return!1;return!0}function d(e,t){return e===t?0:null===e?1:null===t?-1:e>t?1:-1}t.toSetString=l?u:function(e){return c(e)?"$"+e:e},t.fromSetString=l?u:function(e){return c(e)?e.slice(1):e},t.compareByOriginalPositions=function(e,t,n){var r=d(e.source,t.source);return 0!==r||0!==(r=e.originalLine-t.originalLine)||0!==(r=e.originalColumn-t.originalColumn)||n||0!==(r=e.generatedColumn-t.generatedColumn)||0!==(r=e.generatedLine-t.generatedLine)?r:d(e.name,t.name)},t.compareByGeneratedPositionsDeflated=function(e,t,n){var r=e.generatedLine-t.generatedLine;return 0!==r||0!==(r=e.generatedColumn-t.generatedColumn)||n||0!==(r=d(e.source,t.source))||0!==(r=e.originalLine-t.originalLine)||0!==(r=e.originalColumn-t.originalColumn)?r:d(e.name,t.name)},t.compareByGeneratedPositionsInflated=function(e,t){var n=e.generatedLine-t.generatedLine;return 0!==n||0!==(n=e.generatedColumn-t.generatedColumn)||0!==(n=d(e.source,t.source))||0!==(n=e.originalLine-t.originalLine)||0!==(n=e.originalColumn-t.originalColumn)?n:d(e.name,t.name)},t.parseSourceMapInput=function(e){return JSON.parse(e.replace(/^\)]}'[^\n]*\n/,""))},t.computeSourceURL=function(e,t,n){if(t=t||"",e&&("/"!==e[e.length-1]&&"/"!==t[0]&&(e+="/"),t=e+t),n){var r=i(n);if(!r)throw new Error("sourceMapURL could not be parsed");if(r.path){var l=r.path.lastIndexOf("/");l>=0&&(r.path=r.path.substring(0,l+1))}t=s(o(r),t)}return a(t)}},"7nlT":function(e,t){e.exports=function(e){var t=e[0],n=e[1],r=e[2];return r?r+":"+t+":"+n:t+":"+n}},"82qP":function(e,t,n){e.exports={AtrulePrelude:n("TefO"),Selector:n("HvLG"),Value:n("n/gj")}},"8IG6":function(e,t,n){(function(t){var r=n("c/dR"),i=n("sSEQ"),o=n("oS6X"),a=n("nVkC"),s=n("gvDn"),l=n("0999"),u=n("X3zT").formatFrom,c=n("aFPG"),d=n("hsdH"),p=n("rvZx"),f=n("Nwoi").OptimizationLevel,m=n("Nwoi").optimizationLevelFrom,h=n("gT/2"),g=n("mlwX"),v=n("FYdY"),y=n("GPts"),b=n("Vc3Y"),S=n("qKTz"),x=e.exports=function(e){e=e||{},this.options={compatibility:s(e.compatibility),fetch:l(e.fetch),format:u(e.format),inline:c(e.inline),inlineRequest:d(e.inlineRequest),inlineTimeout:p(e.inlineTimeout),level:m(e.level),rebase:h(e.rebase),rebaseTo:g(e.rebaseTo),returnPromise:!!e.returnPromise,sourceMap:!!e.sourceMap,sourceMapInlineSources:!!e.sourceMapInlineSources}};function w(e,n,s,l){var u="function"!=typeof s?s:null,c="function"==typeof l?l:"function"==typeof s?s:null,d={stats:{efficiency:0,minifiedSize:0,originalSize:0,startedAt:Date.now(),timeSpent:0},cache:{specificity:{}},errors:[],inlinedStylesheets:[],inputSourceMapTracker:v(),localOnly:!c,options:n,source:null,sourcesContent:{},validator:a(n.compatibility),warnings:[]};return u&&d.inputSourceMapTracker.track(void 0,u),(d.localOnly?function(e){return e()}:t.nextTick)((function(){return y(e,d,(function(e){var t=function(e,t){return e.stats=function(e,t){var n=Date.now()-t.stats.startedAt;return delete t.stats.startedAt,t.stats.timeSpent=n,t.stats.efficiency=1-e.length/t.stats.originalSize,t.stats.minifiedSize=e.length,t.stats}(e.styles,t),e.errors=t.errors,e.inlinedStylesheets=t.inlinedStylesheets,e.warnings=t.warnings,e}((d.options.sourceMap?S:b)(function(e,t){var n;return n=r(e,t),n=f.One in t.options.level?i(e,t):e,n=f.Two in t.options.level?o(e,t,!0):n}(e,d),d),d);return c?c(d.errors.length>0?d.errors:null,t):t}))}))}x.process=function(e,t){var n=t.to;return delete t.to,new x(Object.assign({returnPromise:!0,rebaseTo:n},t)).minify(e).then((function(e){return{css:e.styles}}))},x.prototype.minify=function(e,t,n){var r=this.options;return r.returnPromise?new Promise((function(n,i){w(e,r,t,(function(e,t){return e?i(e):n(t)}))})):w(e,r,t,n)}}).call(this,n("8oxB"))},"8XFM":function(e,t){const n=Object.prototype.hasOwnProperty,r={generic:!0,types:s,atrules:{prelude:l,descriptors:l},properties:s,parseContext:function(e,t){return Object.assign(e,t)},scope:function e(t,r){for(const a in r)n.call(r,a)&&(i(t[a])?e(t[a],o(r[a])):t[a]=o(r[a]));return t},atrule:["parse"],pseudo:["parse"],node:["name","structure","parse","generate","walkContext"]};function i(e){return e&&e.constructor===Object}function o(e){return i(e)?Object.assign({},e):e}function a(e,t){return"string"==typeof t&&/^\s*\|/.test(t)?"string"==typeof e?e+t:t.replace(/^\s*\|\s*/,""):t||null}function s(e,t){if("string"==typeof t)return a(e,t);const r=Object.assign({},e);for(let i in t)n.call(t,i)&&(r[i]=a(n.call(e,i)?e[i]:void 0,t[i]));return r}function l(e,t){const n=s(e,t);return!i(n)||Object.keys(n).length?n:null}e.exports=(e,t)=>function e(t,r,a){for(const s in a)if(!1!==n.call(a,s))if(!0===a[s])s in r&&n.call(r,s)&&(t[s]=o(r[s]));else if(a[s])if("function"==typeof a[s]){const e=a[s];t[s]=e({},t[s]),t[s]=e(t[s]||{},r[s])}else if(i(a[s])){const n={};for(let r in t[s])n[r]=e({},t[s][r],a[s]);for(let t in r[s])n[t]=e(n[t]||{},r[s][t],a[s]);t[s]=n}else if(Array.isArray(a[s])){const i={},o=a[s].reduce((function(e,t){return e[t]=!0,e}),{});for(const[n,r]of Object.entries(t[s]||{}))i[n]={},r&&e(i[n],r,o);for(const t in r[s])n.call(r[s],t)&&(i[t]||(i[t]={}),r[s]&&r[s][t]&&e(i[t],r[s][t],o));t[s]=i}return t}(e,t,r)},"8mYp":function(e,t,n){var r=n("vd7W").TYPE.Ident;e.exports={name:"Combinator",structure:{name:String},parse:function(){var e=this.scanner.tokenStart;switch(this.scanner.source.charCodeAt(this.scanner.tokenStart)){case 62:case 43:case 126:this.scanner.next();break;case 47:this.scanner.next(),this.scanner.tokenType===r&&!1!==this.scanner.lookupValue(0,"deep")||this.error("Identifier `deep` is expected"),this.scanner.next(),this.scanner.isDelim(47)||this.error("Solidus is expected"),this.scanner.next();break;default:this.error("Combinator is expected")}return{type:"Combinator",loc:this.getLocation(e,this.scanner.tokenStart),name:this.scanner.substrToCursor(e)}},generate:function(e){this.chunk(e.name)}}},"8oxB":function(e,t){var n,r,i=e.exports={};function o(){throw new Error("setTimeout has not been defined")}function a(){throw new Error("clearTimeout has not been defined")}function s(e){if(n===setTimeout)return setTimeout(e,0);if((n===o||!n)&&setTimeout)return n=setTimeout,setTimeout(e,0);try{return n(e,0)}catch(t){try{return n.call(null,e,0)}catch(t){return n.call(this,e,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:o}catch(e){n=o}try{r="function"==typeof clearTimeout?clearTimeout:a}catch(e){r=a}}();var l,u=[],c=!1,d=-1;function p(){c&&l&&(c=!1,l.length?u=l.concat(u):d=-1,u.length&&f())}function f(){if(!c){var e=s(p);c=!0;for(var t=u.length;t;){for(l=u,u=[];++d<t;)l&&l[d].run();d=-1,t=u.length}l=null,c=!1,function(e){if(r===clearTimeout)return clearTimeout(e);if((r===a||!r)&&clearTimeout)return r=clearTimeout,clearTimeout(e);try{r(e)}catch(t){try{return r.call(null,e)}catch(t){return r.call(this,e)}}}(e)}}function m(e,t){this.fun=e,this.array=t}function h(){}i.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)t[n-1]=arguments[n];u.push(new m(e,t)),1!==u.length||c||s(f)},m.prototype.run=function(){this.fun.apply(null,this.array)},i.title="browser",i.browser=!0,i.env={},i.argv=[],i.version="",i.versions={},i.on=h,i.addListener=h,i.once=h,i.off=h,i.removeListener=h,i.removeAllListeners=h,i.emit=h,i.prependListener=h,i.prependOnceListener=h,i.listeners=function(e){return[]},i.binding=function(e){throw new Error("process.binding is not supported")},i.cwd=function(){return"/"},i.chdir=function(e){throw new Error("process.chdir is not supported")},i.umask=function(){return 0}},"8wsT":function(e,t,n){var r=n("twQA"),i=r.TYPE,o=r.NAME,a=n("P3uw").cmpStr,s=i.EOF,l=i.WhiteSpace,u=i.Comment,c=function(){this.offsetAndType=null,this.balance=null,this.reset()};c.prototype={reset:function(){this.eof=!1,this.tokenIndex=-1,this.tokenType=0,this.tokenStart=this.firstCharOffset,this.tokenEnd=this.firstCharOffset},lookupType:function(e){return(e+=this.tokenIndex)<this.tokenCount?this.offsetAndType[e]>>24:s},lookupOffset:function(e){return(e+=this.tokenIndex)<this.tokenCount?16777215&this.offsetAndType[e-1]:this.source.length},lookupValue:function(e,t){return(e+=this.tokenIndex)<this.tokenCount&&a(this.source,16777215&this.offsetAndType[e-1],16777215&this.offsetAndType[e],t)},getTokenStart:function(e){return e===this.tokenIndex?this.tokenStart:e>0?e<this.tokenCount?16777215&this.offsetAndType[e-1]:16777215&this.offsetAndType[this.tokenCount]:this.firstCharOffset},getRawLength:function(e,t){var n,r=e,i=16777215&this.offsetAndType[Math.max(r-1,0)];e:for(;r<this.tokenCount&&!((n=this.balance[r])<e);r++)switch(t(this.offsetAndType[r]>>24,this.source,i)){case 1:break e;case 2:r++;break e;default:this.balance[n]===r&&(r=n),i=16777215&this.offsetAndType[r]}return r-this.tokenIndex},isBalanceEdge:function(e){return this.balance[this.tokenIndex]<e},isDelim:function(e,t){return t?this.lookupType(t)===i.Delim&&this.source.charCodeAt(this.lookupOffset(t))===e:this.tokenType===i.Delim&&this.source.charCodeAt(this.tokenStart)===e},getTokenValue:function(){return this.source.substring(this.tokenStart,this.tokenEnd)},getTokenLength:function(){return this.tokenEnd-this.tokenStart},substrToCursor:function(e){return this.source.substring(e,this.tokenStart)},skipWS:function(){for(var e=this.tokenIndex,t=0;e<this.tokenCount&&this.offsetAndType[e]>>24===l;e++,t++);t>0&&this.skip(t)},skipSC:function(){for(;this.tokenType===l||this.tokenType===u;)this.next()},skip:function(e){var t=this.tokenIndex+e;t<this.tokenCount?(this.tokenIndex=t,this.tokenStart=16777215&this.offsetAndType[t-1],t=this.offsetAndType[t],this.tokenType=t>>24,this.tokenEnd=16777215&t):(this.tokenIndex=this.tokenCount,this.next())},next:function(){var e=this.tokenIndex+1;e<this.tokenCount?(this.tokenIndex=e,this.tokenStart=this.tokenEnd,e=this.offsetAndType[e],this.tokenType=e>>24,this.tokenEnd=16777215&e):(this.tokenIndex=this.tokenCount,this.eof=!0,this.tokenType=s,this.tokenStart=this.tokenEnd=this.source.length)},forEachToken(e){for(var t=0,n=this.firstCharOffset;t<this.tokenCount;t++){var r=n,i=this.offsetAndType[t],o=16777215&i;n=o,e(i>>24,r,o,t)}},dump(){var e=new Array(this.tokenCount);return this.forEachToken((t,n,r,i)=>{e[i]={idx:i,type:o[t],chunk:this.source.substring(n,r),balance:this.balance[i]}}),e}},e.exports=c},"9B+R":function(e,t){e.exports={ASTERISK:"asterisk",BANG:"bang",BACKSLASH:"backslash",UNDERSCORE:"underscore"}},"9PCU":function(e){e.exports=JSON.parse('{"--*":{"syntax":"<declaration-value>","media":"all","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Variables"],"initial":"seeProse","appliesto":"allElements","computed":"asSpecifiedWithVarsSubstituted","order":"perGrammar","status":"experimental","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/--*"},"-ms-accelerator":{"syntax":"false | true","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":"false","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-accelerator"},"-ms-block-progression":{"syntax":"tb | rl | bt | lr","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":"tb","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-block-progression"},"-ms-content-zoom-chaining":{"syntax":"none | chained","media":"interactive","inherited":false,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":"none","appliesto":"nonReplacedBlockAndInlineBlockElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-chaining"},"-ms-content-zooming":{"syntax":"none | zoom","media":"interactive","inherited":false,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":"zoomForTheTopLevelNoneForTheRest","appliesto":"nonReplacedBlockAndInlineBlockElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-content-zooming"},"-ms-content-zoom-limit":{"syntax":"<\'-ms-content-zoom-limit-min\'> <\'-ms-content-zoom-limit-max\'>","media":"interactive","inherited":false,"animationType":"discrete","percentages":["-ms-content-zoom-limit-max","-ms-content-zoom-limit-min"],"groups":["Microsoft Extensions"],"initial":["-ms-content-zoom-limit-max","-ms-content-zoom-limit-min"],"appliesto":"nonReplacedBlockAndInlineBlockElements","computed":["-ms-content-zoom-limit-max","-ms-content-zoom-limit-min"],"order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-limit"},"-ms-content-zoom-limit-max":{"syntax":"<percentage>","media":"interactive","inherited":false,"animationType":"discrete","percentages":"maxZoomFactor","groups":["Microsoft Extensions"],"initial":"400%","appliesto":"nonReplacedBlockAndInlineBlockElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-limit-max"},"-ms-content-zoom-limit-min":{"syntax":"<percentage>","media":"interactive","inherited":false,"animationType":"discrete","percentages":"minZoomFactor","groups":["Microsoft Extensions"],"initial":"100%","appliesto":"nonReplacedBlockAndInlineBlockElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-limit-min"},"-ms-content-zoom-snap":{"syntax":"<\'-ms-content-zoom-snap-type\'> || <\'-ms-content-zoom-snap-points\'>","media":"interactive","inherited":false,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":["-ms-content-zoom-snap-type","-ms-content-zoom-snap-points"],"appliesto":"nonReplacedBlockAndInlineBlockElements","computed":["-ms-content-zoom-snap-type","-ms-content-zoom-snap-points"],"order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-snap"},"-ms-content-zoom-snap-points":{"syntax":"snapInterval( <percentage>, <percentage> ) | snapList( <percentage># )","media":"interactive","inherited":false,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":"snapInterval(0%, 100%)","appliesto":"nonReplacedBlockAndInlineBlockElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-snap-points"},"-ms-content-zoom-snap-type":{"syntax":"none | proximity | mandatory","media":"interactive","inherited":false,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":"none","appliesto":"nonReplacedBlockAndInlineBlockElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-snap-type"},"-ms-filter":{"syntax":"<string>","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":"\\"\\"","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-filter"},"-ms-flow-from":{"syntax":"[ none | <custom-ident> ]#","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":"none","appliesto":"nonReplacedElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-flow-from"},"-ms-flow-into":{"syntax":"[ none | <custom-ident> ]#","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":"none","appliesto":"iframeElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-flow-into"},"-ms-grid-columns":{"syntax":"none | <track-list> | <auto-track-list>","media":"visual","inherited":false,"animationType":"simpleListOfLpcDifferenceLpc","percentages":"referToDimensionOfContentArea","groups":["CSS Grid Layout"],"initial":"none","appliesto":"gridContainers","computed":"asSpecifiedRelativeToAbsoluteLengths","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-grid-columns"},"-ms-grid-rows":{"syntax":"none | <track-list> | <auto-track-list>","media":"visual","inherited":false,"animationType":"simpleListOfLpcDifferenceLpc","percentages":"referToDimensionOfContentArea","groups":["CSS Grid Layout"],"initial":"none","appliesto":"gridContainers","computed":"asSpecifiedRelativeToAbsoluteLengths","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-grid-rows"},"-ms-high-contrast-adjust":{"syntax":"auto | none","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":"auto","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-high-contrast-adjust"},"-ms-hyphenate-limit-chars":{"syntax":"auto | <integer>{1,3}","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":"auto","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-hyphenate-limit-chars"},"-ms-hyphenate-limit-lines":{"syntax":"no-limit | <integer>","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":"no-limit","appliesto":"blockContainerElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-hyphenate-limit-lines"},"-ms-hyphenate-limit-zone":{"syntax":"<percentage> | <length>","media":"visual","inherited":true,"animationType":"discrete","percentages":"referToLineBoxWidth","groups":["Microsoft Extensions"],"initial":"0","appliesto":"blockContainerElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-hyphenate-limit-zone"},"-ms-ime-align":{"syntax":"auto | after","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":"auto","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-ime-align"},"-ms-overflow-style":{"syntax":"auto | none | scrollbar | -ms-autohiding-scrollbar","media":"interactive","inherited":true,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":"auto","appliesto":"nonReplacedBlockAndInlineBlockElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-overflow-style"},"-ms-scrollbar-3dlight-color":{"syntax":"<color>","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":"dependsOnUserAgent","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-3dlight-color"},"-ms-scrollbar-arrow-color":{"syntax":"<color>","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":"ButtonText","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-arrow-color"},"-ms-scrollbar-base-color":{"syntax":"<color>","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":"dependsOnUserAgent","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-base-color"},"-ms-scrollbar-darkshadow-color":{"syntax":"<color>","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":"ThreeDDarkShadow","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-darkshadow-color"},"-ms-scrollbar-face-color":{"syntax":"<color>","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":"ThreeDFace","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-face-color"},"-ms-scrollbar-highlight-color":{"syntax":"<color>","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":"ThreeDHighlight","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-highlight-color"},"-ms-scrollbar-shadow-color":{"syntax":"<color>","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":"ThreeDDarkShadow","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-shadow-color"},"-ms-scrollbar-track-color":{"syntax":"<color>","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":"Scrollbar","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-track-color"},"-ms-scroll-chaining":{"syntax":"chained | none","media":"interactive","inherited":false,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":"chained","appliesto":"nonReplacedBlockAndInlineBlockElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-chaining"},"-ms-scroll-limit":{"syntax":"<\'-ms-scroll-limit-x-min\'> <\'-ms-scroll-limit-y-min\'> <\'-ms-scroll-limit-x-max\'> <\'-ms-scroll-limit-y-max\'>","media":"interactive","inherited":false,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":["-ms-scroll-limit-x-min","-ms-scroll-limit-y-min","-ms-scroll-limit-x-max","-ms-scroll-limit-y-max"],"appliesto":"nonReplacedBlockAndInlineBlockElements","computed":["-ms-scroll-limit-x-min","-ms-scroll-limit-y-min","-ms-scroll-limit-x-max","-ms-scroll-limit-y-max"],"order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-limit"},"-ms-scroll-limit-x-max":{"syntax":"auto | <length>","media":"interactive","inherited":false,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":"auto","appliesto":"nonReplacedBlockAndInlineBlockElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-limit-x-max"},"-ms-scroll-limit-x-min":{"syntax":"<length>","media":"interactive","inherited":false,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":"0","appliesto":"nonReplacedBlockAndInlineBlockElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-limit-x-min"},"-ms-scroll-limit-y-max":{"syntax":"auto | <length>","media":"interactive","inherited":false,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":"auto","appliesto":"nonReplacedBlockAndInlineBlockElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-limit-y-max"},"-ms-scroll-limit-y-min":{"syntax":"<length>","media":"interactive","inherited":false,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":"0","appliesto":"nonReplacedBlockAndInlineBlockElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-limit-y-min"},"-ms-scroll-rails":{"syntax":"none | railed","media":"interactive","inherited":false,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":"railed","appliesto":"nonReplacedBlockAndInlineBlockElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-rails"},"-ms-scroll-snap-points-x":{"syntax":"snapInterval( <length-percentage>, <length-percentage> ) | snapList( <length-percentage># )","media":"interactive","inherited":false,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":"snapInterval(0px, 100%)","appliesto":"nonReplacedBlockAndInlineBlockElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-snap-points-x"},"-ms-scroll-snap-points-y":{"syntax":"snapInterval( <length-percentage>, <length-percentage> ) | snapList( <length-percentage># )","media":"interactive","inherited":false,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":"snapInterval(0px, 100%)","appliesto":"nonReplacedBlockAndInlineBlockElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-snap-points-y"},"-ms-scroll-snap-type":{"syntax":"none | proximity | mandatory","media":"interactive","inherited":false,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":"none","appliesto":"nonReplacedBlockAndInlineBlockElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-snap-type"},"-ms-scroll-snap-x":{"syntax":"<\'-ms-scroll-snap-type\'> <\'-ms-scroll-snap-points-x\'>","media":"interactive","inherited":false,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":["-ms-scroll-snap-type","-ms-scroll-snap-points-x"],"appliesto":"nonReplacedBlockAndInlineBlockElements","computed":["-ms-scroll-snap-type","-ms-scroll-snap-points-x"],"order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-snap-x"},"-ms-scroll-snap-y":{"syntax":"<\'-ms-scroll-snap-type\'> <\'-ms-scroll-snap-points-y\'>","media":"interactive","inherited":false,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":["-ms-scroll-snap-type","-ms-scroll-snap-points-y"],"appliesto":"nonReplacedBlockAndInlineBlockElements","computed":["-ms-scroll-snap-type","-ms-scroll-snap-points-y"],"order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-snap-y"},"-ms-scroll-translation":{"syntax":"none | vertical-to-horizontal","media":"interactive","inherited":true,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":"none","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-translation"},"-ms-text-autospace":{"syntax":"none | ideograph-alpha | ideograph-numeric | ideograph-parenthesis | ideograph-space","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":"none","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-text-autospace"},"-ms-touch-select":{"syntax":"grippers | none","media":"interactive","inherited":true,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":"grippers","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-touch-select"},"-ms-user-select":{"syntax":"none | element | text","media":"interactive","inherited":false,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":"text","appliesto":"nonReplacedElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-user-select"},"-ms-wrap-flow":{"syntax":"auto | both | start | end | maximum | clear","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":"auto","appliesto":"blockLevelElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-wrap-flow"},"-ms-wrap-margin":{"syntax":"<length>","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":"0","appliesto":"exclusionElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-wrap-margin"},"-ms-wrap-through":{"syntax":"wrap | none","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["Microsoft Extensions"],"initial":"wrap","appliesto":"blockLevelElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-ms-wrap-through"},"-moz-appearance":{"syntax":"none | button | button-arrow-down | button-arrow-next | button-arrow-previous | button-arrow-up | button-bevel | button-focus | caret | checkbox | checkbox-container | checkbox-label | checkmenuitem | dualbutton | groupbox | listbox | listitem | menuarrow | menubar | menucheckbox | menuimage | menuitem | menuitemtext | menulist | menulist-button | menulist-text | menulist-textfield | menupopup | menuradio | menuseparator | meterbar | meterchunk | progressbar | progressbar-vertical | progresschunk | progresschunk-vertical | radio | radio-container | radio-label | radiomenuitem | range | range-thumb | resizer | resizerpanel | scale-horizontal | scalethumbend | scalethumb-horizontal | scalethumbstart | scalethumbtick | scalethumb-vertical | scale-vertical | scrollbarbutton-down | scrollbarbutton-left | scrollbarbutton-right | scrollbarbutton-up | scrollbarthumb-horizontal | scrollbarthumb-vertical | scrollbartrack-horizontal | scrollbartrack-vertical | searchfield | separator | sheet | spinner | spinner-downbutton | spinner-textfield | spinner-upbutton | splitter | statusbar | statusbarpanel | tab | tabpanel | tabpanels | tab-scroll-arrow-back | tab-scroll-arrow-forward | textfield | textfield-multiline | toolbar | toolbarbutton | toolbarbutton-dropdown | toolbargripper | toolbox | tooltip | treeheader | treeheadercell | treeheadersortarrow | treeitem | treeline | treetwisty | treetwistyopen | treeview | -moz-mac-unified-toolbar | -moz-win-borderless-glass | -moz-win-browsertabbar-toolbox | -moz-win-communicationstext | -moz-win-communications-toolbox | -moz-win-exclude-glass | -moz-win-glass | -moz-win-mediatext | -moz-win-media-toolbox | -moz-window-button-box | -moz-window-button-box-maximized | -moz-window-button-close | -moz-window-button-maximize | -moz-window-button-minimize | -moz-window-button-restore | -moz-window-frame-bottom | -moz-window-frame-left | -moz-window-frame-right | -moz-window-titlebar | -moz-window-titlebar-maximized","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["Mozilla Extensions","WebKit Extensions"],"initial":"noneButOverriddenInUserAgentCSS","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/appearance"},"-moz-binding":{"syntax":"<url> | none","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["Mozilla Extensions"],"initial":"none","appliesto":"allElementsExceptGeneratedContentOrPseudoElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-moz-binding"},"-moz-border-bottom-colors":{"syntax":"<color>+ | none","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["Mozilla Extensions"],"initial":"none","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-moz-border-bottom-colors"},"-moz-border-left-colors":{"syntax":"<color>+ | none","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["Mozilla Extensions"],"initial":"none","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-moz-border-left-colors"},"-moz-border-right-colors":{"syntax":"<color>+ | none","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["Mozilla Extensions"],"initial":"none","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-moz-border-right-colors"},"-moz-border-top-colors":{"syntax":"<color>+ | none","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["Mozilla Extensions"],"initial":"none","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-moz-border-top-colors"},"-moz-context-properties":{"syntax":"none | [ fill | fill-opacity | stroke | stroke-opacity ]#","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["Mozilla Extensions"],"initial":"none","appliesto":"allElementsThatCanReferenceImages","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-moz-context-properties"},"-moz-float-edge":{"syntax":"border-box | content-box | margin-box | padding-box","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["Mozilla Extensions"],"initial":"content-box","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-moz-float-edge"},"-moz-force-broken-image-icon":{"syntax":"<integer [0,1]>","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["Mozilla Extensions"],"initial":"0","appliesto":"images","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-moz-force-broken-image-icon"},"-moz-image-region":{"syntax":"<shape> | auto","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["Mozilla Extensions"],"initial":"auto","appliesto":"xulImageElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-moz-image-region"},"-moz-orient":{"syntax":"inline | block | horizontal | vertical","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["Mozilla Extensions"],"initial":"inline","appliesto":"anyElementEffectOnProgressAndMeter","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-moz-orient"},"-moz-outline-radius":{"syntax":"<outline-radius>{1,4} [ / <outline-radius>{1,4} ]?","media":"visual","inherited":false,"animationType":["-moz-outline-radius-topleft","-moz-outline-radius-topright","-moz-outline-radius-bottomright","-moz-outline-radius-bottomleft"],"percentages":["-moz-outline-radius-topleft","-moz-outline-radius-topright","-moz-outline-radius-bottomright","-moz-outline-radius-bottomleft"],"groups":["Mozilla Extensions"],"initial":["-moz-outline-radius-topleft","-moz-outline-radius-topright","-moz-outline-radius-bottomright","-moz-outline-radius-bottomleft"],"appliesto":"allElements","computed":["-moz-outline-radius-topleft","-moz-outline-radius-topright","-moz-outline-radius-bottomright","-moz-outline-radius-bottomleft"],"order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-moz-outline-radius"},"-moz-outline-radius-bottomleft":{"syntax":"<outline-radius>","media":"visual","inherited":false,"animationType":"lpc","percentages":"referToDimensionOfBorderBox","groups":["Mozilla Extensions"],"initial":"0","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-moz-outline-radius-bottomleft"},"-moz-outline-radius-bottomright":{"syntax":"<outline-radius>","media":"visual","inherited":false,"animationType":"lpc","percentages":"referToDimensionOfBorderBox","groups":["Mozilla Extensions"],"initial":"0","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-moz-outline-radius-bottomright"},"-moz-outline-radius-topleft":{"syntax":"<outline-radius>","media":"visual","inherited":false,"animationType":"lpc","percentages":"referToDimensionOfBorderBox","groups":["Mozilla Extensions"],"initial":"0","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-moz-outline-radius-topleft"},"-moz-outline-radius-topright":{"syntax":"<outline-radius>","media":"visual","inherited":false,"animationType":"lpc","percentages":"referToDimensionOfBorderBox","groups":["Mozilla Extensions"],"initial":"0","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-moz-outline-radius-topright"},"-moz-stack-sizing":{"syntax":"ignore | stretch-to-fit","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["Mozilla Extensions"],"initial":"stretch-to-fit","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-moz-stack-sizing"},"-moz-text-blink":{"syntax":"none | blink","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["Mozilla Extensions"],"initial":"none","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-moz-text-blink"},"-moz-user-focus":{"syntax":"ignore | normal | select-after | select-before | select-menu | select-same | select-all | none","media":"interactive","inherited":false,"animationType":"discrete","percentages":"no","groups":["Mozilla Extensions"],"initial":"none","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-moz-user-focus"},"-moz-user-input":{"syntax":"auto | none | enabled | disabled","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["Mozilla Extensions"],"initial":"auto","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-moz-user-input"},"-moz-user-modify":{"syntax":"read-only | read-write | write-only","media":"interactive","inherited":true,"animationType":"discrete","percentages":"no","groups":["Mozilla Extensions"],"initial":"read-only","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-moz-user-modify"},"-moz-window-dragging":{"syntax":"drag | no-drag","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["Mozilla Extensions"],"initial":"drag","appliesto":"allElementsCreatingNativeWindows","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-moz-window-dragging"},"-moz-window-shadow":{"syntax":"default | menu | tooltip | sheet | none","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["Mozilla Extensions"],"initial":"default","appliesto":"allElementsCreatingNativeWindows","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-moz-window-shadow"},"-webkit-appearance":{"syntax":"none | button | button-bevel | caret | checkbox | default-button | inner-spin-button | listbox | listitem | media-controls-background | media-controls-fullscreen-background | media-current-time-display | media-enter-fullscreen-button | media-exit-fullscreen-button | media-fullscreen-button | media-mute-button | media-overlay-play-button | media-play-button | media-seek-back-button | media-seek-forward-button | media-slider | media-sliderthumb | media-time-remaining-display | media-toggle-closed-captions-button | media-volume-slider | media-volume-slider-container | media-volume-sliderthumb | menulist | menulist-button | menulist-text | menulist-textfield | meter | progress-bar | progress-bar-value | push-button | radio | searchfield | searchfield-cancel-button | searchfield-decoration | searchfield-results-button | searchfield-results-decoration | slider-horizontal | slider-vertical | sliderthumb-horizontal | sliderthumb-vertical | square-button | textarea | textfield | -apple-pay-button","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["WebKit Extensions"],"initial":"noneButOverriddenInUserAgentCSS","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/appearance"},"-webkit-border-before":{"syntax":"<\'border-width\'> || <\'border-style\'> || <\'color\'>","media":"visual","inherited":true,"animationType":"discrete","percentages":["-webkit-border-before-width"],"groups":["WebKit Extensions"],"initial":["border-width","border-style","color"],"appliesto":"allElements","computed":["border-width","border-style","color"],"order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-webkit-border-before"},"-webkit-border-before-color":{"syntax":"<\'color\'>","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["WebKit Extensions"],"initial":"currentcolor","appliesto":"allElements","computed":"computedColor","order":"uniqueOrder","status":"nonstandard"},"-webkit-border-before-style":{"syntax":"<\'border-style\'>","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["WebKit Extensions"],"initial":"none","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard"},"-webkit-border-before-width":{"syntax":"<\'border-width\'>","media":"visual","inherited":true,"animationType":"discrete","percentages":"logicalWidthOfContainingBlock","groups":["WebKit Extensions"],"initial":"medium","appliesto":"allElements","computed":"absoluteLengthZeroIfBorderStyleNoneOrHidden","order":"uniqueOrder","status":"nonstandard"},"-webkit-box-reflect":{"syntax":"[ above | below | right | left ]? <length>? <image>?","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["WebKit Extensions"],"initial":"none","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-webkit-box-reflect"},"-webkit-line-clamp":{"syntax":"none | <integer>","media":"visual","inherited":false,"animationType":"byComputedValueType","percentages":"no","groups":["WebKit Extensions","CSS Overflow"],"initial":"none","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-webkit-line-clamp"},"-webkit-mask":{"syntax":"[ <mask-reference> || <position> [ / <bg-size> ]? || <repeat-style> || [ <box> | border | padding | content | text ] || [ <box> | border | padding | content ] ]#","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["WebKit Extensions"],"initial":["-webkit-mask-image","-webkit-mask-repeat","-webkit-mask-attachment","-webkit-mask-position","-webkit-mask-origin","-webkit-mask-clip"],"appliesto":"allElements","computed":["-webkit-mask-image","-webkit-mask-repeat","-webkit-mask-attachment","-webkit-mask-position","-webkit-mask-origin","-webkit-mask-clip"],"order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/mask"},"-webkit-mask-attachment":{"syntax":"<attachment>#","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["WebKit Extensions"],"initial":"scroll","appliesto":"allElements","computed":"asSpecified","order":"orderOfAppearance","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-attachment"},"-webkit-mask-clip":{"syntax":"[ <box> | border | padding | content | text ]#","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["WebKit Extensions"],"initial":"border","appliesto":"allElements","computed":"asSpecified","order":"orderOfAppearance","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/mask-clip"},"-webkit-mask-composite":{"syntax":"<composite-style>#","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["WebKit Extensions"],"initial":"source-over","appliesto":"allElements","computed":"asSpecified","order":"orderOfAppearance","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-composite"},"-webkit-mask-image":{"syntax":"<mask-reference>#","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["WebKit Extensions"],"initial":"none","appliesto":"allElements","computed":"absoluteURIOrNone","order":"orderOfAppearance","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/mask-image"},"-webkit-mask-origin":{"syntax":"[ <box> | border | padding | content ]#","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["WebKit Extensions"],"initial":"padding","appliesto":"allElements","computed":"asSpecified","order":"orderOfAppearance","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/mask-origin"},"-webkit-mask-position":{"syntax":"<position>#","media":"visual","inherited":false,"animationType":"discrete","percentages":"referToSizeOfElement","groups":["WebKit Extensions"],"initial":"0% 0%","appliesto":"allElements","computed":"absoluteLengthOrPercentage","order":"orderOfAppearance","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/mask-position"},"-webkit-mask-position-x":{"syntax":"[ <length-percentage> | left | center | right ]#","media":"visual","inherited":false,"animationType":"discrete","percentages":"referToSizeOfElement","groups":["WebKit Extensions"],"initial":"0%","appliesto":"allElements","computed":"absoluteLengthOrPercentage","order":"orderOfAppearance","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-position-x"},"-webkit-mask-position-y":{"syntax":"[ <length-percentage> | top | center | bottom ]#","media":"visual","inherited":false,"animationType":"discrete","percentages":"referToSizeOfElement","groups":["WebKit Extensions"],"initial":"0%","appliesto":"allElements","computed":"absoluteLengthOrPercentage","order":"orderOfAppearance","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-position-y"},"-webkit-mask-repeat":{"syntax":"<repeat-style>#","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["WebKit Extensions"],"initial":"repeat","appliesto":"allElements","computed":"asSpecified","order":"orderOfAppearance","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/mask-repeat"},"-webkit-mask-repeat-x":{"syntax":"repeat | no-repeat | space | round","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["WebKit Extensions"],"initial":"repeat","appliesto":"allElements","computed":"asSpecified","order":"orderOfAppearance","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-repeat-x"},"-webkit-mask-repeat-y":{"syntax":"repeat | no-repeat | space | round","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["WebKit Extensions"],"initial":"repeat","appliesto":"allElements","computed":"absoluteLengthOrPercentage","order":"orderOfAppearance","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-repeat-y"},"-webkit-mask-size":{"syntax":"<bg-size>#","media":"visual","inherited":false,"animationType":"discrete","percentages":"relativeToBackgroundPositioningArea","groups":["WebKit Extensions"],"initial":"auto auto","appliesto":"allElements","computed":"asSpecified","order":"orderOfAppearance","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/mask-size"},"-webkit-overflow-scrolling":{"syntax":"auto | touch","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["WebKit Extensions"],"initial":"auto","appliesto":"scrollingBoxes","computed":"asSpecified","order":"orderOfAppearance","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-webkit-overflow-scrolling"},"-webkit-tap-highlight-color":{"syntax":"<color>","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["WebKit Extensions"],"initial":"black","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-webkit-tap-highlight-color"},"-webkit-text-fill-color":{"syntax":"<color>","media":"visual","inherited":true,"animationType":"color","percentages":"no","groups":["WebKit Extensions"],"initial":"currentcolor","appliesto":"allElements","computed":"computedColor","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-webkit-text-fill-color"},"-webkit-text-stroke":{"syntax":"<length> || <color>","media":"visual","inherited":true,"animationType":["-webkit-text-stroke-width","-webkit-text-stroke-color"],"percentages":"no","groups":["WebKit Extensions"],"initial":["-webkit-text-stroke-width","-webkit-text-stroke-color"],"appliesto":"allElements","computed":["-webkit-text-stroke-width","-webkit-text-stroke-color"],"order":"canonicalOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-webkit-text-stroke"},"-webkit-text-stroke-color":{"syntax":"<color>","media":"visual","inherited":true,"animationType":"color","percentages":"no","groups":["WebKit Extensions"],"initial":"currentcolor","appliesto":"allElements","computed":"computedColor","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-webkit-text-stroke-color"},"-webkit-text-stroke-width":{"syntax":"<length>","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["WebKit Extensions"],"initial":"0","appliesto":"allElements","computed":"absoluteLength","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-webkit-text-stroke-width"},"-webkit-touch-callout":{"syntax":"default | none","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["WebKit Extensions"],"initial":"default","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/-webkit-touch-callout"},"-webkit-user-modify":{"syntax":"read-only | read-write | read-write-plaintext-only","media":"interactive","inherited":true,"animationType":"discrete","percentages":"no","groups":["WebKit Extensions"],"initial":"read-only","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard"},"align-content":{"syntax":"normal | <baseline-position> | <content-distribution> | <overflow-position>? <content-position>","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Box Alignment"],"initial":"normal","appliesto":"multilineFlexContainers","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/align-content"},"align-items":{"syntax":"normal | stretch | <baseline-position> | [ <overflow-position>? <self-position> ]","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Box Alignment"],"initial":"normal","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/align-items"},"align-self":{"syntax":"auto | normal | stretch | <baseline-position> | <overflow-position>? <self-position>","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Box Alignment"],"initial":"auto","appliesto":"flexItemsGridItemsAndAbsolutelyPositionedBoxes","computed":"autoOnAbsolutelyPositionedElementsValueOfAlignItemsOnParent","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/align-self"},"align-tracks":{"syntax":"[ normal | <baseline-position> | <content-distribution> | <overflow-position>? <content-position> ]#","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Grid Layout"],"initial":"normal","appliesto":"gridContainersWithMasonryLayoutInTheirBlockAxis","computed":"asSpecified","order":"uniqueOrder","status":"experimental","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/align-tracks"},"all":{"syntax":"initial | inherit | unset | revert","media":"noPracticalMedia","inherited":false,"animationType":"eachOfShorthandPropertiesExceptUnicodeBiDiAndDirection","percentages":"no","groups":["CSS Miscellaneous"],"initial":"noPracticalInitialValue","appliesto":"allElements","computed":"asSpecifiedAppliesToEachProperty","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/all"},"animation":{"syntax":"<single-animation>#","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Animations"],"initial":["animation-name","animation-duration","animation-timing-function","animation-delay","animation-iteration-count","animation-direction","animation-fill-mode","animation-play-state"],"appliesto":"allElementsAndPseudos","computed":["animation-name","animation-duration","animation-timing-function","animation-delay","animation-direction","animation-iteration-count","animation-fill-mode","animation-play-state"],"order":"orderOfAppearance","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/animation"},"animation-delay":{"syntax":"<time>#","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Animations"],"initial":"0s","appliesto":"allElementsAndPseudos","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/animation-delay"},"animation-direction":{"syntax":"<single-animation-direction>#","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Animations"],"initial":"normal","appliesto":"allElementsAndPseudos","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/animation-direction"},"animation-duration":{"syntax":"<time>#","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Animations"],"initial":"0s","appliesto":"allElementsAndPseudos","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/animation-duration"},"animation-fill-mode":{"syntax":"<single-animation-fill-mode>#","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Animations"],"initial":"none","appliesto":"allElementsAndPseudos","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/animation-fill-mode"},"animation-iteration-count":{"syntax":"<single-animation-iteration-count>#","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Animations"],"initial":"1","appliesto":"allElementsAndPseudos","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/animation-iteration-count"},"animation-name":{"syntax":"[ none | <keyframes-name> ]#","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Animations"],"initial":"none","appliesto":"allElementsAndPseudos","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/animation-name"},"animation-play-state":{"syntax":"<single-animation-play-state>#","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Animations"],"initial":"running","appliesto":"allElementsAndPseudos","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/animation-play-state"},"animation-timing-function":{"syntax":"<timing-function>#","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Animations"],"initial":"ease","appliesto":"allElementsAndPseudos","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/animation-timing-function"},"appearance":{"syntax":"none | auto | textfield | menulist-button | <compat-auto>","media":"all","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Basic User Interface"],"initial":"auto","appliesto":"allElements","computed":"asSpecified","order":"perGrammar","status":"experimental","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/appearance"},"aspect-ratio":{"syntax":"auto | <ratio>","media":"all","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Basic User Interface"],"initial":"auto","appliesto":"allElementsExceptInlineBoxesAndInternalRubyOrTableBoxes","computed":"asSpecified","order":"perGrammar","status":"experimental","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/aspect-ratio"},"azimuth":{"syntax":"<angle> | [ [ left-side | far-left | left | center-left | center | center-right | right | far-right | right-side ] || behind ] | leftwards | rightwards","media":"aural","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Speech"],"initial":"center","appliesto":"allElements","computed":"normalizedAngle","order":"orderOfAppearance","status":"obsolete","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/azimuth"},"backdrop-filter":{"syntax":"none | <filter-function-list>","media":"visual","inherited":false,"animationType":"filterList","percentages":"no","groups":["Filter Effects"],"initial":"none","appliesto":"allElementsSVGContainerElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/backdrop-filter"},"backface-visibility":{"syntax":"visible | hidden","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Transforms"],"initial":"visible","appliesto":"transformableElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/backface-visibility"},"background":{"syntax":"[ <bg-layer> , ]* <final-bg-layer>","media":"visual","inherited":false,"animationType":["background-color","background-image","background-clip","background-position","background-size","background-repeat","background-attachment"],"percentages":["background-position","background-size"],"groups":["CSS Backgrounds and Borders"],"initial":["background-image","background-position","background-size","background-repeat","background-origin","background-clip","background-attachment","background-color"],"appliesto":"allElements","computed":["background-image","background-position","background-size","background-repeat","background-origin","background-clip","background-attachment","background-color"],"order":"orderOfAppearance","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/background"},"background-attachment":{"syntax":"<attachment>#","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Backgrounds and Borders"],"initial":"scroll","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/background-attachment"},"background-blend-mode":{"syntax":"<blend-mode>#","media":"none","inherited":false,"animationType":"discrete","percentages":"no","groups":["Compositing and Blending"],"initial":"normal","appliesto":"allElementsSVGContainerGraphicsAndGraphicsReferencingElements","computed":"asSpecified","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/background-blend-mode"},"background-clip":{"syntax":"<box>#","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Backgrounds and Borders"],"initial":"border-box","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/background-clip"},"background-color":{"syntax":"<color>","media":"visual","inherited":false,"animationType":"color","percentages":"no","groups":["CSS Backgrounds and Borders"],"initial":"transparent","appliesto":"allElements","computed":"computedColor","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/background-color"},"background-image":{"syntax":"<bg-image>#","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Backgrounds and Borders"],"initial":"none","appliesto":"allElements","computed":"asSpecifiedURLsAbsolute","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/background-image"},"background-origin":{"syntax":"<box>#","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Backgrounds and Borders"],"initial":"padding-box","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/background-origin"},"background-position":{"syntax":"<bg-position>#","media":"visual","inherited":false,"animationType":"repeatableListOfSimpleListOfLpc","percentages":"referToSizeOfBackgroundPositioningAreaMinusBackgroundImageSize","groups":["CSS Backgrounds and Borders"],"initial":"0% 0%","appliesto":"allElements","computed":"listEachItemTwoKeywordsOriginOffsets","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/background-position"},"background-position-x":{"syntax":"[ center | [ [ left | right | x-start | x-end ]? <length-percentage>? ]! ]#","media":"visual","inherited":false,"animationType":"discrete","percentages":"referToWidthOfBackgroundPositioningAreaMinusBackgroundImageHeight","groups":["CSS Backgrounds and Borders"],"initial":"left","appliesto":"allElements","computed":"listEachItemConsistingOfAbsoluteLengthPercentageAndOrigin","order":"uniqueOrder","status":"experimental","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/background-position-x"},"background-position-y":{"syntax":"[ center | [ [ top | bottom | y-start | y-end ]? <length-percentage>? ]! ]#","media":"visual","inherited":false,"animationType":"discrete","percentages":"referToHeightOfBackgroundPositioningAreaMinusBackgroundImageHeight","groups":["CSS Backgrounds and Borders"],"initial":"top","appliesto":"allElements","computed":"listEachItemConsistingOfAbsoluteLengthPercentageAndOrigin","order":"uniqueOrder","status":"experimental","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/background-position-y"},"background-repeat":{"syntax":"<repeat-style>#","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Backgrounds and Borders"],"initial":"repeat","appliesto":"allElements","computed":"listEachItemHasTwoKeywordsOnePerDimension","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/background-repeat"},"background-size":{"syntax":"<bg-size>#","media":"visual","inherited":false,"animationType":"repeatableListOfSimpleListOfLpc","percentages":"relativeToBackgroundPositioningArea","groups":["CSS Backgrounds and Borders"],"initial":"auto auto","appliesto":"allElements","computed":"asSpecifiedRelativeToAbsoluteLengths","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/background-size"},"block-overflow":{"syntax":"clip | ellipsis | <string>","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Overflow"],"initial":"clip","appliesto":"blockContainers","computed":"asSpecified","order":"perGrammar","status":"experimental"},"block-size":{"syntax":"<\'width\'>","media":"visual","inherited":false,"animationType":"lpc","percentages":"blockSizeOfContainingBlock","groups":["CSS Logical Properties"],"initial":"auto","appliesto":"sameAsWidthAndHeight","computed":"sameAsWidthAndHeight","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/block-size"},"border":{"syntax":"<line-width> || <line-style> || <color>","media":"visual","inherited":false,"animationType":["border-color","border-style","border-width"],"percentages":"no","groups":["CSS Backgrounds and Borders"],"initial":["border-width","border-style","border-color"],"appliesto":"allElements","computed":["border-width","border-style","border-color"],"order":"orderOfAppearance","alsoAppliesTo":["::first-letter"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border"},"border-block":{"syntax":"<\'border-top-width\'> || <\'border-top-style\'> || <\'color\'>","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Logical Properties"],"initial":["border-top-width","border-top-style","border-top-color"],"appliesto":"allElements","computed":["border-top-width","border-top-style","border-top-color"],"order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-block"},"border-block-color":{"syntax":"<\'border-top-color\'>{1,2}","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Logical Properties"],"initial":"currentcolor","appliesto":"allElements","computed":"computedColor","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-block-color"},"border-block-style":{"syntax":"<\'border-top-style\'>","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Logical Properties"],"initial":"none","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-block-style"},"border-block-width":{"syntax":"<\'border-top-width\'>","media":"visual","inherited":false,"animationType":"discrete","percentages":"logicalWidthOfContainingBlock","groups":["CSS Logical Properties"],"initial":"medium","appliesto":"allElements","computed":"absoluteLengthZeroIfBorderStyleNoneOrHidden","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-block-width"},"border-block-end":{"syntax":"<\'border-top-width\'> || <\'border-top-style\'> || <\'color\'>","media":"visual","inherited":false,"animationType":["border-block-end-color","border-block-end-style","border-block-end-width"],"percentages":"no","groups":["CSS Logical Properties"],"initial":["border-top-width","border-top-style","border-top-color"],"appliesto":"allElements","computed":["border-top-width","border-top-style","border-top-color"],"order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-block-end"},"border-block-end-color":{"syntax":"<\'border-top-color\'>","media":"visual","inherited":false,"animationType":"color","percentages":"no","groups":["CSS Logical Properties"],"initial":"currentcolor","appliesto":"allElements","computed":"computedColor","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-block-end-color"},"border-block-end-style":{"syntax":"<\'border-top-style\'>","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Logical Properties"],"initial":"none","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-block-end-style"},"border-block-end-width":{"syntax":"<\'border-top-width\'>","media":"visual","inherited":false,"animationType":"length","percentages":"logicalWidthOfContainingBlock","groups":["CSS Logical Properties"],"initial":"medium","appliesto":"allElements","computed":"absoluteLengthZeroIfBorderStyleNoneOrHidden","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-block-end-width"},"border-block-start":{"syntax":"<\'border-top-width\'> || <\'border-top-style\'> || <\'color\'>","media":"visual","inherited":false,"animationType":["border-block-start-color","border-block-start-style","border-block-start-width"],"percentages":"no","groups":["CSS Logical Properties"],"initial":["border-width","border-style","color"],"appliesto":"allElements","computed":["border-width","border-style","border-block-start-color"],"order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-block-start"},"border-block-start-color":{"syntax":"<\'border-top-color\'>","media":"visual","inherited":false,"animationType":"color","percentages":"no","groups":["CSS Logical Properties"],"initial":"currentcolor","appliesto":"allElements","computed":"computedColor","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-block-start-color"},"border-block-start-style":{"syntax":"<\'border-top-style\'>","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Logical Properties"],"initial":"none","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-block-start-style"},"border-block-start-width":{"syntax":"<\'border-top-width\'>","media":"visual","inherited":false,"animationType":"length","percentages":"logicalWidthOfContainingBlock","groups":["CSS Logical Properties"],"initial":"medium","appliesto":"allElements","computed":"absoluteLengthZeroIfBorderStyleNoneOrHidden","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-block-start-width"},"border-bottom":{"syntax":"<line-width> || <line-style> || <color>","media":"visual","inherited":false,"animationType":["border-bottom-color","border-bottom-style","border-bottom-width"],"percentages":"no","groups":["CSS Backgrounds and Borders"],"initial":["border-bottom-width","border-bottom-style","border-bottom-color"],"appliesto":"allElements","computed":["border-bottom-width","border-bottom-style","border-bottom-color"],"order":"orderOfAppearance","alsoAppliesTo":["::first-letter"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-bottom"},"border-bottom-color":{"syntax":"<\'border-top-color\'>","media":"visual","inherited":false,"animationType":"color","percentages":"no","groups":["CSS Backgrounds and Borders"],"initial":"currentcolor","appliesto":"allElements","computed":"computedColor","order":"uniqueOrder","alsoAppliesTo":["::first-letter"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-bottom-color"},"border-bottom-left-radius":{"syntax":"<length-percentage>{1,2}","media":"visual","inherited":false,"animationType":"lpc","percentages":"referToDimensionOfBorderBox","groups":["CSS Backgrounds and Borders"],"initial":"0","appliesto":"allElementsUAsNotRequiredWhenCollapse","computed":"twoAbsoluteLengthOrPercentages","order":"uniqueOrder","alsoAppliesTo":["::first-letter"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-bottom-left-radius"},"border-bottom-right-radius":{"syntax":"<length-percentage>{1,2}","media":"visual","inherited":false,"animationType":"lpc","percentages":"referToDimensionOfBorderBox","groups":["CSS Backgrounds and Borders"],"initial":"0","appliesto":"allElementsUAsNotRequiredWhenCollapse","computed":"twoAbsoluteLengthOrPercentages","order":"uniqueOrder","alsoAppliesTo":["::first-letter"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-bottom-right-radius"},"border-bottom-style":{"syntax":"<line-style>","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Backgrounds and Borders"],"initial":"none","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","alsoAppliesTo":["::first-letter"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-bottom-style"},"border-bottom-width":{"syntax":"<line-width>","media":"visual","inherited":false,"animationType":"length","percentages":"no","groups":["CSS Backgrounds and Borders"],"initial":"medium","appliesto":"allElements","computed":"absoluteLengthOr0IfBorderBottomStyleNoneOrHidden","order":"uniqueOrder","alsoAppliesTo":["::first-letter"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-bottom-width"},"border-collapse":{"syntax":"collapse | separate","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Table"],"initial":"separate","appliesto":"tableElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-collapse"},"border-color":{"syntax":"<color>{1,4}","media":"visual","inherited":false,"animationType":["border-bottom-color","border-left-color","border-right-color","border-top-color"],"percentages":"no","groups":["CSS Backgrounds and Borders"],"initial":["border-top-color","border-right-color","border-bottom-color","border-left-color"],"appliesto":"allElements","computed":["border-bottom-color","border-left-color","border-right-color","border-top-color"],"order":"uniqueOrder","alsoAppliesTo":["::first-letter"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-color"},"border-end-end-radius":{"syntax":"<length-percentage>{1,2}","media":"visual","inherited":false,"animationType":"lpc","percentages":"referToDimensionOfBorderBox","groups":["CSS Logical Properties"],"initial":"0","appliesto":"allElementsUAsNotRequiredWhenCollapse","computed":"twoAbsoluteLengthOrPercentages","order":"uniqueOrder","alsoAppliesTo":["::first-letter"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-end-end-radius"},"border-end-start-radius":{"syntax":"<length-percentage>{1,2}","media":"visual","inherited":false,"animationType":"lpc","percentages":"referToDimensionOfBorderBox","groups":["CSS Logical Properties"],"initial":"0","appliesto":"allElementsUAsNotRequiredWhenCollapse","computed":"twoAbsoluteLengthOrPercentages","order":"uniqueOrder","alsoAppliesTo":["::first-letter"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-end-start-radius"},"border-image":{"syntax":"<\'border-image-source\'> || <\'border-image-slice\'> [ / <\'border-image-width\'> | / <\'border-image-width\'>? / <\'border-image-outset\'> ]? || <\'border-image-repeat\'>","media":"visual","inherited":false,"animationType":"discrete","percentages":["border-image-slice","border-image-width"],"groups":["CSS Backgrounds and Borders"],"initial":["border-image-source","border-image-slice","border-image-width","border-image-outset","border-image-repeat"],"appliesto":"allElementsExceptTableElementsWhenCollapse","computed":["border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width"],"order":"uniqueOrder","alsoAppliesTo":["::first-letter"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-image"},"border-image-outset":{"syntax":"[ <length> | <number> ]{1,4}","media":"visual","inherited":false,"animationType":"byComputedValueType","percentages":"no","groups":["CSS Backgrounds and Borders"],"initial":"0","appliesto":"allElementsExceptTableElementsWhenCollapse","computed":"asSpecifiedRelativeToAbsoluteLengths","order":"uniqueOrder","alsoAppliesTo":["::first-letter"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-image-outset"},"border-image-repeat":{"syntax":"[ stretch | repeat | round | space ]{1,2}","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Backgrounds and Borders"],"initial":"stretch","appliesto":"allElementsExceptTableElementsWhenCollapse","computed":"asSpecified","order":"uniqueOrder","alsoAppliesTo":["::first-letter"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-image-repeat"},"border-image-slice":{"syntax":"<number-percentage>{1,4} && fill?","media":"visual","inherited":false,"animationType":"byComputedValueType","percentages":"referToSizeOfBorderImage","groups":["CSS Backgrounds and Borders"],"initial":"100%","appliesto":"allElementsExceptTableElementsWhenCollapse","computed":"oneToFourPercentagesOrAbsoluteLengthsPlusFill","order":"percentagesOrLengthsFollowedByFill","alsoAppliesTo":["::first-letter"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-image-slice"},"border-image-source":{"syntax":"none | <image>","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Backgrounds and Borders"],"initial":"none","appliesto":"allElementsExceptTableElementsWhenCollapse","computed":"noneOrImageWithAbsoluteURI","order":"uniqueOrder","alsoAppliesTo":["::first-letter"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-image-source"},"border-image-width":{"syntax":"[ <length-percentage> | <number> | auto ]{1,4}","media":"visual","inherited":false,"animationType":"byComputedValueType","percentages":"referToWidthOrHeightOfBorderImageArea","groups":["CSS Backgrounds and Borders"],"initial":"1","appliesto":"allElementsExceptTableElementsWhenCollapse","computed":"asSpecifiedRelativeToAbsoluteLengths","order":"uniqueOrder","alsoAppliesTo":["::first-letter"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-image-width"},"border-inline":{"syntax":"<\'border-top-width\'> || <\'border-top-style\'> || <\'color\'>","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Logical Properties"],"initial":["border-top-width","border-top-style","border-top-color"],"appliesto":"allElements","computed":["border-top-width","border-top-style","border-top-color"],"order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-inline"},"border-inline-end":{"syntax":"<\'border-top-width\'> || <\'border-top-style\'> || <\'color\'>","media":"visual","inherited":false,"animationType":["border-inline-end-color","border-inline-end-style","border-inline-end-width"],"percentages":"no","groups":["CSS Logical Properties"],"initial":["border-width","border-style","color"],"appliesto":"allElements","computed":["border-width","border-style","border-inline-end-color"],"order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-inline-end"},"border-inline-color":{"syntax":"<\'border-top-color\'>{1,2}","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Logical Properties"],"initial":"currentcolor","appliesto":"allElements","computed":"computedColor","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-inline-color"},"border-inline-style":{"syntax":"<\'border-top-style\'>","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Logical Properties"],"initial":"none","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-inline-style"},"border-inline-width":{"syntax":"<\'border-top-width\'>","media":"visual","inherited":false,"animationType":"discrete","percentages":"logicalWidthOfContainingBlock","groups":["CSS Logical Properties"],"initial":"medium","appliesto":"allElements","computed":"absoluteLengthZeroIfBorderStyleNoneOrHidden","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-inline-width"},"border-inline-end-color":{"syntax":"<\'border-top-color\'>","media":"visual","inherited":false,"animationType":"color","percentages":"no","groups":["CSS Logical Properties"],"initial":"currentcolor","appliesto":"allElements","computed":"computedColor","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-inline-end-color"},"border-inline-end-style":{"syntax":"<\'border-top-style\'>","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Logical Properties"],"initial":"none","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-inline-end-style"},"border-inline-end-width":{"syntax":"<\'border-top-width\'>","media":"visual","inherited":false,"animationType":"length","percentages":"logicalWidthOfContainingBlock","groups":["CSS Logical Properties"],"initial":"medium","appliesto":"allElements","computed":"absoluteLengthZeroIfBorderStyleNoneOrHidden","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-inline-end-width"},"border-inline-start":{"syntax":"<\'border-top-width\'> || <\'border-top-style\'> || <\'color\'>","media":"visual","inherited":false,"animationType":["border-inline-start-color","border-inline-start-style","border-inline-start-width"],"percentages":"no","groups":["CSS Logical Properties"],"initial":["border-width","border-style","color"],"appliesto":"allElements","computed":["border-width","border-style","border-inline-start-color"],"order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-inline-start"},"border-inline-start-color":{"syntax":"<\'border-top-color\'>","media":"visual","inherited":false,"animationType":"color","percentages":"no","groups":["CSS Logical Properties"],"initial":"currentcolor","appliesto":"allElements","computed":"computedColor","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-inline-start-color"},"border-inline-start-style":{"syntax":"<\'border-top-style\'>","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Logical Properties"],"initial":"none","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-inline-start-style"},"border-inline-start-width":{"syntax":"<\'border-top-width\'>","media":"visual","inherited":false,"animationType":"length","percentages":"logicalWidthOfContainingBlock","groups":["CSS Logical Properties"],"initial":"medium","appliesto":"allElements","computed":"absoluteLengthZeroIfBorderStyleNoneOrHidden","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-inline-start-width"},"border-left":{"syntax":"<line-width> || <line-style> || <color>","media":"visual","inherited":false,"animationType":["border-left-color","border-left-style","border-left-width"],"percentages":"no","groups":["CSS Backgrounds and Borders"],"initial":["border-left-width","border-left-style","border-left-color"],"appliesto":"allElements","computed":["border-left-width","border-left-style","border-left-color"],"order":"orderOfAppearance","alsoAppliesTo":["::first-letter"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-left"},"border-left-color":{"syntax":"<color>","media":"visual","inherited":false,"animationType":"color","percentages":"no","groups":["CSS Backgrounds and Borders"],"initial":"currentcolor","appliesto":"allElements","computed":"computedColor","order":"uniqueOrder","alsoAppliesTo":["::first-letter"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-left-color"},"border-left-style":{"syntax":"<line-style>","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Backgrounds and Borders"],"initial":"none","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","alsoAppliesTo":["::first-letter"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-left-style"},"border-left-width":{"syntax":"<line-width>","media":"visual","inherited":false,"animationType":"length","percentages":"no","groups":["CSS Backgrounds and Borders"],"initial":"medium","appliesto":"allElements","computed":"absoluteLengthOr0IfBorderLeftStyleNoneOrHidden","order":"uniqueOrder","alsoAppliesTo":["::first-letter"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-left-width"},"border-radius":{"syntax":"<length-percentage>{1,4} [ / <length-percentage>{1,4} ]?","media":"visual","inherited":false,"animationType":["border-top-left-radius","border-top-right-radius","border-bottom-right-radius","border-bottom-left-radius"],"percentages":"referToDimensionOfBorderBox","groups":["CSS Backgrounds and Borders"],"initial":["border-top-left-radius","border-top-right-radius","border-bottom-right-radius","border-bottom-left-radius"],"appliesto":"allElementsUAsNotRequiredWhenCollapse","computed":["border-bottom-left-radius","border-bottom-right-radius","border-top-left-radius","border-top-right-radius"],"order":"uniqueOrder","alsoAppliesTo":["::first-letter"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-radius"},"border-right":{"syntax":"<line-width> || <line-style> || <color>","media":"visual","inherited":false,"animationType":["border-right-color","border-right-style","border-right-width"],"percentages":"no","groups":["CSS Backgrounds and Borders"],"initial":["border-right-width","border-right-style","border-right-color"],"appliesto":"allElements","computed":["border-right-width","border-right-style","border-right-color"],"order":"orderOfAppearance","alsoAppliesTo":["::first-letter"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-right"},"border-right-color":{"syntax":"<color>","media":"visual","inherited":false,"animationType":"color","percentages":"no","groups":["CSS Backgrounds and Borders"],"initial":"currentcolor","appliesto":"allElements","computed":"computedColor","order":"uniqueOrder","alsoAppliesTo":["::first-letter"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-right-color"},"border-right-style":{"syntax":"<line-style>","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Backgrounds and Borders"],"initial":"none","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","alsoAppliesTo":["::first-letter"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-right-style"},"border-right-width":{"syntax":"<line-width>","media":"visual","inherited":false,"animationType":"length","percentages":"no","groups":["CSS Backgrounds and Borders"],"initial":"medium","appliesto":"allElements","computed":"absoluteLengthOr0IfBorderRightStyleNoneOrHidden","order":"uniqueOrder","alsoAppliesTo":["::first-letter"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-right-width"},"border-spacing":{"syntax":"<length> <length>?","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Table"],"initial":"0","appliesto":"tableElements","computed":"twoAbsoluteLengths","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-spacing"},"border-start-end-radius":{"syntax":"<length-percentage>{1,2}","media":"visual","inherited":false,"animationType":"lpc","percentages":"referToDimensionOfBorderBox","groups":["CSS Logical Properties"],"initial":"0","appliesto":"allElementsUAsNotRequiredWhenCollapse","computed":"twoAbsoluteLengthOrPercentages","order":"uniqueOrder","alsoAppliesTo":["::first-letter"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-start-end-radius"},"border-start-start-radius":{"syntax":"<length-percentage>{1,2}","media":"visual","inherited":false,"animationType":"lpc","percentages":"referToDimensionOfBorderBox","groups":["CSS Logical Properties"],"initial":"0","appliesto":"allElementsUAsNotRequiredWhenCollapse","computed":"twoAbsoluteLengthOrPercentages","order":"uniqueOrder","alsoAppliesTo":["::first-letter"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-start-start-radius"},"border-style":{"syntax":"<line-style>{1,4}","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Backgrounds and Borders"],"initial":["border-top-style","border-right-style","border-bottom-style","border-left-style"],"appliesto":"allElements","computed":["border-bottom-style","border-left-style","border-right-style","border-top-style"],"order":"uniqueOrder","alsoAppliesTo":["::first-letter"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-style"},"border-top":{"syntax":"<line-width> || <line-style> || <color>","media":"visual","inherited":false,"animationType":["border-top-color","border-top-style","border-top-width"],"percentages":"no","groups":["CSS Backgrounds and Borders"],"initial":["border-top-width","border-top-style","border-top-color"],"appliesto":"allElements","computed":["border-top-width","border-top-style","border-top-color"],"order":"orderOfAppearance","alsoAppliesTo":["::first-letter"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-top"},"border-top-color":{"syntax":"<color>","media":"visual","inherited":false,"animationType":"color","percentages":"no","groups":["CSS Backgrounds and Borders"],"initial":"currentcolor","appliesto":"allElements","computed":"computedColor","order":"uniqueOrder","alsoAppliesTo":["::first-letter"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-top-color"},"border-top-left-radius":{"syntax":"<length-percentage>{1,2}","media":"visual","inherited":false,"animationType":"lpc","percentages":"referToDimensionOfBorderBox","groups":["CSS Backgrounds and Borders"],"initial":"0","appliesto":"allElementsUAsNotRequiredWhenCollapse","computed":"twoAbsoluteLengthOrPercentages","order":"uniqueOrder","alsoAppliesTo":["::first-letter"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-top-left-radius"},"border-top-right-radius":{"syntax":"<length-percentage>{1,2}","media":"visual","inherited":false,"animationType":"lpc","percentages":"referToDimensionOfBorderBox","groups":["CSS Backgrounds and Borders"],"initial":"0","appliesto":"allElementsUAsNotRequiredWhenCollapse","computed":"twoAbsoluteLengthOrPercentages","order":"uniqueOrder","alsoAppliesTo":["::first-letter"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-top-right-radius"},"border-top-style":{"syntax":"<line-style>","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Backgrounds and Borders"],"initial":"none","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","alsoAppliesTo":["::first-letter"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-top-style"},"border-top-width":{"syntax":"<line-width>","media":"visual","inherited":false,"animationType":"length","percentages":"no","groups":["CSS Backgrounds and Borders"],"initial":"medium","appliesto":"allElements","computed":"absoluteLengthOr0IfBorderTopStyleNoneOrHidden","order":"uniqueOrder","alsoAppliesTo":["::first-letter"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-top-width"},"border-width":{"syntax":"<line-width>{1,4}","media":"visual","inherited":false,"animationType":["border-bottom-width","border-left-width","border-right-width","border-top-width"],"percentages":"no","groups":["CSS Backgrounds and Borders"],"initial":["border-top-width","border-right-width","border-bottom-width","border-left-width"],"appliesto":"allElements","computed":["border-bottom-width","border-left-width","border-right-width","border-top-width"],"order":"uniqueOrder","alsoAppliesTo":["::first-letter"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/border-width"},"bottom":{"syntax":"<length> | <percentage> | auto","media":"visual","inherited":false,"animationType":"lpc","percentages":"referToContainingBlockHeight","groups":["CSS Positioning"],"initial":"auto","appliesto":"positionedElements","computed":"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/bottom"},"box-align":{"syntax":"start | center | end | baseline | stretch","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["Mozilla Extensions","WebKit Extensions"],"initial":"stretch","appliesto":"elementsWithDisplayBoxOrInlineBox","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/box-align"},"box-decoration-break":{"syntax":"slice | clone","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Fragmentation"],"initial":"slice","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/box-decoration-break"},"box-direction":{"syntax":"normal | reverse | inherit","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["Mozilla Extensions","WebKit Extensions"],"initial":"normal","appliesto":"elementsWithDisplayBoxOrInlineBox","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/box-direction"},"box-flex":{"syntax":"<number>","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["Mozilla Extensions","WebKit Extensions"],"initial":"0","appliesto":"directChildrenOfElementsWithDisplayMozBoxMozInlineBox","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/box-flex"},"box-flex-group":{"syntax":"<integer>","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["Mozilla Extensions","WebKit Extensions"],"initial":"1","appliesto":"inFlowChildrenOfBoxElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/box-flex-group"},"box-lines":{"syntax":"single | multiple","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["Mozilla Extensions","WebKit Extensions"],"initial":"single","appliesto":"boxElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/box-lines"},"box-ordinal-group":{"syntax":"<integer>","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["Mozilla Extensions","WebKit Extensions"],"initial":"1","appliesto":"childrenOfBoxElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/box-ordinal-group"},"box-orient":{"syntax":"horizontal | vertical | inline-axis | block-axis | inherit","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["Mozilla Extensions","WebKit Extensions"],"initial":"inlineAxisHorizontalInXUL","appliesto":"elementsWithDisplayBoxOrInlineBox","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/box-orient"},"box-pack":{"syntax":"start | center | end | justify","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["Mozilla Extensions","WebKit Extensions"],"initial":"start","appliesto":"elementsWithDisplayMozBoxMozInlineBox","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/box-pack"},"box-shadow":{"syntax":"none | <shadow>#","media":"visual","inherited":false,"animationType":"shadowList","percentages":"no","groups":["CSS Backgrounds and Borders"],"initial":"none","appliesto":"allElements","computed":"absoluteLengthsSpecifiedColorAsSpecified","order":"uniqueOrder","alsoAppliesTo":["::first-letter"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/box-shadow"},"box-sizing":{"syntax":"content-box | border-box","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Basic User Interface"],"initial":"content-box","appliesto":"allElementsAcceptingWidthOrHeight","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/box-sizing"},"break-after":{"syntax":"auto | avoid | always | all | avoid-page | page | left | right | recto | verso | avoid-column | column | avoid-region | region","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Fragmentation"],"initial":"auto","appliesto":"blockLevelElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/break-after"},"break-before":{"syntax":"auto | avoid | always | all | avoid-page | page | left | right | recto | verso | avoid-column | column | avoid-region | region","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Fragmentation"],"initial":"auto","appliesto":"blockLevelElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/break-before"},"break-inside":{"syntax":"auto | avoid | avoid-page | avoid-column | avoid-region","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Fragmentation"],"initial":"auto","appliesto":"blockLevelElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/break-inside"},"caption-side":{"syntax":"top | bottom | block-start | block-end | inline-start | inline-end","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Table"],"initial":"top","appliesto":"tableCaptionElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/caption-side"},"caret-color":{"syntax":"auto | <color>","media":"interactive","inherited":true,"animationType":"color","percentages":"no","groups":["CSS Basic User Interface"],"initial":"auto","appliesto":"allElements","computed":"asAutoOrColor","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/caret-color"},"clear":{"syntax":"none | left | right | both | inline-start | inline-end","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Positioning"],"initial":"none","appliesto":"blockLevelElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/clear"},"clip":{"syntax":"<shape> | auto","media":"visual","inherited":false,"animationType":"rectangle","percentages":"no","groups":["CSS Masking"],"initial":"auto","appliesto":"absolutelyPositionedElements","computed":"autoOrRectangle","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/clip"},"clip-path":{"syntax":"<clip-source> | [ <basic-shape> || <geometry-box> ] | none","media":"visual","inherited":false,"animationType":"basicShapeOtherwiseNo","percentages":"referToReferenceBoxWhenSpecifiedOtherwiseBorderBox","groups":["CSS Masking"],"initial":"none","appliesto":"allElementsSVGContainerElements","computed":"asSpecifiedURLsAbsolute","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/clip-path"},"color":{"syntax":"<color>","media":"visual","inherited":true,"animationType":"color","percentages":"no","groups":["CSS Color"],"initial":"variesFromBrowserToBrowser","appliesto":"allElements","computed":"translucentValuesRGBAOtherwiseRGB","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/color"},"color-adjust":{"syntax":"economy | exact","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Color"],"initial":"economy","appliesto":"allElements","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/color-adjust"},"column-count":{"syntax":"<integer> | auto","media":"visual","inherited":false,"animationType":"integer","percentages":"no","groups":["CSS Columns"],"initial":"auto","appliesto":"blockContainersExceptTableWrappers","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/column-count"},"column-fill":{"syntax":"auto | balance | balance-all","media":"visualInContinuousMediaNoEffectInOverflowColumns","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Columns"],"initial":"balance","appliesto":"multicolElements","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/column-fill"},"column-gap":{"syntax":"normal | <length-percentage>","media":"visual","inherited":false,"animationType":"lpc","percentages":"referToDimensionOfContentArea","groups":["CSS Box Alignment"],"initial":"normal","appliesto":"multiColumnElementsFlexContainersGridContainers","computed":"asSpecifiedWithLengthsAbsoluteAndNormalComputingToZeroExceptMultiColumn","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/column-gap"},"column-rule":{"syntax":"<\'column-rule-width\'> || <\'column-rule-style\'> || <\'column-rule-color\'>","media":"visual","inherited":false,"animationType":["column-rule-color","column-rule-style","column-rule-width"],"percentages":"no","groups":["CSS Columns"],"initial":["column-rule-width","column-rule-style","column-rule-color"],"appliesto":"multicolElements","computed":["column-rule-color","column-rule-style","column-rule-width"],"order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/column-rule"},"column-rule-color":{"syntax":"<color>","media":"visual","inherited":false,"animationType":"color","percentages":"no","groups":["CSS Columns"],"initial":"currentcolor","appliesto":"multicolElements","computed":"computedColor","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/column-rule-color"},"column-rule-style":{"syntax":"<\'border-style\'>","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Columns"],"initial":"none","appliesto":"multicolElements","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/column-rule-style"},"column-rule-width":{"syntax":"<\'border-width\'>","media":"visual","inherited":false,"animationType":"length","percentages":"no","groups":["CSS Columns"],"initial":"medium","appliesto":"multicolElements","computed":"absoluteLength0IfColumnRuleStyleNoneOrHidden","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/column-rule-width"},"column-span":{"syntax":"none | all","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Columns"],"initial":"none","appliesto":"inFlowBlockLevelElements","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/column-span"},"column-width":{"syntax":"<length> | auto","media":"visual","inherited":false,"animationType":"length","percentages":"no","groups":["CSS Columns"],"initial":"auto","appliesto":"blockContainersExceptTableWrappers","computed":"absoluteLengthZeroOrLarger","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/column-width"},"columns":{"syntax":"<\'column-width\'> || <\'column-count\'>","media":"visual","inherited":false,"animationType":["column-width","column-count"],"percentages":"no","groups":["CSS Columns"],"initial":["column-width","column-count"],"appliesto":"blockContainersExceptTableWrappers","computed":["column-width","column-count"],"order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/columns"},"contain":{"syntax":"none | strict | content | [ size || layout || style || paint ]","media":"all","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Containment"],"initial":"none","appliesto":"allElements","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/contain"},"content":{"syntax":"normal | none | [ <content-replacement> | <content-list> ] [/ <string> ]?","media":"all","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Generated Content"],"initial":"normal","appliesto":"beforeAndAfterPseudos","computed":"normalOnElementsForPseudosNoneAbsoluteURIStringOrAsSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/content"},"counter-increment":{"syntax":"[ <custom-ident> <integer>? ]+ | none","media":"all","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Counter Styles"],"initial":"none","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/counter-increment"},"counter-reset":{"syntax":"[ <custom-ident> <integer>? ]+ | none","media":"all","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Counter Styles"],"initial":"none","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/counter-reset"},"counter-set":{"syntax":"[ <custom-ident> <integer>? ]+ | none","media":"all","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Counter Styles"],"initial":"none","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/counter-set"},"cursor":{"syntax":"[ [ <url> [ <x> <y> ]? , ]* [ auto | default | none | context-menu | help | pointer | progress | wait | cell | crosshair | text | vertical-text | alias | copy | move | no-drop | not-allowed | e-resize | n-resize | ne-resize | nw-resize | s-resize | se-resize | sw-resize | w-resize | ew-resize | ns-resize | nesw-resize | nwse-resize | col-resize | row-resize | all-scroll | zoom-in | zoom-out | grab | grabbing ] ]","media":["visual","interactive"],"inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Basic User Interface"],"initial":"auto","appliesto":"allElements","computed":"asSpecifiedURLsAbsolute","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/cursor"},"direction":{"syntax":"ltr | rtl","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Writing Modes"],"initial":"ltr","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/direction"},"display":{"syntax":"[ <display-outside> || <display-inside> ] | <display-listitem> | <display-internal> | <display-box> | <display-legacy>","media":"all","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Display"],"initial":"inline","appliesto":"allElements","computed":"asSpecifiedExceptPositionedFloatingAndRootElementsKeywordMaybeDifferent","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/display"},"empty-cells":{"syntax":"show | hide","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Table"],"initial":"show","appliesto":"tableCellElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/empty-cells"},"filter":{"syntax":"none | <filter-function-list>","media":"visual","inherited":false,"animationType":"filterList","percentages":"no","groups":["Filter Effects"],"initial":"none","appliesto":"allElementsSVGContainerElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/filter"},"flex":{"syntax":"none | [ <\'flex-grow\'> <\'flex-shrink\'>? || <\'flex-basis\'> ]","media":"visual","inherited":false,"animationType":["flex-grow","flex-shrink","flex-basis"],"percentages":"no","groups":["CSS Flexible Box Layout"],"initial":["flex-grow","flex-shrink","flex-basis"],"appliesto":"flexItemsAndInFlowPseudos","computed":["flex-grow","flex-shrink","flex-basis"],"order":"orderOfAppearance","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/flex"},"flex-basis":{"syntax":"content | <\'width\'>","media":"visual","inherited":false,"animationType":"lpc","percentages":"referToFlexContainersInnerMainSize","groups":["CSS Flexible Box Layout"],"initial":"auto","appliesto":"flexItemsAndInFlowPseudos","computed":"asSpecifiedRelativeToAbsoluteLengths","order":"lengthOrPercentageBeforeKeywordIfBothPresent","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/flex-basis"},"flex-direction":{"syntax":"row | row-reverse | column | column-reverse","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Flexible Box Layout"],"initial":"row","appliesto":"flexContainers","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/flex-direction"},"flex-flow":{"syntax":"<\'flex-direction\'> || <\'flex-wrap\'>","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Flexible Box Layout"],"initial":["flex-direction","flex-wrap"],"appliesto":"flexContainers","computed":["flex-direction","flex-wrap"],"order":"orderOfAppearance","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/flex-flow"},"flex-grow":{"syntax":"<number>","media":"visual","inherited":false,"animationType":"number","percentages":"no","groups":["CSS Flexible Box Layout"],"initial":"0","appliesto":"flexItemsAndInFlowPseudos","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/flex-grow"},"flex-shrink":{"syntax":"<number>","media":"visual","inherited":false,"animationType":"number","percentages":"no","groups":["CSS Flexible Box Layout"],"initial":"1","appliesto":"flexItemsAndInFlowPseudos","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/flex-shrink"},"flex-wrap":{"syntax":"nowrap | wrap | wrap-reverse","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Flexible Box Layout"],"initial":"nowrap","appliesto":"flexContainers","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/flex-wrap"},"float":{"syntax":"left | right | none | inline-start | inline-end","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Positioning"],"initial":"none","appliesto":"allElementsNoEffectIfDisplayNone","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/float"},"font":{"syntax":"[ [ <\'font-style\'> || <font-variant-css21> || <\'font-weight\'> || <\'font-stretch\'> ]? <\'font-size\'> [ / <\'line-height\'> ]? <\'font-family\'> ] | caption | icon | menu | message-box | small-caption | status-bar","media":"visual","inherited":true,"animationType":["font-style","font-variant","font-weight","font-stretch","font-size","line-height","font-family"],"percentages":["font-size","line-height"],"groups":["CSS Fonts"],"initial":["font-style","font-variant","font-weight","font-stretch","font-size","line-height","font-family"],"appliesto":"allElements","computed":["font-style","font-variant","font-weight","font-stretch","font-size","line-height","font-family"],"order":"orderOfAppearance","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/font"},"font-family":{"syntax":"[ <family-name> | <generic-family> ]#","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Fonts"],"initial":"dependsOnUserAgent","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/font-family"},"font-feature-settings":{"syntax":"normal | <feature-tag-value>#","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Fonts"],"initial":"normal","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/font-feature-settings"},"font-kerning":{"syntax":"auto | normal | none","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Fonts"],"initial":"auto","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/font-kerning"},"font-language-override":{"syntax":"normal | <string>","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Fonts"],"initial":"normal","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/font-language-override"},"font-optical-sizing":{"syntax":"auto | none","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Fonts"],"initial":"auto","appliesto":"allElements","computed":"asSpecified","order":"perGrammar","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/font-optical-sizing"},"font-variation-settings":{"syntax":"normal | [ <string> <number> ]#","media":"visual","inherited":true,"animationType":"transform","percentages":"no","groups":["CSS Fonts"],"initial":"normal","appliesto":"allElements","computed":"asSpecified","order":"perGrammar","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/font-variation-settings"},"font-size":{"syntax":"<absolute-size> | <relative-size> | <length-percentage>","media":"visual","inherited":true,"animationType":"length","percentages":"referToParentElementsFontSize","groups":["CSS Fonts"],"initial":"medium","appliesto":"allElements","computed":"asSpecifiedRelativeToAbsoluteLengths","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/font-size"},"font-size-adjust":{"syntax":"none | <number>","media":"visual","inherited":true,"animationType":"number","percentages":"no","groups":["CSS Fonts"],"initial":"none","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/font-size-adjust"},"font-smooth":{"syntax":"auto | never | always | <absolute-size> | <length>","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Fonts"],"initial":"auto","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/font-smooth"},"font-stretch":{"syntax":"<font-stretch-absolute>","media":"visual","inherited":true,"animationType":"fontStretch","percentages":"no","groups":["CSS Fonts"],"initial":"normal","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/font-stretch"},"font-style":{"syntax":"normal | italic | oblique <angle>?","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Fonts"],"initial":"normal","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/font-style"},"font-synthesis":{"syntax":"none | [ weight || style ]","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Fonts"],"initial":"weight style","appliesto":"allElements","computed":"asSpecified","order":"orderOfAppearance","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/font-synthesis"},"font-variant":{"syntax":"normal | none | [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> || stylistic( <feature-value-name> ) || historical-forms || styleset( <feature-value-name># ) || character-variant( <feature-value-name># ) || swash( <feature-value-name> ) || ornaments( <feature-value-name> ) || annotation( <feature-value-name> ) || [ small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps ] || <numeric-figure-values> || <numeric-spacing-values> || <numeric-fraction-values> || ordinal || slashed-zero || <east-asian-variant-values> || <east-asian-width-values> || ruby ]","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Fonts"],"initial":"normal","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/font-variant"},"font-variant-alternates":{"syntax":"normal | [ stylistic( <feature-value-name> ) || historical-forms || styleset( <feature-value-name># ) || character-variant( <feature-value-name># ) || swash( <feature-value-name> ) || ornaments( <feature-value-name> ) || annotation( <feature-value-name> ) ]","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Fonts"],"initial":"normal","appliesto":"allElements","computed":"asSpecified","order":"orderOfAppearance","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/font-variant-alternates"},"font-variant-caps":{"syntax":"normal | small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Fonts"],"initial":"normal","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/font-variant-caps"},"font-variant-east-asian":{"syntax":"normal | [ <east-asian-variant-values> || <east-asian-width-values> || ruby ]","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Fonts"],"initial":"normal","appliesto":"allElements","computed":"asSpecified","order":"orderOfAppearance","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/font-variant-east-asian"},"font-variant-ligatures":{"syntax":"normal | none | [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> ]","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Fonts"],"initial":"normal","appliesto":"allElements","computed":"asSpecified","order":"orderOfAppearance","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/font-variant-ligatures"},"font-variant-numeric":{"syntax":"normal | [ <numeric-figure-values> || <numeric-spacing-values> || <numeric-fraction-values> || ordinal || slashed-zero ]","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Fonts"],"initial":"normal","appliesto":"allElements","computed":"asSpecified","order":"orderOfAppearance","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/font-variant-numeric"},"font-variant-position":{"syntax":"normal | sub | super","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Fonts"],"initial":"normal","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/font-variant-position"},"font-weight":{"syntax":"<font-weight-absolute> | bolder | lighter","media":"visual","inherited":true,"animationType":"fontWeight","percentages":"no","groups":["CSS Fonts"],"initial":"normal","appliesto":"allElements","computed":"keywordOrNumericalValueBolderLighterTransformedToRealValue","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/font-weight"},"gap":{"syntax":"<\'row-gap\'> <\'column-gap\'>?","media":"visual","inherited":false,"animationType":["row-gap","column-gap"],"percentages":"no","groups":["CSS Box Alignment"],"initial":["row-gap","column-gap"],"appliesto":"multiColumnElementsFlexContainersGridContainers","computed":["row-gap","column-gap"],"order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/gap"},"grid":{"syntax":"<\'grid-template\'> | <\'grid-template-rows\'> / [ auto-flow && dense? ] <\'grid-auto-columns\'>? | [ auto-flow && dense? ] <\'grid-auto-rows\'>? / <\'grid-template-columns\'>","media":"visual","inherited":false,"animationType":"discrete","percentages":["grid-template-rows","grid-template-columns","grid-auto-rows","grid-auto-columns"],"groups":["CSS Grid Layout"],"initial":["grid-template-rows","grid-template-columns","grid-template-areas","grid-auto-rows","grid-auto-columns","grid-auto-flow","grid-column-gap","grid-row-gap","column-gap","row-gap"],"appliesto":"gridContainers","computed":["grid-template-rows","grid-template-columns","grid-template-areas","grid-auto-rows","grid-auto-columns","grid-auto-flow","grid-column-gap","grid-row-gap","column-gap","row-gap"],"order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/grid"},"grid-area":{"syntax":"<grid-line> [ / <grid-line> ]{0,3}","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Grid Layout"],"initial":["grid-row-start","grid-column-start","grid-row-end","grid-column-end"],"appliesto":"gridItemsAndBoxesWithinGridContainer","computed":["grid-row-start","grid-column-start","grid-row-end","grid-column-end"],"order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/grid-area"},"grid-auto-columns":{"syntax":"<track-size>+","media":"visual","inherited":false,"animationType":"discrete","percentages":"referToDimensionOfContentArea","groups":["CSS Grid Layout"],"initial":"auto","appliesto":"gridContainers","computed":"percentageAsSpecifiedOrAbsoluteLength","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/grid-auto-columns"},"grid-auto-flow":{"syntax":"[ row | column ] || dense","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Grid Layout"],"initial":"row","appliesto":"gridContainers","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow"},"grid-auto-rows":{"syntax":"<track-size>+","media":"visual","inherited":false,"animationType":"discrete","percentages":"referToDimensionOfContentArea","groups":["CSS Grid Layout"],"initial":"auto","appliesto":"gridContainers","computed":"percentageAsSpecifiedOrAbsoluteLength","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/grid-auto-rows"},"grid-column":{"syntax":"<grid-line> [ / <grid-line> ]?","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Grid Layout"],"initial":["grid-column-start","grid-column-end"],"appliesto":"gridItemsAndBoxesWithinGridContainer","computed":["grid-column-start","grid-column-end"],"order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/grid-column"},"grid-column-end":{"syntax":"<grid-line>","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Grid Layout"],"initial":"auto","appliesto":"gridItemsAndBoxesWithinGridContainer","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/grid-column-end"},"grid-column-gap":{"syntax":"<length-percentage>","media":"visual","inherited":false,"animationType":"length","percentages":"referToDimensionOfContentArea","groups":["CSS Grid Layout"],"initial":"0","appliesto":"gridContainers","computed":"percentageAsSpecifiedOrAbsoluteLength","order":"uniqueOrder","status":"obsolete","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/column-gap"},"grid-column-start":{"syntax":"<grid-line>","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Grid Layout"],"initial":"auto","appliesto":"gridItemsAndBoxesWithinGridContainer","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/grid-column-start"},"grid-gap":{"syntax":"<\'grid-row-gap\'> <\'grid-column-gap\'>?","media":"visual","inherited":false,"animationType":["grid-row-gap","grid-column-gap"],"percentages":"no","groups":["CSS Grid Layout"],"initial":["grid-row-gap","grid-column-gap"],"appliesto":"gridContainers","computed":["grid-row-gap","grid-column-gap"],"order":"uniqueOrder","status":"obsolete","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/gap"},"grid-row":{"syntax":"<grid-line> [ / <grid-line> ]?","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Grid Layout"],"initial":["grid-row-start","grid-row-end"],"appliesto":"gridItemsAndBoxesWithinGridContainer","computed":["grid-row-start","grid-row-end"],"order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/grid-row"},"grid-row-end":{"syntax":"<grid-line>","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Grid Layout"],"initial":"auto","appliesto":"gridItemsAndBoxesWithinGridContainer","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/grid-row-end"},"grid-row-gap":{"syntax":"<length-percentage>","media":"visual","inherited":false,"animationType":"length","percentages":"referToDimensionOfContentArea","groups":["CSS Grid Layout"],"initial":"0","appliesto":"gridContainers","computed":"percentageAsSpecifiedOrAbsoluteLength","order":"uniqueOrder","status":"obsolete","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/row-gap"},"grid-row-start":{"syntax":"<grid-line>","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Grid Layout"],"initial":"auto","appliesto":"gridItemsAndBoxesWithinGridContainer","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/grid-row-start"},"grid-template":{"syntax":"none | [ <\'grid-template-rows\'> / <\'grid-template-columns\'> ] | [ <line-names>? <string> <track-size>? <line-names>? ]+ [ / <explicit-track-list> ]?","media":"visual","inherited":false,"animationType":"discrete","percentages":["grid-template-columns","grid-template-rows"],"groups":["CSS Grid Layout"],"initial":["grid-template-columns","grid-template-rows","grid-template-areas"],"appliesto":"gridContainers","computed":["grid-template-columns","grid-template-rows","grid-template-areas"],"order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/grid-template"},"grid-template-areas":{"syntax":"none | <string>+","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Grid Layout"],"initial":"none","appliesto":"gridContainers","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/grid-template-areas"},"grid-template-columns":{"syntax":"none | <track-list> | <auto-track-list> | subgrid <line-name-list>?","media":"visual","inherited":false,"animationType":"simpleListOfLpcDifferenceLpc","percentages":"referToDimensionOfContentArea","groups":["CSS Grid Layout"],"initial":"none","appliesto":"gridContainers","computed":"asSpecifiedRelativeToAbsoluteLengths","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/grid-template-columns"},"grid-template-rows":{"syntax":"none | <track-list> | <auto-track-list> | subgrid <line-name-list>?","media":"visual","inherited":false,"animationType":"simpleListOfLpcDifferenceLpc","percentages":"referToDimensionOfContentArea","groups":["CSS Grid Layout"],"initial":"none","appliesto":"gridContainers","computed":"asSpecifiedRelativeToAbsoluteLengths","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/grid-template-rows"},"hanging-punctuation":{"syntax":"none | [ first || [ force-end | allow-end ] || last ]","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Text"],"initial":"none","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/hanging-punctuation"},"height":{"syntax":"auto | <length> | <percentage> | min-content | max-content | fit-content(<length-percentage>)","media":"visual","inherited":false,"animationType":"lpc","percentages":"regardingHeightOfGeneratedBoxContainingBlockPercentagesRelativeToContainingBlock","groups":["CSS Box Model"],"initial":"auto","appliesto":"allElementsButNonReplacedAndTableColumns","computed":"percentageAutoOrAbsoluteLength","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/height"},"hyphens":{"syntax":"none | manual | auto","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Text"],"initial":"manual","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/hyphens"},"image-orientation":{"syntax":"from-image | <angle> | [ <angle>? flip ]","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Images"],"initial":"from-image","appliesto":"allElements","computed":"angleRoundedToNextQuarter","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/image-orientation"},"image-rendering":{"syntax":"auto | crisp-edges | pixelated","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Images"],"initial":"auto","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/image-rendering"},"image-resolution":{"syntax":"[ from-image || <resolution> ] && snap?","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Images"],"initial":"1dppx","appliesto":"allElements","computed":"asSpecifiedWithExceptionOfResolution","order":"uniqueOrder","status":"experimental"},"ime-mode":{"syntax":"auto | normal | active | inactive | disabled","media":"interactive","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Basic User Interface"],"initial":"auto","appliesto":"textFields","computed":"asSpecified","order":"uniqueOrder","status":"obsolete","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/ime-mode"},"initial-letter":{"syntax":"normal | [ <number> <integer>? ]","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Inline"],"initial":"normal","appliesto":"firstLetterPseudoElementsAndInlineLevelFirstChildren","computed":"asSpecified","order":"uniqueOrder","status":"experimental","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/initial-letter"},"initial-letter-align":{"syntax":"[ auto | alphabetic | hanging | ideographic ]","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Inline"],"initial":"auto","appliesto":"firstLetterPseudoElementsAndInlineLevelFirstChildren","computed":"asSpecified","order":"uniqueOrder","status":"experimental","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/initial-letter-align"},"inline-size":{"syntax":"<\'width\'>","media":"visual","inherited":false,"animationType":"lpc","percentages":"inlineSizeOfContainingBlock","groups":["CSS Logical Properties"],"initial":"auto","appliesto":"sameAsWidthAndHeight","computed":"sameAsWidthAndHeight","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/inline-size"},"inset":{"syntax":"<\'top\'>{1,4}","media":"visual","inherited":false,"animationType":"lpc","percentages":"logicalHeightOfContainingBlock","groups":["CSS Logical Properties"],"initial":"auto","appliesto":"positionedElements","computed":"sameAsBoxOffsets","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/inset"},"inset-block":{"syntax":"<\'top\'>{1,2}","media":"visual","inherited":false,"animationType":"lpc","percentages":"logicalHeightOfContainingBlock","groups":["CSS Logical Properties"],"initial":"auto","appliesto":"positionedElements","computed":"sameAsBoxOffsets","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/inset-block"},"inset-block-end":{"syntax":"<\'top\'>","media":"visual","inherited":false,"animationType":"lpc","percentages":"logicalHeightOfContainingBlock","groups":["CSS Logical Properties"],"initial":"auto","appliesto":"positionedElements","computed":"sameAsBoxOffsets","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/inset-block-end"},"inset-block-start":{"syntax":"<\'top\'>","media":"visual","inherited":false,"animationType":"lpc","percentages":"logicalHeightOfContainingBlock","groups":["CSS Logical Properties"],"initial":"auto","appliesto":"positionedElements","computed":"sameAsBoxOffsets","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/inset-block-start"},"inset-inline":{"syntax":"<\'top\'>{1,2}","media":"visual","inherited":false,"animationType":"lpc","percentages":"logicalWidthOfContainingBlock","groups":["CSS Logical Properties"],"initial":"auto","appliesto":"positionedElements","computed":"sameAsBoxOffsets","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/inset-inline"},"inset-inline-end":{"syntax":"<\'top\'>","media":"visual","inherited":false,"animationType":"lpc","percentages":"logicalWidthOfContainingBlock","groups":["CSS Logical Properties"],"initial":"auto","appliesto":"positionedElements","computed":"sameAsBoxOffsets","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/inset-inline-end"},"inset-inline-start":{"syntax":"<\'top\'>","media":"visual","inherited":false,"animationType":"lpc","percentages":"logicalWidthOfContainingBlock","groups":["CSS Logical Properties"],"initial":"auto","appliesto":"positionedElements","computed":"sameAsBoxOffsets","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/inset-inline-start"},"isolation":{"syntax":"auto | isolate","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["Compositing and Blending"],"initial":"auto","appliesto":"allElementsSVGContainerGraphicsAndGraphicsReferencingElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/isolation"},"justify-content":{"syntax":"normal | <content-distribution> | <overflow-position>? [ <content-position> | left | right ]","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Box Alignment"],"initial":"normal","appliesto":"flexContainers","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/justify-content"},"justify-items":{"syntax":"normal | stretch | <baseline-position> | <overflow-position>? [ <self-position> | left | right ] | legacy | legacy && [ left | right | center ]","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Box Alignment"],"initial":"legacy","appliesto":"allElements","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/justify-items"},"justify-self":{"syntax":"auto | normal | stretch | <baseline-position> | <overflow-position>? [ <self-position> | left | right ]","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Box Alignment"],"initial":"auto","appliesto":"blockLevelBoxesAndAbsolutelyPositionedBoxesAndGridItems","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/justify-self"},"justify-tracks":{"syntax":"[ normal | <content-distribution> | <overflow-position>? [ <content-position> | left | right ] ]#","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Grid Layout"],"initial":"normal","appliesto":"gridContainersWithMasonryLayoutInTheirInlineAxis","computed":"asSpecified","order":"uniqueOrder","status":"experimental","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/justify-tracks"},"left":{"syntax":"<length> | <percentage> | auto","media":"visual","inherited":false,"animationType":"lpc","percentages":"referToWidthOfContainingBlock","groups":["CSS Positioning"],"initial":"auto","appliesto":"positionedElements","computed":"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/left"},"letter-spacing":{"syntax":"normal | <length>","media":"visual","inherited":true,"animationType":"length","percentages":"no","groups":["CSS Text"],"initial":"normal","appliesto":"allElements","computed":"optimumValueOfAbsoluteLengthOrNormal","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/letter-spacing"},"line-break":{"syntax":"auto | loose | normal | strict | anywhere","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Text"],"initial":"auto","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/line-break"},"line-clamp":{"syntax":"none | <integer>","media":"visual","inherited":false,"animationType":"integer","percentages":"no","groups":["CSS Overflow"],"initial":"none","appliesto":"blockContainersExceptMultiColumnContainers","computed":"asSpecified","order":"perGrammar","status":"experimental"},"line-height":{"syntax":"normal | <number> | <length> | <percentage>","media":"visual","inherited":true,"animationType":"numberOrLength","percentages":"referToElementFontSize","groups":["CSS Fonts"],"initial":"normal","appliesto":"allElements","computed":"absoluteLengthOrAsSpecified","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/line-height"},"line-height-step":{"syntax":"<length>","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Fonts"],"initial":"0","appliesto":"blockContainers","computed":"absoluteLength","order":"perGrammar","status":"experimental","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/line-height-step"},"list-style":{"syntax":"<\'list-style-type\'> || <\'list-style-position\'> || <\'list-style-image\'>","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Lists and Counters"],"initial":["list-style-type","list-style-position","list-style-image"],"appliesto":"listItems","computed":["list-style-image","list-style-position","list-style-type"],"order":"orderOfAppearance","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/list-style"},"list-style-image":{"syntax":"<url> | none","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Lists and Counters"],"initial":"none","appliesto":"listItems","computed":"noneOrImageWithAbsoluteURI","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/list-style-image"},"list-style-position":{"syntax":"inside | outside","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Lists and Counters"],"initial":"outside","appliesto":"listItems","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/list-style-position"},"list-style-type":{"syntax":"<counter-style> | <string> | none","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Lists and Counters"],"initial":"disc","appliesto":"listItems","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/list-style-type"},"margin":{"syntax":"[ <length> | <percentage> | auto ]{1,4}","media":"visual","inherited":false,"animationType":"length","percentages":"referToWidthOfContainingBlock","groups":["CSS Box Model"],"initial":["margin-bottom","margin-left","margin-right","margin-top"],"appliesto":"allElementsExceptTableDisplayTypes","computed":["margin-bottom","margin-left","margin-right","margin-top"],"order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/margin"},"margin-block":{"syntax":"<\'margin-left\'>{1,2}","media":"visual","inherited":false,"animationType":"discrete","percentages":"dependsOnLayoutModel","groups":["CSS Logical Properties"],"initial":"0","appliesto":"sameAsMargin","computed":"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/margin-block"},"margin-block-end":{"syntax":"<\'margin-left\'>","media":"visual","inherited":false,"animationType":"length","percentages":"dependsOnLayoutModel","groups":["CSS Logical Properties"],"initial":"0","appliesto":"sameAsMargin","computed":"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/margin-block-end"},"margin-block-start":{"syntax":"<\'margin-left\'>","media":"visual","inherited":false,"animationType":"length","percentages":"dependsOnLayoutModel","groups":["CSS Logical Properties"],"initial":"0","appliesto":"sameAsMargin","computed":"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/margin-block-start"},"margin-bottom":{"syntax":"<length> | <percentage> | auto","media":"visual","inherited":false,"animationType":"length","percentages":"referToWidthOfContainingBlock","groups":["CSS Box Model"],"initial":"0","appliesto":"allElementsExceptTableDisplayTypes","computed":"percentageAsSpecifiedOrAbsoluteLength","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/margin-bottom"},"margin-inline":{"syntax":"<\'margin-left\'>{1,2}","media":"visual","inherited":false,"animationType":"discrete","percentages":"dependsOnLayoutModel","groups":["CSS Logical Properties"],"initial":"0","appliesto":"sameAsMargin","computed":"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/margin-inline"},"margin-inline-end":{"syntax":"<\'margin-left\'>","media":"visual","inherited":false,"animationType":"length","percentages":"dependsOnLayoutModel","groups":["CSS Logical Properties"],"initial":"0","appliesto":"sameAsMargin","computed":"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/margin-inline-end"},"margin-inline-start":{"syntax":"<\'margin-left\'>","media":"visual","inherited":false,"animationType":"length","percentages":"dependsOnLayoutModel","groups":["CSS Logical Properties"],"initial":"0","appliesto":"sameAsMargin","computed":"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/margin-inline-start"},"margin-left":{"syntax":"<length> | <percentage> | auto","media":"visual","inherited":false,"animationType":"length","percentages":"referToWidthOfContainingBlock","groups":["CSS Box Model"],"initial":"0","appliesto":"allElementsExceptTableDisplayTypes","computed":"percentageAsSpecifiedOrAbsoluteLength","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/margin-left"},"margin-right":{"syntax":"<length> | <percentage> | auto","media":"visual","inherited":false,"animationType":"length","percentages":"referToWidthOfContainingBlock","groups":["CSS Box Model"],"initial":"0","appliesto":"allElementsExceptTableDisplayTypes","computed":"percentageAsSpecifiedOrAbsoluteLength","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/margin-right"},"margin-top":{"syntax":"<length> | <percentage> | auto","media":"visual","inherited":false,"animationType":"length","percentages":"referToWidthOfContainingBlock","groups":["CSS Box Model"],"initial":"0","appliesto":"allElementsExceptTableDisplayTypes","computed":"percentageAsSpecifiedOrAbsoluteLength","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/margin-top"},"margin-trim":{"syntax":"none | in-flow | all","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Box Model"],"initial":"none","appliesto":"blockContainersAndMultiColumnContainers","computed":"asSpecified","order":"perGrammar","alsoAppliesTo":["::first-letter","::first-line"],"status":"experimental","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/margin-trim"},"mask":{"syntax":"<mask-layer>#","media":"visual","inherited":false,"animationType":["mask-image","mask-mode","mask-repeat","mask-position","mask-clip","mask-origin","mask-size","mask-composite"],"percentages":["mask-position"],"groups":["CSS Masking"],"initial":["mask-image","mask-mode","mask-repeat","mask-position","mask-clip","mask-origin","mask-size","mask-composite"],"appliesto":"allElementsSVGContainerElements","computed":["mask-image","mask-mode","mask-repeat","mask-position","mask-clip","mask-origin","mask-size","mask-composite"],"order":"perGrammar","stacking":true,"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/mask"},"mask-border":{"syntax":"<\'mask-border-source\'> || <\'mask-border-slice\'> [ / <\'mask-border-width\'>? [ / <\'mask-border-outset\'> ]? ]? || <\'mask-border-repeat\'> || <\'mask-border-mode\'>","media":"visual","inherited":false,"animationType":["mask-border-mode","mask-border-outset","mask-border-repeat","mask-border-slice","mask-border-source","mask-border-width"],"percentages":["mask-border-slice","mask-border-width"],"groups":["CSS Masking"],"initial":["mask-border-mode","mask-border-outset","mask-border-repeat","mask-border-slice","mask-border-source","mask-border-width"],"appliesto":"allElementsSVGContainerElements","computed":["mask-border-mode","mask-border-outset","mask-border-repeat","mask-border-slice","mask-border-source","mask-border-width"],"order":"perGrammar","stacking":true,"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/mask-border"},"mask-border-mode":{"syntax":"luminance | alpha","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Masking"],"initial":"alpha","appliesto":"allElementsSVGContainerElements","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/mask-border-mode"},"mask-border-outset":{"syntax":"[ <length> | <number> ]{1,4}","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Masking"],"initial":"0","appliesto":"allElementsSVGContainerElements","computed":"asSpecifiedRelativeToAbsoluteLengths","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/mask-border-outset"},"mask-border-repeat":{"syntax":"[ stretch | repeat | round | space ]{1,2}","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Masking"],"initial":"stretch","appliesto":"allElementsSVGContainerElements","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/mask-border-repeat"},"mask-border-slice":{"syntax":"<number-percentage>{1,4} fill?","media":"visual","inherited":false,"animationType":"discrete","percentages":"referToSizeOfMaskBorderImage","groups":["CSS Masking"],"initial":"0","appliesto":"allElementsSVGContainerElements","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/mask-border-slice"},"mask-border-source":{"syntax":"none | <image>","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Masking"],"initial":"none","appliesto":"allElementsSVGContainerElements","computed":"asSpecifiedURLsAbsolute","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/mask-border-source"},"mask-border-width":{"syntax":"[ <length-percentage> | <number> | auto ]{1,4}","media":"visual","inherited":false,"animationType":"discrete","percentages":"relativeToMaskBorderImageArea","groups":["CSS Masking"],"initial":"auto","appliesto":"allElementsSVGContainerElements","computed":"asSpecifiedRelativeToAbsoluteLengths","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/mask-border-width"},"mask-clip":{"syntax":"[ <geometry-box> | no-clip ]#","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Masking"],"initial":"border-box","appliesto":"allElementsSVGContainerElements","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/mask-clip"},"mask-composite":{"syntax":"<compositing-operator>#","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Masking"],"initial":"add","appliesto":"allElementsSVGContainerElements","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/mask-composite"},"mask-image":{"syntax":"<mask-reference>#","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Masking"],"initial":"none","appliesto":"allElementsSVGContainerElements","computed":"asSpecifiedURLsAbsolute","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/mask-image"},"mask-mode":{"syntax":"<masking-mode>#","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Masking"],"initial":"match-source","appliesto":"allElementsSVGContainerElements","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/mask-mode"},"mask-origin":{"syntax":"<geometry-box>#","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Masking"],"initial":"border-box","appliesto":"allElementsSVGContainerElements","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/mask-origin"},"mask-position":{"syntax":"<position>#","media":"visual","inherited":false,"animationType":"repeatableListOfSimpleListOfLpc","percentages":"referToSizeOfMaskPaintingArea","groups":["CSS Masking"],"initial":"center","appliesto":"allElementsSVGContainerElements","computed":"consistsOfTwoKeywordsForOriginAndOffsets","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/mask-position"},"mask-repeat":{"syntax":"<repeat-style>#","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Masking"],"initial":"no-repeat","appliesto":"allElementsSVGContainerElements","computed":"consistsOfTwoDimensionKeywords","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/mask-repeat"},"mask-size":{"syntax":"<bg-size>#","media":"visual","inherited":false,"animationType":"repeatableListOfSimpleListOfLpc","percentages":"no","groups":["CSS Masking"],"initial":"auto","appliesto":"allElementsSVGContainerElements","computed":"asSpecifiedRelativeToAbsoluteLengths","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/mask-size"},"mask-type":{"syntax":"luminance | alpha","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Masking"],"initial":"luminance","appliesto":"maskElements","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/mask-type"},"masonry-auto-flow":{"syntax":"[ pack | next ] || [ definite-first | ordered ]","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Grid Layout"],"initial":"pack","appliesto":"gridContainersWithMasonryLayout","computed":"asSpecified","order":"uniqueOrder","status":"experimental","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/masonry-auto-flow"},"math-style":{"syntax":"normal | compact","media":"visual","inherited":true,"animationType":"notAnimatable","percentages":"no","groups":["MathML"],"initial":"normal","appliesto":"allElements","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/math-style"},"max-block-size":{"syntax":"<\'max-width\'>","media":"visual","inherited":false,"animationType":"lpc","percentages":"blockSizeOfContainingBlock","groups":["CSS Logical Properties"],"initial":"0","appliesto":"sameAsWidthAndHeight","computed":"sameAsMaxWidthAndMaxHeight","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/max-block-size"},"max-height":{"syntax":"none | <length-percentage> | min-content | max-content | fit-content(<length-percentage>)","media":"visual","inherited":false,"animationType":"lpc","percentages":"regardingHeightOfGeneratedBoxContainingBlockPercentagesNone","groups":["CSS Box Model"],"initial":"none","appliesto":"allElementsButNonReplacedAndTableColumns","computed":"percentageAsSpecifiedAbsoluteLengthOrNone","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/max-height"},"max-inline-size":{"syntax":"<\'max-width\'>","media":"visual","inherited":false,"animationType":"lpc","percentages":"inlineSizeOfContainingBlock","groups":["CSS Logical Properties"],"initial":"0","appliesto":"sameAsWidthAndHeight","computed":"sameAsMaxWidthAndMaxHeight","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/max-inline-size"},"max-lines":{"syntax":"none | <integer>","media":"visual","inherited":false,"animationType":"integer","percentages":"no","groups":["CSS Overflow"],"initial":"none","appliesto":"blockContainersExceptMultiColumnContainers","computed":"asSpecified","order":"perGrammar","status":"experimental"},"max-width":{"syntax":"none | <length-percentage> | min-content | max-content | fit-content(<length-percentage>)","media":"visual","inherited":false,"animationType":"lpc","percentages":"referToWidthOfContainingBlock","groups":["CSS Box Model"],"initial":"none","appliesto":"allElementsButNonReplacedAndTableRows","computed":"percentageAsSpecifiedAbsoluteLengthOrNone","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/max-width"},"min-block-size":{"syntax":"<\'min-width\'>","media":"visual","inherited":false,"animationType":"lpc","percentages":"blockSizeOfContainingBlock","groups":["CSS Logical Properties"],"initial":"0","appliesto":"sameAsWidthAndHeight","computed":"sameAsMinWidthAndMinHeight","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/min-block-size"},"min-height":{"syntax":"auto | <length> | <percentage> | min-content | max-content | fit-content(<length-percentage>)","media":"visual","inherited":false,"animationType":"lpc","percentages":"regardingHeightOfGeneratedBoxContainingBlockPercentages0","groups":["CSS Box Model"],"initial":"auto","appliesto":"allElementsButNonReplacedAndTableColumns","computed":"percentageAsSpecifiedOrAbsoluteLength","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/min-height"},"min-inline-size":{"syntax":"<\'min-width\'>","media":"visual","inherited":false,"animationType":"lpc","percentages":"inlineSizeOfContainingBlock","groups":["CSS Logical Properties"],"initial":"0","appliesto":"sameAsWidthAndHeight","computed":"sameAsMinWidthAndMinHeight","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/min-inline-size"},"min-width":{"syntax":"auto | <length> | <percentage> | min-content | max-content | fit-content(<length-percentage>)","media":"visual","inherited":false,"animationType":"lpc","percentages":"referToWidthOfContainingBlock","groups":["CSS Box Model"],"initial":"auto","appliesto":"allElementsButNonReplacedAndTableRows","computed":"percentageAsSpecifiedOrAbsoluteLength","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/min-width"},"mix-blend-mode":{"syntax":"<blend-mode>","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["Compositing and Blending"],"initial":"normal","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","stacking":true,"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/mix-blend-mode"},"object-fit":{"syntax":"fill | contain | cover | none | scale-down","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Images"],"initial":"fill","appliesto":"replacedElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/object-fit"},"object-position":{"syntax":"<position>","media":"visual","inherited":true,"animationType":"repeatableListOfSimpleListOfLpc","percentages":"referToWidthAndHeightOfElement","groups":["CSS Images"],"initial":"50% 50%","appliesto":"replacedElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/object-position"},"offset":{"syntax":"[ <\'offset-position\'>? [ <\'offset-path\'> [ <\'offset-distance\'> || <\'offset-rotate\'> ]? ]? ]! [ / <\'offset-anchor\'> ]?","media":"visual","inherited":false,"animationType":["offset-position","offset-path","offset-distance","offset-anchor","offset-rotate"],"percentages":["offset-position","offset-distance","offset-anchor"],"groups":["CSS Motion Path"],"initial":["offset-position","offset-path","offset-distance","offset-anchor","offset-rotate"],"appliesto":"transformableElements","computed":["offset-position","offset-path","offset-distance","offset-anchor","offset-rotate"],"order":"perGrammar","stacking":true,"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/offset"},"offset-anchor":{"syntax":"auto | <position>","media":"visual","inherited":false,"animationType":"position","percentages":"relativeToWidthAndHeight","groups":["CSS Motion Path"],"initial":"auto","appliesto":"transformableElements","computed":"forLengthAbsoluteValueOtherwisePercentage","order":"perGrammar","status":"standard"},"offset-distance":{"syntax":"<length-percentage>","media":"visual","inherited":false,"animationType":"lpc","percentages":"referToTotalPathLength","groups":["CSS Motion Path"],"initial":"0","appliesto":"transformableElements","computed":"forLengthAbsoluteValueOtherwisePercentage","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/offset-distance"},"offset-path":{"syntax":"none | ray( [ <angle> && <size> && contain? ] ) | <path()> | <url> | [ <basic-shape> || <geometry-box> ]","media":"visual","inherited":false,"animationType":"angleOrBasicShapeOrPath","percentages":"no","groups":["CSS Motion Path"],"initial":"none","appliesto":"transformableElements","computed":"asSpecified","order":"perGrammar","stacking":true,"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/offset-path"},"offset-position":{"syntax":"auto | <position>","media":"visual","inherited":false,"animationType":"position","percentages":"referToSizeOfContainingBlock","groups":["CSS Motion Path"],"initial":"auto","appliesto":"transformableElements","computed":"forLengthAbsoluteValueOtherwisePercentage","order":"perGrammar","status":"experimental"},"offset-rotate":{"syntax":"[ auto | reverse ] || <angle>","media":"visual","inherited":false,"animationType":"angleOrBasicShapeOrPath","percentages":"no","groups":["CSS Motion Path"],"initial":"auto","appliesto":"transformableElements","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/offset-rotate"},"opacity":{"syntax":"<alpha-value>","media":"visual","inherited":false,"animationType":"number","percentages":"no","groups":["CSS Color"],"initial":"1.0","appliesto":"allElements","computed":"specifiedValueClipped0To1","order":"uniqueOrder","alsoAppliesTo":["::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/opacity"},"order":{"syntax":"<integer>","media":"visual","inherited":false,"animationType":"integer","percentages":"no","groups":["CSS Flexible Box Layout"],"initial":"0","appliesto":"flexItemsGridItemsAbsolutelyPositionedContainerChildren","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/order"},"orphans":{"syntax":"<integer>","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Fragmentation"],"initial":"2","appliesto":"blockContainerElements","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/orphans"},"outline":{"syntax":"[ <\'outline-color\'> || <\'outline-style\'> || <\'outline-width\'> ]","media":["visual","interactive"],"inherited":false,"animationType":["outline-color","outline-width","outline-style"],"percentages":"no","groups":["CSS Basic User Interface"],"initial":["outline-color","outline-style","outline-width"],"appliesto":"allElements","computed":["outline-color","outline-width","outline-style"],"order":"orderOfAppearance","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/outline"},"outline-color":{"syntax":"<color> | invert","media":["visual","interactive"],"inherited":false,"animationType":"color","percentages":"no","groups":["CSS Basic User Interface"],"initial":"invertOrCurrentColor","appliesto":"allElements","computed":"invertForTranslucentColorRGBAOtherwiseRGB","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/outline-color"},"outline-offset":{"syntax":"<length>","media":["visual","interactive"],"inherited":false,"animationType":"length","percentages":"no","groups":["CSS Basic User Interface"],"initial":"0","appliesto":"allElements","computed":"asSpecifiedRelativeToAbsoluteLengths","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/outline-offset"},"outline-style":{"syntax":"auto | <\'border-style\'>","media":["visual","interactive"],"inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Basic User Interface"],"initial":"none","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/outline-style"},"outline-width":{"syntax":"<line-width>","media":["visual","interactive"],"inherited":false,"animationType":"length","percentages":"no","groups":["CSS Basic User Interface"],"initial":"medium","appliesto":"allElements","computed":"absoluteLength0ForNone","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/outline-width"},"overflow":{"syntax":"[ visible | hidden | clip | scroll | auto ]{1,2}","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Overflow"],"initial":"visible","appliesto":"blockContainersFlexContainersGridContainers","computed":["overflow-x","overflow-y"],"order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/overflow"},"overflow-anchor":{"syntax":"auto | none","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Scroll Anchoring"],"initial":"auto","appliesto":"allElements","computed":"asSpecified","order":"perGrammar","status":"standard"},"overflow-block":{"syntax":"visible | hidden | clip | scroll | auto","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Overflow"],"initial":"auto","appliesto":"blockContainersFlexContainersGridContainers","computed":"asSpecifiedButVisibleOrClipReplacedToAutoOrHiddenIfOtherValueDifferent","order":"perGrammar","status":"standard"},"overflow-clip-box":{"syntax":"padding-box | content-box","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["Mozilla Extensions"],"initial":"padding-box","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Mozilla/CSS/overflow-clip-box"},"overflow-inline":{"syntax":"visible | hidden | clip | scroll | auto","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Overflow"],"initial":"auto","appliesto":"blockContainersFlexContainersGridContainers","computed":"asSpecifiedButVisibleOrClipReplacedToAutoOrHiddenIfOtherValueDifferent","order":"perGrammar","status":"standard"},"overflow-wrap":{"syntax":"normal | break-word | anywhere","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Text"],"initial":"normal","appliesto":"nonReplacedInlineElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/overflow-wrap"},"overflow-x":{"syntax":"visible | hidden | clip | scroll | auto","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Overflow"],"initial":"visible","appliesto":"blockContainersFlexContainersGridContainers","computed":"asSpecifiedButVisibleOrClipReplacedToAutoOrHiddenIfOtherValueDifferent","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/overflow-x"},"overflow-y":{"syntax":"visible | hidden | clip | scroll | auto","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Overflow"],"initial":"visible","appliesto":"blockContainersFlexContainersGridContainers","computed":"asSpecifiedButVisibleOrClipReplacedToAutoOrHiddenIfOtherValueDifferent","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/overflow-y"},"overscroll-behavior":{"syntax":"[ contain | none | auto ]{1,2}","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Box Model"],"initial":"auto","appliesto":"nonReplacedBlockAndInlineBlockElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior"},"overscroll-behavior-block":{"syntax":"contain | none | auto","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Box Model"],"initial":"auto","appliesto":"nonReplacedBlockAndInlineBlockElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-block"},"overscroll-behavior-inline":{"syntax":"contain | none | auto","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Box Model"],"initial":"auto","appliesto":"nonReplacedBlockAndInlineBlockElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-inline"},"overscroll-behavior-x":{"syntax":"contain | none | auto","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Box Model"],"initial":"auto","appliesto":"nonReplacedBlockAndInlineBlockElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-x"},"overscroll-behavior-y":{"syntax":"contain | none | auto","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Box Model"],"initial":"auto","appliesto":"nonReplacedBlockAndInlineBlockElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-y"},"padding":{"syntax":"[ <length> | <percentage> ]{1,4}","media":"visual","inherited":false,"animationType":"length","percentages":"referToWidthOfContainingBlock","groups":["CSS Box Model"],"initial":["padding-bottom","padding-left","padding-right","padding-top"],"appliesto":"allElementsExceptInternalTableDisplayTypes","computed":["padding-bottom","padding-left","padding-right","padding-top"],"order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/padding"},"padding-block":{"syntax":"<\'padding-left\'>{1,2}","media":"visual","inherited":false,"animationType":"discrete","percentages":"logicalWidthOfContainingBlock","groups":["CSS Logical Properties"],"initial":"0","appliesto":"allElements","computed":"asLength","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/padding-block"},"padding-block-end":{"syntax":"<\'padding-left\'>","media":"visual","inherited":false,"animationType":"length","percentages":"logicalWidthOfContainingBlock","groups":["CSS Logical Properties"],"initial":"0","appliesto":"allElements","computed":"asLength","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/padding-block-end"},"padding-block-start":{"syntax":"<\'padding-left\'>","media":"visual","inherited":false,"animationType":"length","percentages":"logicalWidthOfContainingBlock","groups":["CSS Logical Properties"],"initial":"0","appliesto":"allElements","computed":"asLength","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/padding-block-start"},"padding-bottom":{"syntax":"<length> | <percentage>","media":"visual","inherited":false,"animationType":"length","percentages":"referToWidthOfContainingBlock","groups":["CSS Box Model"],"initial":"0","appliesto":"allElementsExceptInternalTableDisplayTypes","computed":"percentageAsSpecifiedOrAbsoluteLength","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/padding-bottom"},"padding-inline":{"syntax":"<\'padding-left\'>{1,2}","media":"visual","inherited":false,"animationType":"discrete","percentages":"logicalWidthOfContainingBlock","groups":["CSS Logical Properties"],"initial":"0","appliesto":"allElements","computed":"asLength","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/padding-inline"},"padding-inline-end":{"syntax":"<\'padding-left\'>","media":"visual","inherited":false,"animationType":"length","percentages":"logicalWidthOfContainingBlock","groups":["CSS Logical Properties"],"initial":"0","appliesto":"allElements","computed":"asLength","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/padding-inline-end"},"padding-inline-start":{"syntax":"<\'padding-left\'>","media":"visual","inherited":false,"animationType":"length","percentages":"logicalWidthOfContainingBlock","groups":["CSS Logical Properties"],"initial":"0","appliesto":"allElements","computed":"asLength","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/padding-inline-start"},"padding-left":{"syntax":"<length> | <percentage>","media":"visual","inherited":false,"animationType":"length","percentages":"referToWidthOfContainingBlock","groups":["CSS Box Model"],"initial":"0","appliesto":"allElementsExceptInternalTableDisplayTypes","computed":"percentageAsSpecifiedOrAbsoluteLength","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/padding-left"},"padding-right":{"syntax":"<length> | <percentage>","media":"visual","inherited":false,"animationType":"length","percentages":"referToWidthOfContainingBlock","groups":["CSS Box Model"],"initial":"0","appliesto":"allElementsExceptInternalTableDisplayTypes","computed":"percentageAsSpecifiedOrAbsoluteLength","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/padding-right"},"padding-top":{"syntax":"<length> | <percentage>","media":"visual","inherited":false,"animationType":"length","percentages":"referToWidthOfContainingBlock","groups":["CSS Box Model"],"initial":"0","appliesto":"allElementsExceptInternalTableDisplayTypes","computed":"percentageAsSpecifiedOrAbsoluteLength","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/padding-top"},"page-break-after":{"syntax":"auto | always | avoid | left | right | recto | verso","media":["visual","paged"],"inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Pages"],"initial":"auto","appliesto":"blockElementsInNormalFlow","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/page-break-after"},"page-break-before":{"syntax":"auto | always | avoid | left | right | recto | verso","media":["visual","paged"],"inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Pages"],"initial":"auto","appliesto":"blockElementsInNormalFlow","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/page-break-before"},"page-break-inside":{"syntax":"auto | avoid","media":["visual","paged"],"inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Pages"],"initial":"auto","appliesto":"blockElementsInNormalFlow","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/page-break-inside"},"paint-order":{"syntax":"normal | [ fill || stroke || markers ]","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Text"],"initial":"normal","appliesto":"textElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/paint-order"},"perspective":{"syntax":"none | <length>","media":"visual","inherited":false,"animationType":"length","percentages":"no","groups":["CSS Transforms"],"initial":"none","appliesto":"transformableElements","computed":"absoluteLengthOrNone","order":"uniqueOrder","stacking":true,"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/perspective"},"perspective-origin":{"syntax":"<position>","media":"visual","inherited":false,"animationType":"simpleListOfLpc","percentages":"referToSizeOfBoundingBox","groups":["CSS Transforms"],"initial":"50% 50%","appliesto":"transformableElements","computed":"forLengthAbsoluteValueOtherwisePercentage","order":"oneOrTwoValuesLengthAbsoluteKeywordsPercentages","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/perspective-origin"},"place-content":{"syntax":"<\'align-content\'> <\'justify-content\'>?","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Box Alignment"],"initial":"normal","appliesto":"multilineFlexContainers","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/place-content"},"place-items":{"syntax":"<\'align-items\'> <\'justify-items\'>?","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Box Alignment"],"initial":["align-items","justify-items"],"appliesto":"allElements","computed":["align-items","justify-items"],"order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/place-items"},"place-self":{"syntax":"<\'align-self\'> <\'justify-self\'>?","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Box Alignment"],"initial":["align-self","justify-self"],"appliesto":"blockLevelBoxesAndAbsolutelyPositionedBoxesAndGridItems","computed":["align-self","justify-self"],"order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/place-self"},"pointer-events":{"syntax":"auto | none | visiblePainted | visibleFill | visibleStroke | visible | painted | fill | stroke | all | inherit","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["Pointer Events"],"initial":"auto","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/pointer-events"},"position":{"syntax":"static | relative | absolute | sticky | fixed","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Positioning"],"initial":"static","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","stacking":true,"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/position"},"quotes":{"syntax":"none | auto | [ <string> <string> ]+","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Generated Content"],"initial":"dependsOnUserAgent","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/quotes"},"resize":{"syntax":"none | both | horizontal | vertical | block | inline","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Basic User Interface"],"initial":"none","appliesto":"elementsWithOverflowNotVisibleAndReplacedElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/resize"},"right":{"syntax":"<length> | <percentage> | auto","media":"visual","inherited":false,"animationType":"lpc","percentages":"referToWidthOfContainingBlock","groups":["CSS Positioning"],"initial":"auto","appliesto":"positionedElements","computed":"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/right"},"rotate":{"syntax":"none | <angle> | [ x | y | z | <number>{3} ] && <angle>","media":"visual","inherited":false,"animationType":"transform","percentages":"no","groups":["CSS Transforms"],"initial":"none","appliesto":"transformableElements","computed":"asSpecified","order":"perGrammar","stacking":true,"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/rotate"},"row-gap":{"syntax":"normal | <length-percentage>","media":"visual","inherited":false,"animationType":"lpc","percentages":"referToDimensionOfContentArea","groups":["CSS Box Alignment"],"initial":"normal","appliesto":"multiColumnElementsFlexContainersGridContainers","computed":"asSpecifiedWithLengthsAbsoluteAndNormalComputingToZeroExceptMultiColumn","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/row-gap"},"ruby-align":{"syntax":"start | center | space-between | space-around","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Ruby"],"initial":"space-around","appliesto":"rubyBasesAnnotationsBaseAnnotationContainers","computed":"asSpecified","order":"uniqueOrder","status":"experimental","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/ruby-align"},"ruby-merge":{"syntax":"separate | collapse | auto","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Ruby"],"initial":"separate","appliesto":"rubyAnnotationsContainers","computed":"asSpecified","order":"uniqueOrder","status":"experimental"},"ruby-position":{"syntax":"over | under | inter-character","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Ruby"],"initial":"over","appliesto":"rubyAnnotationsContainers","computed":"asSpecified","order":"uniqueOrder","status":"experimental","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/ruby-position"},"scale":{"syntax":"none | <number>{1,3}","media":"visual","inherited":false,"animationType":"transform","percentages":"no","groups":["CSS Transforms"],"initial":"none","appliesto":"transformableElements","computed":"asSpecified","order":"perGrammar","stacking":true,"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/scale"},"scrollbar-color":{"syntax":"auto | dark | light | <color>{2}","media":"visual","inherited":true,"animationType":"color","percentages":"no","groups":["CSS Scrollbars"],"initial":"auto","appliesto":"scrollingBoxes","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/scrollbar-color"},"scrollbar-gutter":{"syntax":"auto | [ stable | always ] && both? && force?","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Overflow"],"initial":"auto","appliesto":"allElements","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/scrollbar-gutter"},"scrollbar-width":{"syntax":"auto | thin | none","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Scrollbars"],"initial":"auto","appliesto":"scrollingBoxes","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/scrollbar-width"},"scroll-behavior":{"syntax":"auto | smooth","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSSOM View"],"initial":"auto","appliesto":"scrollingBoxes","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/scroll-behavior"},"scroll-margin":{"syntax":"<length>{1,4}","media":"visual","inherited":false,"animationType":"byComputedValueType","percentages":"no","groups":["CSS Scroll Snap"],"initial":"0","appliesto":"allElements","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/scroll-margin"},"scroll-margin-block":{"syntax":"<length>{1,2}","media":"visual","inherited":false,"animationType":"byComputedValueType","percentages":"no","groups":["CSS Scroll Snap"],"initial":"0","appliesto":"allElements","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block"},"scroll-margin-block-start":{"syntax":"<length>","media":"visual","inherited":false,"animationType":"byComputedValueType","percentages":"no","groups":["CSS Scroll Snap"],"initial":"0","appliesto":"allElements","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-start"},"scroll-margin-block-end":{"syntax":"<length>","media":"visual","inherited":false,"animationType":"byComputedValueType","percentages":"no","groups":["CSS Scroll Snap"],"initial":"0","appliesto":"allElements","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-end"},"scroll-margin-bottom":{"syntax":"<length>","media":"visual","inherited":false,"animationType":"byComputedValueType","percentages":"no","groups":["CSS Scroll Snap"],"initial":"0","appliesto":"allElements","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/scroll-margin-bottom"},"scroll-margin-inline":{"syntax":"<length>{1,2}","media":"visual","inherited":false,"animationType":"byComputedValueType","percentages":"no","groups":["CSS Scroll Snap"],"initial":"0","appliesto":"allElements","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline"},"scroll-margin-inline-start":{"syntax":"<length>","media":"visual","inherited":false,"animationType":"byComputedValueType","percentages":"no","groups":["CSS Scroll Snap"],"initial":"0","appliesto":"allElements","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-start"},"scroll-margin-inline-end":{"syntax":"<length>","media":"visual","inherited":false,"animationType":"byComputedValueType","percentages":"no","groups":["CSS Scroll Snap"],"initial":"0","appliesto":"allElements","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-end"},"scroll-margin-left":{"syntax":"<length>","media":"visual","inherited":false,"animationType":"byComputedValueType","percentages":"no","groups":["CSS Scroll Snap"],"initial":"0","appliesto":"allElements","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/scroll-margin-left"},"scroll-margin-right":{"syntax":"<length>","media":"visual","inherited":false,"animationType":"byComputedValueType","percentages":"no","groups":["CSS Scroll Snap"],"initial":"0","appliesto":"allElements","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/scroll-margin-right"},"scroll-margin-top":{"syntax":"<length>","media":"visual","inherited":false,"animationType":"byComputedValueType","percentages":"no","groups":["CSS Scroll Snap"],"initial":"0","appliesto":"allElements","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/scroll-margin-top"},"scroll-padding":{"syntax":"[ auto | <length-percentage> ]{1,4}","media":"visual","inherited":false,"animationType":"byComputedValueType","percentages":"relativeToTheScrollContainersScrollport","groups":["CSS Scroll Snap"],"initial":"auto","appliesto":"scrollContainers","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/scroll-padding"},"scroll-padding-block":{"syntax":"[ auto | <length-percentage> ]{1,2}","media":"visual","inherited":false,"animationType":"byComputedValueType","percentages":"relativeToTheScrollContainersScrollport","groups":["CSS Scroll Snap"],"initial":"auto","appliesto":"scrollContainers","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block"},"scroll-padding-block-start":{"syntax":"auto | <length-percentage>","media":"visual","inherited":false,"animationType":"byComputedValueType","percentages":"relativeToTheScrollContainersScrollport","groups":["CSS Scroll Snap"],"initial":"auto","appliesto":"scrollContainers","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-start"},"scroll-padding-block-end":{"syntax":"auto | <length-percentage>","media":"visual","inherited":false,"animationType":"byComputedValueType","percentages":"relativeToTheScrollContainersScrollport","groups":["CSS Scroll Snap"],"initial":"auto","appliesto":"scrollContainers","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-end"},"scroll-padding-bottom":{"syntax":"auto | <length-percentage>","media":"visual","inherited":false,"animationType":"byComputedValueType","percentages":"relativeToTheScrollContainersScrollport","groups":["CSS Scroll Snap"],"initial":"auto","appliesto":"scrollContainers","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/scroll-padding-bottom"},"scroll-padding-inline":{"syntax":"[ auto | <length-percentage> ]{1,2}","media":"visual","inherited":false,"animationType":"byComputedValueType","percentages":"relativeToTheScrollContainersScrollport","groups":["CSS Scroll Snap"],"initial":"auto","appliesto":"scrollContainers","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline"},"scroll-padding-inline-start":{"syntax":"auto | <length-percentage>","media":"visual","inherited":false,"animationType":"byComputedValueType","percentages":"relativeToTheScrollContainersScrollport","groups":["CSS Scroll Snap"],"initial":"auto","appliesto":"scrollContainers","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-start"},"scroll-padding-inline-end":{"syntax":"auto | <length-percentage>","media":"visual","inherited":false,"animationType":"byComputedValueType","percentages":"relativeToTheScrollContainersScrollport","groups":["CSS Scroll Snap"],"initial":"auto","appliesto":"scrollContainers","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-end"},"scroll-padding-left":{"syntax":"auto | <length-percentage>","media":"visual","inherited":false,"animationType":"byComputedValueType","percentages":"relativeToTheScrollContainersScrollport","groups":["CSS Scroll Snap"],"initial":"auto","appliesto":"scrollContainers","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/scroll-padding-left"},"scroll-padding-right":{"syntax":"auto | <length-percentage>","media":"visual","inherited":false,"animationType":"byComputedValueType","percentages":"relativeToTheScrollContainersScrollport","groups":["CSS Scroll Snap"],"initial":"auto","appliesto":"scrollContainers","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/scroll-padding-right"},"scroll-padding-top":{"syntax":"auto | <length-percentage>","media":"visual","inherited":false,"animationType":"byComputedValueType","percentages":"relativeToTheScrollContainersScrollport","groups":["CSS Scroll Snap"],"initial":"auto","appliesto":"scrollContainers","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/scroll-padding-top"},"scroll-snap-align":{"syntax":"[ none | start | end | center ]{1,2}","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Scroll Snap"],"initial":"none","appliesto":"allElements","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/scroll-snap-align"},"scroll-snap-coordinate":{"syntax":"none | <position>#","media":"interactive","inherited":false,"animationType":"position","percentages":"referToBorderBox","groups":["CSS Scroll Snap"],"initial":"none","appliesto":"allElements","computed":"asSpecifiedRelativeToAbsoluteLengths","order":"uniqueOrder","status":"obsolete","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/scroll-snap-coordinate"},"scroll-snap-destination":{"syntax":"<position>","media":"interactive","inherited":false,"animationType":"position","percentages":"relativeToScrollContainerPaddingBoxAxis","groups":["CSS Scroll Snap"],"initial":"0px 0px","appliesto":"scrollContainers","computed":"asSpecifiedRelativeToAbsoluteLengths","order":"uniqueOrder","status":"obsolete","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/scroll-snap-destination"},"scroll-snap-points-x":{"syntax":"none | repeat( <length-percentage> )","media":"interactive","inherited":false,"animationType":"discrete","percentages":"relativeToScrollContainerPaddingBoxAxis","groups":["CSS Scroll Snap"],"initial":"none","appliesto":"scrollContainers","computed":"asSpecifiedRelativeToAbsoluteLengths","order":"uniqueOrder","status":"obsolete","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/scroll-snap-points-x"},"scroll-snap-points-y":{"syntax":"none | repeat( <length-percentage> )","media":"interactive","inherited":false,"animationType":"discrete","percentages":"relativeToScrollContainerPaddingBoxAxis","groups":["CSS Scroll Snap"],"initial":"none","appliesto":"scrollContainers","computed":"asSpecifiedRelativeToAbsoluteLengths","order":"uniqueOrder","status":"obsolete","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/scroll-snap-points-y"},"scroll-snap-stop":{"syntax":"normal | always","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Scroll Snap"],"initial":"normal","appliesto":"allElements","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/scroll-snap-stop"},"scroll-snap-type":{"syntax":"none | [ x | y | block | inline | both ] [ mandatory | proximity ]?","media":"interactive","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Scroll Snap"],"initial":"none","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/scroll-snap-type"},"scroll-snap-type-x":{"syntax":"none | mandatory | proximity","media":"interactive","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Scroll Snap"],"initial":"none","appliesto":"scrollContainers","computed":"asSpecified","order":"uniqueOrder","status":"obsolete","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/scroll-snap-type-x"},"scroll-snap-type-y":{"syntax":"none | mandatory | proximity","media":"interactive","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Scroll Snap"],"initial":"none","appliesto":"scrollContainers","computed":"asSpecified","order":"uniqueOrder","status":"obsolete","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/scroll-snap-type-y"},"shape-image-threshold":{"syntax":"<alpha-value>","media":"visual","inherited":false,"animationType":"number","percentages":"no","groups":["CSS Shapes"],"initial":"0.0","appliesto":"floats","computed":"specifiedValueNumberClipped0To1","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/shape-image-threshold"},"shape-margin":{"syntax":"<length-percentage>","media":"visual","inherited":false,"animationType":"lpc","percentages":"referToWidthOfContainingBlock","groups":["CSS Shapes"],"initial":"0","appliesto":"floats","computed":"asSpecifiedRelativeToAbsoluteLengths","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/shape-margin"},"shape-outside":{"syntax":"none | <shape-box> || <basic-shape> | <image>","media":"visual","inherited":false,"animationType":"basicShapeOtherwiseNo","percentages":"no","groups":["CSS Shapes"],"initial":"none","appliesto":"floats","computed":"asDefinedForBasicShapeWithAbsoluteURIOtherwiseAsSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/shape-outside"},"tab-size":{"syntax":"<integer> | <length>","media":"visual","inherited":true,"animationType":"length","percentages":"no","groups":["CSS Text"],"initial":"8","appliesto":"blockContainers","computed":"specifiedIntegerOrAbsoluteLength","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/tab-size"},"table-layout":{"syntax":"auto | fixed","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Table"],"initial":"auto","appliesto":"tableElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/table-layout"},"text-align":{"syntax":"start | end | left | right | center | justify | match-parent","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Text"],"initial":"startOrNamelessValueIfLTRRightIfRTL","appliesto":"blockContainers","computed":"asSpecifiedExceptMatchParent","order":"orderOfAppearance","alsoAppliesTo":["::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/text-align"},"text-align-last":{"syntax":"auto | start | end | left | right | center | justify","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Text"],"initial":"auto","appliesto":"blockContainers","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/text-align-last"},"text-combine-upright":{"syntax":"none | all | [ digits <integer>? ]","media":"visual","inherited":true,"animationType":"notAnimatable","percentages":"no","groups":["CSS Writing Modes"],"initial":"none","appliesto":"nonReplacedInlineElements","computed":"keywordPlusIntegerIfDigits","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/text-combine-upright"},"text-decoration":{"syntax":"<\'text-decoration-line\'> || <\'text-decoration-style\'> || <\'text-decoration-color\'> || <\'text-decoration-thickness\'>","media":"visual","inherited":false,"animationType":["text-decoration-color","text-decoration-style","text-decoration-line","text-decoration-thickness"],"percentages":"no","groups":["CSS Text Decoration"],"initial":["text-decoration-color","text-decoration-style","text-decoration-line"],"appliesto":"allElements","computed":["text-decoration-line","text-decoration-style","text-decoration-color","text-decoration-thickness"],"order":"orderOfAppearance","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/text-decoration"},"text-decoration-color":{"syntax":"<color>","media":"visual","inherited":false,"animationType":"color","percentages":"no","groups":["CSS Text Decoration"],"initial":"currentcolor","appliesto":"allElements","computed":"computedColor","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/text-decoration-color"},"text-decoration-line":{"syntax":"none | [ underline || overline || line-through || blink ] | spelling-error | grammar-error","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Text Decoration"],"initial":"none","appliesto":"allElements","computed":"asSpecified","order":"orderOfAppearance","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/text-decoration-line"},"text-decoration-skip":{"syntax":"none | [ objects || [ spaces | [ leading-spaces || trailing-spaces ] ] || edges || box-decoration ]","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Text Decoration"],"initial":"objects","appliesto":"allElements","computed":"asSpecified","order":"orderOfAppearance","status":"experimental","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip"},"text-decoration-skip-ink":{"syntax":"auto | all | none","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Text Decoration"],"initial":"auto","appliesto":"allElements","computed":"asSpecified","order":"orderOfAppearance","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip-ink"},"text-decoration-style":{"syntax":"solid | double | dotted | dashed | wavy","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Text Decoration"],"initial":"solid","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/text-decoration-style"},"text-decoration-thickness":{"syntax":"auto | from-font | <length> | <percentage> ","media":"visual","inherited":false,"animationType":"byComputedValueType","percentages":"referToElementFontSize","groups":["CSS Text Decoration"],"initial":"auto","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/text-decoration-thickness"},"text-emphasis":{"syntax":"<\'text-emphasis-style\'> || <\'text-emphasis-color\'>","media":"visual","inherited":false,"animationType":["text-emphasis-color","text-emphasis-style"],"percentages":"no","groups":["CSS Text Decoration"],"initial":["text-emphasis-style","text-emphasis-color"],"appliesto":"allElements","computed":["text-emphasis-style","text-emphasis-color"],"order":"orderOfAppearance","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/text-emphasis"},"text-emphasis-color":{"syntax":"<color>","media":"visual","inherited":false,"animationType":"color","percentages":"no","groups":["CSS Text Decoration"],"initial":"currentcolor","appliesto":"allElements","computed":"computedColor","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/text-emphasis-color"},"text-emphasis-position":{"syntax":"[ over | under ] && [ right | left ]","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Text Decoration"],"initial":"over right","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/text-emphasis-position"},"text-emphasis-style":{"syntax":"none | [ [ filled | open ] || [ dot | circle | double-circle | triangle | sesame ] ] | <string>","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Text Decoration"],"initial":"none","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/text-emphasis-style"},"text-indent":{"syntax":"<length-percentage> && hanging? && each-line?","media":"visual","inherited":true,"animationType":"lpc","percentages":"referToWidthOfContainingBlock","groups":["CSS Text"],"initial":"0","appliesto":"blockContainers","computed":"percentageOrAbsoluteLengthPlusKeywords","order":"lengthOrPercentageBeforeKeywords","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/text-indent"},"text-justify":{"syntax":"auto | inter-character | inter-word | none","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Text"],"initial":"auto","appliesto":"inlineLevelAndTableCellElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/text-justify"},"text-orientation":{"syntax":"mixed | upright | sideways","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Writing Modes"],"initial":"mixed","appliesto":"allElementsExceptTableRowGroupsRowsColumnGroupsAndColumns","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/text-orientation"},"text-overflow":{"syntax":"[ clip | ellipsis | <string> ]{1,2}","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Basic User Interface"],"initial":"clip","appliesto":"blockContainerElements","computed":"asSpecified","order":"uniqueOrder","alsoAppliesTo":["::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/text-overflow"},"text-rendering":{"syntax":"auto | optimizeSpeed | optimizeLegibility | geometricPrecision","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Miscellaneous"],"initial":"auto","appliesto":"textElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/text-rendering"},"text-shadow":{"syntax":"none | <shadow-t>#","media":"visual","inherited":true,"animationType":"shadowList","percentages":"no","groups":["CSS Text Decoration"],"initial":"none","appliesto":"allElements","computed":"colorPlusThreeAbsoluteLengths","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/text-shadow"},"text-size-adjust":{"syntax":"none | auto | <percentage>","media":"visual","inherited":true,"animationType":"discrete","percentages":"referToSizeOfFont","groups":["CSS Text"],"initial":"autoForSmartphoneBrowsersSupportingInflation","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"experimental","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/text-size-adjust"},"text-transform":{"syntax":"none | capitalize | uppercase | lowercase | full-width | full-size-kana","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Text"],"initial":"none","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/text-transform"},"text-underline-offset":{"syntax":"auto | <length> | <percentage> ","media":"visual","inherited":true,"animationType":"byComputedValueType","percentages":"referToElementFontSize","groups":["CSS Text Decoration"],"initial":"auto","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/text-underline-offset"},"text-underline-position":{"syntax":"auto | from-font | [ under || [ left | right ] ]","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Text Decoration"],"initial":"auto","appliesto":"allElements","computed":"asSpecified","order":"orderOfAppearance","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/text-underline-position"},"top":{"syntax":"<length> | <percentage> | auto","media":"visual","inherited":false,"animationType":"lpc","percentages":"referToContainingBlockHeight","groups":["CSS Positioning"],"initial":"auto","appliesto":"positionedElements","computed":"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/top"},"touch-action":{"syntax":"auto | none | [ [ pan-x | pan-left | pan-right ] || [ pan-y | pan-up | pan-down ] || pinch-zoom ] | manipulation","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["Pointer Events"],"initial":"auto","appliesto":"allElementsExceptNonReplacedInlineElementsTableRowsColumnsRowColumnGroups","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/touch-action"},"transform":{"syntax":"none | <transform-list>","media":"visual","inherited":false,"animationType":"transform","percentages":"referToSizeOfBoundingBox","groups":["CSS Transforms"],"initial":"none","appliesto":"transformableElements","computed":"asSpecifiedRelativeToAbsoluteLengths","order":"uniqueOrder","stacking":true,"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/transform"},"transform-box":{"syntax":"content-box | border-box | fill-box | stroke-box | view-box","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Transforms"],"initial":"view-box","appliesto":"transformableElements","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/transform-box"},"transform-origin":{"syntax":"[ <length-percentage> | left | center | right | top | bottom ] | [ [ <length-percentage> | left | center | right ] && [ <length-percentage> | top | center | bottom ] ] <length>?","media":"visual","inherited":false,"animationType":"simpleListOfLpc","percentages":"referToSizeOfBoundingBox","groups":["CSS Transforms"],"initial":"50% 50% 0","appliesto":"transformableElements","computed":"forLengthAbsoluteValueOtherwisePercentage","order":"oneOrTwoValuesLengthAbsoluteKeywordsPercentages","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/transform-origin"},"transform-style":{"syntax":"flat | preserve-3d","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Transforms"],"initial":"flat","appliesto":"transformableElements","computed":"asSpecified","order":"uniqueOrder","stacking":true,"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/transform-style"},"transition":{"syntax":"<single-transition>#","media":"interactive","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Transitions"],"initial":["transition-delay","transition-duration","transition-property","transition-timing-function"],"appliesto":"allElementsAndPseudos","computed":["transition-delay","transition-duration","transition-property","transition-timing-function"],"order":"orderOfAppearance","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/transition"},"transition-delay":{"syntax":"<time>#","media":"interactive","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Transitions"],"initial":"0s","appliesto":"allElementsAndPseudos","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/transition-delay"},"transition-duration":{"syntax":"<time>#","media":"interactive","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Transitions"],"initial":"0s","appliesto":"allElementsAndPseudos","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/transition-duration"},"transition-property":{"syntax":"none | <single-transition-property>#","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Transitions"],"initial":"all","appliesto":"allElementsAndPseudos","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/transition-property"},"transition-timing-function":{"syntax":"<timing-function>#","media":"interactive","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Transitions"],"initial":"ease","appliesto":"allElementsAndPseudos","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/transition-timing-function"},"translate":{"syntax":"none | <length-percentage> [ <length-percentage> <length>? ]?","media":"visual","inherited":false,"animationType":"transform","percentages":"referToSizeOfBoundingBox","groups":["CSS Transforms"],"initial":"none","appliesto":"transformableElements","computed":"asSpecifiedRelativeToAbsoluteLengths","order":"perGrammar","stacking":true,"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/translate"},"unicode-bidi":{"syntax":"normal | embed | isolate | bidi-override | isolate-override | plaintext","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Writing Modes"],"initial":"normal","appliesto":"allElementsSomeValuesNoEffectOnNonInlineElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/unicode-bidi"},"user-select":{"syntax":"auto | text | none | contain | all","media":"visual","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Basic User Interface"],"initial":"auto","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/user-select"},"vertical-align":{"syntax":"baseline | sub | super | text-top | text-bottom | middle | top | bottom | <percentage> | <length>","media":"visual","inherited":false,"animationType":"length","percentages":"referToLineHeight","groups":["CSS Table"],"initial":"baseline","appliesto":"inlineLevelAndTableCellElements","computed":"absoluteLengthOrKeyword","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/vertical-align"},"visibility":{"syntax":"visible | hidden | collapse","media":"visual","inherited":true,"animationType":"visibility","percentages":"no","groups":["CSS Box Model"],"initial":"visible","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/visibility"},"white-space":{"syntax":"normal | pre | nowrap | pre-wrap | pre-line | break-spaces","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Text"],"initial":"normal","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/white-space"},"widows":{"syntax":"<integer>","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Fragmentation"],"initial":"2","appliesto":"blockContainerElements","computed":"asSpecified","order":"perGrammar","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/widows"},"width":{"syntax":"auto | <length> | <percentage> | min-content | max-content | fit-content(<length-percentage>)","media":"visual","inherited":false,"animationType":"lpc","percentages":"referToWidthOfContainingBlock","groups":["CSS Box Model"],"initial":"auto","appliesto":"allElementsButNonReplacedAndTableRows","computed":"percentageAutoOrAbsoluteLength","order":"lengthOrPercentageBeforeKeywordIfBothPresent","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/width"},"will-change":{"syntax":"auto | <animateable-feature>#","media":"all","inherited":false,"animationType":"discrete","percentages":"no","groups":["CSS Will Change"],"initial":"auto","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/will-change"},"word-break":{"syntax":"normal | break-all | keep-all | break-word","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Text"],"initial":"normal","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/word-break"},"word-spacing":{"syntax":"normal | <length-percentage>","media":"visual","inherited":true,"animationType":"length","percentages":"referToWidthOfAffectedGlyph","groups":["CSS Text"],"initial":"normal","appliesto":"allElements","computed":"optimumMinAndMaxValueOfAbsoluteLengthPercentageOrNormal","order":"uniqueOrder","alsoAppliesTo":["::first-letter","::first-line","::placeholder"],"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/word-spacing"},"word-wrap":{"syntax":"normal | break-word","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Text"],"initial":"normal","appliesto":"nonReplacedInlineElements","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/overflow-wrap"},"writing-mode":{"syntax":"horizontal-tb | vertical-rl | vertical-lr | sideways-rl | sideways-lr","media":"visual","inherited":true,"animationType":"discrete","percentages":"no","groups":["CSS Writing Modes"],"initial":"horizontal-tb","appliesto":"allElementsExceptTableRowColumnGroupsTableRowsColumns","computed":"asSpecified","order":"uniqueOrder","status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/writing-mode"},"z-index":{"syntax":"auto | <integer>","media":"visual","inherited":false,"animationType":"integer","percentages":"no","groups":["CSS Positioning"],"initial":"auto","appliesto":"positionedElements","computed":"asSpecified","order":"uniqueOrder","stacking":true,"status":"standard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/z-index"},"zoom":{"syntax":"normal | reset | <number> | <percentage>","media":"visual","inherited":false,"animationType":"integer","percentages":"no","groups":["Microsoft Extensions"],"initial":"normal","appliesto":"allElements","computed":"asSpecified","order":"uniqueOrder","status":"nonstandard","mdn_url":"https://developer.mozilla.org/docs/Web/CSS/zoom"}}')},ABlQ:function(e,t,n){var r=n("WGRy").canReorderSingle,i=n("BWMQ"),o=n("J/fw"),a=n("FMXR"),s=n("dzo0"),l=n("pHDw"),u=n("cj6p").body,c=n("cj6p").rules;function d(e,t){return e>t?1:-1}e.exports=function(e,t){var n,p,f,m=t.options,h=m.compatibility.selectors.mergeablePseudoClasses,g=m.compatibility.selectors.mergeablePseudoElements,v=m.compatibility.selectors.mergeLimit,y=m.compatibility.selectors.multiplePseudoMerging,b=t.cache.specificity,S={},x=[],w={},k=[];function C(e,t){var n=function(e){for(var t=[],n=0,r=e.length;n<r;n++)t.push(c(e[n][1]));return t.join("%")}(t);return w[n]=w[n]||[],w[n].push([e,t]),n}function O(e){var t,n=e.split("%"),r=[];for(var i in w){var o=i.split("%");for(t=o.length-1;t>=0;t--)if(n.indexOf(o[t])>-1){r.push(i);break}}for(t=r.length-1;t>=0;t--)delete w[r[t]]}function _(e){for(var t=[],n=[],r=e.length-1;r>=0;r--)o(c(e[r][1]),h,g,y)&&(n.unshift(e[r]),e[r][2].length>0&&-1==t.indexOf(e[r])&&t.push(e[r]));return t.length>1?n:[]}function E(e,t){var n=t[0],r=t[1],i=t[4],o=n.length+r.length+1,s=[],l=[],u=_(S[i]);if(!(u.length<2)){var c=A(u,o,1),d=c[0];if(d[1]>0)return function(e,t,n){for(var r=n.length-1;r>=0;r--){var i=C(t,n[r][0]);if(w[i].length>1&&L(e,w[i])){O(i);break}}}(e,t,c);for(var p=d[0].length-1;p>=0;p--)s=d[0][p][1].concat(s),l.unshift(d[0][p]);R(e,[t],s=a(s),l)}}function T(e,t){return e[1]>t[1]?1:e[1]==t[1]?0:-1}function A(e,t,n){return function e(t,n,r,i){var o=[[t,P(t,n,r)]];if(t.length>2&&i>0)for(var a=t.length-1;a>=0;a--){var s=Array.prototype.slice.call(t,0);s.splice(a,1),o=o.concat(e(s,n,r,i-1))}return o}(e,t,n,1).sort(T)}function P(e,t,n){for(var r=0,i=e.length-1;i>=0;i--)r+=e[i][2].length>n?c(e[i][1]).length:-1;return r-(e.length-1)*t+1}function R(t,n,r,i){var o,a,l,c,d=[];for(o=i.length-1;o>=0;o--){var p=i[o];for(a=p[2].length-1;a>=0;a--){var f=p[2][a];for(l=0,c=n.length;l<c;l++){var m=n[l],h=f[1][1],g=m[0],v=m[4];if(h==g&&u([f])==v){p[2].splice(a,1);break}}}}for(o=n.length-1;o>=0;o--)d.unshift(n[o][3]);var y=[s.RULE,r,d];e.splice(t,0,y)}function z(e,t){var n=t[4],r=S[n];r&&r.length>1&&(function(e,t){var n,r,i=[],o=[],a=t[4],s=_(S[a]);if(s.length<2)return;e:for(var l in S){var u=S[l];for(n=s.length-1;n>=0;n--)if(-1==u.indexOf(s[n]))continue e;i.push(l)}if(i.length<2)return!1;for(n=i.length-1;n>=0;n--)for(r=x.length-1;r>=0;r--)if(x[r][4]==i[n]){o.unshift([x[r],s]);break}return L(e,o)}(e,t)||E(e,t))}function L(e,t){for(var n,r=0,i=[],o=t.length-1;o>=0;o--){r+=(n=t[o][0])[4].length+(o>0?1:0),i.push(n)}var s=A(t[0][1],r,i.length)[0];if(s[1]>0)return!1;var l=[],u=[];for(o=s[0].length-1;o>=0;o--)l=s[0][o][1].concat(l),u.unshift(s[0][o]);for(R(e,i,l=a(l),u),o=i.length-1;o>=0;o--){n=i[o];var c=x.indexOf(n);delete S[n[4]],c>-1&&-1==k.indexOf(c)&&k.push(c)}return!0}function j(e,t,n){if(e[0]!=t[0])return!1;var r=t[4],i=S[r];return i&&i.indexOf(n)>-1}for(var M=e.length-1;M>=0;M--){var B,W,N,I,D,U=e[M];if(U[0]==s.RULE)B=!0;else{if(U[0]!=s.NESTED_BLOCK)continue;B=!1}var q=x.length,F=i(U);k=[];var V=[];for(W=F.length-1;W>=0;W--)for(N=W-1;N>=0;N--)if(!r(F[W],F[N],b)){V.push(W);break}for(W=F.length-1;W>=0;W--){var G=F[W],H=!1;for(N=0;N<q;N++){var K=x[N];-1==k.indexOf(N)&&(!r(G,K,b)&&!j(G,K,U)||S[K[4]]&&S[K[4]].length===v)&&(z(M+1,K),-1==k.indexOf(N)&&(k.push(N),delete S[K[4]])),H||(H=G[0]==K[0]&&G[1]==K[1])&&(D=N)}if(B&&!(V.indexOf(W)>-1)){var $=G[4];H&&x[D][5].length+G[5].length>v?(z(M+1,x[D]),x.splice(D,1),S[$]=[U],H=!1):(S[$]=S[$]||[],S[$].push(U)),H?x[D]=(n=x[D],p=G,f=void 0,(f=l(n))[5]=f[5].concat(p[5]),f):x.push(G)}}for(W=0,I=(k=k.sort(d)).length;W<I;W++){var Y=k[W]-W;x.splice(Y,1)}}for(var Q=e[0]&&e[0][0]==s.AT_RULE&&0===e[0][1].indexOf("@charset")?1:0;Q<e.length-1;Q++){var X=e[Q][0]===s.AT_RULE&&0===e[Q][1].indexOf("@import"),J=e[Q][0]===s.COMMENT;if(!X&&!J)break}for(M=0;M<x.length;M++)z(Q,x[M])}},"APN/":function(e,t,n){const r=n("zahk"),i=["all","print","screen","speech"],o=/data:[^,]*;base64,/,a=/^(["']).*\1$/,s=[/::?(?:-moz-)?selection/],l=[/(.*)transition(.*)/,/cursor/,/pointer-events/,/(-webkit-)?tap-highlight-color/,/(.*)user-select/];class u{constructor(e,t,n){this.css=e,this.ast=t,this.errors=n}pruned(e){const t=new u(this.css,r.clone(this.ast),this.errors);return t.pruneMediaQueries(),t.pruneNonCriticalSelectors(e),t.pruneExcludedProperties(),t.pruneLargeBase64Embeds(),t.pruneComments(),t}originalText(e){return e.loc&&e.loc.start&&e.loc.end?this.css.substring(e.loc.start.offset,e.loc.end.offset):""}applyFilters(e){e&&(e.properties&&this.applyPropertiesFilter(e.properties),e.atRules&&this.applyAtRulesFilter(e.atRules))}applyPropertiesFilter(e){r.walk(this.ast,{visit:"Declaration",enter:(t,n,r)=>{!1===e(t.property,this.originalText(t.value))&&r.remove(n)}})}applyAtRulesFilter(e){r.walk(this.ast,{visit:"Atrule",enter:(t,n,r)=>{!1===e(t.name)&&r.remove(n)}})}pruneUnusedVariables(e){let t=0;return r.walk(this.ast,{visit:"Declaration",enter:(n,r,i)=>{n.property.startsWith("--")&&(e.has(n.property)||(i.remove(r),t++))}}),t}getUsedVariables(){const e=new Set;return r.walk(this.ast,{visit:"Function",enter:t=>{if("var"!==r.keyword(t.name).name)return;t.children.map(u.readValue).forEach(t=>e.add(t))}}),e}pruneComments(){r.walk(this.ast,{visit:"Comment",enter:(e,t,n)=>{n.remove(t)}})}pruneMediaQueries(){r.walk(this.ast,{visit:"Atrule",enter:(e,t,n)=>{"media"===r.keyword(e.name).name&&e.prelude&&(r.walk(e,{visit:"MediaQueryList",enter:(e,t,n)=>{r.walk(e,{visit:"MediaQuery",enter:(e,t,n)=>{u.isUsefulMediaQuery(e)||n.remove(t)}}),e.children&&e.children.isEmpty()&&n.remove(t)}}),e.prelude.children&&e.prelude.children.isEmpty()&&n.remove(t))}})}static isKeyframeRule(e){return e.atrule&&"keyframes"===r.keyword(e.atrule.name).basename}forEachSelector(e){r.walk(this.ast,{visit:"Rule",enter(t){u.isKeyframeRule(this)||"SelectorList"===t.prelude.type&&t.prelude.children.forEach(t=>{const n=r.generate(t);s.some(e=>e.test(n))||e(n)})}})}pruneNonCriticalSelectors(e){r.walk(this.ast,{visit:"Rule",enter(t,n,i){this.atrule&&"keyframes"===r.keyword(this.atrule.name).basename||("SelectorList"===t.prelude.type?t.block.children.some(e=>"grid-area"===e.property)||(t.prelude.children=t.prelude.children.filter(t=>{if(s.some(e=>e.test(t)))return!1;const n=r.generate(t);return e.has(n)}),t.prelude.children&&t.prelude.children.isEmpty()&&i.remove(n)):i.remove(n))}})}pruneLargeBase64Embeds(){r.walk(this.ast,{visit:"Declaration",enter:(e,t,n)=>{let i=!1;r.walk(e,{visit:"Url",enter(e){const t=e.value.value;o.test(t)&&t.length>1e3&&(i=!0)}}),i&&n.remove(t)}})}pruneExcludedProperties(){r.walk(this.ast,{visit:"Declaration",enter:(e,t,n)=>{if(e.property){const i=r.property(e.property).name;l.some(e=>e.test(i))&&n.remove(t)}}})}pruneNonCriticalFonts(e){r.walk(this.ast,{visit:"Atrule",enter:(t,n,i)=>{if("font-face"!==r.keyword(t.name).basename)return;const o={};r.walk(t,{visit:"Declaration",enter:(e,t,n)=>{const i=r.property(e.property).name;if(["src","font-family"].includes(i)){const t=e.value.children.toArray();o[i]=t.map(u.readValue)}"src"===i&&n.remove(t)}}),o.src&&o["font-family"]&&o["font-family"].some(t=>e.has(t))||i.remove(n)}})}ruleCount(){let e=0;return r.walk(this.ast,{visit:"Rule",enter:()=>{e++}}),e}getUsedFontFamilies(){const e=new Set;return r.walk(this.ast,{visit:"Declaration",enter(t){if(!this.rule)return;r.lexer.findDeclarationValueFragments(t,"Type","family-name").map(e=>e.nodes.toArray()).flat().map(u.readValue).forEach(t=>e.add(t))}}),e}static readValue(e){return"String"===e.type&&a.test(e.value)?e.value.substr(1,e.value.length-2):"Identifier"===e.type?e.name:e.value}static isUsefulMediaQuery(e){let t=!1;const n={};if(r.walk(e,{visit:"Identifier",enter:e=>{const o=r.keyword(e.name).name;"not"!==o?(i.includes(o)&&(n[o]=!t),t=!1):t=!0}}),0===Object.keys(n).length)return!0;for(const e of["screen","all"])if(Object.prototype.hasOwnProperty.call(n,e))return n[e];return Object.values(n).some(e=>!e)}toCSS(){return r.generate(this.ast)}static parse(e){const t=[],n=r.parse(e,{parseCustomProperty:!0,positions:!0,onParseError:e=>{t.push(e)}});return new u(e,n,t)}}e.exports=u},Ag6s:function(e,t,n){var r=n("y37L"),i=n("RON2"),o=n("+OUa"),a=n("VGoB"),s={animation:{canOverride:i.generic.components([i.generic.time,i.generic.timingFunction,i.generic.time,i.property.animationIterationCount,i.property.animationDirection,i.property.animationFillMode,i.property.animationPlayState,i.property.animationName]),components:["animation-duration","animation-timing-function","animation-delay","animation-iteration-count","animation-direction","animation-fill-mode","animation-play-state","animation-name"],breakUp:r.multiplex(r.animation),defaultValue:"none",restore:o.multiplex(o.withoutDefaults),shorthand:!0,vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-delay":{canOverride:i.generic.time,componentOf:["animation"],defaultValue:"0s",intoMultiplexMode:"real",vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-direction":{canOverride:i.property.animationDirection,componentOf:["animation"],defaultValue:"normal",intoMultiplexMode:"real",vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-duration":{canOverride:i.generic.time,componentOf:["animation"],defaultValue:"0s",intoMultiplexMode:"real",keepUnlessDefault:"animation-delay",vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-fill-mode":{canOverride:i.property.animationFillMode,componentOf:["animation"],defaultValue:"none",intoMultiplexMode:"real",vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-iteration-count":{canOverride:i.property.animationIterationCount,componentOf:["animation"],defaultValue:"1",intoMultiplexMode:"real",vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-name":{canOverride:i.property.animationName,componentOf:["animation"],defaultValue:"none",intoMultiplexMode:"real",vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-play-state":{canOverride:i.property.animationPlayState,componentOf:["animation"],defaultValue:"running",intoMultiplexMode:"real",vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-timing-function":{canOverride:i.generic.timingFunction,componentOf:["animation"],defaultValue:"ease",intoMultiplexMode:"real",vendorPrefixes:["-moz-","-o-","-webkit-"]},background:{canOverride:i.generic.components([i.generic.image,i.property.backgroundPosition,i.property.backgroundSize,i.property.backgroundRepeat,i.property.backgroundAttachment,i.property.backgroundOrigin,i.property.backgroundClip,i.generic.color]),components:["background-image","background-position","background-size","background-repeat","background-attachment","background-origin","background-clip","background-color"],breakUp:r.multiplex(r.background),defaultValue:"0 0",restore:o.multiplex(o.background),shortestValue:"0",shorthand:!0},"background-attachment":{canOverride:i.property.backgroundAttachment,componentOf:["background"],defaultValue:"scroll",intoMultiplexMode:"real"},"background-clip":{canOverride:i.property.backgroundClip,componentOf:["background"],defaultValue:"border-box",intoMultiplexMode:"real",shortestValue:"border-box"},"background-color":{canOverride:i.generic.color,componentOf:["background"],defaultValue:"transparent",intoMultiplexMode:"real",multiplexLastOnly:!0,nonMergeableValue:"none",shortestValue:"red"},"background-image":{canOverride:i.generic.image,componentOf:["background"],defaultValue:"none",intoMultiplexMode:"default"},"background-origin":{canOverride:i.property.backgroundOrigin,componentOf:["background"],defaultValue:"padding-box",intoMultiplexMode:"real",shortestValue:"border-box"},"background-position":{canOverride:i.property.backgroundPosition,componentOf:["background"],defaultValue:["0","0"],doubleValues:!0,intoMultiplexMode:"real",shortestValue:"0"},"background-repeat":{canOverride:i.property.backgroundRepeat,componentOf:["background"],defaultValue:["repeat"],doubleValues:!0,intoMultiplexMode:"real"},"background-size":{canOverride:i.property.backgroundSize,componentOf:["background"],defaultValue:["auto"],doubleValues:!0,intoMultiplexMode:"real",shortestValue:"0 0"},bottom:{canOverride:i.property.bottom,defaultValue:"auto"},border:{breakUp:r.border,canOverride:i.generic.components([i.generic.unit,i.property.borderStyle,i.generic.color]),components:["border-width","border-style","border-color"],defaultValue:"none",overridesShorthands:["border-bottom","border-left","border-right","border-top"],restore:o.withoutDefaults,shorthand:!0,shorthandComponents:!0},"border-bottom":{breakUp:r.border,canOverride:i.generic.components([i.generic.unit,i.property.borderStyle,i.generic.color]),components:["border-bottom-width","border-bottom-style","border-bottom-color"],defaultValue:"none",restore:o.withoutDefaults,shorthand:!0},"border-bottom-color":{canOverride:i.generic.color,componentOf:["border-bottom","border-color"],defaultValue:"none"},"border-bottom-left-radius":{canOverride:i.generic.unit,componentOf:["border-radius"],defaultValue:"0",vendorPrefixes:["-moz-","-o-"]},"border-bottom-right-radius":{canOverride:i.generic.unit,componentOf:["border-radius"],defaultValue:"0",vendorPrefixes:["-moz-","-o-"]},"border-bottom-style":{canOverride:i.property.borderStyle,componentOf:["border-bottom","border-style"],defaultValue:"none"},"border-bottom-width":{canOverride:i.generic.unit,componentOf:["border-bottom","border-width"],defaultValue:"medium",oppositeTo:"border-top-width",shortestValue:"0"},"border-collapse":{canOverride:i.property.borderCollapse,defaultValue:"separate"},"border-color":{breakUp:r.fourValues,canOverride:i.generic.components([i.generic.color,i.generic.color,i.generic.color,i.generic.color]),componentOf:["border"],components:["border-top-color","border-right-color","border-bottom-color","border-left-color"],defaultValue:"none",restore:o.fourValues,shortestValue:"red",shorthand:!0},"border-left":{breakUp:r.border,canOverride:i.generic.components([i.generic.unit,i.property.borderStyle,i.generic.color]),components:["border-left-width","border-left-style","border-left-color"],defaultValue:"none",restore:o.withoutDefaults,shorthand:!0},"border-left-color":{canOverride:i.generic.color,componentOf:["border-color","border-left"],defaultValue:"none"},"border-left-style":{canOverride:i.property.borderStyle,componentOf:["border-left","border-style"],defaultValue:"none"},"border-left-width":{canOverride:i.generic.unit,componentOf:["border-left","border-width"],defaultValue:"medium",oppositeTo:"border-right-width",shortestValue:"0"},"border-radius":{breakUp:r.borderRadius,canOverride:i.generic.components([i.generic.unit,i.generic.unit,i.generic.unit,i.generic.unit]),components:["border-top-left-radius","border-top-right-radius","border-bottom-right-radius","border-bottom-left-radius"],defaultValue:"0",restore:o.borderRadius,shorthand:!0,vendorPrefixes:["-moz-","-o-"]},"border-right":{breakUp:r.border,canOverride:i.generic.components([i.generic.unit,i.property.borderStyle,i.generic.color]),components:["border-right-width","border-right-style","border-right-color"],defaultValue:"none",restore:o.withoutDefaults,shorthand:!0},"border-right-color":{canOverride:i.generic.color,componentOf:["border-color","border-right"],defaultValue:"none"},"border-right-style":{canOverride:i.property.borderStyle,componentOf:["border-right","border-style"],defaultValue:"none"},"border-right-width":{canOverride:i.generic.unit,componentOf:["border-right","border-width"],defaultValue:"medium",oppositeTo:"border-left-width",shortestValue:"0"},"border-style":{breakUp:r.fourValues,canOverride:i.generic.components([i.property.borderStyle,i.property.borderStyle,i.property.borderStyle,i.property.borderStyle]),componentOf:["border"],components:["border-top-style","border-right-style","border-bottom-style","border-left-style"],defaultValue:"none",restore:o.fourValues,shorthand:!0},"border-top":{breakUp:r.border,canOverride:i.generic.components([i.generic.unit,i.property.borderStyle,i.generic.color]),components:["border-top-width","border-top-style","border-top-color"],defaultValue:"none",restore:o.withoutDefaults,shorthand:!0},"border-top-color":{canOverride:i.generic.color,componentOf:["border-color","border-top"],defaultValue:"none"},"border-top-left-radius":{canOverride:i.generic.unit,componentOf:["border-radius"],defaultValue:"0",vendorPrefixes:["-moz-","-o-"]},"border-top-right-radius":{canOverride:i.generic.unit,componentOf:["border-radius"],defaultValue:"0",vendorPrefixes:["-moz-","-o-"]},"border-top-style":{canOverride:i.property.borderStyle,componentOf:["border-style","border-top"],defaultValue:"none"},"border-top-width":{canOverride:i.generic.unit,componentOf:["border-top","border-width"],defaultValue:"medium",oppositeTo:"border-bottom-width",shortestValue:"0"},"border-width":{breakUp:r.fourValues,canOverride:i.generic.components([i.generic.unit,i.generic.unit,i.generic.unit,i.generic.unit]),componentOf:["border"],components:["border-top-width","border-right-width","border-bottom-width","border-left-width"],defaultValue:"medium",restore:o.fourValues,shortestValue:"0",shorthand:!0},clear:{canOverride:i.property.clear,defaultValue:"none"},color:{canOverride:i.generic.color,defaultValue:"transparent",shortestValue:"red"},cursor:{canOverride:i.property.cursor,defaultValue:"auto"},display:{canOverride:i.property.display},float:{canOverride:i.property.float,defaultValue:"none"},font:{breakUp:r.font,canOverride:i.generic.components([i.property.fontStyle,i.property.fontVariant,i.property.fontWeight,i.property.fontStretch,i.generic.unit,i.generic.unit,i.property.fontFamily]),components:["font-style","font-variant","font-weight","font-stretch","font-size","line-height","font-family"],restore:o.font,shorthand:!0},"font-family":{canOverride:i.property.fontFamily,defaultValue:"user|agent|specific"},"font-size":{canOverride:i.generic.unit,defaultValue:"medium",shortestValue:"0"},"font-stretch":{canOverride:i.property.fontStretch,defaultValue:"normal"},"font-style":{canOverride:i.property.fontStyle,defaultValue:"normal"},"font-variant":{canOverride:i.property.fontVariant,defaultValue:"normal"},"font-weight":{canOverride:i.property.fontWeight,defaultValue:"normal",shortestValue:"400"},height:{canOverride:i.generic.unit,defaultValue:"auto",shortestValue:"0"},left:{canOverride:i.property.left,defaultValue:"auto"},"line-height":{canOverride:i.generic.unitOrNumber,defaultValue:"normal",shortestValue:"0"},"list-style":{canOverride:i.generic.components([i.property.listStyleType,i.property.listStylePosition,i.property.listStyleImage]),components:["list-style-type","list-style-position","list-style-image"],breakUp:r.listStyle,restore:o.withoutDefaults,defaultValue:"outside",shortestValue:"none",shorthand:!0},"list-style-image":{canOverride:i.generic.image,componentOf:["list-style"],defaultValue:"none"},"list-style-position":{canOverride:i.property.listStylePosition,componentOf:["list-style"],defaultValue:"outside",shortestValue:"inside"},"list-style-type":{canOverride:i.property.listStyleType,componentOf:["list-style"],defaultValue:"decimal|disc",shortestValue:"none"},margin:{breakUp:r.fourValues,canOverride:i.generic.components([i.generic.unit,i.generic.unit,i.generic.unit,i.generic.unit]),components:["margin-top","margin-right","margin-bottom","margin-left"],defaultValue:"0",restore:o.fourValues,shorthand:!0},"margin-bottom":{canOverride:i.generic.unit,componentOf:["margin"],defaultValue:"0",oppositeTo:"margin-top"},"margin-left":{canOverride:i.generic.unit,componentOf:["margin"],defaultValue:"0",oppositeTo:"margin-right"},"margin-right":{canOverride:i.generic.unit,componentOf:["margin"],defaultValue:"0",oppositeTo:"margin-left"},"margin-top":{canOverride:i.generic.unit,componentOf:["margin"],defaultValue:"0",oppositeTo:"margin-bottom"},outline:{canOverride:i.generic.components([i.generic.color,i.property.outlineStyle,i.generic.unit]),components:["outline-color","outline-style","outline-width"],breakUp:r.outline,restore:o.withoutDefaults,defaultValue:"0",shorthand:!0},"outline-color":{canOverride:i.generic.color,componentOf:["outline"],defaultValue:"invert",shortestValue:"red"},"outline-style":{canOverride:i.property.outlineStyle,componentOf:["outline"],defaultValue:"none"},"outline-width":{canOverride:i.generic.unit,componentOf:["outline"],defaultValue:"medium",shortestValue:"0"},overflow:{canOverride:i.property.overflow,defaultValue:"visible"},"overflow-x":{canOverride:i.property.overflow,defaultValue:"visible"},"overflow-y":{canOverride:i.property.overflow,defaultValue:"visible"},padding:{breakUp:r.fourValues,canOverride:i.generic.components([i.generic.unit,i.generic.unit,i.generic.unit,i.generic.unit]),components:["padding-top","padding-right","padding-bottom","padding-left"],defaultValue:"0",restore:o.fourValues,shorthand:!0},"padding-bottom":{canOverride:i.generic.unit,componentOf:["padding"],defaultValue:"0",oppositeTo:"padding-top"},"padding-left":{canOverride:i.generic.unit,componentOf:["padding"],defaultValue:"0",oppositeTo:"padding-right"},"padding-right":{canOverride:i.generic.unit,componentOf:["padding"],defaultValue:"0",oppositeTo:"padding-left"},"padding-top":{canOverride:i.generic.unit,componentOf:["padding"],defaultValue:"0",oppositeTo:"padding-bottom"},position:{canOverride:i.property.position,defaultValue:"static"},right:{canOverride:i.property.right,defaultValue:"auto"},"text-align":{canOverride:i.property.textAlign,defaultValue:"left|right"},"text-decoration":{canOverride:i.property.textDecoration,defaultValue:"none"},"text-overflow":{canOverride:i.property.textOverflow,defaultValue:"none"},"text-shadow":{canOverride:i.property.textShadow,defaultValue:"none"},top:{canOverride:i.property.top,defaultValue:"auto"},transform:{canOverride:i.property.transform,vendorPrefixes:["-moz-","-ms-","-webkit-"]},transition:{breakUp:r.multiplex(r.transition),canOverride:i.generic.components([i.property.transitionProperty,i.generic.time,i.generic.timingFunction,i.generic.time]),components:["transition-property","transition-duration","transition-timing-function","transition-delay"],defaultValue:"none",restore:o.multiplex(o.withoutDefaults),shorthand:!0,vendorPrefixes:["-moz-","-o-","-webkit-"]},"transition-delay":{canOverride:i.generic.time,componentOf:["transition"],defaultValue:"0s",intoMultiplexMode:"real",vendorPrefixes:["-moz-","-o-","-webkit-"]},"transition-duration":{canOverride:i.generic.time,componentOf:["transition"],defaultValue:"0s",intoMultiplexMode:"real",vendorPrefixes:["-moz-","-o-","-webkit-"]},"transition-property":{canOverride:i.generic.propertyName,componentOf:["transition"],defaultValue:"all",intoMultiplexMode:"placeholder",placeholderValue:"_",vendorPrefixes:["-moz-","-o-","-webkit-"]},"transition-timing-function":{canOverride:i.generic.timingFunction,componentOf:["transition"],defaultValue:"ease",intoMultiplexMode:"real",vendorPrefixes:["-moz-","-o-","-webkit-"]},"vertical-align":{canOverride:i.property.verticalAlign,defaultValue:"baseline"},visibility:{canOverride:i.property.visibility,defaultValue:"visible"},"white-space":{canOverride:i.property.whiteSpace,defaultValue:"normal"},width:{canOverride:i.generic.unit,defaultValue:"auto",shortestValue:"0"},"z-index":{canOverride:i.property.zIndex,defaultValue:"auto"}};function l(e,t){var n=a(s[e],{});return"componentOf"in n&&(n.componentOf=n.componentOf.map((function(e){return t+e}))),"components"in n&&(n.components=n.components.map((function(e){return t+e}))),"keepUnlessDefault"in n&&(n.keepUnlessDefault=t+n.keepUnlessDefault),n}var u={};for(var c in s){var d=s[c];if("vendorPrefixes"in d){for(var p=0;p<d.vendorPrefixes.length;p++){var f=d.vendorPrefixes[p],m=l(c,f);delete m.vendorPrefixes,u[f+c]=m}delete d.vendorPrefixes}}e.exports=a(s,u)},Askw:function(e,t,n){var r=n("J/fw"),i=n("MFAA"),o=n("fn/D"),a=n("Nwoi").OptimizationLevel,s=n("cj6p").body,l=n("cj6p").rules,u=n("dzo0");function c(e){var t=l(e[1]);return t.indexOf("__")>-1||t.indexOf("--")>-1}function d(e){return e.replace(/--[^ ,>\+~:]+/g,"")}function p(e,t){var n=d(l(e[1]));for(var r in t){var i=t[r],o=d(l(i[1]));(o.indexOf(n)>-1||n.indexOf(o)>-1)&&delete t[r]}}e.exports=function(e,t){for(var n,d=t.options,f=d.level[a.Two].mergeSemantically,m=d.compatibility.selectors.adjacentSpace,h=d.level[a.One].selectorsSortingMethod,g=d.compatibility.selectors.mergeablePseudoClasses,v=d.compatibility.selectors.mergeablePseudoElements,y=d.compatibility.selectors.multiplePseudoMerging,b={},S=e.length-1;S>=0;S--){var x=e[S];if(x[0]==u.RULE){x[2].length>0&&!f&&(n=l(x[1]),/\.|\*| :/.test(n))&&(b={}),x[2].length>0&&f&&c(x)&&p(x,b);var w=s(x[2]),k=b[w];k&&r(l(x[1]),g,v,y)&&r(l(k[1]),g,v,y)&&(x[2].length>0?(x[1]=o(k[1].concat(x[1]),!1,m,!1,t.warnings),x[1]=x[1].length>1?i(x[1],h):x[1]):x[1]=k[1].concat(x[1]),k[2]=[],b[w]=null),b[s(x[2])]=x}}}},B3CK:function(e,t,n){e.exports=n("lXnc")},BNLM:function(e,t,n){var r=n("Ttul"),i=".",o="#",a=":",s=/[a-zA-Z]/,l=/[\s,\(>~\+]/;function u(e,t){return e.indexOf(":not(",t)===t}e.exports=function(e){var t,n,c,d,p,f,m,h=[0,0,0],g=0,v=!1,y=!1;for(f=0,m=e.length;f<m;f++){if(t=e[f],n);else if(t!=r.SINGLE_QUOTE||d||c)if(t==r.SINGLE_QUOTE&&!d&&c)c=!1;else if(t!=r.DOUBLE_QUOTE||d||c)if(t==r.DOUBLE_QUOTE&&d&&!c)d=!1;else{if(c||d)continue;g>0&&!v||(t==r.OPEN_ROUND_BRACKET?g++:t==r.CLOSE_ROUND_BRACKET&&1==g?(g--,v=!1):t==r.CLOSE_ROUND_BRACKET?g--:t==o?h[0]++:t==i||t==r.OPEN_SQUARE_BRACKET?h[1]++:t!=a||y||u(e,f)?t==a?v=!0:(0===f||p)&&s.test(t)&&h[2]++:(h[1]++,v=!1))}else d=!0;else c=!0;n=t==r.BACK_SLASH,y=t==a,p=!n&&l.test(t)}return h}},BWMQ:function(e,t,n){var r=n("dzo0"),i=n("cj6p").rules,o=n("cj6p").value;function a(e){return"list-style"==e?e:e.indexOf("-radius")>0?"border-radius":"border-collapse"==e||"border-spacing"==e||"border-image"==e?e:0===e.indexOf("border-")&&/^border\-\w+\-\w+$/.test(e)?e.match(/border\-\w+/)[0]:0===e.indexOf("border-")&&/^border\-\w+$/.test(e)?"border":0===e.indexOf("text-")||"-chrome-"==e?e:e.replace(/^\-\w+\-/,"").match(/([a-zA-Z]+)/)[0].toLowerCase()}e.exports=function e(t){var n,s,l,u,c,d,p=[];if(t[0]==r.RULE)for(n=!/[\.\+>~]/.test(i(t[1])),c=0,d=t[2].length;c<d;c++)(s=t[2][c])[0]==r.PROPERTY&&0!==(l=s[1][1]).length&&0!==l.indexOf("--")&&(u=o(s,c),p.push([l,u,a(l),t[2][c],l+":"+u,t[1],n]));else if(t[0]==r.NESTED_BLOCK)for(c=0,d=t[2].length;c<d;c++)p=p.concat(e(t[2][c]));return p}},C6w6:function(e,t,n){e.exports=n("8IG6")},C6yU:function(e,t,n){"use strict";(function(e){n.d(t,"a",(function(){return s}));var r=n("kDDq"),i=(n("WyMB"),n("6zzY")),o=n("Ohaz"),a=n("UAm0");function s(t,n){const s=Object(i.a)();void 0===n&&void 0!==e&&Object({NODE_ENV:"production"});const l=(null==s?void 0:s[n])||{},u={...Object(o.a)(),...Object(o.b)(n)},{_overrides:c,...d}=l,p=Object.entries(d).length?Object.assign({},d,t):t,f=Object(r.b)(Object(a.a)(n),t.className),m="function"==typeof p.renderChildren?p.renderChildren(p):p.children;for(const e in p)u[e]=p[e];for(const e in c)u[e]=c[e];return u.children=m,u.className=f,u}}).call(this,n("8oxB"))},CJ5M:function(e,t,n){var r,i=n("vd7W"),o=i.isIdentifierStart,a=i.isHexDigit,s=i.isDigit,l=i.cmpStr,u=i.consumeNumber,c=i.TYPE,d=n("/slF"),p=n("2TAq"),f=["unset","initial","inherit"],m=["calc(","-moz-calc(","-webkit-calc("];function h(e,t){return t<e.length?e.charCodeAt(t):0}function g(e,t){return l(e,0,e.length,t)}function v(e,t){for(var n=0;n<t.length;n++)if(g(e,t[n]))return!0;return!1}function y(e,t){return t===e.length-2&&(92===e.charCodeAt(t)&&s(e.charCodeAt(t+1)))}function b(e,t,n){if(e&&"Range"===e.type){var r=Number(void 0!==n&&n!==t.length?t.substr(0,n):t);if(isNaN(r))return!0;if(null!==e.min&&r<e.min)return!0;if(null!==e.max&&r>e.max)return!0}return!1}function S(e,t){var n=e.index,r=0;do{if(r++,e.balance<=n)break}while(e=t(r));return r}function x(e){return function(t,n,r){return null===t?0:t.type===c.Function&&v(t.value,m)?S(t,n):e(t,n,r)}}function w(e){return function(t){return null===t||t.type!==e?0:1}}function k(e){return function(t,n,r){if(null===t||t.type!==c.Dimension)return 0;var i=u(t.value,0);if(null!==e){var o=t.value.indexOf("\\",i),a=-1!==o&&y(t.value,o)?t.value.substring(i,o):t.value.substr(i);if(!1===e.hasOwnProperty(a.toLowerCase()))return 0}return b(r,t.value,i)?0:1}}function C(e){return"function"!=typeof e&&(e=function(){return 0}),function(t,n,r){return null!==t&&t.type===c.Number&&0===Number(t.value)?1:e(t,n,r)}}e.exports={"ident-token":w(c.Ident),"function-token":w(c.Function),"at-keyword-token":w(c.AtKeyword),"hash-token":w(c.Hash),"string-token":w(c.String),"bad-string-token":w(c.BadString),"url-token":w(c.Url),"bad-url-token":w(c.BadUrl),"delim-token":w(c.Delim),"number-token":w(c.Number),"percentage-token":w(c.Percentage),"dimension-token":w(c.Dimension),"whitespace-token":w(c.WhiteSpace),"CDO-token":w(c.CDO),"CDC-token":w(c.CDC),"colon-token":w(c.Colon),"semicolon-token":w(c.Semicolon),"comma-token":w(c.Comma),"[-token":w(c.LeftSquareBracket),"]-token":w(c.RightSquareBracket),"(-token":w(c.LeftParenthesis),")-token":w(c.RightParenthesis),"{-token":w(c.LeftCurlyBracket),"}-token":w(c.RightCurlyBracket),string:w(c.String),ident:w(c.Ident),"custom-ident":function(e){if(null===e||e.type!==c.Ident)return 0;var t=e.value.toLowerCase();return v(t,f)||g(t,"default")?0:1},"custom-property-name":function(e){return null===e||e.type!==c.Ident||45!==h(e.value,0)||45!==h(e.value,1)?0:1},"hex-color":function(e){if(null===e||e.type!==c.Hash)return 0;var t=e.value.length;if(4!==t&&5!==t&&7!==t&&9!==t)return 0;for(var n=1;n<t;n++)if(!a(e.value.charCodeAt(n)))return 0;return 1},"id-selector":function(e){return null===e||e.type!==c.Hash?0:o(h(e.value,1),h(e.value,2),h(e.value,3))?1:0},"an-plus-b":d,urange:p,"declaration-value":function(e,t){if(!e)return 0;var n=0,r=0,i=e.index;e:do{switch(e.type){case c.BadString:case c.BadUrl:break e;case c.RightCurlyBracket:case c.RightParenthesis:case c.RightSquareBracket:if(e.balance>e.index||e.balance<i)break e;r--;break;case c.Semicolon:if(0===r)break e;break;case c.Delim:if("!"===e.value&&0===r)break e;break;case c.Function:case c.LeftParenthesis:case c.LeftSquareBracket:case c.LeftCurlyBracket:r++}if(n++,e.balance<=i)break}while(e=t(n));return n},"any-value":function(e,t){if(!e)return 0;var n=e.index,r=0;e:do{switch(e.type){case c.BadString:case c.BadUrl:break e;case c.RightCurlyBracket:case c.RightParenthesis:case c.RightSquareBracket:if(e.balance>e.index||e.balance<n)break e}if(r++,e.balance<=n)break}while(e=t(r));return r},dimension:x(k(null)),angle:x(k({deg:!0,grad:!0,rad:!0,turn:!0})),decibel:x(k({db:!0})),frequency:x(k({hz:!0,khz:!0})),flex:x(k({fr:!0})),length:x(C(k({px:!0,mm:!0,cm:!0,in:!0,pt:!0,pc:!0,q:!0,em:!0,ex:!0,ch:!0,rem:!0,vh:!0,vw:!0,vmin:!0,vmax:!0,vm:!0}))),resolution:x(k({dpi:!0,dpcm:!0,dppx:!0,x:!0})),semitones:x(k({st:!0})),time:x(k({s:!0,ms:!0})),percentage:x((function(e,t,n){return null===e||e.type!==c.Percentage||b(n,e.value,e.value.length-1)?0:1})),zero:C(),number:x((function(e,t,n){if(null===e)return 0;var r=u(e.value,0);return r===e.value.length||y(e.value,r)?b(n,e.value,r)?0:1:0})),integer:x((function(e,t,n){if(null===e||e.type!==c.Number)return 0;for(var r=43===e.value.charCodeAt(0)||45===e.value.charCodeAt(0)?1:0;r<e.value.length;r++)if(!s(e.value.charCodeAt(r)))return 0;return b(n,e.value,r)?0:1})),"-ms-legacy-expression":(r="expression",r+="(",function(e,t){return null!==e&&g(e.value,r)?S(e,t):0})}},CdAG:function(e,t){function n(e,t,n){var r=e[t];e[t]=e[n],e[n]=r}function r(e,t,i,o){if(i<o){var a=i-1;n(e,(c=i,d=o,Math.round(c+Math.random()*(d-c))),o);for(var s=e[o],l=i;l<o;l++)t(e[l],s)<=0&&n(e,a+=1,l);n(e,a+1,l);var u=a+1;r(e,t,i,u-1),r(e,t,u+1,o)}var c,d}t.quickSort=function(e,t){r(e,t,0,e.length-1)}},Copi:function(e,t,n){"use strict";
|
10 |
-
/** @license React v16.13.1
|
11 |
-
* react-is.production.min.js
|
12 |
-
*
|
13 |
-
* Copyright (c) Facebook, Inc. and its affiliates.
|
14 |
-
*
|
15 |
-
* This source code is licensed under the MIT license found in the
|
16 |
-
* LICENSE file in the root directory of this source tree.
|
17 |
-
*/var r="function"==typeof Symbol&&Symbol.for,i=r?Symbol.for("react.element"):60103,o=r?Symbol.for("react.portal"):60106,a=r?Symbol.for("react.fragment"):60107,s=r?Symbol.for("react.strict_mode"):60108,l=r?Symbol.for("react.profiler"):60114,u=r?Symbol.for("react.provider"):60109,c=r?Symbol.for("react.context"):60110,d=r?Symbol.for("react.async_mode"):60111,p=r?Symbol.for("react.concurrent_mode"):60111,f=r?Symbol.for("react.forward_ref"):60112,m=r?Symbol.for("react.suspense"):60113,h=r?Symbol.for("react.suspense_list"):60120,g=r?Symbol.for("react.memo"):60115,v=r?Symbol.for("react.lazy"):60116,y=r?Symbol.for("react.block"):60121,b=r?Symbol.for("react.fundamental"):60117,S=r?Symbol.for("react.responder"):60118,x=r?Symbol.for("react.scope"):60119;function w(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case i:switch(e=e.type){case d:case p:case a:case l:case s:case m:return e;default:switch(e=e&&e.$$typeof){case c:case f:case v:case g:case u:return e;default:return t}}case o:return t}}}function k(e){return w(e)===p}t.AsyncMode=d,t.ConcurrentMode=p,t.ContextConsumer=c,t.ContextProvider=u,t.Element=i,t.ForwardRef=f,t.Fragment=a,t.Lazy=v,t.Memo=g,t.Portal=o,t.Profiler=l,t.StrictMode=s,t.Suspense=m,t.isAsyncMode=function(e){return k(e)||w(e)===d},t.isConcurrentMode=k,t.isContextConsumer=function(e){return w(e)===c},t.isContextProvider=function(e){return w(e)===u},t.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===i},t.isForwardRef=function(e){return w(e)===f},t.isFragment=function(e){return w(e)===a},t.isLazy=function(e){return w(e)===v},t.isMemo=function(e){return w(e)===g},t.isPortal=function(e){return w(e)===o},t.isProfiler=function(e){return w(e)===l},t.isStrictMode=function(e){return w(e)===s},t.isSuspense=function(e){return w(e)===m},t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===a||e===p||e===l||e===s||e===m||e===h||"object"==typeof e&&null!==e&&(e.$$typeof===v||e.$$typeof===g||e.$$typeof===u||e.$$typeof===c||e.$$typeof===f||e.$$typeof===b||e.$$typeof===S||e.$$typeof===x||e.$$typeof===y)},t.typeOf=w},CwTu:function(e,t,n){const r=n("XDwu"),i=n("vI5D"),o={offset:0,line:1,column:1};function a(e,t){const n=e&&e.loc&&e.loc[t];return n?"line"in n?s(n):n:null}function s({offset:e,line:t,column:n},r){const i={offset:e,line:t,column:n};if(r){const e=r.split(/\n|\r\n?|\f/);i.offset+=r.length,i.line+=e.length-1,i.column=1===e.length?i.column+r.length:e.pop().length+1}return i}e.exports={SyntaxReferenceError:function(e,t){const n=r("SyntaxReferenceError",e+(t?" `"+t+"`":""));return n.reference=t,n},SyntaxMatchError:function(e,t,n,l){const u=r("SyntaxMatchError",e),{css:c,mismatchOffset:d,mismatchLength:p,start:f,end:m}=function(e,t){const n=e.tokens,r=e.longestMatch,i=r<n.length&&n[r].node||null,l=i!==t?i:null;let u,c,d=0,p=0,f=0,m="";for(let e=0;e<n.length;e++){const t=n[e].value;e===r&&(p=t.length,d=m.length),null!==l&&n[e].node===l&&(e<=r?f++:f=0),m+=t}return r===n.length||f>1?(u=a(l||t,"end")||s(o,m),c=s(u)):(u=a(l,"start")||s(a(t,"start")||o,m.slice(0,d)),c=a(l,"end")||s(u,m.substr(d,p))),{css:m,mismatchOffset:d,mismatchLength:p,start:u,end:c}}(l,n);return u.rawMessage=e,u.syntax=t?i(t):"<generic>",u.css=c,u.mismatchOffset=d,u.mismatchLength=p,u.message=e+"\n syntax: "+u.syntax+"\n value: "+(c||"<empty string>")+"\n --------"+new Array(u.mismatchOffset+1).join("-")+"^",Object.assign(u,f),u.loc={source:n&&n.loc&&n.loc.source||"<unknown>",start:f,end:m},u}}},CxY0:function(e,t,n){"use strict";var r=n("GYWy"),i=n("Nehr");function o(){this.protocol=null,this.slashes=null,this.auth=null,this.host=null,this.port=null,this.hostname=null,this.hash=null,this.search=null,this.query=null,this.pathname=null,this.path=null,this.href=null}t.parse=b,t.resolve=function(e,t){return b(e,!1,!0).resolve(t)},t.resolveObject=function(e,t){return e?b(e,!1,!0).resolveObject(t):t},t.format=function(e){i.isString(e)&&(e=b(e));return e instanceof o?e.format():o.prototype.format.call(e)},t.Url=o;var a=/^([a-z0-9.+-]+:)/i,s=/:[0-9]*$/,l=/^(\/\/?(?!\/)[^\?\s]*)(\?[^\s]*)?$/,u=["{","}","|","\\","^","`"].concat(["<",">",'"',"`"," ","\r","\n","\t"]),c=["'"].concat(u),d=["%","/","?",";","#"].concat(c),p=["/","?","#"],f=/^[+a-z0-9A-Z_-]{0,63}$/,m=/^([+a-z0-9A-Z_-]{0,63})(.*)$/,h={javascript:!0,"javascript:":!0},g={javascript:!0,"javascript:":!0},v={http:!0,https:!0,ftp:!0,gopher:!0,file:!0,"http:":!0,"https:":!0,"ftp:":!0,"gopher:":!0,"file:":!0},y=n("s4NR");function b(e,t,n){if(e&&i.isObject(e)&&e instanceof o)return e;var r=new o;return r.parse(e,t,n),r}o.prototype.parse=function(e,t,n){if(!i.isString(e))throw new TypeError("Parameter 'url' must be a string, not "+typeof e);var o=e.indexOf("?"),s=-1!==o&&o<e.indexOf("#")?"?":"#",u=e.split(s);u[0]=u[0].replace(/\\/g,"/");var b=e=u.join(s);if(b=b.trim(),!n&&1===e.split("#").length){var S=l.exec(b);if(S)return this.path=b,this.href=b,this.pathname=S[1],S[2]?(this.search=S[2],this.query=t?y.parse(this.search.substr(1)):this.search.substr(1)):t&&(this.search="",this.query={}),this}var x=a.exec(b);if(x){var w=(x=x[0]).toLowerCase();this.protocol=w,b=b.substr(x.length)}if(n||x||b.match(/^\/\/[^@\/]+@[^@\/]+/)){var k="//"===b.substr(0,2);!k||x&&g[x]||(b=b.substr(2),this.slashes=!0)}if(!g[x]&&(k||x&&!v[x])){for(var C,O,_=-1,E=0;E<p.length;E++){-1!==(T=b.indexOf(p[E]))&&(-1===_||T<_)&&(_=T)}-1!==(O=-1===_?b.lastIndexOf("@"):b.lastIndexOf("@",_))&&(C=b.slice(0,O),b=b.slice(O+1),this.auth=decodeURIComponent(C)),_=-1;for(E=0;E<d.length;E++){var T;-1!==(T=b.indexOf(d[E]))&&(-1===_||T<_)&&(_=T)}-1===_&&(_=b.length),this.host=b.slice(0,_),b=b.slice(_),this.parseHost(),this.hostname=this.hostname||"";var A="["===this.hostname[0]&&"]"===this.hostname[this.hostname.length-1];if(!A)for(var P=this.hostname.split(/\./),R=(E=0,P.length);E<R;E++){var z=P[E];if(z&&!z.match(f)){for(var L="",j=0,M=z.length;j<M;j++)z.charCodeAt(j)>127?L+="x":L+=z[j];if(!L.match(f)){var B=P.slice(0,E),W=P.slice(E+1),N=z.match(m);N&&(B.push(N[1]),W.unshift(N[2])),W.length&&(b="/"+W.join(".")+b),this.hostname=B.join(".");break}}}this.hostname.length>255?this.hostname="":this.hostname=this.hostname.toLowerCase(),A||(this.hostname=r.toASCII(this.hostname));var I=this.port?":"+this.port:"",D=this.hostname||"";this.host=D+I,this.href+=this.host,A&&(this.hostname=this.hostname.substr(1,this.hostname.length-2),"/"!==b[0]&&(b="/"+b))}if(!h[w])for(E=0,R=c.length;E<R;E++){var U=c[E];if(-1!==b.indexOf(U)){var q=encodeURIComponent(U);q===U&&(q=escape(U)),b=b.split(U).join(q)}}var F=b.indexOf("#");-1!==F&&(this.hash=b.substr(F),b=b.slice(0,F));var V=b.indexOf("?");if(-1!==V?(this.search=b.substr(V),this.query=b.substr(V+1),t&&(this.query=y.parse(this.query)),b=b.slice(0,V)):t&&(this.search="",this.query={}),b&&(this.pathname=b),v[w]&&this.hostname&&!this.pathname&&(this.pathname="/"),this.pathname||this.search){I=this.pathname||"";var G=this.search||"";this.path=I+G}return this.href=this.format(),this},o.prototype.format=function(){var e=this.auth||"";e&&(e=(e=encodeURIComponent(e)).replace(/%3A/i,":"),e+="@");var t=this.protocol||"",n=this.pathname||"",r=this.hash||"",o=!1,a="";this.host?o=e+this.host:this.hostname&&(o=e+(-1===this.hostname.indexOf(":")?this.hostname:"["+this.hostname+"]"),this.port&&(o+=":"+this.port)),this.query&&i.isObject(this.query)&&Object.keys(this.query).length&&(a=y.stringify(this.query));var s=this.search||a&&"?"+a||"";return t&&":"!==t.substr(-1)&&(t+=":"),this.slashes||(!t||v[t])&&!1!==o?(o="//"+(o||""),n&&"/"!==n.charAt(0)&&(n="/"+n)):o||(o=""),r&&"#"!==r.charAt(0)&&(r="#"+r),s&&"?"!==s.charAt(0)&&(s="?"+s),t+o+(n=n.replace(/[?#]/g,(function(e){return encodeURIComponent(e)})))+(s=s.replace("#","%23"))+r},o.prototype.resolve=function(e){return this.resolveObject(b(e,!1,!0)).format()},o.prototype.resolveObject=function(e){if(i.isString(e)){var t=new o;t.parse(e,!1,!0),e=t}for(var n=new o,r=Object.keys(this),a=0;a<r.length;a++){var s=r[a];n[s]=this[s]}if(n.hash=e.hash,""===e.href)return n.href=n.format(),n;if(e.slashes&&!e.protocol){for(var l=Object.keys(e),u=0;u<l.length;u++){var c=l[u];"protocol"!==c&&(n[c]=e[c])}return v[n.protocol]&&n.hostname&&!n.pathname&&(n.path=n.pathname="/"),n.href=n.format(),n}if(e.protocol&&e.protocol!==n.protocol){if(!v[e.protocol]){for(var d=Object.keys(e),p=0;p<d.length;p++){var f=d[p];n[f]=e[f]}return n.href=n.format(),n}if(n.protocol=e.protocol,e.host||g[e.protocol])n.pathname=e.pathname;else{for(var m=(e.pathname||"").split("/");m.length&&!(e.host=m.shift()););e.host||(e.host=""),e.hostname||(e.hostname=""),""!==m[0]&&m.unshift(""),m.length<2&&m.unshift(""),n.pathname=m.join("/")}if(n.search=e.search,n.query=e.query,n.host=e.host||"",n.auth=e.auth,n.hostname=e.hostname||e.host,n.port=e.port,n.pathname||n.search){var h=n.pathname||"",y=n.search||"";n.path=h+y}return n.slashes=n.slashes||e.slashes,n.href=n.format(),n}var b=n.pathname&&"/"===n.pathname.charAt(0),S=e.host||e.pathname&&"/"===e.pathname.charAt(0),x=S||b||n.host&&e.pathname,w=x,k=n.pathname&&n.pathname.split("/")||[],C=(m=e.pathname&&e.pathname.split("/")||[],n.protocol&&!v[n.protocol]);if(C&&(n.hostname="",n.port=null,n.host&&(""===k[0]?k[0]=n.host:k.unshift(n.host)),n.host="",e.protocol&&(e.hostname=null,e.port=null,e.host&&(""===m[0]?m[0]=e.host:m.unshift(e.host)),e.host=null),x=x&&(""===m[0]||""===k[0])),S)n.host=e.host||""===e.host?e.host:n.host,n.hostname=e.hostname||""===e.hostname?e.hostname:n.hostname,n.search=e.search,n.query=e.query,k=m;else if(m.length)k||(k=[]),k.pop(),k=k.concat(m),n.search=e.search,n.query=e.query;else if(!i.isNullOrUndefined(e.search)){if(C)n.hostname=n.host=k.shift(),(A=!!(n.host&&n.host.indexOf("@")>0)&&n.host.split("@"))&&(n.auth=A.shift(),n.host=n.hostname=A.shift());return n.search=e.search,n.query=e.query,i.isNull(n.pathname)&&i.isNull(n.search)||(n.path=(n.pathname?n.pathname:"")+(n.search?n.search:"")),n.href=n.format(),n}if(!k.length)return n.pathname=null,n.search?n.path="/"+n.search:n.path=null,n.href=n.format(),n;for(var O=k.slice(-1)[0],_=(n.host||e.host||k.length>1)&&("."===O||".."===O)||""===O,E=0,T=k.length;T>=0;T--)"."===(O=k[T])?k.splice(T,1):".."===O?(k.splice(T,1),E++):E&&(k.splice(T,1),E--);if(!x&&!w)for(;E--;E)k.unshift("..");!x||""===k[0]||k[0]&&"/"===k[0].charAt(0)||k.unshift(""),_&&"/"!==k.join("/").substr(-1)&&k.push("");var A,P=""===k[0]||k[0]&&"/"===k[0].charAt(0);C&&(n.hostname=n.host=P?"":k.length?k.shift():"",(A=!!(n.host&&n.host.indexOf("@")>0)&&n.host.split("@"))&&(n.auth=A.shift(),n.host=n.hostname=A.shift()));return(x=x||n.host&&k.length)&&!P&&k.unshift(""),k.length?n.pathname=k.join("/"):(n.pathname=null,n.path=null),i.isNull(n.pathname)&&i.isNull(n.search)||(n.path=(n.pathname?n.pathname:"")+(n.search?n.search:"")),n.auth=e.auth||n.auth,n.slashes=n.slashes||e.slashes,n.href=n.format(),n},o.prototype.parseHost=function(){var e=this.host,t=s.exec(e);t&&(":"!==(t=t[0])&&(this.port=t.substr(1)),e=e.substr(0,e.length-t.length)),e&&(this.hostname=e)}},DDB3:function(e,t,n){var r=n("vd7W").TYPE,i=r.Ident,o=r.Function,a=r.Colon,s=r.RightParenthesis;e.exports={name:"PseudoElementSelector",structure:{name:String,children:[["Raw"],null]},parse:function(){var e,t,n=this.scanner.tokenStart,r=null;return this.eat(a),this.eat(a),this.scanner.tokenType===o?(t=(e=this.consumeFunctionName()).toLowerCase(),this.pseudo.hasOwnProperty(t)?(this.scanner.skipSC(),r=this.pseudo[t].call(this),this.scanner.skipSC()):(r=this.createList()).push(this.Raw(this.scanner.tokenIndex,null,!1)),this.eat(s)):e=this.consume(i),{type:"PseudoElementSelector",loc:this.getLocation(n,this.scanner.tokenStart),name:e,children:r}},generate:function(e){this.chunk("::"),this.chunk(e.name),null!==e.children&&(this.chunk("("),this.children(e),this.chunk(")"))},walkContext:"function"}},DJod:function(e,t,n){var r=n("vd7W").TYPE,i=n("4njK").mode,o=r.WhiteSpace,a=r.Comment,s=r.Semicolon,l=r.AtKeyword,u=r.LeftCurlyBracket,c=r.RightCurlyBracket;function d(e){return this.Raw(e,null,!0)}function p(){return this.parseWithFallback(this.Rule,d)}function f(e){return this.Raw(e,i.semicolonIncluded,!0)}function m(){if(this.scanner.tokenType===s)return f.call(this,this.scanner.tokenIndex);var e=this.parseWithFallback(this.Declaration,f);return this.scanner.tokenType===s&&this.scanner.next(),e}e.exports={name:"Block",structure:{children:[["Atrule","Rule","Declaration"]]},parse:function(e){var t=e?m:p,n=this.scanner.tokenStart,r=this.createList();this.eat(u);e:for(;!this.scanner.eof;)switch(this.scanner.tokenType){case c:break e;case o:case a:this.scanner.next();break;case l:r.push(this.parseWithFallback(this.Atrule,d));break;default:r.push(t.call(this))}return this.scanner.eof||this.eat(c),{type:"Block",loc:this.getLocation(n,this.scanner.tokenStart),children:r}},generate:function(e){this.chunk("{"),this.children(e,(function(e){"Declaration"===e.type&&this.chunk(";")})),this.chunk("}")},walkContext:"block"}},DUzY:function(e,t,n){"use strict";
|
18 |
-
/** @license React v16.13.1
|
19 |
-
* react-is.production.min.js
|
20 |
-
*
|
21 |
-
* Copyright (c) Facebook, Inc. and its affiliates.
|
22 |
-
*
|
23 |
-
* This source code is licensed under the MIT license found in the
|
24 |
-
* LICENSE file in the root directory of this source tree.
|
25 |
-
*/var r="function"==typeof Symbol&&Symbol.for,i=r?Symbol.for("react.element"):60103,o=r?Symbol.for("react.portal"):60106,a=r?Symbol.for("react.fragment"):60107,s=r?Symbol.for("react.strict_mode"):60108,l=r?Symbol.for("react.profiler"):60114,u=r?Symbol.for("react.provider"):60109,c=r?Symbol.for("react.context"):60110,d=r?Symbol.for("react.async_mode"):60111,p=r?Symbol.for("react.concurrent_mode"):60111,f=r?Symbol.for("react.forward_ref"):60112,m=r?Symbol.for("react.suspense"):60113,h=r?Symbol.for("react.suspense_list"):60120,g=r?Symbol.for("react.memo"):60115,v=r?Symbol.for("react.lazy"):60116,y=r?Symbol.for("react.block"):60121,b=r?Symbol.for("react.fundamental"):60117,S=r?Symbol.for("react.responder"):60118,x=r?Symbol.for("react.scope"):60119;function w(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case i:switch(e=e.type){case d:case p:case a:case l:case s:case m:return e;default:switch(e=e&&e.$$typeof){case c:case f:case v:case g:case u:return e;default:return t}}case o:return t}}}function k(e){return w(e)===p}t.AsyncMode=d,t.ConcurrentMode=p,t.ContextConsumer=c,t.ContextProvider=u,t.Element=i,t.ForwardRef=f,t.Fragment=a,t.Lazy=v,t.Memo=g,t.Portal=o,t.Profiler=l,t.StrictMode=s,t.Suspense=m,t.isAsyncMode=function(e){return k(e)||w(e)===d},t.isConcurrentMode=k,t.isContextConsumer=function(e){return w(e)===c},t.isContextProvider=function(e){return w(e)===u},t.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===i},t.isForwardRef=function(e){return w(e)===f},t.isFragment=function(e){return w(e)===a},t.isLazy=function(e){return w(e)===v},t.isMemo=function(e){return w(e)===g},t.isPortal=function(e){return w(e)===o},t.isProfiler=function(e){return w(e)===l},t.isStrictMode=function(e){return w(e)===s},t.isSuspense=function(e){return w(e)===m},t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===a||e===p||e===l||e===s||e===m||e===h||"object"==typeof e&&null!==e&&(e.$$typeof===v||e.$$typeof===g||e.$$typeof===u||e.$$typeof===c||e.$$typeof===f||e.$$typeof===b||e.$$typeof===S||e.$$typeof===x||e.$$typeof===y)},t.typeOf=w},Du80:function(e,t,n){var r=n("vd7W"),i=new(n("8wsT")),o={decorator:function(e){var t=null,n={len:0,node:null},r=[n],i="";return{children:e.children,node:function(n){var r=t;t=n,e.node.call(this,n),t=r},chunk:function(e){i+=e,n.node!==t?r.push({len:e.length,node:t}):n.len+=e.length},result:function(){return a(i,r)}}}};function a(e,t){var n=[],o=0,a=0,s=t?t[a].node:null;for(r(e,i);!i.eof;){if(t)for(;a<t.length&&o+t[a].len<=i.tokenStart;)o+=t[a++].len,s=t[a].node;n.push({type:i.tokenType,value:i.getTokenValue(),index:i.tokenIndex,balance:i.balance[i.tokenIndex],node:s}),i.next()}return n}e.exports=function(e,t){return"string"==typeof e?a(e,null):t.generate(e,o)}},EaiB:function(e,t,n){var r=n("vd7W").TYPE,i=r.WhiteSpace,o=r.Comment,a=r.Ident,s=r.Function,l=r.Colon,u=r.LeftParenthesis;function c(){return this.createSingleNodeList(this.Raw(this.scanner.tokenIndex,null,!1))}function d(){return this.scanner.skipSC(),this.scanner.tokenType===a&&this.lookupNonWSType(1)===l?this.createSingleNodeList(this.Declaration()):p.call(this)}function p(){var e,t=this.createList(),n=null;this.scanner.skipSC();e:for(;!this.scanner.eof;){switch(this.scanner.tokenType){case i:n=this.WhiteSpace();continue;case o:this.scanner.next();continue;case s:e=this.Function(c,this.scope.AtrulePrelude);break;case a:e=this.Identifier();break;case u:e=this.Parentheses(d,this.scope.AtrulePrelude);break;default:break e}null!==n&&(t.push(n),n=null),t.push(e)}return t}e.exports={parse:{prelude:function(){var e=p.call(this);return null===this.getFirstListNode(e)&&this.error("Condition is expected"),e},block:function(){return this.Block(!1)}}}},Ec1c:function(e,t){var n=/^data:(\S*?)?(;charset=[^;]+)?(;[^,]+?)?,(.+)/;e.exports=function(e){return n.test(e)}},EiPP:function(e,t,n){var r=n("O36p"),i=n("1aLD"),o=n("8wsT"),a=n("mK1g"),s=n("fmF7"),l=n("vd7W"),u=n("u5kB"),c=n("jpu9"),d=n("QtvL"),p=n("4HHr"),f=n("bgAe"),m=n("t1UP"),h=n("8XFM");t.create=function(e){return function e(t){var n=u(t),g=p(t),v=c(t),y=d(g),b={List:r,SyntaxError:i,TokenStream:o,Lexer:a,vendorPrefix:m.vendorPrefix,keyword:m.keyword,property:m.property,isCustomProperty:m.isCustomProperty,definitionSyntax:s,lexer:null,createLexer:function(e){return new a(e,b,b.lexer.structure)},tokenize:l,parse:n,walk:g,generate:v,find:g.find,findLast:g.findLast,findAll:g.findAll,clone:f,fromPlainObject:y.fromPlainObject,toPlainObject:y.toPlainObject,createSyntax:function(t){return e(h({},t))},fork:function(n){var r=h({},t);return e("function"==typeof n?n(r,Object.assign):h(r,n))}};return b.lexer=new a({generic:!0,types:t.types,atrules:t.atrules,properties:t.properties,node:t.node},b),b}(h({},e))}},F0GR:function(e,t,n){var r=n("Ttul");e.exports=function(e,t,n){var i,o,a,s=t.value.length,l=n.value.length,u=Math.max(s,l),c=Math.min(s,l)-1;for(a=0;a<u;a++)if(i=t.value[a]&&t.value[a][1]||i,o=n.value[a]&&n.value[a][1]||o,i!=r.COMMA&&o!=r.COMMA&&!e(i,o,a,a<=c))return!1;return!0}},F977:function(e,t,n){var r=n("vd7W").isDigit,i=n("vd7W").TYPE,o=i.Number,a=i.Delim;function s(){this.scanner.skipWS();for(var e=this.consume(o),t=0;t<e.length;t++){var n=e.charCodeAt(t);r(n)||46===n||this.error("Unsigned number is expected",this.scanner.tokenStart-e.length+t)}return 0===Number(e)&&this.error("Zero number is not allowed",this.scanner.tokenStart-e.length),e}e.exports={name:"Ratio",structure:{left:String,right:String},parse:function(){var e,t=this.scanner.tokenStart,n=s.call(this);return this.scanner.skipWS(),this.scanner.isDelim(47)||this.error("Solidus is expected"),this.eat(a),e=s.call(this),{type:"Ratio",loc:this.getLocation(t,this.scanner.tokenStart),left:n,right:e}},generate:function(e){this.chunk(e.left),this.chunk("/"),this.chunk(e.right)}}},FA6c:function(e,t,n){t.SourceMapGenerator=n("YQdX").SourceMapGenerator,t.SourceMapConsumer=n("dwdH").SourceMapConsumer,t.SourceNode=n("rJrI").SourceNode},FEnK:function(e,t,n){var r=n("vd7W").TYPE,i=r.Semicolon,o=r.LeftCurlyBracket;e.exports={name:"AtrulePrelude",structure:{children:[[]]},parse:function(e){var t=null;return null!==e&&(e=e.toLowerCase()),this.scanner.skipSC(),t=this.atrule.hasOwnProperty(e)&&"function"==typeof this.atrule[e].prelude?this.atrule[e].prelude.call(this):this.readSequence(this.scope.AtrulePrelude),this.scanner.skipSC(),!0!==this.scanner.eof&&this.scanner.tokenType!==o&&this.scanner.tokenType!==i&&this.error("Semicolon or block is expected"),null===t&&(t=this.createList()),{type:"AtrulePrelude",loc:this.getLocationFromList(t),children:t}},generate:function(e){this.children(e)},walkContext:"atrulePrelude"}},FMXR:function(e,t){function n(e,t){return e[1]>t[1]?1:-1}e.exports=function(e){for(var t=[],r=[],i=0,o=e.length;i<o;i++){var a=e[i];-1==r.indexOf(a[1])&&(r.push(a[1]),t.push(a))}return t.sort(n)}},FYdY:function(e,t,n){var r=n("FA6c").SourceMapConsumer;function i(e){return e}function o(e,t){return t in e}function a(e,t,n,r){for(var i,o,s=t[0],l=t[1],u=t[2],c={line:s,column:l+n};!i&&c.column>l;)c.column--,i=e[u].originalPositionFor(c);return!i||i.column<0?t:null===i.line&&s>1&&r>0?a(e,[s-1,l,u],n,r-1):null!==i.line?[(o=i).line,o.column,o.source]:t}function s(e,t,n){e[t]=new r(n)}e.exports=function(){var e={};return{all:i.bind(null,e),isTracking:o.bind(null,e),originalPositionFor:a.bind(null,e),track:s.bind(null,e)}}},Fm6d:function(e,t){var n=function(){};function r(e){return"function"==typeof e?e:n}e.exports=function(e,t,i){var o=n,a=n;if("function"==typeof t?o=t:t&&(o=r(t.enter),a=r(t.leave)),o===n&&a===n)throw new Error("Neither `enter` nor `leave` walker handler is set or both aren't a function");!function e(t){switch(o.call(i,t),t.type){case"Group":t.terms.forEach(e);break;case"Multiplier":e(t.term);break;case"Type":case"Property":case"Keyword":case"AtKeyword":case"Function":case"String":case"Token":case"Comma":break;default:throw new Error("Unknown type: "+t.type)}a.call(i,t)}(e)}},FxWf:function(e,t,n){"use strict";var r=n("lm0R"),i=Object.keys||function(e){var t=[];for(var n in e)t.push(n);return t};e.exports=d;var o=Object.create(n("Onz0"));o.inherits=n("P7XM");var a=n("i3fk"),s=n("W8Jt");o.inherits(d,a);for(var l=i(s.prototype),u=0;u<l.length;u++){var c=l[u];d.prototype[c]||(d.prototype[c]=s.prototype[c])}function d(e){if(!(this instanceof d))return new d(e);a.call(this,e),s.call(this,e),e&&!1===e.readable&&(this.readable=!1),e&&!1===e.writable&&(this.writable=!1),this.allowHalfOpen=!0,e&&!1===e.allowHalfOpen&&(this.allowHalfOpen=!1),this.once("end",p)}function p(){this.allowHalfOpen||this._writableState.ended||r.nextTick(f,this)}function f(e){e.end()}Object.defineProperty(d.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),Object.defineProperty(d.prototype,"destroyed",{get:function(){return void 0!==this._readableState&&void 0!==this._writableState&&(this._readableState.destroyed&&this._writableState.destroyed)},set:function(e){void 0!==this._readableState&&void 0!==this._writableState&&(this._readableState.destroyed=e,this._writableState.destroyed=e)}}),d.prototype._destroy=function(e,t){this.push(null),this.end(),r.nextTick(t,e)}},G6hy:function(e,t,n){var r=n("IeWP"),i=n("F0GR"),o=n("2GZ4"),a=n("c0Bz"),s=n("Q8Ej"),l=n("Suo5"),u=n("zy2C").same,c=n("Ag6s"),d=n("4dtu").deep,p=n("3Vmb"),f=n("4dtu").shallow,m=n("QC34"),h=n("dzo0"),g=n("Ttul"),v=n("cj6p").property;function y(e,t){for(var n=0;n<e.components.length;n++){var r=e.components[n],o=c[r.name],a=o&&o.canOverride||a.sameValue,s=f(r);if(s.value=[[h.PROPERTY_VALUE,o.defaultValue]],!i(a.bind(null,t),s,r))return!0}return!1}function b(e,t){t.unused=!0,k(t,O(e)),e.value=t.value}function S(e,t){t.unused=!0,e.multiplex=!0,e.value=t.value}function x(e,t){t.multiplex?S(e,t):e.multiplex?b(e,t):function(e,t){t.unused=!0,e.value=t.value}(e,t)}function w(e,t){t.unused=!0;for(var n=0,r=e.components.length;n<r;n++)x(e.components[n],t.components[n],e.multiplex)}function k(e,t){e.multiplex=!0,c[e.name].shorthand?function(e,t){var n,r,i;for(r=0,i=e.components.length;r<i;r++)(n=e.components[r]).multiplex||C(n,t)}(e,t):C(e,t)}function C(e,t){for(var n,r=c[e.name],i="real"==r.intoMultiplexMode,o="real"==r.intoMultiplexMode?e.value.slice(0):"placeholder"==r.intoMultiplexMode?r.placeholderValue:r.defaultValue,a=O(e),s=o.length;a<t;a++)if(e.value.push([h.PROPERTY_VALUE,g.COMMA]),Array.isArray(o))for(n=0;n<s;n++)e.value.push(i?o[n]:[h.PROPERTY_VALUE,o[n]]);else e.value.push(i?o:[h.PROPERTY_VALUE,o])}function O(e){for(var t=0,n=0,r=e.value.length;n<r;n++)e.value[n][1]==g.COMMA&&t++;return t+1}function _(e){var t=[h.PROPERTY,[h.PROPERTY_NAME,e.name]].concat(e.value);return v([t],0).length}function E(e,t,n){for(var r=0,i=t;i>=0&&(e[i].name!=n||e[i].unused||r++,!(r>1));i--);return r>1}function T(e,t){for(var n=0,r=e.components.length;n<r;n++)if(!A(t.isUrl,e.components[n])&&A(t.isFunction,e.components[n]))return!0;return!1}function A(e,t){for(var n=0,r=t.value.length;n<r;n++)if(t.value[n][1]!=g.COMMA&&e(t.value[n][1]))return!0;return!1}function P(e,t){if(!e.multiplex&&!t.multiplex||e.multiplex&&t.multiplex)return!1;var n,r=e.multiplex?e:t,i=e.multiplex?t:e,a=d(r);m([a],p);var s=d(i);m([s],p);var l=_(a)+1+_(s);return e.multiplex?b(n=o(a,s),s):(n=o(s,a),k(s,O(a)),S(n,a)),m([s],p),l<=_(s)}function R(e){return e.name in c}function z(e,t){return!e.multiplex&&("background"==e.name||"background-image"==e.name)&&t.multiplex&&("background"==t.name||"background-image"==t.name)&&function(e){for(var t=function(e){for(var t=[],n=0,r=[],i=e.length;n<i;n++){var o=e[n];o[1]==g.COMMA?(t.push(r),r=[]):r.push(o)}return t.push(r),t}(e),n=0,r=t.length;n<r;n++)if(1==t[n].length&&"none"==t[n][0][1])return!0;return!1}(t.value)}e.exports=function(e,t,n,d){var p,f,m,h,g,v,b,S,C,_,L;e:for(C=e.length-1;C>=0;C--)if(R(f=e[C])&&!f.block){p=c[f.name].canOverride;t:for(_=C-1;_>=0;_--)if(R(m=e[_])&&!m.block&&!m.unused&&!f.unused&&(!m.hack||f.hack||f.important)&&(m.hack||m.important||!f.hack)&&(m.important!=f.important||m.hack[0]==f.hack[0])&&!(m.important==f.important&&(m.hack[0]!=f.hack[0]||m.hack[1]&&m.hack[1]!=f.hack[1])||r(f)||z(m,f)))if(f.shorthand&&a(f,m)){if(!f.important&&m.important)continue;if(!u([m],f.components))continue;if(!A(d.isFunction,m)&&T(f,d))continue;if(!s(f)){m.unused=!0;continue}h=o(f,m),p=c[m.name].canOverride,i(p.bind(null,d),m,h)&&(m.unused=!0)}else if(f.shorthand&&l(f,m)){if(!f.important&&m.important)continue;if(!u([m],f.components))continue;if(!A(d.isFunction,m)&&T(f,d))continue;for(L=(g=m.shorthand?m.components:[m]).length-1;L>=0;L--)if(v=g[L],b=o(f,v),p=c[v.name].canOverride,!i(p.bind(null,d),m,b))continue t;m.unused=!0}else if(t&&m.shorthand&&!f.shorthand&&a(m,f,!0)){if(f.important&&!m.important)continue;if(!f.important&&m.important){f.unused=!0;continue}if(E(e,C-1,m.name))continue;if(T(m,d))continue;if(!s(m))continue;if(h=o(m,f),i(p.bind(null,d),h,f)){var j=!n.properties.backgroundClipMerging&&h.name.indexOf("background-clip")>-1||!n.properties.backgroundOriginMerging&&h.name.indexOf("background-origin")>-1||!n.properties.backgroundSizeMerging&&h.name.indexOf("background-size")>-1,M=c[f.name].nonMergeableValue===f.value[0][1];if(j||M)continue;if(!n.properties.merging&&y(m,d))continue;if(h.value[0][1]!=f.value[0][1]&&(r(m)||r(f)))continue;if(P(m,f))continue;!m.multiplex&&f.multiplex&&k(m,O(f)),x(h,f),m.dirty=!0}}else if(t&&m.shorthand&&f.shorthand&&m.name==f.name){if(!m.multiplex&&f.multiplex)continue;if(!f.important&&m.important){f.unused=!0;continue e}if(f.important&&!m.important){m.unused=!0;continue}if(!s(f)){m.unused=!0;continue}for(L=m.components.length-1;L>=0;L--){var B=m.components[L],W=f.components[L];if(p=c[B.name].canOverride,!i(p.bind(null,d),B,W))continue e}w(m,f),m.dirty=!0}else if(t&&m.shorthand&&f.shorthand&&a(m,f)){if(!m.important&&f.important)continue;if(h=o(m,f),p=c[f.name].canOverride,!i(p.bind(null,d),h,f))continue;if(m.important&&!f.important){f.unused=!0;continue}if(c[f.name].restore(f,c).length>1)continue;x(h=o(m,f),f),f.dirty=!0}else if(m.name==f.name){if(S=!0,f.shorthand)for(L=f.components.length-1;L>=0&&S;L--)v=m.components[L],b=f.components[L],p=c[b.name].canOverride,S=S&&i(p.bind(null,d),v,b);else p=c[f.name].canOverride,S=i(p.bind(null,d),m,f);if(m.important&&!f.important&&S){f.unused=!0;continue}if(!m.important&&f.important&&S){m.unused=!0;continue}if(!S)continue;m.unused=!0}}}},G7ev:function(e,t){t.getArg=function(e,t,n){if(t in e)return e[t];if(3===arguments.length)return n;throw new Error('"'+t+'" is a required argument.')};var n=/^(?:([\w+\-.]+):)?\/\/(?:(\w+:\w+)@)?([\w.-]*)(?::(\d+))?(.*)$/,r=/^data:.+\,.+$/;function i(e){var t=e.match(n);return t?{scheme:t[1],auth:t[2],host:t[3],port:t[4],path:t[5]}:null}function o(e){var t="";return e.scheme&&(t+=e.scheme+":"),t+="//",e.auth&&(t+=e.auth+"@"),e.host&&(t+=e.host),e.port&&(t+=":"+e.port),e.path&&(t+=e.path),t}function a(e){var n=e,r=i(e);if(r){if(!r.path)return e;n=r.path}for(var a,s=t.isAbsolute(n),l=n.split(/\/+/),u=0,c=l.length-1;c>=0;c--)"."===(a=l[c])?l.splice(c,1):".."===a?u++:u>0&&(""===a?(l.splice(c+1,u),u=0):(l.splice(c,2),u--));return""===(n=l.join("/"))&&(n=s?"/":"."),r?(r.path=n,o(r)):n}function s(e,t){""===e&&(e="."),""===t&&(t=".");var n=i(t),s=i(e);if(s&&(e=s.path||"/"),n&&!n.scheme)return s&&(n.scheme=s.scheme),o(n);if(n||t.match(r))return t;if(s&&!s.host&&!s.path)return s.host=t,o(s);var l="/"===t.charAt(0)?t:a(e.replace(/\/+$/,"")+"/"+t);return s?(s.path=l,o(s)):l}t.urlParse=i,t.urlGenerate=o,t.normalize=a,t.join=s,t.isAbsolute=function(e){return"/"===e.charAt(0)||n.test(e)},t.relative=function(e,t){""===e&&(e="."),e=e.replace(/\/$/,"");for(var n=0;0!==t.indexOf(e+"/");){var r=e.lastIndexOf("/");if(r<0)return t;if((e=e.slice(0,r)).match(/^([^\/]+:\/)?\/*$/))return t;++n}return Array(n+1).join("../")+t.substr(e.length+1)};var l=!("__proto__"in Object.create(null));function u(e){return e}function c(e){if(!e)return!1;var t=e.length;if(t<9)return!1;if(95!==e.charCodeAt(t-1)||95!==e.charCodeAt(t-2)||111!==e.charCodeAt(t-3)||116!==e.charCodeAt(t-4)||111!==e.charCodeAt(t-5)||114!==e.charCodeAt(t-6)||112!==e.charCodeAt(t-7)||95!==e.charCodeAt(t-8)||95!==e.charCodeAt(t-9))return!1;for(var n=t-10;n>=0;n--)if(36!==e.charCodeAt(n))return!1;return!0}function d(e,t){return e===t?0:null===e?1:null===t?-1:e>t?1:-1}t.toSetString=l?u:function(e){return c(e)?"$"+e:e},t.fromSetString=l?u:function(e){return c(e)?e.slice(1):e},t.compareByOriginalPositions=function(e,t,n){var r=d(e.source,t.source);return 0!==r||0!==(r=e.originalLine-t.originalLine)||0!==(r=e.originalColumn-t.originalColumn)||n||0!==(r=e.generatedColumn-t.generatedColumn)||0!==(r=e.generatedLine-t.generatedLine)?r:d(e.name,t.name)},t.compareByGeneratedPositionsDeflated=function(e,t,n){var r=e.generatedLine-t.generatedLine;return 0!==r||0!==(r=e.generatedColumn-t.generatedColumn)||n||0!==(r=d(e.source,t.source))||0!==(r=e.originalLine-t.originalLine)||0!==(r=e.originalColumn-t.originalColumn)?r:d(e.name,t.name)},t.compareByGeneratedPositionsInflated=function(e,t){var n=e.generatedLine-t.generatedLine;return 0!==n||0!==(n=e.generatedColumn-t.generatedColumn)||0!==(n=d(e.source,t.source))||0!==(n=e.originalLine-t.originalLine)||0!==(n=e.originalColumn-t.originalColumn)?n:d(e.name,t.name)},t.parseSourceMapInput=function(e){return JSON.parse(e.replace(/^\)]}'[^\n]*\n/,""))},t.computeSourceURL=function(e,t,n){if(t=t||"",e&&("/"!==e[e.length-1]&&"/"!==t[0]&&(e+="/"),t=e+t),n){var r=i(n);if(!r)throw new Error("sourceMapURL could not be parsed");if(r.path){var l=r.path.lastIndexOf("/");l>=0&&(r.path=r.path.substring(0,l+1))}t=s(o(r),t)}return a(t)}},"G9/t":function(e,t,n){var r=n("vd7W").TYPE,i=n("4njK").mode,o=r.AtKeyword,a=r.Semicolon,s=r.LeftCurlyBracket,l=r.RightCurlyBracket;function u(e){return this.Raw(e,i.leftCurlyBracketOrSemicolon,!0)}function c(){for(var e,t=1;e=this.scanner.lookupType(t);t++){if(e===l)return!0;if(e===s||e===o)return!1}return!1}e.exports={name:"Atrule",structure:{name:String,prelude:["AtrulePrelude","Raw",null],block:["Block",null]},parse:function(){var e,t,n=this.scanner.tokenStart,r=null,i=null;switch(this.eat(o),t=(e=this.scanner.substrToCursor(n+1)).toLowerCase(),this.scanner.skipSC(),!1===this.scanner.eof&&this.scanner.tokenType!==s&&this.scanner.tokenType!==a&&(this.parseAtrulePrelude?"AtrulePrelude"===(r=this.parseWithFallback(this.AtrulePrelude.bind(this,e),u)).type&&null===r.children.head&&(r=null):r=u.call(this,this.scanner.tokenIndex),this.scanner.skipSC()),this.scanner.tokenType){case a:this.scanner.next();break;case s:i=this.atrule.hasOwnProperty(t)&&"function"==typeof this.atrule[t].block?this.atrule[t].block.call(this):this.Block(c.call(this))}return{type:"Atrule",loc:this.getLocation(n,this.scanner.tokenStart),name:e,prelude:r,block:i}},generate:function(e){this.chunk("@"),this.chunk(e.name),null!==e.prelude&&(this.chunk(" "),this.node(e.prelude)),e.block?this.node(e.block):this.chunk(";")},walkContext:"atrule"}},GHqe:function(e,t){var n=/^(\w+:\/\/|\/\/)/;e.exports=function(e){return n.test(e)}},GPts:function(e,t,n){(function(t,r){var i=n("Po9p"),o=n("33yf"),a=n("24Ow"),s=n("nWBf"),l=n("eIV0"),u=n("mXTQ"),c=n("hcmY"),d=n("sEUW"),p=n("zdw7"),f=n("c+DE"),m=n("2q0v"),h=n("pEOp"),g=n("dzo0"),v=n("Ttul"),y=n("tQxF"),b=n("Nyyv"),S=n("GHqe");function x(e,t,n){return t.source=void 0,t.sourcesContent[void 0]=e,t.stats.originalSize+=e.length,_(e,t,{inline:t.options.inline},n)}function w(e,t,n){var r,i,o;for(r in e)o=e[r],i=k(r),n.push(O(i)),t.sourcesContent[i]=o.styles,o.sourceMap&&C(o.sourceMap,i,t);return n}function k(e){var t,n,r=o.resolve("");return S(e)?e:(t=o.isAbsolute(e)?e:o.resolve(e),n=o.relative(r,t),c(n))}function C(e,t,n){var r="string"==typeof e?JSON.parse(e):e,i=S(t)?f(r,t):p(r,t||"uri:unknown",n.options.rebaseTo);n.inputSourceMapTracker.track(t,i)}function O(e){return m("url("+e+")","")+v.SEMICOLON}function _(e,t,n,r){var i,a={};return t.source?S(t.source)?(a.fromBase=t.source,a.toBase=t.source):o.isAbsolute(t.source)?(a.fromBase=o.dirname(t.source),a.toBase=t.options.rebaseTo):(a.fromBase=o.dirname(o.resolve(t.source)),a.toBase=t.options.rebaseTo):(a.fromBase=o.resolve(""),a.toBase=t.options.rebaseTo),i=h(e,t),i=d(i,t.options.rebase,t.validator,a),function(e){return!(1==e.length&&"none"==e[0])}(n.inline)?function(e,t,n,r){return E({afterContent:!1,callback:r,errors:t.errors,externalContext:t,fetch:t.options.fetch,inlinedStylesheets:n.inlinedStylesheets||t.inlinedStylesheets,inline:n.inline,inlineRequest:t.options.inlineRequest,inlineTimeout:t.options.inlineTimeout,isRemote:n.isRemote||!1,localOnly:t.localOnly,outputTokens:[],rebaseTo:t.options.rebaseTo,sourceTokens:e,warnings:t.warnings})}(i,t,n,r):r(i)}function E(e){var t,n,r;for(n=0,r=e.sourceTokens.length;n<r;n++){if((t=e.sourceTokens[n])[0]==g.AT_RULE&&b(t[1]))return e.sourceTokens.splice(0,n),T(t,e);t[0]==g.AT_RULE||t[0]==g.COMMENT?e.outputTokens.push(t):(e.outputTokens.push(t),e.afterContent=!0)}return e.sourceTokens=[],e.callback(e.outputTokens)}function T(e,t){var n=s(e[1]),a=n[0],u=n[1],d=e[2];return S(a)?function(e,t,n,i){var o=l(e,!0,i.inline),a=e,s=e in i.externalContext.sourcesContent,u=!y(e);if(i.inlinedStylesheets.indexOf(e)>-1)return i.warnings.push('Ignoring remote @import of "'+e+'" as it has already been imported.'),i.sourceTokens=i.sourceTokens.slice(1),E(i);if(i.localOnly&&i.afterContent)return i.warnings.push('Ignoring remote @import of "'+e+'" as no callback given and after other content.'),i.sourceTokens=i.sourceTokens.slice(1),E(i);if(u)return i.warnings.push('Skipping remote @import of "'+e+'" as no protocol given.'),i.outputTokens=i.outputTokens.concat(i.sourceTokens.slice(0,1)),i.sourceTokens=i.sourceTokens.slice(1),E(i);if(i.localOnly&&!s)return i.warnings.push('Skipping remote @import of "'+e+'" as no callback given.'),i.outputTokens=i.outputTokens.concat(i.sourceTokens.slice(0,1)),i.sourceTokens=i.sourceTokens.slice(1),E(i);if(!o&&i.afterContent)return i.warnings.push('Ignoring remote @import of "'+e+'" as resource is not allowed and after other content.'),i.sourceTokens=i.sourceTokens.slice(1),E(i);if(!o)return i.warnings.push('Skipping remote @import of "'+e+'" as resource is not allowed.'),i.outputTokens=i.outputTokens.concat(i.sourceTokens.slice(0,1)),i.sourceTokens=i.sourceTokens.slice(1),E(i);function c(o,s){return o?(i.errors.push('Broken @import declaration of "'+e+'" - '+o),r.nextTick((function(){i.outputTokens=i.outputTokens.concat(i.sourceTokens.slice(0,1)),i.sourceTokens=i.sourceTokens.slice(1),E(i)}))):(i.inline=i.externalContext.options.inline,i.isRemote=!0,i.externalContext.source=a,i.externalContext.sourcesContent[e]=s,i.externalContext.stats.originalSize+=s.length,_(s,i.externalContext,i,(function(e){return e=A(e,t,n),i.outputTokens=i.outputTokens.concat(e),i.sourceTokens=i.sourceTokens.slice(1),E(i)})))}return i.inlinedStylesheets.push(e),s?c(null,i.externalContext.sourcesContent[e]):i.fetch(e,i.inlineRequest,i.inlineTimeout,c)}(a,u,d,t):function(e,t,n,r){var a,s=o.resolve(""),u=o.isAbsolute(e)?o.resolve(s,"/"==e[0]?e.substring(1):e):o.resolve(r.rebaseTo,e),d=o.relative(s,u),p=l(e,!1,r.inline),f=c(d),m=f in r.externalContext.sourcesContent;if(r.inlinedStylesheets.indexOf(u)>-1)r.warnings.push('Ignoring local @import of "'+e+'" as it has already been imported.');else if(m||i.existsSync(u)&&i.statSync(u).isFile())if(!p&&r.afterContent)r.warnings.push('Ignoring local @import of "'+e+'" as resource is not allowed and after other content.');else if(r.afterContent)r.warnings.push('Ignoring local @import of "'+e+'" as after other content.');else{if(p)return a=m?r.externalContext.sourcesContent[f]:i.readFileSync(u,"utf-8"),r.inlinedStylesheets.push(u),r.inline=r.externalContext.options.inline,r.externalContext.source=f,r.externalContext.sourcesContent[f]=a,r.externalContext.stats.originalSize+=a.length,_(a,r.externalContext,r,(function(e){return e=A(e,t,n),r.outputTokens=r.outputTokens.concat(e),r.sourceTokens=r.sourceTokens.slice(1),E(r)}));r.warnings.push('Skipping local @import of "'+e+'" as resource is not allowed.'),r.outputTokens=r.outputTokens.concat(r.sourceTokens.slice(0,1))}else r.errors.push('Ignoring local @import of "'+e+'" as resource is missing.');return r.sourceTokens=r.sourceTokens.slice(1),E(r)}(a,u,d,t)}function A(e,t,n){return t?[[g.NESTED_BLOCK,[[g.NESTED_BLOCK_SCOPE,"@media "+t,n]],e]]:e}e.exports=function(e,n,r){return function(e,n,r){if("string"==typeof e)return x(e,n,r);if(t.isBuffer(e))return x(e.toString(),n,r);if(Array.isArray(e))return function(e,t,n){return _(e.reduce((function(e,n){return"string"==typeof n?function(e,t){return t.push(O(k(e))),t}(n,e):w(n,t,e)}),[]).join(""),t,{inline:["all"]},n)}(e,n,r);if("object"==typeof e)return function(e,t,n){return _(w(e,t,[]).join(""),t,{inline:["all"]},n)}(e,n,r)}(e,n,(function(e){return a(e,n,(function(){return u(n,(function(){return r(e)}))}))}))}}).call(this,n("HDXh").Buffer,n("8oxB"))},GYWy:function(e,t,n){(function(e,r){var i;/*! https://mths.be/punycode v1.4.1 by @mathias */!function(o){t&&t.nodeType,e&&e.nodeType;var a="object"==typeof r&&r;a.global!==a&&a.window!==a&&a.self;var s,l=2147483647,u=/^xn--/,c=/[^\x20-\x7E]/,d=/[\x2E\u3002\uFF0E\uFF61]/g,p={overflow:"Overflow: input needs wider integers to process","not-basic":"Illegal input >= 0x80 (not a basic code point)","invalid-input":"Invalid input"},f=Math.floor,m=String.fromCharCode;function h(e){throw new RangeError(p[e])}function g(e,t){for(var n=e.length,r=[];n--;)r[n]=t(e[n]);return r}function v(e,t){var n=e.split("@"),r="";return n.length>1&&(r=n[0]+"@",e=n[1]),r+g((e=e.replace(d,".")).split("."),t).join(".")}function y(e){for(var t,n,r=[],i=0,o=e.length;i<o;)(t=e.charCodeAt(i++))>=55296&&t<=56319&&i<o?56320==(64512&(n=e.charCodeAt(i++)))?r.push(((1023&t)<<10)+(1023&n)+65536):(r.push(t),i--):r.push(t);return r}function b(e){return g(e,(function(e){var t="";return e>65535&&(t+=m((e-=65536)>>>10&1023|55296),e=56320|1023&e),t+=m(e)})).join("")}function S(e,t){return e+22+75*(e<26)-((0!=t)<<5)}function x(e,t,n){var r=0;for(e=n?f(e/700):e>>1,e+=f(e/t);e>455;r+=36)e=f(e/35);return f(r+36*e/(e+38))}function w(e){var t,n,r,i,o,a,s,u,c,d,p,m=[],g=e.length,v=0,y=128,S=72;for((n=e.lastIndexOf("-"))<0&&(n=0),r=0;r<n;++r)e.charCodeAt(r)>=128&&h("not-basic"),m.push(e.charCodeAt(r));for(i=n>0?n+1:0;i<g;){for(o=v,a=1,s=36;i>=g&&h("invalid-input"),((u=(p=e.charCodeAt(i++))-48<10?p-22:p-65<26?p-65:p-97<26?p-97:36)>=36||u>f((l-v)/a))&&h("overflow"),v+=u*a,!(u<(c=s<=S?1:s>=S+26?26:s-S));s+=36)a>f(l/(d=36-c))&&h("overflow"),a*=d;S=x(v-o,t=m.length+1,0==o),f(v/t)>l-y&&h("overflow"),y+=f(v/t),v%=t,m.splice(v++,0,y)}return b(m)}function k(e){var t,n,r,i,o,a,s,u,c,d,p,g,v,b,w,k=[];for(g=(e=y(e)).length,t=128,n=0,o=72,a=0;a<g;++a)(p=e[a])<128&&k.push(m(p));for(r=i=k.length,i&&k.push("-");r<g;){for(s=l,a=0;a<g;++a)(p=e[a])>=t&&p<s&&(s=p);for(s-t>f((l-n)/(v=r+1))&&h("overflow"),n+=(s-t)*v,t=s,a=0;a<g;++a)if((p=e[a])<t&&++n>l&&h("overflow"),p==t){for(u=n,c=36;!(u<(d=c<=o?1:c>=o+26?26:c-o));c+=36)w=u-d,b=36-d,k.push(m(S(d+w%b,0))),u=f(w/b);k.push(m(S(u,0))),o=x(n,v,r==i),n=0,++r}++n,++t}return k.join("")}s={version:"1.4.1",ucs2:{decode:y,encode:b},decode:w,encode:k,toASCII:function(e){return v(e,(function(e){return c.test(e)?"xn--"+k(e):e}))},toUnicode:function(e){return v(e,(function(e){return u.test(e)?w(e.slice(4).toLowerCase()):e}))}},void 0===(i=function(){return s}.call(t,n,t,e))||(e.exports=i)}()}).call(this,n("YuTi")(e),n("yLpj"))},Gtba:function(e,t,n){e.exports=n("+qE3").EventEmitter},H7XF:function(e,t,n){"use strict";t.byteLength=function(e){var t=u(e),n=t[0],r=t[1];return 3*(n+r)/4-r},t.toByteArray=function(e){var t,n,r=u(e),a=r[0],s=r[1],l=new o(function(e,t,n){return 3*(t+n)/4-n}(0,a,s)),c=0,d=s>0?a-4:a;for(n=0;n<d;n+=4)t=i[e.charCodeAt(n)]<<18|i[e.charCodeAt(n+1)]<<12|i[e.charCodeAt(n+2)]<<6|i[e.charCodeAt(n+3)],l[c++]=t>>16&255,l[c++]=t>>8&255,l[c++]=255&t;2===s&&(t=i[e.charCodeAt(n)]<<2|i[e.charCodeAt(n+1)]>>4,l[c++]=255&t);1===s&&(t=i[e.charCodeAt(n)]<<10|i[e.charCodeAt(n+1)]<<4|i[e.charCodeAt(n+2)]>>2,l[c++]=t>>8&255,l[c++]=255&t);return l},t.fromByteArray=function(e){for(var t,n=e.length,i=n%3,o=[],a=0,s=n-i;a<s;a+=16383)o.push(c(e,a,a+16383>s?s:a+16383));1===i?(t=e[n-1],o.push(r[t>>2]+r[t<<4&63]+"==")):2===i&&(t=(e[n-2]<<8)+e[n-1],o.push(r[t>>10]+r[t>>4&63]+r[t<<2&63]+"="));return o.join("")};for(var r=[],i=[],o="undefined"!=typeof Uint8Array?Uint8Array:Array,a="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",s=0,l=a.length;s<l;++s)r[s]=a[s],i[a.charCodeAt(s)]=s;function u(e){var t=e.length;if(t%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var n=e.indexOf("=");return-1===n&&(n=t),[n,n===t?0:4-n%4]}function c(e,t,n){for(var i,o,a=[],s=t;s<n;s+=3)i=(e[s]<<16&16711680)+(e[s+1]<<8&65280)+(255&e[s+2]),a.push(r[(o=i)>>18&63]+r[o>>12&63]+r[o>>6&63]+r[63&o]);return a.join("")}i["-".charCodeAt(0)]=62,i["_".charCodeAt(0)]=63},HDXh:function(e,t,n){"use strict";(function(e){
|
26 |
-
/*!
|
27 |
-
* The buffer module from node.js, for the browser.
|
28 |
-
*
|
29 |
-
* @author Feross Aboukhadijeh <http://feross.org>
|
30 |
-
* @license MIT
|
31 |
-
*/
|
32 |
-
var r=n("H7XF"),i=n("kVK+"),o=n("49sm");function a(){return l.TYPED_ARRAY_SUPPORT?2147483647:1073741823}function s(e,t){if(a()<t)throw new RangeError("Invalid typed array length");return l.TYPED_ARRAY_SUPPORT?(e=new Uint8Array(t)).__proto__=l.prototype:(null===e&&(e=new l(t)),e.length=t),e}function l(e,t,n){if(!(l.TYPED_ARRAY_SUPPORT||this instanceof l))return new l(e,t,n);if("number"==typeof e){if("string"==typeof t)throw new Error("If encoding is specified then the first argument must be a string");return d(this,e)}return u(this,e,t,n)}function u(e,t,n,r){if("number"==typeof t)throw new TypeError('"value" argument must not be a number');return"undefined"!=typeof ArrayBuffer&&t instanceof ArrayBuffer?function(e,t,n,r){if(t.byteLength,n<0||t.byteLength<n)throw new RangeError("'offset' is out of bounds");if(t.byteLength<n+(r||0))throw new RangeError("'length' is out of bounds");t=void 0===n&&void 0===r?new Uint8Array(t):void 0===r?new Uint8Array(t,n):new Uint8Array(t,n,r);l.TYPED_ARRAY_SUPPORT?(e=t).__proto__=l.prototype:e=p(e,t);return e}(e,t,n,r):"string"==typeof t?function(e,t,n){"string"==typeof n&&""!==n||(n="utf8");if(!l.isEncoding(n))throw new TypeError('"encoding" must be a valid string encoding');var r=0|m(t,n),i=(e=s(e,r)).write(t,n);i!==r&&(e=e.slice(0,i));return e}(e,t,n):function(e,t){if(l.isBuffer(t)){var n=0|f(t.length);return 0===(e=s(e,n)).length||t.copy(e,0,0,n),e}if(t){if("undefined"!=typeof ArrayBuffer&&t.buffer instanceof ArrayBuffer||"length"in t)return"number"!=typeof t.length||(r=t.length)!=r?s(e,0):p(e,t);if("Buffer"===t.type&&o(t.data))return p(e,t.data)}var r;throw new TypeError("First argument must be a string, Buffer, ArrayBuffer, Array, or array-like object.")}(e,t)}function c(e){if("number"!=typeof e)throw new TypeError('"size" argument must be a number');if(e<0)throw new RangeError('"size" argument must not be negative')}function d(e,t){if(c(t),e=s(e,t<0?0:0|f(t)),!l.TYPED_ARRAY_SUPPORT)for(var n=0;n<t;++n)e[n]=0;return e}function p(e,t){var n=t.length<0?0:0|f(t.length);e=s(e,n);for(var r=0;r<n;r+=1)e[r]=255&t[r];return e}function f(e){if(e>=a())throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+a().toString(16)+" bytes");return 0|e}function m(e,t){if(l.isBuffer(e))return e.length;if("undefined"!=typeof ArrayBuffer&&"function"==typeof ArrayBuffer.isView&&(ArrayBuffer.isView(e)||e instanceof ArrayBuffer))return e.byteLength;"string"!=typeof e&&(e=""+e);var n=e.length;if(0===n)return 0;for(var r=!1;;)switch(t){case"ascii":case"latin1":case"binary":return n;case"utf8":case"utf-8":case void 0:return D(e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*n;case"hex":return n>>>1;case"base64":return U(e).length;default:if(r)return D(e).length;t=(""+t).toLowerCase(),r=!0}}function h(e,t,n){var r=!1;if((void 0===t||t<0)&&(t=0),t>this.length)return"";if((void 0===n||n>this.length)&&(n=this.length),n<=0)return"";if((n>>>=0)<=(t>>>=0))return"";for(e||(e="utf8");;)switch(e){case"hex":return A(this,t,n);case"utf8":case"utf-8":return _(this,t,n);case"ascii":return E(this,t,n);case"latin1":case"binary":return T(this,t,n);case"base64":return O(this,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return P(this,t,n);default:if(r)throw new TypeError("Unknown encoding: "+e);e=(e+"").toLowerCase(),r=!0}}function g(e,t,n){var r=e[t];e[t]=e[n],e[n]=r}function v(e,t,n,r,i){if(0===e.length)return-1;if("string"==typeof n?(r=n,n=0):n>2147483647?n=2147483647:n<-2147483648&&(n=-2147483648),n=+n,isNaN(n)&&(n=i?0:e.length-1),n<0&&(n=e.length+n),n>=e.length){if(i)return-1;n=e.length-1}else if(n<0){if(!i)return-1;n=0}if("string"==typeof t&&(t=l.from(t,r)),l.isBuffer(t))return 0===t.length?-1:y(e,t,n,r,i);if("number"==typeof t)return t&=255,l.TYPED_ARRAY_SUPPORT&&"function"==typeof Uint8Array.prototype.indexOf?i?Uint8Array.prototype.indexOf.call(e,t,n):Uint8Array.prototype.lastIndexOf.call(e,t,n):y(e,[t],n,r,i);throw new TypeError("val must be string, number or Buffer")}function y(e,t,n,r,i){var o,a=1,s=e.length,l=t.length;if(void 0!==r&&("ucs2"===(r=String(r).toLowerCase())||"ucs-2"===r||"utf16le"===r||"utf-16le"===r)){if(e.length<2||t.length<2)return-1;a=2,s/=2,l/=2,n/=2}function u(e,t){return 1===a?e[t]:e.readUInt16BE(t*a)}if(i){var c=-1;for(o=n;o<s;o++)if(u(e,o)===u(t,-1===c?0:o-c)){if(-1===c&&(c=o),o-c+1===l)return c*a}else-1!==c&&(o-=o-c),c=-1}else for(n+l>s&&(n=s-l),o=n;o>=0;o--){for(var d=!0,p=0;p<l;p++)if(u(e,o+p)!==u(t,p)){d=!1;break}if(d)return o}return-1}function b(e,t,n,r){n=Number(n)||0;var i=e.length-n;r?(r=Number(r))>i&&(r=i):r=i;var o=t.length;if(o%2!=0)throw new TypeError("Invalid hex string");r>o/2&&(r=o/2);for(var a=0;a<r;++a){var s=parseInt(t.substr(2*a,2),16);if(isNaN(s))return a;e[n+a]=s}return a}function S(e,t,n,r){return q(D(t,e.length-n),e,n,r)}function x(e,t,n,r){return q(function(e){for(var t=[],n=0;n<e.length;++n)t.push(255&e.charCodeAt(n));return t}(t),e,n,r)}function w(e,t,n,r){return x(e,t,n,r)}function k(e,t,n,r){return q(U(t),e,n,r)}function C(e,t,n,r){return q(function(e,t){for(var n,r,i,o=[],a=0;a<e.length&&!((t-=2)<0);++a)n=e.charCodeAt(a),r=n>>8,i=n%256,o.push(i),o.push(r);return o}(t,e.length-n),e,n,r)}function O(e,t,n){return 0===t&&n===e.length?r.fromByteArray(e):r.fromByteArray(e.slice(t,n))}function _(e,t,n){n=Math.min(e.length,n);for(var r=[],i=t;i<n;){var o,a,s,l,u=e[i],c=null,d=u>239?4:u>223?3:u>191?2:1;if(i+d<=n)switch(d){case 1:u<128&&(c=u);break;case 2:128==(192&(o=e[i+1]))&&(l=(31&u)<<6|63&o)>127&&(c=l);break;case 3:o=e[i+1],a=e[i+2],128==(192&o)&&128==(192&a)&&(l=(15&u)<<12|(63&o)<<6|63&a)>2047&&(l<55296||l>57343)&&(c=l);break;case 4:o=e[i+1],a=e[i+2],s=e[i+3],128==(192&o)&&128==(192&a)&&128==(192&s)&&(l=(15&u)<<18|(63&o)<<12|(63&a)<<6|63&s)>65535&&l<1114112&&(c=l)}null===c?(c=65533,d=1):c>65535&&(c-=65536,r.push(c>>>10&1023|55296),c=56320|1023&c),r.push(c),i+=d}return function(e){var t=e.length;if(t<=4096)return String.fromCharCode.apply(String,e);var n="",r=0;for(;r<t;)n+=String.fromCharCode.apply(String,e.slice(r,r+=4096));return n}(r)}t.Buffer=l,t.SlowBuffer=function(e){+e!=e&&(e=0);return l.alloc(+e)},t.INSPECT_MAX_BYTES=50,l.TYPED_ARRAY_SUPPORT=void 0!==e.TYPED_ARRAY_SUPPORT?e.TYPED_ARRAY_SUPPORT:function(){try{var e=new Uint8Array(1);return e.__proto__={__proto__:Uint8Array.prototype,foo:function(){return 42}},42===e.foo()&&"function"==typeof e.subarray&&0===e.subarray(1,1).byteLength}catch(e){return!1}}(),t.kMaxLength=a(),l.poolSize=8192,l._augment=function(e){return e.__proto__=l.prototype,e},l.from=function(e,t,n){return u(null,e,t,n)},l.TYPED_ARRAY_SUPPORT&&(l.prototype.__proto__=Uint8Array.prototype,l.__proto__=Uint8Array,"undefined"!=typeof Symbol&&Symbol.species&&l[Symbol.species]===l&&Object.defineProperty(l,Symbol.species,{value:null,configurable:!0})),l.alloc=function(e,t,n){return function(e,t,n,r){return c(t),t<=0?s(e,t):void 0!==n?"string"==typeof r?s(e,t).fill(n,r):s(e,t).fill(n):s(e,t)}(null,e,t,n)},l.allocUnsafe=function(e){return d(null,e)},l.allocUnsafeSlow=function(e){return d(null,e)},l.isBuffer=function(e){return!(null==e||!e._isBuffer)},l.compare=function(e,t){if(!l.isBuffer(e)||!l.isBuffer(t))throw new TypeError("Arguments must be Buffers");if(e===t)return 0;for(var n=e.length,r=t.length,i=0,o=Math.min(n,r);i<o;++i)if(e[i]!==t[i]){n=e[i],r=t[i];break}return n<r?-1:r<n?1:0},l.isEncoding=function(e){switch(String(e).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},l.concat=function(e,t){if(!o(e))throw new TypeError('"list" argument must be an Array of Buffers');if(0===e.length)return l.alloc(0);var n;if(void 0===t)for(t=0,n=0;n<e.length;++n)t+=e[n].length;var r=l.allocUnsafe(t),i=0;for(n=0;n<e.length;++n){var a=e[n];if(!l.isBuffer(a))throw new TypeError('"list" argument must be an Array of Buffers');a.copy(r,i),i+=a.length}return r},l.byteLength=m,l.prototype._isBuffer=!0,l.prototype.swap16=function(){var e=this.length;if(e%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var t=0;t<e;t+=2)g(this,t,t+1);return this},l.prototype.swap32=function(){var e=this.length;if(e%4!=0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(var t=0;t<e;t+=4)g(this,t,t+3),g(this,t+1,t+2);return this},l.prototype.swap64=function(){var e=this.length;if(e%8!=0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(var t=0;t<e;t+=8)g(this,t,t+7),g(this,t+1,t+6),g(this,t+2,t+5),g(this,t+3,t+4);return this},l.prototype.toString=function(){var e=0|this.length;return 0===e?"":0===arguments.length?_(this,0,e):h.apply(this,arguments)},l.prototype.equals=function(e){if(!l.isBuffer(e))throw new TypeError("Argument must be a Buffer");return this===e||0===l.compare(this,e)},l.prototype.inspect=function(){var e="",n=t.INSPECT_MAX_BYTES;return this.length>0&&(e=this.toString("hex",0,n).match(/.{2}/g).join(" "),this.length>n&&(e+=" ... ")),"<Buffer "+e+">"},l.prototype.compare=function(e,t,n,r,i){if(!l.isBuffer(e))throw new TypeError("Argument must be a Buffer");if(void 0===t&&(t=0),void 0===n&&(n=e?e.length:0),void 0===r&&(r=0),void 0===i&&(i=this.length),t<0||n>e.length||r<0||i>this.length)throw new RangeError("out of range index");if(r>=i&&t>=n)return 0;if(r>=i)return-1;if(t>=n)return 1;if(this===e)return 0;for(var o=(i>>>=0)-(r>>>=0),a=(n>>>=0)-(t>>>=0),s=Math.min(o,a),u=this.slice(r,i),c=e.slice(t,n),d=0;d<s;++d)if(u[d]!==c[d]){o=u[d],a=c[d];break}return o<a?-1:a<o?1:0},l.prototype.includes=function(e,t,n){return-1!==this.indexOf(e,t,n)},l.prototype.indexOf=function(e,t,n){return v(this,e,t,n,!0)},l.prototype.lastIndexOf=function(e,t,n){return v(this,e,t,n,!1)},l.prototype.write=function(e,t,n,r){if(void 0===t)r="utf8",n=this.length,t=0;else if(void 0===n&&"string"==typeof t)r=t,n=this.length,t=0;else{if(!isFinite(t))throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");t|=0,isFinite(n)?(n|=0,void 0===r&&(r="utf8")):(r=n,n=void 0)}var i=this.length-t;if((void 0===n||n>i)&&(n=i),e.length>0&&(n<0||t<0)||t>this.length)throw new RangeError("Attempt to write outside buffer bounds");r||(r="utf8");for(var o=!1;;)switch(r){case"hex":return b(this,e,t,n);case"utf8":case"utf-8":return S(this,e,t,n);case"ascii":return x(this,e,t,n);case"latin1":case"binary":return w(this,e,t,n);case"base64":return k(this,e,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return C(this,e,t,n);default:if(o)throw new TypeError("Unknown encoding: "+r);r=(""+r).toLowerCase(),o=!0}},l.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};function E(e,t,n){var r="";n=Math.min(e.length,n);for(var i=t;i<n;++i)r+=String.fromCharCode(127&e[i]);return r}function T(e,t,n){var r="";n=Math.min(e.length,n);for(var i=t;i<n;++i)r+=String.fromCharCode(e[i]);return r}function A(e,t,n){var r=e.length;(!t||t<0)&&(t=0),(!n||n<0||n>r)&&(n=r);for(var i="",o=t;o<n;++o)i+=I(e[o]);return i}function P(e,t,n){for(var r=e.slice(t,n),i="",o=0;o<r.length;o+=2)i+=String.fromCharCode(r[o]+256*r[o+1]);return i}function R(e,t,n){if(e%1!=0||e<0)throw new RangeError("offset is not uint");if(e+t>n)throw new RangeError("Trying to access beyond buffer length")}function z(e,t,n,r,i,o){if(!l.isBuffer(e))throw new TypeError('"buffer" argument must be a Buffer instance');if(t>i||t<o)throw new RangeError('"value" argument is out of bounds');if(n+r>e.length)throw new RangeError("Index out of range")}function L(e,t,n,r){t<0&&(t=65535+t+1);for(var i=0,o=Math.min(e.length-n,2);i<o;++i)e[n+i]=(t&255<<8*(r?i:1-i))>>>8*(r?i:1-i)}function j(e,t,n,r){t<0&&(t=4294967295+t+1);for(var i=0,o=Math.min(e.length-n,4);i<o;++i)e[n+i]=t>>>8*(r?i:3-i)&255}function M(e,t,n,r,i,o){if(n+r>e.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("Index out of range")}function B(e,t,n,r,o){return o||M(e,0,n,4),i.write(e,t,n,r,23,4),n+4}function W(e,t,n,r,o){return o||M(e,0,n,8),i.write(e,t,n,r,52,8),n+8}l.prototype.slice=function(e,t){var n,r=this.length;if((e=~~e)<0?(e+=r)<0&&(e=0):e>r&&(e=r),(t=void 0===t?r:~~t)<0?(t+=r)<0&&(t=0):t>r&&(t=r),t<e&&(t=e),l.TYPED_ARRAY_SUPPORT)(n=this.subarray(e,t)).__proto__=l.prototype;else{var i=t-e;n=new l(i,void 0);for(var o=0;o<i;++o)n[o]=this[o+e]}return n},l.prototype.readUIntLE=function(e,t,n){e|=0,t|=0,n||R(e,t,this.length);for(var r=this[e],i=1,o=0;++o<t&&(i*=256);)r+=this[e+o]*i;return r},l.prototype.readUIntBE=function(e,t,n){e|=0,t|=0,n||R(e,t,this.length);for(var r=this[e+--t],i=1;t>0&&(i*=256);)r+=this[e+--t]*i;return r},l.prototype.readUInt8=function(e,t){return t||R(e,1,this.length),this[e]},l.prototype.readUInt16LE=function(e,t){return t||R(e,2,this.length),this[e]|this[e+1]<<8},l.prototype.readUInt16BE=function(e,t){return t||R(e,2,this.length),this[e]<<8|this[e+1]},l.prototype.readUInt32LE=function(e,t){return t||R(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+16777216*this[e+3]},l.prototype.readUInt32BE=function(e,t){return t||R(e,4,this.length),16777216*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},l.prototype.readIntLE=function(e,t,n){e|=0,t|=0,n||R(e,t,this.length);for(var r=this[e],i=1,o=0;++o<t&&(i*=256);)r+=this[e+o]*i;return r>=(i*=128)&&(r-=Math.pow(2,8*t)),r},l.prototype.readIntBE=function(e,t,n){e|=0,t|=0,n||R(e,t,this.length);for(var r=t,i=1,o=this[e+--r];r>0&&(i*=256);)o+=this[e+--r]*i;return o>=(i*=128)&&(o-=Math.pow(2,8*t)),o},l.prototype.readInt8=function(e,t){return t||R(e,1,this.length),128&this[e]?-1*(255-this[e]+1):this[e]},l.prototype.readInt16LE=function(e,t){t||R(e,2,this.length);var n=this[e]|this[e+1]<<8;return 32768&n?4294901760|n:n},l.prototype.readInt16BE=function(e,t){t||R(e,2,this.length);var n=this[e+1]|this[e]<<8;return 32768&n?4294901760|n:n},l.prototype.readInt32LE=function(e,t){return t||R(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},l.prototype.readInt32BE=function(e,t){return t||R(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},l.prototype.readFloatLE=function(e,t){return t||R(e,4,this.length),i.read(this,e,!0,23,4)},l.prototype.readFloatBE=function(e,t){return t||R(e,4,this.length),i.read(this,e,!1,23,4)},l.prototype.readDoubleLE=function(e,t){return t||R(e,8,this.length),i.read(this,e,!0,52,8)},l.prototype.readDoubleBE=function(e,t){return t||R(e,8,this.length),i.read(this,e,!1,52,8)},l.prototype.writeUIntLE=function(e,t,n,r){(e=+e,t|=0,n|=0,r)||z(this,e,t,n,Math.pow(2,8*n)-1,0);var i=1,o=0;for(this[t]=255&e;++o<n&&(i*=256);)this[t+o]=e/i&255;return t+n},l.prototype.writeUIntBE=function(e,t,n,r){(e=+e,t|=0,n|=0,r)||z(this,e,t,n,Math.pow(2,8*n)-1,0);var i=n-1,o=1;for(this[t+i]=255&e;--i>=0&&(o*=256);)this[t+i]=e/o&255;return t+n},l.prototype.writeUInt8=function(e,t,n){return e=+e,t|=0,n||z(this,e,t,1,255,0),l.TYPED_ARRAY_SUPPORT||(e=Math.floor(e)),this[t]=255&e,t+1},l.prototype.writeUInt16LE=function(e,t,n){return e=+e,t|=0,n||z(this,e,t,2,65535,0),l.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8):L(this,e,t,!0),t+2},l.prototype.writeUInt16BE=function(e,t,n){return e=+e,t|=0,n||z(this,e,t,2,65535,0),l.TYPED_ARRAY_SUPPORT?(this[t]=e>>>8,this[t+1]=255&e):L(this,e,t,!1),t+2},l.prototype.writeUInt32LE=function(e,t,n){return e=+e,t|=0,n||z(this,e,t,4,4294967295,0),l.TYPED_ARRAY_SUPPORT?(this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e):j(this,e,t,!0),t+4},l.prototype.writeUInt32BE=function(e,t,n){return e=+e,t|=0,n||z(this,e,t,4,4294967295,0),l.TYPED_ARRAY_SUPPORT?(this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e):j(this,e,t,!1),t+4},l.prototype.writeIntLE=function(e,t,n,r){if(e=+e,t|=0,!r){var i=Math.pow(2,8*n-1);z(this,e,t,n,i-1,-i)}var o=0,a=1,s=0;for(this[t]=255&e;++o<n&&(a*=256);)e<0&&0===s&&0!==this[t+o-1]&&(s=1),this[t+o]=(e/a>>0)-s&255;return t+n},l.prototype.writeIntBE=function(e,t,n,r){if(e=+e,t|=0,!r){var i=Math.pow(2,8*n-1);z(this,e,t,n,i-1,-i)}var o=n-1,a=1,s=0;for(this[t+o]=255&e;--o>=0&&(a*=256);)e<0&&0===s&&0!==this[t+o+1]&&(s=1),this[t+o]=(e/a>>0)-s&255;return t+n},l.prototype.writeInt8=function(e,t,n){return e=+e,t|=0,n||z(this,e,t,1,127,-128),l.TYPED_ARRAY_SUPPORT||(e=Math.floor(e)),e<0&&(e=255+e+1),this[t]=255&e,t+1},l.prototype.writeInt16LE=function(e,t,n){return e=+e,t|=0,n||z(this,e,t,2,32767,-32768),l.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8):L(this,e,t,!0),t+2},l.prototype.writeInt16BE=function(e,t,n){return e=+e,t|=0,n||z(this,e,t,2,32767,-32768),l.TYPED_ARRAY_SUPPORT?(this[t]=e>>>8,this[t+1]=255&e):L(this,e,t,!1),t+2},l.prototype.writeInt32LE=function(e,t,n){return e=+e,t|=0,n||z(this,e,t,4,2147483647,-2147483648),l.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24):j(this,e,t,!0),t+4},l.prototype.writeInt32BE=function(e,t,n){return e=+e,t|=0,n||z(this,e,t,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),l.TYPED_ARRAY_SUPPORT?(this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e):j(this,e,t,!1),t+4},l.prototype.writeFloatLE=function(e,t,n){return B(this,e,t,!0,n)},l.prototype.writeFloatBE=function(e,t,n){return B(this,e,t,!1,n)},l.prototype.writeDoubleLE=function(e,t,n){return W(this,e,t,!0,n)},l.prototype.writeDoubleBE=function(e,t,n){return W(this,e,t,!1,n)},l.prototype.copy=function(e,t,n,r){if(n||(n=0),r||0===r||(r=this.length),t>=e.length&&(t=e.length),t||(t=0),r>0&&r<n&&(r=n),r===n)return 0;if(0===e.length||0===this.length)return 0;if(t<0)throw new RangeError("targetStart out of bounds");if(n<0||n>=this.length)throw new RangeError("sourceStart out of bounds");if(r<0)throw new RangeError("sourceEnd out of bounds");r>this.length&&(r=this.length),e.length-t<r-n&&(r=e.length-t+n);var i,o=r-n;if(this===e&&n<t&&t<r)for(i=o-1;i>=0;--i)e[i+t]=this[i+n];else if(o<1e3||!l.TYPED_ARRAY_SUPPORT)for(i=0;i<o;++i)e[i+t]=this[i+n];else Uint8Array.prototype.set.call(e,this.subarray(n,n+o),t);return o},l.prototype.fill=function(e,t,n,r){if("string"==typeof e){if("string"==typeof t?(r=t,t=0,n=this.length):"string"==typeof n&&(r=n,n=this.length),1===e.length){var i=e.charCodeAt(0);i<256&&(e=i)}if(void 0!==r&&"string"!=typeof r)throw new TypeError("encoding must be a string");if("string"==typeof r&&!l.isEncoding(r))throw new TypeError("Unknown encoding: "+r)}else"number"==typeof e&&(e&=255);if(t<0||this.length<t||this.length<n)throw new RangeError("Out of range index");if(n<=t)return this;var o;if(t>>>=0,n=void 0===n?this.length:n>>>0,e||(e=0),"number"==typeof e)for(o=t;o<n;++o)this[o]=e;else{var a=l.isBuffer(e)?e:D(new l(e,r).toString()),s=a.length;for(o=0;o<n-t;++o)this[o+t]=a[o%s]}return this};var N=/[^+\/0-9A-Za-z-_]/g;function I(e){return e<16?"0"+e.toString(16):e.toString(16)}function D(e,t){var n;t=t||1/0;for(var r=e.length,i=null,o=[],a=0;a<r;++a){if((n=e.charCodeAt(a))>55295&&n<57344){if(!i){if(n>56319){(t-=3)>-1&&o.push(239,191,189);continue}if(a+1===r){(t-=3)>-1&&o.push(239,191,189);continue}i=n;continue}if(n<56320){(t-=3)>-1&&o.push(239,191,189),i=n;continue}n=65536+(i-55296<<10|n-56320)}else i&&(t-=3)>-1&&o.push(239,191,189);if(i=null,n<128){if((t-=1)<0)break;o.push(n)}else if(n<2048){if((t-=2)<0)break;o.push(n>>6|192,63&n|128)}else if(n<65536){if((t-=3)<0)break;o.push(n>>12|224,n>>6&63|128,63&n|128)}else{if(!(n<1114112))throw new Error("Invalid code point");if((t-=4)<0)break;o.push(n>>18|240,n>>12&63|128,n>>6&63|128,63&n|128)}}return o}function U(e){return r.toByteArray(function(e){if((e=function(e){return e.trim?e.trim():e.replace(/^\s+|\s+$/g,"")}(e).replace(N,"")).length<2)return"";for(;e.length%4!=0;)e+="=";return e}(e))}function q(e,t,n,r){for(var i=0;i<r&&!(i+n>=t.length||i>=e.length);++i)t[i+n]=e[i];return i}}).call(this,n("yLpj"))},HHXC:function(e,t){e.exports={name:"Operator",structure:{value:String},parse:function(){var e=this.scanner.tokenStart;return this.scanner.next(),{type:"Operator",loc:this.getLocation(e,this.scanner.tokenStart),value:this.scanner.substrToCursor(e)}},generate:function(e){this.chunk(e.value)}}},HOgr:function(e,t,n){var r=n("vd7W").TYPE.CDO;e.exports={name:"CDO",structure:[],parse:function(){var e=this.scanner.tokenStart;return this.eat(r),{type:"CDO",loc:this.getLocation(e,this.scanner.tokenStart)}},generate:function(){this.chunk("\x3c!--")}}},HUOe:function(e,t,n){const r=n("iCWw"),{removeIgnoredPseudoElements:i}=n("uogJ"),{minifyCss:o}=n("tL3E");e.exports=async function({browserInterface:e,progressCallback:t,urls:n,viewports:a,filters:s}){t||(t=()=>{});try{const l=1+n.length*a.length;let u=0;const c=await r.collate(e,n);t(++u,l),c.applyFilters(s||{});const d=c.collateSelectorPages(),p=Object.keys(d),f=p.reduce((e,t)=>(e[t]=i(t),e),{}),m=new Set,h=new Set;for(const r of n){const n=await e.runInPage(r,null,(e,t,n)=>t.filter(t=>{try{return!!e.document.querySelector(n[t])}catch(e){return!1}}),p,f);n.filter(e=>!d[e].has(r)).forEach(e=>h.add(e));for(const i of a){t(++u,l);(await e.runInPage(r,i,(e,t,n)=>{const r=t=>{const n=t.style.clear||"";t.style.clear="none";const r=t.getBoundingClientRect();return t.style.clear=n,r.top<e.innerHeight};return t.filter(t=>{if("*"===n[t])return!0;const i=e.document.querySelectorAll(n[t]);for(const e of i)if(r(e))return!0;return!1})},n,f)).forEach(e=>m.add(e))}}for(const e of h)m.delete(e);const g=c.prunedAsts(m),[v,y]=o(g.map(e=>e.toCSS()).join("\n"));return[v,c.getErrors().concat(y)]}finally{e.cleanup()}}},HvLG:function(e,t,n){var r=n("vd7W").TYPE,i=r.Delim,o=r.Ident,a=r.Dimension,s=r.Percentage,l=r.Number,u=r.Hash,c=r.Colon,d=r.LeftSquareBracket;e.exports={getNode:function(e){switch(this.scanner.tokenType){case d:return this.AttributeSelector();case u:return this.IdSelector();case c:return this.scanner.lookupType(1)===c?this.PseudoElementSelector():this.PseudoClassSelector();case o:return this.TypeSelector();case l:case s:return this.Percentage();case a:46===this.scanner.source.charCodeAt(this.scanner.tokenStart)&&this.error("Identifier is expected",this.scanner.tokenStart+1);break;case i:switch(this.scanner.source.charCodeAt(this.scanner.tokenStart)){case 43:case 62:case 126:return e.space=null,e.ignoreWSAfter=!0,this.Combinator();case 47:return this.Combinator();case 46:return this.ClassSelector();case 42:case 124:return this.TypeSelector();case 35:return this.IdSelector()}}}}},"I2+Y":function(e,t){var n=/([0-9]+)/;function r(e){return""+parseInt(e)==e?parseInt(e):e}e.exports=function(e,t){var i,o,a,s,l=(""+e).split(n).map(r),u=(""+t).split(n).map(r);for(a=0,s=Math.min(l.length,u.length);a<s;a++)if((i=l[a])!=(o=u[a]))return i>o?1:-1;return l.length>u.length?1:l.length==u.length?0:-1}},IeWP:function(e,t){e.exports=function(e){for(var t=e.value.length-1;t>=0;t--)if("inherit"==e.value[t][1])return!0;return!1}},IiZa:function(e,t,n){var r=n("7WHS"),i=Object.prototype.hasOwnProperty,o="undefined"!=typeof Map;function a(){this._array=[],this._set=o?new Map:Object.create(null)}a.fromArray=function(e,t){for(var n=new a,r=0,i=e.length;r<i;r++)n.add(e[r],t);return n},a.prototype.size=function(){return o?this._set.size:Object.getOwnPropertyNames(this._set).length},a.prototype.add=function(e,t){var n=o?e:r.toSetString(e),a=o?this.has(e):i.call(this._set,n),s=this._array.length;a&&!t||this._array.push(e),a||(o?this._set.set(e,s):this._set[n]=s)},a.prototype.has=function(e){if(o)return this._set.has(e);var t=r.toSetString(e);return i.call(this._set,t)},a.prototype.indexOf=function(e){if(o){var t=this._set.get(e);if(t>=0)return t}else{var n=r.toSetString(e);if(i.call(this._set,n))return this._set[n]}throw new Error('"'+e+'" is not in the set.')},a.prototype.at=function(e){if(e>=0&&e<this._array.length)return this._array[e];throw new Error("No element indexed by "+e)},a.prototype.toArray=function(){return this._array.slice()},t.ArraySet=a},IrtM:function(e,t,n){const r=n("0uey"),{ConfigurationError:i}=n("XQQa");e.exports=class extends r{constructor(e){super(),this.pages=e}async runInPage(e,t,n,...r){const o=this.pages[e];if(!o)throw new i({message:"Puppeteer interface does not include URL "+e});t&&await o.setViewport(t);const a=await o.evaluateHandle(()=>a);return o.evaluate(n,a,...r)}}},Iyun:function(e,t,n){var r=n("vd7W").cmpChar,i=n("vd7W").isDigit,o=n("vd7W").TYPE,a=o.WhiteSpace,s=o.Comment,l=o.Ident,u=o.Number,c=o.Dimension,d=110;function p(e,t){var n=this.scanner.tokenStart+e,r=this.scanner.source.charCodeAt(n);for(43!==r&&45!==r||(t&&this.error("Number sign is not allowed"),n++);n<this.scanner.tokenEnd;n++)i(this.scanner.source.charCodeAt(n))||this.error("Integer is expected",n)}function f(e){return p.call(this,0,e)}function m(e,t){if(!r(this.scanner.source,this.scanner.tokenStart+e,t)){var n="";switch(t){case d:n="N is expected";break;case 45:n="HyphenMinus is expected"}this.error(n,this.scanner.tokenStart+e)}}function h(){for(var e=0,t=0,n=this.scanner.tokenType;n===a||n===s;)n=this.scanner.lookupType(++e);if(n!==u){if(!this.scanner.isDelim(43,e)&&!this.scanner.isDelim(45,e))return null;t=this.scanner.isDelim(43,e)?43:45;do{n=this.scanner.lookupType(++e)}while(n===a||n===s);n!==u&&(this.scanner.skip(e),f.call(this,!0))}return e>0&&this.scanner.skip(e),0===t&&43!==(n=this.scanner.source.charCodeAt(this.scanner.tokenStart))&&45!==n&&this.error("Number sign is expected"),f.call(this,0!==t),45===t?"-"+this.consume(u):this.consume(u)}e.exports={name:"AnPlusB",structure:{a:[String,null],b:[String,null]},parse:function(){var e=this.scanner.tokenStart,t=null,n=null;if(this.scanner.tokenType===u)f.call(this,!1),n=this.consume(u);else if(this.scanner.tokenType===l&&r(this.scanner.source,this.scanner.tokenStart,45))switch(t="-1",m.call(this,1,d),this.scanner.getTokenLength()){case 2:this.scanner.next(),n=h.call(this);break;case 3:m.call(this,2,45),this.scanner.next(),this.scanner.skipSC(),f.call(this,!0),n="-"+this.consume(u);break;default:m.call(this,2,45),p.call(this,3,!0),this.scanner.next(),n=this.scanner.substrToCursor(e+2)}else if(this.scanner.tokenType===l||this.scanner.isDelim(43)&&this.scanner.lookupType(1)===l){var o=0;switch(t="1",this.scanner.isDelim(43)&&(o=1,this.scanner.next()),m.call(this,0,d),this.scanner.getTokenLength()){case 1:this.scanner.next(),n=h.call(this);break;case 2:m.call(this,1,45),this.scanner.next(),this.scanner.skipSC(),f.call(this,!0),n="-"+this.consume(u);break;default:m.call(this,1,45),p.call(this,2,!0),this.scanner.next(),n=this.scanner.substrToCursor(e+o+1)}}else if(this.scanner.tokenType===c){for(var a=this.scanner.source.charCodeAt(this.scanner.tokenStart),s=(o=43===a||45===a,this.scanner.tokenStart+o);s<this.scanner.tokenEnd&&i(this.scanner.source.charCodeAt(s));s++);s===this.scanner.tokenStart+o&&this.error("Integer is expected",this.scanner.tokenStart+o),m.call(this,s-this.scanner.tokenStart,d),t=this.scanner.source.substring(e,s),s+1===this.scanner.tokenEnd?(this.scanner.next(),n=h.call(this)):(m.call(this,s-this.scanner.tokenStart+1,45),s+2===this.scanner.tokenEnd?(this.scanner.next(),this.scanner.skipSC(),f.call(this,!0),n="-"+this.consume(u)):(p.call(this,s-this.scanner.tokenStart+2,!0),this.scanner.next(),n=this.scanner.substrToCursor(s+1)))}else this.error();return null!==t&&43===t.charCodeAt(0)&&(t=t.substr(1)),null!==n&&43===n.charCodeAt(0)&&(n=n.substr(1)),{type:"AnPlusB",loc:this.getLocation(e,this.scanner.tokenStart),a:t,b:n}},generate:function(e){var t=null!==e.a&&void 0!==e.a,n=null!==e.b&&void 0!==e.b;t?(this.chunk("+1"===e.a?"+n":"1"===e.a?"n":"-1"===e.a?"-n":e.a+"n"),n&&("-"===(n=String(e.b)).charAt(0)||"+"===n.charAt(0)?(this.chunk(n.charAt(0)),this.chunk(n.substr(1))):(this.chunk("+"),this.chunk(n)))):this.chunk(String(e.b))}}},"J/fw":function(e,t,n){var r=n("Ttul"),i=n("gvu7"),o=/\/deep\//,a=/^::/,s=[":dir",":lang",":not",":nth-child",":nth-last-child",":nth-last-of-type",":nth-of-type"],l=/[>\+~]/,u=[":after",":before",":first-letter",":first-line",":lang"],c=["::after","::before","::first-letter","::first-line"],d="double-quote",p="single-quote",f="root";function m(e){return o.test(e)}function h(e){var t,n,i,o,a,s,u=[],c=[],m=f,h=0,g=!1,v=!1;for(a=0,s=e.length;a<s;a++)t=e[a],o=!i&&l.test(t),n=m==d||m==p,i?c.push(t):t==r.DOUBLE_QUOTE&&m==f?(c.push(t),m=d):t==r.DOUBLE_QUOTE&&m==d?(c.push(t),m=f):t==r.SINGLE_QUOTE&&m==f?(c.push(t),m=p):t==r.SINGLE_QUOTE&&m==p?(c.push(t),m=f):n?c.push(t):t==r.OPEN_ROUND_BRACKET?(c.push(t),h++):t==r.CLOSE_ROUND_BRACKET&&1==h&&g?(c.push(t),u.push(c.join("")),h--,c=[],g=!1):t==r.CLOSE_ROUND_BRACKET?(c.push(t),h--):t==r.COLON&&0===h&&g&&!v?(u.push(c.join("")),(c=[]).push(t)):t!=r.COLON||0!==h||v?t==r.SPACE&&0===h&&g||o&&0===h&&g?(u.push(c.join("")),c=[],g=!1):c.push(t):((c=[]).push(t),g=!0),i=t==r.BACK_SLASH,v=t==r.COLON;return c.length>0&&g&&u.push(c.join("")),u}function g(e,t,n,i,o){return function(e,t,n){var i,o,a,s;for(a=0,s=e.length;a<s;a++)if(i=e[a],o=i.indexOf(r.OPEN_ROUND_BRACKET)>-1?i.substring(0,i.indexOf(r.OPEN_ROUND_BRACKET)):i,-1===t.indexOf(o)&&-1===n.indexOf(o))return!1;return!0}(t,n,i)&&function(e){var t,n,i,o,a,l;for(a=0,l=e.length;a<l;a++){if(t=e[a],i=t.indexOf(r.OPEN_ROUND_BRACKET),n=(o=i>-1)?t.substring(0,i):t,o&&-1==s.indexOf(n))return!1;if(!o&&s.indexOf(n)>-1)return!1}return!0}(t)&&(t.length<2||!function(e,t){var n,i,o,a,s,l,u,c,d=0;for(u=0,c=t.length;u<c&&(n=t[u],o=t[u+1]);u++)if(i=e.indexOf(n,d),a=e.indexOf(n,i+1),d=a,i+n.length==a&&(s=n.indexOf(r.OPEN_ROUND_BRACKET)>-1?n.substring(0,n.indexOf(r.OPEN_ROUND_BRACKET)):n,l=o.indexOf(r.OPEN_ROUND_BRACKET)>-1?o.substring(0,o.indexOf(r.OPEN_ROUND_BRACKET)):o,":not"!=s||":not"!=l))return!0;return!1}(e,t))&&(t.length<2||o&&function(e){var t,n,r,i=0;for(n=0,r=e.length;n<r;n++)if(t=e[n],o=t,a.test(o)?i+=c.indexOf(t)>-1?1:0:i+=u.indexOf(t)>-1?1:0,i>1)return!1;var o;return!0}(t))}e.exports=function(e,t,n,o){var a,s,l,u=i(e,r.COMMA);for(s=0,l=u.length;s<l;s++)if(0===(a=u[s]).length||m(a)||a.indexOf(r.COLON)>-1&&!g(a,h(a),t,n,o))return!1;return!0}},J0X1:function(e,t){var n="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".split("");t.encode=function(e){if(0<=e&&e<n.length)return n[e];throw new TypeError("Must be between 0 and 63: "+e)},t.decode=function(e){return 65<=e&&e<=90?e-65:97<=e&&e<=122?e-97+26:48<=e&&e<=57?e-48+52:43==e?62:47==e?63:-1}},JPgR:function(e,t,n){var r=n("lJCZ"),i=n("CxY0"),o=e.exports;for(var a in r)r.hasOwnProperty(a)&&(o[a]=r[a]);function s(e){if("string"==typeof e&&(e=i.parse(e)),e.protocol||(e.protocol="https:"),"https:"!==e.protocol)throw new Error('Protocol "'+e.protocol+'" not supported. Expected "https:"');return e}o.request=function(e,t){return e=s(e),r.request.call(this,e,t)},o.get=function(e,t){return e=s(e),r.get.call(this,e,t)}},JU3k:function(e,t,n){var r=n("G7ev"),i=Object.prototype.hasOwnProperty,o="undefined"!=typeof Map;function a(){this._array=[],this._set=o?new Map:Object.create(null)}a.fromArray=function(e,t){for(var n=new a,r=0,i=e.length;r<i;r++)n.add(e[r],t);return n},a.prototype.size=function(){return o?this._set.size:Object.getOwnPropertyNames(this._set).length},a.prototype.add=function(e,t){var n=o?e:r.toSetString(e),a=o?this.has(e):i.call(this._set,n),s=this._array.length;a&&!t||this._array.push(e),a||(o?this._set.set(e,s):this._set[n]=s)},a.prototype.has=function(e){if(o)return this._set.has(e);var t=r.toSetString(e);return i.call(this._set,t)},a.prototype.indexOf=function(e){if(o){var t=this._set.get(e);if(t>=0)return t}else{var n=r.toSetString(e);if(i.call(this._set,n))return this._set[n]}throw new Error('"'+e+'" is not in the set.')},a.prototype.at=function(e){if(e>=0&&e<this._array.length)return this._array[e];throw new Error("No element indexed by "+e)},a.prototype.toArray=function(){return this._array.slice()},t.ArraySet=a},JYkG:function(e,t,n){"use strict";(function(e){var r=n("q1tI");n("WyMB");const i=Object(r.createContext)({slots:{},fills:{},registerSlot:()=>{void 0!==e&&Object({NODE_ENV:"production"})},updateSlot:()=>{},unregisterSlot:()=>{},registerFill:()=>{},unregisterFill:()=>{}});t.a=i}).call(this,n("8oxB"))},JhqQ:function(e,t,n){var r=n("BNLM");function i(e,t){var n;return e in t||(t[e]=n=r(e)),n||t[e]}e.exports=function(e,t,n){var r,o,a,s,l,u;for(a=0,s=e.length;a<s;a++)for(r=i(e[a][1],n),l=0,u=t.length;l<u;l++)if(o=i(t[l][1],n),r[0]===o[0]&&r[1]===o[1]&&r[2]===o[2])return!0;return!1}},KJPY:function(e,t,n){(function(t){var r=n("33yf"),i=n("CxY0"),o=/^["']/,a=/["']$/,s=/[\(\)]/,l=/^url\(/i,u=/\)$/,c=/\s/,d="win32"==t.platform;function p(e,t){return t?function(e){return r.isAbsolute(e)}(e)&&!f(t.toBase)||f(e)||function(e){return"#"==e[0]}(e)||function(e){return/^\w+:\w+/.test(e)}(e)?e:function(e){return 0===e.indexOf("data:")}(e)?"'"+e+"'":f(t.toBase)?i.resolve(t.toBase,e):t.absolute?m(function(e,t){return r.resolve(r.join(t.fromBase||"",e)).replace(t.toBase,"")}(e,t)):m(function(e,t){return r.relative(t.toBase,r.join(t.fromBase||"",e))}(e,t)):e}function f(e){return/^[^:]+?:\/\//.test(e)||0===e.indexOf("//")}function m(e){return d?e.replace(/\\/g,"/"):e}function h(e){return e.indexOf("'")>-1?'"':e.indexOf('"')>-1||function(e){return c.test(e)}(e)||function(e){return s.test(e)}(e)?"'":""}e.exports=function(e,t,n){var r=e.replace(l,"").replace(u,"").trim(),i=r.replace(o,"").replace(a,"").trim(),s="'"==r[0]||'"'==r[0]?r[0]:h(i);return n?p(i,t):"url("+s+p(i,t)+s+")"}}).call(this,n("8oxB"))},KW4y:function(e,t,n){var r=n("0GbM");e.exports={generic:!0,types:r.types,atrules:r.atrules,properties:r.properties,node:n("585i")}},KaxQ:function(e){e.exports=JSON.parse('{"absolute-size":{"syntax":"xx-small | x-small | small | medium | large | x-large | xx-large | xxx-large"},"alpha-value":{"syntax":"<number> | <percentage>"},"angle-percentage":{"syntax":"<angle> | <percentage>"},"angular-color-hint":{"syntax":"<angle-percentage>"},"angular-color-stop":{"syntax":"<color> && <color-stop-angle>?"},"angular-color-stop-list":{"syntax":"[ <angular-color-stop> [, <angular-color-hint>]? ]# , <angular-color-stop>"},"animateable-feature":{"syntax":"scroll-position | contents | <custom-ident>"},"attachment":{"syntax":"scroll | fixed | local"},"attr()":{"syntax":"attr( <attr-name> <type-or-unit>? [, <attr-fallback> ]? )"},"attr-matcher":{"syntax":"[ \'~\' | \'|\' | \'^\' | \'$\' | \'*\' ]? \'=\'"},"attr-modifier":{"syntax":"i | s"},"attribute-selector":{"syntax":"\'[\' <wq-name> \']\' | \'[\' <wq-name> <attr-matcher> [ <string-token> | <ident-token> ] <attr-modifier>? \']\'"},"auto-repeat":{"syntax":"repeat( [ auto-fill | auto-fit ] , [ <line-names>? <fixed-size> ]+ <line-names>? )"},"auto-track-list":{"syntax":"[ <line-names>? [ <fixed-size> | <fixed-repeat> ] ]* <line-names>? <auto-repeat>\\n[ <line-names>? [ <fixed-size> | <fixed-repeat> ] ]* <line-names>?"},"baseline-position":{"syntax":"[ first | last ]? baseline"},"basic-shape":{"syntax":"<inset()> | <circle()> | <ellipse()> | <polygon()> | <path()>"},"bg-image":{"syntax":"none | <image>"},"bg-layer":{"syntax":"<bg-image> || <bg-position> [ / <bg-size> ]? || <repeat-style> || <attachment> || <box> || <box>"},"bg-position":{"syntax":"[ [ left | center | right | top | bottom | <length-percentage> ] | [ left | center | right | <length-percentage> ] [ top | center | bottom | <length-percentage> ] | [ center | [ left | right ] <length-percentage>? ] && [ center | [ top | bottom ] <length-percentage>? ] ]"},"bg-size":{"syntax":"[ <length-percentage> | auto ]{1,2} | cover | contain"},"blur()":{"syntax":"blur( <length> )"},"blend-mode":{"syntax":"normal | multiply | screen | overlay | darken | lighten | color-dodge | color-burn | hard-light | soft-light | difference | exclusion | hue | saturation | color | luminosity"},"box":{"syntax":"border-box | padding-box | content-box"},"brightness()":{"syntax":"brightness( <number-percentage> )"},"calc()":{"syntax":"calc( <calc-sum> )"},"calc-sum":{"syntax":"<calc-product> [ [ \'+\' | \'-\' ] <calc-product> ]*"},"calc-product":{"syntax":"<calc-value> [ \'*\' <calc-value> | \'/\' <number> ]*"},"calc-value":{"syntax":"<number> | <dimension> | <percentage> | ( <calc-sum> )"},"cf-final-image":{"syntax":"<image> | <color>"},"cf-mixing-image":{"syntax":"<percentage>? && <image>"},"circle()":{"syntax":"circle( [ <shape-radius> ]? [ at <position> ]? )"},"clamp()":{"syntax":"clamp( <calc-sum>#{3} )"},"class-selector":{"syntax":"\'.\' <ident-token>"},"clip-source":{"syntax":"<url>"},"color":{"syntax":"<rgb()> | <rgba()> | <hsl()> | <hsla()> | <hex-color> | <named-color> | currentcolor | <deprecated-system-color>"},"color-stop":{"syntax":"<color-stop-length> | <color-stop-angle>"},"color-stop-angle":{"syntax":"<angle-percentage>{1,2}"},"color-stop-length":{"syntax":"<length-percentage>{1,2}"},"color-stop-list":{"syntax":"[ <linear-color-stop> [, <linear-color-hint>]? ]# , <linear-color-stop>"},"combinator":{"syntax":"\'>\' | \'+\' | \'~\' | [ \'||\' ]"},"common-lig-values":{"syntax":"[ common-ligatures | no-common-ligatures ]"},"compat-auto":{"syntax":"searchfield | textarea | push-button | slider-horizontal | checkbox | radio | square-button | menulist | listbox | meter | progress-bar | button"},"composite-style":{"syntax":"clear | copy | source-over | source-in | source-out | source-atop | destination-over | destination-in | destination-out | destination-atop | xor"},"compositing-operator":{"syntax":"add | subtract | intersect | exclude"},"compound-selector":{"syntax":"[ <type-selector>? <subclass-selector>* [ <pseudo-element-selector> <pseudo-class-selector>* ]* ]!"},"compound-selector-list":{"syntax":"<compound-selector>#"},"complex-selector":{"syntax":"<compound-selector> [ <combinator>? <compound-selector> ]*"},"complex-selector-list":{"syntax":"<complex-selector>#"},"conic-gradient()":{"syntax":"conic-gradient( [ from <angle> ]? [ at <position> ]?, <angular-color-stop-list> )"},"contextual-alt-values":{"syntax":"[ contextual | no-contextual ]"},"content-distribution":{"syntax":"space-between | space-around | space-evenly | stretch"},"content-list":{"syntax":"[ <string> | contents | <image> | <quote> | <target> | <leader()> ]+"},"content-position":{"syntax":"center | start | end | flex-start | flex-end"},"content-replacement":{"syntax":"<image>"},"contrast()":{"syntax":"contrast( [ <number-percentage> ] )"},"counter()":{"syntax":"counter( <custom-ident>, <counter-style>? )"},"counter-style":{"syntax":"<counter-style-name> | symbols()"},"counter-style-name":{"syntax":"<custom-ident>"},"counters()":{"syntax":"counters( <custom-ident>, <string>, <counter-style>? )"},"cross-fade()":{"syntax":"cross-fade( <cf-mixing-image> , <cf-final-image>? )"},"cubic-bezier-timing-function":{"syntax":"ease | ease-in | ease-out | ease-in-out | cubic-bezier(<number [0,1]>, <number>, <number [0,1]>, <number>)"},"deprecated-system-color":{"syntax":"ActiveBorder | ActiveCaption | AppWorkspace | Background | ButtonFace | ButtonHighlight | ButtonShadow | ButtonText | CaptionText | GrayText | Highlight | HighlightText | InactiveBorder | InactiveCaption | InactiveCaptionText | InfoBackground | InfoText | Menu | MenuText | Scrollbar | ThreeDDarkShadow | ThreeDFace | ThreeDHighlight | ThreeDLightShadow | ThreeDShadow | Window | WindowFrame | WindowText"},"discretionary-lig-values":{"syntax":"[ discretionary-ligatures | no-discretionary-ligatures ]"},"display-box":{"syntax":"contents | none"},"display-inside":{"syntax":"flow | flow-root | table | flex | grid | ruby"},"display-internal":{"syntax":"table-row-group | table-header-group | table-footer-group | table-row | table-cell | table-column-group | table-column | table-caption | ruby-base | ruby-text | ruby-base-container | ruby-text-container"},"display-legacy":{"syntax":"inline-block | inline-list-item | inline-table | inline-flex | inline-grid"},"display-listitem":{"syntax":"<display-outside>? && [ flow | flow-root ]? && list-item"},"display-outside":{"syntax":"block | inline | run-in"},"drop-shadow()":{"syntax":"drop-shadow( <length>{2,3} <color>? )"},"east-asian-variant-values":{"syntax":"[ jis78 | jis83 | jis90 | jis04 | simplified | traditional ]"},"east-asian-width-values":{"syntax":"[ full-width | proportional-width ]"},"element()":{"syntax":"element( <id-selector> )"},"ellipse()":{"syntax":"ellipse( [ <shape-radius>{2} ]? [ at <position> ]? )"},"ending-shape":{"syntax":"circle | ellipse"},"env()":{"syntax":"env( <custom-ident> , <declaration-value>? )"},"explicit-track-list":{"syntax":"[ <line-names>? <track-size> ]+ <line-names>?"},"family-name":{"syntax":"<string> | <custom-ident>+"},"feature-tag-value":{"syntax":"<string> [ <integer> | on | off ]?"},"feature-type":{"syntax":"@stylistic | @historical-forms | @styleset | @character-variant | @swash | @ornaments | @annotation"},"feature-value-block":{"syntax":"<feature-type> \'{\' <feature-value-declaration-list> \'}\'"},"feature-value-block-list":{"syntax":"<feature-value-block>+"},"feature-value-declaration":{"syntax":"<custom-ident>: <integer>+;"},"feature-value-declaration-list":{"syntax":"<feature-value-declaration>"},"feature-value-name":{"syntax":"<custom-ident>"},"fill-rule":{"syntax":"nonzero | evenodd"},"filter-function":{"syntax":"<blur()> | <brightness()> | <contrast()> | <drop-shadow()> | <grayscale()> | <hue-rotate()> | <invert()> | <opacity()> | <saturate()> | <sepia()>"},"filter-function-list":{"syntax":"[ <filter-function> | <url> ]+"},"final-bg-layer":{"syntax":"<\'background-color\'> || <bg-image> || <bg-position> [ / <bg-size> ]? || <repeat-style> || <attachment> || <box> || <box>"},"fit-content()":{"syntax":"fit-content( [ <length> | <percentage> ] )"},"fixed-breadth":{"syntax":"<length-percentage>"},"fixed-repeat":{"syntax":"repeat( [ <positive-integer> ] , [ <line-names>? <fixed-size> ]+ <line-names>? )"},"fixed-size":{"syntax":"<fixed-breadth> | minmax( <fixed-breadth> , <track-breadth> ) | minmax( <inflexible-breadth> , <fixed-breadth> )"},"font-stretch-absolute":{"syntax":"normal | ultra-condensed | extra-condensed | condensed | semi-condensed | semi-expanded | expanded | extra-expanded | ultra-expanded | <percentage>"},"font-variant-css21":{"syntax":"[ normal | small-caps ]"},"font-weight-absolute":{"syntax":"normal | bold | <number [1,1000]>"},"frequency-percentage":{"syntax":"<frequency> | <percentage>"},"general-enclosed":{"syntax":"[ <function-token> <any-value> ) ] | ( <ident> <any-value> )"},"generic-family":{"syntax":"serif | sans-serif | cursive | fantasy | monospace"},"generic-name":{"syntax":"serif | sans-serif | cursive | fantasy | monospace"},"geometry-box":{"syntax":"<shape-box> | fill-box | stroke-box | view-box"},"gradient":{"syntax":"<linear-gradient()> | <repeating-linear-gradient()> | <radial-gradient()> | <repeating-radial-gradient()> | <conic-gradient()>"},"grayscale()":{"syntax":"grayscale( <number-percentage> )"},"grid-line":{"syntax":"auto | <custom-ident> | [ <integer> && <custom-ident>? ] | [ span && [ <integer> || <custom-ident> ] ]"},"historical-lig-values":{"syntax":"[ historical-ligatures | no-historical-ligatures ]"},"hsl()":{"syntax":"hsl( <hue> <percentage> <percentage> [ / <alpha-value> ]? ) | hsl( <hue>, <percentage>, <percentage>, <alpha-value>? )"},"hsla()":{"syntax":"hsla( <hue> <percentage> <percentage> [ / <alpha-value> ]? ) | hsla( <hue>, <percentage>, <percentage>, <alpha-value>? )"},"hue":{"syntax":"<number> | <angle>"},"hue-rotate()":{"syntax":"hue-rotate( <angle> )"},"id-selector":{"syntax":"<hash-token>"},"image":{"syntax":"<url> | <image()> | <image-set()> | <element()> | <paint()> | <cross-fade()> | <gradient>"},"image()":{"syntax":"image( <image-tags>? [ <image-src>? , <color>? ]! )"},"image-set()":{"syntax":"image-set( <image-set-option># )"},"image-set-option":{"syntax":"[ <image> | <string> ] <resolution>"},"image-src":{"syntax":"<url> | <string>"},"image-tags":{"syntax":"ltr | rtl"},"inflexible-breadth":{"syntax":"<length> | <percentage> | min-content | max-content | auto"},"inset()":{"syntax":"inset( <length-percentage>{1,4} [ round <\'border-radius\'> ]? )"},"invert()":{"syntax":"invert( <number-percentage> )"},"keyframes-name":{"syntax":"<custom-ident> | <string>"},"keyframe-block":{"syntax":"<keyframe-selector># {\\n <declaration-list>\\n}"},"keyframe-block-list":{"syntax":"<keyframe-block>+"},"keyframe-selector":{"syntax":"from | to | <percentage>"},"leader()":{"syntax":"leader( <leader-type> )"},"leader-type":{"syntax":"dotted | solid | space | <string>"},"length-percentage":{"syntax":"<length> | <percentage>"},"line-names":{"syntax":"\'[\' <custom-ident>* \']\'"},"line-name-list":{"syntax":"[ <line-names> | <name-repeat> ]+"},"line-style":{"syntax":"none | hidden | dotted | dashed | solid | double | groove | ridge | inset | outset"},"line-width":{"syntax":"<length> | thin | medium | thick"},"linear-color-hint":{"syntax":"<length-percentage>"},"linear-color-stop":{"syntax":"<color> <color-stop-length>?"},"linear-gradient()":{"syntax":"linear-gradient( [ <angle> | to <side-or-corner> ]? , <color-stop-list> )"},"mask-layer":{"syntax":"<mask-reference> || <position> [ / <bg-size> ]? || <repeat-style> || <geometry-box> || [ <geometry-box> | no-clip ] || <compositing-operator> || <masking-mode>"},"mask-position":{"syntax":"[ <length-percentage> | left | center | right ] [ <length-percentage> | top | center | bottom ]?"},"mask-reference":{"syntax":"none | <image> | <mask-source>"},"mask-source":{"syntax":"<url>"},"masking-mode":{"syntax":"alpha | luminance | match-source"},"matrix()":{"syntax":"matrix( <number>#{6} )"},"matrix3d()":{"syntax":"matrix3d( <number>#{16} )"},"max()":{"syntax":"max( <calc-sum># )"},"media-and":{"syntax":"<media-in-parens> [ and <media-in-parens> ]+"},"media-condition":{"syntax":"<media-not> | <media-and> | <media-or> | <media-in-parens>"},"media-condition-without-or":{"syntax":"<media-not> | <media-and> | <media-in-parens>"},"media-feature":{"syntax":"( [ <mf-plain> | <mf-boolean> | <mf-range> ] )"},"media-in-parens":{"syntax":"( <media-condition> ) | <media-feature> | <general-enclosed>"},"media-not":{"syntax":"not <media-in-parens>"},"media-or":{"syntax":"<media-in-parens> [ or <media-in-parens> ]+"},"media-query":{"syntax":"<media-condition> | [ not | only ]? <media-type> [ and <media-condition-without-or> ]?"},"media-query-list":{"syntax":"<media-query>#"},"media-type":{"syntax":"<ident>"},"mf-boolean":{"syntax":"<mf-name>"},"mf-name":{"syntax":"<ident>"},"mf-plain":{"syntax":"<mf-name> : <mf-value>"},"mf-range":{"syntax":"<mf-name> [ \'<\' | \'>\' ]? \'=\'? <mf-value>\\n| <mf-value> [ \'<\' | \'>\' ]? \'=\'? <mf-name>\\n| <mf-value> \'<\' \'=\'? <mf-name> \'<\' \'=\'? <mf-value>\\n| <mf-value> \'>\' \'=\'? <mf-name> \'>\' \'=\'? <mf-value>"},"mf-value":{"syntax":"<number> | <dimension> | <ident> | <ratio>"},"min()":{"syntax":"min( <calc-sum># )"},"minmax()":{"syntax":"minmax( [ <length> | <percentage> | min-content | max-content | auto ] , [ <length> | <percentage> | <flex> | min-content | max-content | auto ] )"},"named-color":{"syntax":"transparent | aliceblue | antiquewhite | aqua | aquamarine | azure | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | cadetblue | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | green | greenyellow | grey | honeydew | hotpink | indianred | indigo | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | 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 | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | seagreen | seashell | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | tomato | turquoise | violet | wheat | white | whitesmoke | yellow | yellowgreen"},"namespace-prefix":{"syntax":"<ident>"},"ns-prefix":{"syntax":"[ <ident-token> | \'*\' ]? \'|\'"},"number-percentage":{"syntax":"<number> | <percentage>"},"numeric-figure-values":{"syntax":"[ lining-nums | oldstyle-nums ]"},"numeric-fraction-values":{"syntax":"[ diagonal-fractions | stacked-fractions ]"},"numeric-spacing-values":{"syntax":"[ proportional-nums | tabular-nums ]"},"nth":{"syntax":"<an-plus-b> | even | odd"},"opacity()":{"syntax":"opacity( [ <number-percentage> ] )"},"overflow-position":{"syntax":"unsafe | safe"},"outline-radius":{"syntax":"<length> | <percentage>"},"page-body":{"syntax":"<declaration>? [ ; <page-body> ]? | <page-margin-box> <page-body>"},"page-margin-box":{"syntax":"<page-margin-box-type> \'{\' <declaration-list> \'}\'"},"page-margin-box-type":{"syntax":"@top-left-corner | @top-left | @top-center | @top-right | @top-right-corner | @bottom-left-corner | @bottom-left | @bottom-center | @bottom-right | @bottom-right-corner | @left-top | @left-middle | @left-bottom | @right-top | @right-middle | @right-bottom"},"page-selector-list":{"syntax":"[ <page-selector># ]?"},"page-selector":{"syntax":"<pseudo-page>+ | <ident> <pseudo-page>*"},"path()":{"syntax":"path( [ <fill-rule>, ]? <string> )"},"paint()":{"syntax":"paint( <ident>, <declaration-value>? )"},"perspective()":{"syntax":"perspective( <length> )"},"polygon()":{"syntax":"polygon( <fill-rule>? , [ <length-percentage> <length-percentage> ]# )"},"position":{"syntax":"[ [ left | center | right ] || [ top | center | bottom ] | [ left | center | right | <length-percentage> ] [ top | center | bottom | <length-percentage> ]? | [ [ left | right ] <length-percentage> ] && [ [ top | bottom ] <length-percentage> ] ]"},"pseudo-class-selector":{"syntax":"\':\' <ident-token> | \':\' <function-token> <any-value> \')\'"},"pseudo-element-selector":{"syntax":"\':\' <pseudo-class-selector>"},"pseudo-page":{"syntax":": [ left | right | first | blank ]"},"quote":{"syntax":"open-quote | close-quote | no-open-quote | no-close-quote"},"radial-gradient()":{"syntax":"radial-gradient( [ <ending-shape> || <size> ]? [ at <position> ]? , <color-stop-list> )"},"relative-selector":{"syntax":"<combinator>? <complex-selector>"},"relative-selector-list":{"syntax":"<relative-selector>#"},"relative-size":{"syntax":"larger | smaller"},"repeat-style":{"syntax":"repeat-x | repeat-y | [ repeat | space | round | no-repeat ]{1,2}"},"repeating-linear-gradient()":{"syntax":"repeating-linear-gradient( [ <angle> | to <side-or-corner> ]? , <color-stop-list> )"},"repeating-radial-gradient()":{"syntax":"repeating-radial-gradient( [ <ending-shape> || <size> ]? [ at <position> ]? , <color-stop-list> )"},"rgb()":{"syntax":"rgb( <percentage>{3} [ / <alpha-value> ]? ) | rgb( <number>{3} [ / <alpha-value> ]? ) | rgb( <percentage>#{3} , <alpha-value>? ) | rgb( <number>#{3} , <alpha-value>? )"},"rgba()":{"syntax":"rgba( <percentage>{3} [ / <alpha-value> ]? ) | rgba( <number>{3} [ / <alpha-value> ]? ) | rgba( <percentage>#{3} , <alpha-value>? ) | rgba( <number>#{3} , <alpha-value>? )"},"rotate()":{"syntax":"rotate( [ <angle> | <zero> ] )"},"rotate3d()":{"syntax":"rotate3d( <number> , <number> , <number> , [ <angle> | <zero> ] )"},"rotateX()":{"syntax":"rotateX( [ <angle> | <zero> ] )"},"rotateY()":{"syntax":"rotateY( [ <angle> | <zero> ] )"},"rotateZ()":{"syntax":"rotateZ( [ <angle> | <zero> ] )"},"saturate()":{"syntax":"saturate( <number-percentage> )"},"scale()":{"syntax":"scale( <number> , <number>? )"},"scale3d()":{"syntax":"scale3d( <number> , <number> , <number> )"},"scaleX()":{"syntax":"scaleX( <number> )"},"scaleY()":{"syntax":"scaleY( <number> )"},"scaleZ()":{"syntax":"scaleZ( <number> )"},"self-position":{"syntax":"center | start | end | self-start | self-end | flex-start | flex-end"},"shape-radius":{"syntax":"<length-percentage> | closest-side | farthest-side"},"skew()":{"syntax":"skew( [ <angle> | <zero> ] , [ <angle> | <zero> ]? )"},"skewX()":{"syntax":"skewX( [ <angle> | <zero> ] )"},"skewY()":{"syntax":"skewY( [ <angle> | <zero> ] )"},"sepia()":{"syntax":"sepia( <number-percentage> )"},"shadow":{"syntax":"inset? && <length>{2,4} && <color>?"},"shadow-t":{"syntax":"[ <length>{2,3} && <color>? ]"},"shape":{"syntax":"rect(<top>, <right>, <bottom>, <left>)"},"shape-box":{"syntax":"<box> | margin-box"},"side-or-corner":{"syntax":"[ left | right ] || [ top | bottom ]"},"single-animation":{"syntax":"<time> || <timing-function> || <time> || <single-animation-iteration-count> || <single-animation-direction> || <single-animation-fill-mode> || <single-animation-play-state> || [ none | <keyframes-name> ]"},"single-animation-direction":{"syntax":"normal | reverse | alternate | alternate-reverse"},"single-animation-fill-mode":{"syntax":"none | forwards | backwards | both"},"single-animation-iteration-count":{"syntax":"infinite | <number>"},"single-animation-play-state":{"syntax":"running | paused"},"single-transition":{"syntax":"[ none | <single-transition-property> ] || <time> || <timing-function> || <time>"},"single-transition-property":{"syntax":"all | <custom-ident>"},"size":{"syntax":"closest-side | farthest-side | closest-corner | farthest-corner | <length> | <length-percentage>{2}"},"step-position":{"syntax":"jump-start | jump-end | jump-none | jump-both | start | end"},"step-timing-function":{"syntax":"step-start | step-end | steps(<integer>[, <step-position>]?)"},"subclass-selector":{"syntax":"<id-selector> | <class-selector> | <attribute-selector> | <pseudo-class-selector>"},"supports-condition":{"syntax":"not <supports-in-parens> | <supports-in-parens> [ and <supports-in-parens> ]* | <supports-in-parens> [ or <supports-in-parens> ]*"},"supports-in-parens":{"syntax":"( <supports-condition> ) | <supports-feature> | <general-enclosed>"},"supports-feature":{"syntax":"<supports-decl> | <supports-selector-fn>"},"supports-decl":{"syntax":"( <declaration> )"},"supports-selector-fn":{"syntax":"selector( <complex-selector> )"},"symbol":{"syntax":"<string> | <image> | <custom-ident>"},"target":{"syntax":"<target-counter()> | <target-counters()> | <target-text()>"},"target-counter()":{"syntax":"target-counter( [ <string> | <url> ] , <custom-ident> , <counter-style>? )"},"target-counters()":{"syntax":"target-counters( [ <string> | <url> ] , <custom-ident> , <string> , <counter-style>? )"},"target-text()":{"syntax":"target-text( [ <string> | <url> ] , [ content | before | after | first-letter ]? )"},"time-percentage":{"syntax":"<time> | <percentage>"},"timing-function":{"syntax":"linear | <cubic-bezier-timing-function> | <step-timing-function>"},"track-breadth":{"syntax":"<length-percentage> | <flex> | min-content | max-content | auto"},"track-list":{"syntax":"[ <line-names>? [ <track-size> | <track-repeat> ] ]+ <line-names>?"},"track-repeat":{"syntax":"repeat( [ <positive-integer> ] , [ <line-names>? <track-size> ]+ <line-names>? )"},"track-size":{"syntax":"<track-breadth> | minmax( <inflexible-breadth> , <track-breadth> ) | fit-content( [ <length> | <percentage> ] )"},"transform-function":{"syntax":"<matrix()> | <translate()> | <translateX()> | <translateY()> | <scale()> | <scaleX()> | <scaleY()> | <rotate()> | <skew()> | <skewX()> | <skewY()> | <matrix3d()> | <translate3d()> | <translateZ()> | <scale3d()> | <scaleZ()> | <rotate3d()> | <rotateX()> | <rotateY()> | <rotateZ()> | <perspective()>"},"transform-list":{"syntax":"<transform-function>+"},"translate()":{"syntax":"translate( <length-percentage> , <length-percentage>? )"},"translate3d()":{"syntax":"translate3d( <length-percentage> , <length-percentage> , <length> )"},"translateX()":{"syntax":"translateX( <length-percentage> )"},"translateY()":{"syntax":"translateY( <length-percentage> )"},"translateZ()":{"syntax":"translateZ( <length> )"},"type-or-unit":{"syntax":"string | color | url | integer | number | length | angle | time | frequency | cap | ch | em | ex | ic | lh | rlh | rem | vb | vi | vw | vh | vmin | vmax | mm | Q | cm | in | pt | pc | px | deg | grad | rad | turn | ms | s | Hz | kHz | %"},"type-selector":{"syntax":"<wq-name> | <ns-prefix>? \'*\'"},"var()":{"syntax":"var( <custom-property-name> , <declaration-value>? )"},"viewport-length":{"syntax":"auto | <length-percentage>"},"wq-name":{"syntax":"<ns-prefix>? <ident-token>"}}')},KcB0:function(e,t,n){var r=n("tZmI"),i={type:"Match"},o={type:"Mismatch"},a={type:"DisallowEmpty"};function s(e,t,n){return t===i&&n===o||e===i&&t===i&&n===i?e:("If"===e.type&&e.else===o&&t===i&&(t=e.then,e=e.match),{type:"If",match:e,then:t,else:n})}function l(e){return e.length>2&&40===e.charCodeAt(e.length-2)&&41===e.charCodeAt(e.length-1)}function u(e){return"Keyword"===e.type||"AtKeyword"===e.type||"Function"===e.type||"Type"===e.type&&l(e.name)}function c(e){if("function"==typeof e)return{type:"Generic",fn:e};switch(e.type){case"Group":var t=function e(t,n,r){switch(t){case" ":for(var a=i,c=n.length-1;c>=0;c--){a=s(f=n[c],a,o)}return a;case"|":a=o;var d=null;for(c=n.length-1;c>=0;c--){if(u(f=n[c])&&(null===d&&c>0&&u(n[c-1])&&(a=s({type:"Enum",map:d=Object.create(null)},i,a)),null!==d)){var p=(l(f.name)?f.name.slice(0,-1):f.name).toLowerCase();if(p in d==!1){d[p]=f;continue}}d=null,a=s(f,i,a)}return a;case"&&":if(n.length>5)return{type:"MatchOnce",terms:n,all:!0};for(a=o,c=n.length-1;c>=0;c--){var f=n[c];m=n.length>1?e(t,n.filter((function(e){return e!==f})),!1):i,a=s(f,m,a)}return a;case"||":if(n.length>5)return{type:"MatchOnce",terms:n,all:!1};for(a=r?i:o,c=n.length-1;c>=0;c--){var m;f=n[c];m=n.length>1?e(t,n.filter((function(e){return e!==f})),!0):i,a=s(f,m,a)}return a}}(e.combinator,e.terms.map(c),!1);return e.disallowEmpty&&(t=s(t,a,o)),t;case"Multiplier":return function(e){var t=i,n=c(e.term);if(0===e.max)n=s(n,a,o),(t=s(n,null,o)).then=s(i,i,t),e.comma&&(t.then.else=s({type:"Comma",syntax:e},t,o));else for(var r=e.min||1;r<=e.max;r++)e.comma&&t!==i&&(t=s({type:"Comma",syntax:e},t,o)),t=s(n,s(i,i,t),o);if(0===e.min)t=s(i,i,t);else for(r=0;r<e.min-1;r++)e.comma&&t!==i&&(t=s({type:"Comma",syntax:e},t,o)),t=s(n,t,o);return t}(e);case"Type":case"Property":return{type:e.type,name:e.name,syntax:e};case"Keyword":return{type:e.type,name:e.name.toLowerCase(),syntax:e};case"AtKeyword":return{type:e.type,name:"@"+e.name.toLowerCase(),syntax:e};case"Function":return{type:e.type,name:e.name.toLowerCase()+"(",syntax:e};case"String":return 3===e.value.length?{type:"Token",value:e.value.charAt(1),syntax:e}:{type:e.type,value:e.value.substr(1,e.value.length-2).replace(/\\'/g,"'"),syntax:e};case"Token":return{type:e.type,value:e.value,syntax:e};case"Comma":return{type:e.type,syntax:e};default:throw new Error("Unknown node type:",e.type)}}e.exports={MATCH:i,MISMATCH:o,DISALLOW_EMPTY:a,buildMatchGraph:function(e,t){return"string"==typeof e&&(e=r(e)),{type:"MatchGraph",match:c(e),syntax:t||null,source:e}}}},KjDf:function(e,t,n){var r=n("Sean"),i=n("vd7W").isBOM;var o=function(){this.lines=null,this.columns=null,this.linesAndColumnsComputed=!1};o.prototype={setSource:function(e,t,n,r){this.source=e,this.startOffset=void 0===t?0:t,this.startLine=void 0===n?1:n,this.startColumn=void 0===r?1:r,this.linesAndColumnsComputed=!1},ensureLinesAndColumnsComputed:function(){this.linesAndColumnsComputed||(!function(e,t){for(var n=t.length,o=r(e.lines,n),a=e.startLine,s=r(e.columns,n),l=e.startColumn,u=t.length>0?i(t.charCodeAt(0)):0;u<n;u++){var c=t.charCodeAt(u);o[u]=a,s[u]=l++,10!==c&&13!==c&&12!==c||(13===c&&u+1<n&&10===t.charCodeAt(u+1)&&(o[++u]=a,s[u]=l),a++,l=1)}o[u]=a,s[u]=l,e.lines=o,e.columns=s}(this,this.source),this.linesAndColumnsComputed=!0)},getLocation:function(e,t){return this.ensureLinesAndColumnsComputed(),{source:t,offset:this.startOffset+e,line:this.lines[e],column:this.columns[e]}},getLocationRange:function(e,t,n){return this.ensureLinesAndColumnsComputed(),{source:n,start:{offset:this.startOffset+e,line:this.lines[e],column:this.columns[e]},end:{offset:this.startOffset+t,line:this.lines[t],column:this.columns[t]}}}},e.exports=o},LZG9:function(e,t){e.exports=function(e){for(var t=e.length-1;t>=0;t--){var n=e[t];n.unused&&n.all.splice(n.position,1)}}},LvDl:function(e,t,n){(function(e,r){var i;
|
33 |
-
/**
|
34 |
-
* @license
|
35 |
-
* Lodash <https://lodash.com/>
|
36 |
-
* Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
|
37 |
-
* Released under MIT license <https://lodash.com/license>
|
38 |
-
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
|
39 |
-
* Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
|
40 |
-
*/(function(){var o="Expected a function",a="__lodash_placeholder__",s=[["ary",128],["bind",1],["bindKey",2],["curry",8],["curryRight",16],["flip",512],["partial",32],["partialRight",64],["rearg",256]],l="[object Arguments]",u="[object Array]",c="[object Boolean]",d="[object Date]",p="[object Error]",f="[object Function]",m="[object GeneratorFunction]",h="[object Map]",g="[object Number]",v="[object Object]",y="[object RegExp]",b="[object Set]",S="[object String]",x="[object Symbol]",w="[object WeakMap]",k="[object ArrayBuffer]",C="[object DataView]",O="[object Float32Array]",_="[object Float64Array]",E="[object Int8Array]",T="[object Int16Array]",A="[object Int32Array]",P="[object Uint8Array]",R="[object Uint16Array]",z="[object Uint32Array]",L=/\b__p \+= '';/g,j=/\b(__p \+=) '' \+/g,M=/(__e\(.*?\)|\b__t\)) \+\n'';/g,B=/&(?:amp|lt|gt|quot|#39);/g,W=/[&<>"']/g,N=RegExp(B.source),I=RegExp(W.source),D=/<%-([\s\S]+?)%>/g,U=/<%([\s\S]+?)%>/g,q=/<%=([\s\S]+?)%>/g,F=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,V=/^\w*$/,G=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,H=/[\\^$.*+?()[\]{}|]/g,K=RegExp(H.source),$=/^\s+/,Y=/\s/,Q=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,X=/\{\n\/\* \[wrapped with (.+)\] \*/,J=/,? & /,Z=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,ee=/[()=,{}\[\]\/\s]/,te=/\\(\\)?/g,ne=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,re=/\w*$/,ie=/^[-+]0x[0-9a-f]+$/i,oe=/^0b[01]+$/i,ae=/^\[object .+?Constructor\]$/,se=/^0o[0-7]+$/i,le=/^(?:0|[1-9]\d*)$/,ue=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,ce=/($^)/,de=/['\n\r\u2028\u2029\\]/g,pe="\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff",fe="\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",me="[\\ud800-\\udfff]",he="["+fe+"]",ge="["+pe+"]",ve="\\d+",ye="[\\u2700-\\u27bf]",be="[a-z\\xdf-\\xf6\\xf8-\\xff]",Se="[^\\ud800-\\udfff"+fe+ve+"\\u2700-\\u27bfa-z\\xdf-\\xf6\\xf8-\\xffA-Z\\xc0-\\xd6\\xd8-\\xde]",xe="\\ud83c[\\udffb-\\udfff]",we="[^\\ud800-\\udfff]",ke="(?:\\ud83c[\\udde6-\\uddff]){2}",Ce="[\\ud800-\\udbff][\\udc00-\\udfff]",Oe="[A-Z\\xc0-\\xd6\\xd8-\\xde]",_e="(?:"+be+"|"+Se+")",Ee="(?:"+Oe+"|"+Se+")",Te="(?:"+ge+"|"+xe+")"+"?",Ae="[\\ufe0e\\ufe0f]?"+Te+("(?:\\u200d(?:"+[we,ke,Ce].join("|")+")[\\ufe0e\\ufe0f]?"+Te+")*"),Pe="(?:"+[ye,ke,Ce].join("|")+")"+Ae,Re="(?:"+[we+ge+"?",ge,ke,Ce,me].join("|")+")",ze=RegExp("['’]","g"),Le=RegExp(ge,"g"),je=RegExp(xe+"(?="+xe+")|"+Re+Ae,"g"),Me=RegExp([Oe+"?"+be+"+(?:['’](?:d|ll|m|re|s|t|ve))?(?="+[he,Oe,"$"].join("|")+")",Ee+"+(?:['’](?:D|LL|M|RE|S|T|VE))?(?="+[he,Oe+_e,"$"].join("|")+")",Oe+"?"+_e+"+(?:['’](?:d|ll|m|re|s|t|ve))?",Oe+"+(?:['’](?:D|LL|M|RE|S|T|VE))?","\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])","\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",ve,Pe].join("|"),"g"),Be=RegExp("[\\u200d\\ud800-\\udfff"+pe+"\\ufe0e\\ufe0f]"),We=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,Ne=["Array","Buffer","DataView","Date","Error","Float32Array","Float64Array","Function","Int8Array","Int16Array","Int32Array","Map","Math","Object","Promise","RegExp","Set","String","Symbol","TypeError","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","WeakMap","_","clearTimeout","isFinite","parseInt","setTimeout"],Ie=-1,De={};De[O]=De[_]=De[E]=De[T]=De[A]=De[P]=De["[object Uint8ClampedArray]"]=De[R]=De[z]=!0,De[l]=De[u]=De[k]=De[c]=De[C]=De[d]=De[p]=De[f]=De[h]=De[g]=De[v]=De[y]=De[b]=De[S]=De[w]=!1;var Ue={};Ue[l]=Ue[u]=Ue[k]=Ue[C]=Ue[c]=Ue[d]=Ue[O]=Ue[_]=Ue[E]=Ue[T]=Ue[A]=Ue[h]=Ue[g]=Ue[v]=Ue[y]=Ue[b]=Ue[S]=Ue[x]=Ue[P]=Ue["[object Uint8ClampedArray]"]=Ue[R]=Ue[z]=!0,Ue[p]=Ue[f]=Ue[w]=!1;var qe={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},Fe=parseFloat,Ve=parseInt,Ge="object"==typeof e&&e&&e.Object===Object&&e,He="object"==typeof self&&self&&self.Object===Object&&self,Ke=Ge||He||Function("return this")(),$e=t&&!t.nodeType&&t,Ye=$e&&"object"==typeof r&&r&&!r.nodeType&&r,Qe=Ye&&Ye.exports===$e,Xe=Qe&&Ge.process,Je=function(){try{var e=Ye&&Ye.require&&Ye.require("util").types;return e||Xe&&Xe.binding&&Xe.binding("util")}catch(e){}}(),Ze=Je&&Je.isArrayBuffer,et=Je&&Je.isDate,tt=Je&&Je.isMap,nt=Je&&Je.isRegExp,rt=Je&&Je.isSet,it=Je&&Je.isTypedArray;function ot(e,t,n){switch(n.length){case 0:return e.call(t);case 1:return e.call(t,n[0]);case 2:return e.call(t,n[0],n[1]);case 3:return e.call(t,n[0],n[1],n[2])}return e.apply(t,n)}function at(e,t,n,r){for(var i=-1,o=null==e?0:e.length;++i<o;){var a=e[i];t(r,a,n(a),e)}return r}function st(e,t){for(var n=-1,r=null==e?0:e.length;++n<r&&!1!==t(e[n],n,e););return e}function lt(e,t){for(var n=null==e?0:e.length;n--&&!1!==t(e[n],n,e););return e}function ut(e,t){for(var n=-1,r=null==e?0:e.length;++n<r;)if(!t(e[n],n,e))return!1;return!0}function ct(e,t){for(var n=-1,r=null==e?0:e.length,i=0,o=[];++n<r;){var a=e[n];t(a,n,e)&&(o[i++]=a)}return o}function dt(e,t){return!!(null==e?0:e.length)&&xt(e,t,0)>-1}function pt(e,t,n){for(var r=-1,i=null==e?0:e.length;++r<i;)if(n(t,e[r]))return!0;return!1}function ft(e,t){for(var n=-1,r=null==e?0:e.length,i=Array(r);++n<r;)i[n]=t(e[n],n,e);return i}function mt(e,t){for(var n=-1,r=t.length,i=e.length;++n<r;)e[i+n]=t[n];return e}function ht(e,t,n,r){var i=-1,o=null==e?0:e.length;for(r&&o&&(n=e[++i]);++i<o;)n=t(n,e[i],i,e);return n}function gt(e,t,n,r){var i=null==e?0:e.length;for(r&&i&&(n=e[--i]);i--;)n=t(n,e[i],i,e);return n}function vt(e,t){for(var n=-1,r=null==e?0:e.length;++n<r;)if(t(e[n],n,e))return!0;return!1}var yt=Ot("length");function bt(e,t,n){var r;return n(e,(function(e,n,i){if(t(e,n,i))return r=n,!1})),r}function St(e,t,n,r){for(var i=e.length,o=n+(r?1:-1);r?o--:++o<i;)if(t(e[o],o,e))return o;return-1}function xt(e,t,n){return t==t?function(e,t,n){var r=n-1,i=e.length;for(;++r<i;)if(e[r]===t)return r;return-1}(e,t,n):St(e,kt,n)}function wt(e,t,n,r){for(var i=n-1,o=e.length;++i<o;)if(r(e[i],t))return i;return-1}function kt(e){return e!=e}function Ct(e,t){var n=null==e?0:e.length;return n?Tt(e,t)/n:NaN}function Ot(e){return function(t){return null==t?void 0:t[e]}}function _t(e){return function(t){return null==e?void 0:e[t]}}function Et(e,t,n,r,i){return i(e,(function(e,i,o){n=r?(r=!1,e):t(n,e,i,o)})),n}function Tt(e,t){for(var n,r=-1,i=e.length;++r<i;){var o=t(e[r]);void 0!==o&&(n=void 0===n?o:n+o)}return n}function At(e,t){for(var n=-1,r=Array(e);++n<e;)r[n]=t(n);return r}function Pt(e){return e?e.slice(0,$t(e)+1).replace($,""):e}function Rt(e){return function(t){return e(t)}}function zt(e,t){return ft(t,(function(t){return e[t]}))}function Lt(e,t){return e.has(t)}function jt(e,t){for(var n=-1,r=e.length;++n<r&&xt(t,e[n],0)>-1;);return n}function Mt(e,t){for(var n=e.length;n--&&xt(t,e[n],0)>-1;);return n}function Bt(e,t){for(var n=e.length,r=0;n--;)e[n]===t&&++r;return r}var Wt=_t({"À":"A","Á":"A","Â":"A","Ã":"A","Ä":"A","Å":"A","à":"a","á":"a","â":"a","ã":"a","ä":"a","å":"a","Ç":"C","ç":"c","Ð":"D","ð":"d","È":"E","É":"E","Ê":"E","Ë":"E","è":"e","é":"e","ê":"e","ë":"e","Ì":"I","Í":"I","Î":"I","Ï":"I","ì":"i","í":"i","î":"i","ï":"i","Ñ":"N","ñ":"n","Ò":"O","Ó":"O","Ô":"O","Õ":"O","Ö":"O","Ø":"O","ò":"o","ó":"o","ô":"o","õ":"o","ö":"o","ø":"o","Ù":"U","Ú":"U","Û":"U","Ü":"U","ù":"u","ú":"u","û":"u","ü":"u","Ý":"Y","ý":"y","ÿ":"y","Æ":"Ae","æ":"ae","Þ":"Th","þ":"th","ß":"ss","Ā":"A","Ă":"A","Ą":"A","ā":"a","ă":"a","ą":"a","Ć":"C","Ĉ":"C","Ċ":"C","Č":"C","ć":"c","ĉ":"c","ċ":"c","č":"c","Ď":"D","Đ":"D","ď":"d","đ":"d","Ē":"E","Ĕ":"E","Ė":"E","Ę":"E","Ě":"E","ē":"e","ĕ":"e","ė":"e","ę":"e","ě":"e","Ĝ":"G","Ğ":"G","Ġ":"G","Ģ":"G","ĝ":"g","ğ":"g","ġ":"g","ģ":"g","Ĥ":"H","Ħ":"H","ĥ":"h","ħ":"h","Ĩ":"I","Ī":"I","Ĭ":"I","Į":"I","İ":"I","ĩ":"i","ī":"i","ĭ":"i","į":"i","ı":"i","Ĵ":"J","ĵ":"j","Ķ":"K","ķ":"k","ĸ":"k","Ĺ":"L","Ļ":"L","Ľ":"L","Ŀ":"L","Ł":"L","ĺ":"l","ļ":"l","ľ":"l","ŀ":"l","ł":"l","Ń":"N","Ņ":"N","Ň":"N","Ŋ":"N","ń":"n","ņ":"n","ň":"n","ŋ":"n","Ō":"O","Ŏ":"O","Ő":"O","ō":"o","ŏ":"o","ő":"o","Ŕ":"R","Ŗ":"R","Ř":"R","ŕ":"r","ŗ":"r","ř":"r","Ś":"S","Ŝ":"S","Ş":"S","Š":"S","ś":"s","ŝ":"s","ş":"s","š":"s","Ţ":"T","Ť":"T","Ŧ":"T","ţ":"t","ť":"t","ŧ":"t","Ũ":"U","Ū":"U","Ŭ":"U","Ů":"U","Ű":"U","Ų":"U","ũ":"u","ū":"u","ŭ":"u","ů":"u","ű":"u","ų":"u","Ŵ":"W","ŵ":"w","Ŷ":"Y","ŷ":"y","Ÿ":"Y","Ź":"Z","Ż":"Z","Ž":"Z","ź":"z","ż":"z","ž":"z","IJ":"IJ","ij":"ij","Œ":"Oe","œ":"oe","ʼn":"'n","ſ":"s"}),Nt=_t({"&":"&","<":"<",">":">",'"':""","'":"'"});function It(e){return"\\"+qe[e]}function Dt(e){return Be.test(e)}function Ut(e){var t=-1,n=Array(e.size);return e.forEach((function(e,r){n[++t]=[r,e]})),n}function qt(e,t){return function(n){return e(t(n))}}function Ft(e,t){for(var n=-1,r=e.length,i=0,o=[];++n<r;){var s=e[n];s!==t&&s!==a||(e[n]=a,o[i++]=n)}return o}function Vt(e){var t=-1,n=Array(e.size);return e.forEach((function(e){n[++t]=e})),n}function Gt(e){var t=-1,n=Array(e.size);return e.forEach((function(e){n[++t]=[e,e]})),n}function Ht(e){return Dt(e)?function(e){var t=je.lastIndex=0;for(;je.test(e);)++t;return t}(e):yt(e)}function Kt(e){return Dt(e)?function(e){return e.match(je)||[]}(e):function(e){return e.split("")}(e)}function $t(e){for(var t=e.length;t--&&Y.test(e.charAt(t)););return t}var Yt=_t({"&":"&","<":"<",">":">",""":'"',"'":"'"});var Qt=function e(t){var n,r=(t=null==t?Ke:Qt.defaults(Ke.Object(),t,Qt.pick(Ke,Ne))).Array,i=t.Date,Y=t.Error,pe=t.Function,fe=t.Math,me=t.Object,he=t.RegExp,ge=t.String,ve=t.TypeError,ye=r.prototype,be=pe.prototype,Se=me.prototype,xe=t["__core-js_shared__"],we=be.toString,ke=Se.hasOwnProperty,Ce=0,Oe=(n=/[^.]+$/.exec(xe&&xe.keys&&xe.keys.IE_PROTO||""))?"Symbol(src)_1."+n:"",_e=Se.toString,Ee=we.call(me),Te=Ke._,Ae=he("^"+we.call(ke).replace(H,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),Pe=Qe?t.Buffer:void 0,Re=t.Symbol,je=t.Uint8Array,Be=Pe?Pe.allocUnsafe:void 0,qe=qt(me.getPrototypeOf,me),Ge=me.create,He=Se.propertyIsEnumerable,$e=ye.splice,Ye=Re?Re.isConcatSpreadable:void 0,Xe=Re?Re.iterator:void 0,Je=Re?Re.toStringTag:void 0,yt=function(){try{var e=eo(me,"defineProperty");return e({},"",{}),e}catch(e){}}(),_t=t.clearTimeout!==Ke.clearTimeout&&t.clearTimeout,Xt=i&&i.now!==Ke.Date.now&&i.now,Jt=t.setTimeout!==Ke.setTimeout&&t.setTimeout,Zt=fe.ceil,en=fe.floor,tn=me.getOwnPropertySymbols,nn=Pe?Pe.isBuffer:void 0,rn=t.isFinite,on=ye.join,an=qt(me.keys,me),sn=fe.max,ln=fe.min,un=i.now,cn=t.parseInt,dn=fe.random,pn=ye.reverse,fn=eo(t,"DataView"),mn=eo(t,"Map"),hn=eo(t,"Promise"),gn=eo(t,"Set"),vn=eo(t,"WeakMap"),yn=eo(me,"create"),bn=vn&&new vn,Sn={},xn=To(fn),wn=To(mn),kn=To(hn),Cn=To(gn),On=To(vn),_n=Re?Re.prototype:void 0,En=_n?_n.valueOf:void 0,Tn=_n?_n.toString:void 0;function An(e){if(Ga(e)&&!ja(e)&&!(e instanceof Ln)){if(e instanceof zn)return e;if(ke.call(e,"__wrapped__"))return Ao(e)}return new zn(e)}var Pn=function(){function e(){}return function(t){if(!Va(t))return{};if(Ge)return Ge(t);e.prototype=t;var n=new e;return e.prototype=void 0,n}}();function Rn(){}function zn(e,t){this.__wrapped__=e,this.__actions__=[],this.__chain__=!!t,this.__index__=0,this.__values__=void 0}function Ln(e){this.__wrapped__=e,this.__actions__=[],this.__dir__=1,this.__filtered__=!1,this.__iteratees__=[],this.__takeCount__=4294967295,this.__views__=[]}function jn(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}function Mn(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}function Bn(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}function Wn(e){var t=-1,n=null==e?0:e.length;for(this.__data__=new Bn;++t<n;)this.add(e[t])}function Nn(e){var t=this.__data__=new Mn(e);this.size=t.size}function In(e,t){var n=ja(e),r=!n&&La(e),i=!n&&!r&&Na(e),o=!n&&!r&&!i&&Za(e),a=n||r||i||o,s=a?At(e.length,ge):[],l=s.length;for(var u in e)!t&&!ke.call(e,u)||a&&("length"==u||i&&("offset"==u||"parent"==u)||o&&("buffer"==u||"byteLength"==u||"byteOffset"==u)||so(u,l))||s.push(u);return s}function Dn(e){var t=e.length;return t?e[Wr(0,t-1)]:void 0}function Un(e,t){return Oo(yi(e),Qn(t,0,e.length))}function qn(e){return Oo(yi(e))}function Fn(e,t,n){(void 0!==n&&!Pa(e[t],n)||void 0===n&&!(t in e))&&$n(e,t,n)}function Vn(e,t,n){var r=e[t];ke.call(e,t)&&Pa(r,n)&&(void 0!==n||t in e)||$n(e,t,n)}function Gn(e,t){for(var n=e.length;n--;)if(Pa(e[n][0],t))return n;return-1}function Hn(e,t,n,r){return tr(e,(function(e,i,o){t(r,e,n(e),o)})),r}function Kn(e,t){return e&&bi(t,xs(t),e)}function $n(e,t,n){"__proto__"==t&&yt?yt(e,t,{configurable:!0,enumerable:!0,value:n,writable:!0}):e[t]=n}function Yn(e,t){for(var n=-1,i=t.length,o=r(i),a=null==e;++n<i;)o[n]=a?void 0:gs(e,t[n]);return o}function Qn(e,t,n){return e==e&&(void 0!==n&&(e=e<=n?e:n),void 0!==t&&(e=e>=t?e:t)),e}function Xn(e,t,n,r,i,o){var a,s=1&t,u=2&t,p=4&t;if(n&&(a=i?n(e,r,i,o):n(e)),void 0!==a)return a;if(!Va(e))return e;var w=ja(e);if(w){if(a=function(e){var t=e.length,n=new e.constructor(t);t&&"string"==typeof e[0]&&ke.call(e,"index")&&(n.index=e.index,n.input=e.input);return n}(e),!s)return yi(e,a)}else{var L=ro(e),j=L==f||L==m;if(Na(e))return pi(e,s);if(L==v||L==l||j&&!i){if(a=u||j?{}:oo(e),!s)return u?function(e,t){return bi(e,no(e),t)}(e,function(e,t){return e&&bi(t,ws(t),e)}(a,e)):function(e,t){return bi(e,to(e),t)}(e,Kn(a,e))}else{if(!Ue[L])return i?e:{};a=function(e,t,n){var r=e.constructor;switch(t){case k:return fi(e);case c:case d:return new r(+e);case C:return function(e,t){var n=t?fi(e.buffer):e.buffer;return new e.constructor(n,e.byteOffset,e.byteLength)}(e,n);case O:case _:case E:case T:case A:case P:case"[object Uint8ClampedArray]":case R:case z:return mi(e,n);case h:return new r;case g:case S:return new r(e);case y:return function(e){var t=new e.constructor(e.source,re.exec(e));return t.lastIndex=e.lastIndex,t}(e);case b:return new r;case x:return i=e,En?me(En.call(i)):{}}var i}(e,L,s)}}o||(o=new Nn);var M=o.get(e);if(M)return M;o.set(e,a),Qa(e)?e.forEach((function(r){a.add(Xn(r,t,n,r,e,o))})):Ha(e)&&e.forEach((function(r,i){a.set(i,Xn(r,t,n,i,e,o))}));var B=w?void 0:(p?u?Ki:Hi:u?ws:xs)(e);return st(B||e,(function(r,i){B&&(r=e[i=r]),Vn(a,i,Xn(r,t,n,i,e,o))})),a}function Jn(e,t,n){var r=n.length;if(null==e)return!r;for(e=me(e);r--;){var i=n[r],o=t[i],a=e[i];if(void 0===a&&!(i in e)||!o(a))return!1}return!0}function Zn(e,t,n){if("function"!=typeof e)throw new ve(o);return xo((function(){e.apply(void 0,n)}),t)}function er(e,t,n,r){var i=-1,o=dt,a=!0,s=e.length,l=[],u=t.length;if(!s)return l;n&&(t=ft(t,Rt(n))),r?(o=pt,a=!1):t.length>=200&&(o=Lt,a=!1,t=new Wn(t));e:for(;++i<s;){var c=e[i],d=null==n?c:n(c);if(c=r||0!==c?c:0,a&&d==d){for(var p=u;p--;)if(t[p]===d)continue e;l.push(c)}else o(t,d,r)||l.push(c)}return l}An.templateSettings={escape:D,evaluate:U,interpolate:q,variable:"",imports:{_:An}},An.prototype=Rn.prototype,An.prototype.constructor=An,zn.prototype=Pn(Rn.prototype),zn.prototype.constructor=zn,Ln.prototype=Pn(Rn.prototype),Ln.prototype.constructor=Ln,jn.prototype.clear=function(){this.__data__=yn?yn(null):{},this.size=0},jn.prototype.delete=function(e){var t=this.has(e)&&delete this.__data__[e];return this.size-=t?1:0,t},jn.prototype.get=function(e){var t=this.__data__;if(yn){var n=t[e];return"__lodash_hash_undefined__"===n?void 0:n}return ke.call(t,e)?t[e]:void 0},jn.prototype.has=function(e){var t=this.__data__;return yn?void 0!==t[e]:ke.call(t,e)},jn.prototype.set=function(e,t){var n=this.__data__;return this.size+=this.has(e)?0:1,n[e]=yn&&void 0===t?"__lodash_hash_undefined__":t,this},Mn.prototype.clear=function(){this.__data__=[],this.size=0},Mn.prototype.delete=function(e){var t=this.__data__,n=Gn(t,e);return!(n<0)&&(n==t.length-1?t.pop():$e.call(t,n,1),--this.size,!0)},Mn.prototype.get=function(e){var t=this.__data__,n=Gn(t,e);return n<0?void 0:t[n][1]},Mn.prototype.has=function(e){return Gn(this.__data__,e)>-1},Mn.prototype.set=function(e,t){var n=this.__data__,r=Gn(n,e);return r<0?(++this.size,n.push([e,t])):n[r][1]=t,this},Bn.prototype.clear=function(){this.size=0,this.__data__={hash:new jn,map:new(mn||Mn),string:new jn}},Bn.prototype.delete=function(e){var t=Ji(this,e).delete(e);return this.size-=t?1:0,t},Bn.prototype.get=function(e){return Ji(this,e).get(e)},Bn.prototype.has=function(e){return Ji(this,e).has(e)},Bn.prototype.set=function(e,t){var n=Ji(this,e),r=n.size;return n.set(e,t),this.size+=n.size==r?0:1,this},Wn.prototype.add=Wn.prototype.push=function(e){return this.__data__.set(e,"__lodash_hash_undefined__"),this},Wn.prototype.has=function(e){return this.__data__.has(e)},Nn.prototype.clear=function(){this.__data__=new Mn,this.size=0},Nn.prototype.delete=function(e){var t=this.__data__,n=t.delete(e);return this.size=t.size,n},Nn.prototype.get=function(e){return this.__data__.get(e)},Nn.prototype.has=function(e){return this.__data__.has(e)},Nn.prototype.set=function(e,t){var n=this.__data__;if(n instanceof Mn){var r=n.__data__;if(!mn||r.length<199)return r.push([e,t]),this.size=++n.size,this;n=this.__data__=new Bn(r)}return n.set(e,t),this.size=n.size,this};var tr=wi(ur),nr=wi(cr,!0);function rr(e,t){var n=!0;return tr(e,(function(e,r,i){return n=!!t(e,r,i)})),n}function ir(e,t,n){for(var r=-1,i=e.length;++r<i;){var o=e[r],a=t(o);if(null!=a&&(void 0===s?a==a&&!Ja(a):n(a,s)))var s=a,l=o}return l}function or(e,t){var n=[];return tr(e,(function(e,r,i){t(e,r,i)&&n.push(e)})),n}function ar(e,t,n,r,i){var o=-1,a=e.length;for(n||(n=ao),i||(i=[]);++o<a;){var s=e[o];t>0&&n(s)?t>1?ar(s,t-1,n,r,i):mt(i,s):r||(i[i.length]=s)}return i}var sr=ki(),lr=ki(!0);function ur(e,t){return e&&sr(e,t,xs)}function cr(e,t){return e&&lr(e,t,xs)}function dr(e,t){return ct(t,(function(t){return Ua(e[t])}))}function pr(e,t){for(var n=0,r=(t=li(t,e)).length;null!=e&&n<r;)e=e[Eo(t[n++])];return n&&n==r?e:void 0}function fr(e,t,n){var r=t(e);return ja(e)?r:mt(r,n(e))}function mr(e){return null==e?void 0===e?"[object Undefined]":"[object Null]":Je&&Je in me(e)?function(e){var t=ke.call(e,Je),n=e[Je];try{e[Je]=void 0;var r=!0}catch(e){}var i=_e.call(e);r&&(t?e[Je]=n:delete e[Je]);return i}(e):function(e){return _e.call(e)}(e)}function hr(e,t){return e>t}function gr(e,t){return null!=e&&ke.call(e,t)}function vr(e,t){return null!=e&&t in me(e)}function yr(e,t,n){for(var i=n?pt:dt,o=e[0].length,a=e.length,s=a,l=r(a),u=1/0,c=[];s--;){var d=e[s];s&&t&&(d=ft(d,Rt(t))),u=ln(d.length,u),l[s]=!n&&(t||o>=120&&d.length>=120)?new Wn(s&&d):void 0}d=e[0];var p=-1,f=l[0];e:for(;++p<o&&c.length<u;){var m=d[p],h=t?t(m):m;if(m=n||0!==m?m:0,!(f?Lt(f,h):i(c,h,n))){for(s=a;--s;){var g=l[s];if(!(g?Lt(g,h):i(e[s],h,n)))continue e}f&&f.push(h),c.push(m)}}return c}function br(e,t,n){var r=null==(e=vo(e,t=li(t,e)))?e:e[Eo(Do(t))];return null==r?void 0:ot(r,e,n)}function Sr(e){return Ga(e)&&mr(e)==l}function xr(e,t,n,r,i){return e===t||(null==e||null==t||!Ga(e)&&!Ga(t)?e!=e&&t!=t:function(e,t,n,r,i,o){var a=ja(e),s=ja(t),f=a?u:ro(e),m=s?u:ro(t),w=(f=f==l?v:f)==v,O=(m=m==l?v:m)==v,_=f==m;if(_&&Na(e)){if(!Na(t))return!1;a=!0,w=!1}if(_&&!w)return o||(o=new Nn),a||Za(e)?Vi(e,t,n,r,i,o):function(e,t,n,r,i,o,a){switch(n){case C:if(e.byteLength!=t.byteLength||e.byteOffset!=t.byteOffset)return!1;e=e.buffer,t=t.buffer;case k:return!(e.byteLength!=t.byteLength||!o(new je(e),new je(t)));case c:case d:case g:return Pa(+e,+t);case p:return e.name==t.name&&e.message==t.message;case y:case S:return e==t+"";case h:var s=Ut;case b:var l=1&r;if(s||(s=Vt),e.size!=t.size&&!l)return!1;var u=a.get(e);if(u)return u==t;r|=2,a.set(e,t);var f=Vi(s(e),s(t),r,i,o,a);return a.delete(e),f;case x:if(En)return En.call(e)==En.call(t)}return!1}(e,t,f,n,r,i,o);if(!(1&n)){var E=w&&ke.call(e,"__wrapped__"),T=O&&ke.call(t,"__wrapped__");if(E||T){var A=E?e.value():e,P=T?t.value():t;return o||(o=new Nn),i(A,P,n,r,o)}}if(!_)return!1;return o||(o=new Nn),function(e,t,n,r,i,o){var a=1&n,s=Hi(e),l=s.length,u=Hi(t).length;if(l!=u&&!a)return!1;var c=l;for(;c--;){var d=s[c];if(!(a?d in t:ke.call(t,d)))return!1}var p=o.get(e),f=o.get(t);if(p&&f)return p==t&&f==e;var m=!0;o.set(e,t),o.set(t,e);var h=a;for(;++c<l;){d=s[c];var g=e[d],v=t[d];if(r)var y=a?r(v,g,d,t,e,o):r(g,v,d,e,t,o);if(!(void 0===y?g===v||i(g,v,n,r,o):y)){m=!1;break}h||(h="constructor"==d)}if(m&&!h){var b=e.constructor,S=t.constructor;b==S||!("constructor"in e)||!("constructor"in t)||"function"==typeof b&&b instanceof b&&"function"==typeof S&&S instanceof S||(m=!1)}return o.delete(e),o.delete(t),m}(e,t,n,r,i,o)}(e,t,n,r,xr,i))}function wr(e,t,n,r){var i=n.length,o=i,a=!r;if(null==e)return!o;for(e=me(e);i--;){var s=n[i];if(a&&s[2]?s[1]!==e[s[0]]:!(s[0]in e))return!1}for(;++i<o;){var l=(s=n[i])[0],u=e[l],c=s[1];if(a&&s[2]){if(void 0===u&&!(l in e))return!1}else{var d=new Nn;if(r)var p=r(u,c,l,e,t,d);if(!(void 0===p?xr(c,u,3,r,d):p))return!1}}return!0}function kr(e){return!(!Va(e)||(t=e,Oe&&Oe in t))&&(Ua(e)?Ae:ae).test(To(e));var t}function Cr(e){return"function"==typeof e?e:null==e?Ks:"object"==typeof e?ja(e)?Pr(e[0],e[1]):Ar(e):nl(e)}function Or(e){if(!fo(e))return an(e);var t=[];for(var n in me(e))ke.call(e,n)&&"constructor"!=n&&t.push(n);return t}function _r(e){if(!Va(e))return function(e){var t=[];if(null!=e)for(var n in me(e))t.push(n);return t}(e);var t=fo(e),n=[];for(var r in e)("constructor"!=r||!t&&ke.call(e,r))&&n.push(r);return n}function Er(e,t){return e<t}function Tr(e,t){var n=-1,i=Ba(e)?r(e.length):[];return tr(e,(function(e,r,o){i[++n]=t(e,r,o)})),i}function Ar(e){var t=Zi(e);return 1==t.length&&t[0][2]?ho(t[0][0],t[0][1]):function(n){return n===e||wr(n,e,t)}}function Pr(e,t){return uo(e)&&mo(t)?ho(Eo(e),t):function(n){var r=gs(n,e);return void 0===r&&r===t?vs(n,e):xr(t,r,3)}}function Rr(e,t,n,r,i){e!==t&&sr(t,(function(o,a){if(i||(i=new Nn),Va(o))!function(e,t,n,r,i,o,a){var s=bo(e,n),l=bo(t,n),u=a.get(l);if(u)return void Fn(e,n,u);var c=o?o(s,l,n+"",e,t,a):void 0,d=void 0===c;if(d){var p=ja(l),f=!p&&Na(l),m=!p&&!f&&Za(l);c=l,p||f||m?ja(s)?c=s:Wa(s)?c=yi(s):f?(d=!1,c=pi(l,!0)):m?(d=!1,c=mi(l,!0)):c=[]:$a(l)||La(l)?(c=s,La(s)?c=ss(s):Va(s)&&!Ua(s)||(c=oo(l))):d=!1}d&&(a.set(l,c),i(c,l,r,o,a),a.delete(l));Fn(e,n,c)}(e,t,a,n,Rr,r,i);else{var s=r?r(bo(e,a),o,a+"",e,t,i):void 0;void 0===s&&(s=o),Fn(e,a,s)}}),ws)}function zr(e,t){var n=e.length;if(n)return so(t+=t<0?n:0,n)?e[t]:void 0}function Lr(e,t,n){t=t.length?ft(t,(function(e){return ja(e)?function(t){return pr(t,1===e.length?e[0]:e)}:e})):[Ks];var r=-1;return t=ft(t,Rt(Xi())),function(e,t){var n=e.length;for(e.sort(t);n--;)e[n]=e[n].value;return e}(Tr(e,(function(e,n,i){return{criteria:ft(t,(function(t){return t(e)})),index:++r,value:e}})),(function(e,t){return function(e,t,n){var r=-1,i=e.criteria,o=t.criteria,a=i.length,s=n.length;for(;++r<a;){var l=hi(i[r],o[r]);if(l){if(r>=s)return l;var u=n[r];return l*("desc"==u?-1:1)}}return e.index-t.index}(e,t,n)}))}function jr(e,t,n){for(var r=-1,i=t.length,o={};++r<i;){var a=t[r],s=pr(e,a);n(s,a)&&qr(o,li(a,e),s)}return o}function Mr(e,t,n,r){var i=r?wt:xt,o=-1,a=t.length,s=e;for(e===t&&(t=yi(t)),n&&(s=ft(e,Rt(n)));++o<a;)for(var l=0,u=t[o],c=n?n(u):u;(l=i(s,c,l,r))>-1;)s!==e&&$e.call(s,l,1),$e.call(e,l,1);return e}function Br(e,t){for(var n=e?t.length:0,r=n-1;n--;){var i=t[n];if(n==r||i!==o){var o=i;so(i)?$e.call(e,i,1):ei(e,i)}}return e}function Wr(e,t){return e+en(dn()*(t-e+1))}function Nr(e,t){var n="";if(!e||t<1||t>9007199254740991)return n;do{t%2&&(n+=e),(t=en(t/2))&&(e+=e)}while(t);return n}function Ir(e,t){return wo(go(e,t,Ks),e+"")}function Dr(e){return Dn(Ps(e))}function Ur(e,t){var n=Ps(e);return Oo(n,Qn(t,0,n.length))}function qr(e,t,n,r){if(!Va(e))return e;for(var i=-1,o=(t=li(t,e)).length,a=o-1,s=e;null!=s&&++i<o;){var l=Eo(t[i]),u=n;if("__proto__"===l||"constructor"===l||"prototype"===l)return e;if(i!=a){var c=s[l];void 0===(u=r?r(c,l,s):void 0)&&(u=Va(c)?c:so(t[i+1])?[]:{})}Vn(s,l,u),s=s[l]}return e}var Fr=bn?function(e,t){return bn.set(e,t),e}:Ks,Vr=yt?function(e,t){return yt(e,"toString",{configurable:!0,enumerable:!1,value:Vs(t),writable:!0})}:Ks;function Gr(e){return Oo(Ps(e))}function Hr(e,t,n){var i=-1,o=e.length;t<0&&(t=-t>o?0:o+t),(n=n>o?o:n)<0&&(n+=o),o=t>n?0:n-t>>>0,t>>>=0;for(var a=r(o);++i<o;)a[i]=e[i+t];return a}function Kr(e,t){var n;return tr(e,(function(e,r,i){return!(n=t(e,r,i))})),!!n}function $r(e,t,n){var r=0,i=null==e?r:e.length;if("number"==typeof t&&t==t&&i<=2147483647){for(;r<i;){var o=r+i>>>1,a=e[o];null!==a&&!Ja(a)&&(n?a<=t:a<t)?r=o+1:i=o}return i}return Yr(e,t,Ks,n)}function Yr(e,t,n,r){var i=0,o=null==e?0:e.length;if(0===o)return 0;for(var a=(t=n(t))!=t,s=null===t,l=Ja(t),u=void 0===t;i<o;){var c=en((i+o)/2),d=n(e[c]),p=void 0!==d,f=null===d,m=d==d,h=Ja(d);if(a)var g=r||m;else g=u?m&&(r||p):s?m&&p&&(r||!f):l?m&&p&&!f&&(r||!h):!f&&!h&&(r?d<=t:d<t);g?i=c+1:o=c}return ln(o,4294967294)}function Qr(e,t){for(var n=-1,r=e.length,i=0,o=[];++n<r;){var a=e[n],s=t?t(a):a;if(!n||!Pa(s,l)){var l=s;o[i++]=0===a?0:a}}return o}function Xr(e){return"number"==typeof e?e:Ja(e)?NaN:+e}function Jr(e){if("string"==typeof e)return e;if(ja(e))return ft(e,Jr)+"";if(Ja(e))return Tn?Tn.call(e):"";var t=e+"";return"0"==t&&1/e==-1/0?"-0":t}function Zr(e,t,n){var r=-1,i=dt,o=e.length,a=!0,s=[],l=s;if(n)a=!1,i=pt;else if(o>=200){var u=t?null:Ni(e);if(u)return Vt(u);a=!1,i=Lt,l=new Wn}else l=t?[]:s;e:for(;++r<o;){var c=e[r],d=t?t(c):c;if(c=n||0!==c?c:0,a&&d==d){for(var p=l.length;p--;)if(l[p]===d)continue e;t&&l.push(d),s.push(c)}else i(l,d,n)||(l!==s&&l.push(d),s.push(c))}return s}function ei(e,t){return null==(e=vo(e,t=li(t,e)))||delete e[Eo(Do(t))]}function ti(e,t,n,r){return qr(e,t,n(pr(e,t)),r)}function ni(e,t,n,r){for(var i=e.length,o=r?i:-1;(r?o--:++o<i)&&t(e[o],o,e););return n?Hr(e,r?0:o,r?o+1:i):Hr(e,r?o+1:0,r?i:o)}function ri(e,t){var n=e;return n instanceof Ln&&(n=n.value()),ht(t,(function(e,t){return t.func.apply(t.thisArg,mt([e],t.args))}),n)}function ii(e,t,n){var i=e.length;if(i<2)return i?Zr(e[0]):[];for(var o=-1,a=r(i);++o<i;)for(var s=e[o],l=-1;++l<i;)l!=o&&(a[o]=er(a[o]||s,e[l],t,n));return Zr(ar(a,1),t,n)}function oi(e,t,n){for(var r=-1,i=e.length,o=t.length,a={};++r<i;){var s=r<o?t[r]:void 0;n(a,e[r],s)}return a}function ai(e){return Wa(e)?e:[]}function si(e){return"function"==typeof e?e:Ks}function li(e,t){return ja(e)?e:uo(e,t)?[e]:_o(ls(e))}var ui=Ir;function ci(e,t,n){var r=e.length;return n=void 0===n?r:n,!t&&n>=r?e:Hr(e,t,n)}var di=_t||function(e){return Ke.clearTimeout(e)};function pi(e,t){if(t)return e.slice();var n=e.length,r=Be?Be(n):new e.constructor(n);return e.copy(r),r}function fi(e){var t=new e.constructor(e.byteLength);return new je(t).set(new je(e)),t}function mi(e,t){var n=t?fi(e.buffer):e.buffer;return new e.constructor(n,e.byteOffset,e.length)}function hi(e,t){if(e!==t){var n=void 0!==e,r=null===e,i=e==e,o=Ja(e),a=void 0!==t,s=null===t,l=t==t,u=Ja(t);if(!s&&!u&&!o&&e>t||o&&a&&l&&!s&&!u||r&&a&&l||!n&&l||!i)return 1;if(!r&&!o&&!u&&e<t||u&&n&&i&&!r&&!o||s&&n&&i||!a&&i||!l)return-1}return 0}function gi(e,t,n,i){for(var o=-1,a=e.length,s=n.length,l=-1,u=t.length,c=sn(a-s,0),d=r(u+c),p=!i;++l<u;)d[l]=t[l];for(;++o<s;)(p||o<a)&&(d[n[o]]=e[o]);for(;c--;)d[l++]=e[o++];return d}function vi(e,t,n,i){for(var o=-1,a=e.length,s=-1,l=n.length,u=-1,c=t.length,d=sn(a-l,0),p=r(d+c),f=!i;++o<d;)p[o]=e[o];for(var m=o;++u<c;)p[m+u]=t[u];for(;++s<l;)(f||o<a)&&(p[m+n[s]]=e[o++]);return p}function yi(e,t){var n=-1,i=e.length;for(t||(t=r(i));++n<i;)t[n]=e[n];return t}function bi(e,t,n,r){var i=!n;n||(n={});for(var o=-1,a=t.length;++o<a;){var s=t[o],l=r?r(n[s],e[s],s,n,e):void 0;void 0===l&&(l=e[s]),i?$n(n,s,l):Vn(n,s,l)}return n}function Si(e,t){return function(n,r){var i=ja(n)?at:Hn,o=t?t():{};return i(n,e,Xi(r,2),o)}}function xi(e){return Ir((function(t,n){var r=-1,i=n.length,o=i>1?n[i-1]:void 0,a=i>2?n[2]:void 0;for(o=e.length>3&&"function"==typeof o?(i--,o):void 0,a&&lo(n[0],n[1],a)&&(o=i<3?void 0:o,i=1),t=me(t);++r<i;){var s=n[r];s&&e(t,s,r,o)}return t}))}function wi(e,t){return function(n,r){if(null==n)return n;if(!Ba(n))return e(n,r);for(var i=n.length,o=t?i:-1,a=me(n);(t?o--:++o<i)&&!1!==r(a[o],o,a););return n}}function ki(e){return function(t,n,r){for(var i=-1,o=me(t),a=r(t),s=a.length;s--;){var l=a[e?s:++i];if(!1===n(o[l],l,o))break}return t}}function Ci(e){return function(t){var n=Dt(t=ls(t))?Kt(t):void 0,r=n?n[0]:t.charAt(0),i=n?ci(n,1).join(""):t.slice(1);return r[e]()+i}}function Oi(e){return function(t){return ht(Us(Ls(t).replace(ze,"")),e,"")}}function _i(e){return function(){var t=arguments;switch(t.length){case 0:return new e;case 1:return new e(t[0]);case 2:return new e(t[0],t[1]);case 3:return new e(t[0],t[1],t[2]);case 4:return new e(t[0],t[1],t[2],t[3]);case 5:return new e(t[0],t[1],t[2],t[3],t[4]);case 6:return new e(t[0],t[1],t[2],t[3],t[4],t[5]);case 7:return new e(t[0],t[1],t[2],t[3],t[4],t[5],t[6])}var n=Pn(e.prototype),r=e.apply(n,t);return Va(r)?r:n}}function Ei(e){return function(t,n,r){var i=me(t);if(!Ba(t)){var o=Xi(n,3);t=xs(t),n=function(e){return o(i[e],e,i)}}var a=e(t,n,r);return a>-1?i[o?t[a]:a]:void 0}}function Ti(e){return Gi((function(t){var n=t.length,r=n,i=zn.prototype.thru;for(e&&t.reverse();r--;){var a=t[r];if("function"!=typeof a)throw new ve(o);if(i&&!s&&"wrapper"==Yi(a))var s=new zn([],!0)}for(r=s?r:n;++r<n;){var l=Yi(a=t[r]),u="wrapper"==l?$i(a):void 0;s=u&&co(u[0])&&424==u[1]&&!u[4].length&&1==u[9]?s[Yi(u[0])].apply(s,u[3]):1==a.length&&co(a)?s[l]():s.thru(a)}return function(){var e=arguments,r=e[0];if(s&&1==e.length&&ja(r))return s.plant(r).value();for(var i=0,o=n?t[i].apply(this,e):r;++i<n;)o=t[i].call(this,o);return o}}))}function Ai(e,t,n,i,o,a,s,l,u,c){var d=128&t,p=1&t,f=2&t,m=24&t,h=512&t,g=f?void 0:_i(e);return function v(){for(var y=arguments.length,b=r(y),S=y;S--;)b[S]=arguments[S];if(m)var x=Qi(v),w=Bt(b,x);if(i&&(b=gi(b,i,o,m)),a&&(b=vi(b,a,s,m)),y-=w,m&&y<c){var k=Ft(b,x);return Bi(e,t,Ai,v.placeholder,n,b,k,l,u,c-y)}var C=p?n:this,O=f?C[e]:e;return y=b.length,l?b=yo(b,l):h&&y>1&&b.reverse(),d&&u<y&&(b.length=u),this&&this!==Ke&&this instanceof v&&(O=g||_i(O)),O.apply(C,b)}}function Pi(e,t){return function(n,r){return function(e,t,n,r){return ur(e,(function(e,i,o){t(r,n(e),i,o)})),r}(n,e,t(r),{})}}function Ri(e,t){return function(n,r){var i;if(void 0===n&&void 0===r)return t;if(void 0!==n&&(i=n),void 0!==r){if(void 0===i)return r;"string"==typeof n||"string"==typeof r?(n=Jr(n),r=Jr(r)):(n=Xr(n),r=Xr(r)),i=e(n,r)}return i}}function zi(e){return Gi((function(t){return t=ft(t,Rt(Xi())),Ir((function(n){var r=this;return e(t,(function(e){return ot(e,r,n)}))}))}))}function Li(e,t){var n=(t=void 0===t?" ":Jr(t)).length;if(n<2)return n?Nr(t,e):t;var r=Nr(t,Zt(e/Ht(t)));return Dt(t)?ci(Kt(r),0,e).join(""):r.slice(0,e)}function ji(e){return function(t,n,i){return i&&"number"!=typeof i&&lo(t,n,i)&&(n=i=void 0),t=rs(t),void 0===n?(n=t,t=0):n=rs(n),function(e,t,n,i){for(var o=-1,a=sn(Zt((t-e)/(n||1)),0),s=r(a);a--;)s[i?a:++o]=e,e+=n;return s}(t,n,i=void 0===i?t<n?1:-1:rs(i),e)}}function Mi(e){return function(t,n){return"string"==typeof t&&"string"==typeof n||(t=as(t),n=as(n)),e(t,n)}}function Bi(e,t,n,r,i,o,a,s,l,u){var c=8&t;t|=c?32:64,4&(t&=~(c?64:32))||(t&=-4);var d=[e,t,i,c?o:void 0,c?a:void 0,c?void 0:o,c?void 0:a,s,l,u],p=n.apply(void 0,d);return co(e)&&So(p,d),p.placeholder=r,ko(p,e,t)}function Wi(e){var t=fe[e];return function(e,n){if(e=as(e),(n=null==n?0:ln(is(n),292))&&rn(e)){var r=(ls(e)+"e").split("e");return+((r=(ls(t(r[0]+"e"+(+r[1]+n)))+"e").split("e"))[0]+"e"+(+r[1]-n))}return t(e)}}var Ni=gn&&1/Vt(new gn([,-0]))[1]==1/0?function(e){return new gn(e)}:Js;function Ii(e){return function(t){var n=ro(t);return n==h?Ut(t):n==b?Gt(t):function(e,t){return ft(t,(function(t){return[t,e[t]]}))}(t,e(t))}}function Di(e,t,n,i,s,l,u,c){var d=2&t;if(!d&&"function"!=typeof e)throw new ve(o);var p=i?i.length:0;if(p||(t&=-97,i=s=void 0),u=void 0===u?u:sn(is(u),0),c=void 0===c?c:is(c),p-=s?s.length:0,64&t){var f=i,m=s;i=s=void 0}var h=d?void 0:$i(e),g=[e,t,n,i,s,f,m,l,u,c];if(h&&function(e,t){var n=e[1],r=t[1],i=n|r,o=i<131,s=128==r&&8==n||128==r&&256==n&&e[7].length<=t[8]||384==r&&t[7].length<=t[8]&&8==n;if(!o&&!s)return e;1&r&&(e[2]=t[2],i|=1&n?0:4);var l=t[3];if(l){var u=e[3];e[3]=u?gi(u,l,t[4]):l,e[4]=u?Ft(e[3],a):t[4]}(l=t[5])&&(u=e[5],e[5]=u?vi(u,l,t[6]):l,e[6]=u?Ft(e[5],a):t[6]);(l=t[7])&&(e[7]=l);128&r&&(e[8]=null==e[8]?t[8]:ln(e[8],t[8]));null==e[9]&&(e[9]=t[9]);e[0]=t[0],e[1]=i}(g,h),e=g[0],t=g[1],n=g[2],i=g[3],s=g[4],!(c=g[9]=void 0===g[9]?d?0:e.length:sn(g[9]-p,0))&&24&t&&(t&=-25),t&&1!=t)v=8==t||16==t?function(e,t,n){var i=_i(e);return function o(){for(var a=arguments.length,s=r(a),l=a,u=Qi(o);l--;)s[l]=arguments[l];var c=a<3&&s[0]!==u&&s[a-1]!==u?[]:Ft(s,u);if((a-=c.length)<n)return Bi(e,t,Ai,o.placeholder,void 0,s,c,void 0,void 0,n-a);var d=this&&this!==Ke&&this instanceof o?i:e;return ot(d,this,s)}}(e,t,c):32!=t&&33!=t||s.length?Ai.apply(void 0,g):function(e,t,n,i){var o=1&t,a=_i(e);return function t(){for(var s=-1,l=arguments.length,u=-1,c=i.length,d=r(c+l),p=this&&this!==Ke&&this instanceof t?a:e;++u<c;)d[u]=i[u];for(;l--;)d[u++]=arguments[++s];return ot(p,o?n:this,d)}}(e,t,n,i);else var v=function(e,t,n){var r=1&t,i=_i(e);return function t(){var o=this&&this!==Ke&&this instanceof t?i:e;return o.apply(r?n:this,arguments)}}(e,t,n);return ko((h?Fr:So)(v,g),e,t)}function Ui(e,t,n,r){return void 0===e||Pa(e,Se[n])&&!ke.call(r,n)?t:e}function qi(e,t,n,r,i,o){return Va(e)&&Va(t)&&(o.set(t,e),Rr(e,t,void 0,qi,o),o.delete(t)),e}function Fi(e){return $a(e)?void 0:e}function Vi(e,t,n,r,i,o){var a=1&n,s=e.length,l=t.length;if(s!=l&&!(a&&l>s))return!1;var u=o.get(e),c=o.get(t);if(u&&c)return u==t&&c==e;var d=-1,p=!0,f=2&n?new Wn:void 0;for(o.set(e,t),o.set(t,e);++d<s;){var m=e[d],h=t[d];if(r)var g=a?r(h,m,d,t,e,o):r(m,h,d,e,t,o);if(void 0!==g){if(g)continue;p=!1;break}if(f){if(!vt(t,(function(e,t){if(!Lt(f,t)&&(m===e||i(m,e,n,r,o)))return f.push(t)}))){p=!1;break}}else if(m!==h&&!i(m,h,n,r,o)){p=!1;break}}return o.delete(e),o.delete(t),p}function Gi(e){return wo(go(e,void 0,Mo),e+"")}function Hi(e){return fr(e,xs,to)}function Ki(e){return fr(e,ws,no)}var $i=bn?function(e){return bn.get(e)}:Js;function Yi(e){for(var t=e.name+"",n=Sn[t],r=ke.call(Sn,t)?n.length:0;r--;){var i=n[r],o=i.func;if(null==o||o==e)return i.name}return t}function Qi(e){return(ke.call(An,"placeholder")?An:e).placeholder}function Xi(){var e=An.iteratee||$s;return e=e===$s?Cr:e,arguments.length?e(arguments[0],arguments[1]):e}function Ji(e,t){var n,r,i=e.__data__;return("string"==(r=typeof(n=t))||"number"==r||"symbol"==r||"boolean"==r?"__proto__"!==n:null===n)?i["string"==typeof t?"string":"hash"]:i.map}function Zi(e){for(var t=xs(e),n=t.length;n--;){var r=t[n],i=e[r];t[n]=[r,i,mo(i)]}return t}function eo(e,t){var n=function(e,t){return null==e?void 0:e[t]}(e,t);return kr(n)?n:void 0}var to=tn?function(e){return null==e?[]:(e=me(e),ct(tn(e),(function(t){return He.call(e,t)})))}:ol,no=tn?function(e){for(var t=[];e;)mt(t,to(e)),e=qe(e);return t}:ol,ro=mr;function io(e,t,n){for(var r=-1,i=(t=li(t,e)).length,o=!1;++r<i;){var a=Eo(t[r]);if(!(o=null!=e&&n(e,a)))break;e=e[a]}return o||++r!=i?o:!!(i=null==e?0:e.length)&&Fa(i)&&so(a,i)&&(ja(e)||La(e))}function oo(e){return"function"!=typeof e.constructor||fo(e)?{}:Pn(qe(e))}function ao(e){return ja(e)||La(e)||!!(Ye&&e&&e[Ye])}function so(e,t){var n=typeof e;return!!(t=null==t?9007199254740991:t)&&("number"==n||"symbol"!=n&&le.test(e))&&e>-1&&e%1==0&&e<t}function lo(e,t,n){if(!Va(n))return!1;var r=typeof t;return!!("number"==r?Ba(n)&&so(t,n.length):"string"==r&&t in n)&&Pa(n[t],e)}function uo(e,t){if(ja(e))return!1;var n=typeof e;return!("number"!=n&&"symbol"!=n&&"boolean"!=n&&null!=e&&!Ja(e))||(V.test(e)||!F.test(e)||null!=t&&e in me(t))}function co(e){var t=Yi(e),n=An[t];if("function"!=typeof n||!(t in Ln.prototype))return!1;if(e===n)return!0;var r=$i(n);return!!r&&e===r[0]}(fn&&ro(new fn(new ArrayBuffer(1)))!=C||mn&&ro(new mn)!=h||hn&&"[object Promise]"!=ro(hn.resolve())||gn&&ro(new gn)!=b||vn&&ro(new vn)!=w)&&(ro=function(e){var t=mr(e),n=t==v?e.constructor:void 0,r=n?To(n):"";if(r)switch(r){case xn:return C;case wn:return h;case kn:return"[object Promise]";case Cn:return b;case On:return w}return t});var po=xe?Ua:al;function fo(e){var t=e&&e.constructor;return e===("function"==typeof t&&t.prototype||Se)}function mo(e){return e==e&&!Va(e)}function ho(e,t){return function(n){return null!=n&&(n[e]===t&&(void 0!==t||e in me(n)))}}function go(e,t,n){return t=sn(void 0===t?e.length-1:t,0),function(){for(var i=arguments,o=-1,a=sn(i.length-t,0),s=r(a);++o<a;)s[o]=i[t+o];o=-1;for(var l=r(t+1);++o<t;)l[o]=i[o];return l[t]=n(s),ot(e,this,l)}}function vo(e,t){return t.length<2?e:pr(e,Hr(t,0,-1))}function yo(e,t){for(var n=e.length,r=ln(t.length,n),i=yi(e);r--;){var o=t[r];e[r]=so(o,n)?i[o]:void 0}return e}function bo(e,t){if(("constructor"!==t||"function"!=typeof e[t])&&"__proto__"!=t)return e[t]}var So=Co(Fr),xo=Jt||function(e,t){return Ke.setTimeout(e,t)},wo=Co(Vr);function ko(e,t,n){var r=t+"";return wo(e,function(e,t){var n=t.length;if(!n)return e;var r=n-1;return t[r]=(n>1?"& ":"")+t[r],t=t.join(n>2?", ":" "),e.replace(Q,"{\n/* [wrapped with "+t+"] */\n")}(r,function(e,t){return st(s,(function(n){var r="_."+n[0];t&n[1]&&!dt(e,r)&&e.push(r)})),e.sort()}(function(e){var t=e.match(X);return t?t[1].split(J):[]}(r),n)))}function Co(e){var t=0,n=0;return function(){var r=un(),i=16-(r-n);if(n=r,i>0){if(++t>=800)return arguments[0]}else t=0;return e.apply(void 0,arguments)}}function Oo(e,t){var n=-1,r=e.length,i=r-1;for(t=void 0===t?r:t;++n<t;){var o=Wr(n,i),a=e[o];e[o]=e[n],e[n]=a}return e.length=t,e}var _o=function(e){var t=Ca(e,(function(e){return 500===n.size&&n.clear(),e})),n=t.cache;return t}((function(e){var t=[];return 46===e.charCodeAt(0)&&t.push(""),e.replace(G,(function(e,n,r,i){t.push(r?i.replace(te,"$1"):n||e)})),t}));function Eo(e){if("string"==typeof e||Ja(e))return e;var t=e+"";return"0"==t&&1/e==-1/0?"-0":t}function To(e){if(null!=e){try{return we.call(e)}catch(e){}try{return e+""}catch(e){}}return""}function Ao(e){if(e instanceof Ln)return e.clone();var t=new zn(e.__wrapped__,e.__chain__);return t.__actions__=yi(e.__actions__),t.__index__=e.__index__,t.__values__=e.__values__,t}var Po=Ir((function(e,t){return Wa(e)?er(e,ar(t,1,Wa,!0)):[]})),Ro=Ir((function(e,t){var n=Do(t);return Wa(n)&&(n=void 0),Wa(e)?er(e,ar(t,1,Wa,!0),Xi(n,2)):[]})),zo=Ir((function(e,t){var n=Do(t);return Wa(n)&&(n=void 0),Wa(e)?er(e,ar(t,1,Wa,!0),void 0,n):[]}));function Lo(e,t,n){var r=null==e?0:e.length;if(!r)return-1;var i=null==n?0:is(n);return i<0&&(i=sn(r+i,0)),St(e,Xi(t,3),i)}function jo(e,t,n){var r=null==e?0:e.length;if(!r)return-1;var i=r-1;return void 0!==n&&(i=is(n),i=n<0?sn(r+i,0):ln(i,r-1)),St(e,Xi(t,3),i,!0)}function Mo(e){return(null==e?0:e.length)?ar(e,1):[]}function Bo(e){return e&&e.length?e[0]:void 0}var Wo=Ir((function(e){var t=ft(e,ai);return t.length&&t[0]===e[0]?yr(t):[]})),No=Ir((function(e){var t=Do(e),n=ft(e,ai);return t===Do(n)?t=void 0:n.pop(),n.length&&n[0]===e[0]?yr(n,Xi(t,2)):[]})),Io=Ir((function(e){var t=Do(e),n=ft(e,ai);return(t="function"==typeof t?t:void 0)&&n.pop(),n.length&&n[0]===e[0]?yr(n,void 0,t):[]}));function Do(e){var t=null==e?0:e.length;return t?e[t-1]:void 0}var Uo=Ir(qo);function qo(e,t){return e&&e.length&&t&&t.length?Mr(e,t):e}var Fo=Gi((function(e,t){var n=null==e?0:e.length,r=Yn(e,t);return Br(e,ft(t,(function(e){return so(e,n)?+e:e})).sort(hi)),r}));function Vo(e){return null==e?e:pn.call(e)}var Go=Ir((function(e){return Zr(ar(e,1,Wa,!0))})),Ho=Ir((function(e){var t=Do(e);return Wa(t)&&(t=void 0),Zr(ar(e,1,Wa,!0),Xi(t,2))})),Ko=Ir((function(e){var t=Do(e);return t="function"==typeof t?t:void 0,Zr(ar(e,1,Wa,!0),void 0,t)}));function $o(e){if(!e||!e.length)return[];var t=0;return e=ct(e,(function(e){if(Wa(e))return t=sn(e.length,t),!0})),At(t,(function(t){return ft(e,Ot(t))}))}function Yo(e,t){if(!e||!e.length)return[];var n=$o(e);return null==t?n:ft(n,(function(e){return ot(t,void 0,e)}))}var Qo=Ir((function(e,t){return Wa(e)?er(e,t):[]})),Xo=Ir((function(e){return ii(ct(e,Wa))})),Jo=Ir((function(e){var t=Do(e);return Wa(t)&&(t=void 0),ii(ct(e,Wa),Xi(t,2))})),Zo=Ir((function(e){var t=Do(e);return t="function"==typeof t?t:void 0,ii(ct(e,Wa),void 0,t)})),ea=Ir($o);var ta=Ir((function(e){var t=e.length,n=t>1?e[t-1]:void 0;return n="function"==typeof n?(e.pop(),n):void 0,Yo(e,n)}));function na(e){var t=An(e);return t.__chain__=!0,t}function ra(e,t){return t(e)}var ia=Gi((function(e){var t=e.length,n=t?e[0]:0,r=this.__wrapped__,i=function(t){return Yn(t,e)};return!(t>1||this.__actions__.length)&&r instanceof Ln&&so(n)?((r=r.slice(n,+n+(t?1:0))).__actions__.push({func:ra,args:[i],thisArg:void 0}),new zn(r,this.__chain__).thru((function(e){return t&&!e.length&&e.push(void 0),e}))):this.thru(i)}));var oa=Si((function(e,t,n){ke.call(e,n)?++e[n]:$n(e,n,1)}));var aa=Ei(Lo),sa=Ei(jo);function la(e,t){return(ja(e)?st:tr)(e,Xi(t,3))}function ua(e,t){return(ja(e)?lt:nr)(e,Xi(t,3))}var ca=Si((function(e,t,n){ke.call(e,n)?e[n].push(t):$n(e,n,[t])}));var da=Ir((function(e,t,n){var i=-1,o="function"==typeof t,a=Ba(e)?r(e.length):[];return tr(e,(function(e){a[++i]=o?ot(t,e,n):br(e,t,n)})),a})),pa=Si((function(e,t,n){$n(e,n,t)}));function fa(e,t){return(ja(e)?ft:Tr)(e,Xi(t,3))}var ma=Si((function(e,t,n){e[n?0:1].push(t)}),(function(){return[[],[]]}));var ha=Ir((function(e,t){if(null==e)return[];var n=t.length;return n>1&&lo(e,t[0],t[1])?t=[]:n>2&&lo(t[0],t[1],t[2])&&(t=[t[0]]),Lr(e,ar(t,1),[])})),ga=Xt||function(){return Ke.Date.now()};function va(e,t,n){return t=n?void 0:t,Di(e,128,void 0,void 0,void 0,void 0,t=e&&null==t?e.length:t)}function ya(e,t){var n;if("function"!=typeof t)throw new ve(o);return e=is(e),function(){return--e>0&&(n=t.apply(this,arguments)),e<=1&&(t=void 0),n}}var ba=Ir((function(e,t,n){var r=1;if(n.length){var i=Ft(n,Qi(ba));r|=32}return Di(e,r,t,n,i)})),Sa=Ir((function(e,t,n){var r=3;if(n.length){var i=Ft(n,Qi(Sa));r|=32}return Di(t,r,e,n,i)}));function xa(e,t,n){var r,i,a,s,l,u,c=0,d=!1,p=!1,f=!0;if("function"!=typeof e)throw new ve(o);function m(t){var n=r,o=i;return r=i=void 0,c=t,s=e.apply(o,n)}function h(e){return c=e,l=xo(v,t),d?m(e):s}function g(e){var n=e-u;return void 0===u||n>=t||n<0||p&&e-c>=a}function v(){var e=ga();if(g(e))return y(e);l=xo(v,function(e){var n=t-(e-u);return p?ln(n,a-(e-c)):n}(e))}function y(e){return l=void 0,f&&r?m(e):(r=i=void 0,s)}function b(){var e=ga(),n=g(e);if(r=arguments,i=this,u=e,n){if(void 0===l)return h(u);if(p)return di(l),l=xo(v,t),m(u)}return void 0===l&&(l=xo(v,t)),s}return t=as(t)||0,Va(n)&&(d=!!n.leading,a=(p="maxWait"in n)?sn(as(n.maxWait)||0,t):a,f="trailing"in n?!!n.trailing:f),b.cancel=function(){void 0!==l&&di(l),c=0,r=u=i=l=void 0},b.flush=function(){return void 0===l?s:y(ga())},b}var wa=Ir((function(e,t){return Zn(e,1,t)})),ka=Ir((function(e,t,n){return Zn(e,as(t)||0,n)}));function Ca(e,t){if("function"!=typeof e||null!=t&&"function"!=typeof t)throw new ve(o);var n=function(){var r=arguments,i=t?t.apply(this,r):r[0],o=n.cache;if(o.has(i))return o.get(i);var a=e.apply(this,r);return n.cache=o.set(i,a)||o,a};return n.cache=new(Ca.Cache||Bn),n}function Oa(e){if("function"!=typeof e)throw new ve(o);return function(){var t=arguments;switch(t.length){case 0:return!e.call(this);case 1:return!e.call(this,t[0]);case 2:return!e.call(this,t[0],t[1]);case 3:return!e.call(this,t[0],t[1],t[2])}return!e.apply(this,t)}}Ca.Cache=Bn;var _a=ui((function(e,t){var n=(t=1==t.length&&ja(t[0])?ft(t[0],Rt(Xi())):ft(ar(t,1),Rt(Xi()))).length;return Ir((function(r){for(var i=-1,o=ln(r.length,n);++i<o;)r[i]=t[i].call(this,r[i]);return ot(e,this,r)}))})),Ea=Ir((function(e,t){return Di(e,32,void 0,t,Ft(t,Qi(Ea)))})),Ta=Ir((function(e,t){return Di(e,64,void 0,t,Ft(t,Qi(Ta)))})),Aa=Gi((function(e,t){return Di(e,256,void 0,void 0,void 0,t)}));function Pa(e,t){return e===t||e!=e&&t!=t}var Ra=Mi(hr),za=Mi((function(e,t){return e>=t})),La=Sr(function(){return arguments}())?Sr:function(e){return Ga(e)&&ke.call(e,"callee")&&!He.call(e,"callee")},ja=r.isArray,Ma=Ze?Rt(Ze):function(e){return Ga(e)&&mr(e)==k};function Ba(e){return null!=e&&Fa(e.length)&&!Ua(e)}function Wa(e){return Ga(e)&&Ba(e)}var Na=nn||al,Ia=et?Rt(et):function(e){return Ga(e)&&mr(e)==d};function Da(e){if(!Ga(e))return!1;var t=mr(e);return t==p||"[object DOMException]"==t||"string"==typeof e.message&&"string"==typeof e.name&&!$a(e)}function Ua(e){if(!Va(e))return!1;var t=mr(e);return t==f||t==m||"[object AsyncFunction]"==t||"[object Proxy]"==t}function qa(e){return"number"==typeof e&&e==is(e)}function Fa(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=9007199254740991}function Va(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}function Ga(e){return null!=e&&"object"==typeof e}var Ha=tt?Rt(tt):function(e){return Ga(e)&&ro(e)==h};function Ka(e){return"number"==typeof e||Ga(e)&&mr(e)==g}function $a(e){if(!Ga(e)||mr(e)!=v)return!1;var t=qe(e);if(null===t)return!0;var n=ke.call(t,"constructor")&&t.constructor;return"function"==typeof n&&n instanceof n&&we.call(n)==Ee}var Ya=nt?Rt(nt):function(e){return Ga(e)&&mr(e)==y};var Qa=rt?Rt(rt):function(e){return Ga(e)&&ro(e)==b};function Xa(e){return"string"==typeof e||!ja(e)&&Ga(e)&&mr(e)==S}function Ja(e){return"symbol"==typeof e||Ga(e)&&mr(e)==x}var Za=it?Rt(it):function(e){return Ga(e)&&Fa(e.length)&&!!De[mr(e)]};var es=Mi(Er),ts=Mi((function(e,t){return e<=t}));function ns(e){if(!e)return[];if(Ba(e))return Xa(e)?Kt(e):yi(e);if(Xe&&e[Xe])return function(e){for(var t,n=[];!(t=e.next()).done;)n.push(t.value);return n}(e[Xe]());var t=ro(e);return(t==h?Ut:t==b?Vt:Ps)(e)}function rs(e){return e?(e=as(e))===1/0||e===-1/0?17976931348623157e292*(e<0?-1:1):e==e?e:0:0===e?e:0}function is(e){var t=rs(e),n=t%1;return t==t?n?t-n:t:0}function os(e){return e?Qn(is(e),0,4294967295):0}function as(e){if("number"==typeof e)return e;if(Ja(e))return NaN;if(Va(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=Va(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=Pt(e);var n=oe.test(e);return n||se.test(e)?Ve(e.slice(2),n?2:8):ie.test(e)?NaN:+e}function ss(e){return bi(e,ws(e))}function ls(e){return null==e?"":Jr(e)}var us=xi((function(e,t){if(fo(t)||Ba(t))bi(t,xs(t),e);else for(var n in t)ke.call(t,n)&&Vn(e,n,t[n])})),cs=xi((function(e,t){bi(t,ws(t),e)})),ds=xi((function(e,t,n,r){bi(t,ws(t),e,r)})),ps=xi((function(e,t,n,r){bi(t,xs(t),e,r)})),fs=Gi(Yn);var ms=Ir((function(e,t){e=me(e);var n=-1,r=t.length,i=r>2?t[2]:void 0;for(i&&lo(t[0],t[1],i)&&(r=1);++n<r;)for(var o=t[n],a=ws(o),s=-1,l=a.length;++s<l;){var u=a[s],c=e[u];(void 0===c||Pa(c,Se[u])&&!ke.call(e,u))&&(e[u]=o[u])}return e})),hs=Ir((function(e){return e.push(void 0,qi),ot(Cs,void 0,e)}));function gs(e,t,n){var r=null==e?void 0:pr(e,t);return void 0===r?n:r}function vs(e,t){return null!=e&&io(e,t,vr)}var ys=Pi((function(e,t,n){null!=t&&"function"!=typeof t.toString&&(t=_e.call(t)),e[t]=n}),Vs(Ks)),bs=Pi((function(e,t,n){null!=t&&"function"!=typeof t.toString&&(t=_e.call(t)),ke.call(e,t)?e[t].push(n):e[t]=[n]}),Xi),Ss=Ir(br);function xs(e){return Ba(e)?In(e):Or(e)}function ws(e){return Ba(e)?In(e,!0):_r(e)}var ks=xi((function(e,t,n){Rr(e,t,n)})),Cs=xi((function(e,t,n,r){Rr(e,t,n,r)})),Os=Gi((function(e,t){var n={};if(null==e)return n;var r=!1;t=ft(t,(function(t){return t=li(t,e),r||(r=t.length>1),t})),bi(e,Ki(e),n),r&&(n=Xn(n,7,Fi));for(var i=t.length;i--;)ei(n,t[i]);return n}));var _s=Gi((function(e,t){return null==e?{}:function(e,t){return jr(e,t,(function(t,n){return vs(e,n)}))}(e,t)}));function Es(e,t){if(null==e)return{};var n=ft(Ki(e),(function(e){return[e]}));return t=Xi(t),jr(e,n,(function(e,n){return t(e,n[0])}))}var Ts=Ii(xs),As=Ii(ws);function Ps(e){return null==e?[]:zt(e,xs(e))}var Rs=Oi((function(e,t,n){return t=t.toLowerCase(),e+(n?zs(t):t)}));function zs(e){return Ds(ls(e).toLowerCase())}function Ls(e){return(e=ls(e))&&e.replace(ue,Wt).replace(Le,"")}var js=Oi((function(e,t,n){return e+(n?"-":"")+t.toLowerCase()})),Ms=Oi((function(e,t,n){return e+(n?" ":"")+t.toLowerCase()})),Bs=Ci("toLowerCase");var Ws=Oi((function(e,t,n){return e+(n?"_":"")+t.toLowerCase()}));var Ns=Oi((function(e,t,n){return e+(n?" ":"")+Ds(t)}));var Is=Oi((function(e,t,n){return e+(n?" ":"")+t.toUpperCase()})),Ds=Ci("toUpperCase");function Us(e,t,n){return e=ls(e),void 0===(t=n?void 0:t)?function(e){return We.test(e)}(e)?function(e){return e.match(Me)||[]}(e):function(e){return e.match(Z)||[]}(e):e.match(t)||[]}var qs=Ir((function(e,t){try{return ot(e,void 0,t)}catch(e){return Da(e)?e:new Y(e)}})),Fs=Gi((function(e,t){return st(t,(function(t){t=Eo(t),$n(e,t,ba(e[t],e))})),e}));function Vs(e){return function(){return e}}var Gs=Ti(),Hs=Ti(!0);function Ks(e){return e}function $s(e){return Cr("function"==typeof e?e:Xn(e,1))}var Ys=Ir((function(e,t){return function(n){return br(n,e,t)}})),Qs=Ir((function(e,t){return function(n){return br(e,n,t)}}));function Xs(e,t,n){var r=xs(t),i=dr(t,r);null!=n||Va(t)&&(i.length||!r.length)||(n=t,t=e,e=this,i=dr(t,xs(t)));var o=!(Va(n)&&"chain"in n&&!n.chain),a=Ua(e);return st(i,(function(n){var r=t[n];e[n]=r,a&&(e.prototype[n]=function(){var t=this.__chain__;if(o||t){var n=e(this.__wrapped__),i=n.__actions__=yi(this.__actions__);return i.push({func:r,args:arguments,thisArg:e}),n.__chain__=t,n}return r.apply(e,mt([this.value()],arguments))})})),e}function Js(){}var Zs=zi(ft),el=zi(ut),tl=zi(vt);function nl(e){return uo(e)?Ot(Eo(e)):function(e){return function(t){return pr(t,e)}}(e)}var rl=ji(),il=ji(!0);function ol(){return[]}function al(){return!1}var sl=Ri((function(e,t){return e+t}),0),ll=Wi("ceil"),ul=Ri((function(e,t){return e/t}),1),cl=Wi("floor");var dl,pl=Ri((function(e,t){return e*t}),1),fl=Wi("round"),ml=Ri((function(e,t){return e-t}),0);return An.after=function(e,t){if("function"!=typeof t)throw new ve(o);return e=is(e),function(){if(--e<1)return t.apply(this,arguments)}},An.ary=va,An.assign=us,An.assignIn=cs,An.assignInWith=ds,An.assignWith=ps,An.at=fs,An.before=ya,An.bind=ba,An.bindAll=Fs,An.bindKey=Sa,An.castArray=function(){if(!arguments.length)return[];var e=arguments[0];return ja(e)?e:[e]},An.chain=na,An.chunk=function(e,t,n){t=(n?lo(e,t,n):void 0===t)?1:sn(is(t),0);var i=null==e?0:e.length;if(!i||t<1)return[];for(var o=0,a=0,s=r(Zt(i/t));o<i;)s[a++]=Hr(e,o,o+=t);return s},An.compact=function(e){for(var t=-1,n=null==e?0:e.length,r=0,i=[];++t<n;){var o=e[t];o&&(i[r++]=o)}return i},An.concat=function(){var e=arguments.length;if(!e)return[];for(var t=r(e-1),n=arguments[0],i=e;i--;)t[i-1]=arguments[i];return mt(ja(n)?yi(n):[n],ar(t,1))},An.cond=function(e){var t=null==e?0:e.length,n=Xi();return e=t?ft(e,(function(e){if("function"!=typeof e[1])throw new ve(o);return[n(e[0]),e[1]]})):[],Ir((function(n){for(var r=-1;++r<t;){var i=e[r];if(ot(i[0],this,n))return ot(i[1],this,n)}}))},An.conforms=function(e){return function(e){var t=xs(e);return function(n){return Jn(n,e,t)}}(Xn(e,1))},An.constant=Vs,An.countBy=oa,An.create=function(e,t){var n=Pn(e);return null==t?n:Kn(n,t)},An.curry=function e(t,n,r){var i=Di(t,8,void 0,void 0,void 0,void 0,void 0,n=r?void 0:n);return i.placeholder=e.placeholder,i},An.curryRight=function e(t,n,r){var i=Di(t,16,void 0,void 0,void 0,void 0,void 0,n=r?void 0:n);return i.placeholder=e.placeholder,i},An.debounce=xa,An.defaults=ms,An.defaultsDeep=hs,An.defer=wa,An.delay=ka,An.difference=Po,An.differenceBy=Ro,An.differenceWith=zo,An.drop=function(e,t,n){var r=null==e?0:e.length;return r?Hr(e,(t=n||void 0===t?1:is(t))<0?0:t,r):[]},An.dropRight=function(e,t,n){var r=null==e?0:e.length;return r?Hr(e,0,(t=r-(t=n||void 0===t?1:is(t)))<0?0:t):[]},An.dropRightWhile=function(e,t){return e&&e.length?ni(e,Xi(t,3),!0,!0):[]},An.dropWhile=function(e,t){return e&&e.length?ni(e,Xi(t,3),!0):[]},An.fill=function(e,t,n,r){var i=null==e?0:e.length;return i?(n&&"number"!=typeof n&&lo(e,t,n)&&(n=0,r=i),function(e,t,n,r){var i=e.length;for((n=is(n))<0&&(n=-n>i?0:i+n),(r=void 0===r||r>i?i:is(r))<0&&(r+=i),r=n>r?0:os(r);n<r;)e[n++]=t;return e}(e,t,n,r)):[]},An.filter=function(e,t){return(ja(e)?ct:or)(e,Xi(t,3))},An.flatMap=function(e,t){return ar(fa(e,t),1)},An.flatMapDeep=function(e,t){return ar(fa(e,t),1/0)},An.flatMapDepth=function(e,t,n){return n=void 0===n?1:is(n),ar(fa(e,t),n)},An.flatten=Mo,An.flattenDeep=function(e){return(null==e?0:e.length)?ar(e,1/0):[]},An.flattenDepth=function(e,t){return(null==e?0:e.length)?ar(e,t=void 0===t?1:is(t)):[]},An.flip=function(e){return Di(e,512)},An.flow=Gs,An.flowRight=Hs,An.fromPairs=function(e){for(var t=-1,n=null==e?0:e.length,r={};++t<n;){var i=e[t];r[i[0]]=i[1]}return r},An.functions=function(e){return null==e?[]:dr(e,xs(e))},An.functionsIn=function(e){return null==e?[]:dr(e,ws(e))},An.groupBy=ca,An.initial=function(e){return(null==e?0:e.length)?Hr(e,0,-1):[]},An.intersection=Wo,An.intersectionBy=No,An.intersectionWith=Io,An.invert=ys,An.invertBy=bs,An.invokeMap=da,An.iteratee=$s,An.keyBy=pa,An.keys=xs,An.keysIn=ws,An.map=fa,An.mapKeys=function(e,t){var n={};return t=Xi(t,3),ur(e,(function(e,r,i){$n(n,t(e,r,i),e)})),n},An.mapValues=function(e,t){var n={};return t=Xi(t,3),ur(e,(function(e,r,i){$n(n,r,t(e,r,i))})),n},An.matches=function(e){return Ar(Xn(e,1))},An.matchesProperty=function(e,t){return Pr(e,Xn(t,1))},An.memoize=Ca,An.merge=ks,An.mergeWith=Cs,An.method=Ys,An.methodOf=Qs,An.mixin=Xs,An.negate=Oa,An.nthArg=function(e){return e=is(e),Ir((function(t){return zr(t,e)}))},An.omit=Os,An.omitBy=function(e,t){return Es(e,Oa(Xi(t)))},An.once=function(e){return ya(2,e)},An.orderBy=function(e,t,n,r){return null==e?[]:(ja(t)||(t=null==t?[]:[t]),ja(n=r?void 0:n)||(n=null==n?[]:[n]),Lr(e,t,n))},An.over=Zs,An.overArgs=_a,An.overEvery=el,An.overSome=tl,An.partial=Ea,An.partialRight=Ta,An.partition=ma,An.pick=_s,An.pickBy=Es,An.property=nl,An.propertyOf=function(e){return function(t){return null==e?void 0:pr(e,t)}},An.pull=Uo,An.pullAll=qo,An.pullAllBy=function(e,t,n){return e&&e.length&&t&&t.length?Mr(e,t,Xi(n,2)):e},An.pullAllWith=function(e,t,n){return e&&e.length&&t&&t.length?Mr(e,t,void 0,n):e},An.pullAt=Fo,An.range=rl,An.rangeRight=il,An.rearg=Aa,An.reject=function(e,t){return(ja(e)?ct:or)(e,Oa(Xi(t,3)))},An.remove=function(e,t){var n=[];if(!e||!e.length)return n;var r=-1,i=[],o=e.length;for(t=Xi(t,3);++r<o;){var a=e[r];t(a,r,e)&&(n.push(a),i.push(r))}return Br(e,i),n},An.rest=function(e,t){if("function"!=typeof e)throw new ve(o);return Ir(e,t=void 0===t?t:is(t))},An.reverse=Vo,An.sampleSize=function(e,t,n){return t=(n?lo(e,t,n):void 0===t)?1:is(t),(ja(e)?Un:Ur)(e,t)},An.set=function(e,t,n){return null==e?e:qr(e,t,n)},An.setWith=function(e,t,n,r){return r="function"==typeof r?r:void 0,null==e?e:qr(e,t,n,r)},An.shuffle=function(e){return(ja(e)?qn:Gr)(e)},An.slice=function(e,t,n){var r=null==e?0:e.length;return r?(n&&"number"!=typeof n&&lo(e,t,n)?(t=0,n=r):(t=null==t?0:is(t),n=void 0===n?r:is(n)),Hr(e,t,n)):[]},An.sortBy=ha,An.sortedUniq=function(e){return e&&e.length?Qr(e):[]},An.sortedUniqBy=function(e,t){return e&&e.length?Qr(e,Xi(t,2)):[]},An.split=function(e,t,n){return n&&"number"!=typeof n&&lo(e,t,n)&&(t=n=void 0),(n=void 0===n?4294967295:n>>>0)?(e=ls(e))&&("string"==typeof t||null!=t&&!Ya(t))&&!(t=Jr(t))&&Dt(e)?ci(Kt(e),0,n):e.split(t,n):[]},An.spread=function(e,t){if("function"!=typeof e)throw new ve(o);return t=null==t?0:sn(is(t),0),Ir((function(n){var r=n[t],i=ci(n,0,t);return r&&mt(i,r),ot(e,this,i)}))},An.tail=function(e){var t=null==e?0:e.length;return t?Hr(e,1,t):[]},An.take=function(e,t,n){return e&&e.length?Hr(e,0,(t=n||void 0===t?1:is(t))<0?0:t):[]},An.takeRight=function(e,t,n){var r=null==e?0:e.length;return r?Hr(e,(t=r-(t=n||void 0===t?1:is(t)))<0?0:t,r):[]},An.takeRightWhile=function(e,t){return e&&e.length?ni(e,Xi(t,3),!1,!0):[]},An.takeWhile=function(e,t){return e&&e.length?ni(e,Xi(t,3)):[]},An.tap=function(e,t){return t(e),e},An.throttle=function(e,t,n){var r=!0,i=!0;if("function"!=typeof e)throw new ve(o);return Va(n)&&(r="leading"in n?!!n.leading:r,i="trailing"in n?!!n.trailing:i),xa(e,t,{leading:r,maxWait:t,trailing:i})},An.thru=ra,An.toArray=ns,An.toPairs=Ts,An.toPairsIn=As,An.toPath=function(e){return ja(e)?ft(e,Eo):Ja(e)?[e]:yi(_o(ls(e)))},An.toPlainObject=ss,An.transform=function(e,t,n){var r=ja(e),i=r||Na(e)||Za(e);if(t=Xi(t,4),null==n){var o=e&&e.constructor;n=i?r?new o:[]:Va(e)&&Ua(o)?Pn(qe(e)):{}}return(i?st:ur)(e,(function(e,r,i){return t(n,e,r,i)})),n},An.unary=function(e){return va(e,1)},An.union=Go,An.unionBy=Ho,An.unionWith=Ko,An.uniq=function(e){return e&&e.length?Zr(e):[]},An.uniqBy=function(e,t){return e&&e.length?Zr(e,Xi(t,2)):[]},An.uniqWith=function(e,t){return t="function"==typeof t?t:void 0,e&&e.length?Zr(e,void 0,t):[]},An.unset=function(e,t){return null==e||ei(e,t)},An.unzip=$o,An.unzipWith=Yo,An.update=function(e,t,n){return null==e?e:ti(e,t,si(n))},An.updateWith=function(e,t,n,r){return r="function"==typeof r?r:void 0,null==e?e:ti(e,t,si(n),r)},An.values=Ps,An.valuesIn=function(e){return null==e?[]:zt(e,ws(e))},An.without=Qo,An.words=Us,An.wrap=function(e,t){return Ea(si(t),e)},An.xor=Xo,An.xorBy=Jo,An.xorWith=Zo,An.zip=ea,An.zipObject=function(e,t){return oi(e||[],t||[],Vn)},An.zipObjectDeep=function(e,t){return oi(e||[],t||[],qr)},An.zipWith=ta,An.entries=Ts,An.entriesIn=As,An.extend=cs,An.extendWith=ds,Xs(An,An),An.add=sl,An.attempt=qs,An.camelCase=Rs,An.capitalize=zs,An.ceil=ll,An.clamp=function(e,t,n){return void 0===n&&(n=t,t=void 0),void 0!==n&&(n=(n=as(n))==n?n:0),void 0!==t&&(t=(t=as(t))==t?t:0),Qn(as(e),t,n)},An.clone=function(e){return Xn(e,4)},An.cloneDeep=function(e){return Xn(e,5)},An.cloneDeepWith=function(e,t){return Xn(e,5,t="function"==typeof t?t:void 0)},An.cloneWith=function(e,t){return Xn(e,4,t="function"==typeof t?t:void 0)},An.conformsTo=function(e,t){return null==t||Jn(e,t,xs(t))},An.deburr=Ls,An.defaultTo=function(e,t){return null==e||e!=e?t:e},An.divide=ul,An.endsWith=function(e,t,n){e=ls(e),t=Jr(t);var r=e.length,i=n=void 0===n?r:Qn(is(n),0,r);return(n-=t.length)>=0&&e.slice(n,i)==t},An.eq=Pa,An.escape=function(e){return(e=ls(e))&&I.test(e)?e.replace(W,Nt):e},An.escapeRegExp=function(e){return(e=ls(e))&&K.test(e)?e.replace(H,"\\$&"):e},An.every=function(e,t,n){var r=ja(e)?ut:rr;return n&&lo(e,t,n)&&(t=void 0),r(e,Xi(t,3))},An.find=aa,An.findIndex=Lo,An.findKey=function(e,t){return bt(e,Xi(t,3),ur)},An.findLast=sa,An.findLastIndex=jo,An.findLastKey=function(e,t){return bt(e,Xi(t,3),cr)},An.floor=cl,An.forEach=la,An.forEachRight=ua,An.forIn=function(e,t){return null==e?e:sr(e,Xi(t,3),ws)},An.forInRight=function(e,t){return null==e?e:lr(e,Xi(t,3),ws)},An.forOwn=function(e,t){return e&&ur(e,Xi(t,3))},An.forOwnRight=function(e,t){return e&&cr(e,Xi(t,3))},An.get=gs,An.gt=Ra,An.gte=za,An.has=function(e,t){return null!=e&&io(e,t,gr)},An.hasIn=vs,An.head=Bo,An.identity=Ks,An.includes=function(e,t,n,r){e=Ba(e)?e:Ps(e),n=n&&!r?is(n):0;var i=e.length;return n<0&&(n=sn(i+n,0)),Xa(e)?n<=i&&e.indexOf(t,n)>-1:!!i&&xt(e,t,n)>-1},An.indexOf=function(e,t,n){var r=null==e?0:e.length;if(!r)return-1;var i=null==n?0:is(n);return i<0&&(i=sn(r+i,0)),xt(e,t,i)},An.inRange=function(e,t,n){return t=rs(t),void 0===n?(n=t,t=0):n=rs(n),function(e,t,n){return e>=ln(t,n)&&e<sn(t,n)}(e=as(e),t,n)},An.invoke=Ss,An.isArguments=La,An.isArray=ja,An.isArrayBuffer=Ma,An.isArrayLike=Ba,An.isArrayLikeObject=Wa,An.isBoolean=function(e){return!0===e||!1===e||Ga(e)&&mr(e)==c},An.isBuffer=Na,An.isDate=Ia,An.isElement=function(e){return Ga(e)&&1===e.nodeType&&!$a(e)},An.isEmpty=function(e){if(null==e)return!0;if(Ba(e)&&(ja(e)||"string"==typeof e||"function"==typeof e.splice||Na(e)||Za(e)||La(e)))return!e.length;var t=ro(e);if(t==h||t==b)return!e.size;if(fo(e))return!Or(e).length;for(var n in e)if(ke.call(e,n))return!1;return!0},An.isEqual=function(e,t){return xr(e,t)},An.isEqualWith=function(e,t,n){var r=(n="function"==typeof n?n:void 0)?n(e,t):void 0;return void 0===r?xr(e,t,void 0,n):!!r},An.isError=Da,An.isFinite=function(e){return"number"==typeof e&&rn(e)},An.isFunction=Ua,An.isInteger=qa,An.isLength=Fa,An.isMap=Ha,An.isMatch=function(e,t){return e===t||wr(e,t,Zi(t))},An.isMatchWith=function(e,t,n){return n="function"==typeof n?n:void 0,wr(e,t,Zi(t),n)},An.isNaN=function(e){return Ka(e)&&e!=+e},An.isNative=function(e){if(po(e))throw new Y("Unsupported core-js use. Try https://npms.io/search?q=ponyfill.");return kr(e)},An.isNil=function(e){return null==e},An.isNull=function(e){return null===e},An.isNumber=Ka,An.isObject=Va,An.isObjectLike=Ga,An.isPlainObject=$a,An.isRegExp=Ya,An.isSafeInteger=function(e){return qa(e)&&e>=-9007199254740991&&e<=9007199254740991},An.isSet=Qa,An.isString=Xa,An.isSymbol=Ja,An.isTypedArray=Za,An.isUndefined=function(e){return void 0===e},An.isWeakMap=function(e){return Ga(e)&&ro(e)==w},An.isWeakSet=function(e){return Ga(e)&&"[object WeakSet]"==mr(e)},An.join=function(e,t){return null==e?"":on.call(e,t)},An.kebabCase=js,An.last=Do,An.lastIndexOf=function(e,t,n){var r=null==e?0:e.length;if(!r)return-1;var i=r;return void 0!==n&&(i=(i=is(n))<0?sn(r+i,0):ln(i,r-1)),t==t?function(e,t,n){for(var r=n+1;r--;)if(e[r]===t)return r;return r}(e,t,i):St(e,kt,i,!0)},An.lowerCase=Ms,An.lowerFirst=Bs,An.lt=es,An.lte=ts,An.max=function(e){return e&&e.length?ir(e,Ks,hr):void 0},An.maxBy=function(e,t){return e&&e.length?ir(e,Xi(t,2),hr):void 0},An.mean=function(e){return Ct(e,Ks)},An.meanBy=function(e,t){return Ct(e,Xi(t,2))},An.min=function(e){return e&&e.length?ir(e,Ks,Er):void 0},An.minBy=function(e,t){return e&&e.length?ir(e,Xi(t,2),Er):void 0},An.stubArray=ol,An.stubFalse=al,An.stubObject=function(){return{}},An.stubString=function(){return""},An.stubTrue=function(){return!0},An.multiply=pl,An.nth=function(e,t){return e&&e.length?zr(e,is(t)):void 0},An.noConflict=function(){return Ke._===this&&(Ke._=Te),this},An.noop=Js,An.now=ga,An.pad=function(e,t,n){e=ls(e);var r=(t=is(t))?Ht(e):0;if(!t||r>=t)return e;var i=(t-r)/2;return Li(en(i),n)+e+Li(Zt(i),n)},An.padEnd=function(e,t,n){e=ls(e);var r=(t=is(t))?Ht(e):0;return t&&r<t?e+Li(t-r,n):e},An.padStart=function(e,t,n){e=ls(e);var r=(t=is(t))?Ht(e):0;return t&&r<t?Li(t-r,n)+e:e},An.parseInt=function(e,t,n){return n||null==t?t=0:t&&(t=+t),cn(ls(e).replace($,""),t||0)},An.random=function(e,t,n){if(n&&"boolean"!=typeof n&&lo(e,t,n)&&(t=n=void 0),void 0===n&&("boolean"==typeof t?(n=t,t=void 0):"boolean"==typeof e&&(n=e,e=void 0)),void 0===e&&void 0===t?(e=0,t=1):(e=rs(e),void 0===t?(t=e,e=0):t=rs(t)),e>t){var r=e;e=t,t=r}if(n||e%1||t%1){var i=dn();return ln(e+i*(t-e+Fe("1e-"+((i+"").length-1))),t)}return Wr(e,t)},An.reduce=function(e,t,n){var r=ja(e)?ht:Et,i=arguments.length<3;return r(e,Xi(t,4),n,i,tr)},An.reduceRight=function(e,t,n){var r=ja(e)?gt:Et,i=arguments.length<3;return r(e,Xi(t,4),n,i,nr)},An.repeat=function(e,t,n){return t=(n?lo(e,t,n):void 0===t)?1:is(t),Nr(ls(e),t)},An.replace=function(){var e=arguments,t=ls(e[0]);return e.length<3?t:t.replace(e[1],e[2])},An.result=function(e,t,n){var r=-1,i=(t=li(t,e)).length;for(i||(i=1,e=void 0);++r<i;){var o=null==e?void 0:e[Eo(t[r])];void 0===o&&(r=i,o=n),e=Ua(o)?o.call(e):o}return e},An.round=fl,An.runInContext=e,An.sample=function(e){return(ja(e)?Dn:Dr)(e)},An.size=function(e){if(null==e)return 0;if(Ba(e))return Xa(e)?Ht(e):e.length;var t=ro(e);return t==h||t==b?e.size:Or(e).length},An.snakeCase=Ws,An.some=function(e,t,n){var r=ja(e)?vt:Kr;return n&&lo(e,t,n)&&(t=void 0),r(e,Xi(t,3))},An.sortedIndex=function(e,t){return $r(e,t)},An.sortedIndexBy=function(e,t,n){return Yr(e,t,Xi(n,2))},An.sortedIndexOf=function(e,t){var n=null==e?0:e.length;if(n){var r=$r(e,t);if(r<n&&Pa(e[r],t))return r}return-1},An.sortedLastIndex=function(e,t){return $r(e,t,!0)},An.sortedLastIndexBy=function(e,t,n){return Yr(e,t,Xi(n,2),!0)},An.sortedLastIndexOf=function(e,t){if(null==e?0:e.length){var n=$r(e,t,!0)-1;if(Pa(e[n],t))return n}return-1},An.startCase=Ns,An.startsWith=function(e,t,n){return e=ls(e),n=null==n?0:Qn(is(n),0,e.length),t=Jr(t),e.slice(n,n+t.length)==t},An.subtract=ml,An.sum=function(e){return e&&e.length?Tt(e,Ks):0},An.sumBy=function(e,t){return e&&e.length?Tt(e,Xi(t,2)):0},An.template=function(e,t,n){var r=An.templateSettings;n&&lo(e,t,n)&&(t=void 0),e=ls(e),t=ds({},t,r,Ui);var i,o,a=ds({},t.imports,r.imports,Ui),s=xs(a),l=zt(a,s),u=0,c=t.interpolate||ce,d="__p += '",p=he((t.escape||ce).source+"|"+c.source+"|"+(c===q?ne:ce).source+"|"+(t.evaluate||ce).source+"|$","g"),f="//# sourceURL="+(ke.call(t,"sourceURL")?(t.sourceURL+"").replace(/\s/g," "):"lodash.templateSources["+ ++Ie+"]")+"\n";e.replace(p,(function(t,n,r,a,s,l){return r||(r=a),d+=e.slice(u,l).replace(de,It),n&&(i=!0,d+="' +\n__e("+n+") +\n'"),s&&(o=!0,d+="';\n"+s+";\n__p += '"),r&&(d+="' +\n((__t = ("+r+")) == null ? '' : __t) +\n'"),u=l+t.length,t})),d+="';\n";var m=ke.call(t,"variable")&&t.variable;if(m){if(ee.test(m))throw new Y("Invalid `variable` option passed into `_.template`")}else d="with (obj) {\n"+d+"\n}\n";d=(o?d.replace(L,""):d).replace(j,"$1").replace(M,"$1;"),d="function("+(m||"obj")+") {\n"+(m?"":"obj || (obj = {});\n")+"var __t, __p = ''"+(i?", __e = _.escape":"")+(o?", __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\n":";\n")+d+"return __p\n}";var h=qs((function(){return pe(s,f+"return "+d).apply(void 0,l)}));if(h.source=d,Da(h))throw h;return h},An.times=function(e,t){if((e=is(e))<1||e>9007199254740991)return[];var n=4294967295,r=ln(e,4294967295);e-=4294967295;for(var i=At(r,t=Xi(t));++n<e;)t(n);return i},An.toFinite=rs,An.toInteger=is,An.toLength=os,An.toLower=function(e){return ls(e).toLowerCase()},An.toNumber=as,An.toSafeInteger=function(e){return e?Qn(is(e),-9007199254740991,9007199254740991):0===e?e:0},An.toString=ls,An.toUpper=function(e){return ls(e).toUpperCase()},An.trim=function(e,t,n){if((e=ls(e))&&(n||void 0===t))return Pt(e);if(!e||!(t=Jr(t)))return e;var r=Kt(e),i=Kt(t);return ci(r,jt(r,i),Mt(r,i)+1).join("")},An.trimEnd=function(e,t,n){if((e=ls(e))&&(n||void 0===t))return e.slice(0,$t(e)+1);if(!e||!(t=Jr(t)))return e;var r=Kt(e);return ci(r,0,Mt(r,Kt(t))+1).join("")},An.trimStart=function(e,t,n){if((e=ls(e))&&(n||void 0===t))return e.replace($,"");if(!e||!(t=Jr(t)))return e;var r=Kt(e);return ci(r,jt(r,Kt(t))).join("")},An.truncate=function(e,t){var n=30,r="...";if(Va(t)){var i="separator"in t?t.separator:i;n="length"in t?is(t.length):n,r="omission"in t?Jr(t.omission):r}var o=(e=ls(e)).length;if(Dt(e)){var a=Kt(e);o=a.length}if(n>=o)return e;var s=n-Ht(r);if(s<1)return r;var l=a?ci(a,0,s).join(""):e.slice(0,s);if(void 0===i)return l+r;if(a&&(s+=l.length-s),Ya(i)){if(e.slice(s).search(i)){var u,c=l;for(i.global||(i=he(i.source,ls(re.exec(i))+"g")),i.lastIndex=0;u=i.exec(c);)var d=u.index;l=l.slice(0,void 0===d?s:d)}}else if(e.indexOf(Jr(i),s)!=s){var p=l.lastIndexOf(i);p>-1&&(l=l.slice(0,p))}return l+r},An.unescape=function(e){return(e=ls(e))&&N.test(e)?e.replace(B,Yt):e},An.uniqueId=function(e){var t=++Ce;return ls(e)+t},An.upperCase=Is,An.upperFirst=Ds,An.each=la,An.eachRight=ua,An.first=Bo,Xs(An,(dl={},ur(An,(function(e,t){ke.call(An.prototype,t)||(dl[t]=e)})),dl),{chain:!1}),An.VERSION="4.17.21",st(["bind","bindKey","curry","curryRight","partial","partialRight"],(function(e){An[e].placeholder=An})),st(["drop","take"],(function(e,t){Ln.prototype[e]=function(n){n=void 0===n?1:sn(is(n),0);var r=this.__filtered__&&!t?new Ln(this):this.clone();return r.__filtered__?r.__takeCount__=ln(n,r.__takeCount__):r.__views__.push({size:ln(n,4294967295),type:e+(r.__dir__<0?"Right":"")}),r},Ln.prototype[e+"Right"]=function(t){return this.reverse()[e](t).reverse()}})),st(["filter","map","takeWhile"],(function(e,t){var n=t+1,r=1==n||3==n;Ln.prototype[e]=function(e){var t=this.clone();return t.__iteratees__.push({iteratee:Xi(e,3),type:n}),t.__filtered__=t.__filtered__||r,t}})),st(["head","last"],(function(e,t){var n="take"+(t?"Right":"");Ln.prototype[e]=function(){return this[n](1).value()[0]}})),st(["initial","tail"],(function(e,t){var n="drop"+(t?"":"Right");Ln.prototype[e]=function(){return this.__filtered__?new Ln(this):this[n](1)}})),Ln.prototype.compact=function(){return this.filter(Ks)},Ln.prototype.find=function(e){return this.filter(e).head()},Ln.prototype.findLast=function(e){return this.reverse().find(e)},Ln.prototype.invokeMap=Ir((function(e,t){return"function"==typeof e?new Ln(this):this.map((function(n){return br(n,e,t)}))})),Ln.prototype.reject=function(e){return this.filter(Oa(Xi(e)))},Ln.prototype.slice=function(e,t){e=is(e);var n=this;return n.__filtered__&&(e>0||t<0)?new Ln(n):(e<0?n=n.takeRight(-e):e&&(n=n.drop(e)),void 0!==t&&(n=(t=is(t))<0?n.dropRight(-t):n.take(t-e)),n)},Ln.prototype.takeRightWhile=function(e){return this.reverse().takeWhile(e).reverse()},Ln.prototype.toArray=function(){return this.take(4294967295)},ur(Ln.prototype,(function(e,t){var n=/^(?:filter|find|map|reject)|While$/.test(t),r=/^(?:head|last)$/.test(t),i=An[r?"take"+("last"==t?"Right":""):t],o=r||/^find/.test(t);i&&(An.prototype[t]=function(){var t=this.__wrapped__,a=r?[1]:arguments,s=t instanceof Ln,l=a[0],u=s||ja(t),c=function(e){var t=i.apply(An,mt([e],a));return r&&d?t[0]:t};u&&n&&"function"==typeof l&&1!=l.length&&(s=u=!1);var d=this.__chain__,p=!!this.__actions__.length,f=o&&!d,m=s&&!p;if(!o&&u){t=m?t:new Ln(this);var h=e.apply(t,a);return h.__actions__.push({func:ra,args:[c],thisArg:void 0}),new zn(h,d)}return f&&m?e.apply(this,a):(h=this.thru(c),f?r?h.value()[0]:h.value():h)})})),st(["pop","push","shift","sort","splice","unshift"],(function(e){var t=ye[e],n=/^(?:push|sort|unshift)$/.test(e)?"tap":"thru",r=/^(?:pop|shift)$/.test(e);An.prototype[e]=function(){var e=arguments;if(r&&!this.__chain__){var i=this.value();return t.apply(ja(i)?i:[],e)}return this[n]((function(n){return t.apply(ja(n)?n:[],e)}))}})),ur(Ln.prototype,(function(e,t){var n=An[t];if(n){var r=n.name+"";ke.call(Sn,r)||(Sn[r]=[]),Sn[r].push({name:t,func:n})}})),Sn[Ai(void 0,2).name]=[{name:"wrapper",func:void 0}],Ln.prototype.clone=function(){var e=new Ln(this.__wrapped__);return e.__actions__=yi(this.__actions__),e.__dir__=this.__dir__,e.__filtered__=this.__filtered__,e.__iteratees__=yi(this.__iteratees__),e.__takeCount__=this.__takeCount__,e.__views__=yi(this.__views__),e},Ln.prototype.reverse=function(){if(this.__filtered__){var e=new Ln(this);e.__dir__=-1,e.__filtered__=!0}else(e=this.clone()).__dir__*=-1;return e},Ln.prototype.value=function(){var e=this.__wrapped__.value(),t=this.__dir__,n=ja(e),r=t<0,i=n?e.length:0,o=function(e,t,n){var r=-1,i=n.length;for(;++r<i;){var o=n[r],a=o.size;switch(o.type){case"drop":e+=a;break;case"dropRight":t-=a;break;case"take":t=ln(t,e+a);break;case"takeRight":e=sn(e,t-a)}}return{start:e,end:t}}(0,i,this.__views__),a=o.start,s=o.end,l=s-a,u=r?s:a-1,c=this.__iteratees__,d=c.length,p=0,f=ln(l,this.__takeCount__);if(!n||!r&&i==l&&f==l)return ri(e,this.__actions__);var m=[];e:for(;l--&&p<f;){for(var h=-1,g=e[u+=t];++h<d;){var v=c[h],y=v.iteratee,b=v.type,S=y(g);if(2==b)g=S;else if(!S){if(1==b)continue e;break e}}m[p++]=g}return m},An.prototype.at=ia,An.prototype.chain=function(){return na(this)},An.prototype.commit=function(){return new zn(this.value(),this.__chain__)},An.prototype.next=function(){void 0===this.__values__&&(this.__values__=ns(this.value()));var e=this.__index__>=this.__values__.length;return{done:e,value:e?void 0:this.__values__[this.__index__++]}},An.prototype.plant=function(e){for(var t,n=this;n instanceof Rn;){var r=Ao(n);r.__index__=0,r.__values__=void 0,t?i.__wrapped__=r:t=r;var i=r;n=n.__wrapped__}return i.__wrapped__=e,t},An.prototype.reverse=function(){var e=this.__wrapped__;if(e instanceof Ln){var t=e;return this.__actions__.length&&(t=new Ln(this)),(t=t.reverse()).__actions__.push({func:ra,args:[Vo],thisArg:void 0}),new zn(t,this.__chain__)}return this.thru(Vo)},An.prototype.toJSON=An.prototype.valueOf=An.prototype.value=function(){return ri(this.__wrapped__,this.__actions__)},An.prototype.first=An.prototype.head,Xe&&(An.prototype[Xe]=function(){return this}),An}();Ke._=Qt,void 0===(i=function(){return Qt}.call(t,n,t,r))||(r.exports=i)}).call(this)}).call(this,n("yLpj"),n("YuTi")(e))},"Lw+5":function(e,t,n){var r=n("vd7W").TYPE.Comma;e.exports={name:"SelectorList",structure:{children:[["Selector","Raw"]]},parse:function(){for(var e=this.createList();!this.scanner.eof&&(e.push(this.Selector()),this.scanner.tokenType===r);)this.scanner.next();return{type:"SelectorList",loc:this.getLocationFromList(e),children:e}},generate:function(e){this.children(e,(function(){this.chunk(",")}))},walkContext:"selector"}},MD6V:function(e,t){var n=/^@media\W/;e.exports=function(e,t){var r,i;for(i=e.length-1;i>=0;i--)r=!t&&n.test(e[i][1]),e[i][1]=e[i][1].replace(/\n|\r\n/g," ").replace(/\s+/g," ").replace(/(,|:|\() /g,"$1").replace(/ \)/g,")").replace(/'([a-zA-Z][a-zA-Z\d\-_]+)'/,"$1").replace(/"([a-zA-Z][a-zA-Z\d\-_]+)"/,"$1").replace(r?/\) /g:null,")");return e}},MFAA:function(e,t,n){var r=n("I2+Y");function i(e,t){return r(e[1],t[1])}function o(e,t){return e[1]>t[1]?1:-1}e.exports=function(e,t){switch(t){case"natural":return e.sort(i);case"standard":return e.sort(o);case"none":case!1:return e}}},MGdK:function(e,t,n){var r=n("lJCZ"),i=n("JPgR"),o=n("CxY0"),a=n("QnCW"),s=n("1+vA"),l=n("VGoB");e.exports=function e(t,n,u,c){var d,p=n.protocol||n.hostname,f=!1;d=l(o.parse(t),n||{}),void 0!==n.hostname&&(d.protocol=n.protocol||"http:",d.path=d.href),(p&&!s(p)||a(t)?r.get:i.get)(d,(function(r){var i=[];if(!f){if(r.statusCode<200||r.statusCode>399)return c(r.statusCode,null);if(r.statusCode>299)return e(o.resolve(t,r.headers.location),n,u,c);r.on("data",(function(e){i.push(e.toString())})),r.on("end",(function(){var e=i.join("");c(null,e)}))}})).on("error",(function(e){f||(f=!0,c(e.message,null))})).on("timeout",(function(){f||(f=!0,c("timeout",null))})).setTimeout(u)}},MgzW:function(e,t,n){"use strict";
|
41 |
-
/*
|
42 |
-
object-assign
|
43 |
-
(c) Sindre Sorhus
|
44 |
-
@license MIT
|
45 |
-
*/var r=Object.getOwnPropertySymbols,i=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function a(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}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(e){return!1}}()?Object.assign:function(e,t){for(var n,s,l=a(e),u=1;u<arguments.length;u++){for(var c in n=Object(arguments[u]))i.call(n,c)&&(l[c]=n[c]);if(r){s=r(n);for(var d=0;d<s.length;d++)o.call(n,s[d])&&(l[s[d]]=n[s[d]])}}return l}},MiSq:function(e,t,n){"use strict";n.d(t,"a",(function(){return h}));var r=function(e){for(var t,n=0,r=0,i=e.length;i>=4;++r,i-=4)t=1540483477*(65535&(t=255&e.charCodeAt(r)|(255&e.charCodeAt(++r))<<8|(255&e.charCodeAt(++r))<<16|(255&e.charCodeAt(++r))<<24))+(59797*(t>>>16)<<16),n=1540483477*(65535&(t^=t>>>24))+(59797*(t>>>16)<<16)^1540483477*(65535&n)+(59797*(n>>>16)<<16);switch(i){case 3:n^=(255&e.charCodeAt(r+2))<<16;case 2:n^=(255&e.charCodeAt(r+1))<<8;case 1:n=1540483477*(65535&(n^=255&e.charCodeAt(r)))+(59797*(n>>>16)<<16)}return(((n=1540483477*(65535&(n^=n>>>13))+(59797*(n>>>16)<<16))^n>>>15)>>>0).toString(36)},i={animationIterationCount:1,borderImageOutset:1,borderImageSlice:1,borderImageWidth:1,boxFlex:1,boxFlexGroup:1,boxOrdinalGroup:1,columnCount:1,columns:1,flex:1,flexGrow:1,flexPositive:1,flexShrink:1,flexNegative:1,flexOrder:1,gridRow:1,gridRowEnd:1,gridRowSpan:1,gridRowStart:1,gridColumn:1,gridColumnEnd:1,gridColumnSpan:1,gridColumnStart:1,msGridRow:1,msGridRowSpan:1,msGridColumn:1,msGridColumnSpan:1,fontWeight:1,lineHeight:1,opacity:1,order:1,orphans:1,tabSize:1,widows:1,zIndex:1,zoom:1,WebkitLineClamp:1,fillOpacity:1,floodOpacity:1,stopOpacity:1,strokeDasharray:1,strokeDashoffset:1,strokeMiterlimit:1,strokeOpacity:1,strokeWidth:1},o=n("4qRI"),a=/[A-Z]|^ms/g,s=/_EMO_([^_]+?)_([^]*?)_EMO_/g,l=function(e){return 45===e.charCodeAt(1)},u=function(e){return null!=e&&"boolean"!=typeof e},c=Object(o.a)((function(e){return l(e)?e:e.replace(a,"-$&").toLowerCase()})),d=function(e,t){switch(e){case"animation":case"animationName":if("string"==typeof t)return t.replace(s,(function(e,t,n){return f={name:t,styles:n,next:f},t}))}return 1===i[e]||l(e)||"number"!=typeof t||0===t?t:t+"px"};function p(e,t,n,r){if(null==n)return"";if(void 0!==n.__emotion_styles)return n;switch(typeof n){case"boolean":return"";case"object":if(1===n.anim)return f={name:n.name,styles:n.styles,next:f},n.name;if(void 0!==n.styles){var i=n.next;if(void 0!==i)for(;void 0!==i;)f={name:i.name,styles:i.styles,next:f},i=i.next;return n.styles+";"}return function(e,t,n){var r="";if(Array.isArray(n))for(var i=0;i<n.length;i++)r+=p(e,t,n[i],!1);else for(var o in n){var a=n[o];if("object"!=typeof a)null!=t&&void 0!==t[a]?r+=o+"{"+t[a]+"}":u(a)&&(r+=c(o)+":"+d(o,a)+";");else if(!Array.isArray(a)||"string"!=typeof a[0]||null!=t&&void 0!==t[a[0]]){var s=p(e,t,a,!1);switch(o){case"animation":case"animationName":r+=c(o)+":"+s+";";break;default:r+=o+"{"+s+"}"}}else for(var l=0;l<a.length;l++)u(a[l])&&(r+=c(o)+":"+d(o,a[l])+";")}return r}(e,t,n);case"function":if(void 0!==e){var o=f,a=n(e);return f=o,p(e,t,a,r)}break;case"string":}if(null==t)return n;var s=t[n];return void 0===s||r?n:s}var f,m=/label:\s*([^\s;\n{]+)\s*;/g;var h=function(e,t,n){if(1===e.length&&"object"==typeof e[0]&&null!==e[0]&&void 0!==e[0].styles)return e[0];var i=!0,o="";f=void 0;var a=e[0];null==a||void 0===a.raw?(i=!1,o+=p(n,t,a,!1)):o+=a[0];for(var s=1;s<e.length;s++)o+=p(n,t,e[s],46===o.charCodeAt(o.length-1)),i&&(o+=a[s]);m.lastIndex=0;for(var l,u="";null!==(l=m.exec(o));)u+="-"+l[1];return{name:r(o)+u,styles:o,next:f}}},Nehr:function(e,t,n){"use strict";e.exports={isString:function(e){return"string"==typeof e},isObject:function(e){return"object"==typeof e&&null!==e},isNull:function(e){return null===e},isNullOrUndefined:function(e){return null==e}}},Nwoi:function(e,t,n){var r=n("fELk").roundingPrecisionFrom,i=n("VGoB"),o={Zero:"0",One:"1",Two:"2"},a={};a[o.Zero]={},a[o.One]={cleanupCharsets:!0,normalizeUrls:!0,optimizeBackground:!0,optimizeBorderRadius:!0,optimizeFilter:!0,optimizeFontWeight:!0,optimizeOutline:!0,removeEmpty:!0,removeNegativePaddings:!0,removeQuotes:!0,removeWhitespace:!0,replaceMultipleZeros:!0,replaceTimeUnits:!0,replaceZeroUnits:!0,roundingPrecision:r(void 0),selectorsSortingMethod:"standard",specialComments:"all",tidyAtRules:!0,tidyBlockScopes:!0,tidySelectors:!0,transform:function(){}},a[o.Two]={mergeAdjacentRules:!0,mergeIntoShorthands:!0,mergeMedia:!0,mergeNonAdjacentRules:!0,mergeSemantically:!1,overrideProperties:!0,removeEmpty:!0,reduceNonAdjacentRules:!0,removeDuplicateFontRules:!0,removeDuplicateMediaBlocks:!0,removeDuplicateRules:!0,removeUnusedAtRules:!1,restructureRules:!1,skipProperties:[]};function s(e,t){var n,r=i(a[e],{});for(n in r)"boolean"==typeof r[n]&&(r[n]=t);return r}function l(e){switch(e){case"false":case"off":return!1;case"true":case"on":return!0;default:return e}}function u(e,t){return e.split(";").reduce((function(e,n){var r=n.split(":"),o=r[0],a=l(r[1]);return"*"==o||"all"==o?e=i(e,s(t,a)):e[o]=a,e}),{})}e.exports={OptimizationLevel:o,optimizationLevelFrom:function(e){var t=i(a,{}),n=o.Zero,c=o.One,d=o.Two;return void 0===e?(delete t[d],t):("string"==typeof e&&(e=parseInt(e)),"number"==typeof e&&e===parseInt(d)?t:"number"==typeof e&&e===parseInt(c)?(delete t[d],t):"number"==typeof e&&e===parseInt(n)?(delete t[d],delete t[c],t):("object"==typeof e&&(e=function(e){var t,n,r=i(e,{});for(n=0;n<=2;n++)!((t=""+n)in r)||void 0!==r[t]&&!1!==r[t]||delete r[t],t in r&&!0===r[t]&&(r[t]={}),t in r&&"string"==typeof r[t]&&(r[t]=u(r[t],t));return r}(e)),c in e&&"roundingPrecision"in e[c]&&(e[c].roundingPrecision=r(e[c].roundingPrecision)),d in e&&"skipProperties"in e[d]&&"string"==typeof e[d].skipProperties&&(e[d].skipProperties=e[d].skipProperties.split(",")),(n in e||c in e||d in e)&&(t[n]=i(t[n],e[n])),c in e&&"*"in e[c]&&(t[c]=i(t[c],s(c,l(e[c]["*"]))),delete e[c]["*"]),c in e&&"all"in e[c]&&(t[c]=i(t[c],s(c,l(e[c].all))),delete e[c].all),c in e||d in e?t[c]=i(t[c],e[c]):delete t[c],d in e&&"*"in e[d]&&(t[d]=i(t[d],s(d,l(e[d]["*"]))),delete e[d]["*"]),d in e&&"all"in e[d]&&(t[d]=i(t[d],s(d,l(e[d].all))),delete e[d].all),d in e?t[d]=i(t[d],e[d]):delete t[d],t))}}},Nyyv:function(e,t){var n=/^@import/i;e.exports=function(e){return n.test(e)}},O36p:function(e,t){function n(e){return{prev:null,next:null,data:e}}function r(e,t,n){var r;return null!==o?(r=o,o=o.cursor,r.prev=t,r.next=n,r.cursor=e.cursor):r={prev:t,next:n,cursor:e.cursor},e.cursor=r,r}function i(e){var t=e.cursor;e.cursor=t.cursor,t.prev=null,t.next=null,t.cursor=o,o=t}var o=null,a=function(){this.cursor=null,this.head=null,this.tail=null};a.createItem=n,a.prototype.createItem=n,a.prototype.updateCursors=function(e,t,n,r){for(var i=this.cursor;null!==i;)i.prev===e&&(i.prev=t),i.next===n&&(i.next=r),i=i.cursor},a.prototype.getSize=function(){for(var e=0,t=this.head;t;)e++,t=t.next;return e},a.prototype.fromArray=function(e){var t=null;this.head=null;for(var r=0;r<e.length;r++){var i=n(e[r]);null!==t?t.next=i:this.head=i,i.prev=t,t=i}return this.tail=t,this},a.prototype.toArray=function(){for(var e=this.head,t=[];e;)t.push(e.data),e=e.next;return t},a.prototype.toJSON=a.prototype.toArray,a.prototype.isEmpty=function(){return null===this.head},a.prototype.first=function(){return this.head&&this.head.data},a.prototype.last=function(){return this.tail&&this.tail.data},a.prototype.each=function(e,t){var n;void 0===t&&(t=this);for(var o=r(this,null,this.head);null!==o.next;)n=o.next,o.next=n.next,e.call(t,n.data,n,this);i(this)},a.prototype.forEach=a.prototype.each,a.prototype.eachRight=function(e,t){var n;void 0===t&&(t=this);for(var o=r(this,this.tail,null);null!==o.prev;)n=o.prev,o.prev=n.prev,e.call(t,n.data,n,this);i(this)},a.prototype.forEachRight=a.prototype.eachRight,a.prototype.reduce=function(e,t,n){var o;void 0===n&&(n=this);for(var a=r(this,null,this.head),s=t;null!==a.next;)o=a.next,a.next=o.next,s=e.call(n,s,o.data,o,this);return i(this),s},a.prototype.reduceRight=function(e,t,n){var o;void 0===n&&(n=this);for(var a=r(this,this.tail,null),s=t;null!==a.prev;)o=a.prev,a.prev=o.prev,s=e.call(n,s,o.data,o,this);return i(this),s},a.prototype.nextUntil=function(e,t,n){if(null!==e){var o;void 0===n&&(n=this);for(var a=r(this,null,e);null!==a.next&&(o=a.next,a.next=o.next,!t.call(n,o.data,o,this)););i(this)}},a.prototype.prevUntil=function(e,t,n){if(null!==e){var o;void 0===n&&(n=this);for(var a=r(this,e,null);null!==a.prev&&(o=a.prev,a.prev=o.prev,!t.call(n,o.data,o,this)););i(this)}},a.prototype.some=function(e,t){var n=this.head;for(void 0===t&&(t=this);null!==n;){if(e.call(t,n.data,n,this))return!0;n=n.next}return!1},a.prototype.map=function(e,t){var n=new a,r=this.head;for(void 0===t&&(t=this);null!==r;)n.appendData(e.call(t,r.data,r,this)),r=r.next;return n},a.prototype.filter=function(e,t){var n=new a,r=this.head;for(void 0===t&&(t=this);null!==r;)e.call(t,r.data,r,this)&&n.appendData(r.data),r=r.next;return n},a.prototype.clear=function(){this.head=null,this.tail=null},a.prototype.copy=function(){for(var e=new a,t=this.head;null!==t;)e.insert(n(t.data)),t=t.next;return e},a.prototype.prepend=function(e){return this.updateCursors(null,e,this.head,e),null!==this.head?(this.head.prev=e,e.next=this.head):this.tail=e,this.head=e,this},a.prototype.prependData=function(e){return this.prepend(n(e))},a.prototype.append=function(e){return this.insert(e)},a.prototype.appendData=function(e){return this.insert(n(e))},a.prototype.insert=function(e,t){if(null!=t)if(this.updateCursors(t.prev,e,t,e),null===t.prev){if(this.head!==t)throw new Error("before doesn't belong to list");this.head=e,t.prev=e,e.next=t,this.updateCursors(null,e)}else t.prev.next=e,e.prev=t.prev,t.prev=e,e.next=t;else this.updateCursors(this.tail,e,null,e),null!==this.tail?(this.tail.next=e,e.prev=this.tail):this.head=e,this.tail=e;return this},a.prototype.insertData=function(e,t){return this.insert(n(e),t)},a.prototype.remove=function(e){if(this.updateCursors(e,e.prev,e,e.next),null!==e.prev)e.prev.next=e.next;else{if(this.head!==e)throw new Error("item doesn't belong to list");this.head=e.next}if(null!==e.next)e.next.prev=e.prev;else{if(this.tail!==e)throw new Error("item doesn't belong to list");this.tail=e.prev}return e.prev=null,e.next=null,e},a.prototype.push=function(e){this.insert(n(e))},a.prototype.pop=function(){if(null!==this.tail)return this.remove(this.tail)},a.prototype.unshift=function(e){this.prepend(n(e))},a.prototype.shift=function(){if(null!==this.head)return this.remove(this.head)},a.prototype.prependList=function(e){return this.insertList(e,this.head)},a.prototype.appendList=function(e){return this.insertList(e)},a.prototype.insertList=function(e,t){return null===e.head||(null!=t?(this.updateCursors(t.prev,e.tail,t,e.head),null!==t.prev?(t.prev.next=e.head,e.head.prev=t.prev):this.head=e.head,t.prev=e.tail,e.tail.next=t):(this.updateCursors(this.tail,e.tail,null,e.head),null!==this.tail?(this.tail.next=e.head,e.head.prev=this.tail):this.head=e.head,this.tail=e.tail),e.head=null,e.tail=null),this},a.prototype.replace=function(e,t){"head"in t?this.insertList(t,e):this.insert(t,e),this.remove(e)},e.exports=a},Oak9:function(e,t,n){var r=n("J0X1");t.encode=function(e){var t,n="",i=function(e){return e<0?1+(-e<<1):0+(e<<1)}(e);do{t=31&i,(i>>>=5)>0&&(t|=32),n+=r.encode(t)}while(i>0);return n},t.decode=function(e,t,n){var i,o,a,s,l=e.length,u=0,c=0;do{if(t>=l)throw new Error("Expected more digits in base 64 VLQ value.");if(-1===(o=r.decode(e.charCodeAt(t++))))throw new Error("Invalid base64 digit: "+e.charAt(t-1));i=!!(32&o),u+=(o&=31)<<c,c+=5}while(i);n.value=(s=(a=u)>>1,1==(1&a)?-s:s),n.rest=t}},Ohaz:function(e,t,n){"use strict";n.d(t,"b",(function(){return i})),n.d(t,"a",(function(){return o}));var r=n("tQ+x");function i(e){return{[r.a]:e}}function o(){return{[r.b]:!0}}},Onz0:function(e,t,n){(function(e){function n(e){return Object.prototype.toString.call(e)}t.isArray=function(e){return Array.isArray?Array.isArray(e):"[object Array]"===n(e)},t.isBoolean=function(e){return"boolean"==typeof e},t.isNull=function(e){return null===e},t.isNullOrUndefined=function(e){return null==e},t.isNumber=function(e){return"number"==typeof e},t.isString=function(e){return"string"==typeof e},t.isSymbol=function(e){return"symbol"==typeof e},t.isUndefined=function(e){return void 0===e},t.isRegExp=function(e){return"[object RegExp]"===n(e)},t.isObject=function(e){return"object"==typeof e&&null!==e},t.isDate=function(e){return"[object Date]"===n(e)},t.isError=function(e){return"[object Error]"===n(e)||e instanceof Error},t.isFunction=function(e){return"function"==typeof e},t.isPrimitive=function(e){return null===e||"boolean"==typeof e||"number"==typeof e||"string"==typeof e||"symbol"==typeof e||void 0===e},t.isBuffer=e.isBuffer}).call(this,n("HDXh").Buffer)},OohF:function(e,t,n){var r=n("vd7W").TYPE,i=r.WhiteSpace,o=r.Comment;e.exports=function(e){var t=this.createList(),n=null,r={recognizer:e,space:null,ignoreWS:!1,ignoreWSAfter:!1};for(this.scanner.skipSC();!this.scanner.eof;){switch(this.scanner.tokenType){case o:this.scanner.next();continue;case i:r.ignoreWS?this.scanner.next():r.space=this.WhiteSpace();continue}if(void 0===(n=e.getNode.call(this,r)))break;null!==r.space&&(t.push(r.space),r.space=null),t.push(n),r.ignoreWSAfter?(r.ignoreWSAfter=!1,r.ignoreWS=!0):r.ignoreWS=!1}return t}},OyBZ:function(e,t,n){var r=n("vd7W").TYPE.Ident;e.exports={name:"Identifier",structure:{name:String},parse:function(){return{type:"Identifier",loc:this.getLocation(this.scanner.tokenStart,this.scanner.tokenEnd),name:this.consume(r)}},generate:function(e){this.chunk(e.name)}}},P3uw:function(e,t,n){var r=n("3XNy"),i=r.isDigit,o=r.isHexDigit,a=r.isUppercaseLetter,s=r.isName,l=r.isWhiteSpace,u=r.isValidEscape;function c(e,t){return t<e.length?e.charCodeAt(t):0}function d(e,t,n){return 13===n&&10===c(e,t+1)?2:1}function p(e,t,n){var r=e.charCodeAt(t);return a(r)&&(r|=32),r===n}function f(e,t){for(;t<e.length&&i(e.charCodeAt(t));t++);return t}function m(e,t){if(o(c(e,(t+=2)-1))){for(var n=Math.min(e.length,t+5);t<n&&o(c(e,t));t++);var r=c(e,t);l(r)&&(t+=d(e,t,r))}return t}e.exports={consumeEscaped:m,consumeName:function(e,t){for(;t<e.length;t++){var n=e.charCodeAt(t);if(!s(n)){if(!u(n,c(e,t+1)))break;t=m(e,t)-1}}return t},consumeNumber:function(e,t){var n=e.charCodeAt(t);if(43!==n&&45!==n||(n=e.charCodeAt(t+=1)),i(n)&&(t=f(e,t+1),n=e.charCodeAt(t)),46===n&&i(e.charCodeAt(t+1))&&(n=e.charCodeAt(t+=2),t=f(e,t)),p(e,t,101)){var r=0;45!==(n=e.charCodeAt(t+1))&&43!==n||(r=1,n=e.charCodeAt(t+2)),i(n)&&(t=f(e,t+1+r+1))}return t},consumeBadUrlRemnants:function(e,t){for(;t<e.length;t++){var n=e.charCodeAt(t);if(41===n){t++;break}u(n,c(e,t+1))&&(t=m(e,t))}return t},cmpChar:p,cmpStr:function(e,t,n,r){if(n-t!==r.length)return!1;if(t<0||n>e.length)return!1;for(var i=t;i<n;i++){var o=e.charCodeAt(i),s=r.charCodeAt(i-t);if(a(o)&&(o|=32),o!==s)return!1}return!0},getNewlineLength:d,findWhiteSpaceStart:function(e,t){for(;t>=0&&l(e.charCodeAt(t));t--);return t+1},findWhiteSpaceEnd:function(e,t){for(;t<e.length&&l(e.charCodeAt(t));t++);return t}}},P7XM:function(e,t){"function"==typeof Object.create?e.exports=function(e,t){t&&(e.super_=t,e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}))}:e.exports=function(e,t){if(t){e.super_=t;var n=function(){};n.prototype=t.prototype,e.prototype=new n,e.prototype.constructor=e}}},PENG:function(e,t){t.endianness=function(){return"LE"},t.hostname=function(){return"undefined"!=typeof location?location.hostname:""},t.loadavg=function(){return[]},t.uptime=function(){return 0},t.freemem=function(){return Number.MAX_VALUE},t.totalmem=function(){return Number.MAX_VALUE},t.cpus=function(){return[]},t.type=function(){return"Browser"},t.release=function(){return"undefined"!=typeof navigator?navigator.appVersion:""},t.networkInterfaces=t.getNetworkInterfaces=function(){return{}},t.arch=function(){return"javascript"},t.platform=function(){return"browser"},t.tmpdir=t.tmpDir=function(){return"/tmp"},t.EOL="\n",t.homedir=function(){return"/"}},PFem:function(e,t,n){"use strict";var r=Object.assign||function(e){for(var t,n=1;n<arguments.length;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e};Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e){var t=e.size,n=void 0===t?24:t,i=e.onClick,o=(e.icon,e.className),s=function(e,t){var n={};for(var r in e)0<=t.indexOf(r)||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}(e,["size","onClick","icon","className"]),l=["gridicon","gridicons-refresh",o,!1,!1,!1].filter(Boolean).join(" ");return a.default.createElement("svg",r({className:l,height:n,width:n,onClick:i},s,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}),a.default.createElement("g",null,a.default.createElement("path",{d:"M17.91 14c-.478 2.833-2.943 5-5.91 5-3.308 0-6-2.692-6-6s2.692-6 6-6h2.172l-2.086 2.086L13.5 10.5 18 6l-4.5-4.5-1.414 1.414L14.172 5H12c-4.418 0-8 3.582-8 8s3.582 8 8 8c4.08 0 7.438-3.055 7.93-7h-2.02z"})))};var i,o=n("q1tI"),a=(i=o)&&i.__esModule?i:{default:i};e.exports=t.default},PRug:function(e,t,n){(t=e.exports=n("i3fk")).Stream=t,t.Readable=t,t.Writable=n("W8Jt"),t.Duplex=n("FxWf"),t.Transform=n("TpIV"),t.PassThrough=n("Rhof")},Pd0I:function(e,t,n){var r=n("vd7W").TYPE.Comma;e.exports={name:"MediaQueryList",structure:{children:[["MediaQuery"]]},parse:function(e){var t=this.createList();for(this.scanner.skipSC();!this.scanner.eof&&(t.push(this.MediaQuery(e)),this.scanner.tokenType===r);)this.scanner.next();return{type:"MediaQueryList",loc:this.getLocationFromList(t),children:t}},generate:function(e){this.children(e,(function(){this.chunk(",")}))}}},Pna4:function(e,t,n){var r=n("X3zT").Breaks,i=n("X3zT").Spaces,o=n("Ttul"),a=n("dzo0");function s(e){return"filter"==e[1][1]||"-ms-filter"==e[1][1]}function l(e,t,n){return!e.spaceAfterClosingBrace&&function(e){return"background"==e[1][1]||"transform"==e[1][1]||"src"==e[1][1]}(t)&&function(e,t){return e[t][1][e[t][1].length-1]==o.CLOSE_ROUND_BRACKET}(t,n)||function(e,t){return e[t+1]&&e[t+1][1]==o.FORWARD_SLASH}(t,n)||function(e,t){return e[t][1]==o.FORWARD_SLASH}(t,n)||function(e,t){return e[t+1]&&e[t+1][1]==o.COMMA}(t,n)||function(e,t){return e[t][1]==o.COMMA}(t,n)}function u(e,t){for(var n=e.store,r=0,i=t.length;r<i;r++)n(e,t[r]),r<i-1&&n(e,y(e))}function c(e,t){for(var n=function(e){for(var t=e.length-1;t>=0&&e[t][0]==a.COMMENT;t--);return t}(t),r=0,i=t.length;r<i;r++)d(e,t,r,n)}function d(e,t,n,s){var l,d=e.store,f=t[n],y=f[2],b=y&&y[0]===a.PROPERTY_BLOCK;l=e.format?!(!e.format.semicolonAfterLastProperty&&!b)||n<s:n<s||b;var S=n===s;switch(f[0]){case a.AT_RULE:d(e,f),d(e,v(e,r.AfterProperty,!1));break;case a.AT_RULE_BLOCK:u(e,f[1]),d(e,h(e,r.AfterRuleBegins,!0)),c(e,f[2]),d(e,g(e,r.AfterRuleEnds,!1,S));break;case a.COMMENT:d(e,f);break;case a.PROPERTY:d(e,f[1]),d(e,function(e){return e.format?o.COLON+(m(e,i.BeforeValue)?o.SPACE:""):o.COLON}(e)),y&&p(e,f),d(e,l?v(e,r.AfterProperty,S):"");break;case a.RAW:d(e,f)}}function p(e,t){var n,i,u=e.store;if(t[2][0]==a.PROPERTY_BLOCK)u(e,h(e,r.AfterBlockBegins,!1)),c(e,t[2][1]),u(e,g(e,r.AfterBlockEnds,!1,!0));else for(n=2,i=t.length;n<i;n++)u(e,t[n]),n<i-1&&(s(t)||!l(e,t,n))&&u(e,o.SPACE)}function f(e,t){return e.format&&e.format.breaks[t]}function m(e,t){return e.format&&e.format.spaces[t]}function h(e,t,n){return e.format?(e.indentBy+=e.format.indentBy,e.indentWith=e.format.indentWith.repeat(e.indentBy),(n&&m(e,i.BeforeBlockBegins)?o.SPACE:"")+o.OPEN_CURLY_BRACKET+(f(e,t)?e.format.breakWith:"")+e.indentWith):o.OPEN_CURLY_BRACKET}function g(e,t,n,i){return e.format?(e.indentBy-=e.format.indentBy,e.indentWith=e.format.indentWith.repeat(e.indentBy),(f(e,r.AfterProperty)||n&&f(e,r.BeforeBlockEnds)?e.format.breakWith:"")+e.indentWith+o.CLOSE_CURLY_BRACKET+(i?"":(f(e,t)?e.format.breakWith:"")+e.indentWith)):o.CLOSE_CURLY_BRACKET}function v(e,t,n){return e.format?o.SEMICOLON+(n||!f(e,t)?"":e.format.breakWith+e.indentWith):o.SEMICOLON}function y(e){return e.format?o.COMMA+(f(e,r.BetweenSelectors)?e.format.breakWith:"")+e.indentWith:o.COMMA}e.exports={all:function e(t,n){var i,o,s,l,d=t.store;for(s=0,l=n.length;s<l;s++)switch(o=s==l-1,(i=n[s])[0]){case a.AT_RULE:d(t,i),d(t,v(t,r.AfterAtRule,o));break;case a.AT_RULE_BLOCK:u(t,i[1]),d(t,h(t,r.AfterRuleBegins,!0)),c(t,i[2]),d(t,g(t,r.AfterRuleEnds,!1,o));break;case a.NESTED_BLOCK:u(t,i[1]),d(t,h(t,r.AfterBlockBegins,!0)),e(t,i[2]),d(t,g(t,r.AfterBlockEnds,!0,o));break;case a.COMMENT:d(t,i),d(t,f(t,r.AfterComment)?t.format.breakWith:"");break;case a.RAW:d(t,i);break;case a.RULE:u(t,i[1]),d(t,h(t,r.AfterRuleBegins,!0)),c(t,i[2]),d(t,g(t,r.AfterRuleEnds,!1,o))}},body:c,property:d,rules:u,value:p}},Po9p:function(e,t){},PzWj:function(e,t,n){var r=n("vd7W").TYPE,i=r.Ident,o=r.Function,a=r.Colon,s=r.RightParenthesis;e.exports={name:"PseudoClassSelector",structure:{name:String,children:[["Raw"],null]},parse:function(){var e,t,n=this.scanner.tokenStart,r=null;return this.eat(a),this.scanner.tokenType===o?(t=(e=this.consumeFunctionName()).toLowerCase(),this.pseudo.hasOwnProperty(t)?(this.scanner.skipSC(),r=this.pseudo[t].call(this),this.scanner.skipSC()):(r=this.createList()).push(this.Raw(this.scanner.tokenIndex,null,!1)),this.eat(s)):e=this.consume(i),{type:"PseudoClassSelector",loc:this.getLocation(n,this.scanner.tokenStart),name:e,children:r}},generate:function(e){this.chunk(":"),this.chunk(e.name),null!==e.children&&(this.chunk("("),this.children(e),this.chunk(")"))},walkContext:"function"}},Q2WS:function(e,t,n){"use strict";var r=n("hwdV").Buffer,i=n(1);e.exports=function(){function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.head=null,this.tail=null,this.length=0}return e.prototype.push=function(e){var t={data:e,next:null};this.length>0?this.tail.next=t:this.head=t,this.tail=t,++this.length},e.prototype.unshift=function(e){var t={data:e,next:this.head};0===this.length&&(this.tail=t),this.head=t,++this.length},e.prototype.shift=function(){if(0!==this.length){var e=this.head.data;return 1===this.length?this.head=this.tail=null:this.head=this.head.next,--this.length,e}},e.prototype.clear=function(){this.head=this.tail=null,this.length=0},e.prototype.join=function(e){if(0===this.length)return"";for(var t=this.head,n=""+t.data;t=t.next;)n+=e+t.data;return n},e.prototype.concat=function(e){if(0===this.length)return r.alloc(0);if(1===this.length)return this.head.data;for(var t,n,i,o=r.allocUnsafe(e>>>0),a=this.head,s=0;a;)t=a.data,n=o,i=s,t.copy(n,i),s+=a.data.length,a=a.next;return o},e}(),i&&i.inspect&&i.inspect.custom&&(e.exports.prototype[i.inspect.custom]=function(){var e=i.inspect({length:this.length});return this.constructor.name+" "+e})},Q8Ej:function(e,t,n){var r=n("Ttul");e.exports=function(e){return"font"!=e.name||-1==e.value[0][1].indexOf(r.INTERNAL)}},QBsF:function(e,t,n){var r=n("vd7W").TYPE,i=r.Ident,o=r.Number,a=r.Dimension,s=r.LeftParenthesis,l=r.RightParenthesis,u=r.Colon,c=r.Delim;e.exports={name:"MediaFeature",structure:{name:String,value:["Identifier","Number","Dimension","Ratio",null]},parse:function(){var e,t=this.scanner.tokenStart,n=null;if(this.eat(s),this.scanner.skipSC(),e=this.consume(i),this.scanner.skipSC(),this.scanner.tokenType!==l){switch(this.eat(u),this.scanner.skipSC(),this.scanner.tokenType){case o:n=this.lookupNonWSType(1)===c?this.Ratio():this.Number();break;case a:n=this.Dimension();break;case i:n=this.Identifier();break;default:this.error("Number, dimension, ratio or identifier is expected")}this.scanner.skipSC()}return this.eat(l),{type:"MediaFeature",loc:this.getLocation(t,this.scanner.tokenStart),name:e,value:n}},generate:function(e){this.chunk("("),this.chunk(e.name),null!==e.value&&(this.chunk(":"),this.node(e.value)),this.chunk(")")}}},QC34:function(e,t,n){var r=n("9B+R"),i=n("Ttul");function o(e){e.value[e.value.length-1][1]+="!important"}function a(e){e.hack[0]==r.UNDERSCORE?e.name="_"+e.name:e.hack[0]==r.ASTERISK?e.name="*"+e.name:e.hack[0]==r.BACKSLASH?e.value[e.value.length-1][1]+="\\"+e.hack[1]:e.hack[0]==r.BANG&&(e.value[e.value.length-1][1]+=i.SPACE+"!ie")}e.exports=function(e,t){var n,r,i,s;for(s=e.length-1;s>=0;s--)(n=e[s]).unused||(n.dirty||n.important||n.hack)&&(t?(r=t(n),n.value=r):r=n.value,n.important&&o(n),n.hack&&a(n),"all"in n&&((i=n.all[n.position])[1][1]=n.name,i.splice(2,i.length-1),Array.prototype.push.apply(i,r)))}},QCnb:function(e,t,n){"use strict";e.exports=n("+wdc")},QIKQ:function(e,t){t.GREATEST_LOWER_BOUND=1,t.LEAST_UPPER_BOUND=2,t.search=function(e,n,r,i){if(0===n.length)return-1;var o=function e(n,r,i,o,a,s){var l=Math.floor((r-n)/2)+n,u=a(i,o[l],!0);return 0===u?l:u>0?r-l>1?e(l,r,i,o,a,s):s==t.LEAST_UPPER_BOUND?r<o.length?r:-1:l:l-n>1?e(n,l,i,o,a,s):s==t.LEAST_UPPER_BOUND?l:n<0?-1:n}(-1,n.length,e,n,r,i||t.GREATEST_LOWER_BOUND);if(o<0)return-1;for(;o-1>=0&&0===r(n[o],n[o-1],!0);)--o;return o}},QKsE:function(e,t,n){var r=Object.prototype.hasOwnProperty,i=n("KcB0"),o=i.MATCH,a=i.MISMATCH,s=i.DISALLOW_EMPTY,l=n("twQA").TYPE,u=0;function c(e){for(var t=null,n=null,r=e;null!==r;)n=r.prev,r.prev=t,t=r,r=n;return t}function d(e,t){if(e.length!==t.length)return!1;for(var n=0;n<e.length;n++){var r=e.charCodeAt(n);if(r>=65&&r<=90&&(r|=32),r!==t.charCodeAt(n))return!1}return!0}function p(e){return null===e||(e.type===l.Comma||e.type===l.Function||e.type===l.LeftParenthesis||e.type===l.LeftSquareBracket||e.type===l.LeftCurlyBracket||function(e){return e.type===l.Delim&&"?"!==e.value}(e))}function f(e){return null===e||(e.type===l.RightParenthesis||e.type===l.RightSquareBracket||e.type===l.RightCurlyBracket||e.type===l.Delim)}function m(e,t,n){function i(){do{_++,O=_<e.length?e[_]:null}while(null!==O&&(O.type===l.WhiteSpace||O.type===l.Comment))}function c(t){var n=_+t;return n<e.length?e[n]:null}function m(e,t){return{nextState:e,matchStack:T,syntaxStack:b,thenStack:S,tokenIndex:_,prev:t}}function h(e){S={nextState:e,matchStack:T,syntaxStack:b,prev:S}}function g(e){x=m(e,x)}function v(){T={type:1,syntax:t.syntax,token:O,prev:T},i(),w=null,_>E&&(E=_)}function y(){T=2===T.type?T.prev:{type:3,syntax:b.syntax,token:T.token,prev:T},b=b.prev}var b=null,S=null,x=null,w=null,k=0,C=null,O=null,_=-1,E=0,T={type:0,syntax:null,token:null,prev:null};for(i();null===C&&++k<15e3;)switch(t.type){case"Match":if(null===S){if(null!==O&&(_!==e.length-1||"\\0"!==O.value&&"\\9"!==O.value)){t=a;break}C="Match";break}if((t=S.nextState)===s){if(S.matchStack===T){t=a;break}t=o}for(;S.syntaxStack!==b;)y();S=S.prev;break;case"Mismatch":if(null!==w&&!1!==w)(null===x||_>x.tokenIndex)&&(x=w,w=!1);else if(null===x){C="Mismatch";break}t=x.nextState,S=x.thenStack,b=x.syntaxStack,T=x.matchStack,_=x.tokenIndex,O=_<e.length?e[_]:null,x=x.prev;break;case"MatchGraph":t=t.match;break;case"If":t.else!==a&&g(t.else),t.then!==o&&h(t.then),t=t.match;break;case"MatchOnce":t={type:"MatchOnceBuffer",syntax:t,index:0,mask:0};break;case"MatchOnceBuffer":var A=t.syntax.terms;if(t.index===A.length){if(0===t.mask||t.syntax.all){t=a;break}t=o;break}if(t.mask===(1<<A.length)-1){t=o;break}for(;t.index<A.length;t.index++){var P=1<<t.index;if(0==(t.mask&P)){g(t),h({type:"AddMatchOnce",syntax:t.syntax,mask:t.mask|P}),t=A[t.index++];break}}break;case"AddMatchOnce":t={type:"MatchOnceBuffer",syntax:t.syntax,index:0,mask:t.mask};break;case"Enum":if(null!==O)if(-1!==(M=O.value.toLowerCase()).indexOf("\\")&&(M=M.replace(/\\[09].*$/,"")),r.call(t.map,M)){t=t.map[M];break}t=a;break;case"Generic":var R=null!==b?b.opts:null,z=_+Math.floor(t.fn(O,c,R));if(!isNaN(z)&&z>_){for(;_<z;)v();t=o}else t=a;break;case"Type":case"Property":var L="Type"===t.type?"types":"properties",j=r.call(n,L)?n[L][t.name]:null;if(!j||!j.match)throw new Error("Bad syntax reference: "+("Type"===t.type?"<"+t.name+">":"<'"+t.name+"'>"));if(!1!==w&&null!==O&&"Type"===t.type)if("custom-ident"===t.name&&O.type===l.Ident||"length"===t.name&&"0"===O.value){null===w&&(w=m(t,x)),t=a;break}b={syntax:t.syntax,opts:t.syntax.opts||null!==b&&b.opts||null,prev:b},T={type:2,syntax:t.syntax,token:T.token,prev:T},t=j.match;break;case"Keyword":var M=t.name;if(null!==O){var B=O.value;if(-1!==B.indexOf("\\")&&(B=B.replace(/\\[09].*$/,"")),d(B,M)){v(),t=o;break}}t=a;break;case"AtKeyword":case"Function":if(null!==O&&d(O.value,t.name)){v(),t=o;break}t=a;break;case"Token":if(null!==O&&O.value===t.value){v(),t=o;break}t=a;break;case"Comma":null!==O&&O.type===l.Comma?p(T.token)?t=a:(v(),t=f(O)?a:o):t=p(T.token)||f(O)?o:a;break;case"String":var W="";for(z=_;z<e.length&&W.length<t.value.length;z++)W+=e[z].value;if(d(W,t.value)){for(;_<z;)v();t=o}else t=a;break;default:throw new Error("Unknown node type: "+t.type)}switch(u+=k,C){case null:console.warn("[csstree-match] BREAK after 15000 iterations"),C="Maximum iteration number exceeded (please fill an issue on https://github.com/csstree/csstree/issues)",T=null;break;case"Match":for(;null!==b;)y();break;default:T=null}return{tokens:e,reason:C,iterations:k,match:T,longestMatch:E}}e.exports={matchAsList:function(e,t,n){var r=m(e,t,n||{});if(null!==r.match){var i=c(r.match).prev;for(r.match=[];null!==i;){switch(i.type){case 0:break;case 2:case 3:r.match.push({type:i.type,syntax:i.syntax});break;default:r.match.push({token:i.token.value,node:i.token.node})}i=i.prev}}return r},matchAsTree:function(e,t,n){var r=m(e,t,n||{});if(null===r.match)return r;var i=r.match,o=r.match={syntax:t.syntax||null,match:[]},a=[o];for(i=c(i).prev;null!==i;){switch(i.type){case 2:o.match.push(o={syntax:i.syntax,match:[]}),a.push(o);break;case 3:a.pop(),o=a[a.length-1];break;default:o.match.push({syntax:i.syntax||null,token:i.token.value,node:i.token.node})}i=i.prev}return r},getTotalIterationCount:function(){return u}}},QnCW:function(e,t){var n=/^http:\/\//;e.exports=function(e){return n.test(e)}},QtvL:function(e,t,n){var r=n("O36p");e.exports=function(e){return{fromPlainObject:function(t){return e(t,{enter:function(e){e.children&&e.children instanceof r==!1&&(e.children=(new r).fromArray(e.children))}}),t},toPlainObject:function(t){return e(t,{leave:function(e){e.children&&e.children instanceof r&&(e.children=e.children.toArray())}}),t}}}},RApX:function(e,t){e.exports={parse:function(){return this.createSingleNodeList(this.Identifier())}}},RON2:function(e,t,n){var r=n("y33q");function i(e){return function(t,n,i){return!(!r(t,n,i,0,!0)&&!t.isKeyword(e)(i))&&(!(!t.isVariable(n)||!t.isVariable(i))||t.isKeyword(e)(i))}}function o(e){return function(t,n,i){return!!(r(t,n,i,0,!0)||t.isKeyword(e)(i)||t.isGlobal(i))&&(!(!t.isVariable(n)||!t.isVariable(i))||(t.isKeyword(e)(i)||t.isGlobal(i)))}}function a(e,t,n){return!!function(e,t,n){return!(!e.isFunction(t)||!e.isFunction(n))&&t.substring(0,t.indexOf("("))===n.substring(0,n.indexOf("("))}(e,t,n)||t===n}function s(e,t,n){return!(!r(e,t,n,0,!0)&&!e.isUnit(n))&&(!(!e.isVariable(t)||!e.isVariable(n))||!(e.isUnit(t)&&!e.isUnit(n))&&(!!e.isUnit(n)||!e.isUnit(t)&&(!(!e.isFunction(t)||e.isPrefixed(t)||!e.isFunction(n)||e.isPrefixed(n))||a(e,t,n))))}function l(e){var t=o(e);return function(e,n,r){return s(e,n,r)||t(e,n,r)}}e.exports={generic:{color:function(e,t,n){return!(!r(e,t,n,0,!0)&&!e.isColor(n))&&(!(!e.isVariable(t)||!e.isVariable(n))||!(!e.colorOpacity&&(e.isRgbColor(t)||e.isHslColor(t)))&&(!(!e.colorOpacity&&(e.isRgbColor(n)||e.isHslColor(n)))&&(!(!e.isColor(t)||!e.isColor(n))||a(e,t,n))))},components:function(e){return function(t,n,r,i){return e[i](t,n,r)}},image:function(e,t,n){return!(!r(e,t,n,0,!0)&&!e.isImage(n))&&(!(!e.isVariable(t)||!e.isVariable(n))||(!!e.isImage(n)||!e.isImage(t)&&a(e,t,n)))},propertyName:function(e,t,n){return!(!r(e,t,n,0,!0)&&!e.isIdentifier(n))&&(!(!e.isVariable(t)||!e.isVariable(n))||e.isIdentifier(n))},time:function(e,t,n){return!(!r(e,t,n,0,!0)&&!e.isTime(n))&&(!(!e.isVariable(t)||!e.isVariable(n))||!(e.isTime(t)&&!e.isTime(n))&&(!!e.isTime(n)||!e.isTime(t)&&(!(!e.isFunction(t)||e.isPrefixed(t)||!e.isFunction(n)||e.isPrefixed(n))||a(e,t,n))))},timingFunction:function(e,t,n){return!!(r(e,t,n,0,!0)||e.isTimingFunction(n)||e.isGlobal(n))&&(!(!e.isVariable(t)||!e.isVariable(n))||(e.isTimingFunction(n)||e.isGlobal(n)))},unit:s,unitOrNumber:function(e,t,n){return!!(r(e,t,n,0,!0)||e.isUnit(n)||e.isNumber(n))&&(!(!e.isVariable(t)||!e.isVariable(n))||!((e.isUnit(t)||e.isNumber(t))&&!e.isUnit(n)&&!e.isNumber(n))&&(!(!e.isUnit(n)&&!e.isNumber(n))||!e.isUnit(t)&&!e.isNumber(t)&&(!(!e.isFunction(t)||e.isPrefixed(t)||!e.isFunction(n)||e.isPrefixed(n))||a(e,t,n))))}},property:{animationDirection:o("animation-direction"),animationFillMode:i("animation-fill-mode"),animationIterationCount:function(e,t,n){return!!(r(e,t,n,0,!0)||e.isAnimationIterationCountKeyword(n)||e.isPositiveNumber(n))&&(!(!e.isVariable(t)||!e.isVariable(n))||(e.isAnimationIterationCountKeyword(n)||e.isPositiveNumber(n)))},animationName:function(e,t,n){return!!(r(e,t,n,0,!0)||e.isAnimationNameKeyword(n)||e.isIdentifier(n))&&(!(!e.isVariable(t)||!e.isVariable(n))||(e.isAnimationNameKeyword(n)||e.isIdentifier(n)))},animationPlayState:o("animation-play-state"),backgroundAttachment:i("background-attachment"),backgroundClip:o("background-clip"),backgroundOrigin:i("background-origin"),backgroundPosition:function(e,t,n){return!!(r(e,t,n,0,!0)||e.isBackgroundPositionKeyword(n)||e.isGlobal(n))&&(!(!e.isVariable(t)||!e.isVariable(n))||(!(!e.isBackgroundPositionKeyword(n)&&!e.isGlobal(n))||s(e,t,n)))},backgroundRepeat:i("background-repeat"),backgroundSize:function(e,t,n){return!!(r(e,t,n,0,!0)||e.isBackgroundSizeKeyword(n)||e.isGlobal(n))&&(!(!e.isVariable(t)||!e.isVariable(n))||(!(!e.isBackgroundSizeKeyword(n)&&!e.isGlobal(n))||s(e,t,n)))},bottom:l("bottom"),borderCollapse:i("border-collapse"),borderStyle:o("*-style"),clear:o("clear"),cursor:o("cursor"),display:o("display"),float:o("float"),left:l("left"),fontFamily:function(e,t,n){return r(e,t,n,0,!0)},fontStretch:o("font-stretch"),fontStyle:o("font-style"),fontVariant:o("font-variant"),fontWeight:o("font-weight"),listStyleType:o("list-style-type"),listStylePosition:o("list-style-position"),outlineStyle:o("*-style"),overflow:o("overflow"),position:o("position"),right:l("right"),textAlign:o("text-align"),textDecoration:o("text-decoration"),textOverflow:o("text-overflow"),textShadow:function(e,t,n){return!!(r(e,t,n,0,!0)||e.isUnit(n)||e.isColor(n)||e.isGlobal(n))&&(!(!e.isVariable(t)||!e.isVariable(n))||(e.isUnit(n)||e.isColor(n)||e.isGlobal(n)))},top:l("top"),transform:a,verticalAlign:l("vertical-align"),visibility:o("visibility"),whiteSpace:o("white-space"),zIndex:function(e,t,n){return!(!r(e,t,n,0,!0)&&!e.isZIndex(n))&&(!(!e.isVariable(t)||!e.isVariable(n))||e.isZIndex(n))}}}},Rhof:function(e,t,n){"use strict";e.exports=o;var r=n("TpIV"),i=Object.create(n("Onz0"));function o(e){if(!(this instanceof o))return new o(e);r.call(this,e)}i.inherits=n("P7XM"),i.inherits(o,r),o.prototype._transform=function(e,t,n){n(null,e)}},SIPS:function(e,t,n){"use strict";n.d(t,"a",(function(){return r})),n.d(t,"b",(function(){return i}));function r(e,t,n){var r="";return n.split(" ").forEach((function(n){void 0!==e[n]?t.push(e[n]):r+=n+" "})),r}var i=function(e,t,n){var r=e.key+"-"+t.name;if(!1===n&&void 0===e.registered[r]&&(e.registered[r]=t.styles),void 0===e.inserted[t.name]){var i=t;do{e.insert("."+r,i,e.sheet,!0);i=i.next}while(void 0!==i)}}},SSiF:function(e,t,n){var r=n("q1tI"),i={display:"block",opacity:0,position:"absolute",top:0,left:0,height:"100%",width:"100%",overflow:"hidden",pointerEvents:"none",zIndex:-1},o=function(e){var t=e.onResize,n=r.useRef();return function(e,t){var n=function(){return e.current&&e.current.contentDocument&&e.current.contentDocument.defaultView};function i(){t();var e=n();e&&e.addEventListener("resize",t)}r.useEffect((function(){return n()?i():e.current&&e.current.addEventListener&&e.current.addEventListener("load",i),function(){var e=n();e&&"function"==typeof e.removeEventListener&&e.removeEventListener("resize",t)}}),[])}(n,(function(){return t(n)})),r.createElement("iframe",{style:i,src:"about:blank",ref:n,"aria-hidden":!0,tabIndex:-1,frameBorder:0})},a=function(e){return{width:null!=e?e.offsetWidth:null,height:null!=e?e.offsetHeight:null}};e.exports=function(e){void 0===e&&(e=a);var t=r.useState(e(null)),n=t[0],i=t[1],s=r.useCallback((function(t){return i(e(t.current))}),[e]);return[r.useMemo((function(){return r.createElement(o,{onResize:s})}),[s]),n]}},STE7:function(e,t,n){var r=n("vd7W").TYPE.Ident;function i(){this.scanner.tokenType!==r&&!1===this.scanner.isDelim(42)&&this.error("Identifier or asterisk is expected"),this.scanner.next()}e.exports={name:"TypeSelector",structure:{name:String},parse:function(){var e=this.scanner.tokenStart;return this.scanner.isDelim(124)?(this.scanner.next(),i.call(this)):(i.call(this),this.scanner.isDelim(124)&&(this.scanner.next(),i.call(this))),{type:"TypeSelector",loc:this.getLocation(e,this.scanner.tokenStart),name:this.scanner.substrToCursor(e)}},generate:function(e){this.chunk(e.name)}}},Sean:function(e,t){var n="undefined"!=typeof Uint32Array?Uint32Array:Array;e.exports=function(e,t){return null===e||e.length<t?new n(Math.max(t+1024,16384)):e}},SksO:function(e,t){function n(t,r){return e.exports=n=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},e.exports.default=e.exports,e.exports.__esModule=!0,n(t,r)}e.exports=n,e.exports.default=e.exports,e.exports.__esModule=!0},Suo5:function(e,t,n){var r=n("Ag6s");e.exports=function(e,t){return e.name in r&&"overridesShorthands"in r[e.name]&&r[e.name].overridesShorthands.indexOf(t.name)>-1}},T8ZO:function(e,t,n){e.exports=n("EiPP").create(function(){for(var e={},t=0;t<arguments.length;t++){var n=arguments[t];for(var r in n)e[r]=n[r]}return e}(n("KW4y"),n("oYUb"),n("acmg"))),e.exports.version=n("oikq").version},TSYQ:function(e,t,n){var r;
|
46 |
-
/*!
|
47 |
-
Copyright (c) 2018 Jed Watson.
|
48 |
-
Licensed under the MIT License (MIT), see
|
49 |
-
http://jedwatson.github.io/classnames
|
50 |
-
*/!function(){"use strict";var n={}.hasOwnProperty;function i(){for(var e=[],t=0;t<arguments.length;t++){var r=arguments[t];if(r){var o=typeof r;if("string"===o||"number"===o)e.push(r);else if(Array.isArray(r)){if(r.length){var a=i.apply(null,r);a&&e.push(a)}}else if("object"===o)if(r.toString===Object.prototype.toString)for(var s in r)n.call(r,s)&&r[s]&&e.push(s);else e.push(r.toString())}}return e.join(" ")}e.exports?(i.default=i,e.exports=i):void 0===(r=function(){return i}.apply(t,[]))||(e.exports=r)}()},TTsC:function(e,t,n){var r=n("Oak9"),i=n("7WHS"),o=n("IiZa").ArraySet,a=n("ckQ4").MappingList;function s(e){e||(e={}),this._file=i.getArg(e,"file",null),this._sourceRoot=i.getArg(e,"sourceRoot",null),this._skipValidation=i.getArg(e,"skipValidation",!1),this._sources=new o,this._names=new o,this._mappings=new a,this._sourcesContents=null}s.prototype._version=3,s.fromSourceMap=function(e){var t=e.sourceRoot,n=new s({file:e.file,sourceRoot:t});return e.eachMapping((function(e){var r={generated:{line:e.generatedLine,column:e.generatedColumn}};null!=e.source&&(r.source=e.source,null!=t&&(r.source=i.relative(t,r.source)),r.original={line:e.originalLine,column:e.originalColumn},null!=e.name&&(r.name=e.name)),n.addMapping(r)})),e.sources.forEach((function(r){var o=r;null!==t&&(o=i.relative(t,r)),n._sources.has(o)||n._sources.add(o);var a=e.sourceContentFor(r);null!=a&&n.setSourceContent(r,a)})),n},s.prototype.addMapping=function(e){var t=i.getArg(e,"generated"),n=i.getArg(e,"original",null),r=i.getArg(e,"source",null),o=i.getArg(e,"name",null);this._skipValidation||this._validateMapping(t,n,r,o),null!=r&&(r=String(r),this._sources.has(r)||this._sources.add(r)),null!=o&&(o=String(o),this._names.has(o)||this._names.add(o)),this._mappings.add({generatedLine:t.line,generatedColumn:t.column,originalLine:null!=n&&n.line,originalColumn:null!=n&&n.column,source:r,name:o})},s.prototype.setSourceContent=function(e,t){var n=e;null!=this._sourceRoot&&(n=i.relative(this._sourceRoot,n)),null!=t?(this._sourcesContents||(this._sourcesContents=Object.create(null)),this._sourcesContents[i.toSetString(n)]=t):this._sourcesContents&&(delete this._sourcesContents[i.toSetString(n)],0===Object.keys(this._sourcesContents).length&&(this._sourcesContents=null))},s.prototype.applySourceMap=function(e,t,n){var r=t;if(null==t){if(null==e.file)throw new Error('SourceMapGenerator.prototype.applySourceMap requires either an explicit source file, or the source map\'s "file" property. Both were omitted.');r=e.file}var a=this._sourceRoot;null!=a&&(r=i.relative(a,r));var s=new o,l=new o;this._mappings.unsortedForEach((function(t){if(t.source===r&&null!=t.originalLine){var o=e.originalPositionFor({line:t.originalLine,column:t.originalColumn});null!=o.source&&(t.source=o.source,null!=n&&(t.source=i.join(n,t.source)),null!=a&&(t.source=i.relative(a,t.source)),t.originalLine=o.line,t.originalColumn=o.column,null!=o.name&&(t.name=o.name))}var u=t.source;null==u||s.has(u)||s.add(u);var c=t.name;null==c||l.has(c)||l.add(c)}),this),this._sources=s,this._names=l,e.sources.forEach((function(t){var r=e.sourceContentFor(t);null!=r&&(null!=n&&(t=i.join(n,t)),null!=a&&(t=i.relative(a,t)),this.setSourceContent(t,r))}),this)},s.prototype._validateMapping=function(e,t,n,r){if(t&&"number"!=typeof t.line&&"number"!=typeof t.column)throw new Error("original.line and original.column are not numbers -- you probably meant to omit the original mapping entirely and only map the generated position. If so, pass null for the original mapping instead of an object with empty or null values.");if((!(e&&"line"in e&&"column"in e&&e.line>0&&e.column>=0)||t||n||r)&&!(e&&"line"in e&&"column"in e&&t&&"line"in t&&"column"in t&&e.line>0&&e.column>=0&&t.line>0&&t.column>=0&&n))throw new Error("Invalid mapping: "+JSON.stringify({generated:e,source:n,original:t,name:r}))},s.prototype._serializeMappings=function(){for(var e,t,n,o,a=0,s=1,l=0,u=0,c=0,d=0,p="",f=this._mappings.toArray(),m=0,h=f.length;m<h;m++){if(e="",(t=f[m]).generatedLine!==s)for(a=0;t.generatedLine!==s;)e+=";",s++;else if(m>0){if(!i.compareByGeneratedPositionsInflated(t,f[m-1]))continue;e+=","}e+=r.encode(t.generatedColumn-a),a=t.generatedColumn,null!=t.source&&(o=this._sources.indexOf(t.source),e+=r.encode(o-d),d=o,e+=r.encode(t.originalLine-1-u),u=t.originalLine-1,e+=r.encode(t.originalColumn-l),l=t.originalColumn,null!=t.name&&(n=this._names.indexOf(t.name),e+=r.encode(n-c),c=n)),p+=e}return p},s.prototype._generateSourcesContent=function(e,t){return e.map((function(e){if(!this._sourcesContents)return null;null!=t&&(e=i.relative(t,e));var n=i.toSetString(e);return Object.prototype.hasOwnProperty.call(this._sourcesContents,n)?this._sourcesContents[n]:null}),this)},s.prototype.toJSON=function(){var e={version:this._version,sources:this._sources.toArray(),names:this._names.toArray(),mappings:this._serializeMappings()};return null!=this._file&&(e.file=this._file),null!=this._sourceRoot&&(e.sourceRoot=this._sourceRoot),this._sourcesContents&&(e.sourcesContent=this._generateSourcesContent(e.sources,e.sourceRoot)),e},s.prototype.toString=function(){return JSON.stringify(this.toJSON())},t.SourceMapGenerator=s},TefO:function(e,t,n){e.exports={getNode:n("7GzS")}},Tnl3:function(e,t,n){var r=n("vd7W").isHexDigit,i=n("vd7W").cmpChar,o=n("vd7W").TYPE,a=n("vd7W").NAME,s=o.Ident,l=o.Number,u=o.Dimension;function c(e,t){for(var n=this.scanner.tokenStart+e,i=0;n<this.scanner.tokenEnd;n++){var o=this.scanner.source.charCodeAt(n);if(45===o&&t&&0!==i)return 0===c.call(this,e+i+1,!1)&&this.error(),-1;r(o)||this.error(t&&0!==i?"HyphenMinus"+(i<6?" or hex digit":"")+" is expected":i<6?"Hex digit is expected":"Unexpected input",n),++i>6&&this.error("Too many hex digits",n)}return this.scanner.next(),i}function d(e){for(var t=0;this.scanner.isDelim(63);)++t>e&&this.error("Too many question marks"),this.scanner.next()}function p(e){this.scanner.source.charCodeAt(this.scanner.tokenStart)!==e&&this.error(a[e]+" is expected")}function f(){var e=0;return this.scanner.isDelim(43)?(this.scanner.next(),this.scanner.tokenType===s?void((e=c.call(this,0,!0))>0&&d.call(this,6-e)):this.scanner.isDelim(63)?(this.scanner.next(),void d.call(this,5)):void this.error("Hex digit or question mark is expected")):this.scanner.tokenType===l?(p.call(this,43),e=c.call(this,1,!0),this.scanner.isDelim(63)?void d.call(this,6-e):this.scanner.tokenType===u||this.scanner.tokenType===l?(p.call(this,45),void c.call(this,1,!1)):void 0):this.scanner.tokenType===u?(p.call(this,43),void((e=c.call(this,1,!0))>0&&d.call(this,6-e))):void this.error()}e.exports={name:"UnicodeRange",structure:{value:String},parse:function(){var e=this.scanner.tokenStart;return i(this.scanner.source,e,117)||this.error("U is expected"),i(this.scanner.source,e+1,43)||this.error("Plus sign is expected"),this.scanner.next(),f.call(this),{type:"UnicodeRange",loc:this.getLocation(e,this.scanner.tokenStart),value:this.scanner.substrToCursor(e)}},generate:function(e){this.chunk(e.value)}}},TpIV:function(e,t,n){"use strict";e.exports=a;var r=n("FxWf"),i=Object.create(n("Onz0"));function o(e,t){var n=this._transformState;n.transforming=!1;var r=n.writecb;if(!r)return this.emit("error",new Error("write callback called multiple times"));n.writechunk=null,n.writecb=null,null!=t&&this.push(t),r(e);var i=this._readableState;i.reading=!1,(i.needReadable||i.length<i.highWaterMark)&&this._read(i.highWaterMark)}function a(e){if(!(this instanceof a))return new a(e);r.call(this,e),this._transformState={afterTransform:o.bind(this),needTransform:!1,transforming:!1,writecb:null,writechunk:null,writeencoding:null},this._readableState.needReadable=!0,this._readableState.sync=!1,e&&("function"==typeof e.transform&&(this._transform=e.transform),"function"==typeof e.flush&&(this._flush=e.flush)),this.on("prefinish",s)}function s(){var e=this;"function"==typeof this._flush?this._flush((function(t,n){l(e,t,n)})):l(this,null,null)}function l(e,t,n){if(t)return e.emit("error",t);if(null!=n&&e.push(n),e._writableState.length)throw new Error("Calling transform done when ws.length != 0");if(e._transformState.transforming)throw new Error("Calling transform done when still transforming");return e.push(null)}i.inherits=n("P7XM"),i.inherits(a,r),a.prototype.push=function(e,t){return this._transformState.needTransform=!1,r.prototype.push.call(this,e,t)},a.prototype._transform=function(e,t,n){throw new Error("_transform() is not implemented")},a.prototype._write=function(e,t,n){var r=this._transformState;if(r.writecb=n,r.writechunk=e,r.writeencoding=t,!r.transforming){var i=this._readableState;(r.needTransform||i.needReadable||i.length<i.highWaterMark)&&this._read(i.highWaterMark)}},a.prototype._read=function(e){var t=this._transformState;null!==t.writechunk&&t.writecb&&!t.transforming?(t.transforming=!0,this._transform(t.writechunk,t.writeencoding,t.afterTransform)):t.needTransform=!0},a.prototype._destroy=function(e,t){var n=this;r.prototype._destroy.call(this,e,(function(e){t(e),n.emit("close")}))}},Tpyv:function(e,t,n){var r=n("vd7W").TYPE.WhiteSpace,i=Object.freeze({type:"WhiteSpace",loc:null,value:" "});e.exports={name:"WhiteSpace",structure:{value:String},parse:function(){return this.eat(r),i},generate:function(e){this.chunk(e.value)}}},TqVZ:function(e,t,n){"use strict";var r=n("z9I/");var i=function(e){function t(e,t,r){var i=t.trim().split(m);t=i;var o=i.length,a=e.length;switch(a){case 0:case 1:var s=0;for(e=0===a?"":e[0]+" ";s<o;++s)t[s]=n(e,t[s],r).trim();break;default:var l=s=0;for(t=[];s<o;++s)for(var u=0;u<a;++u)t[l++]=n(e[u]+" ",i[s],r).trim()}return t}function n(e,t,n){var r=t.charCodeAt(0);switch(33>r&&(r=(t=t.trim()).charCodeAt(0)),r){case 38:return t.replace(h,"$1"+e.trim());case 58:return e.trim()+t.replace(h,"$1"+e.trim());default:if(0<1*n&&0<t.indexOf("\f"))return t.replace(h,(58===e.charCodeAt(0)?"":"$1")+e.trim())}return e+t}function r(e,t,n,o){var a=e+";",s=2*t+3*n+4*o;if(944===s){e=a.indexOf(":",9)+1;var l=a.substring(e,a.length-1).trim();return l=a.substring(0,e).trim()+l+";",1===A||2===A&&i(l,1)?"-webkit-"+l+l:l}if(0===A||2===A&&!i(a,1))return a;switch(s){case 1015:return 97===a.charCodeAt(10)?"-webkit-"+a+a:a;case 951:return 116===a.charCodeAt(3)?"-webkit-"+a+a:a;case 963:return 110===a.charCodeAt(5)?"-webkit-"+a+a:a;case 1009:if(100!==a.charCodeAt(4))break;case 969:case 942:return"-webkit-"+a+a;case 978:return"-webkit-"+a+"-moz-"+a+a;case 1019:case 983:return"-webkit-"+a+"-moz-"+a+"-ms-"+a+a;case 883:if(45===a.charCodeAt(8))return"-webkit-"+a+a;if(0<a.indexOf("image-set(",11))return a.replace(O,"$1-webkit-$2")+a;break;case 932:if(45===a.charCodeAt(4))switch(a.charCodeAt(5)){case 103:return"-webkit-box-"+a.replace("-grow","")+"-webkit-"+a+"-ms-"+a.replace("grow","positive")+a;case 115:return"-webkit-"+a+"-ms-"+a.replace("shrink","negative")+a;case 98:return"-webkit-"+a+"-ms-"+a.replace("basis","preferred-size")+a}return"-webkit-"+a+"-ms-"+a+a;case 964:return"-webkit-"+a+"-ms-flex-"+a+a;case 1023:if(99!==a.charCodeAt(8))break;return"-webkit-box-pack"+(l=a.substring(a.indexOf(":",15)).replace("flex-","").replace("space-between","justify"))+"-webkit-"+a+"-ms-flex-pack"+l+a;case 1005:return p.test(a)?a.replace(d,":-webkit-")+a.replace(d,":-moz-")+a:a;case 1e3:switch(t=(l=a.substring(13).trim()).indexOf("-")+1,l.charCodeAt(0)+l.charCodeAt(t)){case 226:l=a.replace(b,"tb");break;case 232:l=a.replace(b,"tb-rl");break;case 220:l=a.replace(b,"lr");break;default:return a}return"-webkit-"+a+"-ms-"+l+a;case 1017:if(-1===a.indexOf("sticky",9))break;case 975:switch(t=(a=e).length-10,s=(l=(33===a.charCodeAt(t)?a.substring(0,t):a).substring(e.indexOf(":",7)+1).trim()).charCodeAt(0)+(0|l.charCodeAt(7))){case 203:if(111>l.charCodeAt(8))break;case 115:a=a.replace(l,"-webkit-"+l)+";"+a;break;case 207:case 102:a=a.replace(l,"-webkit-"+(102<s?"inline-":"")+"box")+";"+a.replace(l,"-webkit-"+l)+";"+a.replace(l,"-ms-"+l+"box")+";"+a}return a+";";case 938:if(45===a.charCodeAt(5))switch(a.charCodeAt(6)){case 105:return l=a.replace("-items",""),"-webkit-"+a+"-webkit-box-"+l+"-ms-flex-"+l+a;case 115:return"-webkit-"+a+"-ms-flex-item-"+a.replace(w,"")+a;default:return"-webkit-"+a+"-ms-flex-line-pack"+a.replace("align-content","").replace(w,"")+a}break;case 973:case 989:if(45!==a.charCodeAt(3)||122===a.charCodeAt(4))break;case 931:case 953:if(!0===C.test(e))return 115===(l=e.substring(e.indexOf(":")+1)).charCodeAt(0)?r(e.replace("stretch","fill-available"),t,n,o).replace(":fill-available",":stretch"):a.replace(l,"-webkit-"+l)+a.replace(l,"-moz-"+l.replace("fill-",""))+a;break;case 962:if(a="-webkit-"+a+(102===a.charCodeAt(5)?"-ms-"+a:"")+a,211===n+o&&105===a.charCodeAt(13)&&0<a.indexOf("transform",10))return a.substring(0,a.indexOf(";",27)+1).replace(f,"$1-webkit-$2")+a}return a}function i(e,t){var n=e.indexOf(1===t?":":"{"),r=e.substring(0,3!==t?n:10);return n=e.substring(n+1,e.length-1),L(2!==t?r:r.replace(k,"$1"),n,t)}function o(e,t){var n=r(t,t.charCodeAt(0),t.charCodeAt(1),t.charCodeAt(2));return n!==t+";"?n.replace(x," or ($1)").substring(4):"("+t+")"}function a(e,t,n,r,i,o,a,s,u,c){for(var d,p=0,f=t;p<z;++p)switch(d=R[p].call(l,e,f,n,r,i,o,a,s,u,c)){case void 0:case!1:case!0:case null:break;default:f=d}if(f!==t)return f}function s(e){return void 0!==(e=e.prefix)&&(L=null,e?"function"!=typeof e?A=1:(A=2,L=e):A=0),s}function l(e,n){var s=e;if(33>s.charCodeAt(0)&&(s=s.trim()),s=[s],0<z){var l=a(-1,n,s,s,E,_,0,0,0,0);void 0!==l&&"string"==typeof l&&(n=l)}var d=function e(n,s,l,d,p){for(var f,m,h,b,x,w=0,k=0,C=0,O=0,R=0,L=0,M=h=f=0,B=0,W=0,N=0,I=0,D=l.length,U=D-1,q="",F="",V="",G="";B<D;){if(m=l.charCodeAt(B),B===U&&0!==k+O+C+w&&(0!==k&&(m=47===k?10:47),O=C=w=0,D++,U++),0===k+O+C+w){if(B===U&&(0<W&&(q=q.replace(c,"")),0<q.trim().length)){switch(m){case 32:case 9:case 59:case 13:case 10:break;default:q+=l.charAt(B)}m=59}switch(m){case 123:for(f=(q=q.trim()).charCodeAt(0),h=1,I=++B;B<D;){switch(m=l.charCodeAt(B)){case 123:h++;break;case 125:h--;break;case 47:switch(m=l.charCodeAt(B+1)){case 42:case 47:e:{for(M=B+1;M<U;++M)switch(l.charCodeAt(M)){case 47:if(42===m&&42===l.charCodeAt(M-1)&&B+2!==M){B=M+1;break e}break;case 10:if(47===m){B=M+1;break e}}B=M}}break;case 91:m++;case 40:m++;case 34:case 39:for(;B++<U&&l.charCodeAt(B)!==m;);}if(0===h)break;B++}switch(h=l.substring(I,B),0===f&&(f=(q=q.replace(u,"").trim()).charCodeAt(0)),f){case 64:switch(0<W&&(q=q.replace(c,"")),m=q.charCodeAt(1)){case 100:case 109:case 115:case 45:W=s;break;default:W=P}if(I=(h=e(s,W,h,m,p+1)).length,0<z&&(x=a(3,h,W=t(P,q,N),s,E,_,I,m,p,d),q=W.join(""),void 0!==x&&0===(I=(h=x.trim()).length)&&(m=0,h="")),0<I)switch(m){case 115:q=q.replace(S,o);case 100:case 109:case 45:h=q+"{"+h+"}";break;case 107:h=(q=q.replace(g,"$1 $2"))+"{"+h+"}",h=1===A||2===A&&i("@"+h,3)?"@-webkit-"+h+"@"+h:"@"+h;break;default:h=q+h,112===d&&(F+=h,h="")}else h="";break;default:h=e(s,t(s,q,N),h,d,p+1)}V+=h,h=N=W=M=f=0,q="",m=l.charCodeAt(++B);break;case 125:case 59:if(1<(I=(q=(0<W?q.replace(c,""):q).trim()).length))switch(0===M&&(f=q.charCodeAt(0),45===f||96<f&&123>f)&&(I=(q=q.replace(" ",":")).length),0<z&&void 0!==(x=a(1,q,s,n,E,_,F.length,d,p,d))&&0===(I=(q=x.trim()).length)&&(q="\0\0"),f=q.charCodeAt(0),m=q.charCodeAt(1),f){case 0:break;case 64:if(105===m||99===m){G+=q+l.charAt(B);break}default:58!==q.charCodeAt(I-1)&&(F+=r(q,f,m,q.charCodeAt(2)))}N=W=M=f=0,q="",m=l.charCodeAt(++B)}}switch(m){case 13:case 10:47===k?k=0:0===1+f&&107!==d&&0<q.length&&(W=1,q+="\0"),0<z*j&&a(0,q,s,n,E,_,F.length,d,p,d),_=1,E++;break;case 59:case 125:if(0===k+O+C+w){_++;break}default:switch(_++,b=l.charAt(B),m){case 9:case 32:if(0===O+w+k)switch(R){case 44:case 58:case 9:case 32:b="";break;default:32!==m&&(b=" ")}break;case 0:b="\\0";break;case 12:b="\\f";break;case 11:b="\\v";break;case 38:0===O+k+w&&(W=N=1,b="\f"+b);break;case 108:if(0===O+k+w+T&&0<M)switch(B-M){case 2:112===R&&58===l.charCodeAt(B-3)&&(T=R);case 8:111===L&&(T=L)}break;case 58:0===O+k+w&&(M=B);break;case 44:0===k+C+O+w&&(W=1,b+="\r");break;case 34:case 39:0===k&&(O=O===m?0:0===O?m:O);break;case 91:0===O+k+C&&w++;break;case 93:0===O+k+C&&w--;break;case 41:0===O+k+w&&C--;break;case 40:if(0===O+k+w){if(0===f)switch(2*R+3*L){case 533:break;default:f=1}C++}break;case 64:0===k+C+O+w+M+h&&(h=1);break;case 42:case 47:if(!(0<O+w+C))switch(k){case 0:switch(2*m+3*l.charCodeAt(B+1)){case 235:k=47;break;case 220:I=B,k=42}break;case 42:47===m&&42===R&&I+2!==B&&(33===l.charCodeAt(I+2)&&(F+=l.substring(I,B+1)),b="",k=0)}}0===k&&(q+=b)}L=R,R=m,B++}if(0<(I=F.length)){if(W=s,0<z&&(void 0!==(x=a(2,F,W,n,E,_,I,d,p,d))&&0===(F=x).length))return G+F+V;if(F=W.join(",")+"{"+F+"}",0!=A*T){switch(2!==A||i(F,2)||(T=0),T){case 111:F=F.replace(y,":-moz-$1")+F;break;case 112:F=F.replace(v,"::-webkit-input-$1")+F.replace(v,"::-moz-$1")+F.replace(v,":-ms-input-$1")+F}T=0}}return G+F+V}(P,s,n,0,0);return 0<z&&(void 0!==(l=a(-2,d,s,s,E,_,d.length,0,0,0))&&(d=l)),"",T=0,_=E=1,d}var u=/^\0+/g,c=/[\0\r\f]/g,d=/: */g,p=/zoo|gra/,f=/([,: ])(transform)/g,m=/,\r+?/g,h=/([\t\r\n ])*\f?&/g,g=/@(k\w+)\s*(\S*)\s*/,v=/::(place)/g,y=/:(read-only)/g,b=/[svh]\w+-[tblr]{2}/,S=/\(\s*(.*)\s*\)/g,x=/([\s\S]*?);/g,w=/-self|flex-/g,k=/[^]*?(:[rp][el]a[\w-]+)[^]*/,C=/stretch|:\s*\w+\-(?:conte|avail)/,O=/([^-])(image-set\()/,_=1,E=1,T=0,A=1,P=[],R=[],z=0,L=null,j=0;return l.use=function e(t){switch(t){case void 0:case null:z=R.length=0;break;default:if("function"==typeof t)R[z++]=t;else if("object"==typeof t)for(var n=0,r=t.length;n<r;++n)e(t[n]);else j=0|!!t}return e},l.set=s,void 0!==e&&s(e),l};function o(e){e&&a.current.insert(e+"}")}var a={current:null},s=function(e,t,n,r,i,s,l,u,c,d){switch(e){case 1:switch(t.charCodeAt(0)){case 64:return a.current.insert(t+";"),"";case 108:if(98===t.charCodeAt(2))return""}break;case 2:if(0===u)return t+"/*|*/";break;case 3:switch(u){case 102:case 112:return a.current.insert(n[0]+t),"";default:return t+(0===d?"/*|*/":"")}case-2:t.split("/*|*/}").forEach(o)}};t.a=function(e){void 0===e&&(e={});var t,n=e.key||"css";void 0!==e.prefix&&(t={prefix:e.prefix});var o=new i(t);var l,u={};l=e.container||document.head;var c,d=document.querySelectorAll("style[data-emotion-"+n+"]");Array.prototype.forEach.call(d,(function(e){e.getAttribute("data-emotion-"+n).split(" ").forEach((function(e){u[e]=!0})),e.parentNode!==l&&l.appendChild(e)})),o.use(e.stylisPlugins)(s),c=function(e,t,n,r){var i=t.name;a.current=n,o(e,t.styles),r&&(p.inserted[i]=!0)};var p={key:n,sheet:new r.a({key:n,container:l,nonce:e.nonce,speedy:e.speedy}),nonce:e.nonce,inserted:u,registered:{},insert:c};return p}},Ttul:function(e,t){e.exports={ASTERISK:"*",AT:"@",BACK_SLASH:"\\",CARRIAGE_RETURN:"\r",CLOSE_CURLY_BRACKET:"}",CLOSE_ROUND_BRACKET:")",CLOSE_SQUARE_BRACKET:"]",COLON:":",COMMA:",",DOUBLE_QUOTE:'"',EXCLAMATION:"!",FORWARD_SLASH:"/",INTERNAL:"-clean-css-",NEW_LINE_NIX:"\n",OPEN_CURLY_BRACKET:"{",OPEN_ROUND_BRACKET:"(",OPEN_SQUARE_BRACKET:"[",SEMICOLON:";",SINGLE_QUOTE:"'",SPACE:" ",TAB:"\t",UNDERSCORE:"_"}},U6jy:function(e,t){e.exports=function(){for(var e={},t=0;t<arguments.length;t++){var r=arguments[t];for(var i in r)n.call(r,i)&&(e[i]=r[i])}return e};var n=Object.prototype.hasOwnProperty},UAm0:function(e,t,n){"use strict";n.d(t,"a",(function(){return o}));var r=n("LvDl"),i=n("4eJC");const o=n.n(i)()((function(e){return"components-"+Object(r.kebabCase)(e)}))},UGdY:function(e,t,n){var r=n("TTsC").SourceMapGenerator,i={Atrule:!0,Selector:!0,Declaration:!0};e.exports=function(e){var t=new r,n=1,o=0,a={line:1,column:0},s={line:0,column:0},l=!1,u={line:1,column:0},c={generated:u},d=e.node;e.node=function(e){if(e.loc&&e.loc.start&&i.hasOwnProperty(e.type)){var r=e.loc.start.line,p=e.loc.start.column-1;s.line===r&&s.column===p||(s.line=r,s.column=p,a.line=n,a.column=o,l&&(l=!1,a.line===u.line&&a.column===u.column||t.addMapping(c)),l=!0,t.addMapping({source:e.loc.source,original:s,generated:a}))}d.call(this,e),l&&i.hasOwnProperty(e.type)&&(u.line=n,u.column=o)};var p=e.chunk;e.chunk=function(e){for(var t=0;t<e.length;t++)10===e.charCodeAt(t)?(n++,o=0):o++;p(e)};var f=e.result;return e.result=function(){return l&&t.addMapping(c),{css:f(),map:t}},e}},URgk:function(e,t,n){(function(e){var r=void 0!==e&&e||"undefined"!=typeof self&&self||window,i=Function.prototype.apply;function o(e,t){this._id=e,this._clearFn=t}t.setTimeout=function(){return new o(i.call(setTimeout,r,arguments),clearTimeout)},t.setInterval=function(){return new o(i.call(setInterval,r,arguments),clearInterval)},t.clearTimeout=t.clearInterval=function(e){e&&e.close()},o.prototype.unref=o.prototype.ref=function(){},o.prototype.close=function(){this._clearFn.call(r,this._id)},t.enroll=function(e,t){clearTimeout(e._idleTimeoutId),e._idleTimeout=t},t.unenroll=function(e){clearTimeout(e._idleTimeoutId),e._idleTimeout=-1},t._unrefActive=t.active=function(e){clearTimeout(e._idleTimeoutId);var t=e._idleTimeout;t>=0&&(e._idleTimeoutId=setTimeout((function(){e._onTimeout&&e._onTimeout()}),t))},n("YBdB"),t.setImmediate="undefined"!=typeof self&&self.setImmediate||void 0!==e&&e.setImmediate||this&&this.setImmediate,t.clearImmediate="undefined"!=typeof self&&self.clearImmediate||void 0!==e&&e.clearImmediate||this&&this.clearImmediate}).call(this,n("yLpj"))},UwDK:function(e,t,n){var r=n("vd7W").TYPE.RightParenthesis;e.exports={name:"Function",structure:{name:String,children:[[]]},parse:function(e,t){var n,i=this.scanner.tokenStart,o=this.consumeFunctionName(),a=o.toLowerCase();return n=t.hasOwnProperty(a)?t[a].call(this,t):e.call(this,t),this.scanner.eof||this.eat(r),{type:"Function",loc:this.getLocation(i,this.scanner.tokenStart),name:o,children:n}},generate:function(e){this.chunk(e.name),this.chunk("("),this.children(e),this.chunk(")")},walkContext:"function"}},VGoB:function(e,t){e.exports=function e(t,n){var r,i,o,a={};for(r in t)o=t[r],Array.isArray(o)?a[r]=o.slice(0):a[r]="object"==typeof o&&null!==o?e(o,{}):o;for(i in n)o=n[i],i in a&&Array.isArray(o)?a[i]=o.slice(0):a[i]=i in a&&"object"==typeof o&&null!==o?e(a[i],o):o;return a}},VRG1:function(e,t,n){e.exports=n("2pxp")},VbXa:function(e,t,n){var r=n("SksO");e.exports=function(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,r(e,t)},e.exports.default=e.exports,e.exports.__esModule=!0},Vc3Y:function(e,t,n){var r=n("Pna4").all;function i(e,t){var n="string"==typeof t?t:t[1];(0,e.wrap)(e,n),a(e,n),e.output.push(n)}function o(e,t){e.column+t.length>e.format.wrapAt&&(a(e,e.format.breakWith),e.output.push(e.format.breakWith))}function a(e,t){var n=t.split("\n");e.line+=n.length-1,e.column=n.length>1?0:e.column+n.pop().length}e.exports=function(e,t){var n={column:0,format:t.options.format,indentBy:0,indentWith:"",line:1,output:[],spaceAfterClosingBrace:t.options.compatibility.properties.spaceAfterClosingBrace,store:i,wrap:t.options.format.wrapAt?o:function(){}};return r(n,e),{styles:n.output.join("")}}},Vj1t:function(e,t,n){var r=n("vd7W").TYPE,i=r.LeftParenthesis,o=r.RightParenthesis;e.exports={name:"Parentheses",structure:{children:[[]]},parse:function(e,t){var n,r=this.scanner.tokenStart;return this.eat(i),n=e.call(this,t),this.scanner.eof||this.eat(o),{type:"Parentheses",loc:this.getLocation(r,this.scanner.tokenStart),children:n}},generate:function(e){this.chunk("("),this.children(e),this.chunk(")")}}},W8Jt:function(e,t,n){"use strict";(function(t,r,i){var o=n("lm0R");function a(e){var t=this;this.next=null,this.entry=null,this.finish=function(){!function(e,t,n){var r=e.entry;e.entry=null;for(;r;){var i=r.callback;t.pendingcb--,i(n),r=r.next}t.corkedRequestsFree?t.corkedRequestsFree.next=e:t.corkedRequestsFree=e}(t,e)}}e.exports=y;var s,l=!t.browser&&["v0.10","v0.9."].indexOf(t.version.slice(0,5))>-1?r:o.nextTick;y.WritableState=v;var u=Object.create(n("Onz0"));u.inherits=n("P7XM");var c={deprecate:n("t9FE")},d=n("Gtba"),p=n("hwdV").Buffer,f=i.Uint8Array||function(){};var m,h=n("xp+Q");function g(){}function v(e,t){s=s||n("FxWf"),e=e||{};var r=t instanceof s;this.objectMode=!!e.objectMode,r&&(this.objectMode=this.objectMode||!!e.writableObjectMode);var i=e.highWaterMark,u=e.writableHighWaterMark,c=this.objectMode?16:16384;this.highWaterMark=i||0===i?i:r&&(u||0===u)?u:c,this.highWaterMark=Math.floor(this.highWaterMark),this.finalCalled=!1,this.needDrain=!1,this.ending=!1,this.ended=!1,this.finished=!1,this.destroyed=!1;var d=!1===e.decodeStrings;this.decodeStrings=!d,this.defaultEncoding=e.defaultEncoding||"utf8",this.length=0,this.writing=!1,this.corked=0,this.sync=!0,this.bufferProcessing=!1,this.onwrite=function(e){!function(e,t){var n=e._writableState,r=n.sync,i=n.writecb;if(function(e){e.writing=!1,e.writecb=null,e.length-=e.writelen,e.writelen=0}(n),t)!function(e,t,n,r,i){--t.pendingcb,n?(o.nextTick(i,r),o.nextTick(C,e,t),e._writableState.errorEmitted=!0,e.emit("error",r)):(i(r),e._writableState.errorEmitted=!0,e.emit("error",r),C(e,t))}(e,n,r,t,i);else{var a=w(n);a||n.corked||n.bufferProcessing||!n.bufferedRequest||x(e,n),r?l(S,e,n,a,i):S(e,n,a,i)}}(t,e)},this.writecb=null,this.writelen=0,this.bufferedRequest=null,this.lastBufferedRequest=null,this.pendingcb=0,this.prefinished=!1,this.errorEmitted=!1,this.bufferedRequestCount=0,this.corkedRequestsFree=new a(this)}function y(e){if(s=s||n("FxWf"),!(m.call(y,this)||this instanceof s))return new y(e);this._writableState=new v(e,this),this.writable=!0,e&&("function"==typeof e.write&&(this._write=e.write),"function"==typeof e.writev&&(this._writev=e.writev),"function"==typeof e.destroy&&(this._destroy=e.destroy),"function"==typeof e.final&&(this._final=e.final)),d.call(this)}function b(e,t,n,r,i,o,a){t.writelen=r,t.writecb=a,t.writing=!0,t.sync=!0,n?e._writev(i,t.onwrite):e._write(i,o,t.onwrite),t.sync=!1}function S(e,t,n,r){n||function(e,t){0===t.length&&t.needDrain&&(t.needDrain=!1,e.emit("drain"))}(e,t),t.pendingcb--,r(),C(e,t)}function x(e,t){t.bufferProcessing=!0;var n=t.bufferedRequest;if(e._writev&&n&&n.next){var r=t.bufferedRequestCount,i=new Array(r),o=t.corkedRequestsFree;o.entry=n;for(var s=0,l=!0;n;)i[s]=n,n.isBuf||(l=!1),n=n.next,s+=1;i.allBuffers=l,b(e,t,!0,t.length,i,"",o.finish),t.pendingcb++,t.lastBufferedRequest=null,o.next?(t.corkedRequestsFree=o.next,o.next=null):t.corkedRequestsFree=new a(t),t.bufferedRequestCount=0}else{for(;n;){var u=n.chunk,c=n.encoding,d=n.callback;if(b(e,t,!1,t.objectMode?1:u.length,u,c,d),n=n.next,t.bufferedRequestCount--,t.writing)break}null===n&&(t.lastBufferedRequest=null)}t.bufferedRequest=n,t.bufferProcessing=!1}function w(e){return e.ending&&0===e.length&&null===e.bufferedRequest&&!e.finished&&!e.writing}function k(e,t){e._final((function(n){t.pendingcb--,n&&e.emit("error",n),t.prefinished=!0,e.emit("prefinish"),C(e,t)}))}function C(e,t){var n=w(t);return n&&(!function(e,t){t.prefinished||t.finalCalled||("function"==typeof e._final?(t.pendingcb++,t.finalCalled=!0,o.nextTick(k,e,t)):(t.prefinished=!0,e.emit("prefinish")))}(e,t),0===t.pendingcb&&(t.finished=!0,e.emit("finish"))),n}u.inherits(y,d),v.prototype.getBuffer=function(){for(var e=this.bufferedRequest,t=[];e;)t.push(e),e=e.next;return t},function(){try{Object.defineProperty(v.prototype,"buffer",{get:c.deprecate((function(){return this.getBuffer()}),"_writableState.buffer is deprecated. Use _writableState.getBuffer instead.","DEP0003")})}catch(e){}}(),"function"==typeof Symbol&&Symbol.hasInstance&&"function"==typeof Function.prototype[Symbol.hasInstance]?(m=Function.prototype[Symbol.hasInstance],Object.defineProperty(y,Symbol.hasInstance,{value:function(e){return!!m.call(this,e)||this===y&&(e&&e._writableState instanceof v)}})):m=function(e){return e instanceof this},y.prototype.pipe=function(){this.emit("error",new Error("Cannot pipe, not readable"))},y.prototype.write=function(e,t,n){var r,i=this._writableState,a=!1,s=!i.objectMode&&(r=e,p.isBuffer(r)||r instanceof f);return s&&!p.isBuffer(e)&&(e=function(e){return p.from(e)}(e)),"function"==typeof t&&(n=t,t=null),s?t="buffer":t||(t=i.defaultEncoding),"function"!=typeof n&&(n=g),i.ended?function(e,t){var n=new Error("write after end");e.emit("error",n),o.nextTick(t,n)}(this,n):(s||function(e,t,n,r){var i=!0,a=!1;return null===n?a=new TypeError("May not write null values to stream"):"string"==typeof n||void 0===n||t.objectMode||(a=new TypeError("Invalid non-string/buffer chunk")),a&&(e.emit("error",a),o.nextTick(r,a),i=!1),i}(this,i,e,n))&&(i.pendingcb++,a=function(e,t,n,r,i,o){if(!n){var a=function(e,t,n){e.objectMode||!1===e.decodeStrings||"string"!=typeof t||(t=p.from(t,n));return t}(t,r,i);r!==a&&(n=!0,i="buffer",r=a)}var s=t.objectMode?1:r.length;t.length+=s;var l=t.length<t.highWaterMark;l||(t.needDrain=!0);if(t.writing||t.corked){var u=t.lastBufferedRequest;t.lastBufferedRequest={chunk:r,encoding:i,isBuf:n,callback:o,next:null},u?u.next=t.lastBufferedRequest:t.bufferedRequest=t.lastBufferedRequest,t.bufferedRequestCount+=1}else b(e,t,!1,s,r,i,o);return l}(this,i,s,e,t,n)),a},y.prototype.cork=function(){this._writableState.corked++},y.prototype.uncork=function(){var e=this._writableState;e.corked&&(e.corked--,e.writing||e.corked||e.finished||e.bufferProcessing||!e.bufferedRequest||x(this,e))},y.prototype.setDefaultEncoding=function(e){if("string"==typeof e&&(e=e.toLowerCase()),!(["hex","utf8","utf-8","ascii","binary","base64","ucs2","ucs-2","utf16le","utf-16le","raw"].indexOf((e+"").toLowerCase())>-1))throw new TypeError("Unknown encoding: "+e);return this._writableState.defaultEncoding=e,this},Object.defineProperty(y.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),y.prototype._write=function(e,t,n){n(new Error("_write() is not implemented"))},y.prototype._writev=null,y.prototype.end=function(e,t,n){var r=this._writableState;"function"==typeof e?(n=e,e=null,t=null):"function"==typeof t&&(n=t,t=null),null!=e&&this.write(e,t),r.corked&&(r.corked=1,this.uncork()),r.ending||r.finished||function(e,t,n){t.ending=!0,C(e,t),n&&(t.finished?o.nextTick(n):e.once("finish",n));t.ended=!0,e.writable=!1}(this,r,n)},Object.defineProperty(y.prototype,"destroyed",{get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(e){this._writableState&&(this._writableState.destroyed=e)}}),y.prototype.destroy=h.destroy,y.prototype._undestroy=h.undestroy,y.prototype._destroy=function(e,t){this.end(),t(e)}}).call(this,n("8oxB"),n("URgk").setImmediate,n("yLpj"))},WGRy:function(e,t,n){var r=n("qQrL"),i=n("JhqQ"),o=/align\-items|box\-align|box\-pack|flex|justify/,a=/^border\-(top|right|bottom|left|color|style|width|radius)/;function s(e,t,n){var s,m,h=e[0],g=e[1],v=e[2],y=e[5],b=e[6],S=t[0],x=t[1],w=t[2],k=t[5],C=t[6];return!("font"==h&&"line-height"==S||"font"==S&&"line-height"==h)&&((!o.test(h)||!o.test(S))&&(!(v==w&&u(h)==u(S)&&l(h)^l(S))&&(("border"!=v||!a.test(w)||!("border"==h||h==w||g!=x&&c(h,S)))&&(("border"!=w||!a.test(v)||!("border"==S||S==v||g!=x&&c(h,S)))&&(("border"!=v||"border"!=w||h==S||!(d(h)&&p(S)||p(h)&&d(S)))&&(v!=w||(!(h!=S||v!=w||g!=x&&(s=g,m=x,!l(s)||!l(m)||s.split("-")[1]==m.split("-")[2]))||(h!=S&&v==w&&h!=v&&S!=w||(h!=S&&v==w&&g==x||(!(!C||!b||f(v)||f(w)||r(k,y,!1))||!i(y,k,n)))))))))))}function l(e){return/^\-(?:moz|webkit|ms|o)\-/.test(e)}function u(e){return e.replace(/^\-(?:moz|webkit|ms|o)\-/,"")}function c(e,t){return e.split("-").pop()==t.split("-").pop()}function d(e){return"border-top"==e||"border-right"==e||"border-bottom"==e||"border-left"==e}function p(e){return"border-color"==e||"border-style"==e||"border-width"==e}function f(e){return"font"==e||"line-height"==e||"list-style"==e}e.exports={canReorder:function(e,t,n){for(var r=t.length-1;r>=0;r--)for(var i=e.length-1;i>=0;i--)if(!s(e[i],t[r],n))return!1;return!0},canReorderSingle:s}},WbBG:function(e,t,n){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},WyMB:function(e,t,n){"use strict";(function(e){function r(t){void 0!==e&&Object({NODE_ENV:"production"})}n.d(t,"a",(function(){return r}))}).call(this,n("8oxB"))},X3zT:function(e,t,n){var r=n("PENG").EOL,i=n("VGoB"),o={AfterAtRule:"afterAtRule",AfterBlockBegins:"afterBlockBegins",AfterBlockEnds:"afterBlockEnds",AfterComment:"afterComment",AfterProperty:"afterProperty",AfterRuleBegins:"afterRuleBegins",AfterRuleEnds:"afterRuleEnds",BeforeBlockEnds:"beforeBlockEnds",BetweenSelectors:"betweenSelectors"},a={CarriageReturnLineFeed:"\r\n",LineFeed:"\n",System:r},s=" ",l="\t",u={AroundSelectorRelation:"aroundSelectorRelation",BeforeBlockBegins:"beforeBlockBegins",BeforeValue:"beforeValue"},c={breaks:d(!1),breakWith:a.System,indentBy:0,indentWith:s,spaces:p(!1),wrapAt:!1,semicolonAfterLastProperty:!1};function d(e){var t={};return t[o.AfterAtRule]=e,t[o.AfterBlockBegins]=e,t[o.AfterBlockEnds]=e,t[o.AfterComment]=e,t[o.AfterProperty]=e,t[o.AfterRuleBegins]=e,t[o.AfterRuleEnds]=e,t[o.BeforeBlockEnds]=e,t[o.BetweenSelectors]=e,t}function p(e){var t={};return t[u.AroundSelectorRelation]=e,t[u.BeforeBlockBegins]=e,t[u.BeforeValue]=e,t}function f(e){switch(e){case"windows":case"crlf":case a.CarriageReturnLineFeed:return a.CarriageReturnLineFeed;case"unix":case"lf":case a.LineFeed:return a.LineFeed;default:return r}}function m(e){switch(e){case"space":return s;case"tab":return l;default:return e}}e.exports={Breaks:o,Spaces:u,formatFrom:function(e){return void 0!==e&&!1!==e&&("object"==typeof e&&"breakWith"in e&&(e=i(e,{breakWith:f(e.breakWith)})),"object"==typeof e&&"indentBy"in e&&(e=i(e,{indentBy:parseInt(e.indentBy)})),"object"==typeof e&&"indentWith"in e&&(e=i(e,{indentWith:m(e.indentWith)})),"object"==typeof e||"object"==typeof e?i(c,e):"string"==typeof e&&"beautify"==e?i(c,{breaks:d(!0),indentBy:2,spaces:p(!0)}):"string"==typeof e&&"keep-breaks"==e?i(c,{breaks:{afterAtRule:!0,afterBlockBegins:!0,afterBlockEnds:!0,afterComment:!0,afterRuleEnds:!0,beforeBlockEnds:!0}}):"string"==typeof e?i(c,e.split(";").reduce((function(e,t){var n=t.split(":"),r=n[0],i=n[1];return"breaks"==r||"spaces"==r?e[r]=function(e){return e.split(",").reduce((function(e,t){var n=t.split("="),r=n[0],i=n[1];return e[r]=function(e){switch(e){case"false":case"off":return!1;case"true":case"on":return!0;default:return e}}(i),e}),{})}(i):"indentBy"==r||"wrapAt"==r?e[r]=parseInt(i):"indentWith"==r?e[r]=m(i):"breakWith"==r&&(e[r]=f(i)),e}),{})):c)}}},XDwu:function(e,t){e.exports=function(e,t){var n=Object.create(SyntaxError.prototype),r=new Error;return n.name=e,n.message=t,Object.defineProperty(n,"stack",{get:function(){return(r.stack||"").replace(/^(.+\n){1,3}/,e+": "+t+"\n")}}),n}},XQQa:function(e,t){class n extends Error{constructor(e,t){i[e]||(e="UnknownError",t={message:JSON.stringify(t)}),super(i[e].getMessage(t)),this.type=e,this.data=t}getType(){return this.type}has(e){return Object.prototype.hasOwnProperty.call(this.data,e)}get(e){return this.data[e]}toJSON(){return{type:this.type,data:this.data,message:i[this.type].getMessage(this.data)}}static fromJSON(e){const t=i[e.type];return t?new t(e.data):new r({message:e.message||e})}}class r extends n{constructor({message:e}){super("UnknownError",{message:e})}static getMessage(e){return e.message}}const i={CrossDomainError:class extends n{constructor({url:e}){super("CrossDomainError",{url:e})}static getMessage(e){return"Failed to fetch cross-domain content at "+e.url}},LoadTimeoutError:class extends n{constructor({url:e}){super("LoadTimeoutError",{url:e})}static getMessage(e){return"Timeout while reading "+e.url}},RedirectError:class extends n{constructor({url:e,redirectUrl:t}){super("RedirectError",{url:e,redirectUrl:t})}static getMessage(e){return`Failed to process ${e.url} because it redirects to ${e.redirectUrl} which cannot be verified`}},HttpError:class extends n{constructor({url:e,code:t}){super("HttpError",{url:e,code:t})}static getMessage(e){return`HTTP error ${e.code} on URL ${e.url}`}},UrlVerifyError:class extends n{constructor({url:e}){super("UrlVerifyError",{url:e})}static getMessage(e){return"Failed to verify page at "+e.url}},GenericUrlError:class extends n{constructor({url:e,message:t}){super("GenericUrlError",{url:e,message:t})}static getMessage(e){return`Error while loading ${e.url}: ${e.message}`}},ConfigurationError:class extends n{constructor({message:e}){super("ConfigurationError",{message:e})}static getMessage(e){return"Invalid configuraiton: "+e.message}},InternalError:class extends n{constructor({message:e}){super("InternalError",{message:e})}static getMessage(e){return"Internal error: "+e.message}},UnknownError:r};e.exports={...i,CriticalCssError:n}},"Y+H1":function(e,t,n){var r=n("vd7W").TYPE.Comment;e.exports={name:"Comment",structure:{value:String},parse:function(){var e=this.scanner.tokenStart,t=this.scanner.tokenEnd;return this.eat(r),t-e+2>=2&&42===this.scanner.source.charCodeAt(t-2)&&47===this.scanner.source.charCodeAt(t-1)&&(t-=2),{type:"Comment",loc:this.getLocation(e,this.scanner.tokenStart),value:this.scanner.source.substring(e+2,t)}},generate:function(e){this.chunk("/*"),this.chunk(e.value),this.chunk("*/")}}},"Y+n5":function(e,t,n){var r=n("6Aqh");t.encode=function(e){var t,n="",i=function(e){return e<0?1+(-e<<1):0+(e<<1)}(e);do{t=31&i,(i>>>=5)>0&&(t|=32),n+=r.encode(t)}while(i>0);return n},t.decode=function(e,t,n){var i,o,a,s,l=e.length,u=0,c=0;do{if(t>=l)throw new Error("Expected more digits in base 64 VLQ value.");if(-1===(o=r.decode(e.charCodeAt(t++))))throw new Error("Invalid base64 digit: "+e.charAt(t-1));i=!!(32&o),u+=(o&=31)<<c,c+=5}while(i);n.value=(s=(a=u)>>1,1==(1&a)?-s:s),n.rest=t}},Y0sX:function(e,t,n){var r=n("O36p"),i=Object.prototype.hasOwnProperty;function o(e){return"number"==typeof e&&isFinite(e)&&Math.floor(e)===e&&e>=0}function a(e){return Boolean(e)&&o(e.offset)&&o(e.line)&&o(e.column)}function s(e,t){return function(n,o){if(!n||n.constructor!==Object)return o(n,"Type of node should be an Object");for(var s in n){var l=!0;if(!1!==i.call(n,s)){if("type"===s)n.type!==e&&o(n,"Wrong node type `"+n.type+"`, expected `"+e+"`");else if("loc"===s){if(null===n.loc)continue;if(n.loc&&n.loc.constructor===Object)if("string"!=typeof n.loc.source)s+=".source";else if(a(n.loc.start)){if(a(n.loc.end))continue;s+=".end"}else s+=".start";l=!1}else if(t.hasOwnProperty(s)){var u=0;for(l=!1;!l&&u<t[s].length;u++){var c=t[s][u];switch(c){case String:l="string"==typeof n[s];break;case Boolean:l="boolean"==typeof n[s];break;case null:l=null===n[s];break;default:"string"==typeof c?l=n[s]&&n[s].type===c:Array.isArray(c)&&(l=n[s]instanceof r)}}}else o(n,"Unknown field `"+s+"` for "+e+" node type");l||o(n,"Bad value for `"+e+"."+s+"`")}}for(var s in t)i.call(t,s)&&!1===i.call(n,s)&&o(n,"Field `"+e+"."+s+"` is missed")}}function l(e,t){var n=t.structure,r={type:String,loc:!0},o={type:'"'+e+'"'};for(var a in n)if(!1!==i.call(n,a)){for(var l=[],u=r[a]=Array.isArray(n[a])?n[a].slice():[n[a]],c=0;c<u.length;c++){var d=u[c];if(d===String||d===Boolean)l.push(d.name);else if(null===d)l.push("null");else if("string"==typeof d)l.push("<"+d+">");else{if(!Array.isArray(d))throw new Error("Wrong value `"+d+"` in `"+e+"."+a+"` structure definition");l.push("List")}}o[a]=l.join(" | ")}return{docs:o,check:s(e,r)}}e.exports={getStructureFromConfig:function(e){var t={};if(e.node)for(var n in e.node)if(i.call(e.node,n)){var r=e.node[n];if(!r.structure)throw new Error("Missed `structure` field in `"+n+"` node type definition");t[n]=l(n,r)}return t}}},YBdB:function(e,t,n){(function(e,t){!function(e,n){"use strict";if(!e.setImmediate){var r,i,o,a,s,l=1,u={},c=!1,d=e.document,p=Object.getPrototypeOf&&Object.getPrototypeOf(e);p=p&&p.setTimeout?p:e,"[object process]"==={}.toString.call(e.process)?r=function(e){t.nextTick((function(){m(e)}))}:!function(){if(e.postMessage&&!e.importScripts){var t=!0,n=e.onmessage;return e.onmessage=function(){t=!1},e.postMessage("","*"),e.onmessage=n,t}}()?e.MessageChannel?((o=new MessageChannel).port1.onmessage=function(e){m(e.data)},r=function(e){o.port2.postMessage(e)}):d&&"onreadystatechange"in d.createElement("script")?(i=d.documentElement,r=function(e){var t=d.createElement("script");t.onreadystatechange=function(){m(e),t.onreadystatechange=null,i.removeChild(t),t=null},i.appendChild(t)}):r=function(e){setTimeout(m,0,e)}:(a="setImmediate$"+Math.random()+"$",s=function(t){t.source===e&&"string"==typeof t.data&&0===t.data.indexOf(a)&&m(+t.data.slice(a.length))},e.addEventListener?e.addEventListener("message",s,!1):e.attachEvent("onmessage",s),r=function(t){e.postMessage(a+t,"*")}),p.setImmediate=function(e){"function"!=typeof e&&(e=new Function(""+e));for(var t=new Array(arguments.length-1),n=0;n<t.length;n++)t[n]=arguments[n+1];var i={callback:e,args:t};return u[l]=i,r(l),l++},p.clearImmediate=f}function f(e){delete u[e]}function m(e){if(c)setTimeout(m,0,e);else{var t=u[e];if(t){c=!0;try{!function(e){var t=e.callback,n=e.args;switch(n.length){case 0:t();break;case 1:t(n[0]);break;case 2:t(n[0],n[1]);break;case 3:t(n[0],n[1],n[2]);break;default:t.apply(void 0,n)}}(t)}finally{f(e),c=!1}}}}}("undefined"==typeof self?void 0===e?this:e:self)}).call(this,n("yLpj"),n("8oxB"))},YQdX:function(e,t,n){var r=n("Y+n5"),i=n("G7ev"),o=n("JU3k").ArraySet,a=n("1Lqr").MappingList;function s(e){e||(e={}),this._file=i.getArg(e,"file",null),this._sourceRoot=i.getArg(e,"sourceRoot",null),this._skipValidation=i.getArg(e,"skipValidation",!1),this._sources=new o,this._names=new o,this._mappings=new a,this._sourcesContents=null}s.prototype._version=3,s.fromSourceMap=function(e){var t=e.sourceRoot,n=new s({file:e.file,sourceRoot:t});return e.eachMapping((function(e){var r={generated:{line:e.generatedLine,column:e.generatedColumn}};null!=e.source&&(r.source=e.source,null!=t&&(r.source=i.relative(t,r.source)),r.original={line:e.originalLine,column:e.originalColumn},null!=e.name&&(r.name=e.name)),n.addMapping(r)})),e.sources.forEach((function(r){var o=r;null!==t&&(o=i.relative(t,r)),n._sources.has(o)||n._sources.add(o);var a=e.sourceContentFor(r);null!=a&&n.setSourceContent(r,a)})),n},s.prototype.addMapping=function(e){var t=i.getArg(e,"generated"),n=i.getArg(e,"original",null),r=i.getArg(e,"source",null),o=i.getArg(e,"name",null);this._skipValidation||this._validateMapping(t,n,r,o),null!=r&&(r=String(r),this._sources.has(r)||this._sources.add(r)),null!=o&&(o=String(o),this._names.has(o)||this._names.add(o)),this._mappings.add({generatedLine:t.line,generatedColumn:t.column,originalLine:null!=n&&n.line,originalColumn:null!=n&&n.column,source:r,name:o})},s.prototype.setSourceContent=function(e,t){var n=e;null!=this._sourceRoot&&(n=i.relative(this._sourceRoot,n)),null!=t?(this._sourcesContents||(this._sourcesContents=Object.create(null)),this._sourcesContents[i.toSetString(n)]=t):this._sourcesContents&&(delete this._sourcesContents[i.toSetString(n)],0===Object.keys(this._sourcesContents).length&&(this._sourcesContents=null))},s.prototype.applySourceMap=function(e,t,n){var r=t;if(null==t){if(null==e.file)throw new Error('SourceMapGenerator.prototype.applySourceMap requires either an explicit source file, or the source map\'s "file" property. Both were omitted.');r=e.file}var a=this._sourceRoot;null!=a&&(r=i.relative(a,r));var s=new o,l=new o;this._mappings.unsortedForEach((function(t){if(t.source===r&&null!=t.originalLine){var o=e.originalPositionFor({line:t.originalLine,column:t.originalColumn});null!=o.source&&(t.source=o.source,null!=n&&(t.source=i.join(n,t.source)),null!=a&&(t.source=i.relative(a,t.source)),t.originalLine=o.line,t.originalColumn=o.column,null!=o.name&&(t.name=o.name))}var u=t.source;null==u||s.has(u)||s.add(u);var c=t.name;null==c||l.has(c)||l.add(c)}),this),this._sources=s,this._names=l,e.sources.forEach((function(t){var r=e.sourceContentFor(t);null!=r&&(null!=n&&(t=i.join(n,t)),null!=a&&(t=i.relative(a,t)),this.setSourceContent(t,r))}),this)},s.prototype._validateMapping=function(e,t,n,r){if(t&&"number"!=typeof t.line&&"number"!=typeof t.column)throw new Error("original.line and original.column are not numbers -- you probably meant to omit the original mapping entirely and only map the generated position. If so, pass null for the original mapping instead of an object with empty or null values.");if((!(e&&"line"in e&&"column"in e&&e.line>0&&e.column>=0)||t||n||r)&&!(e&&"line"in e&&"column"in e&&t&&"line"in t&&"column"in t&&e.line>0&&e.column>=0&&t.line>0&&t.column>=0&&n))throw new Error("Invalid mapping: "+JSON.stringify({generated:e,source:n,original:t,name:r}))},s.prototype._serializeMappings=function(){for(var e,t,n,o,a=0,s=1,l=0,u=0,c=0,d=0,p="",f=this._mappings.toArray(),m=0,h=f.length;m<h;m++){if(e="",(t=f[m]).generatedLine!==s)for(a=0;t.generatedLine!==s;)e+=";",s++;else if(m>0){if(!i.compareByGeneratedPositionsInflated(t,f[m-1]))continue;e+=","}e+=r.encode(t.generatedColumn-a),a=t.generatedColumn,null!=t.source&&(o=this._sources.indexOf(t.source),e+=r.encode(o-d),d=o,e+=r.encode(t.originalLine-1-u),u=t.originalLine-1,e+=r.encode(t.originalColumn-l),l=t.originalColumn,null!=t.name&&(n=this._names.indexOf(t.name),e+=r.encode(n-c),c=n)),p+=e}return p},s.prototype._generateSourcesContent=function(e,t){return e.map((function(e){if(!this._sourcesContents)return null;null!=t&&(e=i.relative(t,e));var n=i.toSetString(e);return Object.prototype.hasOwnProperty.call(this._sourcesContents,n)?this._sourcesContents[n]:null}),this)},s.prototype.toJSON=function(){var e={version:this._version,sources:this._sources.toArray(),names:this._names.toArray(),mappings:this._serializeMappings()};return null!=this._file&&(e.file=this._file),null!=this._sourceRoot&&(e.sourceRoot=this._sourceRoot),this._sourcesContents&&(e.sourcesContent=this._generateSourcesContent(e.sources,e.sourceRoot)),e},s.prototype.toString=function(){return JSON.stringify(this.toJSON())},t.SourceMapGenerator=s},Ybe4:function(e,t){e.exports=function(e){return e.replace(/\s+/g," ").replace(/url\(\s+/g,"url(").replace(/\s+\)/g,")").trim()}},YuTi:function(e,t){e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children||(e.children=[]),Object.defineProperty(e,"loaded",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,"id",{enumerable:!0,get:function(){return e.i}}),e.webpackPolyfill=1),e}},ZVk9:function(e,t,n){var r=n("vd7W").isWhiteSpace,i=n("vd7W").cmpStr,o=n("vd7W").TYPE,a=o.Function,s=o.Url,l=o.RightParenthesis;e.exports={name:"Url",structure:{value:["String","Raw"]},parse:function(){var e,t=this.scanner.tokenStart;switch(this.scanner.tokenType){case s:for(var n=t+4,o=this.scanner.tokenEnd-1;n<o&&r(this.scanner.source.charCodeAt(n));)n++;for(;n<o&&r(this.scanner.source.charCodeAt(o-1));)o--;e={type:"Raw",loc:this.getLocation(n,o),value:this.scanner.source.substring(n,o)},this.eat(s);break;case a:i(this.scanner.source,this.scanner.tokenStart,this.scanner.tokenEnd,"url(")||this.error("Function name must be `url`"),this.eat(a),this.scanner.skipSC(),e=this.String(),this.scanner.skipSC(),this.eat(l);break;default:this.error("Url or Function is expected")}return{type:"Url",loc:this.getLocation(t,this.scanner.tokenStart),value:e}},generate:function(e){this.chunk("url"),this.chunk("("),this.node(e.value),this.chunk(")")}}},Zss7:function(e,t,n){var r;!function(i){var o=/^\s+/,a=/\s+$/,s=0,l=i.round,u=i.min,c=i.max,d=i.random;function p(e,t){if(t=t||{},(e=e||"")instanceof p)return e;if(!(this instanceof p))return new p(e,t);var n=function(e){var t={r:0,g:0,b:0},n=1,r=null,s=null,l=null,d=!1,p=!1;"string"==typeof e&&(e=function(e){e=e.replace(o,"").replace(a,"").toLowerCase();var t,n=!1;if(P[e])e=P[e],n=!0;else if("transparent"==e)return{r:0,g:0,b:0,a:0,format:"name"};if(t=F.rgb.exec(e))return{r:t[1],g:t[2],b:t[3]};if(t=F.rgba.exec(e))return{r:t[1],g:t[2],b:t[3],a:t[4]};if(t=F.hsl.exec(e))return{h:t[1],s:t[2],l:t[3]};if(t=F.hsla.exec(e))return{h:t[1],s:t[2],l:t[3],a:t[4]};if(t=F.hsv.exec(e))return{h:t[1],s:t[2],v:t[3]};if(t=F.hsva.exec(e))return{h:t[1],s:t[2],v:t[3],a:t[4]};if(t=F.hex8.exec(e))return{r:M(t[1]),g:M(t[2]),b:M(t[3]),a:I(t[4]),format:n?"name":"hex8"};if(t=F.hex6.exec(e))return{r:M(t[1]),g:M(t[2]),b:M(t[3]),format:n?"name":"hex"};if(t=F.hex4.exec(e))return{r:M(t[1]+""+t[1]),g:M(t[2]+""+t[2]),b:M(t[3]+""+t[3]),a:I(t[4]+""+t[4]),format:n?"name":"hex8"};if(t=F.hex3.exec(e))return{r:M(t[1]+""+t[1]),g:M(t[2]+""+t[2]),b:M(t[3]+""+t[3]),format:n?"name":"hex"};return!1}(e));"object"==typeof e&&(V(e.r)&&V(e.g)&&V(e.b)?(f=e.r,m=e.g,h=e.b,t={r:255*L(f,255),g:255*L(m,255),b:255*L(h,255)},d=!0,p="%"===String(e.r).substr(-1)?"prgb":"rgb"):V(e.h)&&V(e.s)&&V(e.v)?(r=W(e.s),s=W(e.v),t=function(e,t,n){e=6*L(e,360),t=L(t,100),n=L(n,100);var r=i.floor(e),o=e-r,a=n*(1-t),s=n*(1-o*t),l=n*(1-(1-o)*t),u=r%6;return{r:255*[n,s,a,a,l,n][u],g:255*[l,n,n,s,a,a][u],b:255*[a,a,l,n,n,s][u]}}(e.h,r,s),d=!0,p="hsv"):V(e.h)&&V(e.s)&&V(e.l)&&(r=W(e.s),l=W(e.l),t=function(e,t,n){var r,i,o;function a(e,t,n){return n<0&&(n+=1),n>1&&(n-=1),n<1/6?e+6*(t-e)*n:n<.5?t:n<2/3?e+(t-e)*(2/3-n)*6:e}if(e=L(e,360),t=L(t,100),n=L(n,100),0===t)r=i=o=n;else{var s=n<.5?n*(1+t):n+t-n*t,l=2*n-s;r=a(l,s,e+1/3),i=a(l,s,e),o=a(l,s,e-1/3)}return{r:255*r,g:255*i,b:255*o}}(e.h,r,l),d=!0,p="hsl"),e.hasOwnProperty("a")&&(n=e.a));var f,m,h;return n=z(n),{ok:d,format:e.format||p,r:u(255,c(t.r,0)),g:u(255,c(t.g,0)),b:u(255,c(t.b,0)),a:n}}(e);this._originalInput=e,this._r=n.r,this._g=n.g,this._b=n.b,this._a=n.a,this._roundA=l(100*this._a)/100,this._format=t.format||n.format,this._gradientType=t.gradientType,this._r<1&&(this._r=l(this._r)),this._g<1&&(this._g=l(this._g)),this._b<1&&(this._b=l(this._b)),this._ok=n.ok,this._tc_id=s++}function f(e,t,n){e=L(e,255),t=L(t,255),n=L(n,255);var r,i,o=c(e,t,n),a=u(e,t,n),s=(o+a)/2;if(o==a)r=i=0;else{var l=o-a;switch(i=s>.5?l/(2-o-a):l/(o+a),o){case e:r=(t-n)/l+(t<n?6:0);break;case t:r=(n-e)/l+2;break;case n:r=(e-t)/l+4}r/=6}return{h:r,s:i,l:s}}function m(e,t,n){e=L(e,255),t=L(t,255),n=L(n,255);var r,i,o=c(e,t,n),a=u(e,t,n),s=o,l=o-a;if(i=0===o?0:l/o,o==a)r=0;else{switch(o){case e:r=(t-n)/l+(t<n?6:0);break;case t:r=(n-e)/l+2;break;case n:r=(e-t)/l+4}r/=6}return{h:r,s:i,v:s}}function h(e,t,n,r){var i=[B(l(e).toString(16)),B(l(t).toString(16)),B(l(n).toString(16))];return r&&i[0].charAt(0)==i[0].charAt(1)&&i[1].charAt(0)==i[1].charAt(1)&&i[2].charAt(0)==i[2].charAt(1)?i[0].charAt(0)+i[1].charAt(0)+i[2].charAt(0):i.join("")}function g(e,t,n,r){return[B(N(r)),B(l(e).toString(16)),B(l(t).toString(16)),B(l(n).toString(16))].join("")}function v(e,t){t=0===t?0:t||10;var n=p(e).toHsl();return n.s-=t/100,n.s=j(n.s),p(n)}function y(e,t){t=0===t?0:t||10;var n=p(e).toHsl();return n.s+=t/100,n.s=j(n.s),p(n)}function b(e){return p(e).desaturate(100)}function S(e,t){t=0===t?0:t||10;var n=p(e).toHsl();return n.l+=t/100,n.l=j(n.l),p(n)}function x(e,t){t=0===t?0:t||10;var n=p(e).toRgb();return n.r=c(0,u(255,n.r-l(-t/100*255))),n.g=c(0,u(255,n.g-l(-t/100*255))),n.b=c(0,u(255,n.b-l(-t/100*255))),p(n)}function w(e,t){t=0===t?0:t||10;var n=p(e).toHsl();return n.l-=t/100,n.l=j(n.l),p(n)}function k(e,t){var n=p(e).toHsl(),r=(n.h+t)%360;return n.h=r<0?360+r:r,p(n)}function C(e){var t=p(e).toHsl();return t.h=(t.h+180)%360,p(t)}function O(e){var t=p(e).toHsl(),n=t.h;return[p(e),p({h:(n+120)%360,s:t.s,l:t.l}),p({h:(n+240)%360,s:t.s,l:t.l})]}function _(e){var t=p(e).toHsl(),n=t.h;return[p(e),p({h:(n+90)%360,s:t.s,l:t.l}),p({h:(n+180)%360,s:t.s,l:t.l}),p({h:(n+270)%360,s:t.s,l:t.l})]}function E(e){var t=p(e).toHsl(),n=t.h;return[p(e),p({h:(n+72)%360,s:t.s,l:t.l}),p({h:(n+216)%360,s:t.s,l:t.l})]}function T(e,t,n){t=t||6,n=n||30;var r=p(e).toHsl(),i=360/n,o=[p(e)];for(r.h=(r.h-(i*t>>1)+720)%360;--t;)r.h=(r.h+i)%360,o.push(p(r));return o}function A(e,t){t=t||6;for(var n=p(e).toHsv(),r=n.h,i=n.s,o=n.v,a=[],s=1/t;t--;)a.push(p({h:r,s:i,v:o})),o=(o+s)%1;return a}p.prototype={isDark:function(){return this.getBrightness()<128},isLight:function(){return!this.isDark()},isValid:function(){return this._ok},getOriginalInput:function(){return this._originalInput},getFormat:function(){return this._format},getAlpha:function(){return this._a},getBrightness:function(){var e=this.toRgb();return(299*e.r+587*e.g+114*e.b)/1e3},getLuminance:function(){var e,t,n,r=this.toRgb();return e=r.r/255,t=r.g/255,n=r.b/255,.2126*(e<=.03928?e/12.92:i.pow((e+.055)/1.055,2.4))+.7152*(t<=.03928?t/12.92:i.pow((t+.055)/1.055,2.4))+.0722*(n<=.03928?n/12.92:i.pow((n+.055)/1.055,2.4))},setAlpha:function(e){return this._a=z(e),this._roundA=l(100*this._a)/100,this},toHsv:function(){var e=m(this._r,this._g,this._b);return{h:360*e.h,s:e.s,v:e.v,a:this._a}},toHsvString:function(){var e=m(this._r,this._g,this._b),t=l(360*e.h),n=l(100*e.s),r=l(100*e.v);return 1==this._a?"hsv("+t+", "+n+"%, "+r+"%)":"hsva("+t+", "+n+"%, "+r+"%, "+this._roundA+")"},toHsl:function(){var e=f(this._r,this._g,this._b);return{h:360*e.h,s:e.s,l:e.l,a:this._a}},toHslString:function(){var e=f(this._r,this._g,this._b),t=l(360*e.h),n=l(100*e.s),r=l(100*e.l);return 1==this._a?"hsl("+t+", "+n+"%, "+r+"%)":"hsla("+t+", "+n+"%, "+r+"%, "+this._roundA+")"},toHex:function(e){return h(this._r,this._g,this._b,e)},toHexString:function(e){return"#"+this.toHex(e)},toHex8:function(e){return function(e,t,n,r,i){var o=[B(l(e).toString(16)),B(l(t).toString(16)),B(l(n).toString(16)),B(N(r))];if(i&&o[0].charAt(0)==o[0].charAt(1)&&o[1].charAt(0)==o[1].charAt(1)&&o[2].charAt(0)==o[2].charAt(1)&&o[3].charAt(0)==o[3].charAt(1))return o[0].charAt(0)+o[1].charAt(0)+o[2].charAt(0)+o[3].charAt(0);return o.join("")}(this._r,this._g,this._b,this._a,e)},toHex8String:function(e){return"#"+this.toHex8(e)},toRgb:function(){return{r:l(this._r),g:l(this._g),b:l(this._b),a:this._a}},toRgbString:function(){return 1==this._a?"rgb("+l(this._r)+", "+l(this._g)+", "+l(this._b)+")":"rgba("+l(this._r)+", "+l(this._g)+", "+l(this._b)+", "+this._roundA+")"},toPercentageRgb:function(){return{r:l(100*L(this._r,255))+"%",g:l(100*L(this._g,255))+"%",b:l(100*L(this._b,255))+"%",a:this._a}},toPercentageRgbString:function(){return 1==this._a?"rgb("+l(100*L(this._r,255))+"%, "+l(100*L(this._g,255))+"%, "+l(100*L(this._b,255))+"%)":"rgba("+l(100*L(this._r,255))+"%, "+l(100*L(this._g,255))+"%, "+l(100*L(this._b,255))+"%, "+this._roundA+")"},toName:function(){return 0===this._a?"transparent":!(this._a<1)&&(R[h(this._r,this._g,this._b,!0)]||!1)},toFilter:function(e){var t="#"+g(this._r,this._g,this._b,this._a),n=t,r=this._gradientType?"GradientType = 1, ":"";if(e){var i=p(e);n="#"+g(i._r,i._g,i._b,i._a)}return"progid:DXImageTransform.Microsoft.gradient("+r+"startColorstr="+t+",endColorstr="+n+")"},toString:function(e){var t=!!e;e=e||this._format;var n=!1,r=this._a<1&&this._a>=0;return t||!r||"hex"!==e&&"hex6"!==e&&"hex3"!==e&&"hex4"!==e&&"hex8"!==e&&"name"!==e?("rgb"===e&&(n=this.toRgbString()),"prgb"===e&&(n=this.toPercentageRgbString()),"hex"!==e&&"hex6"!==e||(n=this.toHexString()),"hex3"===e&&(n=this.toHexString(!0)),"hex4"===e&&(n=this.toHex8String(!0)),"hex8"===e&&(n=this.toHex8String()),"name"===e&&(n=this.toName()),"hsl"===e&&(n=this.toHslString()),"hsv"===e&&(n=this.toHsvString()),n||this.toHexString()):"name"===e&&0===this._a?this.toName():this.toRgbString()},clone:function(){return p(this.toString())},_applyModification:function(e,t){var n=e.apply(null,[this].concat([].slice.call(t)));return this._r=n._r,this._g=n._g,this._b=n._b,this.setAlpha(n._a),this},lighten:function(){return this._applyModification(S,arguments)},brighten:function(){return this._applyModification(x,arguments)},darken:function(){return this._applyModification(w,arguments)},desaturate:function(){return this._applyModification(v,arguments)},saturate:function(){return this._applyModification(y,arguments)},greyscale:function(){return this._applyModification(b,arguments)},spin:function(){return this._applyModification(k,arguments)},_applyCombination:function(e,t){return e.apply(null,[this].concat([].slice.call(t)))},analogous:function(){return this._applyCombination(T,arguments)},complement:function(){return this._applyCombination(C,arguments)},monochromatic:function(){return this._applyCombination(A,arguments)},splitcomplement:function(){return this._applyCombination(E,arguments)},triad:function(){return this._applyCombination(O,arguments)},tetrad:function(){return this._applyCombination(_,arguments)}},p.fromRatio=function(e,t){if("object"==typeof e){var n={};for(var r in e)e.hasOwnProperty(r)&&(n[r]="a"===r?e[r]:W(e[r]));e=n}return p(e,t)},p.equals=function(e,t){return!(!e||!t)&&p(e).toRgbString()==p(t).toRgbString()},p.random=function(){return p.fromRatio({r:d(),g:d(),b:d()})},p.mix=function(e,t,n){n=0===n?0:n||50;var r=p(e).toRgb(),i=p(t).toRgb(),o=n/100;return p({r:(i.r-r.r)*o+r.r,g:(i.g-r.g)*o+r.g,b:(i.b-r.b)*o+r.b,a:(i.a-r.a)*o+r.a})},p.readability=function(e,t){var n=p(e),r=p(t);return(i.max(n.getLuminance(),r.getLuminance())+.05)/(i.min(n.getLuminance(),r.getLuminance())+.05)},p.isReadable=function(e,t,n){var r,i,o=p.readability(e,t);switch(i=!1,(r=function(e){var t,n;t=((e=e||{level:"AA",size:"small"}).level||"AA").toUpperCase(),n=(e.size||"small").toLowerCase(),"AA"!==t&&"AAA"!==t&&(t="AA");"small"!==n&&"large"!==n&&(n="small");return{level:t,size:n}}(n)).level+r.size){case"AAsmall":case"AAAlarge":i=o>=4.5;break;case"AAlarge":i=o>=3;break;case"AAAsmall":i=o>=7}return i},p.mostReadable=function(e,t,n){var r,i,o,a,s=null,l=0;i=(n=n||{}).includeFallbackColors,o=n.level,a=n.size;for(var u=0;u<t.length;u++)(r=p.readability(e,t[u]))>l&&(l=r,s=p(t[u]));return p.isReadable(e,s,{level:o,size:a})||!i?s:(n.includeFallbackColors=!1,p.mostReadable(e,["#fff","#000"],n))};var P=p.names={aliceblue:"f0f8ff",antiquewhite:"faebd7",aqua:"0ff",aquamarine:"7fffd4",azure:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"000",blanchedalmond:"ffebcd",blue:"00f",blueviolet:"8a2be2",brown:"a52a2a",burlywood:"deb887",burntsienna:"ea7e5d",cadetblue:"5f9ea0",chartreuse:"7fff00",chocolate:"d2691e",coral:"ff7f50",cornflowerblue:"6495ed",cornsilk:"fff8dc",crimson:"dc143c",cyan:"0ff",darkblue:"00008b",darkcyan:"008b8b",darkgoldenrod:"b8860b",darkgray:"a9a9a9",darkgreen:"006400",darkgrey:"a9a9a9",darkkhaki:"bdb76b",darkmagenta:"8b008b",darkolivegreen:"556b2f",darkorange:"ff8c00",darkorchid:"9932cc",darkred:"8b0000",darksalmon:"e9967a",darkseagreen:"8fbc8f",darkslateblue:"483d8b",darkslategray:"2f4f4f",darkslategrey:"2f4f4f",darkturquoise:"00ced1",darkviolet:"9400d3",deeppink:"ff1493",deepskyblue:"00bfff",dimgray:"696969",dimgrey:"696969",dodgerblue:"1e90ff",firebrick:"b22222",floralwhite:"fffaf0",forestgreen:"228b22",fuchsia:"f0f",gainsboro:"dcdcdc",ghostwhite:"f8f8ff",gold:"ffd700",goldenrod:"daa520",gray:"808080",green:"008000",greenyellow:"adff2f",grey:"808080",honeydew:"f0fff0",hotpink:"ff69b4",indianred:"cd5c5c",indigo:"4b0082",ivory:"fffff0",khaki:"f0e68c",lavender:"e6e6fa",lavenderblush:"fff0f5",lawngreen:"7cfc00",lemonchiffon:"fffacd",lightblue:"add8e6",lightcoral:"f08080",lightcyan:"e0ffff",lightgoldenrodyellow:"fafad2",lightgray:"d3d3d3",lightgreen:"90ee90",lightgrey:"d3d3d3",lightpink:"ffb6c1",lightsalmon:"ffa07a",lightseagreen:"20b2aa",lightskyblue:"87cefa",lightslategray:"789",lightslategrey:"789",lightsteelblue:"b0c4de",lightyellow:"ffffe0",lime:"0f0",limegreen:"32cd32",linen:"faf0e6",magenta:"f0f",maroon:"800000",mediumaquamarine:"66cdaa",mediumblue:"0000cd",mediumorchid:"ba55d3",mediumpurple:"9370db",mediumseagreen:"3cb371",mediumslateblue:"7b68ee",mediumspringgreen:"00fa9a",mediumturquoise:"48d1cc",mediumvioletred:"c71585",midnightblue:"191970",mintcream:"f5fffa",mistyrose:"ffe4e1",moccasin:"ffe4b5",navajowhite:"ffdead",navy:"000080",oldlace:"fdf5e6",olive:"808000",olivedrab:"6b8e23",orange:"ffa500",orangered:"ff4500",orchid:"da70d6",palegoldenrod:"eee8aa",palegreen:"98fb98",paleturquoise:"afeeee",palevioletred:"db7093",papayawhip:"ffefd5",peachpuff:"ffdab9",peru:"cd853f",pink:"ffc0cb",plum:"dda0dd",powderblue:"b0e0e6",purple:"800080",rebeccapurple:"663399",red:"f00",rosybrown:"bc8f8f",royalblue:"4169e1",saddlebrown:"8b4513",salmon:"fa8072",sandybrown:"f4a460",seagreen:"2e8b57",seashell:"fff5ee",sienna:"a0522d",silver:"c0c0c0",skyblue:"87ceeb",slateblue:"6a5acd",slategray:"708090",slategrey:"708090",snow:"fffafa",springgreen:"00ff7f",steelblue:"4682b4",tan:"d2b48c",teal:"008080",thistle:"d8bfd8",tomato:"ff6347",turquoise:"40e0d0",violet:"ee82ee",wheat:"f5deb3",white:"fff",whitesmoke:"f5f5f5",yellow:"ff0",yellowgreen:"9acd32"},R=p.hexNames=function(e){var t={};for(var n in e)e.hasOwnProperty(n)&&(t[e[n]]=n);return t}(P);function z(e){return e=parseFloat(e),(isNaN(e)||e<0||e>1)&&(e=1),e}function L(e,t){(function(e){return"string"==typeof e&&-1!=e.indexOf(".")&&1===parseFloat(e)})(e)&&(e="100%");var n=function(e){return"string"==typeof e&&-1!=e.indexOf("%")}(e);return e=u(t,c(0,parseFloat(e))),n&&(e=parseInt(e*t,10)/100),i.abs(e-t)<1e-6?1:e%t/parseFloat(t)}function j(e){return u(1,c(0,e))}function M(e){return parseInt(e,16)}function B(e){return 1==e.length?"0"+e:""+e}function W(e){return e<=1&&(e=100*e+"%"),e}function N(e){return i.round(255*parseFloat(e)).toString(16)}function I(e){return M(e)/255}var D,U,q,F=(U="[\\s|\\(]+("+(D="(?:[-\\+]?\\d*\\.\\d+%?)|(?:[-\\+]?\\d+%?)")+")[,|\\s]+("+D+")[,|\\s]+("+D+")\\s*\\)?",q="[\\s|\\(]+("+D+")[,|\\s]+("+D+")[,|\\s]+("+D+")[,|\\s]+("+D+")\\s*\\)?",{CSS_UNIT:new RegExp(D),rgb:new RegExp("rgb"+U),rgba:new RegExp("rgba"+q),hsl:new RegExp("hsl"+U),hsla:new RegExp("hsla"+q),hsv:new RegExp("hsv"+U),hsva:new RegExp("hsva"+q),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/});function V(e){return!!F.CSS_UNIT.exec(e)}e.exports?e.exports=p:void 0===(r=function(){return p}.call(t,n,t,e))||(e.exports=r)}(Math)},a3y9:function(e,t){e.exports=function(){return this.createSingleNodeList(this.Raw(this.scanner.tokenIndex,null,!1))}},aFPG:function(e,t){e.exports=function(e){return Array.isArray(e)?e:!1===e?["none"]:void 0===e?["local"]:e.split(",")}},aUQo:function(e,t,n){var r=n("vd7W").TYPE.CDC;e.exports={name:"CDC",structure:[],parse:function(){var e=this.scanner.tokenStart;return this.eat(r),{type:"CDC",loc:this.getLocation(e,this.scanner.tokenStart)}},generate:function(){this.chunk("--\x3e")}}},acmg:function(e,t,n){e.exports={node:n("585i")}},avj0:function(e,t,n){e.exports={dir:n("RApX"),has:n("te+T"),lang:n("zuyY"),matches:n("VRG1"),not:n("wDXs"),"nth-child":n("twrC"),"nth-last-child":n("yJif"),"nth-last-of-type":n("dsX3"),"nth-of-type":n("B3CK"),slotted:n("d/Fg")}},b8gD:function(e,t){var n=/^data:(\S*?)?(;charset=[^;]+)?(;[^,]+?)?,(.+)/;e.exports=function(e){return n.exec(e)}},bgAe:function(e,t,n){var r=n("O36p");e.exports=function e(t){var n={};for(var i in t){var o=t[i];o&&(Array.isArray(o)||o instanceof r?o=o.map(e):o.constructor===Object&&(o=e(o))),n[i]=o}return n}},bxbb:function(e,t,n){var r=n("vd7W").TYPE,i=r.String,o=r.Ident,a=r.Url,s=r.Function,l=r.LeftParenthesis;e.exports={parse:{prelude:function(){var e=this.createList();switch(this.scanner.skipSC(),this.scanner.tokenType){case i:e.push(this.String());break;case a:case s:e.push(this.Url());break;default:this.error("String or url() is expected")}return this.lookupNonWSType(0)!==o&&this.lookupNonWSType(0)!==l||(e.push(this.WhiteSpace()),e.push(this.MediaQueryList())),e},block:null}}},"c+DE":function(e,t,n){var r=n("33yf"),i=n("CxY0");e.exports=function(e,t){var n=r.dirname(t);return e.sources=e.sources.map((function(e){return i.resolve(n,e)})),e}},"c/dR":function(e,t){e.exports=function(e){return e}},c0Bz:function(e,t,n){var r=n("Ag6s");function i(e,t){var n=r[e.name];return"components"in n&&n.components.indexOf(t.name)>-1}e.exports=function(e,t,n){return i(e,t)||!n&&!!r[e.name].shorthandComponents&&function(e,t){return e.components.some((function(e){return i(e,t)}))}(e,t)}},cZJh:function(e,t,n){var r=n("WGRy").canReorder,i=n("BWMQ"),o=n("yF14"),a=n("cj6p").rules,s=n("dzo0");e.exports=function(e,t){var n,l=t.cache.specificity,u={},c=[];for(n=e.length-1;n>=0;n--)if(e[n][0]==s.RULE&&0!==e[n][2].length){var d=a(e[n][1]);u[d]=[n].concat(u[d]||[]),2==u[d].length&&c.push(d)}for(n=c.length-1;n>=0;n--){var p=u[c[n]];e:for(var f=p.length-1;f>0;f--){var m=p[f-1],h=e[m],g=p[f],v=e[g];t:for(var y=1;y>=-1;y-=2){for(var b=1==y,S=b?m+1:g-1,x=b?g:m,w=b?1:-1,k=b?h:v,C=b?v:h,O=i(k);S!=x;){var _=i(e[S]);S+=w;var E=b?r(O,_,l):r(_,O,l);if(!E&&!b)continue e;if(!E&&b)continue t}b?(Array.prototype.push.apply(k[2],C[2]),C[2]=k[2]):Array.prototype.push.apply(C[2],k[2]),o(C[2],!0,!0,t),k[2]=[]}}}}},cj6p:function(e,t,n){var r=n("Pna4");function i(e,t){e.output.push("string"==typeof t?t:t[1])}function o(){return{output:[],store:i}}e.exports={all:function(e){var t=o();return r.all(t,e),t.output.join("")},body:function(e){var t=o();return r.body(t,e),t.output.join("")},property:function(e,t){var n=o();return r.property(n,e,t,!0),n.output.join("")},rules:function(e){var t=o();return r.rules(t,e),t.output.join("")},value:function(e){var t=o();return r.value(t,e),t.output.join("")}}},ckQ4:function(e,t,n){var r=n("7WHS");function i(){this._array=[],this._sorted=!0,this._last={generatedLine:-1,generatedColumn:0}}i.prototype.unsortedForEach=function(e,t){this._array.forEach(e,t)},i.prototype.add=function(e){var t,n,i,o,a,s;t=this._last,n=e,i=t.generatedLine,o=n.generatedLine,a=t.generatedColumn,s=n.generatedColumn,o>i||o==i&&s>=a||r.compareByGeneratedPositionsInflated(t,n)<=0?(this._last=e,this._array.push(e)):(this._sorted=!1,this._array.push(e))},i.prototype.toArray=function(){return this._sorted||(this._array.sort(r.compareByGeneratedPositionsInflated),this._sorted=!0),this._array},t.MappingList=i},"d/Fg":function(e,t){e.exports={parse:function(){return this.createSingleNodeList(this.Selector())}}},dB5I:function(e,t,n){var r=n("vd7W").TYPE.Hash;e.exports={name:"IdSelector",structure:{name:String},parse:function(){var e=this.scanner.tokenStart;return this.eat(r),{type:"IdSelector",loc:this.getLocation(e,this.scanner.tokenStart),name:this.scanner.substrToCursor(e+1)}},generate:function(e){this.chunk("#"),this.chunk(e.name)}}},dsX3:function(e,t,n){e.exports=n("lXnc")},dv2O:function(e,t){e.exports={parse:{prelude:function(){return this.createSingleNodeList(this.SelectorList())},block:function(){return this.Block(!0)}}}},dwdH:function(e,t,n){var r=n("G7ev"),i=n("QIKQ"),o=n("JU3k").ArraySet,a=n("Y+n5"),s=n("CdAG").quickSort;function l(e,t){var n=e;return"string"==typeof e&&(n=r.parseSourceMapInput(e)),null!=n.sections?new d(n,t):new u(n,t)}function u(e,t){var n=e;"string"==typeof e&&(n=r.parseSourceMapInput(e));var i=r.getArg(n,"version"),a=r.getArg(n,"sources"),s=r.getArg(n,"names",[]),l=r.getArg(n,"sourceRoot",null),u=r.getArg(n,"sourcesContent",null),c=r.getArg(n,"mappings"),d=r.getArg(n,"file",null);if(i!=this._version)throw new Error("Unsupported version: "+i);l&&(l=r.normalize(l)),a=a.map(String).map(r.normalize).map((function(e){return l&&r.isAbsolute(l)&&r.isAbsolute(e)?r.relative(l,e):e})),this._names=o.fromArray(s.map(String),!0),this._sources=o.fromArray(a,!0),this._absoluteSources=this._sources.toArray().map((function(e){return r.computeSourceURL(l,e,t)})),this.sourceRoot=l,this.sourcesContent=u,this._mappings=c,this._sourceMapURL=t,this.file=d}function c(){this.generatedLine=0,this.generatedColumn=0,this.source=null,this.originalLine=null,this.originalColumn=null,this.name=null}function d(e,t){var n=e;"string"==typeof e&&(n=r.parseSourceMapInput(e));var i=r.getArg(n,"version"),a=r.getArg(n,"sections");if(i!=this._version)throw new Error("Unsupported version: "+i);this._sources=new o,this._names=new o;var s={line:-1,column:0};this._sections=a.map((function(e){if(e.url)throw new Error("Support for url field in sections not implemented.");var n=r.getArg(e,"offset"),i=r.getArg(n,"line"),o=r.getArg(n,"column");if(i<s.line||i===s.line&&o<s.column)throw new Error("Section offsets must be ordered and non-overlapping.");return s=n,{generatedOffset:{generatedLine:i+1,generatedColumn:o+1},consumer:new l(r.getArg(e,"map"),t)}}))}l.fromSourceMap=function(e,t){return u.fromSourceMap(e,t)},l.prototype._version=3,l.prototype.__generatedMappings=null,Object.defineProperty(l.prototype,"_generatedMappings",{configurable:!0,enumerable:!0,get:function(){return this.__generatedMappings||this._parseMappings(this._mappings,this.sourceRoot),this.__generatedMappings}}),l.prototype.__originalMappings=null,Object.defineProperty(l.prototype,"_originalMappings",{configurable:!0,enumerable:!0,get:function(){return this.__originalMappings||this._parseMappings(this._mappings,this.sourceRoot),this.__originalMappings}}),l.prototype._charIsMappingSeparator=function(e,t){var n=e.charAt(t);return";"===n||","===n},l.prototype._parseMappings=function(e,t){throw new Error("Subclasses must implement _parseMappings")},l.GENERATED_ORDER=1,l.ORIGINAL_ORDER=2,l.GREATEST_LOWER_BOUND=1,l.LEAST_UPPER_BOUND=2,l.prototype.eachMapping=function(e,t,n){var i,o=t||null;switch(n||l.GENERATED_ORDER){case l.GENERATED_ORDER:i=this._generatedMappings;break;case l.ORIGINAL_ORDER:i=this._originalMappings;break;default:throw new Error("Unknown order of iteration.")}var a=this.sourceRoot;i.map((function(e){var t=null===e.source?null:this._sources.at(e.source);return{source:t=r.computeSourceURL(a,t,this._sourceMapURL),generatedLine:e.generatedLine,generatedColumn:e.generatedColumn,originalLine:e.originalLine,originalColumn:e.originalColumn,name:null===e.name?null:this._names.at(e.name)}}),this).forEach(e,o)},l.prototype.allGeneratedPositionsFor=function(e){var t=r.getArg(e,"line"),n={source:r.getArg(e,"source"),originalLine:t,originalColumn:r.getArg(e,"column",0)};if(n.source=this._findSourceIndex(n.source),n.source<0)return[];var o=[],a=this._findMapping(n,this._originalMappings,"originalLine","originalColumn",r.compareByOriginalPositions,i.LEAST_UPPER_BOUND);if(a>=0){var s=this._originalMappings[a];if(void 0===e.column)for(var l=s.originalLine;s&&s.originalLine===l;)o.push({line:r.getArg(s,"generatedLine",null),column:r.getArg(s,"generatedColumn",null),lastColumn:r.getArg(s,"lastGeneratedColumn",null)}),s=this._originalMappings[++a];else for(var u=s.originalColumn;s&&s.originalLine===t&&s.originalColumn==u;)o.push({line:r.getArg(s,"generatedLine",null),column:r.getArg(s,"generatedColumn",null),lastColumn:r.getArg(s,"lastGeneratedColumn",null)}),s=this._originalMappings[++a]}return o},t.SourceMapConsumer=l,u.prototype=Object.create(l.prototype),u.prototype.consumer=l,u.prototype._findSourceIndex=function(e){var t,n=e;if(null!=this.sourceRoot&&(n=r.relative(this.sourceRoot,n)),this._sources.has(n))return this._sources.indexOf(n);for(t=0;t<this._absoluteSources.length;++t)if(this._absoluteSources[t]==e)return t;return-1},u.fromSourceMap=function(e,t){var n=Object.create(u.prototype),i=n._names=o.fromArray(e._names.toArray(),!0),a=n._sources=o.fromArray(e._sources.toArray(),!0);n.sourceRoot=e._sourceRoot,n.sourcesContent=e._generateSourcesContent(n._sources.toArray(),n.sourceRoot),n.file=e._file,n._sourceMapURL=t,n._absoluteSources=n._sources.toArray().map((function(e){return r.computeSourceURL(n.sourceRoot,e,t)}));for(var l=e._mappings.toArray().slice(),d=n.__generatedMappings=[],p=n.__originalMappings=[],f=0,m=l.length;f<m;f++){var h=l[f],g=new c;g.generatedLine=h.generatedLine,g.generatedColumn=h.generatedColumn,h.source&&(g.source=a.indexOf(h.source),g.originalLine=h.originalLine,g.originalColumn=h.originalColumn,h.name&&(g.name=i.indexOf(h.name)),p.push(g)),d.push(g)}return s(n.__originalMappings,r.compareByOriginalPositions),n},u.prototype._version=3,Object.defineProperty(u.prototype,"sources",{get:function(){return this._absoluteSources.slice()}}),u.prototype._parseMappings=function(e,t){for(var n,i,o,l,u,d=1,p=0,f=0,m=0,h=0,g=0,v=e.length,y=0,b={},S={},x=[],w=[];y<v;)if(";"===e.charAt(y))d++,y++,p=0;else if(","===e.charAt(y))y++;else{for((n=new c).generatedLine=d,l=y;l<v&&!this._charIsMappingSeparator(e,l);l++);if(o=b[i=e.slice(y,l)])y+=i.length;else{for(o=[];y<l;)a.decode(e,y,S),u=S.value,y=S.rest,o.push(u);if(2===o.length)throw new Error("Found a source, but no line and column");if(3===o.length)throw new Error("Found a source and line, but no column");b[i]=o}n.generatedColumn=p+o[0],p=n.generatedColumn,o.length>1&&(n.source=h+o[1],h+=o[1],n.originalLine=f+o[2],f=n.originalLine,n.originalLine+=1,n.originalColumn=m+o[3],m=n.originalColumn,o.length>4&&(n.name=g+o[4],g+=o[4])),w.push(n),"number"==typeof n.originalLine&&x.push(n)}s(w,r.compareByGeneratedPositionsDeflated),this.__generatedMappings=w,s(x,r.compareByOriginalPositions),this.__originalMappings=x},u.prototype._findMapping=function(e,t,n,r,o,a){if(e[n]<=0)throw new TypeError("Line must be greater than or equal to 1, got "+e[n]);if(e[r]<0)throw new TypeError("Column must be greater than or equal to 0, got "+e[r]);return i.search(e,t,o,a)},u.prototype.computeColumnSpans=function(){for(var e=0;e<this._generatedMappings.length;++e){var t=this._generatedMappings[e];if(e+1<this._generatedMappings.length){var n=this._generatedMappings[e+1];if(t.generatedLine===n.generatedLine){t.lastGeneratedColumn=n.generatedColumn-1;continue}}t.lastGeneratedColumn=1/0}},u.prototype.originalPositionFor=function(e){var t={generatedLine:r.getArg(e,"line"),generatedColumn:r.getArg(e,"column")},n=this._findMapping(t,this._generatedMappings,"generatedLine","generatedColumn",r.compareByGeneratedPositionsDeflated,r.getArg(e,"bias",l.GREATEST_LOWER_BOUND));if(n>=0){var i=this._generatedMappings[n];if(i.generatedLine===t.generatedLine){var o=r.getArg(i,"source",null);null!==o&&(o=this._sources.at(o),o=r.computeSourceURL(this.sourceRoot,o,this._sourceMapURL));var a=r.getArg(i,"name",null);return null!==a&&(a=this._names.at(a)),{source:o,line:r.getArg(i,"originalLine",null),column:r.getArg(i,"originalColumn",null),name:a}}}return{source:null,line:null,column:null,name:null}},u.prototype.hasContentsOfAllSources=function(){return!!this.sourcesContent&&(this.sourcesContent.length>=this._sources.size()&&!this.sourcesContent.some((function(e){return null==e})))},u.prototype.sourceContentFor=function(e,t){if(!this.sourcesContent)return null;var n=this._findSourceIndex(e);if(n>=0)return this.sourcesContent[n];var i,o=e;if(null!=this.sourceRoot&&(o=r.relative(this.sourceRoot,o)),null!=this.sourceRoot&&(i=r.urlParse(this.sourceRoot))){var a=o.replace(/^file:\/\//,"");if("file"==i.scheme&&this._sources.has(a))return this.sourcesContent[this._sources.indexOf(a)];if((!i.path||"/"==i.path)&&this._sources.has("/"+o))return this.sourcesContent[this._sources.indexOf("/"+o)]}if(t)return null;throw new Error('"'+o+'" is not in the SourceMap.')},u.prototype.generatedPositionFor=function(e){var t=r.getArg(e,"source");if((t=this._findSourceIndex(t))<0)return{line:null,column:null,lastColumn:null};var n={source:t,originalLine:r.getArg(e,"line"),originalColumn:r.getArg(e,"column")},i=this._findMapping(n,this._originalMappings,"originalLine","originalColumn",r.compareByOriginalPositions,r.getArg(e,"bias",l.GREATEST_LOWER_BOUND));if(i>=0){var o=this._originalMappings[i];if(o.source===n.source)return{line:r.getArg(o,"generatedLine",null),column:r.getArg(o,"generatedColumn",null),lastColumn:r.getArg(o,"lastGeneratedColumn",null)}}return{line:null,column:null,lastColumn:null}},t.BasicSourceMapConsumer=u,d.prototype=Object.create(l.prototype),d.prototype.constructor=l,d.prototype._version=3,Object.defineProperty(d.prototype,"sources",{get:function(){for(var e=[],t=0;t<this._sections.length;t++)for(var n=0;n<this._sections[t].consumer.sources.length;n++)e.push(this._sections[t].consumer.sources[n]);return e}}),d.prototype.originalPositionFor=function(e){var t={generatedLine:r.getArg(e,"line"),generatedColumn:r.getArg(e,"column")},n=i.search(t,this._sections,(function(e,t){var n=e.generatedLine-t.generatedOffset.generatedLine;return n||e.generatedColumn-t.generatedOffset.generatedColumn})),o=this._sections[n];return o?o.consumer.originalPositionFor({line:t.generatedLine-(o.generatedOffset.generatedLine-1),column:t.generatedColumn-(o.generatedOffset.generatedLine===t.generatedLine?o.generatedOffset.generatedColumn-1:0),bias:e.bias}):{source:null,line:null,column:null,name:null}},d.prototype.hasContentsOfAllSources=function(){return this._sections.every((function(e){return e.consumer.hasContentsOfAllSources()}))},d.prototype.sourceContentFor=function(e,t){for(var n=0;n<this._sections.length;n++){var r=this._sections[n].consumer.sourceContentFor(e,!0);if(r)return r}if(t)return null;throw new Error('"'+e+'" is not in the SourceMap.')},d.prototype.generatedPositionFor=function(e){for(var t=0;t<this._sections.length;t++){var n=this._sections[t];if(-1!==n.consumer._findSourceIndex(r.getArg(e,"source"))){var i=n.consumer.generatedPositionFor(e);if(i)return{line:i.line+(n.generatedOffset.generatedLine-1),column:i.column+(n.generatedOffset.generatedLine===i.line?n.generatedOffset.generatedColumn-1:0)}}}return{line:null,column:null}},d.prototype._parseMappings=function(e,t){this.__generatedMappings=[],this.__originalMappings=[];for(var n=0;n<this._sections.length;n++)for(var i=this._sections[n],o=i.consumer._generatedMappings,a=0;a<o.length;a++){var l=o[a],u=i.consumer._sources.at(l.source);u=r.computeSourceURL(i.consumer.sourceRoot,u,this._sourceMapURL),this._sources.add(u),u=this._sources.indexOf(u);var c=null;l.name&&(c=i.consumer._names.at(l.name),this._names.add(c),c=this._names.indexOf(c));var d={source:u,generatedLine:l.generatedLine+(i.generatedOffset.generatedLine-1),generatedColumn:l.generatedColumn+(i.generatedOffset.generatedLine===l.generatedLine?i.generatedOffset.generatedColumn-1:0),originalLine:l.originalLine,originalColumn:l.originalColumn,name:c};this.__generatedMappings.push(d),"number"==typeof d.originalLine&&this.__originalMappings.push(d)}s(this.__generatedMappings,r.compareByGeneratedPositionsDeflated),s(this.__originalMappings,r.compareByOriginalPositions)},t.IndexedSourceMapConsumer=d},dzo0:function(e,t){e.exports={AT_RULE:"at-rule",AT_RULE_BLOCK:"at-rule-block",AT_RULE_BLOCK_SCOPE:"at-rule-block-scope",COMMENT:"comment",NESTED_BLOCK:"nested-block",NESTED_BLOCK_SCOPE:"nested-block-scope",PROPERTY:"property",PROPERTY_BLOCK:"property-block",PROPERTY_NAME:"property-name",PROPERTY_VALUE:"property-value",RAW:"raw",RULE:"rule",RULE_SCOPE:"rule-scope"}},e1rG:function(e,t,n){var r=n("vd7W").TYPE,i=n("4njK").mode,o=r.WhiteSpace,a=r.Comment,s=r.Semicolon;function l(e){return this.Raw(e,i.semicolonIncluded,!0)}e.exports={name:"DeclarationList",structure:{children:[["Declaration"]]},parse:function(){for(var e=this.createList();!this.scanner.eof;)switch(this.scanner.tokenType){case o:case a:case s:this.scanner.next();break;default:e.push(this.parseWithFallback(this.Declaration,l))}return{type:"DeclarationList",loc:this.getLocationFromList(e),children:e}},generate:function(e){this.children(e,(function(e){"Declaration"===e.type&&this.chunk(";")}))}}},eAxx:function(e,t){e.exports={parse:{prelude:function(){return this.createSingleNodeList(this.MediaQueryList())},block:function(){return this.Block(!1)}}}},eIV0:function(e,t,n){var r=n("33yf"),i=n("CxY0"),o=n("GHqe"),a=n("tQxF");function s(e){return o(e)||i.parse("http://"+e).host==e}e.exports=function e(t,n,o){var l,u,c,d,p,f,m=!n;if(0===o.length)return!1;for(n&&!a(t)&&(t="http:"+t),l=n?i.parse(t).host:t,u=n?t:r.resolve(t),f=0;f<o.length;f++)d="!"==(c=o[f])[0],p=c.substring(1),m=d&&n&&s(p)?m&&!e(t,!0,[p]):!d||n||s(p)?d?m&&!0:"all"==c||(n&&"local"==c?m||!1:!(!n||"remote"!=c)||!(!n&&"remote"==c)&&(!n&&"local"==c||(c===l||(c===t||(!(!n||0!==u.indexOf(c))||(!n&&0===u.indexOf(r.resolve(c))||n!=s(p)&&(m&&!0))))))):m&&!e(t,!1,[p]);return m}},eWth:function(e,t,n){var r=n("q8iP"),i=function(e){this.str=e,this.pos=0};i.prototype={charCodeAt:function(e){return e<this.str.length?this.str.charCodeAt(e):0},charCode:function(){return this.charCodeAt(this.pos)},nextCharCode:function(){return this.charCodeAt(this.pos+1)},nextNonWsCode:function(e){return this.charCodeAt(this.findWsEnd(e))},findWsEnd:function(e){for(;e<this.str.length;e++){var t=this.str.charCodeAt(e);if(13!==t&&10!==t&&12!==t&&32!==t&&9!==t)break}return e},substringToPos:function(e){return this.str.substring(this.pos,this.pos=e)},eat:function(e){this.charCode()!==e&&this.error("Expect `"+String.fromCharCode(e)+"`"),this.pos++},peek:function(){return this.pos<this.str.length?this.str.charAt(this.pos++):""},error:function(e){throw new r(e,this.str,this.pos)}},e.exports=i},errG:function(e,t){e.exports={parse:function(){return this.createSingleNodeList(this.Nth(!0))}}},fELk:function(e,t,n){var r=n("VGoB"),i=/^\d+$/,o=["*","all"];function a(e){return{ch:e,cm:e,em:e,ex:e,in:e,mm:e,pc:e,pt:e,px:e,q:e,rem:e,vh:e,vmax:e,vmin:e,vw:e,"%":e}}e.exports={DEFAULT:"off",roundingPrecisionFrom:function(e){return r(a("off"),function(e){if(null==e)return{};if("boolean"==typeof e)return{};if("number"==typeof e&&-1==e)return a("off");if("number"==typeof e)return a(e);if("string"==typeof e&&i.test(e))return a(parseInt(e));if("string"==typeof e&&"off"==e)return a("off");if("object"==typeof e)return e;return e.split(",").reduce((function(e,t){var n=t.split("="),i=n[0],s=parseInt(n[1]);return(isNaN(s)||-1==s)&&(s="off"),o.indexOf(i)>-1?e=r(e,a(s)):e[i]=s,e}),{})}(e))}}},fMw4:function(e,t,n){"use strict";var r=Object.assign||function(e){for(var t,n=1;n<arguments.length;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e};Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e){var t=e.size,n=void 0===t?24:t,i=e.onClick,o=(e.icon,e.className),s=function(e,t){var n={};for(var r in e)0<=t.indexOf(r)||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}(e,["size","onClick","icon","className"]),l=["gridicon","gridicons-phone",o,!1,!1,!1].filter(Boolean).join(" ");return a.default.createElement("svg",r({className:l,height:n,width:n,onClick:i},s,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}),a.default.createElement("g",null,a.default.createElement("path",{d:"M16 2H8c-1.104 0-2 .896-2 2v16c0 1.104.896 2 2 2h8c1.104 0 2-.896 2-2V4c0-1.104-.896-2-2-2zm-3 19h-2v-1h2v1zm3-2H8V5h8v14z"})))};var i,o=n("q1tI"),a=(i=o)&&i.__esModule?i:{default:i};e.exports=t.default},fmF7:function(e,t,n){e.exports={SyntaxError:n("q8iP"),parse:n("tZmI"),generate:n("vI5D"),walk:n("Fm6d")}},"fn/D":function(e,t,n){var r=n("X3zT").Spaces,i=n("Ttul"),o=n("7nlT"),a=/[\s"'][iI]\s*\]/,s=/([\d\w])([iI])\]/g,l=/="([a-zA-Z][a-zA-Z\d\-_]+)"([iI])/g,u=/="([a-zA-Z][a-zA-Z\d\-_]+)"(\s|\])/g,c=/^(?:(?:<!--|-->)\s*)+/,d=/='([a-zA-Z][a-zA-Z\d\-_]+)'([iI])/g,p=/='([a-zA-Z][a-zA-Z\d\-_]+)'(\s|\])/g,f=/[>\+~]/,m=/\s/;function h(e){var t,n,r,o,a=!1,s=!1;for(r=0,o=e.length;r<o;r++){if(n=e[r],t);else if(n==i.SINGLE_QUOTE||n==i.DOUBLE_QUOTE)s=!s;else{if(!(s||n!=i.CLOSE_CURLY_BRACKET&&n!=i.EXCLAMATION&&"<"!=n&&n!=i.SEMICOLON)){a=!0;break}if(!s&&0===r&&f.test(n)){a=!0;break}}t=n==i.BACK_SLASH}return a}function g(e,t){var n,o,l,u,c,d,p,h,g,v,y,b,S,x=[],w=0,k=!1,C=!1,O=a.test(e),_=t&&t.spaces[r.AroundSelectorRelation];for(b=0,S=e.length;b<S;b++){if(o=(n=e[b])==i.NEW_LINE_NIX,l=n==i.NEW_LINE_NIX&&e[b-1]==i.CARRIAGE_RETURN,d=p||h,v=!g&&!u&&0===w&&f.test(n),y=m.test(n),c&&d&&l)x.pop(),x.pop();else if(u&&d&&o)x.pop();else if(u)x.push(n);else if(n!=i.OPEN_SQUARE_BRACKET||d)if(n!=i.CLOSE_SQUARE_BRACKET||d)if(n!=i.OPEN_ROUND_BRACKET||d)if(n!=i.CLOSE_ROUND_BRACKET||d)if(n!=i.SINGLE_QUOTE||d)if(n!=i.DOUBLE_QUOTE||d)if(n==i.SINGLE_QUOTE&&d)x.push(n),p=!1;else if(n==i.DOUBLE_QUOTE&&d)x.push(n),h=!1;else{if(y&&k&&!_)continue;!y&&k&&_?(x.push(i.SPACE),x.push(n)):y&&(g||w>0)&&!d||y&&C&&!d||(l||o)&&(g||w>0)&&d||(v&&C&&!_?(x.pop(),x.push(n)):v&&!C&&_?(x.push(i.SPACE),x.push(n)):y?x.push(i.SPACE):x.push(n))}else x.push(n),h=!0;else x.push(n),p=!0;else x.push(n),w--;else x.push(n),w++;else x.push(n),g=!1;else x.push(n),g=!0;c=u,u=n==i.BACK_SLASH,k=v,C=y}return O?x.join("").replace(s,"$1 $2]"):x.join("")}e.exports=function(e,t,n,r,i){var a,s=[],f=[];function m(e,t){return i.push("HTML comment '"+t+"' at "+o(e[2][0])+". Removing."),""}for(var v=0,y=e.length;v<y;v++){var b=e[v],S=b[1];h(S=S.replace(c,m.bind(null,b)))?i.push("Invalid selector '"+b[1]+"' at "+o(b[2][0])+". Ignoring."):(S=g(S,r),S=-1==(a=S).indexOf("'")&&-1==a.indexOf('"')?a:a.replace(d,"=$1 $2").replace(p,"=$1$2").replace(l,"=$1 $2").replace(u,"=$1$2"),n&&S.indexOf("nav")>0&&(S=S.replace(/\+nav(\S|$)/,"+ nav$1")),t&&S.indexOf("*+html ")>-1||t&&S.indexOf("*:first-child+html ")>-1||(S.indexOf("*")>-1&&(S=S.replace(/\*([:#\.\[])/g,"$1").replace(/^(\:first\-child)?\+html/,"*$1+html")),f.indexOf(S)>-1||(b[1]=S,f.push(S),s.push(b))))}return 1==s.length&&0===s[0][1].length&&(i.push("Empty selector '"+s[0][1]+"' at "+o(s[0][2][0])+". Ignoring."),s=[]),s}},gCdt:function(e,t,n){var r=n("vd7W").TYPE,i=r.LeftSquareBracket,o=r.RightSquareBracket;e.exports={name:"Brackets",structure:{children:[[]]},parse:function(e,t){var n,r=this.scanner.tokenStart;return this.eat(i),n=e.call(this,t),this.scanner.eof||this.eat(o),{type:"Brackets",loc:this.getLocation(r,this.scanner.tokenStart),children:n}},generate:function(e){this.chunk("["),this.children(e),this.chunk("]")}}},gOT2:function(e){e.exports=JSON.parse('{"atrules":{"charset":{"prelude":"<string>"},"font-face":{"descriptors":{"unicode-range":{"comment":"replaces <unicode-range>, an old production name","syntax":"<urange>#"}}}},"properties":{"-moz-background-clip":{"comment":"deprecated syntax in old Firefox, https://developer.mozilla.org/en/docs/Web/CSS/background-clip","syntax":"padding | border"},"-moz-border-radius-bottomleft":{"comment":"https://developer.mozilla.org/en-US/docs/Web/CSS/border-bottom-left-radius","syntax":"<\'border-bottom-left-radius\'>"},"-moz-border-radius-bottomright":{"comment":"https://developer.mozilla.org/en-US/docs/Web/CSS/border-bottom-right-radius","syntax":"<\'border-bottom-right-radius\'>"},"-moz-border-radius-topleft":{"comment":"https://developer.mozilla.org/en-US/docs/Web/CSS/border-top-left-radius","syntax":"<\'border-top-left-radius\'>"},"-moz-border-radius-topright":{"comment":"https://developer.mozilla.org/en-US/docs/Web/CSS/border-bottom-right-radius","syntax":"<\'border-bottom-right-radius\'>"},"-moz-control-character-visibility":{"comment":"firefox specific keywords, https://bugzilla.mozilla.org/show_bug.cgi?id=947588","syntax":"visible | hidden"},"-moz-osx-font-smoothing":{"comment":"misssed old syntax https://developer.mozilla.org/en-US/docs/Web/CSS/font-smooth","syntax":"auto | grayscale"},"-moz-user-select":{"comment":"https://developer.mozilla.org/en-US/docs/Web/CSS/user-select","syntax":"none | text | all | -moz-none"},"-ms-flex-align":{"comment":"misssed old syntax implemented in IE, https://www.w3.org/TR/2012/WD-css3-flexbox-20120322/#flex-align","syntax":"start | end | center | baseline | stretch"},"-ms-flex-item-align":{"comment":"misssed old syntax implemented in IE, https://www.w3.org/TR/2012/WD-css3-flexbox-20120322/#flex-align","syntax":"auto | start | end | center | baseline | stretch"},"-ms-flex-line-pack":{"comment":"misssed old syntax implemented in IE, https://www.w3.org/TR/2012/WD-css3-flexbox-20120322/#flex-line-pack","syntax":"start | end | center | justify | distribute | stretch"},"-ms-flex-negative":{"comment":"misssed old syntax implemented in IE; TODO: find references for comfirmation","syntax":"<\'flex-shrink\'>"},"-ms-flex-pack":{"comment":"misssed old syntax implemented in IE, https://www.w3.org/TR/2012/WD-css3-flexbox-20120322/#flex-pack","syntax":"start | end | center | justify | distribute"},"-ms-flex-order":{"comment":"misssed old syntax implemented in IE; https://msdn.microsoft.com/en-us/library/jj127303(v=vs.85).aspx","syntax":"<integer>"},"-ms-flex-positive":{"comment":"misssed old syntax implemented in IE; TODO: find references for comfirmation","syntax":"<\'flex-grow\'>"},"-ms-flex-preferred-size":{"comment":"misssed old syntax implemented in IE; TODO: find references for comfirmation","syntax":"<\'flex-basis\'>"},"-ms-interpolation-mode":{"comment":"https://msdn.microsoft.com/en-us/library/ff521095(v=vs.85).aspx","syntax":"nearest-neighbor | bicubic"},"-ms-grid-column-align":{"comment":"add this property first since it uses as fallback for flexbox, https://msdn.microsoft.com/en-us/library/windows/apps/hh466338.aspx","syntax":"start | end | center | stretch"},"-ms-grid-row-align":{"comment":"add this property first since it uses as fallback for flexbox, https://msdn.microsoft.com/en-us/library/windows/apps/hh466348.aspx","syntax":"start | end | center | stretch"},"-ms-hyphenate-limit-last":{"comment":"misssed old syntax implemented in IE; https://www.w3.org/TR/css-text-4/#hyphenate-line-limits","syntax":"none | always | column | page | spread"},"-webkit-appearance":{"comment":"webkit specific keywords","references":["http://css-infos.net/property/-webkit-appearance"],"syntax":"none | button | button-bevel | caps-lock-indicator | caret | checkbox | default-button | inner-spin-button | listbox | listitem | media-controls-background | media-controls-fullscreen-background | media-current-time-display | media-enter-fullscreen-button | media-exit-fullscreen-button | media-fullscreen-button | media-mute-button | media-overlay-play-button | media-play-button | media-seek-back-button | media-seek-forward-button | media-slider | media-sliderthumb | media-time-remaining-display | media-toggle-closed-captions-button | media-volume-slider | media-volume-slider-container | media-volume-sliderthumb | menulist | menulist-button | menulist-text | menulist-textfield | meter | progress-bar | progress-bar-value | push-button | radio | scrollbarbutton-down | scrollbarbutton-left | scrollbarbutton-right | scrollbarbutton-up | scrollbargripper-horizontal | scrollbargripper-vertical | scrollbarthumb-horizontal | scrollbarthumb-vertical | scrollbartrack-horizontal | scrollbartrack-vertical | searchfield | searchfield-cancel-button | searchfield-decoration | searchfield-results-button | searchfield-results-decoration | slider-horizontal | slider-vertical | sliderthumb-horizontal | sliderthumb-vertical | square-button | textarea | textfield | -apple-pay-button"},"-webkit-background-clip":{"comment":"https://developer.mozilla.org/en/docs/Web/CSS/background-clip","syntax":"[ <box> | border | padding | content | text ]#"},"-webkit-column-break-after":{"comment":"added, http://help.dottoro.com/lcrthhhv.php","syntax":"always | auto | avoid"},"-webkit-column-break-before":{"comment":"added, http://help.dottoro.com/lcxquvkf.php","syntax":"always | auto | avoid"},"-webkit-column-break-inside":{"comment":"added, http://help.dottoro.com/lclhnthl.php","syntax":"always | auto | avoid"},"-webkit-font-smoothing":{"comment":"https://developer.mozilla.org/en-US/docs/Web/CSS/font-smooth","syntax":"auto | none | antialiased | subpixel-antialiased"},"-webkit-mask-box-image":{"comment":"missed; https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-mask-box-image","syntax":"[ <url> | <gradient> | none ] [ <length-percentage>{4} <-webkit-mask-box-repeat>{2} ]?"},"-webkit-print-color-adjust":{"comment":"missed","references":["https://developer.mozilla.org/en/docs/Web/CSS/-webkit-print-color-adjust"],"syntax":"economy | exact"},"-webkit-text-security":{"comment":"missed; http://help.dottoro.com/lcbkewgt.php","syntax":"none | circle | disc | square"},"-webkit-user-drag":{"comment":"missed; http://help.dottoro.com/lcbixvwm.php","syntax":"none | element | auto"},"-webkit-user-select":{"comment":"auto is supported by old webkit, https://developer.mozilla.org/en-US/docs/Web/CSS/user-select","syntax":"auto | none | text | all"},"alignment-baseline":{"comment":"added SVG property","references":["https://www.w3.org/TR/SVG/text.html#AlignmentBaselineProperty"],"syntax":"auto | baseline | before-edge | text-before-edge | middle | central | after-edge | text-after-edge | ideographic | alphabetic | hanging | mathematical"},"baseline-shift":{"comment":"added SVG property","references":["https://www.w3.org/TR/SVG/text.html#BaselineShiftProperty"],"syntax":"baseline | sub | super | <svg-length>"},"behavior":{"comment":"added old IE property https://msdn.microsoft.com/en-us/library/ms530723(v=vs.85).aspx","syntax":"<url>+"},"clip-rule":{"comment":"added SVG property","references":["https://www.w3.org/TR/SVG/masking.html#ClipRuleProperty"],"syntax":"nonzero | evenodd"},"cue":{"comment":"https://www.w3.org/TR/css3-speech/#property-index","syntax":"<\'cue-before\'> <\'cue-after\'>?"},"cue-after":{"comment":"https://www.w3.org/TR/css3-speech/#property-index","syntax":"<url> <decibel>? | none"},"cue-before":{"comment":"https://www.w3.org/TR/css3-speech/#property-index","syntax":"<url> <decibel>? | none"},"cursor":{"comment":"added legacy keywords: hand, -webkit-grab. -webkit-grabbing, -webkit-zoom-in, -webkit-zoom-out, -moz-grab, -moz-grabbing, -moz-zoom-in, -moz-zoom-out","references":["https://www.sitepoint.com/css3-cursor-styles/"],"syntax":"[ [ <url> [ <x> <y> ]? , ]* [ auto | default | none | context-menu | help | pointer | progress | wait | cell | crosshair | text | vertical-text | alias | copy | move | no-drop | not-allowed | e-resize | n-resize | ne-resize | nw-resize | s-resize | se-resize | sw-resize | w-resize | ew-resize | ns-resize | nesw-resize | nwse-resize | col-resize | row-resize | all-scroll | zoom-in | zoom-out | grab | grabbing | hand | -webkit-grab | -webkit-grabbing | -webkit-zoom-in | -webkit-zoom-out | -moz-grab | -moz-grabbing | -moz-zoom-in | -moz-zoom-out ] ]"},"display":{"comment":"extended with -ms-flexbox","syntax":"| <-non-standard-display>"},"position":{"comment":"extended with -webkit-sticky","syntax":"| -webkit-sticky"},"dominant-baseline":{"comment":"added SVG property","references":["https://www.w3.org/TR/SVG/text.html#DominantBaselineProperty"],"syntax":"auto | use-script | no-change | reset-size | ideographic | alphabetic | hanging | mathematical | central | middle | text-after-edge | text-before-edge"},"image-rendering":{"comment":"extended with <-non-standard-image-rendering>, added SVG keywords optimizeSpeed and optimizeQuality","references":["https://developer.mozilla.org/en/docs/Web/CSS/image-rendering","https://www.w3.org/TR/SVG/painting.html#ImageRenderingProperty"],"syntax":"| optimizeSpeed | optimizeQuality | <-non-standard-image-rendering>"},"fill":{"comment":"added SVG property","references":["https://www.w3.org/TR/SVG/painting.html#FillProperty"],"syntax":"<paint>"},"fill-opacity":{"comment":"added SVG property","references":["https://www.w3.org/TR/SVG/painting.html#FillProperty"],"syntax":"<number-zero-one>"},"fill-rule":{"comment":"added SVG property","references":["https://www.w3.org/TR/SVG/painting.html#FillProperty"],"syntax":"nonzero | evenodd"},"filter":{"comment":"extend with IE legacy syntaxes","syntax":"| <-ms-filter-function-list>"},"glyph-orientation-horizontal":{"comment":"added SVG property","references":["https://www.w3.org/TR/SVG/text.html#GlyphOrientationHorizontalProperty"],"syntax":"<angle>"},"glyph-orientation-vertical":{"comment":"added SVG property","references":["https://www.w3.org/TR/SVG/text.html#GlyphOrientationVerticalProperty"],"syntax":"<angle>"},"kerning":{"comment":"added SVG property","references":["https://www.w3.org/TR/SVG/text.html#KerningProperty"],"syntax":"auto | <svg-length>"},"letter-spacing":{"comment":"fix syntax <length> -> <length-percentage>","references":["https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/letter-spacing"],"syntax":"normal | <length-percentage>"},"marker":{"comment":"added SVG property","references":["https://www.w3.org/TR/SVG/painting.html#MarkerProperties"],"syntax":"none | <url>"},"marker-end":{"comment":"added SVG property","references":["https://www.w3.org/TR/SVG/painting.html#MarkerProperties"],"syntax":"none | <url>"},"marker-mid":{"comment":"added SVG property","references":["https://www.w3.org/TR/SVG/painting.html#MarkerProperties"],"syntax":"none | <url>"},"marker-start":{"comment":"added SVG property","references":["https://www.w3.org/TR/SVG/painting.html#MarkerProperties"],"syntax":"none | <url>"},"max-width":{"comment":"fix auto -> none (https://github.com/mdn/data/pull/431); extend by non-standard width keywords https://developer.mozilla.org/en-US/docs/Web/CSS/max-width","syntax":"none | <length-percentage> | min-content | max-content | fit-content(<length-percentage>) | <-non-standard-width>"},"width":{"comment":"per spec fit-content should be a function, however browsers are supporting it as a keyword (https://github.com/csstree/stylelint-validator/issues/29)","syntax":"| fit-content | -moz-fit-content | -webkit-fit-content"},"min-width":{"comment":"extend by non-standard width keywords https://developer.mozilla.org/en-US/docs/Web/CSS/width","syntax":"auto | <length-percentage> | min-content | max-content | fit-content(<length-percentage>) | <-non-standard-width>"},"overflow":{"comment":"extend by vendor keywords https://developer.mozilla.org/en-US/docs/Web/CSS/overflow","syntax":"| <-non-standard-overflow>"},"pause":{"comment":"https://www.w3.org/TR/css3-speech/#property-index","syntax":"<\'pause-before\'> <\'pause-after\'>?"},"pause-after":{"comment":"https://www.w3.org/TR/css3-speech/#property-index","syntax":"<time> | none | x-weak | weak | medium | strong | x-strong"},"pause-before":{"comment":"https://www.w3.org/TR/css3-speech/#property-index","syntax":"<time> | none | x-weak | weak | medium | strong | x-strong"},"rest":{"comment":"https://www.w3.org/TR/css3-speech/#property-index","syntax":"<\'rest-before\'> <\'rest-after\'>?"},"rest-after":{"comment":"https://www.w3.org/TR/css3-speech/#property-index","syntax":"<time> | none | x-weak | weak | medium | strong | x-strong"},"rest-before":{"comment":"https://www.w3.org/TR/css3-speech/#property-index","syntax":"<time> | none | x-weak | weak | medium | strong | x-strong"},"shape-rendering":{"comment":"added SVG property","references":["https://www.w3.org/TR/SVG/painting.html#ShapeRenderingPropert"],"syntax":"auto | optimizeSpeed | crispEdges | geometricPrecision"},"src":{"comment":"added @font-face\'s src property https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/src","syntax":"[ <url> [ format( <string># ) ]? | local( <family-name> ) ]#"},"speak":{"comment":"https://www.w3.org/TR/css3-speech/#property-index","syntax":"auto | none | normal"},"speak-as":{"comment":"https://www.w3.org/TR/css3-speech/#property-index","syntax":"normal | spell-out || digits || [ literal-punctuation | no-punctuation ]"},"stroke":{"comment":"added SVG property","references":["https://www.w3.org/TR/SVG/painting.html#StrokeProperties"],"syntax":"<paint>"},"stroke-dasharray":{"comment":"added SVG property; a list of comma and/or white space separated <length>s and <percentage>s","references":["https://www.w3.org/TR/SVG/painting.html#StrokeProperties"],"syntax":"none | [ <svg-length>+ ]#"},"stroke-dashoffset":{"comment":"added SVG property","references":["https://www.w3.org/TR/SVG/painting.html#StrokeProperties"],"syntax":"<svg-length>"},"stroke-linecap":{"comment":"added SVG property","references":["https://www.w3.org/TR/SVG/painting.html#StrokeProperties"],"syntax":"butt | round | square"},"stroke-linejoin":{"comment":"added SVG property","references":["https://www.w3.org/TR/SVG/painting.html#StrokeProperties"],"syntax":"miter | round | bevel"},"stroke-miterlimit":{"comment":"added SVG property (<miterlimit> = <number-one-or-greater>) ","references":["https://www.w3.org/TR/SVG/painting.html#StrokeProperties"],"syntax":"<number-one-or-greater>"},"stroke-opacity":{"comment":"added SVG property","references":["https://www.w3.org/TR/SVG/painting.html#StrokeProperties"],"syntax":"<number-zero-one>"},"stroke-width":{"comment":"added SVG property","references":["https://www.w3.org/TR/SVG/painting.html#StrokeProperties"],"syntax":"<svg-length>"},"text-anchor":{"comment":"added SVG property","references":["https://www.w3.org/TR/SVG/text.html#TextAlignmentProperties"],"syntax":"start | middle | end"},"unicode-bidi":{"comment":"added prefixed keywords https://developer.mozilla.org/en-US/docs/Web/CSS/unicode-bidi","syntax":"| -moz-isolate | -moz-isolate-override | -moz-plaintext | -webkit-isolate | -webkit-isolate-override | -webkit-plaintext"},"unicode-range":{"comment":"added missed property https://developer.mozilla.org/en-US/docs/Web/CSS/%40font-face/unicode-range","syntax":"<urange>#"},"voice-balance":{"comment":"https://www.w3.org/TR/css3-speech/#property-index","syntax":"<number> | left | center | right | leftwards | rightwards"},"voice-duration":{"comment":"https://www.w3.org/TR/css3-speech/#property-index","syntax":"auto | <time>"},"voice-family":{"comment":"<name> -> <family-name>, https://www.w3.org/TR/css3-speech/#property-index","syntax":"[ [ <family-name> | <generic-voice> ] , ]* [ <family-name> | <generic-voice> ] | preserve"},"voice-pitch":{"comment":"https://www.w3.org/TR/css3-speech/#property-index","syntax":"<frequency> && absolute | [ [ x-low | low | medium | high | x-high ] || [ <frequency> | <semitones> | <percentage> ] ]"},"voice-range":{"comment":"https://www.w3.org/TR/css3-speech/#property-index","syntax":"<frequency> && absolute | [ [ x-low | low | medium | high | x-high ] || [ <frequency> | <semitones> | <percentage> ] ]"},"voice-rate":{"comment":"https://www.w3.org/TR/css3-speech/#property-index","syntax":"[ normal | x-slow | slow | medium | fast | x-fast ] || <percentage>"},"voice-stress":{"comment":"https://www.w3.org/TR/css3-speech/#property-index","syntax":"normal | strong | moderate | none | reduced"},"voice-volume":{"comment":"https://www.w3.org/TR/css3-speech/#property-index","syntax":"silent | [ [ x-soft | soft | medium | loud | x-loud ] || <decibel> ]"},"writing-mode":{"comment":"extend with SVG keywords","syntax":"| <svg-writing-mode>"}},"syntaxes":{"-legacy-gradient":{"comment":"added collection of legacy gradient syntaxes","syntax":"<-webkit-gradient()> | <-legacy-linear-gradient> | <-legacy-repeating-linear-gradient> | <-legacy-radial-gradient> | <-legacy-repeating-radial-gradient>"},"-legacy-linear-gradient":{"comment":"like standard syntax but w/o `to` keyword https://developer.mozilla.org/en-US/docs/Web/CSS/linear-gradient","syntax":"-moz-linear-gradient( <-legacy-linear-gradient-arguments> ) | -webkit-linear-gradient( <-legacy-linear-gradient-arguments> ) | -o-linear-gradient( <-legacy-linear-gradient-arguments> )"},"-legacy-repeating-linear-gradient":{"comment":"like standard syntax but w/o `to` keyword https://developer.mozilla.org/en-US/docs/Web/CSS/linear-gradient","syntax":"-moz-repeating-linear-gradient( <-legacy-linear-gradient-arguments> ) | -webkit-repeating-linear-gradient( <-legacy-linear-gradient-arguments> ) | -o-repeating-linear-gradient( <-legacy-linear-gradient-arguments> )"},"-legacy-linear-gradient-arguments":{"comment":"like standard syntax but w/o `to` keyword https://developer.mozilla.org/en-US/docs/Web/CSS/linear-gradient","syntax":"[ <angle> | <side-or-corner> ]? , <color-stop-list>"},"-legacy-radial-gradient":{"comment":"deprecated syntax that implemented by some browsers https://www.w3.org/TR/2011/WD-css3-images-20110908/#radial-gradients","syntax":"-moz-radial-gradient( <-legacy-radial-gradient-arguments> ) | -webkit-radial-gradient( <-legacy-radial-gradient-arguments> ) | -o-radial-gradient( <-legacy-radial-gradient-arguments> )"},"-legacy-repeating-radial-gradient":{"comment":"deprecated syntax that implemented by some browsers https://www.w3.org/TR/2011/WD-css3-images-20110908/#radial-gradients","syntax":"-moz-repeating-radial-gradient( <-legacy-radial-gradient-arguments> ) | -webkit-repeating-radial-gradient( <-legacy-radial-gradient-arguments> ) | -o-repeating-radial-gradient( <-legacy-radial-gradient-arguments> )"},"-legacy-radial-gradient-arguments":{"comment":"deprecated syntax that implemented by some browsers https://www.w3.org/TR/2011/WD-css3-images-20110908/#radial-gradients","syntax":"[ <position> , ]? [ [ [ <-legacy-radial-gradient-shape> || <-legacy-radial-gradient-size> ] | [ <length> | <percentage> ]{2} ] , ]? <color-stop-list>"},"-legacy-radial-gradient-size":{"comment":"before a standard it contains 2 extra keywords (`contain` and `cover`) https://www.w3.org/TR/2011/WD-css3-images-20110908/#ltsize","syntax":"closest-side | closest-corner | farthest-side | farthest-corner | contain | cover"},"-legacy-radial-gradient-shape":{"comment":"define to double sure it doesn\'t extends in future https://www.w3.org/TR/2011/WD-css3-images-20110908/#ltshape","syntax":"circle | ellipse"},"-non-standard-font":{"comment":"non standard fonts","references":["https://webkit.org/blog/3709/using-the-system-font-in-web-content/"],"syntax":"-apple-system-body | -apple-system-headline | -apple-system-subheadline | -apple-system-caption1 | -apple-system-caption2 | -apple-system-footnote | -apple-system-short-body | -apple-system-short-headline | -apple-system-short-subheadline | -apple-system-short-caption1 | -apple-system-short-footnote | -apple-system-tall-body"},"-non-standard-color":{"comment":"non standard colors","references":["http://cssdot.ru/%D0%A1%D0%BF%D1%80%D0%B0%D0%B2%D0%BE%D1%87%D0%BD%D0%B8%D0%BA_CSS/color-i305.html","https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#Mozilla_Color_Preference_Extensions"],"syntax":"-moz-ButtonDefault | -moz-ButtonHoverFace | -moz-ButtonHoverText | -moz-CellHighlight | -moz-CellHighlightText | -moz-Combobox | -moz-ComboboxText | -moz-Dialog | -moz-DialogText | -moz-dragtargetzone | -moz-EvenTreeRow | -moz-Field | -moz-FieldText | -moz-html-CellHighlight | -moz-html-CellHighlightText | -moz-mac-accentdarkestshadow | -moz-mac-accentdarkshadow | -moz-mac-accentface | -moz-mac-accentlightesthighlight | -moz-mac-accentlightshadow | -moz-mac-accentregularhighlight | -moz-mac-accentregularshadow | -moz-mac-chrome-active | -moz-mac-chrome-inactive | -moz-mac-focusring | -moz-mac-menuselect | -moz-mac-menushadow | -moz-mac-menutextselect | -moz-MenuHover | -moz-MenuHoverText | -moz-MenuBarText | -moz-MenuBarHoverText | -moz-nativehyperlinktext | -moz-OddTreeRow | -moz-win-communicationstext | -moz-win-mediatext | -moz-activehyperlinktext | -moz-default-background-color | -moz-default-color | -moz-hyperlinktext | -moz-visitedhyperlinktext | -webkit-activelink | -webkit-focus-ring-color | -webkit-link | -webkit-text"},"-non-standard-image-rendering":{"comment":"non-standard keywords http://phrogz.net/tmp/canvas_image_zoom.html","syntax":"optimize-contrast | -moz-crisp-edges | -o-crisp-edges | -webkit-optimize-contrast"},"-non-standard-overflow":{"comment":"non-standard keywords https://developer.mozilla.org/en-US/docs/Web/CSS/overflow","syntax":"-moz-scrollbars-none | -moz-scrollbars-horizontal | -moz-scrollbars-vertical | -moz-hidden-unscrollable"},"-non-standard-width":{"comment":"non-standard keywords https://developer.mozilla.org/en-US/docs/Web/CSS/width","syntax":"fill-available | min-intrinsic | intrinsic | -moz-available | -moz-fit-content | -moz-min-content | -moz-max-content | -webkit-min-content | -webkit-max-content"},"-webkit-gradient()":{"comment":"first Apple proposal gradient syntax https://webkit.org/blog/175/introducing-css-gradients/ - TODO: simplify when after match algorithm improvement ( [, point, radius | , point] -> [, radius]? , point )","syntax":"-webkit-gradient( <-webkit-gradient-type>, <-webkit-gradient-point> [, <-webkit-gradient-point> | , <-webkit-gradient-radius>, <-webkit-gradient-point> ] [, <-webkit-gradient-radius>]? [, <-webkit-gradient-color-stop>]* )"},"-webkit-gradient-color-stop":{"comment":"first Apple proposal gradient syntax https://webkit.org/blog/175/introducing-css-gradients/","syntax":"from( <color> ) | color-stop( [ <number-zero-one> | <percentage> ] , <color> ) | to( <color> )"},"-webkit-gradient-point":{"comment":"first Apple proposal gradient syntax https://webkit.org/blog/175/introducing-css-gradients/","syntax":"[ left | center | right | <length-percentage> ] [ top | center | bottom | <length-percentage> ]"},"-webkit-gradient-radius":{"comment":"first Apple proposal gradient syntax https://webkit.org/blog/175/introducing-css-gradients/","syntax":"<length> | <percentage>"},"-webkit-gradient-type":{"comment":"first Apple proposal gradient syntax https://webkit.org/blog/175/introducing-css-gradients/","syntax":"linear | radial"},"-webkit-mask-box-repeat":{"comment":"missed; https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-mask-box-image","syntax":"repeat | stretch | round"},"-webkit-mask-clip-style":{"comment":"missed; there is no enough information about `-webkit-mask-clip` property, but looks like all those keywords are working","syntax":"border | border-box | padding | padding-box | content | content-box | text"},"-ms-filter-function-list":{"comment":"https://developer.mozilla.org/en-US/docs/Web/CSS/-ms-filter","syntax":"<-ms-filter-function>+"},"-ms-filter-function":{"comment":"https://developer.mozilla.org/en-US/docs/Web/CSS/-ms-filter","syntax":"<-ms-filter-function-progid> | <-ms-filter-function-legacy>"},"-ms-filter-function-progid":{"comment":"https://developer.mozilla.org/en-US/docs/Web/CSS/-ms-filter","syntax":"\'progid:\' [ <ident-token> \'.\' ]* [ <ident-token> | <function-token> <any-value>? ) ]"},"-ms-filter-function-legacy":{"comment":"https://developer.mozilla.org/en-US/docs/Web/CSS/-ms-filter","syntax":"<ident-token> | <function-token> <any-value>? )"},"-ms-filter":{"syntax":"<string>"},"age":{"comment":"https://www.w3.org/TR/css3-speech/#voice-family","syntax":"child | young | old"},"attr-name":{"syntax":"<wq-name>"},"attr-fallback":{"syntax":"<any-value>"},"border-radius":{"comment":"missed, https://drafts.csswg.org/css-backgrounds-3/#the-border-radius","syntax":"<length-percentage>{1,2}"},"bottom":{"comment":"missed; not sure we should add it, but no others except `shape` is using it so it\'s ok for now; https://drafts.fxtf.org/css-masking-1/#funcdef-clip-rect","syntax":"<length> | auto"},"content-list":{"comment":"missed -> https://drafts.csswg.org/css-content/#typedef-content-list (document-url, <target> and leader() is omitted util stabilization)","syntax":"[ <string> | contents | <image> | <quote> | <target> | <leader()> | <attr()> | counter( <ident>, <\'list-style-type\'>? ) ]+"},"element()":{"comment":"https://drafts.csswg.org/css-gcpm/#element-syntax & https://drafts.csswg.org/css-images-4/#element-notation","syntax":"element( <custom-ident> , [ first | start | last | first-except ]? ) | element( <id-selector> )"},"generic-voice":{"comment":"https://www.w3.org/TR/css3-speech/#voice-family","syntax":"[ <age>? <gender> <integer>? ]"},"gender":{"comment":"https://www.w3.org/TR/css3-speech/#voice-family","syntax":"male | female | neutral"},"generic-family":{"comment":"added -apple-system","references":["https://webkit.org/blog/3709/using-the-system-font-in-web-content/"],"syntax":"| -apple-system"},"gradient":{"comment":"added legacy syntaxes support","syntax":"| <-legacy-gradient>"},"left":{"comment":"missed; not sure we should add it, but no others except `shape` is using it so it\'s ok for now; https://drafts.fxtf.org/css-masking-1/#funcdef-clip-rect","syntax":"<length> | auto"},"mask-image":{"comment":"missed; https://drafts.fxtf.org/css-masking-1/#the-mask-image","syntax":"<mask-reference>#"},"name-repeat":{"comment":"missed, and looks like obsolete, keep it as is since other property syntaxes should be changed too; https://www.w3.org/TR/2015/WD-css-grid-1-20150917/#typedef-name-repeat","syntax":"repeat( [ <positive-integer> | auto-fill ], <line-names>+)"},"named-color":{"comment":"added non standard color names","syntax":"| <-non-standard-color>"},"paint":{"comment":"used by SVG https://www.w3.org/TR/SVG/painting.html#SpecifyingPaint","syntax":"none | <color> | <url> [ none | <color> ]? | context-fill | context-stroke"},"page-size":{"comment":"https://www.w3.org/TR/css-page-3/#typedef-page-size-page-size","syntax":"A5 | A4 | A3 | B5 | B4 | JIS-B5 | JIS-B4 | letter | legal | ledger"},"ratio":{"comment":"missed, https://drafts.csswg.org/mediaqueries-4/#typedef-ratio","syntax":"<integer> / <integer>"},"right":{"comment":"missed; not sure we should add it, but no others except `shape` is using it so it\'s ok for now; https://drafts.fxtf.org/css-masking-1/#funcdef-clip-rect","syntax":"<length> | auto"},"shape":{"comment":"missed spaces in function body and add backwards compatible syntax","syntax":"rect( <top>, <right>, <bottom>, <left> ) | rect( <top> <right> <bottom> <left> )"},"svg-length":{"comment":"All coordinates and lengths in SVG can be specified with or without a unit identifier","references":["https://www.w3.org/TR/SVG11/coords.html#Units"],"syntax":"<percentage> | <length> | <number>"},"svg-writing-mode":{"comment":"SVG specific keywords (deprecated for CSS)","references":["https://developer.mozilla.org/en/docs/Web/CSS/writing-mode","https://www.w3.org/TR/SVG/text.html#WritingModeProperty"],"syntax":"lr-tb | rl-tb | tb-rl | lr | rl | tb"},"top":{"comment":"missed; not sure we should add it, but no others except `shape` is using it so it\'s ok for now; https://drafts.fxtf.org/css-masking-1/#funcdef-clip-rect","syntax":"<length> | auto"},"track-group":{"comment":"used by old grid-columns and grid-rows syntax v0","syntax":"\'(\' [ <string>* <track-minmax> <string>* ]+ \')\' [ \'[\' <positive-integer> \']\' ]? | <track-minmax>"},"track-list-v0":{"comment":"used by old grid-columns and grid-rows syntax v0","syntax":"[ <string>* <track-group> <string>* ]+ | none"},"track-minmax":{"comment":"used by old grid-columns and grid-rows syntax v0","syntax":"minmax( <track-breadth> , <track-breadth> ) | auto | <track-breadth> | fit-content"},"x":{"comment":"missed; not sure we should add it, but no others except `cursor` is using it so it\'s ok for now; https://drafts.csswg.org/css-ui-3/#cursor","syntax":"<number>"},"y":{"comment":"missed; not sure we should add it, but no others except `cursor` is using so it\'s ok for now; https://drafts.csswg.org/css-ui-3/#cursor","syntax":"<number>"},"declaration":{"comment":"missed, restored by https://drafts.csswg.org/css-syntax","syntax":"<ident-token> : <declaration-value>? [ \'!\' important ]?"},"declaration-list":{"comment":"missed, restored by https://drafts.csswg.org/css-syntax","syntax":"[ <declaration>? \';\' ]* <declaration>?"},"url":{"comment":"https://drafts.csswg.org/css-values-4/#urls","syntax":"url( <string> <url-modifier>* ) | <url-token>"},"url-modifier":{"comment":"https://drafts.csswg.org/css-values-4/#typedef-url-modifier","syntax":"<ident> | <function-token> <any-value> )"},"number-zero-one":{"syntax":"<number [0,1]>"},"number-one-or-greater":{"syntax":"<number [1,∞]>"},"positive-integer":{"syntax":"<integer [0,∞]>"},"-non-standard-display":{"syntax":"-ms-inline-flexbox | -ms-grid | -ms-inline-grid | -webkit-flex | -webkit-inline-flex | -webkit-box | -webkit-inline-box | -moz-inline-stack | -moz-box | -moz-inline-box"}}}')},"gT/2":function(e,t){e.exports=function(e){return void 0===e||!!e}},gTGj:function(e,t,n){var r=n("vd7W").TYPE.Ident;e.exports={name:"ClassSelector",structure:{name:String},parse:function(){return this.scanner.isDelim(46)||this.error("Full stop is expected"),this.scanner.next(),{type:"ClassSelector",loc:this.getLocation(this.scanner.tokenStart-1,this.scanner.tokenEnd),name:this.consume(r)}},generate:function(e){this.chunk("."),this.chunk(e.name)}}},ge3I:function(e,t,n){var r=n("vd7W").TYPE.Hash;e.exports={name:"Hash",structure:{value:String},parse:function(){var e=this.scanner.tokenStart;return this.eat(r),{type:"Hash",loc:this.getLocation(e,this.scanner.tokenStart),value:this.scanner.substrToCursor(e+1)}},generate:function(e){this.chunk("#"),this.chunk(e.value)}}},gvDn:function(e,t){var n={"*":{colors:{opacity:!0},properties:{backgroundClipMerging:!0,backgroundOriginMerging:!0,backgroundSizeMerging:!0,colors:!0,ieBangHack:!1,ieFilters:!1,iePrefixHack:!1,ieSuffixHack:!1,merging:!0,shorterLengthUnits:!1,spaceAfterClosingBrace:!0,urlQuotes:!1,zeroUnits:!0},selectors:{adjacentSpace:!1,ie7Hack:!1,mergeablePseudoClasses:[":active",":after",":before",":empty",":checked",":disabled",":empty",":enabled",":first-child",":first-letter",":first-line",":first-of-type",":focus",":hover",":lang",":last-child",":last-of-type",":link",":not",":nth-child",":nth-last-child",":nth-last-of-type",":nth-of-type",":only-child",":only-of-type",":root",":target",":visited"],mergeablePseudoElements:["::after","::before","::first-letter","::first-line"],mergeLimit:8191,multiplePseudoMerging:!0},units:{ch:!0,in:!0,pc:!0,pt:!0,rem:!0,vh:!0,vm:!0,vmax:!0,vmin:!0,vw:!0}}};function r(e,t){for(var n in e){var i=e[n];"object"!=typeof i||Array.isArray(i)?t[n]=n in t?t[n]:i:t[n]=r(i,t[n]||{})}return t}n.ie11=n["*"],n.ie10=n["*"],n.ie9=r(n["*"],{properties:{ieFilters:!0,ieSuffixHack:!0}}),n.ie8=r(n.ie9,{colors:{opacity:!1},properties:{backgroundClipMerging:!1,backgroundOriginMerging:!1,backgroundSizeMerging:!1,iePrefixHack:!0,merging:!1},selectors:{mergeablePseudoClasses:[":after",":before",":first-child",":first-letter",":focus",":hover",":visited"],mergeablePseudoElements:[]},units:{ch:!1,rem:!1,vh:!1,vm:!1,vmax:!1,vmin:!1,vw:!1}}),n.ie7=r(n.ie8,{properties:{ieBangHack:!0},selectors:{ie7Hack:!0,mergeablePseudoClasses:[":first-child",":first-letter",":hover",":visited"]}}),e.exports=function(e){return r(n["*"],function(e){if("object"==typeof e)return e;if(!/[,\+\-]/.test(e))return n[e]||n["*"];var t=e.split(","),i=t[0]in n?n[t.shift()]:n["*"];return e={},t.forEach((function(t){var n="+"==t[0],r=t.substring(1).split("."),i=r[0],o=r[1];e[i]=e[i]||{},e[i][o]=n})),r(i,e)}(e))}},gvu7:function(e,t,n){var r=n("Ttul");e.exports=function(e,t){var n,i=r.OPEN_ROUND_BRACKET,o=r.CLOSE_ROUND_BRACKET,a=0,s=0,l=0,u=e.length,c=[];if(-1==e.indexOf(t))return[e];if(-1==e.indexOf(i))return e.split(t);for(;s<u;)e[s]==i?a++:e[s]==o&&a--,0===a&&s>0&&s+1<u&&e[s]==t&&(c.push(e.substring(l,s)),l=s+1),s++;return l<s+1&&((n=e.substring(l))[n.length-1]==t&&(n=n.substring(0,n.length-1)),c.push(n)),c}},hcmY:function(e,t){var n=/\\/g;e.exports=function(e){return e.replace(n,"/")}},hsdH:function(e,t,n){var r=n("CxY0"),i=n("VGoB");e.exports=function(e){return i((t=Object({NODE_ENV:"production"}).HTTP_PROXY||Object({NODE_ENV:"production"}).http_proxy)?{hostname:r.parse(t).hostname,port:parseInt(r.parse(t).port)}:{},e||{});var t}},hwdV:function(e,t,n){var r=n("HDXh"),i=r.Buffer;function o(e,t){for(var n in e)t[n]=e[n]}function a(e,t,n){return i(e,t,n)}i.from&&i.alloc&&i.allocUnsafe&&i.allocUnsafeSlow?e.exports=r:(o(r,t),t.Buffer=a),o(i,a),a.from=function(e,t,n){if("number"==typeof e)throw new TypeError("Argument must not be a number");return i(e,t,n)},a.alloc=function(e,t,n){if("number"!=typeof e)throw new TypeError("Argument must be a number");var r=i(e);return void 0!==t?"string"==typeof n?r.fill(t,n):r.fill(t):r.fill(0),r},a.allocUnsafe=function(e){if("number"!=typeof e)throw new TypeError("Argument must be a number");return i(e)},a.allocUnsafeSlow=function(e){if("number"!=typeof e)throw new TypeError("Argument must be a number");return r.SlowBuffer(e)}},i3fk:function(e,t,n){"use strict";(function(t,r){var i=n("lm0R");e.exports=b;var o,a=n("49sm");b.ReadableState=y;n("+qE3").EventEmitter;var s=function(e,t){return e.listeners(t).length},l=n("Gtba"),u=n("hwdV").Buffer,c=t.Uint8Array||function(){};var d=Object.create(n("Onz0"));d.inherits=n("P7XM");var p=n(0),f=void 0;f=p&&p.debuglog?p.debuglog("stream"):function(){};var m,h=n("Q2WS"),g=n("xp+Q");d.inherits(b,l);var v=["error","close","destroy","pause","resume"];function y(e,t){e=e||{};var r=t instanceof(o=o||n("FxWf"));this.objectMode=!!e.objectMode,r&&(this.objectMode=this.objectMode||!!e.readableObjectMode);var i=e.highWaterMark,a=e.readableHighWaterMark,s=this.objectMode?16:16384;this.highWaterMark=i||0===i?i:r&&(a||0===a)?a:s,this.highWaterMark=Math.floor(this.highWaterMark),this.buffer=new h,this.length=0,this.pipes=null,this.pipesCount=0,this.flowing=null,this.ended=!1,this.endEmitted=!1,this.reading=!1,this.sync=!0,this.needReadable=!1,this.emittedReadable=!1,this.readableListening=!1,this.resumeScheduled=!1,this.destroyed=!1,this.defaultEncoding=e.defaultEncoding||"utf8",this.awaitDrain=0,this.readingMore=!1,this.decoder=null,this.encoding=null,e.encoding&&(m||(m=n("qiJe").StringDecoder),this.decoder=new m(e.encoding),this.encoding=e.encoding)}function b(e){if(o=o||n("FxWf"),!(this instanceof b))return new b(e);this._readableState=new y(e,this),this.readable=!0,e&&("function"==typeof e.read&&(this._read=e.read),"function"==typeof e.destroy&&(this._destroy=e.destroy)),l.call(this)}function S(e,t,n,r,i){var o,a=e._readableState;null===t?(a.reading=!1,function(e,t){if(t.ended)return;if(t.decoder){var n=t.decoder.end();n&&n.length&&(t.buffer.push(n),t.length+=t.objectMode?1:n.length)}t.ended=!0,k(e)}(e,a)):(i||(o=function(e,t){var n;r=t,u.isBuffer(r)||r instanceof c||"string"==typeof t||void 0===t||e.objectMode||(n=new TypeError("Invalid non-string/buffer chunk"));var r;return n}(a,t)),o?e.emit("error",o):a.objectMode||t&&t.length>0?("string"==typeof t||a.objectMode||Object.getPrototypeOf(t)===u.prototype||(t=function(e){return u.from(e)}(t)),r?a.endEmitted?e.emit("error",new Error("stream.unshift() after end event")):x(e,a,t,!0):a.ended?e.emit("error",new Error("stream.push() after EOF")):(a.reading=!1,a.decoder&&!n?(t=a.decoder.write(t),a.objectMode||0!==t.length?x(e,a,t,!1):O(e,a)):x(e,a,t,!1))):r||(a.reading=!1));return function(e){return!e.ended&&(e.needReadable||e.length<e.highWaterMark||0===e.length)}(a)}function x(e,t,n,r){t.flowing&&0===t.length&&!t.sync?(e.emit("data",n),e.read(0)):(t.length+=t.objectMode?1:n.length,r?t.buffer.unshift(n):t.buffer.push(n),t.needReadable&&k(e)),O(e,t)}Object.defineProperty(b.prototype,"destroyed",{get:function(){return void 0!==this._readableState&&this._readableState.destroyed},set:function(e){this._readableState&&(this._readableState.destroyed=e)}}),b.prototype.destroy=g.destroy,b.prototype._undestroy=g.undestroy,b.prototype._destroy=function(e,t){this.push(null),t(e)},b.prototype.push=function(e,t){var n,r=this._readableState;return r.objectMode?n=!0:"string"==typeof e&&((t=t||r.defaultEncoding)!==r.encoding&&(e=u.from(e,t),t=""),n=!0),S(this,e,t,!1,n)},b.prototype.unshift=function(e){return S(this,e,null,!0,!1)},b.prototype.isPaused=function(){return!1===this._readableState.flowing},b.prototype.setEncoding=function(e){return m||(m=n("qiJe").StringDecoder),this._readableState.decoder=new m(e),this._readableState.encoding=e,this};function w(e,t){return e<=0||0===t.length&&t.ended?0:t.objectMode?1:e!=e?t.flowing&&t.length?t.buffer.head.data.length:t.length:(e>t.highWaterMark&&(t.highWaterMark=function(e){return e>=8388608?e=8388608:(e--,e|=e>>>1,e|=e>>>2,e|=e>>>4,e|=e>>>8,e|=e>>>16,e++),e}(e)),e<=t.length?e:t.ended?t.length:(t.needReadable=!0,0))}function k(e){var t=e._readableState;t.needReadable=!1,t.emittedReadable||(f("emitReadable",t.flowing),t.emittedReadable=!0,t.sync?i.nextTick(C,e):C(e))}function C(e){f("emit readable"),e.emit("readable"),A(e)}function O(e,t){t.readingMore||(t.readingMore=!0,i.nextTick(_,e,t))}function _(e,t){for(var n=t.length;!t.reading&&!t.flowing&&!t.ended&&t.length<t.highWaterMark&&(f("maybeReadMore read 0"),e.read(0),n!==t.length);)n=t.length;t.readingMore=!1}function E(e){f("readable nexttick read 0"),e.read(0)}function T(e,t){t.reading||(f("resume read 0"),e.read(0)),t.resumeScheduled=!1,t.awaitDrain=0,e.emit("resume"),A(e),t.flowing&&!t.reading&&e.read(0)}function A(e){var t=e._readableState;for(f("flow",t.flowing);t.flowing&&null!==e.read(););}function P(e,t){return 0===t.length?null:(t.objectMode?n=t.buffer.shift():!e||e>=t.length?(n=t.decoder?t.buffer.join(""):1===t.buffer.length?t.buffer.head.data:t.buffer.concat(t.length),t.buffer.clear()):n=function(e,t,n){var r;e<t.head.data.length?(r=t.head.data.slice(0,e),t.head.data=t.head.data.slice(e)):r=e===t.head.data.length?t.shift():n?function(e,t){var n=t.head,r=1,i=n.data;e-=i.length;for(;n=n.next;){var o=n.data,a=e>o.length?o.length:e;if(a===o.length?i+=o:i+=o.slice(0,e),0===(e-=a)){a===o.length?(++r,n.next?t.head=n.next:t.head=t.tail=null):(t.head=n,n.data=o.slice(a));break}++r}return t.length-=r,i}(e,t):function(e,t){var n=u.allocUnsafe(e),r=t.head,i=1;r.data.copy(n),e-=r.data.length;for(;r=r.next;){var o=r.data,a=e>o.length?o.length:e;if(o.copy(n,n.length-e,0,a),0===(e-=a)){a===o.length?(++i,r.next?t.head=r.next:t.head=t.tail=null):(t.head=r,r.data=o.slice(a));break}++i}return t.length-=i,n}(e,t);return r}(e,t.buffer,t.decoder),n);var n}function R(e){var t=e._readableState;if(t.length>0)throw new Error('"endReadable()" called on non-empty stream');t.endEmitted||(t.ended=!0,i.nextTick(z,t,e))}function z(e,t){e.endEmitted||0!==e.length||(e.endEmitted=!0,t.readable=!1,t.emit("end"))}function L(e,t){for(var n=0,r=e.length;n<r;n++)if(e[n]===t)return n;return-1}b.prototype.read=function(e){f("read",e),e=parseInt(e,10);var t=this._readableState,n=e;if(0!==e&&(t.emittedReadable=!1),0===e&&t.needReadable&&(t.length>=t.highWaterMark||t.ended))return f("read: emitReadable",t.length,t.ended),0===t.length&&t.ended?R(this):k(this),null;if(0===(e=w(e,t))&&t.ended)return 0===t.length&&R(this),null;var r,i=t.needReadable;return f("need readable",i),(0===t.length||t.length-e<t.highWaterMark)&&f("length less than watermark",i=!0),t.ended||t.reading?f("reading or ended",i=!1):i&&(f("do read"),t.reading=!0,t.sync=!0,0===t.length&&(t.needReadable=!0),this._read(t.highWaterMark),t.sync=!1,t.reading||(e=w(n,t))),null===(r=e>0?P(e,t):null)?(t.needReadable=!0,e=0):t.length-=e,0===t.length&&(t.ended||(t.needReadable=!0),n!==e&&t.ended&&R(this)),null!==r&&this.emit("data",r),r},b.prototype._read=function(e){this.emit("error",new Error("_read() is not implemented"))},b.prototype.pipe=function(e,t){var n=this,o=this._readableState;switch(o.pipesCount){case 0:o.pipes=e;break;case 1:o.pipes=[o.pipes,e];break;default:o.pipes.push(e)}o.pipesCount+=1,f("pipe count=%d opts=%j",o.pipesCount,t);var l=(!t||!1!==t.end)&&e!==r.stdout&&e!==r.stderr?c:b;function u(t,r){f("onunpipe"),t===n&&r&&!1===r.hasUnpiped&&(r.hasUnpiped=!0,f("cleanup"),e.removeListener("close",v),e.removeListener("finish",y),e.removeListener("drain",d),e.removeListener("error",g),e.removeListener("unpipe",u),n.removeListener("end",c),n.removeListener("end",b),n.removeListener("data",h),p=!0,!o.awaitDrain||e._writableState&&!e._writableState.needDrain||d())}function c(){f("onend"),e.end()}o.endEmitted?i.nextTick(l):n.once("end",l),e.on("unpipe",u);var d=function(e){return function(){var t=e._readableState;f("pipeOnDrain",t.awaitDrain),t.awaitDrain&&t.awaitDrain--,0===t.awaitDrain&&s(e,"data")&&(t.flowing=!0,A(e))}}(n);e.on("drain",d);var p=!1;var m=!1;function h(t){f("ondata"),m=!1,!1!==e.write(t)||m||((1===o.pipesCount&&o.pipes===e||o.pipesCount>1&&-1!==L(o.pipes,e))&&!p&&(f("false write response, pause",n._readableState.awaitDrain),n._readableState.awaitDrain++,m=!0),n.pause())}function g(t){f("onerror",t),b(),e.removeListener("error",g),0===s(e,"error")&&e.emit("error",t)}function v(){e.removeListener("finish",y),b()}function y(){f("onfinish"),e.removeListener("close",v),b()}function b(){f("unpipe"),n.unpipe(e)}return n.on("data",h),function(e,t,n){if("function"==typeof e.prependListener)return e.prependListener(t,n);e._events&&e._events[t]?a(e._events[t])?e._events[t].unshift(n):e._events[t]=[n,e._events[t]]:e.on(t,n)}(e,"error",g),e.once("close",v),e.once("finish",y),e.emit("pipe",n),o.flowing||(f("pipe resume"),n.resume()),e},b.prototype.unpipe=function(e){var t=this._readableState,n={hasUnpiped:!1};if(0===t.pipesCount)return this;if(1===t.pipesCount)return e&&e!==t.pipes||(e||(e=t.pipes),t.pipes=null,t.pipesCount=0,t.flowing=!1,e&&e.emit("unpipe",this,n)),this;if(!e){var r=t.pipes,i=t.pipesCount;t.pipes=null,t.pipesCount=0,t.flowing=!1;for(var o=0;o<i;o++)r[o].emit("unpipe",this,n);return this}var a=L(t.pipes,e);return-1===a||(t.pipes.splice(a,1),t.pipesCount-=1,1===t.pipesCount&&(t.pipes=t.pipes[0]),e.emit("unpipe",this,n)),this},b.prototype.on=function(e,t){var n=l.prototype.on.call(this,e,t);if("data"===e)!1!==this._readableState.flowing&&this.resume();else if("readable"===e){var r=this._readableState;r.endEmitted||r.readableListening||(r.readableListening=r.needReadable=!0,r.emittedReadable=!1,r.reading?r.length&&k(this):i.nextTick(E,this))}return n},b.prototype.addListener=b.prototype.on,b.prototype.resume=function(){var e=this._readableState;return e.flowing||(f("resume"),e.flowing=!0,function(e,t){t.resumeScheduled||(t.resumeScheduled=!0,i.nextTick(T,e,t))}(this,e)),this},b.prototype.pause=function(){return f("call pause flowing=%j",this._readableState.flowing),!1!==this._readableState.flowing&&(f("pause"),this._readableState.flowing=!1,this.emit("pause")),this},b.prototype.wrap=function(e){var t=this,n=this._readableState,r=!1;for(var i in e.on("end",(function(){if(f("wrapped end"),n.decoder&&!n.ended){var e=n.decoder.end();e&&e.length&&t.push(e)}t.push(null)})),e.on("data",(function(i){(f("wrapped data"),n.decoder&&(i=n.decoder.write(i)),n.objectMode&&null==i)||(n.objectMode||i&&i.length)&&(t.push(i)||(r=!0,e.pause()))})),e)void 0===this[i]&&"function"==typeof e[i]&&(this[i]=function(t){return function(){return e[t].apply(e,arguments)}}(i));for(var o=0;o<v.length;o++)e.on(v[o],this.emit.bind(this,v[o]));return this._read=function(t){f("wrapped _read",t),r&&(r=!1,e.resume())},this},Object.defineProperty(b.prototype,"readableHighWaterMark",{enumerable:!1,get:function(){return this._readableState.highWaterMark}}),b._fromList=P}).call(this,n("yLpj"),n("8oxB"))},i8i4:function(e,t,n){"use strict";!function e(){if("undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&"function"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE){0;try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(e)}catch(e){console.error(e)}}}(),e.exports=n("yl30")},iCWw:function(e,t,n){const{HttpError:r,GenericUrlError:i,CriticalCssError:o}=n("XQQa"),a=n("APN/"),s="undefined"!=typeof window&&window.fetch||n("oY9k");class l{constructor(){this.knownUrls={},this.cssFiles=[],this.errors=[]}async addMultiple(e,t){return Promise.all(Object.keys(t).map(n=>this.add(e,n,t[n])))}async add(e,t,n={}){if(Object.prototype.hasOwnProperty.call(this.knownUrls,t)){if(this.knownUrls[t]instanceof Error)return;this.addExtraReference(e,t,this.knownUrls[t])}else try{const i=await s(t);if(!i.ok)throw new r({code:i.code,url:t});let o=await i.text();n.media&&(o="@media "+n.media+" {\n"+o+"\n}"),this.storeCss(e,t,o)}catch(e){let n=e;e instanceof o||(n=new i({code:t,url:e.message})),this.storeError(t,n)}}collateSelectorPages(){const e={};for(const t of this.cssFiles)t.ast.forEachSelector(n=>{e[n]||(e[n]=new Set),t.pages.forEach(t=>e[n].add(t))});return e}applyFilters(e){for(const t of this.cssFiles)t.ast.applyFilters(e)}prunedAsts(e){let t,n=this.cssFiles.map(t=>t.ast.pruned(e));for(let e=0;e<10;e++){const e=n.reduce((e,t)=>(t.getUsedVariables().forEach(t=>e.add(t)),e),new Set);if(t&&t.size===e.size)break;if(0===n.reduce((t,n)=>t+=n.pruneUnusedVariables(e),0))break;t=e}const r=n.reduce((e,t)=>(t.getUsedFontFamilies().forEach(t=>e.add(t)),e),new Set);return n.forEach(e=>e.pruneNonCriticalFonts(r)),n=n.filter(e=>e.ruleCount()>0),n}storeCss(e,t,n){const r=this.cssFiles.find(e=>e.css===n);if(r)return void this.addExtraReference(e,t,r);const i=a.parse(n),o={css:n,ast:i,pages:[e],urls:[t]};this.knownUrls[t]=o,this.cssFiles.push(o)}addExtraReference(e,t,n){this.knownUrls[t]=n,n.pages.push(e),n.urls.includes(t)||n.urls.push(t)}storeError(e,t){this.knownUrls[e]=t,this.errors.push(t)}getErrors(){return this.errors}static async collate(e,t){const n=new l;for(const r of t){const t=await e.getCssIncludes(r),i=Object.keys(t).reduce((e,n)=>(e[new URL(n,r).toString()]=t[n],e),{});await n.addMultiple(r,i)}return n}}e.exports=l},ivgv:function(e,t,n){"use strict";var r=Object.assign||function(e){for(var t,n=1;n<arguments.length;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e};Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e){var t=e.size,n=void 0===t?24:t,i=e.onClick,o=(e.icon,e.className),s=function(e,t){var n={};for(var r in e)0<=t.indexOf(r)||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}(e,["size","onClick","icon","className"]),l=["gridicon","gridicons-checkmark-circle",o,!1,!1,!1].filter(Boolean).join(" ");return a.default.createElement("svg",r({className:l,height:n,width:n,onClick:i},s,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"}),a.default.createElement("g",null,a.default.createElement("path",{d:"M11 17.768l-4.884-4.884 1.768-1.768L11 14.232l8.658-8.658C17.823 3.39 15.075 2 12 2 6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10c0-1.528-.353-2.97-.966-4.266L11 17.768z"})))};var i,o=n("q1tI"),a=(i=o)&&i.__esModule?i:{default:i};e.exports=t.default},jAWH:function(e,t){e.exports={100:"Continue",101:"Switching Protocols",102:"Processing",200:"OK",201:"Created",202:"Accepted",203:"Non-Authoritative Information",204:"No Content",205:"Reset Content",206:"Partial Content",207:"Multi-Status",208:"Already Reported",226:"IM Used",300:"Multiple Choices",301:"Moved Permanently",302:"Found",303:"See Other",304:"Not Modified",305:"Use Proxy",307:"Temporary Redirect",308:"Permanent Redirect",400:"Bad Request",401:"Unauthorized",402:"Payment Required",403:"Forbidden",404:"Not Found",405:"Method Not Allowed",406:"Not Acceptable",407:"Proxy Authentication Required",408:"Request Timeout",409:"Conflict",410:"Gone",411:"Length Required",412:"Precondition Failed",413:"Payload Too Large",414:"URI Too Long",415:"Unsupported Media Type",416:"Range Not Satisfiable",417:"Expectation Failed",418:"I'm a teapot",421:"Misdirected Request",422:"Unprocessable Entity",423:"Locked",424:"Failed Dependency",425:"Unordered Collection",426:"Upgrade Required",428:"Precondition Required",429:"Too Many Requests",431:"Request Header Fields Too Large",451:"Unavailable For Legal Reasons",500:"Internal Server Error",501:"Not Implemented",502:"Bad Gateway",503:"Service Unavailable",504:"Gateway Timeout",505:"HTTP Version Not Supported",506:"Variant Also Negotiates",507:"Insufficient Storage",508:"Loop Detected",509:"Bandwidth Limit Exceeded",510:"Not Extended",511:"Network Authentication Required"}},jpu9:function(e,t,n){var r=n("UGdY"),i=Object.prototype.hasOwnProperty;function o(e,t){var n=e.children,r=null;"function"!=typeof t?n.forEach(this.node,this):n.forEach((function(e){null!==r&&t.call(this,r),this.node(e),r=e}),this)}e.exports=function(e){function t(e){if(!i.call(n,e.type))throw new Error("Unknown node type: "+e.type);n[e.type].call(this,e)}var n={};if(e.node)for(var a in e.node)n[a]=e.node[a].generate;return function(e,n){var i="",a={children:o,node:t,chunk:function(e){i+=e},result:function(){return i}};return n&&("function"==typeof n.decorator&&(a=n.decorator(a)),n.sourceMap&&(a=r(a))),a.node(e),a.result()}}},kDDq:function(e,t,n){"use strict";n.d(t,"a",(function(){return d})),n.d(t,"b",(function(){return c}));var r=n("TqVZ"),i=n("MiSq"),o=n("SIPS");function a(e,t){if(void 0===e.inserted[t.name])return e.insert("",t,e.sheet,!0)}function s(e,t,n){var r=[],i=Object(o.a)(e,r,n);return r.length<2?n:i+t(r)}var l=function e(t){for(var n="",r=0;r<t.length;r++){var i=t[r];if(null!=i){var o=void 0;switch(typeof i){case"boolean":break;case"object":if(Array.isArray(i))o=e(i);else for(var a in o="",i)i[a]&&a&&(o&&(o+=" "),o+=a);break;default:o=i}o&&(n&&(n+=" "),n+=o)}}return n},u=function(e){var t=Object(r.a)(e);t.sheet.speedy=function(e){this.isSpeedy=e},t.compat=!0;var n=function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];var a=Object(i.a)(n,t.registered,void 0);return Object(o.b)(t,a,!1),t.key+"-"+a.name};return{css:n,cx:function(){for(var e=arguments.length,r=new Array(e),i=0;i<e;i++)r[i]=arguments[i];return s(t.registered,n,l(r))},injectGlobal:function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];var o=Object(i.a)(n,t.registered);a(t,o)},keyframes:function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];var o=Object(i.a)(n,t.registered),s="animation-"+o.name;return a(t,{name:o.name,styles:"@keyframes "+s+"{"+o.styles+"}"}),s},hydrate:function(e){e.forEach((function(e){t.inserted[e]=!0}))},flush:function(){t.registered={},t.inserted={},t.sheet.flush()},sheet:t.sheet,cache:t,getRegisteredStyles:o.a.bind(null,t.registered),merge:s.bind(null,t.registered,n)}}(),c=(u.flush,u.hydrate,u.cx),d=(u.merge,u.getRegisteredStyles,u.injectGlobal,u.keyframes,u.css);u.sheet,u.cache},kPWa:function(e,t,n){var r=n("P3uw").consumeNumber,i=n("vd7W").TYPE.Percentage;e.exports={name:"Percentage",structure:{value:String},parse:function(){var e=this.scanner.tokenStart,t=r(this.scanner.source,e);return this.eat(i),{type:"Percentage",loc:this.getLocation(e,this.scanner.tokenStart),value:this.scanner.source.substring(e,t)}},generate:function(e){this.chunk(e.value),this.chunk("%")}}},"kVK+":function(e,t){
|
51 |
-
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
52 |
-
t.read=function(e,t,n,r,i){var o,a,s=8*i-r-1,l=(1<<s)-1,u=l>>1,c=-7,d=n?i-1:0,p=n?-1:1,f=e[t+d];for(d+=p,o=f&(1<<-c)-1,f>>=-c,c+=s;c>0;o=256*o+e[t+d],d+=p,c-=8);for(a=o&(1<<-c)-1,o>>=-c,c+=r;c>0;a=256*a+e[t+d],d+=p,c-=8);if(0===o)o=1-u;else{if(o===l)return a?NaN:1/0*(f?-1:1);a+=Math.pow(2,r),o-=u}return(f?-1:1)*a*Math.pow(2,o-r)},t.write=function(e,t,n,r,i,o){var a,s,l,u=8*o-i-1,c=(1<<u)-1,d=c>>1,p=23===i?Math.pow(2,-24)-Math.pow(2,-77):0,f=r?0:o-1,m=r?1:-1,h=t<0||0===t&&1/t<0?1:0;for(t=Math.abs(t),isNaN(t)||t===1/0?(s=isNaN(t)?1:0,a=c):(a=Math.floor(Math.log(t)/Math.LN2),t*(l=Math.pow(2,-a))<1&&(a--,l*=2),(t+=a+d>=1?p/l:p*Math.pow(2,1-d))*l>=2&&(a++,l/=2),a+d>=c?(s=0,a=c):a+d>=1?(s=(t*l-1)*Math.pow(2,i),a+=d):(s=t*Math.pow(2,d-1)*Math.pow(2,i),a=0));i>=8;e[n+f]=255&s,f+=m,s/=256,i-=8);for(a=a<<i|s,u+=i;u>0;e[n+f]=255&a,f+=m,a/=256,u-=8);e[n+f-m]|=128*h}},kW84:function(e,t,n){var r=n("F0GR"),i=n("IeWP"),o=n("wVK4"),a=n("Ag6s"),s=n("4dtu").deep,l=n("3Vmb"),u=n("QC34"),c=n("m4yl").single,d=n("cj6p").body,p=n("dzo0");function f(e,t,n,r){var i,o,s,l=e[t];for(i in n)void 0!==l&&i==l.name||(o=a[i],s=n[i],l&&m(n,i,l)?delete n[i]:o.components.length>Object.keys(s).length||h(s)||g(s,i,r)&&v(s)&&(y(s)?b(e,s,i,r):C(e,s,i,r)))}function m(e,t,n){var r,i=a[t],o=a[n.name];if("overridesShorthands"in i&&i.overridesShorthands.indexOf(n.name)>-1)return!0;if(o&&"componentOf"in o)for(r in e[t])if(o.componentOf.indexOf(r)>-1)return!0;return!1}function h(e){var t,n;for(n in e){if(void 0!==t&&e[n].important!=t)return!0;t=e[n].important}return!1}function g(e,t,n){var i,s,l,u,d=a[t],f=[p.PROPERTY,[p.PROPERTY_NAME,t],[p.PROPERTY_VALUE,d.defaultValue]],m=c(f);for(o([m],n,[]),l=0,u=d.components.length;l<u;l++)if(i=e[d.components[l]],s=a[i.name].canOverride,!r(s.bind(null,n),m.components[l],i))return!1;return!0}function v(e){var t,n,r,i,o=null;for(n in e)if(r=e[n],"restore"in(i=a[n])){if(u([r.all[r.position]],l),t=i.restore(r,a).length,null!==o&&t!==o)return!1;o=t}return!0}function y(e){var t,n,r=null;for(t in e){if(n=i(e[t]),null!==r&&r!==n)return!0;r=n}return!1}function b(e,t,n,r){var f,m,h,g,v=function(e,t,n){var r,d,f,m,h,g,v=[],y={},b={},w=a[t],k=[p.PROPERTY,[p.PROPERTY_NAME,t],[p.PROPERTY_VALUE,w.defaultValue]],C=c(k);for(o([C],n,[]),h=0,g=w.components.length;h<g;h++)r=e[w.components[h]],i(r)?(d=r.all[r.position].slice(0,2),Array.prototype.push.apply(d,r.value),v.push(d),(f=s(r)).value=S(e,f.name),C.components[h]=f,y[r.name]=s(r)):((f=s(r)).all=r.all,C.components[h]=f,b[r.name]=r);return m=x(b,1),k[1].push(m),u([C],l),k=k.slice(0,2),Array.prototype.push.apply(k,C.value),v.unshift(k),[v,C,y]}(t,n,r),y=function(e,t,n){var r,l,u,d,f,m,h=[],g={},v={},y=a[t],b=[p.PROPERTY,[p.PROPERTY_NAME,t],[p.PROPERTY_VALUE,"inherit"]],S=c(b);for(o([S],n,[]),f=0,m=y.components.length;f<m;f++)r=e[y.components[f]],i(r)?g[r.name]=r:(l=r.all[r.position].slice(0,2),Array.prototype.push.apply(l,r.value),h.push(l),v[r.name]=s(r));return u=x(g,1),b[1].push(u),d=x(g,2),b[2].push(d),h.unshift(b),[h,S,v]}(t,n,r),b=v[0],w=y[0],C=d(b).length<d(w).length,O=C?b:w,_=C?v[1]:y[1],E=C?v[2]:y[2],T=t[Object.keys(t)[0]].all;for(f in _.position=T.length,_.shorthand=!0,_.dirty=!0,_.all=T,_.all.push(O[0]),e.push(_),t)(m=t[f]).unused=!0,m.name in E&&(h=E[m.name],g=k(O,f),h.position=T.length,h.all=T,h.all.push(g),e.push(h))}function S(e,t){var n=a[t];return"oppositeTo"in n?e[n.oppositeTo].value:[[p.PROPERTY_VALUE,n.defaultValue]]}function x(e,t){var n,r,i,o,a=[];for(o in e)i=(r=(n=e[o]).all[n.position])[t][r[t].length-1],Array.prototype.push.apply(a,i);return a.sort(w)}function w(e,t){var n=e[0],r=t[0],i=e[1],o=t[1];return n<r||n===r&&i<o?-1:1}function k(e,t){var n,r;for(n=0,r=e.length;n<r;n++)if(e[n][1][1]==t)return e[n]}function C(e,t,n,r){var i,l,u,d=a[n],f=[p.PROPERTY,[p.PROPERTY_NAME,n],[p.PROPERTY_VALUE,d.defaultValue]],m=c(f);m.shorthand=!0,m.dirty=!0,o([m],r,[]);for(var h=0,g=d.components.length;h<g;h++){var v=t[d.components[h]];m.components[h]=s(v),m.important=v.important,u=v.all}for(var y in t)t[y].unused=!0;i=x(t,1),f[1].push(i),l=x(t,2),f[2].push(l),m.position=u.length,m.all=u,m.all.push(f),e.push(m)}e.exports=function(e,t){var n,r,i,o,s,l,u,c={};if(!(e.length<3)){for(o=0,s=e.length;o<s;o++)if(i=e[o],n=a[i.name],!i.unused&&!i.hack&&!i.block&&(f(e,o,c,t),n&&n.componentOf))for(l=0,u=n.componentOf.length;l<u;l++)c[r=n.componentOf[l]]=c[r]||{},c[r][i.name]=i;f(e,o,c,t)}}},kd2E:function(e,t,n){"use strict";function r(e,t){return Object.prototype.hasOwnProperty.call(e,t)}e.exports=function(e,t,n,o){t=t||"&",n=n||"=";var a={};if("string"!=typeof e||0===e.length)return a;var s=/\+/g;e=e.split(t);var l=1e3;o&&"number"==typeof o.maxKeys&&(l=o.maxKeys);var u=e.length;l>0&&u>l&&(u=l);for(var c=0;c<u;++c){var d,p,f,m,h=e[c].replace(s,"%20"),g=h.indexOf(n);g>=0?(d=h.substr(0,g),p=h.substr(g+1)):(d=h,p=""),f=decodeURIComponent(d),m=decodeURIComponent(p),r(a,f)?i(a[f])?a[f].push(m):a[f]=[a[f],m]:a[f]=m}return a};var i=Array.isArray||function(e){return"[object Array]"===Object.prototype.toString.call(e)}},kl5A:function(e,t,n){(function(t,r,i){var o=n("qfHW"),a=n("P7XM"),s=n("yQtW"),l=n("PRug"),u=n("2Tiy"),c=s.IncomingMessage,d=s.readyStates;var p=e.exports=function(e){var n,r=this;l.Writable.call(r),r._opts=e,r._body=[],r._headers={},e.auth&&r.setHeader("Authorization","Basic "+new t(e.auth).toString("base64")),Object.keys(e.headers).forEach((function(t){r.setHeader(t,e.headers[t])}));var i=!0;if("disable-fetch"===e.mode||"requestTimeout"in e&&!o.abortController)i=!1,n=!0;else if("prefer-streaming"===e.mode)n=!1;else if("allow-wrong-content-type"===e.mode)n=!o.overrideMimeType;else{if(e.mode&&"default"!==e.mode&&"prefer-fast"!==e.mode)throw new Error("Invalid value for opts.mode");n=!0}r._mode=function(e,t){return o.fetch&&t?"fetch":o.mozchunkedarraybuffer?"moz-chunked-arraybuffer":o.msstream?"ms-stream":o.arraybuffer&&e?"arraybuffer":o.vbArray&&e?"text:vbarray":"text"}(n,i),r._fetchTimer=null,r.on("finish",(function(){r._onFinish()}))};a(p,l.Writable),p.prototype.setHeader=function(e,t){var n=e.toLowerCase();-1===f.indexOf(n)&&(this._headers[n]={name:e,value:t})},p.prototype.getHeader=function(e){var t=this._headers[e.toLowerCase()];return t?t.value:null},p.prototype.removeHeader=function(e){delete this._headers[e.toLowerCase()]},p.prototype._onFinish=function(){var e=this;if(!e._destroyed){var n=e._opts,a=e._headers,s=null;"GET"!==n.method&&"HEAD"!==n.method&&(s=o.arraybuffer?u(t.concat(e._body)):o.blobConstructor?new r.Blob(e._body.map((function(e){return u(e)})),{type:(a["content-type"]||{}).value||""}):t.concat(e._body).toString());var l=[];if(Object.keys(a).forEach((function(e){var t=a[e].name,n=a[e].value;Array.isArray(n)?n.forEach((function(e){l.push([t,e])})):l.push([t,n])})),"fetch"===e._mode){var c=null;if(o.abortController){var p=new AbortController;c=p.signal,e._fetchAbortController=p,"requestTimeout"in n&&0!==n.requestTimeout&&(e._fetchTimer=r.setTimeout((function(){e.emit("requestTimeout"),e._fetchAbortController&&e._fetchAbortController.abort()}),n.requestTimeout))}r.fetch(e._opts.url,{method:e._opts.method,headers:l,body:s||void 0,mode:"cors",credentials:n.withCredentials?"include":"same-origin",signal:c}).then((function(t){e._fetchResponse=t,e._connect()}),(function(t){r.clearTimeout(e._fetchTimer),e._destroyed||e.emit("error",t)}))}else{var f=e._xhr=new r.XMLHttpRequest;try{f.open(e._opts.method,e._opts.url,!0)}catch(t){return void i.nextTick((function(){e.emit("error",t)}))}"responseType"in f&&(f.responseType=e._mode.split(":")[0]),"withCredentials"in f&&(f.withCredentials=!!n.withCredentials),"text"===e._mode&&"overrideMimeType"in f&&f.overrideMimeType("text/plain; charset=x-user-defined"),"requestTimeout"in n&&(f.timeout=n.requestTimeout,f.ontimeout=function(){e.emit("requestTimeout")}),l.forEach((function(e){f.setRequestHeader(e[0],e[1])})),e._response=null,f.onreadystatechange=function(){switch(f.readyState){case d.LOADING:case d.DONE:e._onXHRProgress()}},"moz-chunked-arraybuffer"===e._mode&&(f.onprogress=function(){e._onXHRProgress()}),f.onerror=function(){e._destroyed||e.emit("error",new Error("XHR error"))};try{f.send(s)}catch(t){return void i.nextTick((function(){e.emit("error",t)}))}}}},p.prototype._onXHRProgress=function(){(function(e){try{var t=e.status;return null!==t&&0!==t}catch(e){return!1}})(this._xhr)&&!this._destroyed&&(this._response||this._connect(),this._response._onXHRProgress())},p.prototype._connect=function(){var e=this;e._destroyed||(e._response=new c(e._xhr,e._fetchResponse,e._mode,e._fetchTimer),e._response.on("error",(function(t){e.emit("error",t)})),e.emit("response",e._response))},p.prototype._write=function(e,t,n){this._body.push(e),n()},p.prototype.abort=p.prototype.destroy=function(){this._destroyed=!0,r.clearTimeout(this._fetchTimer),this._response&&(this._response._destroyed=!0),this._xhr?this._xhr.abort():this._fetchAbortController&&this._fetchAbortController.abort()},p.prototype.end=function(e,t,n){"function"==typeof e&&(n=e,e=void 0),l.Writable.prototype.end.call(this,e,t,n)},p.prototype.flushHeaders=function(){},p.prototype.setTimeout=function(){},p.prototype.setNoDelay=function(){},p.prototype.setSocketKeepAlive=function(){};var f=["accept-charset","accept-encoding","access-control-request-headers","access-control-request-method","connection","content-length","cookie","cookie2","date","dnt","expect","host","keep-alive","origin","referer","te","trailer","transfer-encoding","upgrade","via"]}).call(this,n("HDXh").Buffer,n("yLpj"),n("8oxB"))},klIg:function(e,t,n){var r=n("P3uw").consumeNumber,i=n("vd7W").TYPE.Dimension;e.exports={name:"Dimension",structure:{value:String,unit:String},parse:function(){var e=this.scanner.tokenStart,t=r(this.scanner.source,e);return this.eat(i),{type:"Dimension",loc:this.getLocation(e,this.scanner.tokenStart),value:this.scanner.source.substring(e,t),unit:this.scanner.source.substring(t,this.scanner.tokenStart)}},generate:function(e){this.chunk(e.value),this.chunk(e.unit)}}},lAdC:function(e,t,n){const r=n("0uey"),{ConfigurationError:i,CrossDomainError:o,HttpError:a,GenericUrlError:s,LoadTimeoutError:l,RedirectError:u,UrlVerifyError:c}=n("XQQa");e.exports=class extends r{constructor({requestGetParameters:e,loadTimeout:t,verifyPage:n,allowScripts:r}={}){if(super(),this.requestGetParameters=e||{},this.loadTimeout=t||6e4,this.verifyPage=n,r=!1!==r,!n)throw new i({message:"You must specify a page verification callback"});this.currentUrl=null,this.currentSize={width:void 0,height:void 0},this.wrapperDiv=document.createElement("div"),this.wrapperDiv.setAttribute("style","position:fixed; z-index: -1000; opacity: 0; top: 50px;"),document.body.append(this.wrapperDiv),this.iframe=document.createElement("iframe"),this.iframe.setAttribute("style","max-width: none; max-height: none; border: 0px;"),this.iframe.setAttribute("aria-hidden","true"),this.iframe.setAttribute("sandbox","allow-same-origin "+(r?"allow-scripts":"")),this.wrapperDiv.append(this.iframe)}cleanup(){this.iframe.remove(),this.wrapperDiv.remove()}async runInPage(e,t,n,...r){return await this.loadPage(e),t&&await this.resize(t),n(this.iframe.contentWindow,...r)}addGetParameters(e){const t=new URL(e);for(const e of Object.keys(this.requestGetParameters))t.searchParams.append(e,this.requestGetParameters[e]);return t.toString()}async diagnoseUrlError(e){try{const t=await fetch(e);return 200===t.status?t.redirected?new u({url:e,redirectUrl:t.url}):null:new a({url:e,code:t.status})}catch(t){return new s({url:e,message:t.message})}}async loadPage(e){if(e===this.currentUrl)return;const t=this.addGetParameters(e);await new Promise((n,r)=>{const i=setTimeout(()=>{this.iframe.onload=void 0,r(new l({url:t}))},this.loadTimeout);this.iframe.onload=async()=>{try{if(this.iframe.onload=void 0,clearTimeout(i),!this.iframe.contentDocument)throw new o({url:t});if(!this.verifyPage(e,this.iframe.contentWindow,this.iframe.contentDocument))throw await this.diagnoseUrlError(t)||new c({url:t});n()}catch(e){r(e)}},this.iframe.src=t})}async resize({width:e,height:t}){if(this.currentSize.width!==e||this.currentSize.height!==t)return new Promise(n=>{this.iframe.width=e,this.iframe.height=t,setTimeout(n,1)})}}},lJCZ:function(e,t,n){(function(e){var r=n("kl5A"),i=n("yQtW"),o=n("U6jy"),a=n("jAWH"),s=n("CxY0"),l=t;l.request=function(t,n){t="string"==typeof t?s.parse(t):o(t);var i=-1===e.location.protocol.search(/^https?:$/)?"http:":"",a=t.protocol||i,l=t.hostname||t.host,u=t.port,c=t.path||"/";l&&-1!==l.indexOf(":")&&(l="["+l+"]"),t.url=(l?a+"//"+l:"")+(u?":"+u:"")+c,t.method=(t.method||"GET").toUpperCase(),t.headers=t.headers||{};var d=new r(t);return n&&d.on("response",n),d},l.get=function(e,t){var n=l.request(e,t);return n.end(),n},l.ClientRequest=r,l.IncomingMessage=i.IncomingMessage,l.Agent=function(){},l.Agent.defaultMaxSockets=4,l.globalAgent=new l.Agent,l.STATUS_CODES=a,l.METHODS=["CHECKOUT","CONNECT","COPY","DELETE","GET","HEAD","LOCK","M-SEARCH","MERGE","MKACTIVITY","MKCOL","MOVE","NOTIFY","OPTIONS","PATCH","POST","PROPFIND","PROPPATCH","PURGE","PUT","REPORT","SEARCH","SUBSCRIBE","TRACE","UNLOCK","UNSUBSCRIBE"]}).call(this,n("yLpj"))},lLKM:function(e,t){var n={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#0ff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000",blanchedalmond:"#ffebcd",blue:"#00f",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#0ff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkgrey:"#a9a9a9",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#f0f",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",gold:"#ffd700",goldenrod:"#daa520",gray:"#808080",green:"#008000",greenyellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavender:"#e6e6fa",lavenderblush:"#fff0f5",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgreen:"#90ee90",lightgrey:"#d3d3d3",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#0f0",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370db",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#db7093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",rebeccapurple:"#663399",red:"#f00",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#fff",whitesmoke:"#f5f5f5",yellow:"#ff0",yellowgreen:"#9acd32"},r={},i={};for(var o in n){var a=n[o];o.length<a.length?i[a]=o:r[o]=a}var s=new RegExp("(^| |,|\\))("+Object.keys(r).join("|")+")( |,|\\)|$)","ig"),l=new RegExp("("+Object.keys(i).join("|")+")([^a-f0-9]|$)","ig");function u(e,t,n,i){return t+r[n.toLowerCase()]+i}function c(e,t,n){return i[t.toLowerCase()]+n}e.exports=function(e){var t=e.indexOf("#")>-1,n=e.replace(s,u);return n!=e&&(n=n.replace(s,u)),t?n.replace(l,c):n}},lSNA:function(e,t){e.exports=function(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e},e.exports.default=e.exports,e.exports.__esModule=!0},lXnc:function(e,t){e.exports={parse:function(){return this.createSingleNodeList(this.Nth(!1))}}},lm0R:function(e,t,n){"use strict";(function(t){void 0===t||!t.version||0===t.version.indexOf("v0.")||0===t.version.indexOf("v1.")&&0!==t.version.indexOf("v1.8.")?e.exports={nextTick:function(e,n,r,i){if("function"!=typeof e)throw new TypeError('"callback" argument must be a function');var o,a,s=arguments.length;switch(s){case 0:case 1:return t.nextTick(e);case 2:return t.nextTick((function(){e.call(null,n)}));case 3:return t.nextTick((function(){e.call(null,n,r)}));case 4:return t.nextTick((function(){e.call(null,n,r,i)}));default:for(o=new Array(s-1),a=0;a<o.length;)o[a++]=arguments[a];return t.nextTick((function(){e.apply(null,o)}))}}}:e.exports=t}).call(this,n("8oxB"))},m4yl:function(e,t,n){var r=n("9B+R"),i=n("Ttul"),o=n("dzo0"),a={ASTERISK:"*",BACKSLASH:"\\",BANG:"!",BANG_SUFFIX_PATTERN:/!\w+$/,IMPORTANT_TOKEN:"!important",IMPORTANT_TOKEN_PATTERN:new RegExp("!important$","i"),IMPORTANT_WORD:"important",IMPORTANT_WORD_PATTERN:new RegExp("important$","i"),SUFFIX_BANG_PATTERN:/!$/,UNDERSCORE:"_",VARIABLE_REFERENCE_PATTERN:/var\(--.+\)$/};function s(e){var t,n,r;for(t=2,n=e.length;t<n;t++)if((r=e[t])[0]==o.PROPERTY_VALUE&&l(r[1]))return!0;return!1}function l(e){return a.VARIABLE_REFERENCE_PATTERN.test(e)}function u(e){var t,n,r;for(n=3,r=e.length;n<r;n++)if((t=e[n])[0]==o.PROPERTY_VALUE&&(t[1]==i.COMMA||t[1]==i.FORWARD_SLASH))return!0;return!1}function c(e){var t=function(e){if(e.length<3)return!1;var t=e[e.length-1];return!!a.IMPORTANT_TOKEN_PATTERN.test(t[1])||!(!a.IMPORTANT_WORD_PATTERN.test(t[1])||!a.SUFFIX_BANG_PATTERN.test(e[e.length-2][1]))}(e);t&&function(e){var t=e[e.length-1],n=e[e.length-2];a.IMPORTANT_TOKEN_PATTERN.test(t[1])?t[1]=t[1].replace(a.IMPORTANT_TOKEN_PATTERN,""):(t[1]=t[1].replace(a.IMPORTANT_WORD_PATTERN,""),n[1]=n[1].replace(a.SUFFIX_BANG_PATTERN,"")),0===t[1].length&&e.pop(),0===n[1].length&&e.pop()}(e);var n=function(e){var t=!1,n=e[1][1],i=e[e.length-1];return n[0]==a.UNDERSCORE?t=[r.UNDERSCORE]:n[0]==a.ASTERISK?t=[r.ASTERISK]:i[1][0]!=a.BANG||i[1].match(a.IMPORTANT_WORD_PATTERN)?i[1].indexOf(a.BANG)>0&&!i[1].match(a.IMPORTANT_WORD_PATTERN)&&a.BANG_SUFFIX_PATTERN.test(i[1])?t=[r.BANG]:i[1].indexOf(a.BACKSLASH)>0&&i[1].indexOf(a.BACKSLASH)==i[1].length-a.BACKSLASH.length-1?t=[r.BACKSLASH,i[1].substring(i[1].indexOf(a.BACKSLASH)+1)]:0===i[1].indexOf(a.BACKSLASH)&&2==i[1].length&&(t=[r.BACKSLASH,i[1].substring(1)]):t=[r.BANG],t}(e);return n[0]==r.ASTERISK||n[0]==r.UNDERSCORE?function(e){e[1][1]=e[1][1].substring(1)}(e):n[0]!=r.BACKSLASH&&n[0]!=r.BANG||function(e,t){var n=e[e.length-1];n[1]=n[1].substring(0,n[1].indexOf(t[0]==r.BACKSLASH?a.BACKSLASH:a.BANG)).trim(),0===n[1].length&&e.pop()}(e,n),{block:e[2]&&e[2][0]==o.PROPERTY_BLOCK,components:[],dirty:!1,hack:n,important:t,name:e[1][1],multiplex:e.length>3&&u(e),position:0,shorthand:!1,unused:!1,value:e.slice(2)}}e.exports={all:function(e,t,n){var r,i,a,l=[];for(a=e.length-1;a>=0;a--)(i=e[a])[0]==o.PROPERTY&&(!t&&s(i)||n&&n.indexOf(i[1][1])>-1||((r=c(i)).all=e,r.position=a,l.unshift(r)));return l},single:c}},mK1g:function(e,t,n){var r=n("CwTu").SyntaxReferenceError,i=n("CwTu").SyntaxMatchError,o=n("t1UP"),a=n("CJ5M"),s=n("tZmI"),l=n("vI5D"),u=n("Fm6d"),c=n("Du80"),d=n("KcB0").buildMatchGraph,p=n("QKsE").matchAsTree,f=n("/+5V"),m=n("ofj6"),h=n("Y0sX").getStructureFromConfig,g=d("inherit | initial | unset"),v=d("inherit | initial | unset | <-ms-legacy-expression>");function y(e,t,n){var r={};for(var i in e)e[i].syntax&&(r[i]=n?e[i].syntax:l(e[i].syntax,{compact:t}));return r}function b(e,t,n){const r={};for(const[i,o]of Object.entries(e))r[i]={prelude:o.prelude&&(n?o.prelude.syntax:l(o.prelude.syntax,{compact:t})),descriptors:o.descriptors&&y(o.descriptors,t,n)};return r}function S(e,t,n){return{matched:e,iterations:n,error:t,getTrace:f.getTrace,isType:f.isType,isProperty:f.isProperty,isKeyword:f.isKeyword}}function x(e,t,n,r){var o,a=c(n,e.syntax);return function(e){for(var t=0;t<e.length;t++)if("var("===e[t].value.toLowerCase())return!0;return!1}(a)?S(null,new Error("Matching for a tree with var() is not supported")):(r&&(o=p(a,e.valueCommonSyntax,e)),r&&o.match||(o=p(a,t.match,e)).match?S(o.match,null,o.iterations):S(null,new i(o.reason,t.syntax,n,o),o.iterations))}var w=function(e,t,n){if(this.valueCommonSyntax=g,this.syntax=t,this.generic=!1,this.atrules={},this.properties={},this.types={},this.structure=n||h(e),e){if(e.types)for(var r in e.types)this.addType_(r,e.types[r]);if(e.generic)for(var r in this.generic=!0,a)this.addType_(r,a[r]);if(e.atrules)for(var r in e.atrules)this.addAtrule_(r,e.atrules[r]);if(e.properties)for(var r in e.properties)this.addProperty_(r,e.properties[r])}};w.prototype={structure:{},checkStructure:function(e){function t(e,t){r.push({node:e,message:t})}var n=this.structure,r=[];return this.syntax.walk(e,(function(e){n.hasOwnProperty(e.type)?n[e.type].check(e,t):t(e,"Unknown node type `"+e.type+"`")})),!!r.length&&r},createDescriptor:function(e,t,n,r=null){var i={type:t,name:n},o={type:t,name:n,parent:r,syntax:null,match:null};return"function"==typeof e?o.match=d(e,i):("string"==typeof e?Object.defineProperty(o,"syntax",{get:function(){return Object.defineProperty(o,"syntax",{value:s(e)}),o.syntax}}):o.syntax=e,Object.defineProperty(o,"match",{get:function(){return Object.defineProperty(o,"match",{value:d(o.syntax,i)}),o.match}})),o},addAtrule_:function(e,t){t&&(this.atrules[e]={type:"Atrule",name:e,prelude:t.prelude?this.createDescriptor(t.prelude,"AtrulePrelude",e):null,descriptors:t.descriptors?Object.keys(t.descriptors).reduce((n,r)=>(n[r]=this.createDescriptor(t.descriptors[r],"AtruleDescriptor",r,e),n),{}):null})},addProperty_:function(e,t){t&&(this.properties[e]=this.createDescriptor(t,"Property",e))},addType_:function(e,t){t&&(this.types[e]=this.createDescriptor(t,"Type",e),t===a["-ms-legacy-expression"]&&(this.valueCommonSyntax=v))},checkAtruleName:function(e){if(!this.getAtrule(e))return new r("Unknown at-rule","@"+e)},checkAtrulePrelude:function(e,t){let n=this.checkAtruleName(e);if(n)return n;var r=this.getAtrule(e);return!r.prelude&&t?new SyntaxError("At-rule `@"+e+"` should not contain a prelude"):r.prelude&&!t?new SyntaxError("At-rule `@"+e+"` should contain a prelude"):void 0},checkAtruleDescriptorName:function(e,t){let n=this.checkAtruleName(e);if(n)return n;var i=this.getAtrule(e),a=o.keyword(t);return i.descriptors?i.descriptors[a.name]||i.descriptors[a.basename]?void 0:new r("Unknown at-rule descriptor",t):new SyntaxError("At-rule `@"+e+"` has no known descriptors")},checkPropertyName:function(e){return o.property(e).custom?new Error("Lexer matching doesn't applicable for custom properties"):this.getProperty(e)?void 0:new r("Unknown property",e)},matchAtrulePrelude:function(e,t){var n=this.checkAtrulePrelude(e,t);return n?S(null,n):t?x(this,this.getAtrule(e).prelude,t,!1):S(null,null)},matchAtruleDescriptor:function(e,t,n){var r=this.checkAtruleDescriptorName(e,t);if(r)return S(null,r);var i=this.getAtrule(e),a=o.keyword(t);return x(this,i.descriptors[a.name]||i.descriptors[a.basename],n,!1)},matchDeclaration:function(e){return"Declaration"!==e.type?S(null,new Error("Not a Declaration node")):this.matchProperty(e.property,e.value)},matchProperty:function(e,t){var n=this.checkPropertyName(e);return n?S(null,n):x(this,this.getProperty(e),t,!0)},matchType:function(e,t){var n=this.getType(e);return n?x(this,n,t,!1):S(null,new r("Unknown type",e))},match:function(e,t){return"string"==typeof e||e&&e.type?("string"!=typeof e&&e.match||(e=this.createDescriptor(e,"Type","anonymous")),x(this,e,t,!1)):S(null,new r("Bad syntax"))},findValueFragments:function(e,t,n,r){return m.matchFragments(this,t,this.matchProperty(e,t),n,r)},findDeclarationValueFragments:function(e,t,n){return m.matchFragments(this,e.value,this.matchDeclaration(e),t,n)},findAllFragments:function(e,t,n){var r=[];return this.syntax.walk(e,{visit:"Declaration",enter:function(e){r.push.apply(r,this.findDeclarationValueFragments(e,t,n))}.bind(this)}),r},getAtrule:function(e,t=!0){var n=o.keyword(e);return(n.vendor&&t?this.atrules[n.name]||this.atrules[n.basename]:this.atrules[n.name])||null},getAtrulePrelude:function(e,t=!0){const n=this.getAtrule(e,t);return n&&n.prelude||null},getAtruleDescriptor:function(e,t){return this.atrules.hasOwnProperty(e)&&this.atrules.declarators&&this.atrules[e].declarators[t]||null},getProperty:function(e,t=!0){var n=o.property(e);return(n.vendor&&t?this.properties[n.name]||this.properties[n.basename]:this.properties[n.name])||null},getType:function(e){return this.types.hasOwnProperty(e)?this.types[e]:null},validate:function(){function e(r,i,o,a){if(o.hasOwnProperty(i))return o[i];o[i]=!1,null!==a.syntax&&u(a.syntax,(function(a){if("Type"===a.type||"Property"===a.type){var s="Type"===a.type?r.types:r.properties,l="Type"===a.type?t:n;s.hasOwnProperty(a.name)&&!e(r,a.name,l,s[a.name])||(o[i]=!0)}}),this)}var t={},n={};for(var r in this.types)e(this,r,t,this.types[r]);for(var r in this.properties)e(this,r,n,this.properties[r]);return t=Object.keys(t).filter((function(e){return t[e]})),n=Object.keys(n).filter((function(e){return n[e]})),t.length||n.length?{types:t,properties:n}:null},dump:function(e,t){return{generic:this.generic,types:y(this.types,!t,e),properties:y(this.properties,!t,e),atrules:b(this.atrules,!t,e)}},toString:function(){return JSON.stringify(this.dump())}},e.exports=w},mXTQ:function(e,t,n){var r=n("Po9p"),i=n("33yf"),o=n("eIV0"),a=n("tQxF"),s=n("GHqe");function l(e){var t,n,r,i,o,a={};for(r in e)for(i=0,o=(t=e[r]).sources.length;i<o;i++)n=t.sources[i],r=t.sourceContentFor(n,!0),a[n]=r;return a}function u(e){var t,n,r,i=Object.keys(e.uriToSource);for(r=i.length;e.index<r;e.index++){if(t=i[e.index],!(n=e.uriToSource[t]))return c(t,e);e.sourcesContent[t]=n}return e.callback()}function c(e,t){var n;return s(e)?function(e,t,n){var r=o(e,!0,t.inline),i=!a(e);if(t.localOnly)return t.warnings.push('Cannot fetch remote resource from "'+e+'" as no callback given.'),n(null);if(i)return t.warnings.push('Cannot fetch "'+e+'" as no protocol given.'),n(null);if(!r)return t.warnings.push('Cannot fetch "'+e+'" as resource is not allowed.'),n(null);t.fetch(e,t.inlineRequest,t.inlineTimeout,(function(r,i){r&&t.warnings.push('Missing original source at "'+e+'" - '+r),n(i)}))}(e,t,(function(n){return t.index++,t.sourcesContent[e]=n,u(t)})):(n=function(e,t){var n=o(e,!1,t.inline),a=i.resolve(t.rebaseTo,e);if(!r.existsSync(a)||!r.statSync(a).isFile())return t.warnings.push('Ignoring local source map at "'+a+'" as resource is missing.'),null;if(!n)return t.warnings.push('Cannot fetch "'+a+'" as resource is not allowed.'),null;return r.readFileSync(a,"utf8")}(e,t),t.index++,t.sourcesContent[e]=n,u(t))}e.exports=function(e,t){var n={callback:t,fetch:e.options.fetch,index:0,inline:e.options.inline,inlineRequest:e.options.inlineRequest,inlineTimeout:e.options.inlineTimeout,localOnly:e.localOnly,rebaseTo:e.options.rebaseTo,sourcesContent:e.sourcesContent,uriToSource:l(e.inputSourceMapTracker.all()),warnings:e.warnings};return e.options.sourceMap&&e.options.sourceMapInlineSources?u(n):t()}},mb2m:function(e,t,n){var r=n("vd7W").TYPE.Number;e.exports={name:"Number",structure:{value:String},parse:function(){return{type:"Number",loc:this.getLocation(this.scanner.tokenStart,this.scanner.tokenEnd),value:this.consume(r)}},generate:function(e){this.chunk(e.value)}}},mlwX:function(e,t,n){(function(t){var r=n("33yf");e.exports=function(e){return e?r.resolve(e):t.cwd()}}).call(this,n("8oxB"))},"n/gj":function(e,t,n){e.exports={getNode:n("7GzS"),expression:n("a3y9"),var:n("+Kd2")}},n6Bp:function(e,t){e.exports={name:"Nth",structure:{nth:["AnPlusB","Identifier"],selector:["SelectorList",null]},parse:function(e){this.scanner.skipSC();var t,n=this.scanner.tokenStart,r=n,i=null;return t=this.scanner.lookupValue(0,"odd")||this.scanner.lookupValue(0,"even")?this.Identifier():this.AnPlusB(),this.scanner.skipSC(),e&&this.scanner.lookupValue(0,"of")?(this.scanner.next(),i=this.SelectorList(),this.needPositions&&(r=this.getLastListNode(i.children).loc.end.offset)):this.needPositions&&(r=t.loc.end.offset),{type:"Nth",loc:this.getLocation(n,r),nth:t,selector:i}},generate:function(e){this.node(e.nth),null!==e.selector&&(this.chunk(" of "),this.node(e.selector))}}},nVkC:function(e,t){var n=new RegExp("^(\\-moz\\-|\\-webkit\\-)?calc\\([^\\)]+\\)$","i"),r=/[0-9]/,i=new RegExp("^(var\\(\\-\\-[^\\)]+\\)|[A-Z]+(\\-|[A-Z]|[0-9])+\\(.*?\\)|\\-(\\-|[A-Z]|[0-9])+\\(.*?\\))$","i"),o=/^hsl\(\s{0,31}[\-\.]?\d+\s{0,31},\s{0,31}\.?\d+%\s{0,31},\s{0,31}\.?\d+%\s{0,31}\)|hsla\(\s{0,31}[\-\.]?\d+\s{0,31},\s{0,31}\.?\d+%\s{0,31},\s{0,31}\.?\d+%\s{0,31},\s{0,31}\.?\d+\s{0,31}\)$/i,a=/^(\-[a-z0-9_][a-z0-9\-_]*|[a-z][a-z0-9\-_]*)$/i,s=/^[a-z]+$/i,l=/^-([a-z0-9]|-)*$/i,u=/^rgb\(\s{0,31}[\d]{1,3}\s{0,31},\s{0,31}[\d]{1,3}\s{0,31},\s{0,31}[\d]{1,3}\s{0,31}\)|rgba\(\s{0,31}[\d]{1,3}\s{0,31},\s{0,31}[\d]{1,3}\s{0,31},\s{0,31}[\d]{1,3}\s{0,31},\s{0,31}[\.\d]+\s{0,31}\)$/i,c=/^(cubic\-bezier|steps)\([^\)]+\)$/,d=["ms","s"],p=/^url\([\s\S]+\)$/i,f=new RegExp("^var\\(\\-\\-[^\\)]+\\)$","i"),m=/^#[0-9a-f]{8}$/i,h=/^#[0-9a-f]{4}$/i,g=/^#[0-9a-f]{6}$/i,v=/^#[0-9a-f]{3}$/i,y={"^":["inherit","initial","unset"],"*-style":["auto","dashed","dotted","double","groove","hidden","inset","none","outset","ridge","solid"],"*-timing-function":["ease","ease-in","ease-in-out","ease-out","linear","step-end","step-start"],"animation-direction":["alternate","alternate-reverse","normal","reverse"],"animation-fill-mode":["backwards","both","forwards","none"],"animation-iteration-count":["infinite"],"animation-name":["none"],"animation-play-state":["paused","running"],"background-attachment":["fixed","inherit","local","scroll"],"background-clip":["border-box","content-box","inherit","padding-box","text"],"background-origin":["border-box","content-box","inherit","padding-box"],"background-position":["bottom","center","left","right","top"],"background-repeat":["no-repeat","inherit","repeat","repeat-x","repeat-y","round","space"],"background-size":["auto","cover","contain"],"border-collapse":["collapse","inherit","separate"],bottom:["auto"],clear:["both","left","none","right"],color:["transparent"],cursor:["all-scroll","auto","col-resize","crosshair","default","e-resize","help","move","n-resize","ne-resize","no-drop","not-allowed","nw-resize","pointer","progress","row-resize","s-resize","se-resize","sw-resize","text","vertical-text","w-resize","wait"],display:["block","inline","inline-block","inline-table","list-item","none","table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row","table-row-group"],float:["left","none","right"],left:["auto"],font:["caption","icon","menu","message-box","small-caption","status-bar","unset"],"font-size":["large","larger","medium","small","smaller","x-large","x-small","xx-large","xx-small"],"font-stretch":["condensed","expanded","extra-condensed","extra-expanded","normal","semi-condensed","semi-expanded","ultra-condensed","ultra-expanded"],"font-style":["italic","normal","oblique"],"font-variant":["normal","small-caps"],"font-weight":["100","200","300","400","500","600","700","800","900","bold","bolder","lighter","normal"],"line-height":["normal"],"list-style-position":["inside","outside"],"list-style-type":["armenian","circle","decimal","decimal-leading-zero","disc","decimal|disc","georgian","lower-alpha","lower-greek","lower-latin","lower-roman","none","square","upper-alpha","upper-latin","upper-roman"],overflow:["auto","hidden","scroll","visible"],position:["absolute","fixed","relative","static"],right:["auto"],"text-align":["center","justify","left","left|right","right"],"text-decoration":["line-through","none","overline","underline"],"text-overflow":["clip","ellipsis"],top:["auto"],"vertical-align":["baseline","bottom","middle","sub","super","text-bottom","text-top","top"],visibility:["collapse","hidden","visible"],"white-space":["normal","nowrap","pre"],width:["inherit","initial","medium","thick","thin"]},b=["%","ch","cm","em","ex","in","mm","pc","pt","px","rem","vh","vm","vmax","vmin","vw"];function S(e){return"auto"!=e&&(E("color")(e)||function(e){return v.test(e)||h.test(e)||g.test(e)||m.test(e)}(e)||x(e)||function(e){return s.test(e)}(e))}function x(e){return A(e)||C(e)}function w(e){return n.test(e)}function k(e){return i.test(e)}function C(e){return o.test(e)}function O(e){return a.test(e)}function _(e){return"none"==e||"inherit"==e||M(e)}function E(e){return function(t){return y[e].indexOf(t)>-1}}function T(e){return W(e)==e.length}function A(e){return u.test(e)}function P(e){return l.test(e)}function R(e){return T(e)&&parseFloat(e)>=0}function z(e){return f.test(e)}function L(e){var t=W(e);return t==e.length&&0===parseInt(e)||t>-1&&d.indexOf(e.slice(t+1))>-1}function j(e,t){var n=W(t);return n==t.length&&0===parseInt(t)||n>-1&&e.indexOf(t.slice(n+1))>-1||"auto"==t||"inherit"==t}function M(e){return p.test(e)}function B(e){return"auto"==e||T(e)||E("^")(e)}function W(e){var t,n,i,o=!1,a=!1;for(n=0,i=e.length;n<i;n++)if(t=e[n],0!==n||"+"!=t&&"-"!=t){if(n>0&&a&&("+"==t||"-"==t))return n-1;if("."!=t||o){if("."==t&&o)return n-1;if(r.test(t))continue;return n-1}o=!0}else a=!0;return n}e.exports=function(e){var t,n=b.slice(0).filter((function(t){return!(t in e.units)||!0===e.units[t]}));return{colorOpacity:e.colors.opacity,isAnimationDirectionKeyword:E("animation-direction"),isAnimationFillModeKeyword:E("animation-fill-mode"),isAnimationIterationCountKeyword:E("animation-iteration-count"),isAnimationNameKeyword:E("animation-name"),isAnimationPlayStateKeyword:E("animation-play-state"),isTimingFunction:(t=E("*-timing-function"),function(e){return t(e)||c.test(e)}),isBackgroundAttachmentKeyword:E("background-attachment"),isBackgroundClipKeyword:E("background-clip"),isBackgroundOriginKeyword:E("background-origin"),isBackgroundPositionKeyword:E("background-position"),isBackgroundRepeatKeyword:E("background-repeat"),isBackgroundSizeKeyword:E("background-size"),isColor:S,isColorFunction:x,isDynamicUnit:w,isFontKeyword:E("font"),isFontSizeKeyword:E("font-size"),isFontStretchKeyword:E("font-stretch"),isFontStyleKeyword:E("font-style"),isFontVariantKeyword:E("font-variant"),isFontWeightKeyword:E("font-weight"),isFunction:k,isGlobal:E("^"),isHslColor:C,isIdentifier:O,isImage:_,isKeyword:E,isLineHeightKeyword:E("line-height"),isListStylePositionKeyword:E("list-style-position"),isListStyleTypeKeyword:E("list-style-type"),isNumber:T,isPrefixed:P,isPositiveNumber:R,isRgbColor:A,isStyleKeyword:E("*-style"),isTime:L,isUnit:j.bind(null,n),isUrl:M,isVariable:z,isWidth:E("width"),isZIndex:B}}},nWBf:function(e,t,n){var r=n("gvu7"),i=/^\(/,o=/\)$/,a=/^@import/i,s=/['"]\s*/,l=/\s*['"]/,u=/^url\(\s*/i,c=/\s*\)/i;e.exports=function(e){var t,n;return t=e.replace(a,"").trim().replace(u,"(").replace(c,")").replace(s,"").replace(l,""),[(n=r(t," "))[0].replace(i,"").replace(o,""),n.slice(1).join(" ")]}},oS6X:function(e,t,n){var r=n("+QJf"),i=n("tZY0"),o=n("Askw"),a=n("cZJh"),s=n("y2yN"),l=n("6hmj"),u=n("yrjp"),c=n("17hS"),d=n("z0LN"),p=n("ABlQ"),f=n("yF14"),m=n("Nwoi").OptimizationLevel,h=n("dzo0");function g(e,t,n){var v,y,b=t.options.level[m.Two];if(function(e,t){for(var n=0,r=e.length;n<r;n++){var i=e[n];if(i[0]==h.NESTED_BLOCK){var o=/@(-moz-|-o-|-webkit-)?keyframes/.test(i[1][0][1]);g(i[2],t,!o)}}}(e,t),function e(t,n){for(var r=0,i=t.length;r<i;r++){var o=t[r];switch(o[0]){case h.RULE:f(o[2],!0,!0,n);break;case h.NESTED_BLOCK:e(o[2],n)}}}(e,t),b.removeDuplicateRules&&c(e,t),b.mergeAdjacentRules&&r(e,t),b.reduceNonAdjacentRules&&s(e,t),b.mergeNonAdjacentRules&&"body"!=b.mergeNonAdjacentRules&&a(e,t),b.mergeNonAdjacentRules&&"selector"!=b.mergeNonAdjacentRules&&o(e,t),b.restructureRules&&b.mergeAdjacentRules&&n&&(p(e,t),r(e,t)),b.restructureRules&&!b.mergeAdjacentRules&&n&&p(e,t),b.removeDuplicateFontRules&&l(e,t),b.removeDuplicateMediaBlocks&&u(e,t),b.removeUnusedAtRules&&d(e,t),b.mergeMedia)for(y=(v=i(e,t)).length-1;y>=0;y--)g(v[y][2],t,!1);return b.removeEmpty&&function e(t){for(var n=0,r=t.length;n<r;n++){var i=t[n],o=!1;switch(i[0]){case h.RULE:o=0===i[1].length||0===i[2].length;break;case h.NESTED_BLOCK:e(i[2]),o=0===i[2].length;break;case h.AT_RULE:o=0===i[1].length;break;case h.AT_RULE_BLOCK:o=0===i[2].length}o&&(t.splice(n,1),n--,r--)}}(e),e}e.exports=g},oY9k:function(e,t,n){"use strict";var r=function(){if("undefined"!=typeof self)return self;if("undefined"!=typeof window)return window;if(void 0!==r)return r;throw new Error("unable to locate global object")}();e.exports=t=r.fetch,r.fetch&&(t.default=r.fetch.bind(r)),t.Headers=r.Headers,t.Request=r.Request,t.Response=r.Response},oYUb:function(e,t,n){e.exports={parseContext:{default:"StyleSheet",stylesheet:"StyleSheet",atrule:"Atrule",atrulePrelude:function(e){return this.AtrulePrelude(e.atrule?String(e.atrule):null)},mediaQueryList:"MediaQueryList",mediaQuery:"MediaQuery",rule:"Rule",selectorList:"SelectorList",selector:"Selector",block:function(){return this.Block(!0)},declarationList:"DeclarationList",declaration:"Declaration",value:"Value"},scope:n("82qP"),atrule:n("6dTv"),pseudo:n("avj0"),node:n("585i")}},ofj6:function(e,t,n){var r=n("O36p");e.exports={matchFragments:function(e,t,n,i,o){var a=[];return null!==n.matched&&function n(s){if(null!==s.syntax&&s.syntax.type===i&&s.syntax.name===o){var l=function e(t){return"node"in t?t.node:e(t.match[0])}(s),u=function e(t){return"node"in t?t.node:e(t.match[t.match.length-1])}(s);e.syntax.walk(t,(function(e,t,n){if(e===l){var i=new r;do{if(i.appendData(t.data),t.data===u)break;t=t.next}while(null!==t);a.push({parent:n,nodes:i})}}))}Array.isArray(s.match)&&s.match.forEach(n)}(n.matched),a}}},oikq:function(e){e.exports=JSON.parse('{"_args":[["css-tree@1.1.3","/home/runner/work/jetpack-boost/jetpack-boost"]],"_from":"css-tree@1.1.3","_id":"css-tree@1.1.3","_inBundle":false,"_integrity":"sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==","_location":"/css-tree","_phantomChildren":{},"_requested":{"type":"version","registry":true,"raw":"css-tree@1.1.3","name":"css-tree","escapedName":"css-tree","rawSpec":"1.1.3","saveSpec":null,"fetchSpec":"1.1.3"},"_requiredBy":["/csso","/jetpack-boost-critical-css-gen"],"_resolved":"https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz","_spec":"1.1.3","_where":"/home/runner/work/jetpack-boost/jetpack-boost","author":{"name":"Roman Dvornov","email":"rdvornov@gmail.com","url":"https://github.com/lahmatiy"},"bugs":{"url":"https://github.com/csstree/csstree/issues"},"dependencies":{"mdn-data":"2.0.14","source-map":"^0.6.1"},"description":"A tool set for CSS: fast detailed parser (CSS → AST), walker (AST traversal), generator (AST → CSS) and lexer (validation and matching) based on specs and browser implementations","devDependencies":{"@rollup/plugin-commonjs":"^11.0.2","@rollup/plugin-json":"^4.0.2","@rollup/plugin-node-resolve":"^7.1.1","coveralls":"^3.0.9","eslint":"^6.8.0","json-to-ast":"^2.1.0","mocha":"^6.2.3","nyc":"^14.1.1","rollup":"^1.32.1","rollup-plugin-terser":"^5.3.0"},"engines":{"node":">=8.0.0"},"files":["data","dist","lib"],"homepage":"https://github.com/csstree/csstree#readme","jsdelivr":"dist/csstree.min.js","keywords":["css","ast","tokenizer","parser","walker","lexer","generator","utils","syntax","validation"],"license":"MIT","main":"lib/index.js","name":"css-tree","repository":{"type":"git","url":"git+https://github.com/csstree/csstree.git"},"scripts":{"build":"rollup --config","coverage":"nyc npm test","coveralls":"nyc report --reporter=text-lcov | coveralls","hydrogen":"node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --trace_hydrogen_file=code.cfg --print-opt-code bin/parse --stat -o /dev/null","lint":"eslint data lib scripts test && node scripts/review-syntax-patch --lint && node scripts/update-docs --lint","lint-and-test":"npm run lint && npm test","prepublishOnly":"npm run build","review:syntax-patch":"node scripts/review-syntax-patch","test":"mocha --reporter progress","travis":"nyc npm run lint-and-test && npm run coveralls","update:docs":"node scripts/update-docs"},"unpkg":"dist/csstree.min.js","version":"1.1.3"}')},pEOp:function(e,t,n){var r=n("Ttul"),i=n("dzo0"),o=n("7nlT"),a="block",s="comment",l="double-quote",u="rule",c="single-quote",d=["@charset","@import"],p=["@-moz-document","@document","@-moz-keyframes","@-ms-keyframes","@-o-keyframes","@-webkit-keyframes","@keyframes","@media","@supports"],f=/\/\* clean\-css ignore:end \*\/$/,m=/^\/\* clean\-css ignore:start \*\//,h=["@bottom-center","@bottom-left","@bottom-left-corner","@bottom-right","@bottom-right-corner","@left-bottom","@left-middle","@left-top","@right-bottom","@right-middle","@right-top","@top-center","@top-left","@top-left-corner","@top-right","@top-right-corner"],g=["@footnote","@footnotes","@left","@page-float-bottom","@page-float-top","@right"],v=/^\[\s{0,31}\d+\s{0,31}\]$/,y=/[\s\(]/,b=/[\s|\}]*$/;function S(e){return m.test(e.join("")+r.FORWARD_SLASH)}function x(e){return f.test(e.join("")+r.FORWARD_SLASH)}function w(e,t,n,r){var i=e[2];return n.inputSourceMapTracker.isTracking(i)?n.inputSourceMapTracker.originalPositionFor(e,t.length,r):e}function k(e){var t=e[0]==r.AT||e[0]==r.UNDERSCORE,n=e.join("").split(y)[0];return t&&p.indexOf(n)>-1?i.NESTED_BLOCK:t&&d.indexOf(n)>-1?i.AT_RULE:t?i.AT_RULE_BLOCK:i.RULE}function C(e){return e==i.RULE?i.RULE_SCOPE:e==i.NESTED_BLOCK?i.NESTED_BLOCK_SCOPE:e==i.AT_RULE_BLOCK?i.AT_RULE_BLOCK_SCOPE:void 0}function O(e){var t=e.join("").trim();return h.indexOf(t)>-1||g.indexOf(t)>-1}function _(e){return v.test(e.join("")+r.CLOSE_SQUARE_BRACKET)}e.exports=function(e,t){return function e(t,n,d,p){for(var f,m,h,g,v,y,E,T,A,P,R,z,L,j,M,B,W=[],N=W,I=[],D=[],U=d.level,q=[],F=[],V=[],G=0,H=!1,K=!1,$=!1,Y=!1,Q=!1,X=d.position;X.index<t.length;X.index++){var J=t[X.index];if(E=U==c||U==l,T=J==r.SPACE||J==r.TAB,A=J==r.NEW_LINE_NIX,P=J==r.NEW_LINE_NIX&&t[X.index-1]==r.CARRIAGE_RETURN,R=J==r.CARRIAGE_RETURN&&t[X.index+1]&&t[X.index+1]!=r.NEW_LINE_NIX,z=!K&&U!=s&&!E&&J==r.ASTERISK&&t[X.index-1]==r.FORWARD_SLASH,j=!H&&!E&&J==r.FORWARD_SLASH&&t[X.index-1]==r.ASTERISK,L=U==s&&j,G=Math.max(G,0),g=0===F.length?[X.line,X.column,X.source]:g,M)F.push(J);else if(L||U!=s)if(z||L||!$)if(z&&(U==a||U==u)&&F.length>1)D.push(g),F.push(J),V.push(F.slice(0,F.length-2)),F=F.slice(F.length-2),g=[X.line,X.column-1,X.source],q.push(U),U=s;else if(z)q.push(U),U=s,F.push(J);else if(L&&S(F))v=F.join("").trim()+J,f=[i.COMMENT,v,[w(g,v,n)]],N.push(f),$=!0,g=D.pop()||null,F=V.pop()||[];else if(L&&x(F))v=F.join("")+J,B=v.lastIndexOf(r.FORWARD_SLASH+r.ASTERISK),y=v.substring(0,B),f=[i.RAW,y,[w(g,y,n)]],N.push(f),y=v.substring(B),g=[X.line,X.column-y.length+1,X.source],f=[i.COMMENT,y,[w(g,y,n)]],N.push(f),$=!1,U=q.pop(),g=D.pop()||null,F=V.pop()||[];else if(L)v=F.join("").trim()+J,f=[i.COMMENT,v,[w(g,v,n)]],N.push(f),U=q.pop(),g=D.pop()||null,F=V.pop()||[];else if(j&&t[X.index+1]!=r.ASTERISK)n.warnings.push("Unexpected '*/' at "+o([X.line,X.column,X.source])+"."),F=[];else if(J!=r.SINGLE_QUOTE||E)if(J==r.SINGLE_QUOTE&&U==c)U=q.pop(),F.push(J);else if(J!=r.DOUBLE_QUOTE||E)if(J==r.DOUBLE_QUOTE&&U==l)U=q.pop(),F.push(J);else if(!z&&!L&&J!=r.CLOSE_ROUND_BRACKET&&J!=r.OPEN_ROUND_BRACKET&&U!=s&&!E&&G>0)F.push(J);else if(J!=r.OPEN_ROUND_BRACKET||E||U==s||Y)if(J!=r.CLOSE_ROUND_BRACKET||E||U==s||Y)if(J==r.SEMICOLON&&U==a&&F[0]==r.AT)v=F.join("").trim(),W.push([i.AT_RULE,v,[w(g,v,n)]]),F=[];else if(J==r.COMMA&&U==a&&m)v=F.join("").trim(),m[1].push([C(m[0]),v,[w(g,v,n,m[1].length)]]),F=[];else if(J==r.COMMA&&U==a&&k(F)==i.AT_RULE)F.push(J);else if(J==r.COMMA&&U==a)m=[k(F),[],[]],v=F.join("").trim(),m[1].push([C(m[0]),v,[w(g,v,n,0)]]),F=[];else if(J==r.OPEN_CURLY_BRACKET&&U==a&&m&&m[0]==i.NESTED_BLOCK)v=F.join("").trim(),m[1].push([i.NESTED_BLOCK_SCOPE,v,[w(g,v,n)]]),W.push(m),q.push(U),X.column++,X.index++,F=[],m[2]=e(t,n,d,!0),m=null;else if(J==r.OPEN_CURLY_BRACKET&&U==a&&k(F)==i.NESTED_BLOCK)v=F.join("").trim(),(m=m||[i.NESTED_BLOCK,[],[]])[1].push([i.NESTED_BLOCK_SCOPE,v,[w(g,v,n)]]),W.push(m),q.push(U),X.column++,X.index++,F=[],m[2]=e(t,n,d,!0),m=null;else if(J==r.OPEN_CURLY_BRACKET&&U==a)v=F.join("").trim(),(m=m||[k(F),[],[]])[1].push([C(m[0]),v,[w(g,v,n,m[1].length)]]),N=m[2],W.push(m),q.push(U),U=u,F=[];else if(J==r.OPEN_CURLY_BRACKET&&U==u&&Y)I.push(m),m=[i.PROPERTY_BLOCK,[]],h.push(m),N=m[1],q.push(U),U=u,Y=!1;else if(J==r.OPEN_CURLY_BRACKET&&U==u&&O(F))v=F.join("").trim(),I.push(m),(m=[i.AT_RULE_BLOCK,[],[]])[1].push([i.AT_RULE_BLOCK_SCOPE,v,[w(g,v,n)]]),N.push(m),N=m[2],q.push(U),U=u,F=[];else if(J!=r.COLON||U!=u||Y)if(J==r.SEMICOLON&&U==u&&h&&I.length>0&&F.length>0&&F[0]==r.AT)v=F.join("").trim(),m[1].push([i.AT_RULE,v,[w(g,v,n)]]),F=[];else if(J==r.SEMICOLON&&U==u&&h&&F.length>0)v=F.join("").trim(),h.push([i.PROPERTY_VALUE,v,[w(g,v,n)]]),h=null,Y=!1,F=[];else if(J==r.SEMICOLON&&U==u&&h&&0===F.length)h=null,Y=!1;else if(J==r.SEMICOLON&&U==u&&F.length>0&&F[0]==r.AT)v=F.join(""),N.push([i.AT_RULE,v,[w(g,v,n)]]),Y=!1,F=[];else if(J==r.SEMICOLON&&U==u&&Q)Q=!1,F=[];else if(J==r.SEMICOLON&&U==u&&0===F.length);else if(J==r.CLOSE_CURLY_BRACKET&&U==u&&h&&Y&&F.length>0&&I.length>0)v=F.join(""),h.push([i.PROPERTY_VALUE,v,[w(g,v,n)]]),h=null,m=I.pop(),N=m[2],U=q.pop(),Y=!1,F=[];else if(J==r.CLOSE_CURLY_BRACKET&&U==u&&h&&F.length>0&&F[0]==r.AT&&I.length>0)v=F.join(""),m[1].push([i.AT_RULE,v,[w(g,v,n)]]),h=null,m=I.pop(),N=m[2],U=q.pop(),Y=!1,F=[];else if(J==r.CLOSE_CURLY_BRACKET&&U==u&&h&&I.length>0)h=null,m=I.pop(),N=m[2],U=q.pop(),Y=!1;else if(J==r.CLOSE_CURLY_BRACKET&&U==u&&h&&F.length>0)v=F.join(""),h.push([i.PROPERTY_VALUE,v,[w(g,v,n)]]),h=null,m=I.pop(),N=W,U=q.pop(),Y=!1,F=[];else if(J==r.CLOSE_CURLY_BRACKET&&U==u&&F.length>0&&F[0]==r.AT)h=null,m=null,v=F.join("").trim(),N.push([i.AT_RULE,v,[w(g,v,n)]]),N=W,U=q.pop(),Y=!1,F=[];else if(J==r.CLOSE_CURLY_BRACKET&&U==u&&q[q.length-1]==u)h=null,m=I.pop(),N=m[2],U=q.pop(),Y=!1,Q=!0,F=[];else if(J==r.CLOSE_CURLY_BRACKET&&U==u)h=null,m=null,N=W,U=q.pop(),Y=!1;else if(J==r.CLOSE_CURLY_BRACKET&&U==a&&!p&&X.index<=t.length-1)n.warnings.push("Unexpected '}' at "+o([X.line,X.column,X.source])+"."),F.push(J);else{if(J==r.CLOSE_CURLY_BRACKET&&U==a)break;J==r.OPEN_ROUND_BRACKET&&U==u&&Y?(F.push(J),G++):J==r.CLOSE_ROUND_BRACKET&&U==u&&Y&&1==G?(F.push(J),v=F.join("").trim(),h.push([i.PROPERTY_VALUE,v,[w(g,v,n)]]),G--,F=[]):J==r.CLOSE_ROUND_BRACKET&&U==u&&Y?(F.push(J),G--):J==r.FORWARD_SLASH&&t[X.index+1]!=r.ASTERISK&&U==u&&Y&&F.length>0?(v=F.join("").trim(),h.push([i.PROPERTY_VALUE,v,[w(g,v,n)]]),h.push([i.PROPERTY_VALUE,J,[[X.line,X.column,X.source]]]),F=[]):J==r.FORWARD_SLASH&&t[X.index+1]!=r.ASTERISK&&U==u&&Y?(h.push([i.PROPERTY_VALUE,J,[[X.line,X.column,X.source]]]),F=[]):J==r.COMMA&&U==u&&Y&&F.length>0?(v=F.join("").trim(),h.push([i.PROPERTY_VALUE,v,[w(g,v,n)]]),h.push([i.PROPERTY_VALUE,J,[[X.line,X.column,X.source]]]),F=[]):J==r.COMMA&&U==u&&Y?(h.push([i.PROPERTY_VALUE,J,[[X.line,X.column,X.source]]]),F=[]):J==r.CLOSE_SQUARE_BRACKET&&h&&h.length>1&&F.length>0&&_(F)?(F.push(J),v=F.join("").trim(),h[h.length-1][1]+=v,F=[]):(T||A&&!P)&&U==u&&Y&&h&&F.length>0||P&&U==u&&Y&&h&&F.length>1?(v=F.join("").trim(),h.push([i.PROPERTY_VALUE,v,[w(g,v,n)]]),F=[]):P&&U==u&&Y?F=[]:1==F.length&&P?F.pop():(F.length>0||!T&&!A&&!P&&!R)&&F.push(J)}else v=F.join("").trim(),h=[i.PROPERTY,[i.PROPERTY_NAME,v,[w(g,v,n)]]],N.push(h),Y=!0,F=[];else F.push(J),G--;else F.push(J),G++;else q.push(U),U=l,F.push(J);else q.push(U),U=c,F.push(J);else F.push(J);else F.push(J);M=!M&&J==r.BACK_SLASH,H=z,K=L,X.line=P||A||R?X.line+1:X.line,X.column=P||A||R?0:X.column+1}Y&&n.warnings.push("Missing '}' at "+o([X.line,X.column,X.source])+".");Y&&F.length>0&&(v=F.join("").replace(b,""),h.push([i.PROPERTY_VALUE,v,[w(g,v,n)]]),F=[]);F.length>0&&n.warnings.push("Invalid character(s) '"+F.join("")+"' at "+o(g)+". Ignoring.");return W}(e,t,{level:a,position:{source:t.source||void 0,line:1,column:0,index:0}},!1)}},pHDw:function(e,t){e.exports=function e(t){for(var n=t.slice(0),r=0,i=n.length;r<i;r++)Array.isArray(n[r])&&(n[r]=e(n[r]));return n}},q1tI:function(e,t,n){"use strict";e.exports=n("viRO")},q8iP:function(e,t,n){var r=n("XDwu");e.exports=function(e,t,n){var i=r("SyntaxError",e);return i.input=t,i.offset=n,i.rawMessage=e,i.message=i.rawMessage+"\n "+i.input+"\n--"+new Array((i.offset||i.input.length)+1).join("-")+"^",i}},qKTz:function(e,t,n){(function(t){var r=n("FA6c").SourceMapGenerator,i=n("Pna4").all,o=n("GHqe"),a="win32"==t.platform,s=/\//g;function l(e,t){var n="string"==typeof t,r=n?t:t[1],i=n?null:t[2];(0,e.wrap)(e,r),c(e,r,i),e.output.push(r)}function u(e,t){e.column+t.length>e.format.wrapAt&&(c(e,e.format.breakWith,!1),e.output.push(e.format.breakWith))}function c(e,t,n){var r=t.split("\n");n&&function(e,t){for(var n=0,r=t.length;n<r;n++)d(e,t[n])}(e,n),e.line+=r.length-1,e.column=r.length>1?0:e.column+r.pop().length}function d(e,t){var n=t[0],r=t[1],i=t[2],l=i,u=l||"$stdin";a&&l&&!o(l)&&(u=l.replace(s,"\\")),e.outputMap.addMapping({generated:{line:e.line,column:e.column},source:u,original:{line:n,column:r}}),e.inlineSources&&i in e.sourcesContent&&e.outputMap.setSourceContent(u,e.sourcesContent[i])}e.exports=function(e,t){var n={column:0,format:t.options.format,indentBy:0,indentWith:"",inlineSources:t.options.sourceMapInlineSources,line:1,output:[],outputMap:new r,sourcesContent:t.sourcesContent,spaceAfterClosingBrace:t.options.compatibility.properties.spaceAfterClosingBrace,store:l,wrap:t.options.format.wrapAt?u:function(){}};return i(n,e),{sourceMap:n.outputMap,styles:n.output.join("")}}}).call(this,n("8oxB"))},qQrL:function(e,t){var n=/\-\-.+$/;function r(e){return e.replace(n,"")}e.exports=function(e,t,n){var i,o,a,s,l,u;for(a=0,s=e.length;a<s;a++)for(i=e[a][1],l=0,u=t.length;l<u;l++){if(i==(o=t[l][1]))return!0;if(n&&r(i)==r(o))return!0}return!1}},qfHW:function(e,t,n){(function(e){t.fetch=s(e.fetch)&&s(e.ReadableStream),t.writableStream=s(e.WritableStream),t.abortController=s(e.AbortController),t.blobConstructor=!1;try{new Blob([new ArrayBuffer(1)]),t.blobConstructor=!0}catch(e){}var n;function r(){if(void 0!==n)return n;if(e.XMLHttpRequest){n=new e.XMLHttpRequest;try{n.open("GET",e.XDomainRequest?"/":"https://example.com")}catch(e){n=null}}else n=null;return n}function i(e){var t=r();if(!t)return!1;try{return t.responseType=e,t.responseType===e}catch(e){}return!1}var o=void 0!==e.ArrayBuffer,a=o&&s(e.ArrayBuffer.prototype.slice);function s(e){return"function"==typeof e}t.arraybuffer=t.fetch||o&&i("arraybuffer"),t.msstream=!t.fetch&&a&&i("ms-stream"),t.mozchunkedarraybuffer=!t.fetch&&o&&i("moz-chunked-arraybuffer"),t.overrideMimeType=t.fetch||!!r()&&s(r().overrideMimeType),t.vbArray=s(e.VBArray),n=null}).call(this,n("yLpj"))},qiJe:function(e,t,n){"use strict";var r=n("hwdV").Buffer,i=r.isEncoding||function(e){switch((e=""+e)&&e.toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":case"raw":return!0;default:return!1}};function o(e){var t;switch(this.encoding=function(e){var t=function(e){if(!e)return"utf8";for(var t;;)switch(e){case"utf8":case"utf-8":return"utf8";case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return"utf16le";case"latin1":case"binary":return"latin1";case"base64":case"ascii":case"hex":return e;default:if(t)return;e=(""+e).toLowerCase(),t=!0}}(e);if("string"!=typeof t&&(r.isEncoding===i||!i(e)))throw new Error("Unknown encoding: "+e);return t||e}(e),this.encoding){case"utf16le":this.text=l,this.end=u,t=4;break;case"utf8":this.fillLast=s,t=4;break;case"base64":this.text=c,this.end=d,t=3;break;default:return this.write=p,void(this.end=f)}this.lastNeed=0,this.lastTotal=0,this.lastChar=r.allocUnsafe(t)}function a(e){return e<=127?0:e>>5==6?2:e>>4==14?3:e>>3==30?4:e>>6==2?-1:-2}function s(e){var t=this.lastTotal-this.lastNeed,n=function(e,t,n){if(128!=(192&t[0]))return e.lastNeed=0,"�";if(e.lastNeed>1&&t.length>1){if(128!=(192&t[1]))return e.lastNeed=1,"�";if(e.lastNeed>2&&t.length>2&&128!=(192&t[2]))return e.lastNeed=2,"�"}}(this,e);return void 0!==n?n:this.lastNeed<=e.length?(e.copy(this.lastChar,t,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(e.copy(this.lastChar,t,0,e.length),void(this.lastNeed-=e.length))}function l(e,t){if((e.length-t)%2==0){var n=e.toString("utf16le",t);if(n){var r=n.charCodeAt(n.length-1);if(r>=55296&&r<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=e[e.length-2],this.lastChar[1]=e[e.length-1],n.slice(0,-1)}return n}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=e[e.length-1],e.toString("utf16le",t,e.length-1)}function u(e){var t=e&&e.length?this.write(e):"";if(this.lastNeed){var n=this.lastTotal-this.lastNeed;return t+this.lastChar.toString("utf16le",0,n)}return t}function c(e,t){var n=(e.length-t)%3;return 0===n?e.toString("base64",t):(this.lastNeed=3-n,this.lastTotal=3,1===n?this.lastChar[0]=e[e.length-1]:(this.lastChar[0]=e[e.length-2],this.lastChar[1]=e[e.length-1]),e.toString("base64",t,e.length-n))}function d(e){var t=e&&e.length?this.write(e):"";return this.lastNeed?t+this.lastChar.toString("base64",0,3-this.lastNeed):t}function p(e){return e.toString(this.encoding)}function f(e){return e&&e.length?this.write(e):""}t.StringDecoder=o,o.prototype.write=function(e){if(0===e.length)return"";var t,n;if(this.lastNeed){if(void 0===(t=this.fillLast(e)))return"";n=this.lastNeed,this.lastNeed=0}else n=0;return n<e.length?t?t+this.text(e,n):this.text(e,n):t||""},o.prototype.end=function(e){var t=e&&e.length?this.write(e):"";return this.lastNeed?t+"�":t},o.prototype.text=function(e,t){var n=function(e,t,n){var r=t.length-1;if(r<n)return 0;var i=a(t[r]);if(i>=0)return i>0&&(e.lastNeed=i-1),i;if(--r<n||-2===i)return 0;if((i=a(t[r]))>=0)return i>0&&(e.lastNeed=i-2),i;if(--r<n||-2===i)return 0;if((i=a(t[r]))>=0)return i>0&&(2===i?i=0:e.lastNeed=i-3),i;return 0}(this,e,t);if(!this.lastNeed)return e.toString("utf8",t);this.lastTotal=n;var r=e.length-(n-this.lastNeed);return e.copy(this.lastChar,0,r),e.toString("utf8",t,r)},o.prototype.fillLast=function(e){if(this.lastNeed<=e.length)return e.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);e.copy(this.lastChar,this.lastTotal-this.lastNeed,0,e.length),this.lastNeed-=e.length}},r1XK:function(e,t,n){var r=n("vd7W").TYPE.String;e.exports={name:"String",structure:{value:String},parse:function(){return{type:"String",loc:this.getLocation(this.scanner.tokenStart,this.scanner.tokenEnd),value:this.consume(r)}},generate:function(e){this.chunk(e.value)}}},r36Y:function(e,t,n){"use strict";e.exports=n("Copi")},rJrI:function(e,t,n){var r=n("YQdX").SourceMapGenerator,i=n("G7ev"),o=/(\r?\n)/,a="$$$isSourceNode$$$";function s(e,t,n,r,i){this.children=[],this.sourceContents={},this.line=null==e?null:e,this.column=null==t?null:t,this.source=null==n?null:n,this.name=null==i?null:i,this[a]=!0,null!=r&&this.add(r)}s.fromStringWithSourceMap=function(e,t,n){var r=new s,a=e.split(o),l=0,u=function(){return e()+(e()||"");function e(){return l<a.length?a[l++]:void 0}},c=1,d=0,p=null;return t.eachMapping((function(e){if(null!==p){if(!(c<e.generatedLine)){var t=(n=a[l]||"").substr(0,e.generatedColumn-d);return a[l]=n.substr(e.generatedColumn-d),d=e.generatedColumn,f(p,t),void(p=e)}f(p,u()),c++,d=0}for(;c<e.generatedLine;)r.add(u()),c++;if(d<e.generatedColumn){var n=a[l]||"";r.add(n.substr(0,e.generatedColumn)),a[l]=n.substr(e.generatedColumn),d=e.generatedColumn}p=e}),this),l<a.length&&(p&&f(p,u()),r.add(a.splice(l).join(""))),t.sources.forEach((function(e){var o=t.sourceContentFor(e);null!=o&&(null!=n&&(e=i.join(n,e)),r.setSourceContent(e,o))})),r;function f(e,t){if(null===e||void 0===e.source)r.add(t);else{var o=n?i.join(n,e.source):e.source;r.add(new s(e.originalLine,e.originalColumn,o,t,e.name))}}},s.prototype.add=function(e){if(Array.isArray(e))e.forEach((function(e){this.add(e)}),this);else{if(!e[a]&&"string"!=typeof e)throw new TypeError("Expected a SourceNode, string, or an array of SourceNodes and strings. Got "+e);e&&this.children.push(e)}return this},s.prototype.prepend=function(e){if(Array.isArray(e))for(var t=e.length-1;t>=0;t--)this.prepend(e[t]);else{if(!e[a]&&"string"!=typeof e)throw new TypeError("Expected a SourceNode, string, or an array of SourceNodes and strings. Got "+e);this.children.unshift(e)}return this},s.prototype.walk=function(e){for(var t,n=0,r=this.children.length;n<r;n++)(t=this.children[n])[a]?t.walk(e):""!==t&&e(t,{source:this.source,line:this.line,column:this.column,name:this.name})},s.prototype.join=function(e){var t,n,r=this.children.length;if(r>0){for(t=[],n=0;n<r-1;n++)t.push(this.children[n]),t.push(e);t.push(this.children[n]),this.children=t}return this},s.prototype.replaceRight=function(e,t){var n=this.children[this.children.length-1];return n[a]?n.replaceRight(e,t):"string"==typeof n?this.children[this.children.length-1]=n.replace(e,t):this.children.push("".replace(e,t)),this},s.prototype.setSourceContent=function(e,t){this.sourceContents[i.toSetString(e)]=t},s.prototype.walkSourceContents=function(e){for(var t=0,n=this.children.length;t<n;t++)this.children[t][a]&&this.children[t].walkSourceContents(e);var r=Object.keys(this.sourceContents);for(t=0,n=r.length;t<n;t++)e(i.fromSetString(r[t]),this.sourceContents[r[t]])},s.prototype.toString=function(){var e="";return this.walk((function(t){e+=t})),e},s.prototype.toStringWithSourceMap=function(e){var t={code:"",line:1,column:0},n=new r(e),i=!1,o=null,a=null,s=null,l=null;return this.walk((function(e,r){t.code+=e,null!==r.source&&null!==r.line&&null!==r.column?(o===r.source&&a===r.line&&s===r.column&&l===r.name||n.addMapping({source:r.source,original:{line:r.line,column:r.column},generated:{line:t.line,column:t.column},name:r.name}),o=r.source,a=r.line,s=r.column,l=r.name,i=!0):i&&(n.addMapping({generated:{line:t.line,column:t.column}}),o=null,i=!1);for(var u=0,c=e.length;u<c;u++)10===e.charCodeAt(u)?(t.line++,t.column=0,u+1===c?(o=null,i=!1):i&&n.addMapping({source:r.source,original:{line:r.line,column:r.column},generated:{line:t.line,column:t.column},name:r.name})):t.column++})),this.walkSourceContents((function(e,t){n.setSourceContent(e,t)})),{code:t.code,map:n}},t.SourceNode=s},rvZx:function(e,t){e.exports=function(e){return e||5e3}},s4NR:function(e,t,n){"use strict";t.decode=t.parse=n("kd2E"),t.encode=t.stringify=n("4JlD")},sEUW:function(e,t,n){var r=n("nWBf"),i=n("2q0v"),o=n("KJPY"),a=n("dzo0"),s=n("Nyyv"),l=/^\/\*# sourceMappingURL=(\S+) \*\/$/;function u(e,t,n){if(s(e[1])){var a=r(e[1]),l=o(a[0],n),u=a[1];e[1]=i(l,u)}}function c(e,t){var n=l.exec(e[1]);n&&-1===n[1].indexOf("data:")&&(e[1]=e[1].replace(n[1],o(n[1],t,!0)))}function d(e,t,n){var r,i,a,s,l,u;for(a=0,s=e.length;a<s;a++)for(l=2,u=(r=e[a]).length;l<u;l++)i=r[l][1],t.isUrl(i)&&(r[l][1]=o(i,n))}e.exports=function(e,t,n,r){return t?function e(t,n,r){var i,o,s;for(o=0,s=t.length;o<s;o++)switch((i=t[o])[0]){case a.AT_RULE:u(i,n,r);break;case a.AT_RULE_BLOCK:d(i[2],n,r);break;case a.COMMENT:c(i,r);break;case a.NESTED_BLOCK:e(i[2],n,r);break;case a.RULE:d(i[2],n,r)}return t}(e,n,r):function(e,t,n){var r,i,o;for(i=0,o=e.length;i<o;i++)switch((r=e[i])[0]){case a.AT_RULE:u(r,t,n)}return e}(e,n,r)}},sSEQ:function(e,t,n){var r=n("lLKM"),i=n("wpTd"),o=n("xGCa"),a=n("MFAA"),s=n("fn/D"),l=n("MD6V"),u=n("Ybe4"),c=n("9B+R"),d=n("LZG9"),p=n("QC34"),f=n("m4yl").all,m=n("Nwoi").OptimizationLevel,h=n("dzo0"),g=n("Ttul"),v=n("7nlT"),y=n("gvu7"),b=n("cj6p").rules,S=new RegExp("^@charset","i"),x=n("fELk").DEFAULT,w=/(?:^|\s|\()(-?\d+)px/,k=/^(\-?[\d\.]+)(m?s)$/,C=/[0-9a-f]/i,O=/^(?:\-chrome\-|\-[\w\-]+\w|\w[\w\-]+\w|\-\-\S+)$/,_=/^@import/i,E=/^('.*'|".*")$/,T=/^['"][a-zA-Z][a-zA-Z\d\-_]+['"]$/,A=/^url\(/i,P=/^local\(/i,R=/^--\S+$/;function z(e){return P.test(e)}function L(e){return e&&"-"==e[1][0]&&parseFloat(e[1])<0}function j(e){return E.test(e)}function M(e){return A.test(e)}function B(e){return e.replace(A,"url(").replace(/\\?\n|\\?\r\n/g,"")}function W(e){var t=e.value;1==t.length&&"none"==t[0][1]&&(t[0][1]="0 0"),1==t.length&&"transparent"==t[0][1]&&(t[0][1]="0 0")}function N(e){var t,n=e.value;3==n.length&&"/"==n[1][1]&&n[0][1]==n[2][1]?t=1:5==n.length&&"/"==n[2][1]&&n[0][1]==n[3][1]&&n[1][1]==n[4][1]?t=2:7==n.length&&"/"==n[3][1]&&n[0][1]==n[4][1]&&n[1][1]==n[5][1]&&n[2][1]==n[6][1]?t=3:9==n.length&&"/"==n[4][1]&&n[0][1]==n[5][1]&&n[1][1]==n[6][1]&&n[2][1]==n[7][1]&&n[3][1]==n[8][1]&&(t=4),t&&(e.value.splice(t),e.dirty=!0)}function I(e,t,n){return t.match(/#|rgb|hsl/gi)?(t=t.replace(/(rgb|hsl)a?\((\-?\d+),(\-?\d+\%?),(\-?\d+\%?),(0*[1-9]+[0-9]*(\.?\d*)?)\)/gi,(function(e,t,n,r,i,o){return parseInt(o,10)>=1?t+"("+[n,r,i].join(",")+")":e})).replace(/rgb\((\-?\d+),(\-?\d+),(\-?\d+)\)/gi,(function(e,t,n,r){return o(t,n,r)})).replace(/hsl\((-?\d+),(-?\d+)%?,(-?\d+)%?\)/gi,(function(e,t,n,r){return i(t,n,r)})).replace(/(^|[^='"])#([0-9a-f]{6})/gi,(function(e,t,n,r,i){var o=i[r+e.length];return o&&C.test(o)?e:n[0]==n[1]&&n[2]==n[3]&&n[4]==n[5]?(t+"#"+n[0]+n[2]+n[4]).toLowerCase():(t+"#"+n).toLowerCase()})).replace(/(^|[^='"])#([0-9a-f]{3})/gi,(function(e,t,n){return t+"#"+n.toLowerCase()})).replace(/(rgb|rgba|hsl|hsla)\(([^\)]+)\)/gi,(function(e,t,n){var r=n.split(","),i=t&&t.toLowerCase();return"hsl"==i&&3==r.length||"hsla"==i&&4==r.length||"rgb"==i&&3===r.length&&n.indexOf("%")>0||"rgba"==i&&4==r.length&&n.indexOf("%")>0?(-1==r[1].indexOf("%")&&(r[1]+="%"),-1==r[2].indexOf("%")&&(r[2]+="%"),t+"("+r.join(",")+")"):e})),n.colors.opacity&&-1==e.indexOf("background")&&(t=t.replace(/(?:rgba|hsla)\(0,0%?,0%?,0\)/g,(function(e){return y(t,",").pop().indexOf("gradient(")>-1?e:"transparent"}))),r(t)):r(t)}function D(e){1==e.value.length&&(e.value[0][1]=e.value[0][1].replace(/progid:DXImageTransform\.Microsoft\.(Alpha|Chroma)(\W)/,(function(e,t,n){return t.toLowerCase()+n}))),e.value[0][1]=e.value[0][1].replace(/,(\S)/g,", $1").replace(/ ?= ?/g,"=")}function U(e,t){var n=e.value[t][1];"normal"==n?n="400":"bold"==n&&(n="700"),e.value[t][1]=n}function q(e){var t,n=e.value;4==n.length&&"0"===n[0][1]&&"0"===n[1][1]&&"0"===n[2][1]&&"0"===n[3][1]&&(t=e.name.indexOf("box-shadow")>-1?2:1),t&&(e.value.splice(t),e.dirty=!0)}function F(e){var t=e.value;1==t.length&&"none"==t[0][1]&&(t[0][1]="0")}function V(e,t,n){return w.test(t)?t.replace(w,(function(e,t){var r,i=parseInt(t);return 0===i?e:(n.properties.shorterLengthUnits&&n.units.pt&&3*i%4==0&&(r=3*i/4+"pt"),n.properties.shorterLengthUnits&&n.units.pc&&i%16==0&&(r=i/16+"pc"),n.properties.shorterLengthUnits&&n.units.in&&i%96==0&&(r=i/96+"in"),r&&(r=e.substring(0,e.indexOf(t))+r),r&&r.length<e.length?r:e)})):t}function G(e,t,n){return n.enabled&&-1!==t.indexOf(".")?t.replace(n.decimalPointMatcher,"$1$2$3").replace(n.zeroMatcher,(function(e,t,r,i){var o=n.units[i].multiplier,a=parseInt(t),s=isNaN(a)?0:a,l=parseFloat(r);return Math.round((s+l)*o)/o+i})):t}function H(e,t){return k.test(t)?t.replace(k,(function(e,t,n){var r;return"ms"==n?r=parseInt(t)/1e3+"s":"s"==n&&(r=1e3*parseFloat(t)+"ms"),r.length<e.length?r:e})):t}function K(e,t,n){return/^(?:\-moz\-calc|\-webkit\-calc|calc|rgb|hsl|rgba|hsla)\(/.test(t)||"flex"==e||"-ms-flex"==e||"-webkit-flex"==e||"flex-basis"==e||"-webkit-flex-basis"==e||t.indexOf("%")>0&&("height"==e||"max-height"==e||"width"==e||"max-width"==e)?t:t.replace(n,"$10$2").replace(n,"$10$2")}function $(e,t){return e.indexOf("filter")>-1||-1==t.indexOf(" ")||0===t.indexOf("expression")||t.indexOf(g.SINGLE_QUOTE)>-1||t.indexOf(g.DOUBLE_QUOTE)>-1?t:((t=t.replace(/\s+/g," ")).indexOf("calc")>-1&&(t=t.replace(/\) ?\/ ?/g,")/ ")),t.replace(/(\(;?)\s+/g,"$1").replace(/\s+(;?\))/g,"$1").replace(/, /g,","))}function Y(e,t){return-1==t.indexOf("0deg")?t:t.replace(/\(0deg\)/g,"(0)")}function Q(e,t){return-1==t.indexOf("0")?t:(t.indexOf("-")>-1&&(t=t.replace(/([^\w\d\-]|^)\-0([^\.]|$)/g,"$10$2").replace(/([^\w\d\-]|^)\-0([^\.]|$)/g,"$10$2")),t.replace(/(^|\s)0+([1-9])/g,"$1$2").replace(/(^|\D)\.0+(\D|$)/g,"$10$2").replace(/(^|\D)\.0+(\D|$)/g,"$10$2").replace(/\.([1-9]*)0+(\D|$)/g,(function(e,t,n){return(t.length>0?".":"")+t+n})).replace(/(^|\D)0\.(\d)/g,"$1.$2"))}function X(e,t){return"content"==e||e.indexOf("font-variation-settings")>-1||e.indexOf("font-feature-settings")>-1||"grid"==e||e.indexOf("grid-")>-1?t:T.test(t)?t.substring(1,t.length-1):t}function J(e){return!/^url\(['"].+['"]\)$/.test(e)||/^url\(['"].*[\*\s\(\)'"].*['"]\)$/.test(e)||/^url\(['"]data:[^;]+;charset/.test(e)?e:e.replace(/["']/g,"")}function Z(e,t,n,r){var i=r(e,t,b(n));return void 0===i?t:!1===i?"ignore-property":i}function ee(e,t,n){var r,i,o,a,s,l,u=n.options,g=u.level[m.One],y=f(t,!0);e:for(var b=0,S=y.length;b<S;b++)if(i=(r=y[b]).name,O.test(i)||(l=r.all[r.position],n.warnings.push("Invalid property name '"+i+"' at "+v(l[1][2][0])+". Ignoring."),r.unused=!0),0===r.value.length&&(l=r.all[r.position],n.warnings.push("Empty property '"+i+"' at "+v(l[1][2][0])+". Ignoring."),r.unused=!0),r.hack&&((r.hack[0]==c.ASTERISK||r.hack[0]==c.UNDERSCORE)&&!u.compatibility.properties.iePrefixHack||r.hack[0]==c.BACKSLASH&&!u.compatibility.properties.ieSuffixHack||r.hack[0]==c.BANG&&!u.compatibility.properties.ieBangHack)&&(r.unused=!0),g.removeNegativePaddings&&0===i.indexOf("padding")&&(L(r.value[0])||L(r.value[1])||L(r.value[2])||L(r.value[3]))&&(r.unused=!0),!u.compatibility.properties.ieFilters&&re(r)&&(r.unused=!0),!r.unused)if(r.block)ee(e,r.value[0][1],n);else if(!R.test(i)){for(var x=0,w=r.value.length;x<w;x++){if(o=r.value[x][0],s=M(a=r.value[x][1]),o==h.PROPERTY_BLOCK){r.unused=!0,n.warnings.push("Invalid value token at "+v(a[0][1][2][0])+". Ignoring.");break}if(s&&!n.validator.isUrl(a)){r.unused=!0,n.warnings.push("Broken URL '"+a+"' at "+v(r.value[x][2][0])+". Ignoring.");break}if(s?(a=g.normalizeUrls?B(a):a,a=u.compatibility.properties.urlQuotes?a:J(a)):j(a)||z(a)?a=g.removeQuotes?X(i,a):a:(a=V(0,a=G(0,a=g.removeWhitespace?$(i,a):a,u.precision),u.compatibility),a=g.replaceTimeUnits?H(0,a):a,a=g.replaceZeroUnits?Q(0,a):a,u.compatibility.properties.zeroUnits&&(a=K(i,a=Y(0,a),u.unitsRegexp)),u.compatibility.properties.colors&&(a=I(i,a,u.compatibility))),"ignore-property"===(a=Z(i,a,e,g.transform))){r.unused=!0;continue e}r.value[x][1]=a}g.replaceMultipleZeros&&q(r),"background"==i&&g.optimizeBackground?W(r):0===i.indexOf("border")&&i.indexOf("radius")>0&&g.optimizeBorderRadius?N(r):"filter"==i&&g.optimizeFilter&&u.compatibility.properties.ieFilters?D(r):"font-weight"==i&&g.optimizeFontWeight?U(r,0):"outline"==i&&g.optimizeOutline&&F(r)}p(y),d(y),function(e,t){var n,r;for(r=0;r<e.length;r++)(n=e[r])[0]==h.COMMENT&&(te(n,t),0===n[1].length&&(e.splice(r,1),r--))}(t,u)}function te(e,t){e[1][2]==g.EXCLAMATION&&("all"==t.level[m.One].specialComments||t.commentsKept<t.level[m.One].specialComments)?t.commentsKept++:e[1]=[]}function ne(e){return _.test(e[1])}function re(e){var t;return("filter"==e.name||"-ms-filter"==e.name)&&((t=e.value[0][1]).indexOf("progid")>-1||0===t.indexOf("alpha")||0===t.indexOf("chroma"))}e.exports=function e(t,n){var r=n.options,i=r.level[m.One],o=r.compatibility.selectors.ie7Hack,c=r.compatibility.selectors.adjacentSpace,d=r.compatibility.properties.spaceAfterClosingBrace,p=r.format,f=!1,g=!1;r.unitsRegexp=r.unitsRegexp||function(e){var t=["px","em","ex","cm","mm","in","pt","pc","%"];return["ch","rem","vh","vm","vmax","vmin","vw"].forEach((function(n){e.compatibility.units[n]&&t.push(n)})),new RegExp("(^|\\s|\\(|,)0(?:"+t.join("|")+")(\\W|$)","g")}(r),r.precision=r.precision||function(e){var t,n,r={matcher:null,units:{}},i=[];for(t in e)(n=e[t])!=x&&(r.units[t]={},r.units[t].value=n,r.units[t].multiplier=Math.pow(10,n),i.push(t));return i.length>0&&(r.enabled=!0,r.decimalPointMatcher=new RegExp("(\\d)\\.($|"+i.join("|")+")($|W)","g"),r.zeroMatcher=new RegExp("(\\d*)(\\.\\d+)("+i.join("|")+")","g")),r}(i.roundingPrecision),r.commentsKept=r.commentsKept||0;for(var v=0,y=t.length;v<y;v++){var b=t[v];switch(b[0]){case h.AT_RULE:b[1]=ne(b)&&g?"":b[1],b[1]=i.tidyAtRules?u(b[1]):b[1],f=!0;break;case h.AT_RULE_BLOCK:ee(b[1],b[2],n),g=!0;break;case h.NESTED_BLOCK:b[1]=i.tidyBlockScopes?l(b[1],d):b[1],e(b[2],n),g=!0;break;case h.COMMENT:te(b,r);break;case h.RULE:b[1]=i.tidySelectors?s(b[1],!o,c,p,n.warnings):b[1],b[1]=b[1].length>1?a(b[1],i.selectorsSortingMethod):b[1],ee(b[1],b[2],n),g=!0}(b[0]==h.COMMENT&&0===b[1].length||i.removeEmpty&&(0===b[1].length||b[2]&&0===b[2].length))&&(t.splice(v,1),v--,y--)}return i.cleanupCharsets&&f&&function(e){for(var t=!1,n=0,r=e.length;n<r;n++){var i=e[n];i[0]==h.AT_RULE&&(S.test(i[1])&&(t||-1==i[1].indexOf("@charset")?(e.splice(n,1),n--,r--):(t=!0,e.splice(n,1),e.unshift([h.AT_RULE,i[1].replace(S,"@charset")]))))}}(t),t}},t1UP:function(e,t){var n=Object.prototype.hasOwnProperty,r=Object.create(null),i=Object.create(null);function o(e,t){return t=t||0,e.length-t>=2&&45===e.charCodeAt(t)&&45===e.charCodeAt(t+1)}function a(e,t){if(t=t||0,e.length-t>=3&&45===e.charCodeAt(t)&&45!==e.charCodeAt(t+1)){var n=e.indexOf("-",t+2);if(-1!==n)return e.substring(t,n+1)}return""}e.exports={keyword:function(e){if(n.call(r,e))return r[e];var t=e.toLowerCase();if(n.call(r,t))return r[e]=r[t];var i=o(t,0),s=i?"":a(t,0);return r[e]=Object.freeze({basename:t.substr(s.length),name:t,vendor:s,prefix:s,custom:i})},property:function(e){if(n.call(i,e))return i[e];var t=e,r=e[0];"/"===r?r="/"===e[1]?"//":"/":"_"!==r&&"*"!==r&&"$"!==r&&"#"!==r&&"+"!==r&&"&"!==r&&(r="");var s=o(t,r.length);if(!s&&(t=t.toLowerCase(),n.call(i,t)))return i[e]=i[t];var l=s?"":a(t,r.length),u=t.substr(0,r.length+l.length);return i[e]=Object.freeze({basename:t.substr(u.length),name:t.substr(r.length),hack:r,vendor:l,prefix:u,custom:s})},isCustomProperty:o,vendorPrefix:a}},t9FE:function(e,t,n){(function(t){function n(e){try{if(!t.localStorage)return!1}catch(e){return!1}var n=t.localStorage[e];return null!=n&&"true"===String(n).toLowerCase()}e.exports=function(e,t){if(n("noDeprecation"))return e;var r=!1;return function(){if(!r){if(n("throwDeprecation"))throw new Error(t);n("traceDeprecation")?console.trace(t):console.warn(t),r=!0}return e.apply(this,arguments)}}}).call(this,n("yLpj"))},tL3E:function(e,t,n){const r=n("C6w6");e.exports={minifyCss:function(e){const t=(new r).minify(e);return t.styles?[t.styles,t.errors]:[e,t.errors]}}},"tQ+x":function(e,t,n){"use strict";n.d(t,"a",(function(){return r})),n.d(t,"b",(function(){return i})),n.d(t,"c",(function(){return o}));const r="data-wp-component",i="data-wp-c16t",o="__contextSystemKey__"},tQxF:function(e,t){var n=/^\/\//;e.exports=function(e){return!n.test(e)}},tZY0:function(e,t,n){var r=n("WGRy").canReorder,i=n("WGRy").canReorderSingle,o=n("BWMQ"),a=n("qQrL"),s=n("cj6p").rules,l=n("Nwoi").OptimizationLevel,u=n("dzo0");function c(e,t,n){var r,o,s,l,u,c,d,p;for(u=0,c=e.length;u<c;u++)for(o=(r=e[u])[5],d=0,p=t.length;d<p;d++)if(l=(s=t[d])[5],a(o,l,!0)&&!i(r,s,n))return!1;return!0}e.exports=function(e,t){for(var n=t.options.level[l.Two].mergeSemantically,i=t.cache.specificity,a={},d=[],p=e.length-1;p>=0;p--){var f=e[p];if(f[0]==u.NESTED_BLOCK){var m=s(f[1]),h=a[m];h||(h=[],a[m]=h),h.push(p)}}for(var g in a){var v=a[g];e:for(var y=v.length-1;y>0;y--){var b=v[y],S=e[b],x=v[y-1],w=e[x];t:for(var k=1;k>=-1;k-=2){for(var C=1==k,O=C?b+1:x-1,_=C?x:b,E=C?1:-1,T=C?S:w,A=C?w:S,P=o(T);O!=_;){var R=o(e[O]);if(O+=E,!(n&&c(P,R,i)||r(P,R,i)))continue t}A[2]=C?T[2].concat(A[2]):A[2].concat(T[2]),T[2]=[],d.push(A);continue e}}}return d}},tZmI:function(e,t,n){var r=n("eWth"),i=function(e){for(var t="function"==typeof Uint32Array?new Uint32Array(128):new Array(128),n=0;n<128;n++)t[n]=e(String.fromCharCode(n))?1:0;return t}((function(e){return/[a-zA-Z0-9\-]/.test(e)})),o={" ":1,"&&":2,"||":3,"|":4};function a(e){return e.substringToPos(e.findWsEnd(e.pos))}function s(e){for(var t=e.pos;t<e.str.length;t++){var n=e.str.charCodeAt(t);if(n>=128||0===i[n])break}return e.pos===t&&e.error("Expect a keyword"),e.substringToPos(t)}function l(e){for(var t=e.pos;t<e.str.length;t++){var n=e.str.charCodeAt(t);if(n<48||n>57)break}return e.pos===t&&e.error("Expect a number"),e.substringToPos(t)}function u(e){var t=e.str.indexOf("'",e.pos+1);return-1===t&&(e.pos=e.str.length,e.error("Expect an apostrophe")),e.substringToPos(t+1)}function c(e){var t,n=null;return e.eat(123),t=l(e),44===e.charCode()?(e.pos++,125!==e.charCode()&&(n=l(e))):n=t,e.eat(125),{min:Number(t),max:n?Number(n):0}}function d(e,t){var n=function(e){var t=null,n=!1;switch(e.charCode()){case 42:e.pos++,t={min:0,max:0};break;case 43:e.pos++,t={min:1,max:0};break;case 63:e.pos++,t={min:0,max:1};break;case 35:e.pos++,n=!0,t=123===e.charCode()?c(e):{min:1,max:0};break;case 123:t=c(e);break;default:return null}return{type:"Multiplier",comma:n,min:t.min,max:t.max,term:null}}(e);return null!==n?(n.term=t,n):t}function p(e){var t=e.peek();return""===t?null:{type:"Token",value:t}}function f(e){var t,n=null;return e.eat(60),t=s(e),40===e.charCode()&&41===e.nextCharCode()&&(e.pos+=2,t+="()"),91===e.charCodeAt(e.findWsEnd(e.pos))&&(a(e),n=function(e){var t=null,n=null,r=1;return e.eat(91),45===e.charCode()&&(e.peek(),r=-1),-1==r&&8734===e.charCode()?e.peek():t=r*Number(l(e)),a(e),e.eat(44),a(e),8734===e.charCode()?e.peek():(r=1,45===e.charCode()&&(e.peek(),r=-1),n=r*Number(l(e))),e.eat(93),null===t&&null===n?null:{type:"Range",min:t,max:n}}(e)),e.eat(62),d(e,{type:"Type",name:t,opts:n})}function m(e,t){function n(e,t){return{type:"Group",terms:e,combinator:t,disallowEmpty:!1,explicit:!1}}for(t=Object.keys(t).sort((function(e,t){return o[e]-o[t]}));t.length>0;){for(var r=t.shift(),i=0,a=0;i<e.length;i++){var s=e[i];"Combinator"===s.type&&(s.value===r?(-1===a&&(a=i-1),e.splice(i,1),i--):(-1!==a&&i-a>1&&(e.splice(a,i-a,n(e.slice(a,i),r)),i=a+1),a=-1))}-1!==a&&t.length&&e.splice(a,i-a,n(e.slice(a,i),r))}return r}function h(e){for(var t,n=[],r={},i=null,o=e.pos;t=g(e);)"Spaces"!==t.type&&("Combinator"===t.type?(null!==i&&"Combinator"!==i.type||(e.pos=o,e.error("Unexpected combinator")),r[t.value]=!0):null!==i&&"Combinator"!==i.type&&(r[" "]=!0,n.push({type:"Combinator",value:" "})),n.push(t),i=t,o=e.pos);return null!==i&&"Combinator"===i.type&&(e.pos-=o,e.error("Unexpected combinator")),{type:"Group",terms:n,combinator:m(n,r)||" ",disallowEmpty:!1,explicit:!1}}function g(e){var t=e.charCode();if(t<128&&1===i[t])return function(e){var t;return t=s(e),40===e.charCode()?(e.pos++,{type:"Function",name:t}):d(e,{type:"Keyword",name:t})}(e);switch(t){case 93:break;case 91:return d(e,function(e){var t;return e.eat(91),t=h(e),e.eat(93),t.explicit=!0,33===e.charCode()&&(e.pos++,t.disallowEmpty=!0),t}(e));case 60:return 39===e.nextCharCode()?function(e){var t;return e.eat(60),e.eat(39),t=s(e),e.eat(39),e.eat(62),d(e,{type:"Property",name:t})}(e):f(e);case 124:return{type:"Combinator",value:e.substringToPos(124===e.nextCharCode()?e.pos+2:e.pos+1)};case 38:return e.pos++,e.eat(38),{type:"Combinator",value:"&&"};case 44:return e.pos++,{type:"Comma"};case 39:return d(e,{type:"String",value:u(e)});case 32:case 9:case 10:case 13:case 12:return{type:"Spaces",value:a(e)};case 64:return(t=e.nextCharCode())<128&&1===i[t]?(e.pos++,{type:"AtKeyword",name:s(e)}):p(e);case 42:case 43:case 63:case 35:case 33:break;case 123:if((t=e.nextCharCode())<48||t>57)return p(e);break;default:return p(e)}}function v(e){var t=new r(e),n=h(t);return t.pos!==e.length&&t.error("Unexpected input"),1===n.terms.length&&"Group"===n.terms[0].type&&(n=n.terms[0]),n}v("[a&&<b>#|<'c'>*||e() f{2} /,(% g#{1,2} h{2,})]!"),e.exports=v},tanQ:function(e,t,n){const r=n("IrtM"),i=n("lAdC"),o=n("HUOe"),a=n("XQQa");e.exports={BrowserInterfaceIframe:i,BrowserInterfacePuppeteer:r,generateCriticalCSS:o,...a}},"te+T":function(e,t){e.exports={parse:function(){return this.createSingleNodeList(this.SelectorList())}}},twQA:function(e,t){var n={EOF:0,Ident:1,Function:2,AtKeyword:3,Hash:4,String:5,BadString:6,Url:7,BadUrl:8,Delim:9,Number:10,Percentage:11,Dimension:12,WhiteSpace:13,CDO:14,CDC:15,Colon:16,Semicolon:17,Comma:18,LeftSquareBracket:19,RightSquareBracket:20,LeftParenthesis:21,RightParenthesis:22,LeftCurlyBracket:23,RightCurlyBracket:24,Comment:25},r=Object.keys(n).reduce((function(e,t){return e[n[t]]=t,e}),{});e.exports={TYPE:n,NAME:r}},twrC:function(e,t,n){e.exports=n("errG")},u5kB:function(e,t,n){var r=n("KjDf"),i=n("1aLD"),o=n("8wsT"),a=n("O36p"),s=n("vd7W"),l=n("twQA"),{findWhiteSpaceStart:u,cmpStr:c}=n("P3uw"),d=n("OohF"),p=function(){},f=l.TYPE,m=l.NAME,h=f.WhiteSpace,g=f.Comment,v=f.Ident,y=f.Function,b=f.Url,S=f.Hash,x=f.Percentage,w=f.Number;function k(e){return function(){return this[e]()}}e.exports=function(e){var t={scanner:new o,locationMap:new r,filename:"<unknown>",needPositions:!1,onParseError:p,onParseErrorThrow:!1,parseAtrulePrelude:!0,parseRulePrelude:!0,parseValue:!0,parseCustomProperty:!1,readSequence:d,createList:function(){return new a},createSingleNodeList:function(e){return(new a).appendData(e)},getFirstListNode:function(e){return e&&e.first()},getLastListNode:function(e){return e.last()},parseWithFallback:function(e,t){var n=this.scanner.tokenIndex;try{return e.call(this)}catch(e){if(this.onParseErrorThrow)throw e;var r=t.call(this,n);return this.onParseErrorThrow=!0,this.onParseError(e,r),this.onParseErrorThrow=!1,r}},lookupNonWSType:function(e){do{var t=this.scanner.lookupType(e++);if(t!==h)return t}while(0!==t);return 0},eat:function(e){if(this.scanner.tokenType!==e){var t=this.scanner.tokenStart,n=m[e]+" is expected";switch(e){case v:this.scanner.tokenType===y||this.scanner.tokenType===b?(t=this.scanner.tokenEnd-1,n="Identifier is expected but function found"):n="Identifier is expected";break;case S:this.scanner.isDelim(35)&&(this.scanner.next(),t++,n="Name is expected");break;case x:this.scanner.tokenType===w&&(t=this.scanner.tokenEnd,n="Percent sign is expected");break;default:this.scanner.source.charCodeAt(this.scanner.tokenStart)===e&&(t+=1)}this.error(n,t)}this.scanner.next()},consume:function(e){var t=this.scanner.getTokenValue();return this.eat(e),t},consumeFunctionName:function(){var e=this.scanner.source.substring(this.scanner.tokenStart,this.scanner.tokenEnd-1);return this.eat(y),e},getLocation:function(e,t){return this.needPositions?this.locationMap.getLocationRange(e,t,this.filename):null},getLocationFromList:function(e){if(this.needPositions){var t=this.getFirstListNode(e),n=this.getLastListNode(e);return this.locationMap.getLocationRange(null!==t?t.loc.start.offset-this.locationMap.startOffset:this.scanner.tokenStart,null!==n?n.loc.end.offset-this.locationMap.startOffset:this.scanner.tokenStart,this.filename)}return null},error:function(e,t){var n=void 0!==t&&t<this.scanner.source.length?this.locationMap.getLocation(t):this.scanner.eof?this.locationMap.getLocation(u(this.scanner.source,this.scanner.source.length-1)):this.locationMap.getLocation(this.scanner.tokenStart);throw new i(e||"Unexpected input",this.scanner.source,n.offset,n.line,n.column)}};for(var n in e=function(e){var t={context:{},scope:{},atrule:{},pseudo:{}};if(e.parseContext)for(var n in e.parseContext)switch(typeof e.parseContext[n]){case"function":t.context[n]=e.parseContext[n];break;case"string":t.context[n]=k(e.parseContext[n])}if(e.scope)for(var n in e.scope)t.scope[n]=e.scope[n];if(e.atrule)for(var n in e.atrule){var r=e.atrule[n];r.parse&&(t.atrule[n]=r.parse)}if(e.pseudo)for(var n in e.pseudo){var i=e.pseudo[n];i.parse&&(t.pseudo[n]=i.parse)}if(e.node)for(var n in e.node)t[n]=e.node[n].parse;return t}(e||{}))t[n]=e[n];return function(e,n){var r,i=(n=n||{}).context||"default",o=n.onComment;if(s(e,t.scanner),t.locationMap.setSource(e,n.offset,n.line,n.column),t.filename=n.filename||"<unknown>",t.needPositions=Boolean(n.positions),t.onParseError="function"==typeof n.onParseError?n.onParseError:p,t.onParseErrorThrow=!1,t.parseAtrulePrelude=!("parseAtrulePrelude"in n)||Boolean(n.parseAtrulePrelude),t.parseRulePrelude=!("parseRulePrelude"in n)||Boolean(n.parseRulePrelude),t.parseValue=!("parseValue"in n)||Boolean(n.parseValue),t.parseCustomProperty="parseCustomProperty"in n&&Boolean(n.parseCustomProperty),!t.context.hasOwnProperty(i))throw new Error("Unknown context `"+i+"`");return"function"==typeof o&&t.scanner.forEachToken((n,r,i)=>{if(n===g){const n=t.getLocation(r,i),a=c(e,i-2,i,"*/")?e.slice(r+2,i-2):e.slice(r+2,i);o(a,n)}}),r=t.context[i].call(t,n),t.scanner.eof||t.error(),r}}},uogJ:function(e,t){const n=["after","before","first-(line|letter)","(input-)?placeholder","scrollbar","search(results-)?decoration","search-(cancel|results)-button"];let r;e.exports={removeIgnoredPseudoElements:function(e){return e.replace(function(){if(r)return r;const e=n.join("|");return r=new RegExp("::?(-(moz|ms|webkit)-)?("+e+")"),r}(),"").trim()}}},vI5D:function(e,t){function n(e){return e}function r(e,t,n,i){var o,a;switch(e.type){case"Group":o=function(e,t,n,i){var o=" "===e.combinator||i?e.combinator:" "+e.combinator+" ",a=e.terms.map((function(e){return r(e,t,n,i)})).join(o);return(e.explicit||n)&&(a=(i||","===a[0]?"[":"[ ")+a+(i?"]":" ]")),a}(e,t,n,i)+(e.disallowEmpty?"!":"");break;case"Multiplier":return r(e.term,t,n,i)+t(0===(a=e).min&&0===a.max?"*":0===a.min&&1===a.max?"?":1===a.min&&0===a.max?a.comma?"#":"+":1===a.min&&1===a.max?"":(a.comma?"#":"")+(a.min===a.max?"{"+a.min+"}":"{"+a.min+","+(0!==a.max?a.max:"")+"}"),e);case"Type":o="<"+e.name+(e.opts?t(function(e){switch(e.type){case"Range":return" ["+(null===e.min?"-∞":e.min)+","+(null===e.max?"∞":e.max)+"]";default:throw new Error("Unknown node type `"+e.type+"`")}}(e.opts),e.opts):"")+">";break;case"Property":o="<'"+e.name+"'>";break;case"Keyword":o=e.name;break;case"AtKeyword":o="@"+e.name;break;case"Function":o=e.name+"(";break;case"String":case"Token":o=e.value;break;case"Comma":o=",";break;default:throw new Error("Unknown node type `"+e.type+"`")}return t(o,e)}e.exports=function(e,t){var i=n,o=!1,a=!1;return"function"==typeof t?i=t:t&&(o=Boolean(t.forceBraces),a=Boolean(t.compact),"function"==typeof t.decorate&&(i=t.decorate)),r(e,i,o,a)}},vd7W:function(e,t,n){var r=n("8wsT"),i=n("Sean"),o=n("twQA"),a=o.TYPE,s=n("3XNy"),l=s.isNewline,u=s.isName,c=s.isValidEscape,d=s.isNumberStart,p=s.isIdentifierStart,f=s.charCodeCategory,m=s.isBOM,h=n("P3uw"),g=h.cmpStr,v=h.getNewlineLength,y=h.findWhiteSpaceEnd,b=h.consumeEscaped,S=h.consumeName,x=h.consumeNumber,w=h.consumeBadUrlRemnants;function k(e,t){function n(t){return t<k?e.charCodeAt(t):0}function o(){return T=x(e,T),p(n(T),n(T+1),n(T+2))?(L=a.Dimension,void(T=S(e,T))):37===n(T)?(L=a.Percentage,void T++):void(L=a.Number)}function s(){const t=T;return T=S(e,T),g(e,t,T,"url")&&40===n(T)?34===n(T=y(e,T+1))||39===n(T)?(L=a.Function,void(T=t+4)):void function(){for(L=a.Url,T=y(e,T);T<e.length;T++){var t=e.charCodeAt(T);switch(f(t)){case 41:return void T++;case f.Eof:return;case f.WhiteSpace:return 41===n(T=y(e,T))||T>=e.length?void(T<e.length&&T++):(T=w(e,T),void(L=a.BadUrl));case 34:case 39:case 40:case f.NonPrintable:return T=w(e,T),void(L=a.BadUrl);case 92:if(c(t,n(T+1))){T=b(e,T)-1;break}return T=w(e,T),void(L=a.BadUrl)}}}():40===n(T)?(L=a.Function,void T++):void(L=a.Ident)}function h(t){for(t||(t=n(T++)),L=a.String;T<e.length;T++){var r=e.charCodeAt(T);switch(f(r)){case t:return void T++;case f.Eof:return;case f.WhiteSpace:if(l(r))return T+=v(e,T,r),void(L=a.BadString);break;case 92:if(T===e.length-1)break;var i=n(T+1);l(i)?T+=v(e,T+1,i):c(r,i)&&(T=b(e,T)-1)}}}t||(t=new r);for(var k=(e=String(e||"")).length,C=i(t.offsetAndType,k+1),O=i(t.balance,k+1),_=0,E=m(n(0)),T=E,A=0,P=0,R=0;T<k;){var z=e.charCodeAt(T),L=0;switch(O[_]=k,f(z)){case f.WhiteSpace:L=a.WhiteSpace,T=y(e,T+1);break;case 34:h();break;case 35:u(n(T+1))||c(n(T+1),n(T+2))?(L=a.Hash,T=S(e,T+1)):(L=a.Delim,T++);break;case 39:h();break;case 40:L=a.LeftParenthesis,T++;break;case 41:L=a.RightParenthesis,T++;break;case 43:d(z,n(T+1),n(T+2))?o():(L=a.Delim,T++);break;case 44:L=a.Comma,T++;break;case 45:d(z,n(T+1),n(T+2))?o():45===n(T+1)&&62===n(T+2)?(L=a.CDC,T+=3):p(z,n(T+1),n(T+2))?s():(L=a.Delim,T++);break;case 46:d(z,n(T+1),n(T+2))?o():(L=a.Delim,T++);break;case 47:42===n(T+1)?(L=a.Comment,1===(T=e.indexOf("*/",T+2)+2)&&(T=e.length)):(L=a.Delim,T++);break;case 58:L=a.Colon,T++;break;case 59:L=a.Semicolon,T++;break;case 60:33===n(T+1)&&45===n(T+2)&&45===n(T+3)?(L=a.CDO,T+=4):(L=a.Delim,T++);break;case 64:p(n(T+1),n(T+2),n(T+3))?(L=a.AtKeyword,T=S(e,T+1)):(L=a.Delim,T++);break;case 91:L=a.LeftSquareBracket,T++;break;case 92:c(z,n(T+1))?s():(L=a.Delim,T++);break;case 93:L=a.RightSquareBracket,T++;break;case 123:L=a.LeftCurlyBracket,T++;break;case 125:L=a.RightCurlyBracket,T++;break;case f.Digit:o();break;case f.NameStart:s();break;case f.Eof:break;default:L=a.Delim,T++}switch(L){case A:for(A=(P=O[R=16777215&P])>>24,O[_]=R,O[R++]=_;R<_;R++)O[R]===k&&(O[R]=_);break;case a.LeftParenthesis:case a.Function:O[_]=P,P=(A=a.RightParenthesis)<<24|_;break;case a.LeftSquareBracket:O[_]=P,P=(A=a.RightSquareBracket)<<24|_;break;case a.LeftCurlyBracket:O[_]=P,P=(A=a.RightCurlyBracket)<<24|_}C[_++]=L<<24|T}for(C[_]=a.EOF<<24|T,O[_]=k,O[k]=k;0!==P;)P=O[R=16777215&P],O[R]=k;return t.source=e,t.firstCharOffset=E,t.offsetAndType=C,t.tokenCount=_,t.balance=O,t.reset(),t.next(),t}Object.keys(o).forEach((function(e){k[e]=o[e]})),Object.keys(s).forEach((function(e){k[e]=s[e]})),Object.keys(h).forEach((function(e){k[e]=h[e]})),e.exports=k},viRO:function(e,t,n){"use strict";
|
53 |
-
/** @license React v16.14.0
|
54 |
-
* react.production.min.js
|
55 |
-
*
|
56 |
-
* Copyright (c) Facebook, Inc. and its affiliates.
|
57 |
-
*
|
58 |
-
* This source code is licensed under the MIT license found in the
|
59 |
-
* LICENSE file in the root directory of this source tree.
|
60 |
-
*/var r=n("MgzW"),i="function"==typeof Symbol&&Symbol.for,o=i?Symbol.for("react.element"):60103,a=i?Symbol.for("react.portal"):60106,s=i?Symbol.for("react.fragment"):60107,l=i?Symbol.for("react.strict_mode"):60108,u=i?Symbol.for("react.profiler"):60114,c=i?Symbol.for("react.provider"):60109,d=i?Symbol.for("react.context"):60110,p=i?Symbol.for("react.forward_ref"):60112,f=i?Symbol.for("react.suspense"):60113,m=i?Symbol.for("react.memo"):60115,h=i?Symbol.for("react.lazy"):60116,g="function"==typeof Symbol&&Symbol.iterator;function v(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 y={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},b={};function S(e,t,n){this.props=e,this.context=t,this.refs=b,this.updater=n||y}function x(){}function w(e,t,n){this.props=e,this.context=t,this.refs=b,this.updater=n||y}S.prototype.isReactComponent={},S.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(v(85));this.updater.enqueueSetState(this,e,t,"setState")},S.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},x.prototype=S.prototype;var k=w.prototype=new x;k.constructor=w,r(k,S.prototype),k.isPureReactComponent=!0;var C={current:null},O=Object.prototype.hasOwnProperty,_={key:!0,ref:!0,__self:!0,__source:!0};function E(e,t,n){var r,i={},a=null,s=null;if(null!=t)for(r in void 0!==t.ref&&(s=t.ref),void 0!==t.key&&(a=""+t.key),t)O.call(t,r)&&!_.hasOwnProperty(r)&&(i[r]=t[r]);var l=arguments.length-2;if(1===l)i.children=n;else if(1<l){for(var u=Array(l),c=0;c<l;c++)u[c]=arguments[c+2];i.children=u}if(e&&e.defaultProps)for(r in l=e.defaultProps)void 0===i[r]&&(i[r]=l[r]);return{$$typeof:o,type:e,key:a,ref:s,props:i,_owner:C.current}}function T(e){return"object"==typeof e&&null!==e&&e.$$typeof===o}var A=/\/+/g,P=[];function R(e,t,n,r){if(P.length){var i=P.pop();return i.result=e,i.keyPrefix=t,i.func=n,i.context=r,i.count=0,i}return{result:e,keyPrefix:t,func:n,context:r,count:0}}function z(e){e.result=null,e.keyPrefix=null,e.func=null,e.context=null,e.count=0,10>P.length&&P.push(e)}function L(e,t,n){return null==e?0:function e(t,n,r,i){var s=typeof t;"undefined"!==s&&"boolean"!==s||(t=null);var l=!1;if(null===t)l=!0;else switch(s){case"string":case"number":l=!0;break;case"object":switch(t.$$typeof){case o:case a:l=!0}}if(l)return r(i,t,""===n?"."+j(t,0):n),1;if(l=0,n=""===n?".":n+":",Array.isArray(t))for(var u=0;u<t.length;u++){var c=n+j(s=t[u],u);l+=e(s,c,r,i)}else if(null===t||"object"!=typeof t?c=null:c="function"==typeof(c=g&&t[g]||t["@@iterator"])?c:null,"function"==typeof c)for(t=c.call(t),u=0;!(s=t.next()).done;)l+=e(s=s.value,c=n+j(s,u++),r,i);else if("object"===s)throw r=""+t,Error(v(31,"[object Object]"===r?"object with keys {"+Object.keys(t).join(", ")+"}":r,""));return l}(e,"",t,n)}function j(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 M(e,t){e.func.call(e.context,t,e.count++)}function B(e,t,n){var r=e.result,i=e.keyPrefix;e=e.func.call(e.context,t,e.count++),Array.isArray(e)?W(e,r,n,(function(e){return e})):null!=e&&(T(e)&&(e=function(e,t){return{$$typeof:o,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}}(e,i+(!e.key||t&&t.key===e.key?"":(""+e.key).replace(A,"$&/")+"/")+n)),r.push(e))}function W(e,t,n,r,i){var o="";null!=n&&(o=(""+n).replace(A,"$&/")+"/"),L(e,B,t=R(t,o,r,i)),z(t)}var N={current:null};function I(){var e=N.current;if(null===e)throw Error(v(321));return e}var D={ReactCurrentDispatcher:N,ReactCurrentBatchConfig:{suspense:null},ReactCurrentOwner:C,IsSomeRendererActing:{current:!1},assign:r};t.Children={map:function(e,t,n){if(null==e)return e;var r=[];return W(e,r,null,t,n),r},forEach:function(e,t,n){if(null==e)return e;L(e,M,t=R(null,null,t,n)),z(t)},count:function(e){return L(e,(function(){return null}),null)},toArray:function(e){var t=[];return W(e,t,null,(function(e){return e})),t},only:function(e){if(!T(e))throw Error(v(143));return e}},t.Component=S,t.Fragment=s,t.Profiler=u,t.PureComponent=w,t.StrictMode=l,t.Suspense=f,t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=D,t.cloneElement=function(e,t,n){if(null==e)throw Error(v(267,e));var i=r({},e.props),a=e.key,s=e.ref,l=e._owner;if(null!=t){if(void 0!==t.ref&&(s=t.ref,l=C.current),void 0!==t.key&&(a=""+t.key),e.type&&e.type.defaultProps)var u=e.type.defaultProps;for(c in t)O.call(t,c)&&!_.hasOwnProperty(c)&&(i[c]=void 0===t[c]&&void 0!==u?u[c]:t[c])}var c=arguments.length-2;if(1===c)i.children=n;else if(1<c){u=Array(c);for(var d=0;d<c;d++)u[d]=arguments[d+2];i.children=u}return{$$typeof:o,type:e.type,key:a,ref:s,props:i,_owner:l}},t.createContext=function(e,t){return void 0===t&&(t=null),(e={$$typeof:d,_calculateChangedBits:t,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null}).Provider={$$typeof:c,_context:e},e.Consumer=e},t.createElement=E,t.createFactory=function(e){var t=E.bind(null,e);return t.type=e,t},t.createRef=function(){return{current:null}},t.forwardRef=function(e){return{$$typeof:p,render:e}},t.isValidElement=T,t.lazy=function(e){return{$$typeof:h,_ctor:e,_status:-1,_result:null}},t.memo=function(e,t){return{$$typeof:m,type:e,compare:void 0===t?null:t}},t.useCallback=function(e,t){return I().useCallback(e,t)},t.useContext=function(e,t){return I().useContext(e,t)},t.useDebugValue=function(){},t.useEffect=function(e,t){return I().useEffect(e,t)},t.useImperativeHandle=function(e,t,n){return I().useImperativeHandle(e,t,n)},t.useLayoutEffect=function(e,t){return I().useLayoutEffect(e,t)},t.useMemo=function(e,t){return I().useMemo(e,t)},t.useReducer=function(e,t,n){return I().useReducer(e,t,n)},t.useRef=function(e){return I().useRef(e)},t.useState=function(e){return I().useState(e)},t.version="16.14.0"},wDXs:function(e,t,n){e.exports=n("2pxp")},wVK4:function(e,t,n){var r=n("Ag6s"),i=n("xdsP");e.exports=function(e,t,n){for(var o,a,s,l=e.length-1;l>=0;l--){var u=e[l],c=r[u.name];if(c&&c.shorthand){u.shorthand=!0,u.dirty=!0;try{if(u.components=c.breakUp(u,r,t),c.shorthandComponents)for(a=0,s=u.components.length;a<s;a++)(o=u.components[a]).components=r[o.name].breakUp(o,r,t)}catch(e){if(!(e instanceof i))throw e;u.components=[],n.push(e.message)}u.components.length>0?u.multiplex=u.components[0].multiplex:u.unused=!0}}}},wpTd:function(e,t){function n(e,t,n){return n<0&&(n+=1),n>1&&(n-=1),n<1/6?e+6*(t-e)*n:n<.5?t:n<2/3?e+(t-e)*(2/3-n)*6:e}e.exports=function(e,t,r){var i=function(e,t,r){var i,o,a;if((e%=360)<0&&(e+=360),e=~~e/360,t<0?t=0:t>100&&(t=100),r<0?r=0:r>100&&(r=100),r=~~r/100,0===(t=~~t/100))i=o=a=r;else{var s=r<.5?r*(1+t):r+t-r*t,l=2*r-s;i=n(l,s,e+1/3),o=n(l,s,e),a=n(l,s,e-1/3)}return[~~(255*i),~~(255*o),~~(255*a)]}(e,t,r),o=i[0].toString(16),a=i[1].toString(16),s=i[2].toString(16);return"#"+(1==o.length?"0":"")+o+(1==a.length?"0":"")+a+(1==s.length?"0":"")+s}},xGCa:function(e,t){e.exports=function(e,t,n){return"#"+("00000"+(Math.max(0,Math.min(parseInt(e),255))<<16|Math.max(0,Math.min(parseInt(t),255))<<8|Math.max(0,Math.min(parseInt(n),255))).toString(16)).slice(-6)}},xODi:function(e,t){e.exports={parse:{prelude:null,block:function(){return this.Block(!0)}}}},xdsP:function(e,t){function n(e){this.name="InvalidPropertyError",this.message=e,this.stack=(new Error).stack}n.prototype=Object.create(Error.prototype),n.prototype.constructor=n,e.exports=n},"xp+Q":function(e,t,n){"use strict";var r=n("lm0R");function i(e,t){e.emit("error",t)}e.exports={destroy:function(e,t){var n=this,o=this._readableState&&this._readableState.destroyed,a=this._writableState&&this._writableState.destroyed;return o||a?(t?t(e):!e||this._writableState&&this._writableState.errorEmitted||r.nextTick(i,this,e),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(e||null,(function(e){!t&&e?(r.nextTick(i,n,e),n._writableState&&(n._writableState.errorEmitted=!0)):t&&t(e)})),this)},undestroy:function(){this._readableState&&(this._readableState.destroyed=!1,this._readableState.reading=!1,this._readableState.ended=!1,this._readableState.endEmitted=!1),this._writableState&&(this._writableState.destroyed=!1,this._writableState.ended=!1,this._writableState.ending=!1,this._writableState.finished=!1,this._writableState.errorEmitted=!1)}}},y2yN:function(e,t,n){var r=n("J/fw"),i=n("yF14"),o=n("pHDw"),a=n("dzo0"),s=n("cj6p").body,l=n("cj6p").rules;function u(e){for(var t=[],n=0;n<e.length;n++)t.push([e[n][1]]);return t}function c(e,t,n,r,a){for(var s=[],l=[],u=[],c=t.length-1;c>=0;c--)if(!n.filterOut(c,s)){var d=t[c].where,p=e[d],f=o(p[2]);s=s.concat(f),l.push(f),u.push(d)}i(s,!0,!1,a);for(var m=u.length,h=s.length-1,g=m-1;g>=0;)if((0===g||s[h]&&l[g].indexOf(s[h])>-1)&&h>-1)h--;else{var v=s.splice(h+1);n.callback(e[u[g]],v,m,g),g--}}e.exports=function(e,t){for(var n=t.options,i=n.compatibility.selectors.mergeablePseudoClasses,o=n.compatibility.selectors.mergeablePseudoElements,d=n.compatibility.selectors.multiplePseudoMerging,p={},f=[],m=e.length-1;m>=0;m--){var h=e[m];if(h[0]==a.RULE&&0!==h[2].length)for(var g=l(h[1]),v=h[1].length>1&&r(g,i,o,d),y=u(h[1]),b=v?[g].concat(y):[g],S=0,x=b.length;S<x;S++){var w=b[S];p[w]?f.push(w):p[w]=[],p[w].push({where:m,list:y,isPartial:v&&S>0,isComplex:v&&0===S})}}!function(e,t,n,r,i){function o(e,t){return d[e].isPartial&&0===t.length}function a(e,t,n,r){d[n-r-1].isPartial||(e[2]=t)}for(var s=0,l=t.length;s<l;s++){var u=t[s],d=n[u];c(e,d,{filterOut:o,callback:a},r,i)}}(e,f,p,n,t),function(e,t,n,i){var o=n.compatibility.selectors.mergeablePseudoClasses,a=n.compatibility.selectors.mergeablePseudoElements,l=n.compatibility.selectors.multiplePseudoMerging,u={};function d(e){return u.data[e].where<u.intoPosition}function p(e,t,n,r){0===r&&u.reducedBodies.push(t)}e:for(var f in t){var m=t[f];if(m[0].isComplex){var h=m[m.length-1].where,g=e[h],v=[],y=r(f,o,a,l)?m[0].list:[f];u.intoPosition=h,u.reducedBodies=v;for(var b=0,S=y.length;b<S;b++){var x=y[b],w=t[x];if(w.length<2)continue e;if(u.data=w,c(e,w,{filterOut:d,callback:p},n,i),s(v[v.length-1])!=s(v[0]))continue e}g[2]=v[0]}}}(e,p,n,t)}},y33q:function(e,t,n){var r=n("zy2C").same;e.exports=function(e,t,n,i,o){return!!r(t,n)&&(!o||e.isVariable(t)===e.isVariable(n))}},y37L:function(e,t,n){var r=n("xdsP"),i=n("m4yl").single,o=n("dzo0"),a=n("Ttul"),s=n("7nlT");function l(e){var t,n;for(t=0,n=e.length;t<n;t++)if("inherit"==e[t][1])return!0;return!1}function u(e,t,n){var r=n[e];return r.doubleValues&&2==r.defaultValue.length?i([o.PROPERTY,[o.PROPERTY_NAME,e],[o.PROPERTY_VALUE,r.defaultValue[0]],[o.PROPERTY_VALUE,r.defaultValue[1]]]):r.doubleValues&&1==r.defaultValue.length?i([o.PROPERTY,[o.PROPERTY_NAME,e],[o.PROPERTY_VALUE,r.defaultValue[0]]]):i([o.PROPERTY,[o.PROPERTY_NAME,e],[o.PROPERTY_VALUE,r.defaultValue]])}function c(e,t){var n=t[e.name].components,r=[],a=e.value;if(a.length<1)return[];a.length<2&&(a[1]=a[0].slice(0)),a.length<3&&(a[2]=a[0].slice(0)),a.length<4&&(a[3]=a[1].slice(0));for(var s=n.length-1;s>=0;s--){var l=i([o.PROPERTY,[o.PROPERTY_NAME,n[s]]]);l.value=[a[s]],r.unshift(l)}return r}function d(e,t,n){for(var r,i,o,a=t[e.name],s=[u(a.components[0],0,t),u(a.components[1],0,t),u(a.components[2],0,t)],l=0;l<3;l++){var c=s[l];c.name.indexOf("color")>0?r=c:c.name.indexOf("style")>0?i=c:o=c}if(1==e.value.length&&"inherit"==e.value[0][1]||3==e.value.length&&"inherit"==e.value[0][1]&&"inherit"==e.value[1][1]&&"inherit"==e.value[2][1])return r.value=i.value=o.value=[e.value[0]],s;var d,p,f=e.value.slice(0);return f.length>0&&(d=(p=f.filter(function(e){return function(t){return"inherit"!=t[1]&&(e.isWidth(t[1])||e.isUnit(t[1])&&!e.isDynamicUnit(t[1]))&&!e.isStyleKeyword(t[1])&&!e.isColorFunction(t[1])}}(n))).length>1&&("none"==p[0][1]||"auto"==p[0][1])?p[1]:p[0])&&(o.value=[d],f.splice(f.indexOf(d),1)),f.length>0&&(d=f.filter(function(e){return function(t){return"inherit"!=t[1]&&e.isStyleKeyword(t[1])&&!e.isColorFunction(t[1])}}(n))[0])&&(i.value=[d],f.splice(f.indexOf(d),1)),f.length>0&&(d=f.filter(function(e){return function(t){return"invert"==t[1]||e.isColor(t[1])||e.isPrefixed(t[1])}}(n))[0])&&(r.value=[d],f.splice(f.indexOf(d),1)),s}e.exports={animation:function(e,t,n){var i,o,a,c=u(e.name+"-duration",0,t),d=u(e.name+"-timing-function",0,t),p=u(e.name+"-delay",0,t),f=u(e.name+"-iteration-count",0,t),m=u(e.name+"-direction",0,t),h=u(e.name+"-fill-mode",0,t),g=u(e.name+"-play-state",0,t),v=u(e.name+"-name",0,t),y=[c,d,p,f,m,h,g,v],b=e.value,S=!1,x=!1,w=!1,k=!1,C=!1,O=!1,_=!1,E=!1;if(1==e.value.length&&"inherit"==e.value[0][1])return c.value=d.value=p.value=f.value=m.value=h.value=g.value=v.value=e.value,y;if(b.length>1&&l(b))throw new r("Invalid animation values at "+s(b[0][2][0])+". Ignoring.");for(o=0,a=b.length;o<a;o++)if(i=b[o],n.isTime(i[1])&&!S)c.value=[i],S=!0;else if(n.isTime(i[1])&&!w)p.value=[i],w=!0;else if(!n.isGlobal(i[1])&&!n.isTimingFunction(i[1])||x)if(!n.isAnimationIterationCountKeyword(i[1])&&!n.isPositiveNumber(i[1])||k)if(n.isAnimationDirectionKeyword(i[1])&&!C)m.value=[i],C=!0;else if(n.isAnimationFillModeKeyword(i[1])&&!O)h.value=[i],O=!0;else if(n.isAnimationPlayStateKeyword(i[1])&&!_)g.value=[i],_=!0;else{if(!n.isAnimationNameKeyword(i[1])&&!n.isIdentifier(i[1])||E)throw new r("Invalid animation value at "+s(i[2][0])+". Ignoring.");v.value=[i],E=!0}else f.value=[i],k=!0;else d.value=[i],x=!0;return y},background:function(e,t,n){var i=u("background-image",0,t),o=u("background-position",0,t),l=u("background-size",0,t),c=u("background-repeat",0,t),d=u("background-attachment",0,t),p=u("background-origin",0,t),f=u("background-clip",0,t),m=u("background-color",0,t),h=[i,o,l,c,d,p,f,m],g=e.value,v=!1,y=!1,b=!1,S=!1,x=!1;if(1==e.value.length&&"inherit"==e.value[0][1])return m.value=i.value=c.value=o.value=l.value=p.value=f.value=e.value,h;if(1==e.value.length&&"0 0"==e.value[0][1])return h;for(var w=g.length-1;w>=0;w--){var k=g[w];if(n.isBackgroundAttachmentKeyword(k[1]))d.value=[k],x=!0;else if(n.isBackgroundClipKeyword(k[1])||n.isBackgroundOriginKeyword(k[1]))y?(p.value=[k],b=!0):(f.value=[k],y=!0),x=!0;else if(n.isBackgroundRepeatKeyword(k[1]))S?c.value.unshift(k):(c.value=[k],S=!0),x=!0;else if(n.isBackgroundPositionKeyword(k[1])||n.isBackgroundSizeKeyword(k[1])||n.isUnit(k[1])||n.isDynamicUnit(k[1])){if(w>0){var C=g[w-1];C[1]==a.FORWARD_SLASH?l.value=[k]:w>1&&g[w-2][1]==a.FORWARD_SLASH?(l.value=[C,k],w-=2):(v||(o.value=[]),o.value.unshift(k),v=!0)}else v||(o.value=[]),o.value.unshift(k),v=!0;x=!0}else m.value[0][1]!=t[m.name].defaultValue&&"none"!=m.value[0][1]||!n.isColor(k[1])&&!n.isPrefixed(k[1])?(n.isUrl(k[1])||n.isFunction(k[1]))&&(i.value=[k],x=!0):(m.value=[k],x=!0)}if(y&&!b&&(p.value=f.value.slice(0)),!x)throw new r("Invalid background value at "+s(g[0][2][0])+". Ignoring.");return h},border:d,borderRadius:function(e,t){for(var n=e.value,i=-1,o=0,l=n.length;o<l;o++)if(n[o][1]==a.FORWARD_SLASH){i=o;break}if(0===i||i===n.length-1)throw new r("Invalid border-radius value at "+s(n[0][2][0])+". Ignoring.");var d=u(e.name,0,t);d.value=i>-1?n.slice(0,i):n.slice(0),d.components=c(d,t);var p=u(e.name,0,t);p.value=i>-1?n.slice(i+1):n.slice(0),p.components=c(p,t);for(var f=0;f<4;f++)d.components[f].multiplex=!0,d.components[f].value=d.components[f].value.concat(p.components[f].value);return d.components},font:function(e,t,n){var i,o,c,d,p=u("font-style",0,t),f=u("font-variant",0,t),m=u("font-weight",0,t),h=u("font-stretch",0,t),g=u("font-size",0,t),v=u("line-height",0,t),y=u("font-family",0,t),b=[p,f,m,h,g,v,y],S=e.value,x=0,w=!1,k=!1,C=!1,O=!1,_=!1,E=!1;if(!S[x])throw new r("Missing font values at "+s(e.all[e.position][1][2][0])+". Ignoring.");if(1==S.length&&"inherit"==S[0][1])return p.value=f.value=m.value=h.value=g.value=v.value=y.value=S,b;if(1==S.length&&(n.isFontKeyword(S[0][1])||n.isGlobal(S[0][1])||n.isPrefixed(S[0][1])))return S[0][1]=a.INTERNAL+S[0][1],p.value=f.value=m.value=h.value=g.value=v.value=y.value=S,b;if(S.length<2||!function(e,t){var n,r,i;for(r=0,i=e.length;r<i;r++)if(n=e[r],t.isFontSizeKeyword(n[1])||t.isUnit(n[1])&&!t.isDynamicUnit(n[1])||t.isFunction(n[1]))return!0;return!1}(S,n)||!function(e,t){var n,r,i;for(r=0,i=e.length;r<i;r++)if(n=e[r],t.isIdentifier(n[1]))return!0;return!1}(S,n))throw new r("Invalid font values at "+s(e.all[e.position][1][2][0])+". Ignoring.");if(S.length>1&&l(S))throw new r("Invalid font values at "+s(S[0][2][0])+". Ignoring.");for(;x<4;){if(i=n.isFontStretchKeyword(S[x][1])||n.isGlobal(S[x][1]),o=n.isFontStyleKeyword(S[x][1])||n.isGlobal(S[x][1]),c=n.isFontVariantKeyword(S[x][1])||n.isGlobal(S[x][1]),d=n.isFontWeightKeyword(S[x][1])||n.isGlobal(S[x][1]),o&&!k)p.value=[S[x]],k=!0;else if(c&&!C)f.value=[S[x]],C=!0;else if(d&&!O)m.value=[S[x]],O=!0;else{if(!i||w){if(o&&k||c&&C||d&&O||i&&w)throw new r("Invalid font style / variant / weight / stretch value at "+s(S[0][2][0])+". Ignoring.");break}h.value=[S[x]],w=!0}x++}if(!(n.isFontSizeKeyword(S[x][1])||n.isUnit(S[x][1])&&!n.isDynamicUnit(S[x][1])))throw new r("Missing font size at "+s(S[0][2][0])+". Ignoring.");if(g.value=[S[x]],_=!0,!S[++x])throw new r("Missing font family at "+s(S[0][2][0])+". Ignoring.");for(_&&S[x]&&S[x][1]==a.FORWARD_SLASH&&S[x+1]&&(n.isLineHeightKeyword(S[x+1][1])||n.isUnit(S[x+1][1])||n.isNumber(S[x+1][1]))&&(v.value=[S[x+1]],x++,x++),y.value=[];S[x];)S[x][1]==a.COMMA?E=!1:(E?y.value[y.value.length-1][1]+=a.SPACE+S[x][1]:y.value.push(S[x]),E=!0),x++;if(0===y.value.length)throw new r("Missing font family at "+s(S[0][2][0])+". Ignoring.");return b},fourValues:c,listStyle:function(e,t,n){var r=u("list-style-type",0,t),i=u("list-style-position",0,t),o=u("list-style-image",0,t),a=[r,i,o];if(1==e.value.length&&"inherit"==e.value[0][1])return r.value=i.value=o.value=[e.value[0]],a;var s=e.value.slice(0),l=s.length,c=0;for(c=0,l=s.length;c<l;c++)if(n.isUrl(s[c][1])||"0"==s[c][1]){o.value=[s[c]],s.splice(c,1);break}for(c=0,l=s.length;c<l;c++)if(n.isListStylePositionKeyword(s[c][1])){i.value=[s[c]],s.splice(c,1);break}return s.length>0&&(n.isListStyleTypeKeyword(s[0][1])||n.isIdentifier(s[0][1]))&&(r.value=[s[0]]),a},multiplex:function(e){return function(t,n,r){var i,s,l,c,d=[],p=t.value;for(i=0,l=p.length;i<l;i++)","==p[i][1]&&d.push(i);if(0===d.length)return e(t,n,r);var f=[];for(i=0,l=d.length;i<=l;i++){var m=0===i?0:d[i-1]+1,h=i<l?d[i]:p.length,g=u(t.name,0,n);g.value=p.slice(m,h),f.push(e(g,n,r))}var v=f[0];for(i=0,l=v.length;i<l;i++)for(v[i].multiplex=!0,s=1,c=f.length;s<c;s++)v[i].value.push([o.PROPERTY_VALUE,a.COMMA]),Array.prototype.push.apply(v[i].value,f[s][i].value);return v}},outline:d,transition:function(e,t,n){var i,o,a,c=u(e.name+"-property",0,t),d=u(e.name+"-duration",0,t),p=u(e.name+"-timing-function",0,t),f=u(e.name+"-delay",0,t),m=[c,d,p,f],h=e.value,g=!1,v=!1,y=!1,b=!1;if(1==e.value.length&&"inherit"==e.value[0][1])return c.value=d.value=p.value=f.value=e.value,m;if(h.length>1&&l(h))throw new r("Invalid animation values at "+s(h[0][2][0])+". Ignoring.");for(o=0,a=h.length;o<a;o++)if(i=h[o],n.isTime(i[1])&&!g)d.value=[i],g=!0;else if(n.isTime(i[1])&&!v)f.value=[i],v=!0;else if(!n.isGlobal(i[1])&&!n.isTimingFunction(i[1])||b){if(!n.isIdentifier(i[1])||y)throw new r("Invalid animation value at "+s(i[2][0])+". Ignoring.");c.value=[i],y=!0}else p.value=[i],b=!0;return m}}},yF14:function(e,t,n){var r=n("kW84"),i=n("G6hy"),o=n("wVK4"),a=n("3Vmb"),s=n("m4yl").all,l=n("LZG9"),u=n("QC34"),c=n("Nwoi").OptimizationLevel;e.exports=function e(t,n,d,p){var f,m,h,g=p.options.level[c.Two],v=s(t,!1,g.skipProperties);for(o(v,p.validator,p.warnings),m=0,h=v.length;m<h;m++)(f=v[m]).block&&e(f.value[0][1],n,d,p);d&&g.mergeIntoShorthands&&r(v,p.validator),n&&g.overrideProperties&&i(v,d,p.options.compatibility,p.validator),u(v,a),l(v)}},yJif:function(e,t,n){e.exports=n("errG")},yLpj:function(e,t){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(e){"object"==typeof window&&(n=window)}e.exports=n},yQtW:function(e,t,n){(function(e,r,i){var o=n("qfHW"),a=n("P7XM"),s=n("PRug"),l=t.readyStates={UNSENT:0,OPENED:1,HEADERS_RECEIVED:2,LOADING:3,DONE:4},u=t.IncomingMessage=function(t,n,a,l){var u=this;if(s.Readable.call(u),u._mode=a,u.headers={},u.rawHeaders=[],u.trailers={},u.rawTrailers=[],u.on("end",(function(){e.nextTick((function(){u.emit("close")}))})),"fetch"===a){if(u._fetchResponse=n,u.url=n.url,u.statusCode=n.status,u.statusMessage=n.statusText,n.headers.forEach((function(e,t){u.headers[t.toLowerCase()]=e,u.rawHeaders.push(t,e)})),o.writableStream){var c=new WritableStream({write:function(e){return new Promise((function(t,n){u._destroyed?n():u.push(new r(e))?t():u._resumeFetch=t}))},close:function(){i.clearTimeout(l),u._destroyed||u.push(null)},abort:function(e){u._destroyed||u.emit("error",e)}});try{return void n.body.pipeTo(c).catch((function(e){i.clearTimeout(l),u._destroyed||u.emit("error",e)}))}catch(e){}}var d=n.body.getReader();!function e(){d.read().then((function(t){if(!u._destroyed){if(t.done)return i.clearTimeout(l),void u.push(null);u.push(new r(t.value)),e()}})).catch((function(e){i.clearTimeout(l),u._destroyed||u.emit("error",e)}))}()}else{if(u._xhr=t,u._pos=0,u.url=t.responseURL,u.statusCode=t.status,u.statusMessage=t.statusText,t.getAllResponseHeaders().split(/\r?\n/).forEach((function(e){var t=e.match(/^([^:]+):\s*(.*)/);if(t){var n=t[1].toLowerCase();"set-cookie"===n?(void 0===u.headers[n]&&(u.headers[n]=[]),u.headers[n].push(t[2])):void 0!==u.headers[n]?u.headers[n]+=", "+t[2]:u.headers[n]=t[2],u.rawHeaders.push(t[1],t[2])}})),u._charset="x-user-defined",!o.overrideMimeType){var p=u.rawHeaders["mime-type"];if(p){var f=p.match(/;\s*charset=([^;])(;|$)/);f&&(u._charset=f[1].toLowerCase())}u._charset||(u._charset="utf-8")}}};a(u,s.Readable),u.prototype._read=function(){var e=this._resumeFetch;e&&(this._resumeFetch=null,e())},u.prototype._onXHRProgress=function(){var e=this,t=e._xhr,n=null;switch(e._mode){case"text:vbarray":if(t.readyState!==l.DONE)break;try{n=new i.VBArray(t.responseBody).toArray()}catch(e){}if(null!==n){e.push(new r(n));break}case"text":try{n=t.responseText}catch(t){e._mode="text:vbarray";break}if(n.length>e._pos){var o=n.substr(e._pos);if("x-user-defined"===e._charset){for(var a=new r(o.length),s=0;s<o.length;s++)a[s]=255&o.charCodeAt(s);e.push(a)}else e.push(o,e._charset);e._pos=n.length}break;case"arraybuffer":if(t.readyState!==l.DONE||!t.response)break;n=t.response,e.push(new r(new Uint8Array(n)));break;case"moz-chunked-arraybuffer":if(n=t.response,t.readyState!==l.LOADING||!n)break;e.push(new r(new Uint8Array(n)));break;case"ms-stream":if(n=t.response,t.readyState!==l.LOADING)break;var u=new i.MSStreamReader;u.onprogress=function(){u.result.byteLength>e._pos&&(e.push(new r(new Uint8Array(u.result.slice(e._pos)))),e._pos=u.result.byteLength)},u.onload=function(){e.push(null)},u.readAsArrayBuffer(n)}e._xhr.readyState===l.DONE&&"ms-stream"!==e._mode&&e.push(null)}}).call(this,n("8oxB"),n("HDXh").Buffer,n("yLpj"))},yTw5:function(e,t,n){var r=n("vd7W").TYPE,i=n("4njK").mode,o=r.LeftCurlyBracket;function a(e){return this.Raw(e,i.leftCurlyBracket,!0)}function s(){var e=this.SelectorList();return"Raw"!==e.type&&!1===this.scanner.eof&&this.scanner.tokenType!==o&&this.error(),e}e.exports={name:"Rule",structure:{prelude:["SelectorList","Raw"],block:["Block"]},parse:function(){var e,t,n=this.scanner.tokenIndex,r=this.scanner.tokenStart;return e=this.parseRulePrelude?this.parseWithFallback(s,a):a.call(this,n),t=this.Block(!0),{type:"Rule",loc:this.getLocation(r,this.scanner.tokenStart),prelude:e,block:t}},generate:function(e){this.node(e.prelude),this.node(e.block)},walkContext:"rule"}},yl30:function(e,t,n){"use strict";
|
61 |
-
/** @license React v16.14.0
|
62 |
-
* react-dom.production.min.js
|
63 |
-
*
|
64 |
-
* Copyright (c) Facebook, Inc. and its affiliates.
|
65 |
-
*
|
66 |
-
* This source code is licensed under the MIT license found in the
|
67 |
-
* LICENSE file in the root directory of this source tree.
|
68 |
-
*/var r=n("q1tI"),i=n("MgzW"),o=n("QCnb");function a(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(a(227));function s(e,t,n,r,i,o,a,s,l){var u=Array.prototype.slice.call(arguments,3);try{t.apply(n,u)}catch(e){this.onError(e)}}var l=!1,u=null,c=!1,d=null,p={onError:function(e){l=!0,u=e}};function f(e,t,n,r,i,o,a,c,d){l=!1,u=null,s.apply(p,arguments)}var m=null,h=null,g=null;function v(e,t,n){var r=e.type||"unknown-event";e.currentTarget=g(n),function(e,t,n,r,i,o,s,p,m){if(f.apply(this,arguments),l){if(!l)throw Error(a(198));var h=u;l=!1,u=null,c||(c=!0,d=h)}}(r,t,void 0,e),e.currentTarget=null}var y=null,b={};function S(){if(y)for(var e in b){var t=b[e],n=y.indexOf(e);if(!(-1<n))throw Error(a(96,e));if(!w[n]){if(!t.extractEvents)throw Error(a(97,e));for(var r in w[n]=t,n=t.eventTypes){var i=void 0,o=n[r],s=t,l=r;if(k.hasOwnProperty(l))throw Error(a(99,l));k[l]=o;var u=o.phasedRegistrationNames;if(u){for(i in u)u.hasOwnProperty(i)&&x(u[i],s,l);i=!0}else o.registrationName?(x(o.registrationName,s,l),i=!0):i=!1;if(!i)throw Error(a(98,r,e))}}}}function x(e,t,n){if(C[e])throw Error(a(100,e));C[e]=t,O[e]=t.eventTypes[n].dependencies}var w=[],k={},C={},O={};function _(e){var t,n=!1;for(t in e)if(e.hasOwnProperty(t)){var r=e[t];if(!b.hasOwnProperty(t)||b[t]!==r){if(b[t])throw Error(a(102,t));b[t]=r,n=!0}}n&&S()}var E=!("undefined"==typeof window||void 0===window.document||void 0===window.document.createElement),T=null,A=null,P=null;function R(e){if(e=h(e)){if("function"!=typeof T)throw Error(a(280));var t=e.stateNode;t&&(t=m(t),T(e.stateNode,e.type,t))}}function z(e){A?P?P.push(e):P=[e]:A=e}function L(){if(A){var e=A,t=P;if(P=A=null,R(e),t)for(e=0;e<t.length;e++)R(t[e])}}function j(e,t){return e(t)}function M(e,t,n,r,i){return e(t,n,r,i)}function B(){}var W=j,N=!1,I=!1;function D(){null===A&&null===P||(B(),L())}function U(e,t,n){if(I)return e(t,n);I=!0;try{return W(e,t,n)}finally{I=!1,D()}}var q=/^[: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]*$/,F=Object.prototype.hasOwnProperty,V={},G={};function H(e,t,n,r,i,o){this.acceptsBooleans=2===t||3===t||4===t,this.attributeName=r,this.attributeNamespace=i,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=o}var K={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach((function(e){K[e]=new H(e,0,!1,e,null,!1)})),[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach((function(e){var t=e[0];K[t]=new H(t,1,!1,e[1],null,!1)})),["contentEditable","draggable","spellCheck","value"].forEach((function(e){K[e]=new H(e,2,!1,e.toLowerCase(),null,!1)})),["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach((function(e){K[e]=new H(e,2,!1,e,null,!1)})),"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach((function(e){K[e]=new H(e,3,!1,e.toLowerCase(),null,!1)})),["checked","multiple","muted","selected"].forEach((function(e){K[e]=new H(e,3,!0,e,null,!1)})),["capture","download"].forEach((function(e){K[e]=new H(e,4,!1,e,null,!1)})),["cols","rows","size","span"].forEach((function(e){K[e]=new H(e,6,!1,e,null,!1)})),["rowSpan","start"].forEach((function(e){K[e]=new H(e,5,!1,e.toLowerCase(),null,!1)}));var $=/[\-:]([a-z])/g;function Y(e){return e[1].toUpperCase()}"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($,Y);K[t]=new H(t,1,!1,e,null,!1)})),"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach((function(e){var t=e.replace($,Y);K[t]=new H(t,1,!1,e,"http://www.w3.org/1999/xlink",!1)})),["xml:base","xml:lang","xml:space"].forEach((function(e){var t=e.replace($,Y);K[t]=new H(t,1,!1,e,"http://www.w3.org/XML/1998/namespace",!1)})),["tabIndex","crossOrigin"].forEach((function(e){K[e]=new H(e,1,!1,e.toLowerCase(),null,!1)})),K.xlinkHref=new H("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0),["src","href","action","formAction"].forEach((function(e){K[e]=new H(e,1,!1,e.toLowerCase(),null,!0)}));var Q=r.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;function X(e,t,n,r){var i=K.hasOwnProperty(t)?K[t]:null;(null!==i?0===i.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,i,r)&&(n=null),r||null===i?function(e){return!!F.call(G,e)||!F.call(V,e)&&(q.test(e)?G[e]=!0:(V[e]=!0,!1))}(t)&&(null===n?e.removeAttribute(t):e.setAttribute(t,""+n)):i.mustUseProperty?e[i.propertyName]=null===n?3!==i.type&&"":n:(t=i.attributeName,r=i.attributeNamespace,null===n?e.removeAttribute(t):(n=3===(i=i.type)||4===i&&!0===n?"":""+n,r?e.setAttributeNS(r,t,n):e.setAttribute(t,n))))}Q.hasOwnProperty("ReactCurrentDispatcher")||(Q.ReactCurrentDispatcher={current:null}),Q.hasOwnProperty("ReactCurrentBatchConfig")||(Q.ReactCurrentBatchConfig={suspense:null});var J=/^(.*)[\\\/]/,Z="function"==typeof Symbol&&Symbol.for,ee=Z?Symbol.for("react.element"):60103,te=Z?Symbol.for("react.portal"):60106,ne=Z?Symbol.for("react.fragment"):60107,re=Z?Symbol.for("react.strict_mode"):60108,ie=Z?Symbol.for("react.profiler"):60114,oe=Z?Symbol.for("react.provider"):60109,ae=Z?Symbol.for("react.context"):60110,se=Z?Symbol.for("react.concurrent_mode"):60111,le=Z?Symbol.for("react.forward_ref"):60112,ue=Z?Symbol.for("react.suspense"):60113,ce=Z?Symbol.for("react.suspense_list"):60120,de=Z?Symbol.for("react.memo"):60115,pe=Z?Symbol.for("react.lazy"):60116,fe=Z?Symbol.for("react.block"):60121,me="function"==typeof Symbol&&Symbol.iterator;function he(e){return null===e||"object"!=typeof e?null:"function"==typeof(e=me&&e[me]||e["@@iterator"])?e:null}function ge(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 ne:return"Fragment";case te:return"Portal";case ie:return"Profiler";case re:return"StrictMode";case ue:return"Suspense";case ce:return"SuspenseList"}if("object"==typeof e)switch(e.$$typeof){case ae:return"Context.Consumer";case oe:return"Context.Provider";case le:var t=e.render;return t=t.displayName||t.name||"",e.displayName||(""!==t?"ForwardRef("+t+")":"ForwardRef");case de:return ge(e.type);case fe:return ge(e.render);case pe:if(e=1===e._status?e._result:null)return ge(e)}return null}function ve(e){var t="";do{e:switch(e.tag){case 3:case 4:case 6:case 7:case 10:case 9:var n="";break e;default:var r=e._debugOwner,i=e._debugSource,o=ge(e.type);n=null,r&&(n=ge(r.type)),r=o,o="",i?o=" (at "+i.fileName.replace(J,"")+":"+i.lineNumber+")":n&&(o=" (created by "+n+")"),n="\n in "+(r||"Unknown")+o}t+=n,e=e.return}while(e);return t}function ye(e){switch(typeof e){case"boolean":case"number":case"object":case"string":case"undefined":return e;default:return""}}function be(e){var t=e.type;return(e=e.nodeName)&&"input"===e.toLowerCase()&&("checkbox"===t||"radio"===t)}function Se(e){e._valueTracker||(e._valueTracker=function(e){var t=be(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 i=n.get,o=n.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return i.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 xe(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),r="";return e&&(r=be(e)?e.checked?"true":"false":e.value),(e=r)!==n&&(t.setValue(e),!0)}function we(e,t){var n=t.checked;return i({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:null!=n?n:e._wrapperState.initialChecked})}function ke(e,t){var n=null==t.defaultValue?"":t.defaultValue,r=null!=t.checked?t.checked:t.defaultChecked;n=ye(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 Ce(e,t){null!=(t=t.checked)&&X(e,"checked",t,!1)}function Oe(e,t){Ce(e,t);var n=ye(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")?Ee(e,t.type,n):t.hasOwnProperty("defaultValue")&&Ee(e,t.type,ye(t.defaultValue)),null==t.checked&&null!=t.defaultChecked&&(e.defaultChecked=!!t.defaultChecked)}function _e(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 Ee(e,t,n){"number"===t&&e.ownerDocument.activeElement===e||(null==n?e.defaultValue=""+e._wrapperState.initialValue:e.defaultValue!==""+n&&(e.defaultValue=""+n))}function Te(e,t){return e=i({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 Ae(e,t,n,r){if(e=e.options,t){t={};for(var i=0;i<n.length;i++)t["$"+n[i]]=!0;for(n=0;n<e.length;n++)i=t.hasOwnProperty("$"+e[n].value),e[n].selected!==i&&(e[n].selected=i),i&&r&&(e[n].defaultSelected=!0)}else{for(n=""+ye(n),t=null,i=0;i<e.length;i++){if(e[i].value===n)return e[i].selected=!0,void(r&&(e[i].defaultSelected=!0));null!==t||e[i].disabled||(t=e[i])}null!==t&&(t.selected=!0)}}function Pe(e,t){if(null!=t.dangerouslySetInnerHTML)throw Error(a(91));return i({},t,{value:void 0,defaultValue:void 0,children:""+e._wrapperState.initialValue})}function Re(e,t){var n=t.value;if(null==n){if(n=t.children,t=t.defaultValue,null!=n){if(null!=t)throw Error(a(92));if(Array.isArray(n)){if(!(1>=n.length))throw Error(a(93));n=n[0]}t=n}null==t&&(t=""),n=t}e._wrapperState={initialValue:ye(n)}}function ze(e,t){var n=ye(t.value),r=ye(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 Le(e){var t=e.textContent;t===e._wrapperState.initialValue&&""!==t&&null!==t&&(e.value=t)}var je="http://www.w3.org/1999/xhtml",Me="http://www.w3.org/2000/svg";function Be(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 We(e,t){return null==e||"http://www.w3.org/1999/xhtml"===e?Be(t):"http://www.w3.org/2000/svg"===e&&"foreignObject"===t?"http://www.w3.org/1999/xhtml":e}var Ne,Ie=function(e){return"undefined"!=typeof MSApp&&MSApp.execUnsafeLocalFunction?function(t,n,r,i){MSApp.execUnsafeLocalFunction((function(){return e(t,n)}))}:e}((function(e,t){if(e.namespaceURI!==Me||"innerHTML"in e)e.innerHTML=t;else{for((Ne=Ne||document.createElement("div")).innerHTML="<svg>"+t.valueOf().toString()+"</svg>",t=Ne.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}}));function De(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&3===n.nodeType)return void(n.nodeValue=t)}e.textContent=t}function Ue(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n["Webkit"+e]="webkit"+t,n["Moz"+e]="moz"+t,n}var qe={animationend:Ue("Animation","AnimationEnd"),animationiteration:Ue("Animation","AnimationIteration"),animationstart:Ue("Animation","AnimationStart"),transitionend:Ue("Transition","TransitionEnd")},Fe={},Ve={};function Ge(e){if(Fe[e])return Fe[e];if(!qe[e])return e;var t,n=qe[e];for(t in n)if(n.hasOwnProperty(t)&&t in Ve)return Fe[e]=n[t];return e}E&&(Ve=document.createElement("div").style,"AnimationEvent"in window||(delete qe.animationend.animation,delete qe.animationiteration.animation,delete qe.animationstart.animation),"TransitionEvent"in window||delete qe.transitionend.transition);var He=Ge("animationend"),Ke=Ge("animationiteration"),$e=Ge("animationstart"),Ye=Ge("transitionend"),Qe="abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange seeked seeking stalled suspend timeupdate volumechange waiting".split(" "),Xe=new("function"==typeof WeakMap?WeakMap:Map);function Je(e){var t=Xe.get(e);return void 0===t&&(t=new Map,Xe.set(e,t)),t}function Ze(e){var t=e,n=e;if(e.alternate)for(;t.return;)t=t.return;else{e=t;do{0!=(1026&(t=e).effectTag)&&(n=t.return),e=t.return}while(e)}return 3===t.tag?n:null}function et(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 tt(e){if(Ze(e)!==e)throw Error(a(188))}function nt(e){if(!(e=function(e){var t=e.alternate;if(!t){if(null===(t=Ze(e)))throw Error(a(188));return t!==e?null:e}for(var n=e,r=t;;){var i=n.return;if(null===i)break;var o=i.alternate;if(null===o){if(null!==(r=i.return)){n=r;continue}break}if(i.child===o.child){for(o=i.child;o;){if(o===n)return tt(i),e;if(o===r)return tt(i),t;o=o.sibling}throw Error(a(188))}if(n.return!==r.return)n=i,r=o;else{for(var s=!1,l=i.child;l;){if(l===n){s=!0,n=i,r=o;break}if(l===r){s=!0,r=i,n=o;break}l=l.sibling}if(!s){for(l=o.child;l;){if(l===n){s=!0,n=o,r=i;break}if(l===r){s=!0,r=o,n=i;break}l=l.sibling}if(!s)throw Error(a(189))}}if(n.alternate!==r)throw Error(a(190))}if(3!==n.tag)throw Error(a(188));return n.stateNode.current===n?e:t}(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 rt(e,t){if(null==t)throw Error(a(30));return null==e?t:Array.isArray(e)?Array.isArray(t)?(e.push.apply(e,t),e):(e.push(t),e):Array.isArray(t)?[e].concat(t):[e,t]}function it(e,t,n){Array.isArray(e)?e.forEach(t,n):e&&t.call(n,e)}var ot=null;function at(e){if(e){var t=e._dispatchListeners,n=e._dispatchInstances;if(Array.isArray(t))for(var r=0;r<t.length&&!e.isPropagationStopped();r++)v(e,t[r],n[r]);else t&&v(e,t,n);e._dispatchListeners=null,e._dispatchInstances=null,e.isPersistent()||e.constructor.release(e)}}function st(e){if(null!==e&&(ot=rt(ot,e)),e=ot,ot=null,e){if(it(e,at),ot)throw Error(a(95));if(c)throw e=d,c=!1,d=null,e}}function lt(e){return(e=e.target||e.srcElement||window).correspondingUseElement&&(e=e.correspondingUseElement),3===e.nodeType?e.parentNode:e}function ut(e){if(!E)return!1;var t=(e="on"+e)in document;return t||((t=document.createElement("div")).setAttribute(e,"return;"),t="function"==typeof t[e]),t}var ct=[];function dt(e){e.topLevelType=null,e.nativeEvent=null,e.targetInst=null,e.ancestors.length=0,10>ct.length&&ct.push(e)}function pt(e,t,n,r){if(ct.length){var i=ct.pop();return i.topLevelType=e,i.eventSystemFlags=r,i.nativeEvent=t,i.targetInst=n,i}return{topLevelType:e,eventSystemFlags:r,nativeEvent:t,targetInst:n,ancestors:[]}}function ft(e){var t=e.targetInst,n=t;do{if(!n){e.ancestors.push(n);break}var r=n;if(3===r.tag)r=r.stateNode.containerInfo;else{for(;r.return;)r=r.return;r=3!==r.tag?null:r.stateNode.containerInfo}if(!r)break;5!==(t=n.tag)&&6!==t||e.ancestors.push(n),n=En(r)}while(n);for(n=0;n<e.ancestors.length;n++){t=e.ancestors[n];var i=lt(e.nativeEvent);r=e.topLevelType;var o=e.nativeEvent,a=e.eventSystemFlags;0===n&&(a|=64);for(var s=null,l=0;l<w.length;l++){var u=w[l];u&&(u=u.extractEvents(r,t,o,i,a))&&(s=rt(s,u))}st(s)}}function mt(e,t,n){if(!n.has(e)){switch(e){case"scroll":$t(t,"scroll",!0);break;case"focus":case"blur":$t(t,"focus",!0),$t(t,"blur",!0),n.set("blur",null),n.set("focus",null);break;case"cancel":case"close":ut(e)&&$t(t,e,!0);break;case"invalid":case"submit":case"reset":break;default:-1===Qe.indexOf(e)&&Kt(e,t)}n.set(e,null)}}var ht,gt,vt,yt=!1,bt=[],St=null,xt=null,wt=null,kt=new Map,Ct=new Map,Ot=[],_t="mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput close cancel copy cut paste click change contextmenu reset submit".split(" "),Et="focus blur dragenter dragleave mouseover mouseout pointerover pointerout gotpointercapture lostpointercapture".split(" ");function Tt(e,t,n,r,i){return{blockedOn:e,topLevelType:t,eventSystemFlags:32|n,nativeEvent:i,container:r}}function At(e,t){switch(e){case"focus":case"blur":St=null;break;case"dragenter":case"dragleave":xt=null;break;case"mouseover":case"mouseout":wt=null;break;case"pointerover":case"pointerout":kt.delete(t.pointerId);break;case"gotpointercapture":case"lostpointercapture":Ct.delete(t.pointerId)}}function Pt(e,t,n,r,i,o){return null===e||e.nativeEvent!==o?(e=Tt(t,n,r,i,o),null!==t&&(null!==(t=Tn(t))&>(t)),e):(e.eventSystemFlags|=r,e)}function Rt(e){var t=En(e.target);if(null!==t){var n=Ze(t);if(null!==n)if(13===(t=n.tag)){if(null!==(t=et(n)))return e.blockedOn=t,void o.unstable_runWithPriority(e.priority,(function(){vt(n)}))}else if(3===t&&n.stateNode.hydrate)return void(e.blockedOn=3===n.tag?n.stateNode.containerInfo:null)}e.blockedOn=null}function zt(e){if(null!==e.blockedOn)return!1;var t=Jt(e.topLevelType,e.eventSystemFlags,e.container,e.nativeEvent);if(null!==t){var n=Tn(t);return null!==n&>(n),e.blockedOn=t,!1}return!0}function Lt(e,t,n){zt(e)&&n.delete(t)}function jt(){for(yt=!1;0<bt.length;){var e=bt[0];if(null!==e.blockedOn){null!==(e=Tn(e.blockedOn))&&ht(e);break}var t=Jt(e.topLevelType,e.eventSystemFlags,e.container,e.nativeEvent);null!==t?e.blockedOn=t:bt.shift()}null!==St&&zt(St)&&(St=null),null!==xt&&zt(xt)&&(xt=null),null!==wt&&zt(wt)&&(wt=null),kt.forEach(Lt),Ct.forEach(Lt)}function Mt(e,t){e.blockedOn===t&&(e.blockedOn=null,yt||(yt=!0,o.unstable_scheduleCallback(o.unstable_NormalPriority,jt)))}function Bt(e){function t(t){return Mt(t,e)}if(0<bt.length){Mt(bt[0],e);for(var n=1;n<bt.length;n++){var r=bt[n];r.blockedOn===e&&(r.blockedOn=null)}}for(null!==St&&Mt(St,e),null!==xt&&Mt(xt,e),null!==wt&&Mt(wt,e),kt.forEach(t),Ct.forEach(t),n=0;n<Ot.length;n++)(r=Ot[n]).blockedOn===e&&(r.blockedOn=null);for(;0<Ot.length&&null===(n=Ot[0]).blockedOn;)Rt(n),null===n.blockedOn&&Ot.shift()}var Wt={},Nt=new Map,It=new Map,Dt=["abort","abort",He,"animationEnd",Ke,"animationIteration",$e,"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",Ye,"transitionEnd","waiting","waiting"];function Ut(e,t){for(var n=0;n<e.length;n+=2){var r=e[n],i=e[n+1],o="on"+(i[0].toUpperCase()+i.slice(1));o={phasedRegistrationNames:{bubbled:o,captured:o+"Capture"},dependencies:[r],eventPriority:t},It.set(r,t),Nt.set(r,o),Wt[i]=o}}Ut("blur blur cancel cancel click click close close contextmenu contextMenu copy copy cut cut auxclick auxClick dblclick doubleClick dragend dragEnd dragstart dragStart drop drop focus focus 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),Ut("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),Ut(Dt,2);for(var qt="change selectionchange textInput compositionstart compositionend compositionupdate".split(" "),Ft=0;Ft<qt.length;Ft++)It.set(qt[Ft],0);var Vt=o.unstable_UserBlockingPriority,Gt=o.unstable_runWithPriority,Ht=!0;function Kt(e,t){$t(t,e,!1)}function $t(e,t,n){var r=It.get(t);switch(void 0===r?2:r){case 0:r=Yt.bind(null,t,1,e);break;case 1:r=Qt.bind(null,t,1,e);break;default:r=Xt.bind(null,t,1,e)}n?e.addEventListener(t,r,!0):e.addEventListener(t,r,!1)}function Yt(e,t,n,r){N||B();var i=Xt,o=N;N=!0;try{M(i,e,t,n,r)}finally{(N=o)||D()}}function Qt(e,t,n,r){Gt(Vt,Xt.bind(null,e,t,n,r))}function Xt(e,t,n,r){if(Ht)if(0<bt.length&&-1<_t.indexOf(e))e=Tt(null,e,t,n,r),bt.push(e);else{var i=Jt(e,t,n,r);if(null===i)At(e,r);else if(-1<_t.indexOf(e))e=Tt(i,e,t,n,r),bt.push(e);else if(!function(e,t,n,r,i){switch(t){case"focus":return St=Pt(St,e,t,n,r,i),!0;case"dragenter":return xt=Pt(xt,e,t,n,r,i),!0;case"mouseover":return wt=Pt(wt,e,t,n,r,i),!0;case"pointerover":var o=i.pointerId;return kt.set(o,Pt(kt.get(o)||null,e,t,n,r,i)),!0;case"gotpointercapture":return o=i.pointerId,Ct.set(o,Pt(Ct.get(o)||null,e,t,n,r,i)),!0}return!1}(i,e,t,n,r)){At(e,r),e=pt(e,r,null,t);try{U(ft,e)}finally{dt(e)}}}}function Jt(e,t,n,r){if(null!==(n=En(n=lt(r)))){var i=Ze(n);if(null===i)n=null;else{var o=i.tag;if(13===o){if(null!==(n=et(i)))return n;n=null}else if(3===o){if(i.stateNode.hydrate)return 3===i.tag?i.stateNode.containerInfo:null;n=null}else i!==n&&(n=null)}}e=pt(e,r,n,t);try{U(ft,e)}finally{dt(e)}return null}var Zt={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},en=["Webkit","ms","Moz","O"];function tn(e,t,n){return null==t||"boolean"==typeof t||""===t?"":n||"number"!=typeof t||0===t||Zt.hasOwnProperty(e)&&Zt[e]?(""+t).trim():t+"px"}function nn(e,t){for(var n in e=e.style,t)if(t.hasOwnProperty(n)){var r=0===n.indexOf("--"),i=tn(n,t[n],r);"float"===n&&(n="cssFloat"),r?e.setProperty(n,i):e[n]=i}}Object.keys(Zt).forEach((function(e){en.forEach((function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),Zt[t]=Zt[e]}))}));var rn=i({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 on(e,t){if(t){if(rn[e]&&(null!=t.children||null!=t.dangerouslySetInnerHTML))throw Error(a(137,e,""));if(null!=t.dangerouslySetInnerHTML){if(null!=t.children)throw Error(a(60));if("object"!=typeof t.dangerouslySetInnerHTML||!("__html"in t.dangerouslySetInnerHTML))throw Error(a(61))}if(null!=t.style&&"object"!=typeof t.style)throw Error(a(62,""))}}function an(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}}var sn=je;function ln(e,t){var n=Je(e=9===e.nodeType||11===e.nodeType?e:e.ownerDocument);t=O[t];for(var r=0;r<t.length;r++)mt(t[r],e,n)}function un(){}function cn(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 dn(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function pn(e,t){var n,r=dn(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=dn(r)}}function fn(){for(var e=window,t=cn();t instanceof e.HTMLIFrameElement;){try{var n="string"==typeof t.contentWindow.location.href}catch(e){n=!1}if(!n)break;t=cn((e=t.contentWindow).document)}return t}function mn(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 hn=null,gn=null;function vn(e,t){switch(e){case"button":case"input":case"select":case"textarea":return!!t.autoFocus}return!1}function yn(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 bn="function"==typeof setTimeout?setTimeout:void 0,Sn="function"==typeof clearTimeout?clearTimeout:void 0;function xn(e){for(;null!=e;e=e.nextSibling){var t=e.nodeType;if(1===t||3===t)break}return e}function wn(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 kn=Math.random().toString(36).slice(2),Cn="__reactInternalInstance$"+kn,On="__reactEventHandlers$"+kn,_n="__reactContainere$"+kn;function En(e){var t=e[Cn];if(t)return t;for(var n=e.parentNode;n;){if(t=n[_n]||n[Cn]){if(n=t.alternate,null!==t.child||null!==n&&null!==n.child)for(e=wn(e);null!==e;){if(n=e[Cn])return n;e=wn(e)}return t}n=(e=n).parentNode}return null}function Tn(e){return!(e=e[Cn]||e[_n])||5!==e.tag&&6!==e.tag&&13!==e.tag&&3!==e.tag?null:e}function An(e){if(5===e.tag||6===e.tag)return e.stateNode;throw Error(a(33))}function Pn(e){return e[On]||null}function Rn(e){do{e=e.return}while(e&&5!==e.tag);return e||null}function zn(e,t){var n=e.stateNode;if(!n)return null;var r=m(n);if(!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(a(231,t,typeof n));return n}function Ln(e,t,n){(t=zn(e,n.dispatchConfig.phasedRegistrationNames[t]))&&(n._dispatchListeners=rt(n._dispatchListeners,t),n._dispatchInstances=rt(n._dispatchInstances,e))}function jn(e){if(e&&e.dispatchConfig.phasedRegistrationNames){for(var t=e._targetInst,n=[];t;)n.push(t),t=Rn(t);for(t=n.length;0<t--;)Ln(n[t],"captured",e);for(t=0;t<n.length;t++)Ln(n[t],"bubbled",e)}}function Mn(e,t,n){e&&n&&n.dispatchConfig.registrationName&&(t=zn(e,n.dispatchConfig.registrationName))&&(n._dispatchListeners=rt(n._dispatchListeners,t),n._dispatchInstances=rt(n._dispatchInstances,e))}function Bn(e){e&&e.dispatchConfig.registrationName&&Mn(e._targetInst,null,e)}function Wn(e){it(e,jn)}var Nn=null,In=null,Dn=null;function Un(){if(Dn)return Dn;var e,t,n=In,r=n.length,i="value"in Nn?Nn.value:Nn.textContent,o=i.length;for(e=0;e<r&&n[e]===i[e];e++);var a=r-e;for(t=1;t<=a&&n[r-t]===i[o-t];t++);return Dn=i.slice(e,1<t?1-t:void 0)}function qn(){return!0}function Fn(){return!1}function Vn(e,t,n,r){for(var i in this.dispatchConfig=e,this._targetInst=t,this.nativeEvent=n,e=this.constructor.Interface)e.hasOwnProperty(i)&&((t=e[i])?this[i]=t(n):"target"===i?this.target=r:this[i]=n[i]);return this.isDefaultPrevented=(null!=n.defaultPrevented?n.defaultPrevented:!1===n.returnValue)?qn:Fn,this.isPropagationStopped=Fn,this}function Gn(e,t,n,r){if(this.eventPool.length){var i=this.eventPool.pop();return this.call(i,e,t,n,r),i}return new this(e,t,n,r)}function Hn(e){if(!(e instanceof this))throw Error(a(279));e.destructor(),10>this.eventPool.length&&this.eventPool.push(e)}function Kn(e){e.eventPool=[],e.getPooled=Gn,e.release=Hn}i(Vn.prototype,{preventDefault:function(){this.defaultPrevented=!0;var e=this.nativeEvent;e&&(e.preventDefault?e.preventDefault():"unknown"!=typeof e.returnValue&&(e.returnValue=!1),this.isDefaultPrevented=qn)},stopPropagation:function(){var e=this.nativeEvent;e&&(e.stopPropagation?e.stopPropagation():"unknown"!=typeof e.cancelBubble&&(e.cancelBubble=!0),this.isPropagationStopped=qn)},persist:function(){this.isPersistent=qn},isPersistent:Fn,destructor:function(){var e,t=this.constructor.Interface;for(e in t)this[e]=null;this.nativeEvent=this._targetInst=this.dispatchConfig=null,this.isPropagationStopped=this.isDefaultPrevented=Fn,this._dispatchInstances=this._dispatchListeners=null}}),Vn.Interface={type:null,target:null,currentTarget:function(){return null},eventPhase:null,bubbles:null,cancelable:null,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:null,isTrusted:null},Vn.extend=function(e){function t(){}function n(){return r.apply(this,arguments)}var r=this;t.prototype=r.prototype;var o=new t;return i(o,n.prototype),n.prototype=o,n.prototype.constructor=n,n.Interface=i({},r.Interface,e),n.extend=r.extend,Kn(n),n},Kn(Vn);var $n=Vn.extend({data:null}),Yn=Vn.extend({data:null}),Qn=[9,13,27,32],Xn=E&&"CompositionEvent"in window,Jn=null;E&&"documentMode"in document&&(Jn=document.documentMode);var Zn=E&&"TextEvent"in window&&!Jn,er=E&&(!Xn||Jn&&8<Jn&&11>=Jn),tr=String.fromCharCode(32),nr={beforeInput:{phasedRegistrationNames:{bubbled:"onBeforeInput",captured:"onBeforeInputCapture"},dependencies:["compositionend","keypress","textInput","paste"]},compositionEnd:{phasedRegistrationNames:{bubbled:"onCompositionEnd",captured:"onCompositionEndCapture"},dependencies:"blur compositionend keydown keypress keyup mousedown".split(" ")},compositionStart:{phasedRegistrationNames:{bubbled:"onCompositionStart",captured:"onCompositionStartCapture"},dependencies:"blur compositionstart keydown keypress keyup mousedown".split(" ")},compositionUpdate:{phasedRegistrationNames:{bubbled:"onCompositionUpdate",captured:"onCompositionUpdateCapture"},dependencies:"blur compositionupdate keydown keypress keyup mousedown".split(" ")}},rr=!1;function ir(e,t){switch(e){case"keyup":return-1!==Qn.indexOf(t.keyCode);case"keydown":return 229!==t.keyCode;case"keypress":case"mousedown":case"blur":return!0;default:return!1}}function or(e){return"object"==typeof(e=e.detail)&&"data"in e?e.data:null}var ar=!1;var sr={eventTypes:nr,extractEvents:function(e,t,n,r){var i;if(Xn)e:{switch(e){case"compositionstart":var o=nr.compositionStart;break e;case"compositionend":o=nr.compositionEnd;break e;case"compositionupdate":o=nr.compositionUpdate;break e}o=void 0}else ar?ir(e,n)&&(o=nr.compositionEnd):"keydown"===e&&229===n.keyCode&&(o=nr.compositionStart);return o?(er&&"ko"!==n.locale&&(ar||o!==nr.compositionStart?o===nr.compositionEnd&&ar&&(i=Un()):(In="value"in(Nn=r)?Nn.value:Nn.textContent,ar=!0)),o=$n.getPooled(o,t,n,r),i?o.data=i:null!==(i=or(n))&&(o.data=i),Wn(o),i=o):i=null,(e=Zn?function(e,t){switch(e){case"compositionend":return or(t);case"keypress":return 32!==t.which?null:(rr=!0,tr);case"textInput":return(e=t.data)===tr&&rr?null:e;default:return null}}(e,n):function(e,t){if(ar)return"compositionend"===e||!Xn&&ir(e,t)?(e=Un(),Dn=In=Nn=null,ar=!1,e):null;switch(e){case"paste":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 er&&"ko"!==t.locale?null:t.data;default:return null}}(e,n))?((t=Yn.getPooled(nr.beforeInput,t,n,r)).data=e,Wn(t)):t=null,null===i?t:null===t?i:[i,t]}},lr={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 ur(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return"input"===t?!!lr[e.type]:"textarea"===t}var cr={change:{phasedRegistrationNames:{bubbled:"onChange",captured:"onChangeCapture"},dependencies:"blur change click focus input keydown keyup selectionchange".split(" ")}};function dr(e,t,n){return(e=Vn.getPooled(cr.change,e,t,n)).type="change",z(n),Wn(e),e}var pr=null,fr=null;function mr(e){st(e)}function hr(e){if(xe(An(e)))return e}function gr(e,t){if("change"===e)return t}var vr=!1;function yr(){pr&&(pr.detachEvent("onpropertychange",br),fr=pr=null)}function br(e){if("value"===e.propertyName&&hr(fr))if(e=dr(fr,e,lt(e)),N)st(e);else{N=!0;try{j(mr,e)}finally{N=!1,D()}}}function Sr(e,t,n){"focus"===e?(yr(),fr=n,(pr=t).attachEvent("onpropertychange",br)):"blur"===e&&yr()}function xr(e){if("selectionchange"===e||"keyup"===e||"keydown"===e)return hr(fr)}function wr(e,t){if("click"===e)return hr(t)}function kr(e,t){if("input"===e||"change"===e)return hr(t)}E&&(vr=ut("input")&&(!document.documentMode||9<document.documentMode));var Cr={eventTypes:cr,_isInputEventSupported:vr,extractEvents:function(e,t,n,r){var i=t?An(t):window,o=i.nodeName&&i.nodeName.toLowerCase();if("select"===o||"input"===o&&"file"===i.type)var a=gr;else if(ur(i))if(vr)a=kr;else{a=xr;var s=Sr}else(o=i.nodeName)&&"input"===o.toLowerCase()&&("checkbox"===i.type||"radio"===i.type)&&(a=wr);if(a&&(a=a(e,t)))return dr(a,n,r);s&&s(e,i,t),"blur"===e&&(e=i._wrapperState)&&e.controlled&&"number"===i.type&&Ee(i,"number",i.value)}},Or=Vn.extend({view:null,detail:null}),_r={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function Er(e){var t=this.nativeEvent;return t.getModifierState?t.getModifierState(e):!!(e=_r[e])&&!!t[e]}function Tr(){return Er}var Ar=0,Pr=0,Rr=!1,zr=!1,Lr=Or.extend({screenX:null,screenY:null,clientX:null,clientY:null,pageX:null,pageY:null,ctrlKey:null,shiftKey:null,altKey:null,metaKey:null,getModifierState:Tr,button:null,buttons:null,relatedTarget:function(e){return e.relatedTarget||(e.fromElement===e.srcElement?e.toElement:e.fromElement)},movementX:function(e){if("movementX"in e)return e.movementX;var t=Ar;return Ar=e.screenX,Rr?"mousemove"===e.type?e.screenX-t:0:(Rr=!0,0)},movementY:function(e){if("movementY"in e)return e.movementY;var t=Pr;return Pr=e.screenY,zr?"mousemove"===e.type?e.screenY-t:0:(zr=!0,0)}}),jr=Lr.extend({pointerId:null,width:null,height:null,pressure:null,tangentialPressure:null,tiltX:null,tiltY:null,twist:null,pointerType:null,isPrimary:null}),Mr={mouseEnter:{registrationName:"onMouseEnter",dependencies:["mouseout","mouseover"]},mouseLeave:{registrationName:"onMouseLeave",dependencies:["mouseout","mouseover"]},pointerEnter:{registrationName:"onPointerEnter",dependencies:["pointerout","pointerover"]},pointerLeave:{registrationName:"onPointerLeave",dependencies:["pointerout","pointerover"]}},Br={eventTypes:Mr,extractEvents:function(e,t,n,r,i){var o="mouseover"===e||"pointerover"===e,a="mouseout"===e||"pointerout"===e;if(o&&0==(32&i)&&(n.relatedTarget||n.fromElement)||!a&&!o)return null;(o=r.window===r?r:(o=r.ownerDocument)?o.defaultView||o.parentWindow:window,a)?(a=t,null!==(t=(t=n.relatedTarget||n.toElement)?En(t):null)&&(t!==Ze(t)||5!==t.tag&&6!==t.tag)&&(t=null)):a=null;if(a===t)return null;if("mouseout"===e||"mouseover"===e)var s=Lr,l=Mr.mouseLeave,u=Mr.mouseEnter,c="mouse";else"pointerout"!==e&&"pointerover"!==e||(s=jr,l=Mr.pointerLeave,u=Mr.pointerEnter,c="pointer");if(e=null==a?o:An(a),o=null==t?o:An(t),(l=s.getPooled(l,a,n,r)).type=c+"leave",l.target=e,l.relatedTarget=o,(n=s.getPooled(u,t,n,r)).type=c+"enter",n.target=o,n.relatedTarget=e,c=t,(r=a)&&c)e:{for(u=c,a=0,e=s=r;e;e=Rn(e))a++;for(e=0,t=u;t;t=Rn(t))e++;for(;0<a-e;)s=Rn(s),a--;for(;0<e-a;)u=Rn(u),e--;for(;a--;){if(s===u||s===u.alternate)break e;s=Rn(s),u=Rn(u)}s=null}else s=null;for(u=s,s=[];r&&r!==u&&(null===(a=r.alternate)||a!==u);)s.push(r),r=Rn(r);for(r=[];c&&c!==u&&(null===(a=c.alternate)||a!==u);)r.push(c),c=Rn(c);for(c=0;c<s.length;c++)Mn(s[c],"bubbled",l);for(c=r.length;0<c--;)Mn(r[c],"captured",n);return 0==(64&i)?[l]:[l,n]}};var Wr="function"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t},Nr=Object.prototype.hasOwnProperty;function Ir(e,t){if(Wr(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(!Nr.call(t,n[r])||!Wr(e[n[r]],t[n[r]]))return!1;return!0}var Dr=E&&"documentMode"in document&&11>=document.documentMode,Ur={select:{phasedRegistrationNames:{bubbled:"onSelect",captured:"onSelectCapture"},dependencies:"blur contextmenu dragend focus keydown keyup mousedown mouseup selectionchange".split(" ")}},qr=null,Fr=null,Vr=null,Gr=!1;function Hr(e,t){var n=t.window===t?t.document:9===t.nodeType?t:t.ownerDocument;return Gr||null==qr||qr!==cn(n)?null:("selectionStart"in(n=qr)&&mn(n)?n={start:n.selectionStart,end:n.selectionEnd}:n={anchorNode:(n=(n.ownerDocument&&n.ownerDocument.defaultView||window).getSelection()).anchorNode,anchorOffset:n.anchorOffset,focusNode:n.focusNode,focusOffset:n.focusOffset},Vr&&Ir(Vr,n)?null:(Vr=n,(e=Vn.getPooled(Ur.select,Fr,e,t)).type="select",e.target=qr,Wn(e),e))}var Kr={eventTypes:Ur,extractEvents:function(e,t,n,r,i,o){if(!(o=!(i=o||(r.window===r?r.document:9===r.nodeType?r:r.ownerDocument)))){e:{i=Je(i),o=O.onSelect;for(var a=0;a<o.length;a++)if(!i.has(o[a])){i=!1;break e}i=!0}o=!i}if(o)return null;switch(i=t?An(t):window,e){case"focus":(ur(i)||"true"===i.contentEditable)&&(qr=i,Fr=t,Vr=null);break;case"blur":Vr=Fr=qr=null;break;case"mousedown":Gr=!0;break;case"contextmenu":case"mouseup":case"dragend":return Gr=!1,Hr(n,r);case"selectionchange":if(Dr)break;case"keydown":case"keyup":return Hr(n,r)}return null}},$r=Vn.extend({animationName:null,elapsedTime:null,pseudoElement:null}),Yr=Vn.extend({clipboardData:function(e){return"clipboardData"in e?e.clipboardData:window.clipboardData}}),Qr=Or.extend({relatedTarget:null});function Xr(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}var Jr={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},Zr={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"},ei=Or.extend({key:function(e){if(e.key){var t=Jr[e.key]||e.key;if("Unidentified"!==t)return t}return"keypress"===e.type?13===(e=Xr(e))?"Enter":String.fromCharCode(e):"keydown"===e.type||"keyup"===e.type?Zr[e.keyCode]||"Unidentified":""},location:null,ctrlKey:null,shiftKey:null,altKey:null,metaKey:null,repeat:null,locale:null,getModifierState:Tr,charCode:function(e){return"keypress"===e.type?Xr(e):0},keyCode:function(e){return"keydown"===e.type||"keyup"===e.type?e.keyCode:0},which:function(e){return"keypress"===e.type?Xr(e):"keydown"===e.type||"keyup"===e.type?e.keyCode:0}}),ti=Lr.extend({dataTransfer:null}),ni=Or.extend({touches:null,targetTouches:null,changedTouches:null,altKey:null,metaKey:null,ctrlKey:null,shiftKey:null,getModifierState:Tr}),ri=Vn.extend({propertyName:null,elapsedTime:null,pseudoElement:null}),ii=Lr.extend({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:null,deltaMode:null}),oi={eventTypes:Wt,extractEvents:function(e,t,n,r){var i=Nt.get(e);if(!i)return null;switch(e){case"keypress":if(0===Xr(n))return null;case"keydown":case"keyup":e=ei;break;case"blur":case"focus":e=Qr;break;case"click":if(2===n.button)return null;case"auxclick":case"dblclick":case"mousedown":case"mousemove":case"mouseup":case"mouseout":case"mouseover":case"contextmenu":e=Lr;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":e=ti;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":e=ni;break;case He:case Ke:case $e:e=$r;break;case Ye:e=ri;break;case"scroll":e=Or;break;case"wheel":e=ii;break;case"copy":case"cut":case"paste":e=Yr;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":e=jr;break;default:e=Vn}return Wn(t=e.getPooled(i,t,n,r)),t}};if(y)throw Error(a(101));y=Array.prototype.slice.call("ResponderEventPlugin SimpleEventPlugin EnterLeaveEventPlugin ChangeEventPlugin SelectEventPlugin BeforeInputEventPlugin".split(" ")),S(),m=Pn,h=Tn,g=An,_({SimpleEventPlugin:oi,EnterLeaveEventPlugin:Br,ChangeEventPlugin:Cr,SelectEventPlugin:Kr,BeforeInputEventPlugin:sr});var ai=[],si=-1;function li(e){0>si||(e.current=ai[si],ai[si]=null,si--)}function ui(e,t){si++,ai[si]=e.current,e.current=t}var ci={},di={current:ci},pi={current:!1},fi=ci;function mi(e,t){var n=e.type.contextTypes;if(!n)return ci;var r=e.stateNode;if(r&&r.__reactInternalMemoizedUnmaskedChildContext===t)return r.__reactInternalMemoizedMaskedChildContext;var i,o={};for(i in n)o[i]=t[i];return r&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=o),o}function hi(e){return null!=(e=e.childContextTypes)}function gi(){li(pi),li(di)}function vi(e,t,n){if(di.current!==ci)throw Error(a(168));ui(di,t),ui(pi,n)}function yi(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(a(108,ge(t)||"Unknown",o));return i({},n,{},r)}function bi(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||ci,fi=di.current,ui(di,e),ui(pi,pi.current),!0}function Si(e,t,n){var r=e.stateNode;if(!r)throw Error(a(169));n?(e=yi(e,t,fi),r.__reactInternalMemoizedMergedChildContext=e,li(pi),li(di),ui(di,e)):li(pi),ui(pi,n)}var xi=o.unstable_runWithPriority,wi=o.unstable_scheduleCallback,ki=o.unstable_cancelCallback,Ci=o.unstable_requestPaint,Oi=o.unstable_now,_i=o.unstable_getCurrentPriorityLevel,Ei=o.unstable_ImmediatePriority,Ti=o.unstable_UserBlockingPriority,Ai=o.unstable_NormalPriority,Pi=o.unstable_LowPriority,Ri=o.unstable_IdlePriority,zi={},Li=o.unstable_shouldYield,ji=void 0!==Ci?Ci:function(){},Mi=null,Bi=null,Wi=!1,Ni=Oi(),Ii=1e4>Ni?Oi:function(){return Oi()-Ni};function Di(){switch(_i()){case Ei:return 99;case Ti:return 98;case Ai:return 97;case Pi:return 96;case Ri:return 95;default:throw Error(a(332))}}function Ui(e){switch(e){case 99:return Ei;case 98:return Ti;case 97:return Ai;case 96:return Pi;case 95:return Ri;default:throw Error(a(332))}}function qi(e,t){return e=Ui(e),xi(e,t)}function Fi(e,t,n){return e=Ui(e),wi(e,t,n)}function Vi(e){return null===Mi?(Mi=[e],Bi=wi(Ei,Hi)):Mi.push(e),zi}function Gi(){if(null!==Bi){var e=Bi;Bi=null,ki(e)}Hi()}function Hi(){if(!Wi&&null!==Mi){Wi=!0;var e=0;try{var t=Mi;qi(99,(function(){for(;e<t.length;e++){var n=t[e];do{n=n(!0)}while(null!==n)}})),Mi=null}catch(t){throw null!==Mi&&(Mi=Mi.slice(e+1)),wi(Ei,Gi),t}finally{Wi=!1}}}function Ki(e,t,n){return 1073741821-(1+((1073741821-e+t/10)/(n/=10)|0))*n}function $i(e,t){if(e&&e.defaultProps)for(var n in t=i({},t),e=e.defaultProps)void 0===t[n]&&(t[n]=e[n]);return t}var Yi={current:null},Qi=null,Xi=null,Ji=null;function Zi(){Ji=Xi=Qi=null}function eo(e){var t=Yi.current;li(Yi),e.type._context._currentValue=t}function to(e,t){for(;null!==e;){var n=e.alternate;if(e.childExpirationTime<t)e.childExpirationTime=t,null!==n&&n.childExpirationTime<t&&(n.childExpirationTime=t);else{if(!(null!==n&&n.childExpirationTime<t))break;n.childExpirationTime=t}e=e.return}}function no(e,t){Qi=e,Ji=Xi=null,null!==(e=e.dependencies)&&null!==e.firstContext&&(e.expirationTime>=t&&(Pa=!0),e.firstContext=null)}function ro(e,t){if(Ji!==e&&!1!==t&&0!==t)if("number"==typeof t&&1073741823!==t||(Ji=e,t=1073741823),t={context:e,observedBits:t,next:null},null===Xi){if(null===Qi)throw Error(a(308));Xi=t,Qi.dependencies={expirationTime:0,firstContext:t,responders:null}}else Xi=Xi.next=t;return e._currentValue}var io=!1;function oo(e){e.updateQueue={baseState:e.memoizedState,baseQueue:null,shared:{pending:null},effects:null}}function ao(e,t){e=e.updateQueue,t.updateQueue===e&&(t.updateQueue={baseState:e.baseState,baseQueue:e.baseQueue,shared:e.shared,effects:e.effects})}function so(e,t){return(e={expirationTime:e,suspenseConfig:t,tag:0,payload:null,callback:null,next:null}).next=e}function lo(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 uo(e,t){var n=e.alternate;null!==n&&ao(n,e),null===(n=(e=e.updateQueue).baseQueue)?(e.baseQueue=t.next=t,t.next=t):(t.next=n.next,n.next=t)}function co(e,t,n,r){var o=e.updateQueue;io=!1;var a=o.baseQueue,s=o.shared.pending;if(null!==s){if(null!==a){var l=a.next;a.next=s.next,s.next=l}a=s,o.shared.pending=null,null!==(l=e.alternate)&&(null!==(l=l.updateQueue)&&(l.baseQueue=s))}if(null!==a){l=a.next;var u=o.baseState,c=0,d=null,p=null,f=null;if(null!==l)for(var m=l;;){if((s=m.expirationTime)<r){var h={expirationTime:m.expirationTime,suspenseConfig:m.suspenseConfig,tag:m.tag,payload:m.payload,callback:m.callback,next:null};null===f?(p=f=h,d=u):f=f.next=h,s>c&&(c=s)}else{null!==f&&(f=f.next={expirationTime:1073741823,suspenseConfig:m.suspenseConfig,tag:m.tag,payload:m.payload,callback:m.callback,next:null}),ol(s,m.suspenseConfig);e:{var g=e,v=m;switch(s=t,h=n,v.tag){case 1:if("function"==typeof(g=v.payload)){u=g.call(h,u,s);break e}u=g;break e;case 3:g.effectTag=-4097&g.effectTag|64;case 0:if(null==(s="function"==typeof(g=v.payload)?g.call(h,u,s):g))break e;u=i({},u,s);break e;case 2:io=!0}}null!==m.callback&&(e.effectTag|=32,null===(s=o.effects)?o.effects=[m]:s.push(m))}if(null===(m=m.next)||m===l){if(null===(s=o.shared.pending))break;m=a.next=s.next,s.next=l,o.baseQueue=a=s,o.shared.pending=null}}null===f?d=u:f.next=p,o.baseState=d,o.baseQueue=f,al(c),e.expirationTime=c,e.memoizedState=u}}function po(e,t,n){if(e=t.effects,t.effects=null,null!==e)for(t=0;t<e.length;t++){var r=e[t],i=r.callback;if(null!==i){if(r.callback=null,r=i,i=n,"function"!=typeof r)throw Error(a(191,r));r.call(i)}}}var fo=Q.ReactCurrentBatchConfig,mo=(new r.Component).refs;function ho(e,t,n,r){n=null==(n=n(r,t=e.memoizedState))?t:i({},t,n),e.memoizedState=n,0===e.expirationTime&&(e.updateQueue.baseState=n)}var go={isMounted:function(e){return!!(e=e._reactInternalFiber)&&Ze(e)===e},enqueueSetState:function(e,t,n){e=e._reactInternalFiber;var r=Hs(),i=fo.suspense;(i=so(r=Ks(r,e,i),i)).payload=t,null!=n&&(i.callback=n),lo(e,i),$s(e,r)},enqueueReplaceState:function(e,t,n){e=e._reactInternalFiber;var r=Hs(),i=fo.suspense;(i=so(r=Ks(r,e,i),i)).tag=1,i.payload=t,null!=n&&(i.callback=n),lo(e,i),$s(e,r)},enqueueForceUpdate:function(e,t){e=e._reactInternalFiber;var n=Hs(),r=fo.suspense;(r=so(n=Ks(n,e,r),r)).tag=2,null!=t&&(r.callback=t),lo(e,r),$s(e,n)}};function vo(e,t,n,r,i,o,a){return"function"==typeof(e=e.stateNode).shouldComponentUpdate?e.shouldComponentUpdate(r,o,a):!t.prototype||!t.prototype.isPureReactComponent||(!Ir(n,r)||!Ir(i,o))}function yo(e,t,n){var r=!1,i=ci,o=t.contextType;return"object"==typeof o&&null!==o?o=ro(o):(i=hi(t)?fi:di.current,o=(r=null!=(r=t.contextTypes))?mi(e,i):ci),t=new t(n,o),e.memoizedState=null!==t.state&&void 0!==t.state?t.state:null,t.updater=go,e.stateNode=t,t._reactInternalFiber=e,r&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=i,e.__reactInternalMemoizedMaskedChildContext=o),t}function bo(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&&go.enqueueReplaceState(t,t.state,null)}function So(e,t,n,r){var i=e.stateNode;i.props=n,i.state=e.memoizedState,i.refs=mo,oo(e);var o=t.contextType;"object"==typeof o&&null!==o?i.context=ro(o):(o=hi(t)?fi:di.current,i.context=mi(e,o)),co(e,n,i,r),i.state=e.memoizedState,"function"==typeof(o=t.getDerivedStateFromProps)&&(ho(e,t,o,n),i.state=e.memoizedState),"function"==typeof t.getDerivedStateFromProps||"function"==typeof i.getSnapshotBeforeUpdate||"function"!=typeof i.UNSAFE_componentWillMount&&"function"!=typeof i.componentWillMount||(t=i.state,"function"==typeof i.componentWillMount&&i.componentWillMount(),"function"==typeof i.UNSAFE_componentWillMount&&i.UNSAFE_componentWillMount(),t!==i.state&&go.enqueueReplaceState(i,i.state,null),co(e,n,i,r),i.state=e.memoizedState),"function"==typeof i.componentDidMount&&(e.effectTag|=4)}var xo=Array.isArray;function wo(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(a(309));var r=n.stateNode}if(!r)throw Error(a(147,e));var i=""+e;return null!==t&&null!==t.ref&&"function"==typeof t.ref&&t.ref._stringRef===i?t.ref:((t=function(e){var t=r.refs;t===mo&&(t=r.refs={}),null===e?delete t[i]:t[i]=e})._stringRef=i,t)}if("string"!=typeof e)throw Error(a(284));if(!n._owner)throw Error(a(290,e))}return e}function ko(e,t){if("textarea"!==e.type)throw Error(a(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.effectTag=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 i(e,t){return(e=_l(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.effectTag=2,n):r:(t.effectTag=2,n):n}function s(t){return e&&null===t.alternate&&(t.effectTag=2),t}function l(e,t,n,r){return null===t||6!==t.tag?((t=Al(n,e.mode,r)).return=e,t):((t=i(t,n)).return=e,t)}function u(e,t,n,r){return null!==t&&t.elementType===n.type?((r=i(t,n.props)).ref=wo(e,t,n),r.return=e,r):((r=El(n.type,n.key,n.props,null,e.mode,r)).ref=wo(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=Pl(n,e.mode,r)).return=e,t):((t=i(t,n.children||[])).return=e,t)}function d(e,t,n,r,o){return null===t||7!==t.tag?((t=Tl(n,e.mode,r,o)).return=e,t):((t=i(t,n)).return=e,t)}function p(e,t,n){if("string"==typeof t||"number"==typeof t)return(t=Al(""+t,e.mode,n)).return=e,t;if("object"==typeof t&&null!==t){switch(t.$$typeof){case ee:return(n=El(t.type,t.key,t.props,null,e.mode,n)).ref=wo(e,null,t),n.return=e,n;case te:return(t=Pl(t,e.mode,n)).return=e,t}if(xo(t)||he(t))return(t=Tl(t,e.mode,n,null)).return=e,t;ko(e,t)}return null}function f(e,t,n,r){var i=null!==t?t.key:null;if("string"==typeof n||"number"==typeof n)return null!==i?null:l(e,t,""+n,r);if("object"==typeof n&&null!==n){switch(n.$$typeof){case ee:return n.key===i?n.type===ne?d(e,t,n.props.children,r,i):u(e,t,n,r):null;case te:return n.key===i?c(e,t,n,r):null}if(xo(n)||he(n))return null!==i?null:d(e,t,n,r,null);ko(e,n)}return null}function m(e,t,n,r,i){if("string"==typeof r||"number"==typeof r)return l(t,e=e.get(n)||null,""+r,i);if("object"==typeof r&&null!==r){switch(r.$$typeof){case ee:return e=e.get(null===r.key?n:r.key)||null,r.type===ne?d(t,e,r.props.children,i,r.key):u(t,e,r,i);case te:return c(t,e=e.get(null===r.key?n:r.key)||null,r,i)}if(xo(r)||he(r))return d(t,e=e.get(n)||null,r,i,null);ko(t,r)}return null}function h(i,a,s,l){for(var u=null,c=null,d=a,h=a=0,g=null;null!==d&&h<s.length;h++){d.index>h?(g=d,d=null):g=d.sibling;var v=f(i,d,s[h],l);if(null===v){null===d&&(d=g);break}e&&d&&null===v.alternate&&t(i,d),a=o(v,a,h),null===c?u=v:c.sibling=v,c=v,d=g}if(h===s.length)return n(i,d),u;if(null===d){for(;h<s.length;h++)null!==(d=p(i,s[h],l))&&(a=o(d,a,h),null===c?u=d:c.sibling=d,c=d);return u}for(d=r(i,d);h<s.length;h++)null!==(g=m(d,i,h,s[h],l))&&(e&&null!==g.alternate&&d.delete(null===g.key?h:g.key),a=o(g,a,h),null===c?u=g:c.sibling=g,c=g);return e&&d.forEach((function(e){return t(i,e)})),u}function g(i,s,l,u){var c=he(l);if("function"!=typeof c)throw Error(a(150));if(null==(l=c.call(l)))throw Error(a(151));for(var d=c=null,h=s,g=s=0,v=null,y=l.next();null!==h&&!y.done;g++,y=l.next()){h.index>g?(v=h,h=null):v=h.sibling;var b=f(i,h,y.value,u);if(null===b){null===h&&(h=v);break}e&&h&&null===b.alternate&&t(i,h),s=o(b,s,g),null===d?c=b:d.sibling=b,d=b,h=v}if(y.done)return n(i,h),c;if(null===h){for(;!y.done;g++,y=l.next())null!==(y=p(i,y.value,u))&&(s=o(y,s,g),null===d?c=y:d.sibling=y,d=y);return c}for(h=r(i,h);!y.done;g++,y=l.next())null!==(y=m(h,i,g,y.value,u))&&(e&&null!==y.alternate&&h.delete(null===y.key?g:y.key),s=o(y,s,g),null===d?c=y:d.sibling=y,d=y);return e&&h.forEach((function(e){return t(i,e)})),c}return function(e,r,o,l){var u="object"==typeof o&&null!==o&&o.type===ne&&null===o.key;u&&(o=o.props.children);var c="object"==typeof o&&null!==o;if(c)switch(o.$$typeof){case ee:e:{for(c=o.key,u=r;null!==u;){if(u.key===c){switch(u.tag){case 7:if(o.type===ne){n(e,u.sibling),(r=i(u,o.props.children)).return=e,e=r;break e}break;default:if(u.elementType===o.type){n(e,u.sibling),(r=i(u,o.props)).ref=wo(e,u,o),r.return=e,e=r;break e}}n(e,u);break}t(e,u),u=u.sibling}o.type===ne?((r=Tl(o.props.children,e.mode,l,o.key)).return=e,e=r):((l=El(o.type,o.key,o.props,null,e.mode,l)).ref=wo(e,r,o),l.return=e,e=l)}return s(e);case te: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=i(r,o.children||[])).return=e,e=r;break e}n(e,r);break}t(e,r),r=r.sibling}(r=Pl(o,e.mode,l)).return=e,e=r}return s(e)}if("string"==typeof o||"number"==typeof o)return o=""+o,null!==r&&6===r.tag?(n(e,r.sibling),(r=i(r,o)).return=e,e=r):(n(e,r),(r=Al(o,e.mode,l)).return=e,e=r),s(e);if(xo(o))return h(e,r,o,l);if(he(o))return g(e,r,o,l);if(c&&ko(e,o),void 0===o&&!u)switch(e.tag){case 1:case 0:throw e=e.type,Error(a(152,e.displayName||e.name||"Component"))}return n(e,r)}}var Oo=Co(!0),_o=Co(!1),Eo={},To={current:Eo},Ao={current:Eo},Po={current:Eo};function Ro(e){if(e===Eo)throw Error(a(174));return e}function zo(e,t){switch(ui(Po,t),ui(Ao,e),ui(To,Eo),e=t.nodeType){case 9:case 11:t=(t=t.documentElement)?t.namespaceURI:We(null,"");break;default:t=We(t=(e=8===e?t.parentNode:t).namespaceURI||null,e=e.tagName)}li(To),ui(To,t)}function Lo(){li(To),li(Ao),li(Po)}function jo(e){Ro(Po.current);var t=Ro(To.current),n=We(t,e.type);t!==n&&(ui(Ao,e),ui(To,n))}function Mo(e){Ao.current===e&&(li(To),li(Ao))}var Bo={current:0};function Wo(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.effectTag))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}function No(e,t){return{responder:e,props:t}}var Io=Q.ReactCurrentDispatcher,Do=Q.ReactCurrentBatchConfig,Uo=0,qo=null,Fo=null,Vo=null,Go=!1;function Ho(){throw Error(a(321))}function Ko(e,t){if(null===t)return!1;for(var n=0;n<t.length&&n<e.length;n++)if(!Wr(e[n],t[n]))return!1;return!0}function $o(e,t,n,r,i,o){if(Uo=o,qo=t,t.memoizedState=null,t.updateQueue=null,t.expirationTime=0,Io.current=null===e||null===e.memoizedState?va:ya,e=n(r,i),t.expirationTime===Uo){o=0;do{if(t.expirationTime=0,!(25>o))throw Error(a(301));o+=1,Vo=Fo=null,t.updateQueue=null,Io.current=ba,e=n(r,i)}while(t.expirationTime===Uo)}if(Io.current=ga,t=null!==Fo&&null!==Fo.next,Uo=0,Vo=Fo=qo=null,Go=!1,t)throw Error(a(300));return e}function Yo(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return null===Vo?qo.memoizedState=Vo=e:Vo=Vo.next=e,Vo}function Qo(){if(null===Fo){var e=qo.alternate;e=null!==e?e.memoizedState:null}else e=Fo.next;var t=null===Vo?qo.memoizedState:Vo.next;if(null!==t)Vo=t,Fo=e;else{if(null===e)throw Error(a(310));e={memoizedState:(Fo=e).memoizedState,baseState:Fo.baseState,baseQueue:Fo.baseQueue,queue:Fo.queue,next:null},null===Vo?qo.memoizedState=Vo=e:Vo=Vo.next=e}return Vo}function Xo(e,t){return"function"==typeof t?t(e):t}function Jo(e){var t=Qo(),n=t.queue;if(null===n)throw Error(a(311));n.lastRenderedReducer=e;var r=Fo,i=r.baseQueue,o=n.pending;if(null!==o){if(null!==i){var s=i.next;i.next=o.next,o.next=s}r.baseQueue=i=o,n.pending=null}if(null!==i){i=i.next,r=r.baseState;var l=s=o=null,u=i;do{var c=u.expirationTime;if(c<Uo){var d={expirationTime:u.expirationTime,suspenseConfig:u.suspenseConfig,action:u.action,eagerReducer:u.eagerReducer,eagerState:u.eagerState,next:null};null===l?(s=l=d,o=r):l=l.next=d,c>qo.expirationTime&&(qo.expirationTime=c,al(c))}else null!==l&&(l=l.next={expirationTime:1073741823,suspenseConfig:u.suspenseConfig,action:u.action,eagerReducer:u.eagerReducer,eagerState:u.eagerState,next:null}),ol(c,u.suspenseConfig),r=u.eagerReducer===e?u.eagerState:e(r,u.action);u=u.next}while(null!==u&&u!==i);null===l?o=r:l.next=s,Wr(r,t.memoizedState)||(Pa=!0),t.memoizedState=r,t.baseState=o,t.baseQueue=l,n.lastRenderedState=r}return[t.memoizedState,n.dispatch]}function Zo(e){var t=Qo(),n=t.queue;if(null===n)throw Error(a(311));n.lastRenderedReducer=e;var r=n.dispatch,i=n.pending,o=t.memoizedState;if(null!==i){n.pending=null;var s=i=i.next;do{o=e(o,s.action),s=s.next}while(s!==i);Wr(o,t.memoizedState)||(Pa=!0),t.memoizedState=o,null===t.baseQueue&&(t.baseState=o),n.lastRenderedState=o}return[o,r]}function ea(e){var t=Yo();return"function"==typeof e&&(e=e()),t.memoizedState=t.baseState=e,e=(e=t.queue={pending:null,dispatch:null,lastRenderedReducer:Xo,lastRenderedState:e}).dispatch=ha.bind(null,qo,e),[t.memoizedState,e]}function ta(e,t,n,r){return e={tag:e,create:t,destroy:n,deps:r,next:null},null===(t=qo.updateQueue)?(t={lastEffect:null},qo.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 na(){return Qo().memoizedState}function ra(e,t,n,r){var i=Yo();qo.effectTag|=e,i.memoizedState=ta(1|t,n,void 0,void 0===r?null:r)}function ia(e,t,n,r){var i=Qo();r=void 0===r?null:r;var o=void 0;if(null!==Fo){var a=Fo.memoizedState;if(o=a.destroy,null!==r&&Ko(r,a.deps))return void ta(t,n,o,r)}qo.effectTag|=e,i.memoizedState=ta(1|t,n,o,r)}function oa(e,t){return ra(516,4,e,t)}function aa(e,t){return ia(516,4,e,t)}function sa(e,t){return ia(4,2,e,t)}function la(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 ua(e,t,n){return n=null!=n?n.concat([e]):null,ia(4,2,la.bind(null,t,e),n)}function ca(){}function da(e,t){return Yo().memoizedState=[e,void 0===t?null:t],e}function pa(e,t){var n=Qo();t=void 0===t?null:t;var r=n.memoizedState;return null!==r&&null!==t&&Ko(t,r[1])?r[0]:(n.memoizedState=[e,t],e)}function fa(e,t){var n=Qo();t=void 0===t?null:t;var r=n.memoizedState;return null!==r&&null!==t&&Ko(t,r[1])?r[0]:(e=e(),n.memoizedState=[e,t],e)}function ma(e,t,n){var r=Di();qi(98>r?98:r,(function(){e(!0)})),qi(97<r?97:r,(function(){var r=Do.suspense;Do.suspense=void 0===t?null:t;try{e(!1),n()}finally{Do.suspense=r}}))}function ha(e,t,n){var r=Hs(),i=fo.suspense;i={expirationTime:r=Ks(r,e,i),suspenseConfig:i,action:n,eagerReducer:null,eagerState:null,next:null};var o=t.pending;if(null===o?i.next=i:(i.next=o.next,o.next=i),t.pending=i,o=e.alternate,e===qo||null!==o&&o===qo)Go=!0,i.expirationTime=Uo,qo.expirationTime=Uo;else{if(0===e.expirationTime&&(null===o||0===o.expirationTime)&&null!==(o=t.lastRenderedReducer))try{var a=t.lastRenderedState,s=o(a,n);if(i.eagerReducer=o,i.eagerState=s,Wr(s,a))return}catch(e){}$s(e,r)}}var ga={readContext:ro,useCallback:Ho,useContext:Ho,useEffect:Ho,useImperativeHandle:Ho,useLayoutEffect:Ho,useMemo:Ho,useReducer:Ho,useRef:Ho,useState:Ho,useDebugValue:Ho,useResponder:Ho,useDeferredValue:Ho,useTransition:Ho},va={readContext:ro,useCallback:da,useContext:ro,useEffect:oa,useImperativeHandle:function(e,t,n){return n=null!=n?n.concat([e]):null,ra(4,2,la.bind(null,t,e),n)},useLayoutEffect:function(e,t){return ra(4,2,e,t)},useMemo:function(e,t){var n=Yo();return t=void 0===t?null:t,e=e(),n.memoizedState=[e,t],e},useReducer:function(e,t,n){var r=Yo();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=ha.bind(null,qo,e),[r.memoizedState,e]},useRef:function(e){return e={current:e},Yo().memoizedState=e},useState:ea,useDebugValue:ca,useResponder:No,useDeferredValue:function(e,t){var n=ea(e),r=n[0],i=n[1];return oa((function(){var n=Do.suspense;Do.suspense=void 0===t?null:t;try{i(e)}finally{Do.suspense=n}}),[e,t]),r},useTransition:function(e){var t=ea(!1),n=t[0];return t=t[1],[da(ma.bind(null,t,e),[t,e]),n]}},ya={readContext:ro,useCallback:pa,useContext:ro,useEffect:aa,useImperativeHandle:ua,useLayoutEffect:sa,useMemo:fa,useReducer:Jo,useRef:na,useState:function(){return Jo(Xo)},useDebugValue:ca,useResponder:No,useDeferredValue:function(e,t){var n=Jo(Xo),r=n[0],i=n[1];return aa((function(){var n=Do.suspense;Do.suspense=void 0===t?null:t;try{i(e)}finally{Do.suspense=n}}),[e,t]),r},useTransition:function(e){var t=Jo(Xo),n=t[0];return t=t[1],[pa(ma.bind(null,t,e),[t,e]),n]}},ba={readContext:ro,useCallback:pa,useContext:ro,useEffect:aa,useImperativeHandle:ua,useLayoutEffect:sa,useMemo:fa,useReducer:Zo,useRef:na,useState:function(){return Zo(Xo)},useDebugValue:ca,useResponder:No,useDeferredValue:function(e,t){var n=Zo(Xo),r=n[0],i=n[1];return aa((function(){var n=Do.suspense;Do.suspense=void 0===t?null:t;try{i(e)}finally{Do.suspense=n}}),[e,t]),r},useTransition:function(e){var t=Zo(Xo),n=t[0];return t=t[1],[pa(ma.bind(null,t,e),[t,e]),n]}},Sa=null,xa=null,wa=!1;function ka(e,t){var n=Cl(5,null,null,0);n.elementType="DELETED",n.type="DELETED",n.stateNode=t,n.return=e,n.effectTag=8,null!==e.lastEffect?(e.lastEffect.nextEffect=n,e.lastEffect=n):e.firstEffect=e.lastEffect=n}function Ca(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);case 13:default:return!1}}function Oa(e){if(wa){var t=xa;if(t){var n=t;if(!Ca(e,t)){if(!(t=xn(n.nextSibling))||!Ca(e,t))return e.effectTag=-1025&e.effectTag|2,wa=!1,void(Sa=e);ka(Sa,n)}Sa=e,xa=xn(t.firstChild)}else e.effectTag=-1025&e.effectTag|2,wa=!1,Sa=e}}function _a(e){for(e=e.return;null!==e&&5!==e.tag&&3!==e.tag&&13!==e.tag;)e=e.return;Sa=e}function Ea(e){if(e!==Sa)return!1;if(!wa)return _a(e),wa=!0,!1;var t=e.type;if(5!==e.tag||"head"!==t&&"body"!==t&&!yn(t,e.memoizedProps))for(t=xa;t;)ka(e,t),t=xn(t.nextSibling);if(_a(e),13===e.tag){if(!(e=null!==(e=e.memoizedState)?e.dehydrated:null))throw Error(a(317));e:{for(e=e.nextSibling,t=0;e;){if(8===e.nodeType){var n=e.data;if("/$"===n){if(0===t){xa=xn(e.nextSibling);break e}t--}else"$"!==n&&"$!"!==n&&"$?"!==n||t++}e=e.nextSibling}xa=null}}else xa=Sa?xn(e.stateNode.nextSibling):null;return!0}function Ta(){xa=Sa=null,wa=!1}var Aa=Q.ReactCurrentOwner,Pa=!1;function Ra(e,t,n,r){t.child=null===e?_o(t,null,n,r):Oo(t,e.child,n,r)}function za(e,t,n,r,i){n=n.render;var o=t.ref;return no(t,i),r=$o(e,t,n,r,o,i),null===e||Pa?(t.effectTag|=1,Ra(e,t,r,i),t.child):(t.updateQueue=e.updateQueue,t.effectTag&=-517,e.expirationTime<=i&&(e.expirationTime=0),$a(e,t,i))}function La(e,t,n,r,i,o){if(null===e){var a=n.type;return"function"!=typeof a||Ol(a)||void 0!==a.defaultProps||null!==n.compare||void 0!==n.defaultProps?((e=El(n.type,null,r,null,t.mode,o)).ref=t.ref,e.return=t,t.child=e):(t.tag=15,t.type=a,ja(e,t,a,r,i,o))}return a=e.child,i<o&&(i=a.memoizedProps,(n=null!==(n=n.compare)?n:Ir)(i,r)&&e.ref===t.ref)?$a(e,t,o):(t.effectTag|=1,(e=_l(a,r)).ref=t.ref,e.return=t,t.child=e)}function ja(e,t,n,r,i,o){return null!==e&&Ir(e.memoizedProps,r)&&e.ref===t.ref&&(Pa=!1,i<o)?(t.expirationTime=e.expirationTime,$a(e,t,o)):Ba(e,t,n,r,o)}function Ma(e,t){var n=t.ref;(null===e&&null!==n||null!==e&&e.ref!==n)&&(t.effectTag|=128)}function Ba(e,t,n,r,i){var o=hi(n)?fi:di.current;return o=mi(t,o),no(t,i),n=$o(e,t,n,r,o,i),null===e||Pa?(t.effectTag|=1,Ra(e,t,n,i),t.child):(t.updateQueue=e.updateQueue,t.effectTag&=-517,e.expirationTime<=i&&(e.expirationTime=0),$a(e,t,i))}function Wa(e,t,n,r,i){if(hi(n)){var o=!0;bi(t)}else o=!1;if(no(t,i),null===t.stateNode)null!==e&&(e.alternate=null,t.alternate=null,t.effectTag|=2),yo(t,n,r),So(t,n,r,i),r=!0;else if(null===e){var a=t.stateNode,s=t.memoizedProps;a.props=s;var l=a.context,u=n.contextType;"object"==typeof u&&null!==u?u=ro(u):u=mi(t,u=hi(n)?fi:di.current);var c=n.getDerivedStateFromProps,d="function"==typeof c||"function"==typeof a.getSnapshotBeforeUpdate;d||"function"!=typeof a.UNSAFE_componentWillReceiveProps&&"function"!=typeof a.componentWillReceiveProps||(s!==r||l!==u)&&bo(t,a,r,u),io=!1;var p=t.memoizedState;a.state=p,co(t,r,a,i),l=t.memoizedState,s!==r||p!==l||pi.current||io?("function"==typeof c&&(ho(t,n,c,r),l=t.memoizedState),(s=io||vo(t,n,s,r,p,l,u))?(d||"function"!=typeof a.UNSAFE_componentWillMount&&"function"!=typeof a.componentWillMount||("function"==typeof a.componentWillMount&&a.componentWillMount(),"function"==typeof a.UNSAFE_componentWillMount&&a.UNSAFE_componentWillMount()),"function"==typeof a.componentDidMount&&(t.effectTag|=4)):("function"==typeof a.componentDidMount&&(t.effectTag|=4),t.memoizedProps=r,t.memoizedState=l),a.props=r,a.state=l,a.context=u,r=s):("function"==typeof a.componentDidMount&&(t.effectTag|=4),r=!1)}else a=t.stateNode,ao(e,t),s=t.memoizedProps,a.props=t.type===t.elementType?s:$i(t.type,s),l=a.context,"object"==typeof(u=n.contextType)&&null!==u?u=ro(u):u=mi(t,u=hi(n)?fi:di.current),(d="function"==typeof(c=n.getDerivedStateFromProps)||"function"==typeof a.getSnapshotBeforeUpdate)||"function"!=typeof a.UNSAFE_componentWillReceiveProps&&"function"!=typeof a.componentWillReceiveProps||(s!==r||l!==u)&&bo(t,a,r,u),io=!1,l=t.memoizedState,a.state=l,co(t,r,a,i),p=t.memoizedState,s!==r||l!==p||pi.current||io?("function"==typeof c&&(ho(t,n,c,r),p=t.memoizedState),(c=io||vo(t,n,s,r,l,p,u))?(d||"function"!=typeof a.UNSAFE_componentWillUpdate&&"function"!=typeof a.componentWillUpdate||("function"==typeof a.componentWillUpdate&&a.componentWillUpdate(r,p,u),"function"==typeof a.UNSAFE_componentWillUpdate&&a.UNSAFE_componentWillUpdate(r,p,u)),"function"==typeof a.componentDidUpdate&&(t.effectTag|=4),"function"==typeof a.getSnapshotBeforeUpdate&&(t.effectTag|=256)):("function"!=typeof a.componentDidUpdate||s===e.memoizedProps&&l===e.memoizedState||(t.effectTag|=4),"function"!=typeof a.getSnapshotBeforeUpdate||s===e.memoizedProps&&l===e.memoizedState||(t.effectTag|=256),t.memoizedProps=r,t.memoizedState=p),a.props=r,a.state=p,a.context=u,r=c):("function"!=typeof a.componentDidUpdate||s===e.memoizedProps&&l===e.memoizedState||(t.effectTag|=4),"function"!=typeof a.getSnapshotBeforeUpdate||s===e.memoizedProps&&l===e.memoizedState||(t.effectTag|=256),r=!1);return Na(e,t,n,r,o,i)}function Na(e,t,n,r,i,o){Ma(e,t);var a=0!=(64&t.effectTag);if(!r&&!a)return i&&Si(t,n,!1),$a(e,t,o);r=t.stateNode,Aa.current=t;var s=a&&"function"!=typeof n.getDerivedStateFromError?null:r.render();return t.effectTag|=1,null!==e&&a?(t.child=Oo(t,e.child,null,o),t.child=Oo(t,null,s,o)):Ra(e,t,s,o),t.memoizedState=r.state,i&&Si(t,n,!0),t.child}function Ia(e){var t=e.stateNode;t.pendingContext?vi(0,t.pendingContext,t.pendingContext!==t.context):t.context&&vi(0,t.context,!1),zo(e,t.containerInfo)}var Da,Ua,qa,Fa={dehydrated:null,retryTime:0};function Va(e,t,n){var r,i=t.mode,o=t.pendingProps,a=Bo.current,s=!1;if((r=0!=(64&t.effectTag))||(r=0!=(2&a)&&(null===e||null!==e.memoizedState)),r?(s=!0,t.effectTag&=-65):null!==e&&null===e.memoizedState||void 0===o.fallback||!0===o.unstable_avoidThisFallback||(a|=1),ui(Bo,1&a),null===e){if(void 0!==o.fallback&&Oa(t),s){if(s=o.fallback,(o=Tl(null,i,0,null)).return=t,0==(2&t.mode))for(e=null!==t.memoizedState?t.child.child:t.child,o.child=e;null!==e;)e.return=o,e=e.sibling;return(n=Tl(s,i,n,null)).return=t,o.sibling=n,t.memoizedState=Fa,t.child=o,n}return i=o.children,t.memoizedState=null,t.child=_o(t,null,i,n)}if(null!==e.memoizedState){if(i=(e=e.child).sibling,s){if(o=o.fallback,(n=_l(e,e.pendingProps)).return=t,0==(2&t.mode)&&(s=null!==t.memoizedState?t.child.child:t.child)!==e.child)for(n.child=s;null!==s;)s.return=n,s=s.sibling;return(i=_l(i,o)).return=t,n.sibling=i,n.childExpirationTime=0,t.memoizedState=Fa,t.child=n,i}return n=Oo(t,e.child,o.children,n),t.memoizedState=null,t.child=n}if(e=e.child,s){if(s=o.fallback,(o=Tl(null,i,0,null)).return=t,o.child=e,null!==e&&(e.return=o),0==(2&t.mode))for(e=null!==t.memoizedState?t.child.child:t.child,o.child=e;null!==e;)e.return=o,e=e.sibling;return(n=Tl(s,i,n,null)).return=t,o.sibling=n,n.effectTag|=2,o.childExpirationTime=0,t.memoizedState=Fa,t.child=o,n}return t.memoizedState=null,t.child=Oo(t,e,o.children,n)}function Ga(e,t){e.expirationTime<t&&(e.expirationTime=t);var n=e.alternate;null!==n&&n.expirationTime<t&&(n.expirationTime=t),to(e.return,t)}function Ha(e,t,n,r,i,o){var a=e.memoizedState;null===a?e.memoizedState={isBackwards:t,rendering:null,renderingStartTime:0,last:r,tail:n,tailExpiration:0,tailMode:i,lastEffect:o}:(a.isBackwards=t,a.rendering=null,a.renderingStartTime=0,a.last=r,a.tail=n,a.tailExpiration=0,a.tailMode=i,a.lastEffect=o)}function Ka(e,t,n){var r=t.pendingProps,i=r.revealOrder,o=r.tail;if(Ra(e,t,r.children,n),0!=(2&(r=Bo.current)))r=1&r|2,t.effectTag|=64;else{if(null!==e&&0!=(64&e.effectTag))e:for(e=t.child;null!==e;){if(13===e.tag)null!==e.memoizedState&&Ga(e,n);else if(19===e.tag)Ga(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(ui(Bo,r),0==(2&t.mode))t.memoizedState=null;else switch(i){case"forwards":for(n=t.child,i=null;null!==n;)null!==(e=n.alternate)&&null===Wo(e)&&(i=n),n=n.sibling;null===(n=i)?(i=t.child,t.child=null):(i=n.sibling,n.sibling=null),Ha(t,!1,i,n,o,t.lastEffect);break;case"backwards":for(n=null,i=t.child,t.child=null;null!==i;){if(null!==(e=i.alternate)&&null===Wo(e)){t.child=i;break}e=i.sibling,i.sibling=n,n=i,i=e}Ha(t,!0,n,null,o,t.lastEffect);break;case"together":Ha(t,!1,null,null,void 0,t.lastEffect);break;default:t.memoizedState=null}return t.child}function $a(e,t,n){null!==e&&(t.dependencies=e.dependencies);var r=t.expirationTime;if(0!==r&&al(r),t.childExpirationTime<n)return null;if(null!==e&&t.child!==e.child)throw Error(a(153));if(null!==t.child){for(n=_l(e=t.child,e.pendingProps),t.child=n,n.return=t;null!==e.sibling;)e=e.sibling,(n=n.sibling=_l(e,e.pendingProps)).return=t;n.sibling=null}return t.child}function Ya(e,t){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 Qa(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:return hi(t.type)&&gi(),null;case 3:return Lo(),li(pi),li(di),(n=t.stateNode).pendingContext&&(n.context=n.pendingContext,n.pendingContext=null),null!==e&&null!==e.child||!Ea(t)||(t.effectTag|=4),null;case 5:Mo(t),n=Ro(Po.current);var o=t.type;if(null!==e&&null!=t.stateNode)Ua(e,t,o,r,n),e.ref!==t.ref&&(t.effectTag|=128);else{if(!r){if(null===t.stateNode)throw Error(a(166));return null}if(e=Ro(To.current),Ea(t)){r=t.stateNode,o=t.type;var s=t.memoizedProps;switch(r[Cn]=t,r[On]=s,o){case"iframe":case"object":case"embed":Kt("load",r);break;case"video":case"audio":for(e=0;e<Qe.length;e++)Kt(Qe[e],r);break;case"source":Kt("error",r);break;case"img":case"image":case"link":Kt("error",r),Kt("load",r);break;case"form":Kt("reset",r),Kt("submit",r);break;case"details":Kt("toggle",r);break;case"input":ke(r,s),Kt("invalid",r),ln(n,"onChange");break;case"select":r._wrapperState={wasMultiple:!!s.multiple},Kt("invalid",r),ln(n,"onChange");break;case"textarea":Re(r,s),Kt("invalid",r),ln(n,"onChange")}for(var l in on(o,s),e=null,s)if(s.hasOwnProperty(l)){var u=s[l];"children"===l?"string"==typeof u?r.textContent!==u&&(e=["children",u]):"n
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|