text
stringlengths
3
1.05M
import * as QRME from './src/CreateQR'; export default QRME;
import React, { Component } from 'react' import { withRouter, } from 'react-router-dom' import { getBeaconBlockByIndex } from '../utils/api' import '../index.css' import { Container, Loader, } from 'semantic-ui-react' import BlockDetail from './BlockDetail' class BeaconBlockDetail extends Component { state = { block: { index: null, hash: '', parentHash: '', shardBlockHash: '', shardBlockIndex: null, numReceiptsIndex: null, NumTransactionsIndex: null, }, loader: true } updateBlock(blockIndex) { this.setState({ loader: true, }) getBeaconBlockByIndex(blockIndex).then(response => { this.setState({ block: { index: response.index, hash: response.hash, parentHash: response.parent_hash, shardBlockHash: response.shard_block.hash, shardBlockIndex: response.shard_block.index, numReceiptsIndex: response.shard_block.num_receipts, NumTransactionsIndex: response.shard_block.num_transactions, }, loader: false, }) }).catch((error) => { console.log(error) }) } componentDidMount() { const { blockIndex } = this.props.match.params this.updateBlock(blockIndex) } /* ASK */ componentDidUpdate(prevProps) { if (prevProps.match.params.blockIndex !== this.props.match.params.blockIndex) { this.updateBlock(this.props.match.params.blockIndex) } } render() { const { block, loader } = this.state const { index } = block return ( <Container> <h1><span className="color-charcoal-grey">Block</span> #{index}</h1> <BlockDetail blockType='beacon' {...block} loader={loader} /> {/* {NumTransactionsIndex && <TransactionsList transactions={transactions} />} */} </Container> ) } } export const BeaconBlockDetailWithRouter = withRouter(BeaconBlockDetail)
import React from 'react'; import { mount } from 'enzyme'; import Transition, { ENTERED } from '../src/Transition'; import SwitchTransition, { modes } from '../src/SwitchTransition'; describe('SwitchTransition', () => { let log, Parent; beforeEach(() => { log = []; let events = { onEnter: (m) => log.push(m ? 'appear' : 'enter'), onEntering: (m) => log.push(m ? 'appearing' : 'entering'), onEntered: (m) => log.push(m ? 'appeared' : 'entered'), onExit: () => log.push('exit'), onExiting: () => log.push('exiting'), onExited: () => log.push('exited'), }; const nodeRef = React.createRef(); Parent = function Parent({ on, rendered = true }) { return ( <SwitchTransition> {rendered ? ( <Transition nodeRef={nodeRef} timeout={0} key={on ? 'first' : 'second'} {...events} > <span ref={nodeRef} /> </Transition> ) : null} </SwitchTransition> ); }; }); it('should have default status ENTERED', () => { const nodeRef = React.createRef(); const wrapper = mount( <SwitchTransition> <Transition nodeRef={nodeRef} timeout={0} key="first"> <span ref={nodeRef} /> </Transition> </SwitchTransition> ); expect(wrapper.state('status')).toBe(ENTERED); }); it('should have default mode: out-in', () => { const nodeRef = React.createRef(); const wrapper = mount( <SwitchTransition> <Transition nodeRef={nodeRef} timeout={0} key="first"> <span ref={nodeRef} /> </Transition> </SwitchTransition> ); expect(wrapper.prop('mode')).toBe(modes.out); }); it('should work without childs', () => { const nodeRef = React.createRef(); expect(() => { mount( <SwitchTransition> <Transition nodeRef={nodeRef} timeout={0} key="first"> <span ref={nodeRef} /> </Transition> </SwitchTransition> ); }).not.toThrow(); }); it('should switch between components on change state', () => { const wrapper = mount(<Parent on={true} />); jest.useFakeTimers(); expect(wrapper.find(SwitchTransition).getElement().props.children.key).toBe( 'first' ); wrapper.setProps({ on: false }); expect(log).toEqual(['exit', 'exiting']); jest.runAllTimers(); expect(log).toEqual([ 'exit', 'exiting', 'exited', 'enter', 'entering', 'entered', ]); expect(wrapper.find(SwitchTransition).getElement().props.children.key).toBe( 'second' ); }); it('should switch between null and component', () => { const wrapper = mount(<Parent on={true} rendered={false} />); expect( wrapper.find(SwitchTransition).getElement().props.children ).toBeFalsy(); jest.useFakeTimers(); wrapper.setProps({ rendered: true }); jest.runAllTimers(); expect(log).toEqual(['enter', 'entering', 'entered']); expect( wrapper.find(SwitchTransition).getElement().props.children ).toBeTruthy(); expect(wrapper.find(SwitchTransition).getElement().props.children.key).toBe( 'first' ); wrapper.setProps({ on: false, rendered: true }); jest.runAllTimers(); expect(log).toEqual([ 'enter', 'entering', 'entered', 'exit', 'exiting', 'exited', 'enter', 'entering', 'entered', ]); expect(wrapper.find(SwitchTransition).getElement().props.children.key).toBe( 'second' ); }); });
// Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-array.prototype.map es5id: 15.4.4.19-3-17 description: > Array.prototype.map - when 'length' is a string containing a number with leading zeros ---*/ function callbackfn(val, idx, obj) { return val < 10; } var obj = { 0: 11, 1: 9, 2: 12, length: "0002.00" }; var newArr = Array.prototype.map.call(obj, callbackfn); assert.sameValue(newArr.length, 2, 'newArr.length');
import abc import builtins import datetime import enum import typing import jsii import publication import typing_extensions import aws_cdk.aws_cloudwatch._jsii import aws_cdk.aws_iam._jsii import aws_cdk.aws_kms._jsii import aws_cdk.aws_logs._jsii import aws_cdk.aws_s3._jsii import aws_cdk.aws_s3_assets._jsii import aws_cdk.aws_ssm._jsii import aws_cdk.cloud_assembly_schema._jsii import aws_cdk.core._jsii import aws_cdk.cx_api._jsii import aws_cdk.region_info._jsii import constructs._jsii __jsii_assembly__ = jsii.JSIIAssembly.load( "@aws-cdk/aws-ec2", "1.108.1", __name__[0:-6], "[email protected]" ) __all__ = [ "__jsii_assembly__", ] publication.publish()
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.typeOf = exports.dataTypeOf = void 0; const typeOf = thing => { switch (thing) { case undefined: return 'Undefined'; case null: return 'Null'; default: return thing.constructor.name; } }; exports.typeOf = typeOf; const dataTypeOf = thing => { switch (typeof thing) { case 'string': return 'String'; case 'object': if (Array.isArray(thing)) { return 'Array'; } else if (typeOf(thing) === 'Object') { return 'SimpleObject'; } else if (typeOf(thing) !== 'Null') { return 'ComplexObject'; } default: return 'Primitive'; } }; exports.dataTypeOf = dataTypeOf;
(window.webpackJsonp=window.webpackJsonp||[]).push([[8],{"2qSP":function(e,a,t){e.exports=t.p+"static/stephanie_bodet-b7b47713f98f7e80a899767621bb680e.jpg"},BAyY:function(e,a,t){e.exports=t.p+"static/village-5561af992dd82ab0bd53832da7abcbc9.jpg"},DFRl:function(e,a,t){e.exports=t.p+"static/cabane_alpage-bca22603e7720567455f07b24304a9fb.jpg"},RXBc:function(e,a,t){"use strict";t.r(a);var r=t("q1tI"),n=t.n(r),l=t("7oih"),s=t("BAyY"),c=t.n(s),i=t("DFRl"),o=t.n(i),m=t("nFN8"),u=t.n(m),p=t("T52j"),d=t.n(p),f=t("aiWH"),g=t.n(f),E=t("tZyZ"),b=t.n(E),h=t("2qSP"),N=t.n(h),v=t("t8E8"),w=t.n(v),j=t("qCbr"),q=t.n(j),x=t("obyI"),y=t.n(x);a.default=function(){return n.a.createElement(l.a,null,n.a.createElement("section",{id:"banner"},n.a.createElement("div",{className:"inner"},n.a.createElement("h2",null,y.a.heading),n.a.createElement("p",null,y.a.subHeading))),n.a.createElement("section",{id:"wrapper"},n.a.createElement("section",{id:"one",className:"wrapper spotlight style1"},n.a.createElement("div",{className:"inner"},n.a.createElement("a",{href:"/position",className:"image"},n.a.createElement("img",{src:c.a,alt:""})),n.a.createElement("div",{className:"content"},n.a.createElement("h2",{className:"major"},"Notre position"),n.a.createElement("p",null,"A l’heure où l’écologie est au cœur de la parole publique et des campagnes de marketing, il est temps d'agir concrètement en faveur de l’environnement. Notre évènement a pour but de créer un espace d’expression pour les personnes qui produisent de façon écologique"),n.a.createElement("a",{href:"/position",className:"special"},"En savoir plus")))),n.a.createElement("section",{id:"two",className:"wrapper alt spotlight style2"},n.a.createElement("div",{className:"inner"},n.a.createElement("a",{href:"/event",className:"image"},n.a.createElement("img",{src:o.a,alt:""})),n.a.createElement("div",{className:"content"},n.a.createElement("h2",{className:"major"},"L'événement"),n.a.createElement("p",null,"Le rendez-vous festif de cette convergence des milieux artistiques et paysans pour une présentation de leurs savoirs faire respectifs et une réflexion sur les changements nécessaires et urgents"),n.a.createElement("a",{href:"/event",className:"special"},"Découvrir")))),n.a.createElement("section",{id:"three",className:"wrapper spotlight style3"},n.a.createElement("div",{className:"inner"},n.a.createElement("a",{href:"/godmother",className:"image"},n.a.createElement("img",{src:N.a,alt:""})),n.a.createElement("div",{className:"content"},n.a.createElement("h2",{className:"major"},"Nos parrains et marraines"),n.a.createElement("p",null,"Aux côtés des anonymes qui nous nourrissent, qui militent pour la nature, qui veulent donner un sens et une utilité à leur expression artistique, des personnalités connues et engagées pour la nature nous soutiennent "),n.a.createElement("a",{href:"/godmother",className:"special"},"En savoir plus")))),n.a.createElement("section",{id:"four",className:"wrapper alt style1 index"},n.a.createElement("div",{className:"inner"},n.a.createElement("h2",{className:"major"},"Les membres"),n.a.createElement("p",null,"Ils ont rejoint le mouvement"),n.a.createElement("section",{className:"features",id:"actors"},n.a.createElement("article",null,n.a.createElement("a",{href:"https://www.youtube.com/watch?v=TOHY8FgvSag",target:"_blank",rel:"noreferrer",className:"image"},n.a.createElement("img",{src:w.a,alt:""})),n.a.createElement("h3",{className:"major"},"Artistes du cirque du Soleil"),n.a.createElement("p",null,"Des artistes engagés pour une transition dès aujourd’hui vers une agriculture non-conventionnelle"),n.a.createElement("a",{href:"https://www.youtube.com/watch?v=TOHY8FgvSag",target:"_blank",rel:"noreferrer",className:"special"},"En savoir plus")),n.a.createElement("article",null,n.a.createElement("a",{href:"http://www.bio-provence.org/Agribio-05",target:"_blank",rel:"noreferrer",className:"image"},n.a.createElement("img",{src:u.a,alt:""})),n.a.createElement("h3",{className:"major"},"Agribio"),n.a.createElement("p",null,"Groupement de producteurs bio pour la défense de leurs intérêts, la diffusion de connaissances et le développement de l’agriculture bio"),n.a.createElement("a",{href:"http://www.bio-provence.org/Agribio-05",target:"_blank",rel:"noreferrer",className:"special"},"En savoir plus")),n.a.createElement("article",null,n.a.createElement("img",{src:d.a,alt:"",className:"image"}),n.a.createElement("h3",{className:"major"},"Paysans locaux"),n.a.createElement("p",null,"Agriculteurs questionnant les procédés conventionnels pour un réapprentissage de méthodes respectueuses de la nature"),n.a.createElement("a",{href:"https://www.ferme-vauban.com/",rel:"noreferrer",target:"_blank",className:"special"},"Ferme vauban"),n.a.createElement("a",{href:"http://fermesaintlaurent.com/la-ferme/",target:"_blank",rel:"noreferrer",className:"special"},"Ferme saint laurent")),n.a.createElement("article",null,n.a.createElement("a",{href:"https://www.ville-gap.fr/l-office-municipal-de-la-culture",target:"_blank",rel:"noreferrer",className:"image"},n.a.createElement("img",{src:b.a,alt:""})),n.a.createElement("h3",{className:"major"},"Office Municipal de la Culture de Gap"),n.a.createElement("p",null,"Fédération de 90 associations visant à répandre et développer la culture sous toutes ses formes"),n.a.createElement("a",{href:"https://www.ville-gap.fr/l-office-municipal-de-la-culture",target:"_blank",rel:"noreferrer",className:"special"},"En savoir plus")),n.a.createElement("article",null,n.a.createElement("a",{href:"http://www.sapn05.org/",target:"_blank",rel:"noreferrer",className:"image"},n.a.createElement("img",{src:g.a,alt:""})),n.a.createElement("h3",{className:"major"},"Société Alpine de Protection de la Nature :"),n.a.createElement("p",null,"Association pour la protection de l’environnement en agissant au niveau institutionnel et pédagogique"),n.a.createElement("a",{href:"http://www.sapn05.org/",target:"_blank",rel:"noreferrer",className:"special"},"En savoir plus")),n.a.createElement("article",null,n.a.createElement("img",{src:q.a,alt:"",className:"image"}),n.a.createElement("h3",{className:"major"},"Remerciements"),n.a.createElement("p",null,"Tous nos remerciements à deux bénévoles précieux : Aloïs Leclet qui n'a pas compté ses heures pour bâtir ce beau site et Stéphane Cantet qui nous a gentiment permis d'utiliser ses photos pour illustrer le site et les éléments de diffusion."),n.a.createElement("a",{href:"https://aloisleclet.fr/",target:"_blank",rel:"noreferrer",className:"special"},"Aloïs LECLET")))))))}},T52j:function(e,a,t){e.exports=t.p+"static/paysans-3f991174b090cf2e72d4f5ad9781aedf.png"},aiWH:function(e,a,t){e.exports=t.p+"static/sapn-b580c63f0f5167805115a8c856a7754e.jpg"},nFN8:function(e,a,t){e.exports=t.p+"static/agribio-55721eace2b1f950a54ef7e0614b9dfc.jpg"},qCbr:function(e,a,t){e.exports=t.p+"static/cabane-e49941048bfd76106359382a7622e75b.png"},t8E8:function(e,a,t){e.exports=t.p+"static/aurelie-59df7400a7c25c9b91a8cee1aadd566e.jpg"},tZyZ:function(e,a,t){e.exports=t.p+"static/gap-adad8710dac110b98f01b222b1e11990.jpg"}}]); //# sourceMappingURL=component---src-pages-index-js-d298c1b00fa908e3a2be.js.map
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Created on Tue Jun 1 18:32:56 2021 @author: mike_ubuntu """ import pytest def pytest_addoption(parser): parser.addoption("--path", action="store") @pytest.fixture(scope='session') def name(request): path_value = request.config.option.path if path_value is None: pytest.skip() return path_value
/** Employee Controller @author gefunk */ const mongoose = require('mongoose'); const Employee = mongoose.model('Employee'); // save new employee exports.create = function(employee_data, response){ const employee = new Employee(employee_data); employee.save(function(err){ if(err) {console.log(err);response.json( err);} response.json(employee); }); } /** Function Find all */ exports.findAll = function(response){ console.log("In Find all"); Employee.find({}, function(err, docs){ console.log("Returned find all", err, docs); if(!err){ response.json(docs); } else { console.log(err); response.json(err); } }); } /** Delete Employee */ exports.delete = function(id, response){ console.log("Deleting by ID: ", id); Employee.findByIdAndRemove(id, function(err){ if(!err) response.json({'success': true}); else response.json(err); }); } exports.findById = function(id, response){ console.log('Finding by id', id); Employee.findById(id, function (err, doc) { if(!err) response.json(doc); else response.json(err); }); }
const express = require("express"); const mongoose = require("mongoose"); const compression = require("compression"); const PORT = process.env.PORT || 3000; const app = express(); app.use(compression()); app.use(express.urlencoded({ extended: true })); app.use(express.json()); app.use(express.static("public")); mongoose.connect(process.env.MONGODB_URI || "mongodb://localhost/budget", { useNewUrlParser: true, useFindAndModify: false }); // routes app.use(require("./routes/api.js")); app.listen(PORT, () => { console.log(`App running on port ${PORT}!`); });
angular.module('cerebro').controller('RestController', ['$scope', '$http', '$sce', 'RestDataService', 'AlertService', 'ModalService', 'AceEditorService', 'ClipboardService', function($scope, $http, $sce, RestDataService, AlertService, ModalService, AceEditorService, ClipboardService) { $scope.editor = undefined; $scope.response = undefined; $scope.indices = undefined; $scope.host = undefined; $scope.method = 'GET'; $scope.path = ''; $scope.options = []; var localStorageKey = 'indices'; var success = function(response) { $scope.response = $sce.trustAsHtml(JSONTree.create(response)); $scope.loadHistory(); }; var setWithExpiry = function(key, value, ttl) { var now = new Date(); // `item` is an object which contains the original value // as well as the time when it's supposed to expire var item = { value: value, expiry: now.getTime() + ttl, }; localStorage.setItem(key, JSON.stringify(item)); }; var getWithExpiry = function(key) { var itemStr = localStorage.getItem(key); // if the item doesn't exist, return null if (!itemStr) { return null; } var item = JSON.parse(itemStr); var now = new Date(); // compare the expiry time of the item with the current time if (now.getTime() > item.expiry) { // If the item is expired, delete the item from storage // and return null localStorage.removeItem(key); return null; } return item.value; }; $scope.deleteFromLocalStorage = function() { localStorage.removeItem(localStorageKey); AlertService.info('Indices Cache Successfully Cleared'); }; var failure = function(response) { $scope.response = $sce.trustAsHtml(JSONTree.create(response)); }; $scope.execute = function() { var data = $scope.editor.getStringValue(); var method = $scope.method; $scope.response = undefined; try { data = $scope.editor.getValue(); } catch (error) { } RestDataService.execute(method, $scope.path, data, success, failure); }; $scope.setup = function() { $scope.editor = AceEditorService.init('rest-client-editor'); $scope.editor.setValue('{}'); RestDataService.load( function(response) { $scope.host = response.host; $scope.indices = response.indices; $scope.updateOptions($scope.path); }, function(error) { AlertService.error('Error while loading cluster indices', error); } ); $scope.loadHistory(); }; $scope.loadRequest = function(request) { $scope.method = request.method; $scope.path = request.path; $scope.editor.setValue(request.body); $scope.editor.format(); }; $scope.loadHistory = function() { RestDataService.history( function(history) { $scope.history = history; }, function(error) { AlertService.error('Error while loading request history', error); } ); }; $scope.updateOptions = function(text) { var indices = getWithExpiry(localStorageKey); if ($scope.indices && indices !== null) { $scope.options = indices; } else if ($scope.indices) { var autocomplete = new URLAutocomplete($scope.indices); $scope.options = autocomplete.getAlternatives(text); // Store Indices with a 1 Month TTL setWithExpiry(localStorageKey, $scope.options, 2629800000); } }; $scope.copyAsCURLCommand = function() { var method = $scope.method; var path = encodeURI($scope.path); if (path.substring(0, 1) !== '/') { path = '/' + path; } var matchesAPI = function(path, api) { return path.indexOf(api) === (path.length - api.length); }; var contentType = 'application/json'; var body = ''; try { if (matchesAPI(path, '_bulk') || matchesAPI(path, '_msearch')) { contentType = 'application/x-ndjson'; body = $scope.editor.getStringValue().split('\n').map(function(line) { return line === '' ? '\n' : JSON.stringify(JSON.parse(line)); }).join('\n'); } else { body = JSON.stringify($scope.editor.getValue(), undefined, 1); } } catch (e) { AlertService.error('Unexpected content format for [' + path + ']'); return; } var curl = 'curl'; curl += ' -H \'Content-type: ' + contentType + '\''; curl += ' -X' + method + ' \'' + $scope.host + path + '\''; if (['POST', 'PUT'].indexOf(method) >= 0) { curl += ' -d \'' + body + '\''; } ClipboardService.copy( curl, function() { AlertService.info('cURL request successfully copied to clipboard'); }, function() { AlertService.error('Error while copying request to clipboard'); } ); }; }] );
""" This module loads all the classes from the VTK Text Analysis library into its namespace. This is an optional module.""" import os if os.name == 'posix': from libvtkTextAnalysisPython import * else: from vtkTextAnalysisPython import *
// Copyright (c) 2015 Uber Technologies, Inc. // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. import MapState from '../utils/map-state'; // EVENT HANDLING PARAMETERS const PITCH_MOUSE_THRESHOLD = 5; const PITCH_ACCEL = 1.2; const ZOOM_ACCEL = 0.01; const EVENT_TYPES = { WHEEL: ['wheel'], PAN: ['panstart', 'panmove', 'panend'], PINCH: ['pinchstart', 'pinchmove', 'pinchend'], DOUBLE_TAP: ['doubletap'] }; export default class MapControls { /** * @classdesc * A class that handles events and updates mercator style viewport parameters */ constructor() { this._state = { isDragging: false }; this.handleEvent = this.handleEvent.bind(this); } /** * Callback for events * @param {hammer.Event} event */ handleEvent(event) { this.mapState = new MapState(Object.assign({}, this.mapStateProps, this._state)); switch (event.type) { case 'panstart': return this._onPanStart(event); case 'panmove': return this._onPan(event); case 'panend': return this._onPanEnd(event); case 'pinchstart': return this._onPinchStart(event); case 'pinchmove': return this._onPinch(event); case 'pinchend': return this._onPinchEnd(event); case 'doubletap': return this._onDoubleTap(event); case 'wheel': return this._onWheel(event); default: return false; } } /* Event utils */ // Event object: http://hammerjs.github.io/api/#event-object getCenter(event) { const {offsetCenter: {x, y}} = event; return [x, y]; } isFunctionKeyPressed(event) { const {srcEvent} = event; return Boolean(srcEvent.metaKey || srcEvent.altKey || srcEvent.ctrlKey || srcEvent.shiftKey); } setState(newState) { Object.assign(this._state, newState); if (this.onStateChange) { this.onStateChange(this._state); } } /* Callback util */ // formats map state and invokes callback function updateViewport(newMapState, extraState = {}) { const oldViewport = this.mapState.getViewportProps(); const newViewport = newMapState.getViewportProps(); if (this.onViewportChange && Object.keys(newViewport).some(key => oldViewport[key] !== newViewport[key])) { // Viewport has changed this.onViewportChange(newViewport); } this.setState(Object.assign({}, newMapState.getInteractiveState(), extraState)); } /** * Extract interactivity options */ setOptions(options) { const { // TODO(deprecate): remove this when `onChangeViewport` gets deprecated onChangeViewport, onViewportChange, onStateChange = this.onStateChange, eventManager = this.eventManager, scrollZoom = true, dragPan = true, dragRotate = true, doubleClickZoom = true, touchZoomRotate = true } = options; // TODO(deprecate): remove this check when `onChangeViewport` gets deprecated this.onViewportChange = onViewportChange || onChangeViewport; this.onStateChange = onStateChange; this.mapStateProps = options; if (this.eventManager !== eventManager) { // EventManager has changed this.eventManager = eventManager; this._events = {}; } const isInteractive = Boolean(this.onViewportChange); // Register/unregister events this.toggleEvents(EVENT_TYPES.WHEEL, isInteractive && scrollZoom); this.toggleEvents(EVENT_TYPES.PAN, isInteractive && (dragPan || dragRotate)); this.toggleEvents(EVENT_TYPES.PINCH, isInteractive && touchZoomRotate); this.toggleEvents(EVENT_TYPES.DOUBLE_TAP, isInteractive && doubleClickZoom); // Interaction toggles this.scrollZoom = scrollZoom; this.dragPan = dragPan; this.dragRotate = dragRotate; this.doubleClickZoom = doubleClickZoom; this.touchZoomRotate = touchZoomRotate; } toggleEvents(eventNames, enabled) { if (this.eventManager) { eventNames.forEach(eventName => { if (this._events[eventName] !== enabled) { this._events[eventName] = enabled; if (enabled) { this.eventManager.on(eventName, this.handleEvent); } else { this.eventManager.off(eventName, this.handleEvent); } } }); } } /* Event handlers */ // Default handler for the `panstart` event. _onPanStart(event) { const pos = this.getCenter(event); const newMapState = this.mapState.panStart({pos}).rotateStart({pos}); return this.updateViewport(newMapState, {isDragging: true}); } // Default handler for the `panmove` event. _onPan(event) { return this.isFunctionKeyPressed(event) ? this._onPanRotate(event) : this._onPanMove(event); } // Default handler for the `panend` event. _onPanEnd(event) { const newMapState = this.mapState.panEnd().rotateEnd(); return this.updateViewport(newMapState, {isDragging: false}); } // Default handler for panning to move. // Called by `_onPan` when panning without function key pressed. _onPanMove(event) { if (!this.dragPan) { return false; } const pos = this.getCenter(event); const newMapState = this.mapState.pan({pos}); return this.updateViewport(newMapState); } // Default handler for panning to rotate. // Called by `_onPan` when panning with function key pressed. _onPanRotate(event) { if (!this.dragRotate) { return false; } const {deltaX, deltaY} = event; const [, centerY] = this.getCenter(event); const startY = centerY - deltaY; const {width, height} = this.mapState.getViewportProps(); const deltaScaleX = deltaX / width; let deltaScaleY = 0; if (deltaY > 0) { if (Math.abs(height - startY) > PITCH_MOUSE_THRESHOLD) { // Move from 0 to -1 as we drag upwards deltaScaleY = deltaY / (startY - height) * PITCH_ACCEL; } } else if (deltaY < 0) { if (startY > PITCH_MOUSE_THRESHOLD) { // Move from 0 to 1 as we drag upwards deltaScaleY = 1 - centerY / startY; } } deltaScaleY = Math.min(1, Math.max(-1, deltaScaleY)); const newMapState = this.mapState.rotate({deltaScaleX, deltaScaleY}); return this.updateViewport(newMapState); } // Default handler for the `wheel` event. _onWheel(event) { if (!this.scrollZoom) { return false; } const pos = this.getCenter(event); const {delta} = event; // Map wheel delta to relative scale let scale = 2 / (1 + Math.exp(-Math.abs(delta * ZOOM_ACCEL))); if (delta < 0 && scale !== 0) { scale = 1 / scale; } const newMapState = this.mapState.zoom({pos, scale}); return this.updateViewport(newMapState); } // Default handler for the `pinchstart` event. _onPinchStart(event) { const pos = this.getCenter(event); const newMapState = this.mapState.zoomStart({pos}); return this.updateViewport(newMapState, {isDragging: true}); } // Default handler for the `pinch` event. _onPinch(event) { if (!this.touchZoomRotate) { return false; } const pos = this.getCenter(event); const {scale} = event; const newMapState = this.mapState.zoom({pos, scale}); return this.updateViewport(newMapState); } // Default handler for the `pinchend` event. _onPinchEnd(event) { const newMapState = this.mapState.zoomEnd(); return this.updateViewport(newMapState, {isDragging: false}); } // Default handler for the `doubletap` event. _onDoubleTap(event) { if (!this.doubleClickZoom) { return false; } const pos = this.getCenter(event); const isZoomOut = this.isFunctionKeyPressed(event); const newMapState = this.mapState.zoom({pos, scale: isZoomOut ? 0.5 : 2}); return this.updateViewport(newMapState); } }
export function randomBool(weight) { return Math.random() < weight }
import { expect } from 'chai' import { stringify } from '../src/stringify' describe('stringify', () => { it('works', () => { expect(stringify('')).eql('""') expect(stringify('1')).eql('"1"') expect(stringify('123')).eql('"123"') expect(stringify('"')).eql('"\\""') expect(stringify('\\')).eql('"\\\\"') expect(stringify('a"b')).eql('"a\\"b"') expect(stringify('a\\b')).eql('"a\\\\b"') expect(stringify('${foo}')).eql('"${foo}"') expect(stringify('${foo("bar")}')).eql('"${foo("bar")}"') expect(stringify('${foo("a\\"b")}')).eql('"${foo("a\\"b")}"') expect(stringify('${foo("a\\\\b")}')).eql('"${foo("a\\\\b")}"') expect(stringify('${foo("bar${baz}")}')).eql('"${foo("bar${baz}")}"') }) })
Object.defineProperty(exports,"__esModule",{value:true});var _jsxFileName='src/SceneView.js';var _createClass=function(){function defineProperties(target,props){for(var i=0;i<props.length;i++){var descriptor=props[i];descriptor.enumerable=descriptor.enumerable||false;descriptor.configurable=true;if("value"in descriptor)descriptor.writable=true;Object.defineProperty(target,descriptor.key,descriptor);}}return function(Constructor,protoProps,staticProps){if(protoProps)defineProperties(Constructor.prototype,protoProps);if(staticProps)defineProperties(Constructor,staticProps);return Constructor;};}();var _react=require('react');var React=_interopRequireWildcard(_react);var _reactRouter=require('react-router');function _interopRequireWildcard(obj){if(obj&&obj.__esModule){return obj;}else{var newObj={};if(obj!=null){for(var key in obj){if(Object.prototype.hasOwnProperty.call(obj,key))newObj[key]=obj[key];}}newObj.default=obj;return newObj;}}function _classCallCheck(instance,Constructor){if(!(instance instanceof Constructor)){throw new TypeError("Cannot call a class as a function");}}function _possibleConstructorReturn(self,call){if(!self){throw new ReferenceError("this hasn't been initialised - super() hasn't been called");}return call&&(typeof call==="object"||typeof call==="function")?call:self;}function _inherits(subClass,superClass){if(typeof superClass!=="function"&&superClass!==null){throw new TypeError("Super expression must either be null or a function, not "+typeof superClass);}subClass.prototype=Object.create(superClass&&superClass.prototype,{constructor:{value:subClass,enumerable:false,writable:true,configurable:true}});if(superClass)Object.setPrototypeOf?Object.setPrototypeOf(subClass,superClass):subClass.__proto__=superClass;}var SceneView=function(_React$Component){_inherits(SceneView,_React$Component);function SceneView(props){_classCallCheck(this,SceneView);var _this=_possibleConstructorReturn(this,(SceneView.__proto__||Object.getPrototypeOf(SceneView)).call(this,props));_initialiseProps.call(_this);var history=props.history,match=props.match;_this.state={match:match||null,location:history&&history.location};_this.unlisten=history&&history.listen(_this.onHistoryChange);return _this;}_createClass(SceneView,[{key:'componentWillUnmount',value:function componentWillUnmount(){if(this.unlisten)this.unlisten();}},{key:'shouldComponentUpdate',value:function shouldComponentUpdate(nextProps,nextState){return!!nextState.match;}},{key:'render',value:function render(){var _props=this.props,render=_props.render,children=_props.children,Component=_props.component,history=_props.history;var _state=this.state,match=_state.match,location=_state.location;if(!history||!location){return null;}var contextRouter={history:history,match:match,location:location};if(render){return render(contextRouter);}else if(children&&typeof children==='function'){return children(contextRouter);}else if(children&&React.Children.count(children)===0){return React.cloneElement(children,contextRouter);}else if(Component){return React.createElement(Component,{match:match,location:location,history:history,__source:{fileName:_jsxFileName,lineNumber:73}});}return null;}}]);return SceneView;}(React.Component);var _initialiseProps=function _initialiseProps(){var _this2=this;this.onHistoryChange=function(location){var _props2=_this2.props,routePath=_props2.routePath,path=_props2.path,exact=_props2.exact,strict=_props2.strict;var oldMatch=_this2.state.match;var minimalRoute={path:routePath||path,exact:exact,strict:strict};var minimalMatch=(0,_reactRouter.matchPath)(location.pathname,minimalRoute);var route={path:path,exact:exact,strict:strict};var match=(0,_reactRouter.matchPath)(location.pathname,route);if(match&&minimalMatch&&(!oldMatch||oldMatch.url!==match.url&&oldMatch.url.includes(minimalMatch.url))){_this2.setState({match:match,location:location});}else{_this2.setState({location:location});}};};exports.default=SceneView;
!function (t, e) { "object" == typeof exports && "object" == typeof module ? module.exports = e() : "function" == typeof define && define.amd ? define([], e) : "object" == typeof exports ? exports.mdc = e() : t.mdc = e() }(this, function () { return i = {}, r.m = n = [function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }); var i = (Object.defineProperty(r, "cssClasses", { get: function () { return {} }, enumerable: !0, configurable: !0 }), Object.defineProperty(r, "strings", { get: function () { return {} }, enumerable: !0, configurable: !0 }), Object.defineProperty(r, "numbers", { get: function () { return {} }, enumerable: !0, configurable: !0 }), Object.defineProperty(r, "defaultAdapter", { get: function () { return {} }, enumerable: !0, configurable: !0 }), r.prototype.init = function () { }, r.prototype.destroy = function () { }, r); function r(t) { void 0 === t && (t = {}), this.adapter = t } e.MDCFoundation = i, e.default = i }, function (t, e, n) { "use strict"; var i = this && this.__read || function (t, e) { var n = "function" == typeof Symbol && t[Symbol.iterator]; if (!n) return t; var i, r, o = n.call(t), s = []; try { for (; (void 0 === e || 0 < e--) && !(i = o.next()).done;)s.push(i.value) } catch (t) { r = { error: t } } finally { try { i && !i.done && (n = o.return) && n.call(o) } finally { if (r) throw r.error } } return s }, r = this && this.__spread || function () { for (var t = [], e = 0; e < arguments.length; e++)t = t.concat(i(arguments[e])); return t }; Object.defineProperty(e, "__esModule", { value: !0 }); var o = n(0), s = (a.attachTo = function (t) { return new a(t, new o.MDCFoundation({})) }, a.prototype.initialize = function () { for (var t = [], e = 0; e < arguments.length; e++)t[e] = arguments[e] }, a.prototype.getDefaultFoundation = function () { throw new Error("Subclasses must override getDefaultFoundation to return a properly configured foundation class") }, a.prototype.initialSyncWithDOM = function () { }, a.prototype.destroy = function () { this.foundation.destroy() }, a.prototype.listen = function (t, e, n) { this.root.addEventListener(t, e, n) }, a.prototype.unlisten = function (t, e, n) { this.root.removeEventListener(t, e, n) }, a.prototype.emit = function (t, e, n) { var i; void 0 === n && (n = !1), "function" == typeof CustomEvent ? i = new CustomEvent(t, { bubbles: n, detail: e }) : (i = document.createEvent("CustomEvent")).initCustomEvent(t, n, !1, e), this.root.dispatchEvent(i) }, a); function a(t, e) { for (var n = [], i = 2; i < arguments.length; i++)n[i - 2] = arguments[i]; this.root = t, this.initialize.apply(this, r(n)), this.foundation = void 0 === e ? this.getDefaultFoundation() : e, this.foundation.init(), this.initialSyncWithDOM() } e.MDCComponent = s, e.default = s }, function (t, e, n) { "use strict"; function i(t, e) { return (t.matches || t.webkitMatchesSelector || t.msMatchesSelector).call(t, e) } Object.defineProperty(e, "__esModule", { value: !0 }), e.closest = function (t, e) { if (t.closest) return t.closest(e); for (var n = t; n;) { if (i(n, e)) return n; n = n.parentElement } return null }, e.matches = i, e.estimateScrollWidth = function (t) { var e = t; if (null !== e.offsetParent) return e.scrollWidth; var n = e.cloneNode(!0); n.style.setProperty("position", "absolute"), n.style.setProperty("transform", "translate(-9999px, -9999px)"), document.documentElement.appendChild(n); var i = n.scrollWidth; return document.documentElement.removeChild(n), i } }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__importStar || function (t) { if (t && t.__esModule) return t; var e = {}; if (null != t) for (var n in t) Object.hasOwnProperty.call(t, n) && (e[n] = t[n]); return e.default = t, e }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a = n(1), c = n(5), u = n(2), l = n(4), d = o(n(19)), p = (s = a.MDCComponent, r(h, s), h.attachTo = function (t, e) { void 0 === e && (e = { isUnbounded: void 0 }); var n = new h(t); return void 0 !== e.isUnbounded && (n.unbounded = e.isUnbounded), n }, h.createAdapter = function (n) { return { addClass: function (t) { return n.root.classList.add(t) }, browserSupportsCssVars: function () { return d.supportsCssVariables(window) }, computeBoundingRect: function () { return n.root.getBoundingClientRect() }, containsEventTarget: function (t) { return n.root.contains(t) }, deregisterDocumentInteractionHandler: function (t, e) { return document.documentElement.removeEventListener(t, e, c.applyPassive()) }, deregisterInteractionHandler: function (t, e) { return n.root.removeEventListener(t, e, c.applyPassive()) }, deregisterResizeHandler: function (t) { return window.removeEventListener("resize", t) }, getWindowPageOffset: function () { return { x: window.pageXOffset, y: window.pageYOffset } }, isSurfaceActive: function () { return u.matches(n.root, ":active") }, isSurfaceDisabled: function () { return Boolean(n.disabled) }, isUnbounded: function () { return Boolean(n.unbounded) }, registerDocumentInteractionHandler: function (t, e) { return document.documentElement.addEventListener(t, e, c.applyPassive()) }, registerInteractionHandler: function (t, e) { return n.root.addEventListener(t, e, c.applyPassive()) }, registerResizeHandler: function (t) { return window.addEventListener("resize", t) }, removeClass: function (t) { return n.root.classList.remove(t) }, updateCssVariable: function (t, e) { return n.root.style.setProperty(t, e) } } }, Object.defineProperty(h.prototype, "unbounded", { get: function () { return Boolean(this.unbounded_) }, set: function (t) { this.unbounded_ = Boolean(t), this.setUnbounded_() }, enumerable: !0, configurable: !0 }), h.prototype.activate = function () { this.foundation.activate() }, h.prototype.deactivate = function () { this.foundation.deactivate() }, h.prototype.layout = function () { this.foundation.layout() }, h.prototype.getDefaultFoundation = function () { return new l.MDCRippleFoundation(h.createAdapter(this)) }, h.prototype.initialSyncWithDOM = function () { var t = this.root; this.unbounded = "mdcRippleIsUnbounded" in t.dataset }, h.prototype.setUnbounded_ = function () { this.foundation.setUnbounded(Boolean(this.unbounded_)) }, h); function h() { var t = null !== s && s.apply(this, arguments) || this; return t.disabled = !1, t } e.MDCRipple = p }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a = n(0), c = n(45), u = n(19), l = ["touchstart", "pointerdown", "mousedown", "keydown"], d = ["touchend", "pointerup", "mouseup", "contextmenu"], p = [], h = (s = a.MDCFoundation, r(f, s), Object.defineProperty(f, "cssClasses", { get: function () { return c.cssClasses }, enumerable: !0, configurable: !0 }), Object.defineProperty(f, "strings", { get: function () { return c.strings }, enumerable: !0, configurable: !0 }), Object.defineProperty(f, "numbers", { get: function () { return c.numbers }, enumerable: !0, configurable: !0 }), Object.defineProperty(f, "defaultAdapter", { get: function () { return { addClass: function () { }, browserSupportsCssVars: function () { return !0 }, computeBoundingRect: function () { return { top: 0, right: 0, bottom: 0, left: 0, width: 0, height: 0 } }, containsEventTarget: function () { return !0 }, deregisterDocumentInteractionHandler: function () { }, deregisterInteractionHandler: function () { }, deregisterResizeHandler: function () { }, getWindowPageOffset: function () { return { x: 0, y: 0 } }, isSurfaceActive: function () { return !0 }, isSurfaceDisabled: function () { return !0 }, isUnbounded: function () { return !0 }, registerDocumentInteractionHandler: function () { }, registerInteractionHandler: function () { }, registerResizeHandler: function () { }, removeClass: function () { }, updateCssVariable: function () { } } }, enumerable: !0, configurable: !0 }), f.prototype.init = function () { var t = this, e = this.supportsPressRipple_(); if (this.registerRootHandlers_(e), e) { var n = f.cssClasses, i = n.ROOT, r = n.UNBOUNDED; requestAnimationFrame(function () { t.adapter.addClass(i), t.adapter.isUnbounded() && (t.adapter.addClass(r), t.layoutInternal_()) }) } }, f.prototype.destroy = function () { var t = this; if (this.supportsPressRipple_()) { this.activationTimer_ && (clearTimeout(this.activationTimer_), this.activationTimer_ = 0, this.adapter.removeClass(f.cssClasses.FG_ACTIVATION)), this.fgDeactivationRemovalTimer_ && (clearTimeout(this.fgDeactivationRemovalTimer_), this.fgDeactivationRemovalTimer_ = 0, this.adapter.removeClass(f.cssClasses.FG_DEACTIVATION)); var e = f.cssClasses, n = e.ROOT, i = e.UNBOUNDED; requestAnimationFrame(function () { t.adapter.removeClass(n), t.adapter.removeClass(i), t.removeCssVars_() }) } this.deregisterRootHandlers_(), this.deregisterDeactivationHandlers_() }, f.prototype.activate = function (t) { this.activate_(t) }, f.prototype.deactivate = function () { this.deactivate_() }, f.prototype.layout = function () { var t = this; this.layoutFrame_ && cancelAnimationFrame(this.layoutFrame_), this.layoutFrame_ = requestAnimationFrame(function () { t.layoutInternal_(), t.layoutFrame_ = 0 }) }, f.prototype.setUnbounded = function (t) { var e = f.cssClasses.UNBOUNDED; t ? this.adapter.addClass(e) : this.adapter.removeClass(e) }, f.prototype.handleFocus = function () { var t = this; requestAnimationFrame(function () { return t.adapter.addClass(f.cssClasses.BG_FOCUSED) }) }, f.prototype.handleBlur = function () { var t = this; requestAnimationFrame(function () { return t.adapter.removeClass(f.cssClasses.BG_FOCUSED) }) }, f.prototype.supportsPressRipple_ = function () { return this.adapter.browserSupportsCssVars() }, f.prototype.defaultActivationState_ = function () { return { activationEvent: void 0, hasDeactivationUXRun: !1, isActivated: !1, isProgrammatic: !1, wasActivatedByPointer: !1, wasElementMadeActive: !1 } }, f.prototype.registerRootHandlers_ = function (t) { var e = this; t && (l.forEach(function (t) { e.adapter.registerInteractionHandler(t, e.activateHandler_) }), this.adapter.isUnbounded() && this.adapter.registerResizeHandler(this.resizeHandler_)), this.adapter.registerInteractionHandler("focus", this.focusHandler_), this.adapter.registerInteractionHandler("blur", this.blurHandler_) }, f.prototype.registerDeactivationHandlers_ = function (t) { var e = this; "keydown" === t.type ? this.adapter.registerInteractionHandler("keyup", this.deactivateHandler_) : d.forEach(function (t) { e.adapter.registerDocumentInteractionHandler(t, e.deactivateHandler_) }) }, f.prototype.deregisterRootHandlers_ = function () { var e = this; l.forEach(function (t) { e.adapter.deregisterInteractionHandler(t, e.activateHandler_) }), this.adapter.deregisterInteractionHandler("focus", this.focusHandler_), this.adapter.deregisterInteractionHandler("blur", this.blurHandler_), this.adapter.isUnbounded() && this.adapter.deregisterResizeHandler(this.resizeHandler_) }, f.prototype.deregisterDeactivationHandlers_ = function () { var e = this; this.adapter.deregisterInteractionHandler("keyup", this.deactivateHandler_), d.forEach(function (t) { e.adapter.deregisterDocumentInteractionHandler(t, e.deactivateHandler_) }) }, f.prototype.removeCssVars_ = function () { var e = this, n = f.strings; Object.keys(n).forEach(function (t) { 0 === t.indexOf("VAR_") && e.adapter.updateCssVariable(n[t], null) }) }, f.prototype.activate_ = function (t) { var e = this; if (!this.adapter.isSurfaceDisabled()) { var n = this.activationState_; if (!n.isActivated) { var i = this.previousActivationEvent_; i && void 0 !== t && i.type !== t.type || (n.isActivated = !0, n.isProgrammatic = void 0 === t, n.activationEvent = t, n.wasActivatedByPointer = !n.isProgrammatic && void 0 !== t && ("mousedown" === t.type || "touchstart" === t.type || "pointerdown" === t.type), void 0 !== t && 0 < p.length && p.some(function (t) { return e.adapter.containsEventTarget(t) }) ? this.resetActivationState_() : (void 0 !== t && (p.push(t.target), this.registerDeactivationHandlers_(t)), n.wasElementMadeActive = this.checkElementMadeActive_(t), n.wasElementMadeActive && this.animateActivation_(), requestAnimationFrame(function () { p = [], n.wasElementMadeActive || void 0 === t || " " !== t.key && 32 !== t.keyCode || (n.wasElementMadeActive = e.checkElementMadeActive_(t), n.wasElementMadeActive && e.animateActivation_()), n.wasElementMadeActive || (e.activationState_ = e.defaultActivationState_()) }))) } } }, f.prototype.checkElementMadeActive_ = function (t) { return void 0 === t || "keydown" !== t.type || this.adapter.isSurfaceActive() }, f.prototype.animateActivation_ = function () { var t = this, e = f.strings, n = e.VAR_FG_TRANSLATE_START, i = e.VAR_FG_TRANSLATE_END, r = f.cssClasses, o = r.FG_DEACTIVATION, s = r.FG_ACTIVATION, a = f.numbers.DEACTIVATION_TIMEOUT_MS; this.layoutInternal_(); var c = "", u = ""; if (!this.adapter.isUnbounded()) { var l = this.getFgTranslationCoordinates_(), d = l.startPoint, p = l.endPoint; c = d.x + "px, " + d.y + "px", u = p.x + "px, " + p.y + "px" } this.adapter.updateCssVariable(n, c), this.adapter.updateCssVariable(i, u), clearTimeout(this.activationTimer_), clearTimeout(this.fgDeactivationRemovalTimer_), this.rmBoundedActivationClasses_(), this.adapter.removeClass(o), this.adapter.computeBoundingRect(), this.adapter.addClass(s), this.activationTimer_ = setTimeout(function () { return t.activationTimerCallback_() }, a) }, f.prototype.getFgTranslationCoordinates_ = function () { var t, e = this.activationState_, n = e.activationEvent; return { startPoint: t = { x: (t = e.wasActivatedByPointer ? u.getNormalizedEventCoords(n, this.adapter.getWindowPageOffset(), this.adapter.computeBoundingRect()) : { x: this.frame_.width / 2, y: this.frame_.height / 2 }).x - this.initialSize_ / 2, y: t.y - this.initialSize_ / 2 }, endPoint: { x: this.frame_.width / 2 - this.initialSize_ / 2, y: this.frame_.height / 2 - this.initialSize_ / 2 } } }, f.prototype.runDeactivationUXLogicIfReady_ = function () { var t = this, e = f.cssClasses.FG_DEACTIVATION, n = this.activationState_, i = n.hasDeactivationUXRun, r = n.isActivated; !i && r || !this.activationAnimationHasEnded_ || (this.rmBoundedActivationClasses_(), this.adapter.addClass(e), this.fgDeactivationRemovalTimer_ = setTimeout(function () { t.adapter.removeClass(e) }, c.numbers.FG_DEACTIVATION_MS)) }, f.prototype.rmBoundedActivationClasses_ = function () { var t = f.cssClasses.FG_ACTIVATION; this.adapter.removeClass(t), this.activationAnimationHasEnded_ = !1, this.adapter.computeBoundingRect() }, f.prototype.resetActivationState_ = function () { var t = this; this.previousActivationEvent_ = this.activationState_.activationEvent, this.activationState_ = this.defaultActivationState_(), setTimeout(function () { return t.previousActivationEvent_ = void 0 }, f.numbers.TAP_DELAY_MS) }, f.prototype.deactivate_ = function () { var t = this, e = this.activationState_; if (e.isActivated) { var n = o({}, e); e.isProgrammatic ? (requestAnimationFrame(function () { return t.animateDeactivation_(n) }), this.resetActivationState_()) : (this.deregisterDeactivationHandlers_(), requestAnimationFrame(function () { t.activationState_.hasDeactivationUXRun = !0, t.animateDeactivation_(n), t.resetActivationState_() })) } }, f.prototype.animateDeactivation_ = function (t) { var e = t.wasActivatedByPointer, n = t.wasElementMadeActive; (e || n) && this.runDeactivationUXLogicIfReady_() }, f.prototype.layoutInternal_ = function () { var t = this; this.frame_ = this.adapter.computeBoundingRect(); var e = Math.max(this.frame_.height, this.frame_.width); this.maxRadius_ = this.adapter.isUnbounded() ? e : Math.sqrt(Math.pow(t.frame_.width, 2) + Math.pow(t.frame_.height, 2)) + f.numbers.PADDING; var n = Math.floor(e * f.numbers.INITIAL_ORIGIN_SCALE); this.adapter.isUnbounded() && n % 2 != 0 ? this.initialSize_ = n - 1 : this.initialSize_ = n, this.fgScale_ = "" + this.maxRadius_ / this.initialSize_, this.updateLayoutCssVars_() }, f.prototype.updateLayoutCssVars_ = function () { var t = f.strings, e = t.VAR_FG_SIZE, n = t.VAR_LEFT, i = t.VAR_TOP, r = t.VAR_FG_SCALE; this.adapter.updateCssVariable(e, this.initialSize_ + "px"), this.adapter.updateCssVariable(r, this.fgScale_), this.adapter.isUnbounded() && (this.unboundedCoords_ = { left: Math.round(this.frame_.width / 2 - this.initialSize_ / 2), top: Math.round(this.frame_.height / 2 - this.initialSize_ / 2) }, this.adapter.updateCssVariable(n, this.unboundedCoords_.left + "px"), this.adapter.updateCssVariable(i, this.unboundedCoords_.top + "px")) }, f); function f(t) { var e = s.call(this, o(o({}, f.defaultAdapter), t)) || this; return e.activationAnimationHasEnded_ = !1, e.activationTimer_ = 0, e.fgDeactivationRemovalTimer_ = 0, e.fgScale_ = "0", e.frame_ = { width: 0, height: 0 }, e.initialSize_ = 0, e.layoutFrame_ = 0, e.maxRadius_ = 0, e.unboundedCoords_ = { left: 0, top: 0 }, e.activationState_ = e.defaultActivationState_(), e.activationTimerCallback_ = function () { e.activationAnimationHasEnded_ = !0, e.runDeactivationUXLogicIfReady_() }, e.activateHandler_ = function (t) { return e.activate_(t) }, e.deactivateHandler_ = function () { return e.deactivate_() }, e.focusHandler_ = function () { return e.handleFocus() }, e.blurHandler_ = function () { return e.handleBlur() }, e.resizeHandler_ = function () { return e.layout() }, e } e.MDCRippleFoundation = h, e.default = h }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }), e.applyPassive = function (t) { return void 0 === t && (t = window), !!function (t) { void 0 === t && (t = window); var e = !1; try { var n = { get passive() { return !(e = !0) } }, i = function () { }; t.document.addEventListener("test", i, n), t.document.removeEventListener("test", i, n) } catch (t) { e = !1 } return e }(t) && { passive: !0 } } }, function (t, i, e) { "use strict"; Object.defineProperty(i, "__esModule", { value: !0 }), i.KEY = { UNKNOWN: "Unknown", BACKSPACE: "Backspace", ENTER: "Enter", SPACEBAR: "Spacebar", PAGE_UP: "PageUp", PAGE_DOWN: "PageDown", END: "End", HOME: "Home", ARROW_LEFT: "ArrowLeft", ARROW_UP: "ArrowUp", ARROW_RIGHT: "ArrowRight", ARROW_DOWN: "ArrowDown", DELETE: "Delete", ESCAPE: "Escape" }; var r = new Set; r.add(i.KEY.BACKSPACE), r.add(i.KEY.ENTER), r.add(i.KEY.SPACEBAR), r.add(i.KEY.PAGE_UP), r.add(i.KEY.PAGE_DOWN), r.add(i.KEY.END), r.add(i.KEY.HOME), r.add(i.KEY.ARROW_LEFT), r.add(i.KEY.ARROW_UP), r.add(i.KEY.ARROW_RIGHT), r.add(i.KEY.ARROW_DOWN), r.add(i.KEY.DELETE), r.add(i.KEY.ESCAPE); var n = 8, o = 13, s = 32, a = 33, c = 34, u = 35, l = 36, d = 37, p = 38, h = 39, f = 40, _ = 46, y = 27, C = new Map; C.set(n, i.KEY.BACKSPACE), C.set(o, i.KEY.ENTER), C.set(s, i.KEY.SPACEBAR), C.set(a, i.KEY.PAGE_UP), C.set(c, i.KEY.PAGE_DOWN), C.set(u, i.KEY.END), C.set(l, i.KEY.HOME), C.set(d, i.KEY.ARROW_LEFT), C.set(p, i.KEY.ARROW_UP), C.set(h, i.KEY.ARROW_RIGHT), C.set(f, i.KEY.ARROW_DOWN), C.set(_, i.KEY.DELETE), C.set(y, i.KEY.ESCAPE); var m = new Set; function E(t) { var e = t.key; if (r.has(e)) return e; var n = C.get(t.keyCode); return n || i.KEY.UNKNOWN } m.add(i.KEY.PAGE_UP), m.add(i.KEY.PAGE_DOWN), m.add(i.KEY.END), m.add(i.KEY.HOME), m.add(i.KEY.ARROW_LEFT), m.add(i.KEY.ARROW_UP), m.add(i.KEY.ARROW_RIGHT), m.add(i.KEY.ARROW_DOWN), i.normalizeKey = E, i.isNavigationEvent = function (t) { return m.has(E(t)) } }, function (t, e, n) { "use strict"; var i; Object.defineProperty(e, "__esModule", { value: !0 }); var r = { LIST_ITEM_ACTIVATED_CLASS: "mdc-list-item--activated", LIST_ITEM_CLASS: "mdc-list-item", LIST_ITEM_DISABLED_CLASS: "mdc-list-item--disabled", LIST_ITEM_SELECTED_CLASS: "mdc-list-item--selected", LIST_ITEM_TEXT_CLASS: "mdc-list-item__text", LIST_ITEM_PRIMARY_TEXT_CLASS: "mdc-list-item__primary-text", ROOT: "mdc-list" }; e.cssClasses = r; e.strings = { ACTION_EVENT: "MDCList:action", ARIA_CHECKED: "aria-checked", ARIA_CHECKED_CHECKBOX_SELECTOR: '[role="checkbox"][aria-checked="true"]', ARIA_CHECKED_RADIO_SELECTOR: '[role="radio"][aria-checked="true"]', ARIA_CURRENT: "aria-current", ARIA_DISABLED: "aria-disabled", ARIA_ORIENTATION: "aria-orientation", ARIA_ORIENTATION_HORIZONTAL: "horizontal", ARIA_ROLE_CHECKBOX_SELECTOR: '[role="checkbox"]', ARIA_SELECTED: "aria-selected", ARIA_INTERACTIVE_ROLES_SELECTOR: '[role="listbox"], [role="menu"]', ARIA_MULTI_SELECTABLE_SELECTOR: '[aria-multiselectable="true"]', CHECKBOX_RADIO_SELECTOR: 'input[type="checkbox"], input[type="radio"]', CHECKBOX_SELECTOR: 'input[type="checkbox"]', CHILD_ELEMENTS_TO_TOGGLE_TABINDEX: "button:not(:disabled), a", FOCUSABLE_CHILD_ELEMENTS: 'button:not(:disabled), a, input[type="radio"]:not(:disabled), input[type="checkbox"]:not(:disabled)', RADIO_SELECTOR: 'input[type="radio"]', SELECTED_ITEM_SELECTOR: '[aria-selected="true"], [aria-current="true"]' }; e.numbers = { UNSET_INDEX: -1, TYPEAHEAD_BUFFER_CLEAR_TIMEOUT_MS: 300 }; var o = ((i = {})["" + r.LIST_ITEM_ACTIVATED_CLASS] = "mdc-evolution-list-item--activated", i["" + r.LIST_ITEM_CLASS] = "mdc-evolution-list-item", i["" + r.LIST_ITEM_DISABLED_CLASS] = "mdc-evolution-list-item--disabled", i["" + r.LIST_ITEM_SELECTED_CLASS] = "mdc-evolution-list-item--selected", i["" + r.LIST_ITEM_PRIMARY_TEXT_CLASS] = "mdc-evolution-list-item__primary-text", i["" + r.ROOT] = "mdc-evolution-list", i); e.evolutionClassNameMap = o; e.evolutionAttribute = "evolution" }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }); e.cssClasses = { ANCHOR: "mdc-menu-surface--anchor", ANIMATING_CLOSED: "mdc-menu-surface--animating-closed", ANIMATING_OPEN: "mdc-menu-surface--animating-open", FIXED: "mdc-menu-surface--fixed", IS_OPEN_BELOW: "mdc-menu-surface--is-open-below", OPEN: "mdc-menu-surface--open", ROOT: "mdc-menu-surface" }; var i = { CLOSED_EVENT: "MDCMenuSurface:closed", CLOSING_EVENT: "MDCMenuSurface:closing", OPENED_EVENT: "MDCMenuSurface:opened", FOCUSABLE_ELEMENTS: ["button:not(:disabled)", '[href]:not([aria-disabled="true"])', "input:not(:disabled)", "select:not(:disabled)", "textarea:not(:disabled)", '[tabindex]:not([tabindex="-1"]):not([aria-disabled="true"])'].join(", ") }; e.strings = i; var r, o, s, a; e.numbers = { TRANSITION_OPEN_DURATION: 120, TRANSITION_CLOSE_DURATION: 75, MARGIN_TO_EDGE: 32, ANCHOR_TO_MENU_SURFACE_WIDTH_RATIO: .67 }, (o = r = r || {})[o.BOTTOM = 1] = "BOTTOM", o[o.CENTER = 2] = "CENTER", o[o.RIGHT = 4] = "RIGHT", o[o.FLIP_RTL = 8] = "FLIP_RTL", e.CornerBit = r, (a = s = s || {})[a.TOP_LEFT = 0] = "TOP_LEFT", a[a.TOP_RIGHT = 4] = "TOP_RIGHT", a[a.BOTTOM_LEFT = 1] = "BOTTOM_LEFT", a[a.BOTTOM_RIGHT = 5] = "BOTTOM_RIGHT", a[a.TOP_START = 8] = "TOP_START", a[a.TOP_END = 12] = "TOP_END", a[a.BOTTOM_START = 9] = "BOTTOM_START", a[a.BOTTOM_END = 13] = "BOTTOM_END", e.Corner = s }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }); e.cssClasses = { FIXED_CLASS: "mdc-top-app-bar--fixed", FIXED_SCROLLED_CLASS: "mdc-top-app-bar--fixed-scrolled", SHORT_CLASS: "mdc-top-app-bar--short", SHORT_COLLAPSED_CLASS: "mdc-top-app-bar--short-collapsed", SHORT_HAS_ACTION_ITEM_CLASS: "mdc-top-app-bar--short-has-action-item" }; e.numbers = { DEBOUNCE_THROTTLE_RESIZE_TIME_MS: 100, MAX_TOP_APP_BAR_HEIGHT: 128 }; e.strings = { ACTION_ITEM_SELECTOR: ".mdc-top-app-bar__action-item", NAVIGATION_EVENT: "MDCTopAppBar:nav", NAVIGATION_ICON_SELECTOR: ".mdc-top-app-bar__navigation-icon", ROOT_SELECTOR: ".mdc-top-app-bar", TITLE_SELECTOR: ".mdc-top-app-bar__title" } }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }); var s = { animation: { prefixed: "-webkit-animation", standard: "animation" }, transform: { prefixed: "-webkit-transform", standard: "transform" }, transition: { prefixed: "-webkit-transition", standard: "transition" } }, a = { animationend: { cssProperty: "animation", prefixed: "webkitAnimationEnd", standard: "animationend" }, animationiteration: { cssProperty: "animation", prefixed: "webkitAnimationIteration", standard: "animationiteration" }, animationstart: { cssProperty: "animation", prefixed: "webkitAnimationStart", standard: "animationstart" }, transitionend: { cssProperty: "transition", prefixed: "webkitTransitionEnd", standard: "transitionend" } }; function c(t) { return Boolean(t.document) && "function" == typeof t.document.createElement } e.getCorrectPropertyName = function (t, e) { if (c(t) && e in s) { var n = t.document.createElement("div"), i = s[e], r = i.standard, o = i.prefixed; return r in n.style ? r : o } return e }, e.getCorrectEventName = function (t, e) { if (c(t) && e in a) { var n = t.document.createElement("div"), i = a[e], r = i.standard, o = i.prefixed; return i.cssProperty in n.style ? r : o } return e } }, function (t, e, n) { "use strict"; var i; Object.defineProperty(e, "__esModule", { value: !0 }), (i = e.InteractionTrigger || (e.InteractionTrigger = {}))[i.UNSPECIFIED = 0] = "UNSPECIFIED", i[i.CLICK = 1] = "CLICK", i[i.BACKSPACE_KEY = 2] = "BACKSPACE_KEY", i[i.DELETE_KEY = 3] = "DELETE_KEY", i[i.SPACEBAR_KEY = 4] = "SPACEBAR_KEY", i[i.ENTER_KEY = 5] = "ENTER_KEY", e.strings = { ARIA_HIDDEN: "aria-hidden", INTERACTION_EVENT: "MDCChipTrailingAction:interaction", NAVIGATION_EVENT: "MDCChipTrailingAction:navigation", TAB_INDEX: "tabindex" } }, function (t, e, n) { "use strict"; var i, r; Object.defineProperty(e, "__esModule", { value: !0 }), (i = e.Direction || (e.Direction = {})).LEFT = "left", i.RIGHT = "right", (r = e.EventSource || (e.EventSource = {})).PRIMARY = "primary", r.TRAILING = "trailing", r.NONE = "none", e.strings = { ADDED_ANNOUNCEMENT_ATTRIBUTE: "data-mdc-chip-added-announcement", ARIA_CHECKED: "aria-checked", ARROW_DOWN_KEY: "ArrowDown", ARROW_LEFT_KEY: "ArrowLeft", ARROW_RIGHT_KEY: "ArrowRight", ARROW_UP_KEY: "ArrowUp", BACKSPACE_KEY: "Backspace", CHECKMARK_SELECTOR: ".mdc-chip__checkmark", DELETE_KEY: "Delete", END_KEY: "End", ENTER_KEY: "Enter", ENTRY_ANIMATION_NAME: "mdc-chip-entry", HOME_KEY: "Home", IE_ARROW_DOWN_KEY: "Down", IE_ARROW_LEFT_KEY: "Left", IE_ARROW_RIGHT_KEY: "Right", IE_ARROW_UP_KEY: "Up", IE_DELETE_KEY: "Del", INTERACTION_EVENT: "MDCChip:interaction", LEADING_ICON_SELECTOR: ".mdc-chip__icon--leading", NAVIGATION_EVENT: "MDCChip:navigation", PRIMARY_ACTION_SELECTOR: ".mdc-chip__primary-action", REMOVED_ANNOUNCEMENT_ATTRIBUTE: "data-mdc-chip-removed-announcement", REMOVAL_EVENT: "MDCChip:removal", SELECTION_EVENT: "MDCChip:selection", SPACEBAR_KEY: " ", TAB_INDEX: "tabindex", TRAILING_ACTION_SELECTOR: ".mdc-chip-trailing-action", TRAILING_ICON_INTERACTION_EVENT: "MDCChip:trailingIconInteraction", TRAILING_ICON_SELECTOR: ".mdc-chip__icon--trailing" }, e.cssClasses = { CHECKMARK: "mdc-chip__checkmark", CHIP_EXIT: "mdc-chip--exit", DELETABLE: "mdc-chip--deletable", EDITABLE: "mdc-chip--editable", EDITING: "mdc-chip--editing", HIDDEN_LEADING_ICON: "mdc-chip__icon--leading-hidden", LEADING_ICON: "mdc-chip__icon--leading", PRIMARY_ACTION: "mdc-chip__primary-action", PRIMARY_ACTION_FOCUSED: "mdc-chip--primary-action-focused", SELECTED: "mdc-chip--selected", TEXT: "mdc-chip__text", TRAILING_ACTION: "mdc-chip__trailing-action", TRAILING_ICON: "mdc-chip__icon--trailing" }, e.navigationKeys = new Set, e.navigationKeys.add(e.strings.ARROW_LEFT_KEY), e.navigationKeys.add(e.strings.ARROW_RIGHT_KEY), e.navigationKeys.add(e.strings.ARROW_DOWN_KEY), e.navigationKeys.add(e.strings.ARROW_UP_KEY), e.navigationKeys.add(e.strings.END_KEY), e.navigationKeys.add(e.strings.HOME_KEY), e.navigationKeys.add(e.strings.IE_ARROW_LEFT_KEY), e.navigationKeys.add(e.strings.IE_ARROW_RIGHT_KEY), e.navigationKeys.add(e.strings.IE_ARROW_DOWN_KEY), e.navigationKeys.add(e.strings.IE_ARROW_UP_KEY), e.jumpChipKeys = new Set, e.jumpChipKeys.add(e.strings.ARROW_UP_KEY), e.jumpChipKeys.add(e.strings.ARROW_DOWN_KEY), e.jumpChipKeys.add(e.strings.HOME_KEY), e.jumpChipKeys.add(e.strings.END_KEY), e.jumpChipKeys.add(e.strings.IE_ARROW_UP_KEY), e.jumpChipKeys.add(e.strings.IE_ARROW_DOWN_KEY) }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }, s = this && this.__importStar || function (t) { if (t && t.__esModule) return t; var e = {}; if (null != t) for (var n in t) Object.hasOwnProperty.call(t, n) && (e[n] = t[n]); return e.default = t, e }; Object.defineProperty(e, "__esModule", { value: !0 }); var a = n(0), y = n(6), C = n(7), m = n(63), E = s(n(140)); var c, u = (c = a.MDCFoundation, r(l, c), Object.defineProperty(l, "strings", { get: function () { return C.strings }, enumerable: !0, configurable: !0 }), Object.defineProperty(l, "cssClasses", { get: function () { return C.cssClasses }, enumerable: !0, configurable: !0 }), Object.defineProperty(l, "numbers", { get: function () { return C.numbers }, enumerable: !0, configurable: !0 }), Object.defineProperty(l, "defaultAdapter", { get: function () { return { addClassForElementIndex: function () { }, focusItemAtIndex: function () { }, getAttributeForElementIndex: function () { return null }, getFocusedElementIndex: function () { return 0 }, getListItemCount: function () { return 0 }, hasCheckboxAtIndex: function () { return !1 }, hasRadioAtIndex: function () { return !1 }, isCheckboxCheckedAtIndex: function () { return !1 }, isFocusInsideList: function () { return !1 }, isRootFocused: function () { return !1 }, listItemAtIndexHasClass: function () { return !1 }, notifyAction: function () { }, removeClassForElementIndex: function () { }, setAttributeForElementIndex: function () { }, setCheckedCheckboxOrRadioAtIndex: function () { }, setTabIndexForListItemChildren: function () { }, getPrimaryTextAtIndex: function () { return "" } } }, enumerable: !0, configurable: !0 }), l.prototype.layout = function () { 0 !== this.adapter.getListItemCount() && (this.adapter.hasCheckboxAtIndex(0) ? this.isCheckboxList_ = !0 : this.adapter.hasRadioAtIndex(0) ? this.isRadioList_ = !0 : this.maybeInitializeSingleSelection(), this.hasTypeahead && (this.sortedIndexByFirstChar = this.typeaheadInitSortedIndex())) }, l.prototype.setWrapFocus = function (t) { this.wrapFocus_ = t }, l.prototype.setVerticalOrientation = function (t) { this.isVertical_ = t }, l.prototype.setSingleSelection = function (t) { (this.isSingleSelectionList_ = t) && this.maybeInitializeSingleSelection() }, l.prototype.maybeInitializeSingleSelection = function () { for (var t = this.adapter.getListItemCount(), e = 0; e < t; e++) { var n = this.adapter.listItemAtIndexHasClass(e, C.cssClasses.LIST_ITEM_SELECTED_CLASS), i = this.adapter.listItemAtIndexHasClass(e, C.cssClasses.LIST_ITEM_ACTIVATED_CLASS); if (n || i) return i && this.setUseActivatedClass(!0), this.isSingleSelectionList_ = !0, void (this.selectedIndex_ = e) } }, l.prototype.setHasTypeahead = function (t) { (this.hasTypeahead = t) && (this.sortedIndexByFirstChar = this.typeaheadInitSortedIndex()) }, l.prototype.isTypeaheadInProgress = function () { return this.hasTypeahead && E.isTypingInProgress(this.typeaheadState) }, l.prototype.setUseActivatedClass = function (t) { this.useActivatedClass_ = t }, l.prototype.setUseSelectedAttribute = function (t) { this.useSelectedAttr_ = t }, l.prototype.getSelectedIndex = function () { return this.selectedIndex_ }, l.prototype.setSelectedIndex = function (t) { this.isIndexValid_(t) && (this.isCheckboxList_ ? this.setCheckboxAtIndex_(t) : this.isRadioList_ ? this.setRadioAtIndex_(t) : this.setSingleSelectionAtIndex_(t)) }, l.prototype.handleFocusIn = function (t, e) { 0 <= e && (this.focusedItemIndex = e, this.adapter.setAttributeForElementIndex(e, "tabindex", "0"), this.adapter.setTabIndexForListItemChildren(e, "0")) }, l.prototype.handleFocusOut = function (t, e) { var n = this; 0 <= e && (this.adapter.setAttributeForElementIndex(e, "tabindex", "-1"), this.adapter.setTabIndexForListItemChildren(e, "-1")), setTimeout(function () { n.adapter.isFocusInsideList() || n.setTabindexToFirstSelectedOrFocusedItem() }, 0) }, l.prototype.handleKeydown = function (t, e, n) { var i = this, r = "ArrowLeft" === y.normalizeKey(t), o = "ArrowUp" === y.normalizeKey(t), s = "ArrowRight" === y.normalizeKey(t), a = "ArrowDown" === y.normalizeKey(t), c = "Home" === y.normalizeKey(t), u = "End" === y.normalizeKey(t), l = "Enter" === y.normalizeKey(t), d = "Spacebar" === y.normalizeKey(t), p = "A" === t.key || "a" === t.key; if (this.adapter.isRootFocused()) { if (o || u ? (t.preventDefault(), this.focusLastElement()) : (a || c) && (t.preventDefault(), this.focusFirstElement()), this.hasTypeahead) { var h = { event: t, focusItemAtIndex: function (t) { i.focusItemAtIndex(t) }, focusedItemIndex: -1, isTargetListItem: e, sortedIndexByFirstChar: this.sortedIndexByFirstChar, isItemAtIndexDisabled: function (t) { return i.adapter.listItemAtIndexHasClass(t, C.cssClasses.LIST_ITEM_DISABLED_CLASS) } }; E.handleKeydown(h, this.typeaheadState) } } else { var f = this.adapter.getFocusedElementIndex(); if (!(-1 === f && (f = n) < 0)) { if (this.isVertical_ && a || !this.isVertical_ && s) m.preventDefaultEvent(t), this.focusNextElement(f); else if (this.isVertical_ && o || !this.isVertical_ && r) m.preventDefaultEvent(t), this.focusPrevElement(f); else if (c) m.preventDefaultEvent(t), this.focusFirstElement(); else if (u) m.preventDefaultEvent(t), this.focusLastElement(); else if (p && t.ctrlKey && this.isCheckboxList_) t.preventDefault(), this.toggleAll(this.selectedIndex_ === C.numbers.UNSET_INDEX ? [] : this.selectedIndex_); else if ((l || d) && e) { var _ = t.target; if (_ && "A" === _.tagName && l) return; if (m.preventDefaultEvent(t), this.adapter.listItemAtIndexHasClass(f, C.cssClasses.LIST_ITEM_DISABLED_CLASS)) return; this.isTypeaheadInProgress() || (this.isSelectableList_() && this.setSelectedIndexOnAction_(f), this.adapter.notifyAction(f)) } this.hasTypeahead && (h = { event: t, focusItemAtIndex: function (t) { i.focusItemAtIndex(t) }, focusedItemIndex: this.focusedItemIndex, isTargetListItem: e, sortedIndexByFirstChar: this.sortedIndexByFirstChar, isItemAtIndexDisabled: function (t) { return i.adapter.listItemAtIndexHasClass(t, C.cssClasses.LIST_ITEM_DISABLED_CLASS) } }, E.handleKeydown(h, this.typeaheadState)) } } }, l.prototype.handleClick = function (t, e) { t !== C.numbers.UNSET_INDEX && (this.adapter.listItemAtIndexHasClass(t, C.cssClasses.LIST_ITEM_DISABLED_CLASS) || (this.isSelectableList_() && this.setSelectedIndexOnAction_(t, e), this.adapter.notifyAction(t))) }, l.prototype.focusNextElement = function (t) { var e = t + 1; if (this.adapter.getListItemCount() <= e) { if (!this.wrapFocus_) return t; e = 0 } return this.focusItemAtIndex(e), e }, l.prototype.focusPrevElement = function (t) { var e = t - 1; if (e < 0) { if (!this.wrapFocus_) return t; e = this.adapter.getListItemCount() - 1 } return this.focusItemAtIndex(e), e }, l.prototype.focusFirstElement = function () { return this.focusItemAtIndex(0), 0 }, l.prototype.focusLastElement = function () { var t = this.adapter.getListItemCount() - 1; return this.focusItemAtIndex(t), t }, l.prototype.focusInitialElement = function () { var t = this.getFirstSelectedOrFocusedItemIndex(); return this.focusItemAtIndex(t), t }, l.prototype.setEnabled = function (t, e) { this.isIndexValid_(t) && (e ? (this.adapter.removeClassForElementIndex(t, C.cssClasses.LIST_ITEM_DISABLED_CLASS), this.adapter.setAttributeForElementIndex(t, C.strings.ARIA_DISABLED, "false")) : (this.adapter.addClassForElementIndex(t, C.cssClasses.LIST_ITEM_DISABLED_CLASS), this.adapter.setAttributeForElementIndex(t, C.strings.ARIA_DISABLED, "true"))) }, l.prototype.setSingleSelectionAtIndex_ = function (t) { if (this.selectedIndex_ !== t) { var e = C.cssClasses.LIST_ITEM_SELECTED_CLASS; this.useActivatedClass_ && (e = C.cssClasses.LIST_ITEM_ACTIVATED_CLASS), this.selectedIndex_ !== C.numbers.UNSET_INDEX && this.adapter.removeClassForElementIndex(this.selectedIndex_, e), this.setAriaForSingleSelectionAtIndex_(t), this.setTabindexAtIndex(t), t !== C.numbers.UNSET_INDEX && this.adapter.addClassForElementIndex(t, e), this.selectedIndex_ = t } }, l.prototype.setAriaForSingleSelectionAtIndex_ = function (t) { this.selectedIndex_ === C.numbers.UNSET_INDEX && (this.ariaCurrentAttrValue_ = this.adapter.getAttributeForElementIndex(t, C.strings.ARIA_CURRENT)); var e = null !== this.ariaCurrentAttrValue_, n = e ? C.strings.ARIA_CURRENT : C.strings.ARIA_SELECTED; if (this.selectedIndex_ !== C.numbers.UNSET_INDEX && this.adapter.setAttributeForElementIndex(this.selectedIndex_, n, "false"), t !== C.numbers.UNSET_INDEX) { var i = e ? this.ariaCurrentAttrValue_ : "true"; this.adapter.setAttributeForElementIndex(t, n, i) } }, l.prototype.getSelectionAttribute = function () { return this.useSelectedAttr_ ? C.strings.ARIA_SELECTED : C.strings.ARIA_CHECKED }, l.prototype.setRadioAtIndex_ = function (t) { var e = this.getSelectionAttribute(); this.adapter.setCheckedCheckboxOrRadioAtIndex(t, !0), this.selectedIndex_ !== C.numbers.UNSET_INDEX && this.adapter.setAttributeForElementIndex(this.selectedIndex_, e, "false"), this.adapter.setAttributeForElementIndex(t, e, "true"), this.selectedIndex_ = t }, l.prototype.setCheckboxAtIndex_ = function (t) { for (var e = this.getSelectionAttribute(), n = 0; n < this.adapter.getListItemCount(); n++) { var i = !1; 0 <= t.indexOf(n) && (i = !0), this.adapter.setCheckedCheckboxOrRadioAtIndex(n, i), this.adapter.setAttributeForElementIndex(n, e, i ? "true" : "false") } this.selectedIndex_ = t }, l.prototype.setTabindexAtIndex = function (t) { this.focusedItemIndex === C.numbers.UNSET_INDEX && 0 !== t ? this.adapter.setAttributeForElementIndex(0, "tabindex", "-1") : 0 <= this.focusedItemIndex && this.focusedItemIndex !== t && this.adapter.setAttributeForElementIndex(this.focusedItemIndex, "tabindex", "-1"), this.selectedIndex_ instanceof Array || this.selectedIndex_ === t || this.adapter.setAttributeForElementIndex(this.selectedIndex_, "tabindex", "-1"), t !== C.numbers.UNSET_INDEX && this.adapter.setAttributeForElementIndex(t, "tabindex", "0") }, l.prototype.isSelectableList_ = function () { return this.isSingleSelectionList_ || this.isCheckboxList_ || this.isRadioList_ }, l.prototype.setTabindexToFirstSelectedOrFocusedItem = function () { var t = this.getFirstSelectedOrFocusedItemIndex(); this.setTabindexAtIndex(t) }, l.prototype.getFirstSelectedOrFocusedItemIndex = function () { var t = 0 <= this.focusedItemIndex ? this.focusedItemIndex : 0; return this.isSelectableList_() && ("number" == typeof this.selectedIndex_ && this.selectedIndex_ !== C.numbers.UNSET_INDEX ? t = this.selectedIndex_ : function (t) { return t instanceof Array }(this.selectedIndex_) && 0 < this.selectedIndex_.length && (t = this.selectedIndex_.reduce(function (t, e) { return Math.min(t, e) }))), t }, l.prototype.isIndexValid_ = function (t) { var e = this; if (t instanceof Array) { if (!this.isCheckboxList_) throw new Error("MDCListFoundation: Array of index is only supported for checkbox based list"); return 0 === t.length || t.some(function (t) { return e.isIndexInRange_(t) }) } if ("number" != typeof t) return !1; if (this.isCheckboxList_) throw new Error("MDCListFoundation: Expected array of index for checkbox based list but got number: " + t); return this.isIndexInRange_(t) || this.isSingleSelectionList_ && t === C.numbers.UNSET_INDEX }, l.prototype.isIndexInRange_ = function (t) { var e = this.adapter.getListItemCount(); return 0 <= t && t < e }, l.prototype.setSelectedIndexOnAction_ = function (t, e) { void 0 === e && (e = !0), this.isCheckboxList_ ? this.toggleCheckboxAtIndex_(t, e) : this.setSelectedIndex(t) }, l.prototype.toggleCheckboxAtIndex_ = function (e, t) { var n = this.getSelectionAttribute(), i = this.adapter.isCheckboxCheckedAtIndex(e); t && (i = !i, this.adapter.setCheckedCheckboxOrRadioAtIndex(e, i)), this.adapter.setAttributeForElementIndex(e, n, i ? "true" : "false"); var r = this.selectedIndex_ === C.numbers.UNSET_INDEX ? [] : this.selectedIndex_.slice(); i ? r.push(e) : r = r.filter(function (t) { return t !== e }), this.selectedIndex_ = r }, l.prototype.focusItemAtIndex = function (t) { this.adapter.focusItemAtIndex(t), this.focusedItemIndex = t }, l.prototype.toggleAll = function (t) { var e = this.adapter.getListItemCount(); if (t.length === e) this.setCheckboxAtIndex_([]); else { for (var n = [], i = 0; i < e; i++)(!this.adapter.listItemAtIndexHasClass(i, C.cssClasses.LIST_ITEM_DISABLED_CLASS) || -1 < t.indexOf(i)) && n.push(i); this.setCheckboxAtIndex_(n) } }, l.prototype.typeaheadMatchItem = function (t, e, n) { var i = this; void 0 === n && (n = !1); var r = { focusItemAtIndex: function (t) { i.focusItemAtIndex(t) }, focusedItemIndex: e || this.focusedItemIndex, nextChar: t, sortedIndexByFirstChar: this.sortedIndexByFirstChar, skipFocus: n, isItemAtIndexDisabled: function (t) { return i.adapter.listItemAtIndexHasClass(t, C.cssClasses.LIST_ITEM_DISABLED_CLASS) } }; return E.matchItem(r, this.typeaheadState) }, l.prototype.typeaheadInitSortedIndex = function () { return E.initSortedIndex(this.adapter.getListItemCount(), this.adapter.getPrimaryTextAtIndex) }, l.prototype.clearTypeaheadBuffer = function () { E.clearBuffer(this.typeaheadState) }, l); function l(t) { var e = c.call(this, o(o({}, l.defaultAdapter), t)) || this; return e.wrapFocus_ = !1, e.isVertical_ = !0, e.isSingleSelectionList_ = !1, e.selectedIndex_ = C.numbers.UNSET_INDEX, e.focusedItemIndex = C.numbers.UNSET_INDEX, e.useActivatedClass_ = !1, e.useSelectedAttr_ = !1, e.ariaCurrentAttrValue_ = null, e.isCheckboxList_ = !1, e.isRadioList_ = !1, e.hasTypeahead = !1, e.typeaheadState = E.initState(), e.sortedIndexByFirstChar = new Map, e } e.MDCListFoundation = u, e.default = u }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }, d = this && this.__values || function (t) { var e = "function" == typeof Symbol && Symbol.iterator, n = e && t[e], i = 0; if (n) return n.call(t); if (t && "number" == typeof t.length) return { next: function () { return t && i >= t.length && (t = void 0), { value: t && t[i++], done: !t } } }; throw new TypeError(e ? "Object is not iterable." : "Symbol.iterator is not defined.") }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a = n(0), C = n(8), c = (s = a.MDCFoundation, r(m, s), Object.defineProperty(m, "cssClasses", { get: function () { return C.cssClasses }, enumerable: !0, configurable: !0 }), Object.defineProperty(m, "strings", { get: function () { return C.strings }, enumerable: !0, configurable: !0 }), Object.defineProperty(m, "numbers", { get: function () { return C.numbers }, enumerable: !0, configurable: !0 }), Object.defineProperty(m, "Corner", { get: function () { return C.Corner }, enumerable: !0, configurable: !0 }), Object.defineProperty(m, "defaultAdapter", { get: function () { return { addClass: function () { }, removeClass: function () { }, hasClass: function () { return !1 }, hasAnchor: function () { return !1 }, isElementInContainer: function () { return !1 }, isFocused: function () { return !1 }, isRtl: function () { return !1 }, getInnerDimensions: function () { return { height: 0, width: 0 } }, getAnchorDimensions: function () { return null }, getWindowDimensions: function () { return { height: 0, width: 0 } }, getBodyDimensions: function () { return { height: 0, width: 0 } }, getWindowScroll: function () { return { x: 0, y: 0 } }, setPosition: function () { }, setMaxHeight: function () { }, setTransformOrigin: function () { }, saveFocus: function () { }, restoreFocus: function () { }, notifyClose: function () { }, notifyOpen: function () { }, notifyClosing: function () { } } }, enumerable: !0, configurable: !0 }), m.prototype.init = function () { var t = m.cssClasses, e = t.ROOT, n = t.OPEN; if (!this.adapter.hasClass(e)) throw new Error(e + " class required in root element."); this.adapter.hasClass(n) && (this.isSurfaceOpen = !0) }, m.prototype.destroy = function () { clearTimeout(this.openAnimationEndTimerId), clearTimeout(this.closeAnimationEndTimerId), cancelAnimationFrame(this.animationRequestId) }, m.prototype.setAnchorCorner = function (t) { this.anchorCorner = t }, m.prototype.flipCornerHorizontally = function () { this.originCorner = this.originCorner ^ C.CornerBit.RIGHT }, m.prototype.setAnchorMargin = function (t) { this.anchorMargin.top = t.top || 0, this.anchorMargin.right = t.right || 0, this.anchorMargin.bottom = t.bottom || 0, this.anchorMargin.left = t.left || 0 }, m.prototype.setIsHoisted = function (t) { this.isHoistedElement = t }, m.prototype.setFixedPosition = function (t) { this.isFixedPosition = t }, m.prototype.setAbsolutePosition = function (t, e) { this.position.x = this.isFinite(t) ? t : 0, this.position.y = this.isFinite(e) ? e : 0 }, m.prototype.setQuickOpen = function (t) { this.isQuickOpen = t }, m.prototype.isOpen = function () { return this.isSurfaceOpen }, m.prototype.open = function () { var t = this; this.isSurfaceOpen || (this.adapter.saveFocus(), this.isQuickOpen ? (this.isSurfaceOpen = !0, this.adapter.addClass(m.cssClasses.OPEN), this.dimensions = this.adapter.getInnerDimensions(), this.autoposition(), this.adapter.notifyOpen()) : (this.adapter.addClass(m.cssClasses.ANIMATING_OPEN), this.animationRequestId = requestAnimationFrame(function () { t.adapter.addClass(m.cssClasses.OPEN), t.dimensions = t.adapter.getInnerDimensions(), t.autoposition(), t.openAnimationEndTimerId = setTimeout(function () { t.openAnimationEndTimerId = 0, t.adapter.removeClass(m.cssClasses.ANIMATING_OPEN), t.adapter.notifyOpen() }, C.numbers.TRANSITION_OPEN_DURATION) }), this.isSurfaceOpen = !0)) }, m.prototype.close = function (t) { var e = this; if (void 0 === t && (t = !1), this.isSurfaceOpen) { if (this.adapter.notifyClosing(), this.isQuickOpen) return this.isSurfaceOpen = !1, t || this.maybeRestoreFocus(), this.adapter.removeClass(m.cssClasses.OPEN), this.adapter.removeClass(m.cssClasses.IS_OPEN_BELOW), void this.adapter.notifyClose(); this.adapter.addClass(m.cssClasses.ANIMATING_CLOSED), requestAnimationFrame(function () { e.adapter.removeClass(m.cssClasses.OPEN), e.adapter.removeClass(m.cssClasses.IS_OPEN_BELOW), e.closeAnimationEndTimerId = setTimeout(function () { e.closeAnimationEndTimerId = 0, e.adapter.removeClass(m.cssClasses.ANIMATING_CLOSED), e.adapter.notifyClose() }, C.numbers.TRANSITION_CLOSE_DURATION) }), this.isSurfaceOpen = !1, t || this.maybeRestoreFocus() } }, m.prototype.handleBodyClick = function (t) { var e = t.target; this.adapter.isElementInContainer(e) || this.close() }, m.prototype.handleKeydown = function (t) { var e = t.keyCode; "Escape" !== t.key && 27 !== e || this.close() }, m.prototype.autoposition = function () { var t; this.measurements = this.getAutoLayoutmeasurements(); var e = this.getoriginCorner(), n = this.getMenuSurfaceMaxHeight(e), i = this.hasBit(e, C.CornerBit.BOTTOM) ? "bottom" : "top", r = this.hasBit(e, C.CornerBit.RIGHT) ? "right" : "left", o = this.getHorizontalOriginOffset(e), s = this.getVerticalOriginOffset(e), a = this.measurements, c = a.anchorSize, u = a.surfaceSize, l = ((t = {})[r] = o, t[i] = s, t); c.width / u.width > C.numbers.ANCHOR_TO_MENU_SURFACE_WIDTH_RATIO && (r = "center"), (this.isHoistedElement || this.isFixedPosition) && this.adjustPositionForHoistedElement(l), this.adapter.setTransformOrigin(r + " " + i), this.adapter.setPosition(l), this.adapter.setMaxHeight(n ? n + "px" : ""), this.hasBit(e, C.CornerBit.BOTTOM) || this.adapter.addClass(m.cssClasses.IS_OPEN_BELOW) }, m.prototype.getAutoLayoutmeasurements = function () { var t = this.adapter.getAnchorDimensions(), e = this.adapter.getBodyDimensions(), n = this.adapter.getWindowDimensions(), i = this.adapter.getWindowScroll(); return { anchorSize: t = t || { top: this.position.y, right: this.position.x, bottom: this.position.y, left: this.position.x, width: 0, height: 0 }, bodySize: e, surfaceSize: this.dimensions, viewportDistance: { top: t.top, right: n.width - t.right, bottom: n.height - t.bottom, left: t.left }, viewportSize: n, windowScroll: i } }, m.prototype.getoriginCorner = function () { var t, e, n = this.originCorner, i = this.measurements, r = i.viewportDistance, o = i.anchorSize, s = i.surfaceSize, a = m.numbers.MARGIN_TO_EDGE; !(0 < (e = this.hasBit(this.anchorCorner, C.CornerBit.BOTTOM) ? (t = r.top - a + this.anchorMargin.bottom, r.bottom - a - this.anchorMargin.bottom) : (t = r.top - a + this.anchorMargin.top, r.bottom - a + o.height - this.anchorMargin.top)) - s.height) && e < t && (n = this.setBit(n, C.CornerBit.BOTTOM)); var c, u, l = this.adapter.isRtl(), d = this.hasBit(this.anchorCorner, C.CornerBit.FLIP_RTL), p = this.hasBit(this.anchorCorner, C.CornerBit.RIGHT) || this.hasBit(n, C.CornerBit.RIGHT), h = !1; u = (h = l && d ? !p : p) ? (c = r.left + o.width + this.anchorMargin.right, r.right - this.anchorMargin.right) : (c = r.left + this.anchorMargin.left, r.right + o.width - this.anchorMargin.left); var f = 0 < c - s.width, _ = 0 < u - s.width, y = this.hasBit(n, C.CornerBit.FLIP_RTL) && this.hasBit(n, C.CornerBit.RIGHT); return _ && y && l || !f && y ? n = this.unsetBit(n, C.CornerBit.RIGHT) : (f && h && l || f && !h && p || !_ && u <= c) && (n = this.setBit(n, C.CornerBit.RIGHT)), n }, m.prototype.getMenuSurfaceMaxHeight = function (t) { var e = this.measurements.viewportDistance, n = 0, i = this.hasBit(t, C.CornerBit.BOTTOM), r = this.hasBit(this.anchorCorner, C.CornerBit.BOTTOM), o = m.numbers.MARGIN_TO_EDGE; return i ? (n = e.top + this.anchorMargin.top - o, r || (n += this.measurements.anchorSize.height)) : (n = e.bottom - this.anchorMargin.bottom + this.measurements.anchorSize.height - o, r && (n -= this.measurements.anchorSize.height)), n }, m.prototype.getHorizontalOriginOffset = function (t) { var e = this.measurements.anchorSize, n = this.hasBit(t, C.CornerBit.RIGHT), i = this.hasBit(this.anchorCorner, C.CornerBit.RIGHT); if (n) { var r = i ? e.width - this.anchorMargin.left : this.anchorMargin.right; return this.isHoistedElement || this.isFixedPosition ? r - (this.measurements.viewportSize.width - this.measurements.bodySize.width) : r } return i ? e.width - this.anchorMargin.right : this.anchorMargin.left }, m.prototype.getVerticalOriginOffset = function (t) { var e = this.measurements.anchorSize, n = this.hasBit(t, C.CornerBit.BOTTOM), i = this.hasBit(this.anchorCorner, C.CornerBit.BOTTOM); return n ? i ? e.height - this.anchorMargin.top : -this.anchorMargin.bottom : i ? e.height + this.anchorMargin.bottom : this.anchorMargin.top }, m.prototype.adjustPositionForHoistedElement = function (t) { var e, n, i = this.measurements, r = i.windowScroll, o = i.viewportDistance, s = Object.keys(t); try { for (var a = d(s), c = a.next(); !c.done; c = a.next()) { var u = c.value, l = t[u] || 0; l += o[u], this.isFixedPosition || ("top" === u ? l += r.y : "bottom" === u ? l -= r.y : "left" === u ? l += r.x : l -= r.x), t[u] = l } } catch (t) { e = { error: t } } finally { try { c && !c.done && (n = a.return) && n.call(a) } finally { if (e) throw e.error } } }, m.prototype.maybeRestoreFocus = function () { var t = this.adapter.isFocused(), e = document.activeElement && this.adapter.isElementInContainer(document.activeElement); (t || e) && this.adapter.restoreFocus() }, m.prototype.hasBit = function (t, e) { return Boolean(t & e) }, m.prototype.setBit = function (t, e) { return t | e }, m.prototype.unsetBit = function (t, e) { return t ^ e }, m.prototype.isFinite = function (t) { return "number" == typeof t && isFinite(t) }, m); function m(t) { var e = s.call(this, o(o({}, m.defaultAdapter), t)) || this; return e.isSurfaceOpen = !1, e.isQuickOpen = !1, e.isHoistedElement = !1, e.isFixedPosition = !1, e.openAnimationEndTimerId = 0, e.closeAnimationEndTimerId = 0, e.animationRequestId = 0, e.anchorCorner = C.Corner.TOP_START, e.originCorner = C.Corner.TOP_START, e.anchorMargin = { top: 0, right: 0, bottom: 0, left: 0 }, e.position = { x: 0, y: 0 }, e } e.MDCMenuSurfaceFoundation = c, e.default = c }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }); e.cssClasses = { MENU_SELECTED_LIST_ITEM: "mdc-menu-item--selected", MENU_SELECTION_GROUP: "mdc-menu__selection-group", ROOT: "mdc-menu" }; e.strings = { ARIA_CHECKED_ATTR: "aria-checked", ARIA_DISABLED_ATTR: "aria-disabled", CHECKBOX_SELECTOR: 'input[type="checkbox"]', LIST_SELECTOR: ".mdc-list", SELECTED_EVENT: "MDCMenu:selected" }; var i, r; e.numbers = { FOCUS_ROOT_INDEX: -1 }, (r = i = i || {})[r.NONE = 0] = "NONE", r[r.LIST_ROOT = 1] = "LIST_ROOT", r[r.FIRST_ITEM = 2] = "FIRST_ITEM", r[r.LAST_ITEM = 3] = "LAST_ITEM", e.DefaultFocusState = i }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }); e.cssClasses = { CLOSING: "mdc-snackbar--closing", OPEN: "mdc-snackbar--open", OPENING: "mdc-snackbar--opening" }; e.strings = { ACTION_SELECTOR: ".mdc-snackbar__action", ARIA_LIVE_LABEL_TEXT_ATTR: "data-mdc-snackbar-label-text", CLOSED_EVENT: "MDCSnackbar:closed", CLOSING_EVENT: "MDCSnackbar:closing", DISMISS_SELECTOR: ".mdc-snackbar__dismiss", LABEL_SELECTOR: ".mdc-snackbar__label", OPENED_EVENT: "MDCSnackbar:opened", OPENING_EVENT: "MDCSnackbar:opening", REASON_ACTION: "action", REASON_DISMISS: "dismiss", SURFACE_SELECTOR: ".mdc-snackbar__surface" }; e.numbers = { DEFAULT_AUTO_DISMISS_TIMEOUT_MS: 5e3, INDETERMINATE: -1, MAX_AUTO_DISMISS_TIMEOUT_MS: 1e4, MIN_AUTO_DISMISS_TIMEOUT_MS: 4e3, SNACKBAR_ANIMATION_CLOSE_TIME_MS: 75, SNACKBAR_ANIMATION_OPEN_TIME_MS: 150, ARIA_LIVE_DELAY_MS: 1e3 } }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a = n(0), c = n(102), u = (s = a.MDCFoundation, r(l, s), Object.defineProperty(l, "cssClasses", { get: function () { return c.cssClasses }, enumerable: !0, configurable: !0 }), Object.defineProperty(l, "strings", { get: function () { return c.strings }, enumerable: !0, configurable: !0 }), Object.defineProperty(l, "defaultAdapter", { get: function () { return { addClass: function () { }, removeClass: function () { }, computeContentClientRect: function () { return { top: 0, right: 0, bottom: 0, left: 0, width: 0, height: 0 } }, setContentStyleProperty: function () { } } }, enumerable: !0, configurable: !0 }), l.prototype.computeContentClientRect = function () { return this.adapter.computeContentClientRect() }, l); function l(t) { return s.call(this, o(o({}, l.defaultAdapter), t)) || this } e.MDCTabIndicatorFoundation = u, e.default = u }, function (t, e, n) { "use strict"; var i; Object.defineProperty(e, "__esModule", { value: !0 }), e.cssClasses = { CLOSING: "mdc-banner--closing", OPEN: "mdc-banner--open", OPENING: "mdc-banner--opening" }, e.numbers = { BANNER_ANIMATION_CLOSE_TIME_MS: 250, BANNER_ANIMATION_OPEN_TIME_MS: 300 }, e.events = { CLOSED: "MDCBanner:closed", CLOSING: "MDCBanner:closing", OPENED: "MDCBanner:opened", OPENING: "MDCBanner:opening" }, e.selectors = { CONTENT: ".mdc-banner__content", PRIMARY_ACTION: ".mdc-banner__primary-action", SECONDARY_ACTION: ".mdc-banner__secondary-action", TEXT: ".mdc-banner__text" }, (i = e.CloseReason || (e.CloseReason = {}))[i.PRIMARY = 0] = "PRIMARY", i[i.SECONDARY = 1] = "SECONDARY", i[i.UNSPECIFIED = 2] = "UNSPECIFIED" }, function (t, e, n) { "use strict"; var s; Object.defineProperty(e, "__esModule", { value: !0 }), e.supportsCssVariables = function (t, e) { void 0 === e && (e = !1); var n, i = t.CSS; if ("boolean" == typeof s && !e) return s; if (!(i && "function" == typeof i.supports)) return !1; var r = i.supports("--css-vars", "yes"), o = i.supports("(--css-vars: yes)") && i.supports("color", "#00000000"); return n = r || o, e || (s = n), n }, e.getNormalizedEventCoords = function (t, e, n) { if (!t) return { x: 0, y: 0 }; var i, r, o = e.x, s = e.y, a = o + n.left, c = s + n.top; if ("touchstart" === t.type) { var u = t; i = u.changedTouches[0].pageX - a, r = u.changedTouches[0].pageY - c } else { var l = t; i = l.pageX - a, r = l.pageY - c } return { x: i, y: r } } }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }), e.cssClasses = { ANIM_CHECKED_INDETERMINATE: "mdc-checkbox--anim-checked-indeterminate", ANIM_CHECKED_UNCHECKED: "mdc-checkbox--anim-checked-unchecked", ANIM_INDETERMINATE_CHECKED: "mdc-checkbox--anim-indeterminate-checked", ANIM_INDETERMINATE_UNCHECKED: "mdc-checkbox--anim-indeterminate-unchecked", ANIM_UNCHECKED_CHECKED: "mdc-checkbox--anim-unchecked-checked", ANIM_UNCHECKED_INDETERMINATE: "mdc-checkbox--anim-unchecked-indeterminate", BACKGROUND: "mdc-checkbox__background", CHECKED: "mdc-checkbox--checked", CHECKMARK: "mdc-checkbox__checkmark", CHECKMARK_PATH: "mdc-checkbox__checkmark-path", DISABLED: "mdc-checkbox--disabled", INDETERMINATE: "mdc-checkbox--indeterminate", MIXEDMARK: "mdc-checkbox__mixedmark", NATIVE_CONTROL: "mdc-checkbox__native-control", ROOT: "mdc-checkbox", SELECTED: "mdc-checkbox--selected", UPGRADED: "mdc-checkbox--upgraded" }, e.strings = { ARIA_CHECKED_ATTR: "aria-checked", ARIA_CHECKED_INDETERMINATE_VALUE: "mixed", DATA_INDETERMINATE_ATTR: "data-indeterminate", NATIVE_CONTROL_SELECTOR: ".mdc-checkbox__native-control", TRANSITION_STATE_CHECKED: "checked", TRANSITION_STATE_INDETERMINATE: "indeterminate", TRANSITION_STATE_INIT: "init", TRANSITION_STATE_UNCHECKED: "unchecked" }, e.numbers = { ANIM_END_LATCH_MS: 250 } }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a, c = n(0), u = n(12), l = { bottom: 0, height: 0, left: 0, right: 0, top: 0, width: 0 }; (a = s = s || {})[a.SHOULD_FOCUS = 0] = "SHOULD_FOCUS", a[a.SHOULD_NOT_FOCUS = 1] = "SHOULD_NOT_FOCUS"; var d, p = (d = c.MDCFoundation, r(h, d), Object.defineProperty(h, "strings", { get: function () { return u.strings }, enumerable: !0, configurable: !0 }), Object.defineProperty(h, "cssClasses", { get: function () { return u.cssClasses }, enumerable: !0, configurable: !0 }), Object.defineProperty(h, "defaultAdapter", { get: function () { return { addClass: function () { }, addClassToLeadingIcon: function () { }, eventTargetHasClass: function () { return !1 }, focusPrimaryAction: function () { }, focusTrailingAction: function () { }, getAttribute: function () { return null }, getCheckmarkBoundingClientRect: function () { return l }, getComputedStyleValue: function () { return "" }, getRootBoundingClientRect: function () { return l }, hasClass: function () { return !1 }, hasLeadingIcon: function () { return !1 }, isRTL: function () { return !1 }, isTrailingActionNavigable: function () { return !1 }, notifyEditFinish: function () { }, notifyEditStart: function () { }, notifyInteraction: function () { }, notifyNavigation: function () { }, notifyRemoval: function () { }, notifySelection: function () { }, notifyTrailingIconInteraction: function () { }, removeClass: function () { }, removeClassFromLeadingIcon: function () { }, removeTrailingActionFocus: function () { }, setPrimaryActionAttr: function () { }, setStyleProperty: function () { } } }, enumerable: !0, configurable: !0 }), h.prototype.isSelected = function () { return this.adapter.hasClass(u.cssClasses.SELECTED) }, h.prototype.isEditable = function () { return this.adapter.hasClass(u.cssClasses.EDITABLE) }, h.prototype.isEditing = function () { return this.adapter.hasClass(u.cssClasses.EDITING) }, h.prototype.setSelected = function (t) { this.setSelected_(t), this.notifySelection_(t) }, h.prototype.setSelectedFromChipSet = function (t, e) { this.setSelected_(t), e && this.notifyIgnoredSelection_(t) }, h.prototype.getShouldRemoveOnTrailingIconClick = function () { return this.shouldRemoveOnTrailingIconClick_ }, h.prototype.setShouldRemoveOnTrailingIconClick = function (t) { this.shouldRemoveOnTrailingIconClick_ = t }, h.prototype.setShouldFocusPrimaryActionOnClick = function (t) { this.shouldFocusPrimaryActionOnClick_ = t }, h.prototype.getDimensions = function () { function t() { return e.adapter.getRootBoundingClientRect() } var e = this; if (!this.adapter.hasLeadingIcon()) { var n = e.adapter.getCheckmarkBoundingClientRect(); if (n) { var i = t(); return { bottom: i.bottom, height: i.height, left: i.left, right: i.right, top: i.top, width: i.width + n.height } } } return t() }, h.prototype.beginExit = function () { this.adapter.addClass(u.cssClasses.CHIP_EXIT) }, h.prototype.handleClick = function () { this.adapter.notifyInteraction(), this.setPrimaryActionFocusable_(this.getFocusBehavior_()) }, h.prototype.handleDoubleClick = function () { this.isEditable() && this.startEditing() }, h.prototype.handleTransitionEnd = function (t) { var e = this, n = this.adapter.eventTargetHasClass(t.target, u.cssClasses.CHIP_EXIT), i = "width" === t.propertyName, r = "opacity" === t.propertyName; if (n && r) { var o = this.adapter.getComputedStyleValue("width"); requestAnimationFrame(function () { e.adapter.setStyleProperty("width", o), e.adapter.setStyleProperty("padding", "0"), e.adapter.setStyleProperty("margin", "0"), requestAnimationFrame(function () { e.adapter.setStyleProperty("width", "0") }) }) } else { if (n && i) { this.removeFocus(); var s = this.adapter.getAttribute(u.strings.REMOVED_ANNOUNCEMENT_ATTRIBUTE); this.adapter.notifyRemoval(s) } if (r) { var a = this.adapter.eventTargetHasClass(t.target, u.cssClasses.LEADING_ICON) && this.adapter.hasClass(u.cssClasses.SELECTED), c = this.adapter.eventTargetHasClass(t.target, u.cssClasses.CHECKMARK) && !this.adapter.hasClass(u.cssClasses.SELECTED); a ? this.adapter.addClassToLeadingIcon(u.cssClasses.HIDDEN_LEADING_ICON) : c && this.adapter.removeClassFromLeadingIcon(u.cssClasses.HIDDEN_LEADING_ICON) } } }, h.prototype.handleFocusIn = function (t) { this.eventFromPrimaryAction_(t) && this.adapter.addClass(u.cssClasses.PRIMARY_ACTION_FOCUSED) }, h.prototype.handleFocusOut = function (t) { this.eventFromPrimaryAction_(t) && (this.isEditing() && this.finishEditing(), this.adapter.removeClass(u.cssClasses.PRIMARY_ACTION_FOCUSED)) }, h.prototype.handleTrailingActionInteraction = function () { this.adapter.notifyTrailingIconInteraction(), this.removeChip_() }, h.prototype.handleKeydown = function (t) { if (!this.isEditing()) return this.isEditable() && this.shouldStartEditing(t) && (t.preventDefault(), this.startEditing()), this.shouldNotifyInteraction_(t) ? (this.adapter.notifyInteraction(), void this.setPrimaryActionFocusable_(this.getFocusBehavior_())) : this.isDeleteAction_(t) ? (t.preventDefault(), void this.removeChip_()) : void (u.navigationKeys.has(t.key) && (t.preventDefault(), this.focusNextAction_(t.key, u.EventSource.PRIMARY))); this.shouldFinishEditing(t) && (t.preventDefault(), this.finishEditing()) }, h.prototype.handleTrailingActionNavigation = function (t) { return this.focusNextAction_(t.detail.key, u.EventSource.TRAILING) }, h.prototype.removeFocus = function () { this.adapter.setPrimaryActionAttr(u.strings.TAB_INDEX, "-1"), this.adapter.removeTrailingActionFocus() }, h.prototype.focusPrimaryAction = function () { this.setPrimaryActionFocusable_(s.SHOULD_FOCUS) }, h.prototype.focusTrailingAction = function () { if (this.adapter.isTrailingActionNavigable()) return this.adapter.setPrimaryActionAttr(u.strings.TAB_INDEX, "-1"), void this.adapter.focusTrailingAction(); this.focusPrimaryAction() }, h.prototype.setPrimaryActionFocusable_ = function (t) { this.adapter.setPrimaryActionAttr(u.strings.TAB_INDEX, "0"), t === s.SHOULD_FOCUS && this.adapter.focusPrimaryAction(), this.adapter.removeTrailingActionFocus() }, h.prototype.getFocusBehavior_ = function () { return this.shouldFocusPrimaryActionOnClick_ ? s.SHOULD_FOCUS : s.SHOULD_NOT_FOCUS }, h.prototype.focusNextAction_ = function (t, e) { var n = this.adapter.isTrailingActionNavigable(), i = this.getDirection_(t); return u.jumpChipKeys.has(t) || !n ? this.adapter.notifyNavigation(t, e) : e === u.EventSource.PRIMARY && i === u.Direction.RIGHT ? this.focusTrailingAction() : e === u.EventSource.TRAILING && i === u.Direction.LEFT ? this.focusPrimaryAction() : void this.adapter.notifyNavigation(t, u.EventSource.NONE) }, h.prototype.getDirection_ = function (t) { var e = this.adapter.isRTL(), n = t === u.strings.ARROW_LEFT_KEY || t === u.strings.IE_ARROW_LEFT_KEY, i = t === u.strings.ARROW_RIGHT_KEY || t === u.strings.IE_ARROW_RIGHT_KEY; return !e && n || e && i ? u.Direction.LEFT : u.Direction.RIGHT }, h.prototype.removeChip_ = function () { this.shouldRemoveOnTrailingIconClick_ && this.beginExit() }, h.prototype.shouldStartEditing = function (t) { return this.eventFromPrimaryAction_(t) && t.key === u.strings.ENTER_KEY }, h.prototype.shouldFinishEditing = function (t) { return t.key === u.strings.ENTER_KEY }, h.prototype.shouldNotifyInteraction_ = function (t) { return t.key === u.strings.ENTER_KEY || t.key === u.strings.SPACEBAR_KEY }, h.prototype.isDeleteAction_ = function (t) { return this.adapter.hasClass(u.cssClasses.DELETABLE) && (t.key === u.strings.BACKSPACE_KEY || t.key === u.strings.DELETE_KEY || t.key === u.strings.IE_DELETE_KEY) }, h.prototype.setSelected_ = function (t) { t ? (this.adapter.addClass(u.cssClasses.SELECTED), this.adapter.setPrimaryActionAttr(u.strings.ARIA_CHECKED, "true")) : (this.adapter.removeClass(u.cssClasses.SELECTED), this.adapter.setPrimaryActionAttr(u.strings.ARIA_CHECKED, "false")) }, h.prototype.notifySelection_ = function (t) { this.adapter.notifySelection(t, !1) }, h.prototype.notifyIgnoredSelection_ = function (t) { this.adapter.notifySelection(t, !0) }, h.prototype.eventFromPrimaryAction_ = function (t) { return this.adapter.eventTargetHasClass(t.target, u.cssClasses.PRIMARY_ACTION) }, h.prototype.startEditing = function () { this.adapter.addClass(u.cssClasses.EDITING), this.adapter.notifyEditStart() }, h.prototype.finishEditing = function () { this.adapter.removeClass(u.cssClasses.EDITING), this.adapter.notifyEditFinish() }, h); function h(t) { var e = d.call(this, o(o({}, h.defaultAdapter), t)) || this; return e.shouldRemoveOnTrailingIconClick_ = !0, e.shouldFocusPrimaryActionOnClick_ = !0, e } e.MDCChipFoundation = p, e.default = p }, function (t, e, n) { "use strict"; var i; Object.defineProperty(e, "__esModule", { value: !0 }), e.cssClasses = { CELL: "mdc-data-table__cell", CELL_NUMERIC: "mdc-data-table__cell--numeric", CONTENT: "mdc-data-table__content", HEADER_CELL: "mdc-data-table__header-cell", HEADER_CELL_LABEL: "mdc-data-table__header-cell-label", HEADER_CELL_SORTED: "mdc-data-table__header-cell--sorted", HEADER_CELL_SORTED_DESCENDING: "mdc-data-table__header-cell--sorted-descending", HEADER_CELL_WITH_SORT: "mdc-data-table__header-cell--with-sort", HEADER_CELL_WRAPPER: "mdc-data-table__header-cell-wrapper", HEADER_ROW: "mdc-data-table__header-row", HEADER_ROW_CHECKBOX: "mdc-data-table__header-row-checkbox", IN_PROGRESS: "mdc-data-table--in-progress", LINEAR_PROGRESS: "mdc-data-table__linear-progress", PAGINATION_ROWS_PER_PAGE_LABEL: "mdc-data-table__pagination-rows-per-page-label", PAGINATION_ROWS_PER_PAGE_SELECT: "mdc-data-table__pagination-rows-per-page-select", PROGRESS_INDICATOR: "mdc-data-table__progress-indicator", ROOT: "mdc-data-table", ROW: "mdc-data-table__row", ROW_CHECKBOX: "mdc-data-table__row-checkbox", ROW_SELECTED: "mdc-data-table__row--selected", SORT_ICON_BUTTON: "mdc-data-table__sort-icon-button", SORT_STATUS_LABEL: "mdc-data-table__sort-status-label", TABLE_CONTAINER: "mdc-data-table__table-container" }, e.attributes = { ARIA_SELECTED: "aria-selected", ARIA_SORT: "aria-sort" }, e.dataAttributes = { COLUMN_ID: "data-column-id", ROW_ID: "data-row-id" }, e.selectors = { CONTENT: "." + e.cssClasses.CONTENT, HEADER_CELL: "." + e.cssClasses.HEADER_CELL, HEADER_CELL_WITH_SORT: "." + e.cssClasses.HEADER_CELL_WITH_SORT, HEADER_ROW: "." + e.cssClasses.HEADER_ROW, HEADER_ROW_CHECKBOX: "." + e.cssClasses.HEADER_ROW_CHECKBOX, PROGRESS_INDICATOR: "." + e.cssClasses.PROGRESS_INDICATOR, ROW: "." + e.cssClasses.ROW, ROW_CHECKBOX: "." + e.cssClasses.ROW_CHECKBOX, ROW_SELECTED: "." + e.cssClasses.ROW_SELECTED, SORT_ICON_BUTTON: "." + e.cssClasses.SORT_ICON_BUTTON, SORT_STATUS_LABEL: "." + e.cssClasses.SORT_STATUS_LABEL }, e.messages = { SORTED_IN_DESCENDING: "Sorted in descending order", SORTED_IN_ASCENDING: "Sorted in ascending order" }, e.strings = { ARIA_SELECTED: e.attributes.ARIA_SELECTED, ARIA_SORT: e.attributes.ARIA_SORT, DATA_ROW_ID_ATTR: e.dataAttributes.ROW_ID, HEADER_ROW_CHECKBOX_SELECTOR: e.selectors.HEADER_ROW_CHECKBOX, ROW_CHECKBOX_SELECTOR: e.selectors.ROW_CHECKBOX, ROW_SELECTED_SELECTOR: e.selectors.ROW_SELECTED, ROW_SELECTOR: e.selectors.ROW }, (i = e.SortValue || (e.SortValue = {})).ASCENDING = "ascending", i.DESCENDING = "descending", i.NONE = "none", i.OTHER = "other", e.events = { ROW_SELECTION_CHANGED: "MDCDataTable:rowSelectionChanged", SELECTED_ALL: "MDCDataTable:selectedAll", UNSELECTED_ALL: "MDCDataTable:unselectedAll", SORTED: "MDCDataTable:sorted" } }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }); var o = "mdc-dom-focus-sentinel", i = (r.prototype.trapFocus = function () { var t = this.getFocusableElements(this.root); if (0 === t.length) throw new Error("FocusTrap: Element must have at least one focusable child."); this.elFocusedBeforeTrapFocus = document.activeElement instanceof HTMLElement ? document.activeElement : null, this.wrapTabFocus(this.root, t), this.options.skipInitialFocus || this.focusInitialElement(t, this.options.initialFocusEl) }, r.prototype.releaseFocus = function () { [].slice.call(this.root.querySelectorAll("." + o)).forEach(function (t) { t.parentElement.removeChild(t) }), this.elFocusedBeforeTrapFocus && this.elFocusedBeforeTrapFocus.focus() }, r.prototype.wrapTabFocus = function (t, e) { var n = this.createSentinel(), i = this.createSentinel(); n.addEventListener("focus", function () { 0 < e.length && e[e.length - 1].focus() }), i.addEventListener("focus", function () { 0 < e.length && e[0].focus() }), t.insertBefore(n, t.children[0]), t.appendChild(i) }, r.prototype.focusInitialElement = function (t, e) { var n = 0; e && (n = Math.max(t.indexOf(e), 0)), t[n].focus() }, r.prototype.getFocusableElements = function (t) { return [].slice.call(t.querySelectorAll("[autofocus], [tabindex], a, input, textarea, select, button")).filter(function (t) { var e = "true" === t.getAttribute("aria-disabled") || null != t.getAttribute("disabled") || null != t.getAttribute("hidden") || "true" === t.getAttribute("aria-hidden"), n = 0 <= t.tabIndex && 0 < t.getBoundingClientRect().width && !t.classList.contains(o) && !e, i = !1; if (n) { var r = getComputedStyle(t); i = "none" === r.display || "hidden" === r.visibility } return n && !i }) }, r.prototype.createSentinel = function () { var t = document.createElement("div"); return t.setAttribute("tabindex", "0"), t.setAttribute("aria-hidden", "true"), t.classList.add(o), t }, r); function r(t, e) { void 0 === e && (e = {}), this.root = t, this.options = e, this.elFocusedBeforeTrapFocus = null } e.FocusTrap = i }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }); Object.defineProperty(e, "__esModule", { value: !0 }); var o, s = n(1), a = n(2), c = n(7), u = n(13), l = (o = s.MDCComponent, r(d, o), Object.defineProperty(d.prototype, "vertical", { set: function (t) { this.foundation.setVerticalOrientation(t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(d.prototype, "listElements", { get: function () { return Array.from(this.root.querySelectorAll("." + this.classNameMap[c.cssClasses.LIST_ITEM_CLASS])) }, enumerable: !0, configurable: !0 }), Object.defineProperty(d.prototype, "wrapFocus", { set: function (t) { this.foundation.setWrapFocus(t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(d.prototype, "typeaheadInProgress", { get: function () { return this.foundation.isTypeaheadInProgress() }, enumerable: !0, configurable: !0 }), Object.defineProperty(d.prototype, "hasTypeahead", { set: function (t) { this.foundation.setHasTypeahead(t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(d.prototype, "singleSelection", { set: function (t) { this.foundation.setSingleSelection(t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(d.prototype, "selectedIndex", { get: function () { return this.foundation.getSelectedIndex() }, set: function (t) { this.foundation.setSelectedIndex(t) }, enumerable: !0, configurable: !0 }), d.attachTo = function (t) { return new d(t) }, d.prototype.initialSyncWithDOM = function () { this.isEvolutionEnabled = c.evolutionAttribute in this.root.dataset, this.classNameMap = this.isEvolutionEnabled ? c.evolutionClassNameMap : Object.values(c.cssClasses).reduce(function (t, e) { return t[e] = e, t }, {}), this.handleClick = this.handleClickEvent.bind(this), this.handleKeydown = this.handleKeydownEvent.bind(this), this.focusInEventListener = this.handleFocusInEvent.bind(this), this.focusOutEventListener = this.handleFocusOutEvent.bind(this), this.listen("keydown", this.handleKeydown), this.listen("click", this.handleClick), this.listen("focusin", this.focusInEventListener), this.listen("focusout", this.focusOutEventListener), this.layout(), this.initializeListType(), this.ensureFocusable() }, d.prototype.destroy = function () { this.unlisten("keydown", this.handleKeydown), this.unlisten("click", this.handleClick), this.unlisten("focusin", this.focusInEventListener), this.unlisten("focusout", this.focusOutEventListener) }, d.prototype.layout = function () { var t = this.root.getAttribute(c.strings.ARIA_ORIENTATION); this.vertical = t !== c.strings.ARIA_ORIENTATION_HORIZONTAL; var e = "." + this.classNameMap[c.cssClasses.LIST_ITEM_CLASS] + ":not([tabindex])", n = "." + this.classNameMap[c.cssClasses.LIST_ITEM_CLASS] + " " + c.strings.FOCUSABLE_CHILD_ELEMENTS; Array.prototype.forEach.call(this.root.querySelectorAll(e), function (t) { t.setAttribute("tabindex", "-1") }), Array.prototype.forEach.call(this.root.querySelectorAll(n), function (t) { t.setAttribute("tabindex", "-1") }), this.isEvolutionEnabled && this.foundation.setUseSelectedAttribute(!0), this.foundation.layout() }, d.prototype.getPrimaryText = function (t) { var e, n = t.querySelector("." + this.classNameMap[c.cssClasses.LIST_ITEM_PRIMARY_TEXT_CLASS]); if (this.isEvolutionEnabled || n) return null !== (e = null == n ? void 0 : n.textContent) && void 0 !== e ? e : ""; var i = t.querySelector("." + this.classNameMap[c.cssClasses.LIST_ITEM_TEXT_CLASS]); return i && i.textContent || "" }, d.prototype.initializeListType = function () { var e = this; if (this.isInteractive = a.matches(this.root, c.strings.ARIA_INTERACTIVE_ROLES_SELECTOR), this.isEvolutionEnabled && this.isInteractive) { var t = Array.from(this.root.querySelectorAll(c.strings.SELECTED_ITEM_SELECTOR), function (t) { return e.listElements.indexOf(t) }); a.matches(this.root, c.strings.ARIA_MULTI_SELECTABLE_SELECTOR) ? this.selectedIndex = t : 0 < t.length && (this.selectedIndex = t[0]) } else { var n = this.root.querySelectorAll(c.strings.ARIA_ROLE_CHECKBOX_SELECTOR), i = this.root.querySelector(c.strings.ARIA_CHECKED_RADIO_SELECTOR); if (n.length) { var r = this.root.querySelectorAll(c.strings.ARIA_CHECKED_CHECKBOX_SELECTOR); this.selectedIndex = Array.from(r, function (t) { return e.listElements.indexOf(t) }) } else i && (this.selectedIndex = this.listElements.indexOf(i)) } }, d.prototype.setEnabled = function (t, e) { this.foundation.setEnabled(t, e) }, d.prototype.typeaheadMatchItem = function (t, e) { return this.foundation.typeaheadMatchItem(t, e, !0) }, d.prototype.getDefaultFoundation = function () { var r = this, t = { addClassForElementIndex: function (t, e) { var n = r.listElements[t]; n && n.classList.add(r.classNameMap[e]) }, focusItemAtIndex: function (t) { var e = r.listElements[t]; e && e.focus() }, getAttributeForElementIndex: function (t, e) { return r.listElements[t].getAttribute(e) }, getFocusedElementIndex: function () { return r.listElements.indexOf(document.activeElement) }, getListItemCount: function () { return r.listElements.length }, getPrimaryTextAtIndex: function (t) { return r.getPrimaryText(r.listElements[t]) }, hasCheckboxAtIndex: function (t) { return !!r.listElements[t].querySelector(c.strings.CHECKBOX_SELECTOR) }, hasRadioAtIndex: function (t) { return !!r.listElements[t].querySelector(c.strings.RADIO_SELECTOR) }, isCheckboxCheckedAtIndex: function (t) { return r.listElements[t].querySelector(c.strings.CHECKBOX_SELECTOR).checked }, isFocusInsideList: function () { return r.root !== document.activeElement && r.root.contains(document.activeElement) }, isRootFocused: function () { return document.activeElement === r.root }, listItemAtIndexHasClass: function (t, e) { return r.listElements[t].classList.contains(r.classNameMap[e]) }, notifyAction: function (t) { r.emit(c.strings.ACTION_EVENT, { index: t }, !0) }, removeClassForElementIndex: function (t, e) { var n = r.listElements[t]; n && n.classList.remove(r.classNameMap[e]) }, setAttributeForElementIndex: function (t, e, n) { var i = r.listElements[t]; i && i.setAttribute(e, n) }, setCheckedCheckboxOrRadioAtIndex: function (t, e) { var n = r.listElements[t].querySelector(c.strings.CHECKBOX_RADIO_SELECTOR); n.checked = e; var i = document.createEvent("Event"); i.initEvent("change", !0, !0), n.dispatchEvent(i) }, setTabIndexForListItemChildren: function (t, e) { var n = r.listElements[t], i = "." + r.classNameMap[c.cssClasses.LIST_ITEM_CLASS] + " " + c.strings.CHILD_ELEMENTS_TO_TOGGLE_TABINDEX; Array.prototype.forEach.call(n.querySelectorAll(i), function (t) { t.setAttribute("tabindex", e) }) } }; return new u.MDCListFoundation(t) }, d.prototype.ensureFocusable = function () { if (this.isEvolutionEnabled && this.isInteractive && !this.root.querySelector("." + this.classNameMap[c.cssClasses.LIST_ITEM_CLASS] + '[tabindex="0"]')) { var t = this.initialFocusIndex(); -1 !== t && (this.listElements[t].tabIndex = 0) } }, d.prototype.initialFocusIndex = function () { if (this.selectedIndex instanceof Array && 0 < this.selectedIndex.length) return this.selectedIndex[0]; if ("number" == typeof this.selectedIndex && this.selectedIndex !== c.numbers.UNSET_INDEX) return this.selectedIndex; var t = this.root.querySelector("." + this.classNameMap[c.cssClasses.LIST_ITEM_CLASS] + ":not(." + this.classNameMap[c.cssClasses.LIST_ITEM_DISABLED_CLASS] + ")"); return null === t ? -1 : this.getListItemIndex(t) }, d.prototype.getListItemIndex = function (t) { var e = a.closest(t, "." + this.classNameMap[c.cssClasses.LIST_ITEM_CLASS] + ", ." + this.classNameMap[c.cssClasses.ROOT]); return e && a.matches(e, "." + this.classNameMap[c.cssClasses.LIST_ITEM_CLASS]) ? this.listElements.indexOf(e) : -1 }, d.prototype.handleFocusInEvent = function (t) { var e = this.getListItemIndex(t.target); this.foundation.handleFocusIn(t, e) }, d.prototype.handleFocusOutEvent = function (t) { var e = this.getListItemIndex(t.target); this.foundation.handleFocusOut(t, e) }, d.prototype.handleKeydownEvent = function (t) { var e = this.getListItemIndex(t.target), n = t.target; this.foundation.handleKeydown(t, n.classList.contains(this.classNameMap[c.cssClasses.LIST_ITEM_CLASS]), e) }, d.prototype.handleClickEvent = function (t) { var e = this.getListItemIndex(t.target), n = t.target, i = !a.matches(n, c.strings.CHECKBOX_RADIO_SELECTOR); this.foundation.handleClick(e, i) }, d); function d() { return null !== o && o.apply(this, arguments) || this } e.MDCList = l }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a = n(0), c = n(64), u = (s = a.MDCFoundation, r(l, s), Object.defineProperty(l, "strings", { get: function () { return c.strings }, enumerable: !0, configurable: !0 }), Object.defineProperty(l, "cssClasses", { get: function () { return c.cssClasses }, enumerable: !0, configurable: !0 }), Object.defineProperty(l, "defaultAdapter", { get: function () { return { addClass: function () { }, removeClass: function () { }, hasClass: function () { return !1 }, elementHasClass: function () { return !1 }, notifyClose: function () { }, notifyOpen: function () { }, saveFocus: function () { }, restoreFocus: function () { }, focusActiveNavigationItem: function () { }, trapFocus: function () { }, releaseFocus: function () { } } }, enumerable: !0, configurable: !0 }), l.prototype.destroy = function () { this.animationFrame_ && cancelAnimationFrame(this.animationFrame_), this.animationTimer_ && clearTimeout(this.animationTimer_) }, l.prototype.open = function () { var t = this; this.isOpen() || this.isOpening() || this.isClosing() || (this.adapter.addClass(c.cssClasses.OPEN), this.adapter.addClass(c.cssClasses.ANIMATE), this.runNextAnimationFrame_(function () { t.adapter.addClass(c.cssClasses.OPENING) }), this.adapter.saveFocus()) }, l.prototype.close = function () { !this.isOpen() || this.isOpening() || this.isClosing() || this.adapter.addClass(c.cssClasses.CLOSING) }, l.prototype.isOpen = function () { return this.adapter.hasClass(c.cssClasses.OPEN) }, l.prototype.isOpening = function () { return this.adapter.hasClass(c.cssClasses.OPENING) || this.adapter.hasClass(c.cssClasses.ANIMATE) }, l.prototype.isClosing = function () { return this.adapter.hasClass(c.cssClasses.CLOSING) }, l.prototype.handleKeydown = function (t) { var e = t.keyCode; "Escape" !== t.key && 27 !== e || this.close() }, l.prototype.handleTransitionEnd = function (t) { var e = c.cssClasses.OPENING, n = c.cssClasses.CLOSING, i = c.cssClasses.OPEN, r = c.cssClasses.ANIMATE, o = c.cssClasses.ROOT; this.isElement_(t.target) && this.adapter.elementHasClass(t.target, o) && (this.isClosing() ? (this.adapter.removeClass(i), this.closed_(), this.adapter.restoreFocus(), this.adapter.notifyClose()) : (this.adapter.focusActiveNavigationItem(), this.opened_(), this.adapter.notifyOpen()), this.adapter.removeClass(r), this.adapter.removeClass(e), this.adapter.removeClass(n)) }, l.prototype.opened_ = function () { }, l.prototype.closed_ = function () { }, l.prototype.runNextAnimationFrame_ = function (t) { var e = this; cancelAnimationFrame(this.animationFrame_), this.animationFrame_ = requestAnimationFrame(function () { e.animationFrame_ = 0, clearTimeout(e.animationTimer_), e.animationTimer_ = setTimeout(t, 0) }) }, l.prototype.isElement_ = function (t) { return Boolean(t.classList) }, l); function l(t) { var e = s.call(this, o(o({}, l.defaultAdapter), t)) || this; return e.animationFrame_ = 0, e.animationTimer_ = 0, e } e.MDCDismissibleDrawerFoundation = u, e.default = u }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }); Object.defineProperty(e, "__esModule", { value: !0 }); var o, s = n(1), a = n(2), c = n(27), u = (o = s.MDCComponent, r(l, o), l.attachTo = function (t) { return new l(t) }, l.prototype.shake = function (t) { this.foundation.shake(t) }, l.prototype.float = function (t) { this.foundation.float(t) }, l.prototype.setRequired = function (t) { this.foundation.setRequired(t) }, l.prototype.getWidth = function () { return this.foundation.getWidth() }, l.prototype.getDefaultFoundation = function () { var n = this, t = { addClass: function (t) { return n.root.classList.add(t) }, removeClass: function (t) { return n.root.classList.remove(t) }, getWidth: function () { return a.estimateScrollWidth(n.root) }, registerInteractionHandler: function (t, e) { return n.listen(t, e) }, deregisterInteractionHandler: function (t, e) { return n.unlisten(t, e) } }; return new c.MDCFloatingLabelFoundation(t) }, l); function l() { return null !== o && o.apply(this, arguments) || this } e.MDCFloatingLabel = u }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a = n(0), c = n(66), u = (s = a.MDCFoundation, r(l, s), Object.defineProperty(l, "cssClasses", { get: function () { return c.cssClasses }, enumerable: !0, configurable: !0 }), Object.defineProperty(l, "defaultAdapter", { get: function () { return { addClass: function () { }, removeClass: function () { }, getWidth: function () { return 0 }, registerInteractionHandler: function () { }, deregisterInteractionHandler: function () { } } }, enumerable: !0, configurable: !0 }), l.prototype.init = function () { this.adapter.registerInteractionHandler("animationend", this.shakeAnimationEndHandler_) }, l.prototype.destroy = function () { this.adapter.deregisterInteractionHandler("animationend", this.shakeAnimationEndHandler_) }, l.prototype.getWidth = function () { return this.adapter.getWidth() }, l.prototype.shake = function (t) { var e = l.cssClasses.LABEL_SHAKE; t ? this.adapter.addClass(e) : this.adapter.removeClass(e) }, l.prototype.float = function (t) { var e = l.cssClasses, n = e.LABEL_FLOAT_ABOVE, i = e.LABEL_SHAKE; t ? this.adapter.addClass(n) : (this.adapter.removeClass(n), this.adapter.removeClass(i)) }, l.prototype.setRequired = function (t) { var e = l.cssClasses.LABEL_REQUIRED; t ? this.adapter.addClass(e) : this.adapter.removeClass(e) }, l.prototype.handleShakeAnimationEnd_ = function () { var t = l.cssClasses.LABEL_SHAKE; this.adapter.removeClass(t) }, l); function l(t) { var e = s.call(this, o(o({}, l.defaultAdapter), t)) || this; return e.shakeAnimationEndHandler_ = function () { return e.handleShakeAnimationEnd_() }, e } e.MDCFloatingLabelFoundation = u, e.default = u }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }); Object.defineProperty(e, "__esModule", { value: !0 }); var o, s = n(1), a = n(71), c = (o = s.MDCComponent, r(u, o), u.attachTo = function (t) { return new u(t) }, u.prototype.activate = function () { this.foundation.activate() }, u.prototype.deactivate = function () { this.foundation.deactivate() }, u.prototype.setRippleCenter = function (t) { this.foundation.setRippleCenter(t) }, u.prototype.getDefaultFoundation = function () { var n = this, t = { addClass: function (t) { return n.root.classList.add(t) }, removeClass: function (t) { return n.root.classList.remove(t) }, hasClass: function (t) { return n.root.classList.contains(t) }, setStyle: function (t, e) { return n.root.style.setProperty(t, e) }, registerEventHandler: function (t, e) { return n.listen(t, e) }, deregisterEventHandler: function (t, e) { return n.unlisten(t, e) } }; return new a.MDCLineRippleFoundation(t) }, u); function u() { return null !== o && o.apply(this, arguments) || this } e.MDCLineRipple = c }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }); Object.defineProperty(e, "__esModule", { value: !0 }); var o, s = n(1), a = n(27), c = n(30), u = n(76), l = (o = s.MDCComponent, r(d, o), d.attachTo = function (t) { return new d(t) }, d.prototype.initialSyncWithDOM = function () { this.notchElement_ = this.root.querySelector(c.strings.NOTCH_ELEMENT_SELECTOR); var t = this.root.querySelector("." + a.MDCFloatingLabelFoundation.cssClasses.ROOT); t ? (t.style.transitionDuration = "0s", this.root.classList.add(c.cssClasses.OUTLINE_UPGRADED), requestAnimationFrame(function () { t.style.transitionDuration = "" })) : this.root.classList.add(c.cssClasses.NO_LABEL) }, d.prototype.notch = function (t) { this.foundation.notch(t) }, d.prototype.closeNotch = function () { this.foundation.closeNotch() }, d.prototype.getDefaultFoundation = function () { var e = this, t = { addClass: function (t) { return e.root.classList.add(t) }, removeClass: function (t) { return e.root.classList.remove(t) }, setNotchWidthProperty: function (t) { return e.notchElement_.style.setProperty("width", t + "px") }, removeNotchWidthProperty: function () { return e.notchElement_.style.removeProperty("width") } }; return new u.MDCNotchedOutlineFoundation(t) }, d); function d() { return null !== o && o.apply(this, arguments) || this } e.MDCNotchedOutline = l }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }); e.strings = { NOTCH_ELEMENT_SELECTOR: ".mdc-notched-outline__notch" }; e.numbers = { NOTCH_ELEMENT_PADDING: 8 }; e.cssClasses = { NO_LABEL: "mdc-notched-outline--no-label", OUTLINE_NOTCHED: "mdc-notched-outline--notched", OUTLINE_UPGRADED: "mdc-notched-outline--upgraded" } }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }); e.cssClasses = { ACTIVATED: "mdc-select--activated", DISABLED: "mdc-select--disabled", FOCUSED: "mdc-select--focused", INVALID: "mdc-select--invalid", MENU_INVALID: "mdc-select__menu--invalid", OUTLINED: "mdc-select--outlined", REQUIRED: "mdc-select--required", ROOT: "mdc-select", WITH_LEADING_ICON: "mdc-select--with-leading-icon" }; e.strings = { ARIA_CONTROLS: "aria-controls", ARIA_DESCRIBEDBY: "aria-describedby", ARIA_SELECTED_ATTR: "aria-selected", CHANGE_EVENT: "MDCSelect:change", HIDDEN_INPUT_SELECTOR: 'input[type="hidden"]', LABEL_SELECTOR: ".mdc-floating-label", LEADING_ICON_SELECTOR: ".mdc-select__icon", LINE_RIPPLE_SELECTOR: ".mdc-line-ripple", MENU_SELECTOR: ".mdc-select__menu", OUTLINE_SELECTOR: ".mdc-notched-outline", SELECTED_TEXT_SELECTOR: ".mdc-select__selected-text", SELECT_ANCHOR_SELECTOR: ".mdc-select__anchor", VALUE_ATTR: "data-value" }; e.numbers = { LABEL_SCALE: .75, UNSET_INDEX: -1, CLICK_DEBOUNCE_TIMEOUT_MS: 330 } }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }), e.cssClasses = { DISABLED: "mdc-slider--disabled", DISCRETE: "mdc-slider--discrete", INPUT: "mdc-slider__input", RANGE: "mdc-slider--range", THUMB: "mdc-slider__thumb", THUMB_KNOB: "mdc-slider__thumb-knob", THUMB_TOP: "mdc-slider__thumb--top", THUMB_WITH_INDICATOR: "mdc-slider__thumb--with-indicator", TICK_MARKS: "mdc-slider--tick-marks", TICK_MARKS_CONTAINER: "mdc-slider__tick-marks", TICK_MARK_ACTIVE: "mdc-slider__tick-mark--active", TICK_MARK_INACTIVE: "mdc-slider__tick-mark--inactive", TRACK: "mdc-slider__track", TRACK_ACTIVE: "mdc-slider__track--active_fill", VALUE_INDICATOR_TEXT: "mdc-slider__value-indicator-text" }, e.numbers = { STEP_SIZE: 1, THUMB_UPDATE_MIN_PX: 5 }, e.attributes = { ARIA_DISABLED: "aria-disabled", ARIA_VALUEMAX: "aria-valuemax", ARIA_VALUEMIN: "aria-valuemin", ARIA_VALUENOW: "aria-valuenow", ARIA_VALUETEXT: "aria-valuetext", INPUT_DISABLED: "disabled", INPUT_MIN: "min", INPUT_MAX: "max", INPUT_VALUE: "value", INPUT_STEP: "step" }, e.events = { CHANGE: "MDCSlider:change", INPUT: "MDCSlider:input" } }, function (t, e, n) { "use strict"; var i, r; Object.defineProperty(e, "__esModule", { value: !0 }), (i = e.TickMark || (e.TickMark = {}))[i.ACTIVE = 0] = "ACTIVE", i[i.INACTIVE = 1] = "INACTIVE", (r = e.Thumb || (e.Thumb = {}))[r.START = 1] = "START", r[r.END = 2] = "END" }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }); e.cssClasses = { ANIMATING: "mdc-tab-scroller--animating", SCROLL_AREA_SCROLL: "mdc-tab-scroller__scroll-area--scroll", SCROLL_TEST: "mdc-tab-scroller__test" }; e.strings = { AREA_SELECTOR: ".mdc-tab-scroller__scroll-area", CONTENT_SELECTOR: ".mdc-tab-scroller__scroll-content" } }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }); function i(t) { this.adapter = t } e.MDCTabScrollerRTL = i, e.default = i }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a = n(0), c = n(104), u = (s = a.MDCFoundation, r(l, s), Object.defineProperty(l, "cssClasses", { get: function () { return c.cssClasses }, enumerable: !0, configurable: !0 }), Object.defineProperty(l, "strings", { get: function () { return c.strings }, enumerable: !0, configurable: !0 }), Object.defineProperty(l, "defaultAdapter", { get: function () { return { addClass: function () { }, removeClass: function () { }, hasClass: function () { return !1 }, setAttr: function () { }, activateIndicator: function () { }, deactivateIndicator: function () { }, notifyInteracted: function () { }, getOffsetLeft: function () { return 0 }, getOffsetWidth: function () { return 0 }, getContentOffsetLeft: function () { return 0 }, getContentOffsetWidth: function () { return 0 }, focus: function () { } } }, enumerable: !0, configurable: !0 }), l.prototype.handleClick = function () { this.adapter.notifyInteracted() }, l.prototype.isActive = function () { return this.adapter.hasClass(c.cssClasses.ACTIVE) }, l.prototype.setFocusOnActivate = function (t) { this.focusOnActivate_ = t }, l.prototype.activate = function (t) { this.adapter.addClass(c.cssClasses.ACTIVE), this.adapter.setAttr(c.strings.ARIA_SELECTED, "true"), this.adapter.setAttr(c.strings.TABINDEX, "0"), this.adapter.activateIndicator(t), this.focusOnActivate_ && this.adapter.focus() }, l.prototype.deactivate = function () { this.isActive() && (this.adapter.removeClass(c.cssClasses.ACTIVE), this.adapter.setAttr(c.strings.ARIA_SELECTED, "false"), this.adapter.setAttr(c.strings.TABINDEX, "-1"), this.adapter.deactivateIndicator()) }, l.prototype.computeDimensions = function () { var t = this.adapter.getOffsetWidth(), e = this.adapter.getOffsetLeft(), n = this.adapter.getContentOffsetWidth(), i = this.adapter.getContentOffsetLeft(); return { contentLeft: e + i, contentRight: e + i + n, rootLeft: e, rootRight: e + t } }, l); function l(t) { var e = s.call(this, o(o({}, l.defaultAdapter), t)) || this; return e.focusOnActivate_ = !0, e } e.MDCTabFoundation = u, e.default = u }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a = n(0), c = n(108), u = (s = a.MDCFoundation, r(l, s), Object.defineProperty(l, "cssClasses", { get: function () { return c.cssClasses }, enumerable: !0, configurable: !0 }), Object.defineProperty(l, "strings", { get: function () { return c.strings }, enumerable: !0, configurable: !0 }), Object.defineProperty(l, "defaultAdapter", { get: function () { return { setContent: function () { } } }, enumerable: !0, configurable: !0 }), l.prototype.setCounterValue = function (t, e) { t = Math.min(t, e), this.adapter.setContent(t + " / " + e) }, l); function l(t) { return s.call(this, o(o({}, l.defaultAdapter), t)) || this } e.MDCTextFieldCharacterCounterFoundation = u, e.default = u }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }); e.strings = { ARIA_CONTROLS: "aria-controls", ARIA_DESCRIBEDBY: "aria-describedby", INPUT_SELECTOR: ".mdc-text-field__input", LABEL_SELECTOR: ".mdc-floating-label", LEADING_ICON_SELECTOR: ".mdc-text-field__icon--leading", LINE_RIPPLE_SELECTOR: ".mdc-line-ripple", OUTLINE_SELECTOR: ".mdc-notched-outline", PREFIX_SELECTOR: ".mdc-text-field__affix--prefix", SUFFIX_SELECTOR: ".mdc-text-field__affix--suffix", TRAILING_ICON_SELECTOR: ".mdc-text-field__icon--trailing" }; e.cssClasses = { DISABLED: "mdc-text-field--disabled", FOCUSED: "mdc-text-field--focused", HELPER_LINE: "mdc-text-field-helper-line", INVALID: "mdc-text-field--invalid", LABEL_FLOATING: "mdc-text-field--label-floating", NO_LABEL: "mdc-text-field--no-label", OUTLINED: "mdc-text-field--outlined", ROOT: "mdc-text-field", TEXTAREA: "mdc-text-field--textarea", WITH_LEADING_ICON: "mdc-text-field--with-leading-icon", WITH_TRAILING_ICON: "mdc-text-field--with-trailing-icon" }; e.numbers = { LABEL_SCALE: .75 }; e.VALIDATION_ATTR_WHITELIST = ["pattern", "min", "max", "required", "step", "minlength", "maxlength"]; e.ALWAYS_FLOAT_TYPES = ["color", "date", "datetime-local", "month", "range", "time", "week"] }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a = n(0), c = n(111), u = (s = a.MDCFoundation, r(l, s), Object.defineProperty(l, "cssClasses", { get: function () { return c.cssClasses }, enumerable: !0, configurable: !0 }), Object.defineProperty(l, "strings", { get: function () { return c.strings }, enumerable: !0, configurable: !0 }), Object.defineProperty(l, "defaultAdapter", { get: function () { return { addClass: function () { }, removeClass: function () { }, hasClass: function () { return !1 }, getAttr: function () { return null }, setAttr: function () { }, removeAttr: function () { }, setContent: function () { } } }, enumerable: !0, configurable: !0 }), l.prototype.getId = function () { return this.adapter.getAttr("id") }, l.prototype.isVisible = function () { return "true" !== this.adapter.getAttr(c.strings.ARIA_HIDDEN) }, l.prototype.setContent = function (t) { this.adapter.setContent(t) }, l.prototype.isPersistent = function () { return this.adapter.hasClass(c.cssClasses.HELPER_TEXT_PERSISTENT) }, l.prototype.setPersistent = function (t) { t ? this.adapter.addClass(c.cssClasses.HELPER_TEXT_PERSISTENT) : this.adapter.removeClass(c.cssClasses.HELPER_TEXT_PERSISTENT) }, l.prototype.isValidation = function () { return this.adapter.hasClass(c.cssClasses.HELPER_TEXT_VALIDATION_MSG) }, l.prototype.setValidation = function (t) { t ? this.adapter.addClass(c.cssClasses.HELPER_TEXT_VALIDATION_MSG) : this.adapter.removeClass(c.cssClasses.HELPER_TEXT_VALIDATION_MSG) }, l.prototype.showToScreenReader = function () { this.adapter.removeAttr(c.strings.ARIA_HIDDEN) }, l.prototype.setValidity = function (t) { var e = this.adapter.hasClass(c.cssClasses.HELPER_TEXT_PERSISTENT), n = this.adapter.hasClass(c.cssClasses.HELPER_TEXT_VALIDATION_MSG) && !t; n ? (this.showToScreenReader(), this.adapter.setAttr(c.strings.ROLE, "alert")) : this.adapter.removeAttr(c.strings.ROLE), e || n || this.hide_() }, l.prototype.hide_ = function () { this.adapter.setAttr(c.strings.ARIA_HIDDEN, "true") }, l); function l(t) { return s.call(this, o(o({}, l.defaultAdapter), t)) || this } e.MDCTextFieldHelperTextFoundation = u, e.default = u }, function (t, e, n) { "use strict"; var i, r; Object.defineProperty(e, "__esModule", { value: !0 }), (r = i = i || {}).RICH = "mdc-tooltip--rich", r.SHOWN = "mdc-tooltip--shown", r.SHOWING = "mdc-tooltip--showing", r.SHOWING_TRANSITION = "mdc-tooltip--showing-transition", r.HIDE = "mdc-tooltip--hide", r.HIDE_TRANSITION = "mdc-tooltip--hide-transition", r.MULTILINE_TOOLTIP = "mdc-tooltip--multiline", r.SURFACE = "mdc-tooltip__surface", e.CssClasses = i; e.numbers = { BOUNDED_ANCHOR_GAP: 4, UNBOUNDED_ANCHOR_GAP: 8, MIN_VIEWPORT_TOOLTIP_THRESHOLD: 8, HIDE_DELAY_MS: 600, SHOW_DELAY_MS: 500, MIN_HEIGHT: 24, MAX_WIDTH: 200 }; e.attributes = { ARIA_EXPANDED: "aria-expanded", ARIA_HASPOPUP: "aria-haspopup", PERSISTENT: "data-mdc-tooltip-persistent" }; var o, s, a, c, u, l; e.events = { HIDDEN: "MDCTooltip:hidden" }, (s = o = o || {})[s.DETECTED = 0] = "DETECTED", s[s.START = 1] = "START", s[s.CENTER = 2] = "CENTER", s[s.END = 3] = "END", e.XPosition = o, (c = a = a || {})[c.DETECTED = 0] = "DETECTED", c[c.ABOVE = 1] = "ABOVE", c[c.BELOW = 2] = "BELOW", e.YPosition = a, (l = u = u || {})[l.BOUNDED = 0] = "BOUNDED", l[l.UNBOUNDED = 1] = "UNBOUNDED", e.AnchorBoundaryType = u; e.strings = { LEFT: "left", RIGHT: "right", CENTER: "center", TOP: "top", BOTTOM: "bottom" } }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }); Object.defineProperty(e, "__esModule", { value: !0 }); var o, s = n(9), a = n(42), c = (o = a.MDCTopAppBarBaseFoundation, r(u, o), u.prototype.destroy = function () { o.prototype.destroy.call(this), this.adapter.setStyle("top", "") }, u.prototype.handleTargetScroll = function () { var t = Math.max(this.adapter.getViewportScrollY(), 0), e = t - this.lastScrollPosition_; this.lastScrollPosition_ = t, this.isCurrentlyBeingResized_ || (this.currentAppBarOffsetTop_ -= e, 0 < this.currentAppBarOffsetTop_ ? this.currentAppBarOffsetTop_ = 0 : Math.abs(this.currentAppBarOffsetTop_) > this.topAppBarHeight_ && (this.currentAppBarOffsetTop_ = -this.topAppBarHeight_), this.moveTopAppBar_()) }, u.prototype.handleWindowResize = function () { var t = this; this.resizeThrottleId_ || (this.resizeThrottleId_ = setTimeout(function () { t.resizeThrottleId_ = 0, t.throttledResizeHandler_() }, s.numbers.DEBOUNCE_THROTTLE_RESIZE_TIME_MS)), this.isCurrentlyBeingResized_ = !0, this.resizeDebounceId_ && clearTimeout(this.resizeDebounceId_), this.resizeDebounceId_ = setTimeout(function () { t.handleTargetScroll(), t.isCurrentlyBeingResized_ = !1, t.resizeDebounceId_ = 0 }, s.numbers.DEBOUNCE_THROTTLE_RESIZE_TIME_MS) }, u.prototype.checkForUpdate_ = function () { var t = -this.topAppBarHeight_, e = this.currentAppBarOffsetTop_ < 0, n = this.currentAppBarOffsetTop_ > t, i = e && n; if (i) this.wasDocked_ = !1; else { if (!this.wasDocked_) return this.wasDocked_ = !0; if (this.isDockedShowing_ !== n) return this.isDockedShowing_ = n, !0 } return i }, u.prototype.moveTopAppBar_ = function () { if (this.checkForUpdate_()) { var t = this.currentAppBarOffsetTop_; Math.abs(t) >= this.topAppBarHeight_ && (t = -s.numbers.MAX_TOP_APP_BAR_HEIGHT), this.adapter.setStyle("top", t + "px") } }, u.prototype.throttledResizeHandler_ = function () { var t = this.adapter.getTopAppBarHeight(); this.topAppBarHeight_ !== t && (this.wasDocked_ = !1, this.currentAppBarOffsetTop_ -= this.topAppBarHeight_ - t, this.topAppBarHeight_ = t), this.handleTargetScroll() }, u); function u(t) { var e = o.call(this, t) || this; return e.wasDocked_ = !0, e.isDockedShowing_ = !0, e.currentAppBarOffsetTop_ = 0, e.isCurrentlyBeingResized_ = !1, e.resizeThrottleId_ = 0, e.resizeDebounceId_ = 0, e.lastScrollPosition_ = e.adapter.getViewportScrollY(), e.topAppBarHeight_ = e.adapter.getTopAppBarHeight(), e } e.MDCTopAppBarFoundation = c, e.default = c }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a = n(0), c = n(9), u = (s = a.MDCFoundation, r(l, s), Object.defineProperty(l, "strings", { get: function () { return c.strings }, enumerable: !0, configurable: !0 }), Object.defineProperty(l, "cssClasses", { get: function () { return c.cssClasses }, enumerable: !0, configurable: !0 }), Object.defineProperty(l, "numbers", { get: function () { return c.numbers }, enumerable: !0, configurable: !0 }), Object.defineProperty(l, "defaultAdapter", { get: function () { return { addClass: function () { }, removeClass: function () { }, hasClass: function () { return !1 }, setStyle: function () { }, getTopAppBarHeight: function () { return 0 }, notifyNavigationIconClicked: function () { }, getViewportScrollY: function () { return 0 }, getTotalActionItems: function () { return 0 } } }, enumerable: !0, configurable: !0 }), l.prototype.handleTargetScroll = function () { }, l.prototype.handleWindowResize = function () { }, l.prototype.handleNavigationClick = function () { this.adapter.notifyNavigationIconClicked() }, l); function l(t) { return s.call(this, o(o({}, l.defaultAdapter), t)) || this } e.MDCTopAppBarBaseFoundation = u, e.default = u }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a = n(0), c = n(18), u = c.cssClasses.OPENING, l = c.cssClasses.OPEN, d = c.cssClasses.CLOSING, p = (s = a.MDCFoundation, r(h, s), Object.defineProperty(h, "defaultAdapter", { get: function () { return { addClass: function () { }, getContentHeight: function () { return 0 }, notifyClosed: function () { }, notifyClosing: function () { }, notifyOpened: function () { }, notifyOpening: function () { }, removeClass: function () { }, setStyleProperty: function () { } } }, enumerable: !0, configurable: !0 }), h.prototype.destroy = function () { cancelAnimationFrame(this.animationFrame), this.animationFrame = 0, clearTimeout(this.animationTimer), this.animationTimer = 0 }, h.prototype.open = function () { var t = this; this.isOpened = !0, this.adapter.notifyOpening(), this.adapter.removeClass(d), this.adapter.addClass(u); var e = this.adapter.getContentHeight(); this.animationFrame = requestAnimationFrame(function () { t.adapter.addClass(l), t.adapter.setStyleProperty("height", e + "px"), t.animationTimer = setTimeout(function () { t.handleAnimationTimerEnd(), t.adapter.notifyOpened() }, c.numbers.BANNER_ANIMATION_OPEN_TIME_MS) }) }, h.prototype.close = function (t) { var e = this; this.isOpened && (cancelAnimationFrame(this.animationFrame), this.animationFrame = 0, this.isOpened = !1, this.adapter.notifyClosing(t), this.adapter.addClass(d), this.adapter.setStyleProperty("height", "0"), this.adapter.removeClass(l), this.adapter.removeClass(u), clearTimeout(this.animationTimer), this.animationTimer = setTimeout(function () { e.handleAnimationTimerEnd(), e.adapter.notifyClosed(t) }, c.numbers.BANNER_ANIMATION_CLOSE_TIME_MS)) }, h.prototype.isOpen = function () { return this.isOpened }, h.prototype.handlePrimaryActionClick = function () { this.close(c.CloseReason.PRIMARY) }, h.prototype.handleSecondaryActionClick = function () { this.close(c.CloseReason.SECONDARY) }, h.prototype.layout = function () { var t = this.adapter.getContentHeight(); this.adapter.setStyleProperty("height", t + "px") }, h.prototype.handleAnimationTimerEnd = function () { this.animationTimer = 0, this.adapter.removeClass(u), this.adapter.removeClass(d) }, h); function h(t) { var e = s.call(this, o(o({}, h.defaultAdapter), t)) || this; return e.isOpened = !1, e.animationFrame = 0, e.animationTimer = 0, e } e.MDCBannerFoundation = p }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a = n(10), c = n(1), u = n(5), l = n(2), d = n(3), p = n(4), h = n(20), f = n(46), _ = ["checked", "indeterminate"], y = (s = c.MDCComponent, r(C, s), C.attachTo = function (t) { return new C(t) }, Object.defineProperty(C.prototype, "ripple", { get: function () { return this.ripple_ }, enumerable: !0, configurable: !0 }), Object.defineProperty(C.prototype, "checked", { get: function () { return this.nativeControl_.checked }, set: function (t) { this.nativeControl_.checked = t }, enumerable: !0, configurable: !0 }), Object.defineProperty(C.prototype, "indeterminate", { get: function () { return this.nativeControl_.indeterminate }, set: function (t) { this.nativeControl_.indeterminate = t }, enumerable: !0, configurable: !0 }), Object.defineProperty(C.prototype, "disabled", { get: function () { return this.nativeControl_.disabled }, set: function (t) { this.foundation.setDisabled(t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(C.prototype, "value", { get: function () { return this.nativeControl_.value }, set: function (t) { this.nativeControl_.value = t }, enumerable: !0, configurable: !0 }), C.prototype.initialize = function () { var t = h.strings.DATA_INDETERMINATE_ATTR; this.nativeControl_.indeterminate = "true" === this.nativeControl_.getAttribute(t), this.nativeControl_.removeAttribute(t) }, C.prototype.initialSyncWithDOM = function () { var t = this; this.handleChange_ = function () { return t.foundation.handleChange() }, this.handleAnimationEnd_ = function () { return t.foundation.handleAnimationEnd() }, this.nativeControl_.addEventListener("change", this.handleChange_), this.listen(a.getCorrectEventName(window, "animationend"), this.handleAnimationEnd_), this.installPropertyChangeHooks_() }, C.prototype.destroy = function () { this.ripple_.destroy(), this.nativeControl_.removeEventListener("change", this.handleChange_), this.unlisten(a.getCorrectEventName(window, "animationend"), this.handleAnimationEnd_), this.uninstallPropertyChangeHooks_(), s.prototype.destroy.call(this) }, C.prototype.getDefaultFoundation = function () { var n = this, t = { addClass: function (t) { return n.root.classList.add(t) }, forceLayout: function () { return n.root.offsetWidth }, hasNativeControl: function () { return !!n.nativeControl_ }, isAttachedToDOM: function () { return Boolean(n.root.parentNode) }, isChecked: function () { return n.checked }, isIndeterminate: function () { return n.indeterminate }, removeClass: function (t) { n.root.classList.remove(t) }, removeNativeControlAttr: function (t) { n.nativeControl_.removeAttribute(t) }, setNativeControlAttr: function (t, e) { n.nativeControl_.setAttribute(t, e) }, setNativeControlDisabled: function (t) { n.nativeControl_.disabled = t } }; return new f.MDCCheckboxFoundation(t) }, C.prototype.createRipple_ = function () { var n = this, t = o(o({}, d.MDCRipple.createAdapter(this)), { deregisterInteractionHandler: function (t, e) { return n.nativeControl_.removeEventListener(t, e, u.applyPassive()) }, isSurfaceActive: function () { return l.matches(n.nativeControl_, ":active") }, isUnbounded: function () { return !0 }, registerInteractionHandler: function (t, e) { return n.nativeControl_.addEventListener(t, e, u.applyPassive()) } }); return new d.MDCRipple(this.root, new p.MDCRippleFoundation(t)) }, C.prototype.installPropertyChangeHooks_ = function () { var r = this, o = this.nativeControl_, s = Object.getPrototypeOf(o); _.forEach(function (t) { var e = Object.getOwnPropertyDescriptor(s, t); if (m(e)) { var n = e.get, i = { configurable: e.configurable, enumerable: e.enumerable, get: n, set: function (t) { e.set.call(o, t), r.foundation.handleChange() } }; Object.defineProperty(o, t, i) } }) }, C.prototype.uninstallPropertyChangeHooks_ = function () { var n = this.nativeControl_, i = Object.getPrototypeOf(n); _.forEach(function (t) { var e = Object.getOwnPropertyDescriptor(i, t); m(e) && Object.defineProperty(n, t, e) }) }, Object.defineProperty(C.prototype, "nativeControl_", { get: function () { var t = h.strings.NATIVE_CONTROL_SELECTOR, e = this.root.querySelector(t); if (!e) throw new Error("Checkbox component requires a " + t + " element"); return e }, enumerable: !0, configurable: !0 }), C); function C() { var t = null !== s && s.apply(this, arguments) || this; return t.ripple_ = t.createRipple_(), t } function m(t) { return !!t && "function" == typeof t.set } e.MDCCheckbox = y }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }), e.cssClasses = { BG_FOCUSED: "mdc-ripple-upgraded--background-focused", FG_ACTIVATION: "mdc-ripple-upgraded--foreground-activation", FG_DEACTIVATION: "mdc-ripple-upgraded--foreground-deactivation", ROOT: "mdc-ripple-upgraded", UNBOUNDED: "mdc-ripple-upgraded--unbounded" }, e.strings = { VAR_FG_SCALE: "--mdc-ripple-fg-scale", VAR_FG_SIZE: "--mdc-ripple-fg-size", VAR_FG_TRANSLATE_END: "--mdc-ripple-fg-translate-end", VAR_FG_TRANSLATE_START: "--mdc-ripple-fg-translate-start", VAR_LEFT: "--mdc-ripple-left", VAR_TOP: "--mdc-ripple-top" }, e.numbers = { DEACTIVATION_TIMEOUT_MS: 225, FG_DEACTIVATION_MS: 150, INITIAL_ORIGIN_SCALE: .6, PADDING: 10, TAP_DELAY_MS: 300 } }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a = n(0), p = n(20), c = (s = a.MDCFoundation, r(h, s), Object.defineProperty(h, "cssClasses", { get: function () { return p.cssClasses }, enumerable: !0, configurable: !0 }), Object.defineProperty(h, "strings", { get: function () { return p.strings }, enumerable: !0, configurable: !0 }), Object.defineProperty(h, "numbers", { get: function () { return p.numbers }, enumerable: !0, configurable: !0 }), Object.defineProperty(h, "defaultAdapter", { get: function () { return { addClass: function () { }, forceLayout: function () { }, hasNativeControl: function () { return !1 }, isAttachedToDOM: function () { return !1 }, isChecked: function () { return !1 }, isIndeterminate: function () { return !1 }, removeClass: function () { }, removeNativeControlAttr: function () { }, setNativeControlAttr: function () { }, setNativeControlDisabled: function () { } } }, enumerable: !0, configurable: !0 }), h.prototype.init = function () { this.currentCheckState_ = this.determineCheckState_(), this.updateAriaChecked_(), this.adapter.addClass(p.cssClasses.UPGRADED) }, h.prototype.destroy = function () { clearTimeout(this.animEndLatchTimer_) }, h.prototype.setDisabled = function (t) { this.adapter.setNativeControlDisabled(t), t ? this.adapter.addClass(p.cssClasses.DISABLED) : this.adapter.removeClass(p.cssClasses.DISABLED) }, h.prototype.handleAnimationEnd = function () { var t = this; this.enableAnimationEndHandler_ && (clearTimeout(this.animEndLatchTimer_), this.animEndLatchTimer_ = setTimeout(function () { t.adapter.removeClass(t.currentAnimationClass_), t.enableAnimationEndHandler_ = !1 }, p.numbers.ANIM_END_LATCH_MS)) }, h.prototype.handleChange = function () { this.transitionCheckState_() }, h.prototype.transitionCheckState_ = function () { if (this.adapter.hasNativeControl()) { var t = this.currentCheckState_, e = this.determineCheckState_(); if (t !== e) { this.updateAriaChecked_(); var n = p.strings.TRANSITION_STATE_UNCHECKED, i = p.cssClasses.SELECTED; e === n ? this.adapter.removeClass(i) : this.adapter.addClass(i), 0 < this.currentAnimationClass_.length && (clearTimeout(this.animEndLatchTimer_), this.adapter.forceLayout(), this.adapter.removeClass(this.currentAnimationClass_)), this.currentAnimationClass_ = this.getTransitionAnimationClass_(t, e), this.currentCheckState_ = e, this.adapter.isAttachedToDOM() && 0 < this.currentAnimationClass_.length && (this.adapter.addClass(this.currentAnimationClass_), this.enableAnimationEndHandler_ = !0) } } }, h.prototype.determineCheckState_ = function () { var t = p.strings.TRANSITION_STATE_INDETERMINATE, e = p.strings.TRANSITION_STATE_CHECKED, n = p.strings.TRANSITION_STATE_UNCHECKED; return this.adapter.isIndeterminate() ? t : this.adapter.isChecked() ? e : n }, h.prototype.getTransitionAnimationClass_ = function (t, e) { var n = p.strings.TRANSITION_STATE_INIT, i = p.strings.TRANSITION_STATE_CHECKED, r = p.strings.TRANSITION_STATE_UNCHECKED, o = h.cssClasses, s = o.ANIM_UNCHECKED_CHECKED, a = o.ANIM_UNCHECKED_INDETERMINATE, c = o.ANIM_CHECKED_UNCHECKED, u = o.ANIM_CHECKED_INDETERMINATE, l = o.ANIM_INDETERMINATE_CHECKED, d = o.ANIM_INDETERMINATE_UNCHECKED; switch (t) { case n: return e === r ? "" : e === i ? l : d; case r: return e === i ? s : a; case i: return e === r ? c : u; default: return e === i ? l : d } }, h.prototype.updateAriaChecked_ = function () { this.adapter.isIndeterminate() ? this.adapter.setNativeControlAttr(p.strings.ARIA_CHECKED_ATTR, p.strings.ARIA_CHECKED_INDETERMINATE_VALUE) : this.adapter.removeNativeControlAttr(p.strings.ARIA_CHECKED_ATTR) }, h); function h(t) { var e = s.call(this, o(o({}, h.defaultAdapter), t)) || this; return e.currentCheckState_ = p.strings.TRANSITION_STATE_INIT, e.currentAnimationClass_ = "", e.animEndLatchTimer_ = 0, e.enableAnimationEndHandler_ = !1, e } e.MDCCheckboxFoundation = c, e.default = c }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }); Object.defineProperty(e, "__esModule", { value: !0 }); var o, s = n(1), a = n(3), c = n(4), u = n(11), l = n(48), d = (o = s.MDCComponent, r(p, o), Object.defineProperty(p.prototype, "ripple", { get: function () { return this.ripple_ }, enumerable: !0, configurable: !0 }), p.attachTo = function (t) { return new p(t) }, p.prototype.initialize = function (t) { void 0 === t && (t = function (t, e) { return new a.MDCRipple(t, e) }); var e = a.MDCRipple.createAdapter(this); this.ripple_ = t(this.root, new c.MDCRippleFoundation(e)) }, p.prototype.initialSyncWithDOM = function () { var e = this; this.handleClick_ = function (t) { e.foundation.handleClick(t) }, this.handleKeydown_ = function (t) { e.foundation.handleKeydown(t) }, this.listen("click", this.handleClick_), this.listen("keydown", this.handleKeydown_) }, p.prototype.destroy = function () { this.ripple_.destroy(), this.unlisten("click", this.handleClick_), this.unlisten("keydown", this.handleKeydown_), o.prototype.destroy.call(this) }, p.prototype.getDefaultFoundation = function () { var n = this, t = { focus: function () { n.root.focus() }, getAttribute: function (t) { return n.root.getAttribute(t) }, notifyInteraction: function (t) { return n.emit(u.strings.INTERACTION_EVENT, { trigger: t }, !0) }, notifyNavigation: function (t) { n.emit(u.strings.NAVIGATION_EVENT, { key: t }, !0) }, setAttribute: function (t, e) { n.root.setAttribute(t, e) } }; return new l.MDCChipTrailingActionFoundation(t) }, p.prototype.isNavigable = function () { return this.foundation.isNavigable() }, p.prototype.focus = function () { this.foundation.focus() }, p.prototype.removeFocus = function () { this.foundation.removeFocus() }, p); function p() { return null !== o && o.apply(this, arguments) || this } e.MDCChipTrailingAction = d }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a = n(0), c = n(6), u = n(11), l = (s = a.MDCFoundation, r(d, s), Object.defineProperty(d, "strings", { get: function () { return u.strings }, enumerable: !0, configurable: !0 }), Object.defineProperty(d, "defaultAdapter", { get: function () { return { focus: function () { }, getAttribute: function () { return null }, setAttribute: function () { }, notifyInteraction: function () { }, notifyNavigation: function () { } } }, enumerable: !0, configurable: !0 }), d.prototype.handleClick = function (t) { t.stopPropagation(), this.adapter.notifyInteraction(u.InteractionTrigger.CLICK) }, d.prototype.handleKeydown = function (t) { t.stopPropagation(); var e = c.normalizeKey(t); if (this.shouldNotifyInteractionFromKey_(e)) { var n = this.getTriggerFromKey_(e); this.adapter.notifyInteraction(n) } else c.isNavigationEvent(t) && this.adapter.notifyNavigation(e) }, d.prototype.removeFocus = function () { this.adapter.setAttribute(u.strings.TAB_INDEX, "-1") }, d.prototype.focus = function () { this.adapter.setAttribute(u.strings.TAB_INDEX, "0"), this.adapter.focus() }, d.prototype.isNavigable = function () { return "true" !== this.adapter.getAttribute(u.strings.ARIA_HIDDEN) }, d.prototype.shouldNotifyInteractionFromKey_ = function (t) { var e = t === c.KEY.ENTER || t === c.KEY.SPACEBAR, n = t === c.KEY.BACKSPACE || t === c.KEY.DELETE; return e || n }, d.prototype.getTriggerFromKey_ = function (t) { return t === c.KEY.SPACEBAR ? u.InteractionTrigger.SPACEBAR_KEY : t === c.KEY.ENTER ? u.InteractionTrigger.ENTER_KEY : t === c.KEY.DELETE ? u.InteractionTrigger.DELETE_KEY : t === c.KEY.BACKSPACE ? u.InteractionTrigger.BACKSPACE_KEY : u.InteractionTrigger.UNSPECIFIED }, d); function d(t) { return s.call(this, o(o({}, d.defaultAdapter), t)) || this } e.MDCChipTrailingActionFoundation = l, e.default = l }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a = n(1), c = n(3), u = n(4), l = n(47), d = n(11), p = n(12), h = n(21), f = (s = a.MDCComponent, r(_, s), Object.defineProperty(_.prototype, "selected", { get: function () { return this.foundation.isSelected() }, set: function (t) { this.foundation.setSelected(t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(_.prototype, "shouldRemoveOnTrailingIconClick", { get: function () { return this.foundation.getShouldRemoveOnTrailingIconClick() }, set: function (t) { this.foundation.setShouldRemoveOnTrailingIconClick(t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(_.prototype, "setShouldFocusPrimaryActionOnClick", { set: function (t) { this.foundation.setShouldFocusPrimaryActionOnClick(t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(_.prototype, "ripple", { get: function () { return this.ripple_ }, enumerable: !0, configurable: !0 }), Object.defineProperty(_.prototype, "id", { get: function () { return this.root.id }, enumerable: !0, configurable: !0 }), _.attachTo = function (t) { return new _(t) }, _.prototype.initialize = function (t, e) { var n = this; void 0 === t && (t = function (t, e) { return new c.MDCRipple(t, e) }), void 0 === e && (e = function (t) { return new l.MDCChipTrailingAction(t) }), this.leadingIcon_ = this.root.querySelector(p.strings.LEADING_ICON_SELECTOR), this.checkmark_ = this.root.querySelector(p.strings.CHECKMARK_SELECTOR), this.primaryAction_ = this.root.querySelector(p.strings.PRIMARY_ACTION_SELECTOR); var i = this.root.querySelector(p.strings.TRAILING_ACTION_SELECTOR); i && (this.trailingAction_ = e(i)); var r = o(o({}, c.MDCRipple.createAdapter(this)), { computeBoundingRect: function () { return n.foundation.getDimensions() } }); this.ripple_ = t(this.root, new u.MDCRippleFoundation(r)) }, _.prototype.initialSyncWithDOM = function () { var e = this; this.handleTrailingActionInteraction_ = function () { e.foundation.handleTrailingActionInteraction() }, this.handleTrailingActionNavigation_ = function (t) { e.foundation.handleTrailingActionNavigation(t) }, this.handleClick_ = function () { e.foundation.handleClick() }, this.handleKeydown_ = function (t) { e.foundation.handleKeydown(t) }, this.handleTransitionEnd_ = function (t) { e.foundation.handleTransitionEnd(t) }, this.handleFocusIn_ = function (t) { e.foundation.handleFocusIn(t) }, this.handleFocusOut_ = function (t) { e.foundation.handleFocusOut(t) }, this.listen("transitionend", this.handleTransitionEnd_), this.listen("click", this.handleClick_), this.listen("keydown", this.handleKeydown_), this.listen("focusin", this.handleFocusIn_), this.listen("focusout", this.handleFocusOut_), this.trailingAction_ && (this.listen(d.strings.INTERACTION_EVENT, this.handleTrailingActionInteraction_), this.listen(d.strings.NAVIGATION_EVENT, this.handleTrailingActionNavigation_)) }, _.prototype.destroy = function () { this.ripple_.destroy(), this.unlisten("transitionend", this.handleTransitionEnd_), this.unlisten("keydown", this.handleKeydown_), this.unlisten("click", this.handleClick_), this.unlisten("focusin", this.handleFocusIn_), this.unlisten("focusout", this.handleFocusOut_), this.trailingAction_ && (this.unlisten(d.strings.INTERACTION_EVENT, this.handleTrailingActionInteraction_), this.unlisten(d.strings.NAVIGATION_EVENT, this.handleTrailingActionNavigation_)), s.prototype.destroy.call(this) }, _.prototype.beginExit = function () { this.foundation.beginExit() }, _.prototype.getDefaultFoundation = function () { var n = this, t = { addClass: function (t) { return n.root.classList.add(t) }, addClassToLeadingIcon: function (t) { n.leadingIcon_ && n.leadingIcon_.classList.add(t) }, eventTargetHasClass: function (t, e) { return !!t && t.classList.contains(e) }, focusPrimaryAction: function () { n.primaryAction_ && n.primaryAction_.focus() }, focusTrailingAction: function () { n.trailingAction_ && n.trailingAction_.focus() }, getAttribute: function (t) { return n.root.getAttribute(t) }, getCheckmarkBoundingClientRect: function () { return n.checkmark_ ? n.checkmark_.getBoundingClientRect() : null }, getComputedStyleValue: function (t) { return window.getComputedStyle(n.root).getPropertyValue(t) }, getRootBoundingClientRect: function () { return n.root.getBoundingClientRect() }, hasClass: function (t) { return n.root.classList.contains(t) }, hasLeadingIcon: function () { return !!n.leadingIcon_ }, isRTL: function () { return "rtl" === window.getComputedStyle(n.root).getPropertyValue("direction") }, isTrailingActionNavigable: function () { return !!n.trailingAction_ && n.trailingAction_.isNavigable() }, notifyInteraction: function () { return n.emit(p.strings.INTERACTION_EVENT, { chipId: n.id }, !0) }, notifyNavigation: function (t, e) { return n.emit(p.strings.NAVIGATION_EVENT, { chipId: n.id, key: t, source: e }, !0) }, notifyRemoval: function (t) { n.emit(p.strings.REMOVAL_EVENT, { chipId: n.id, removedAnnouncement: t }, !0) }, notifySelection: function (t, e) { return n.emit(p.strings.SELECTION_EVENT, { chipId: n.id, selected: t, shouldIgnore: e }, !0) }, notifyTrailingIconInteraction: function () { return n.emit(p.strings.TRAILING_ICON_INTERACTION_EVENT, { chipId: n.id }, !0) }, notifyEditStart: function () { }, notifyEditFinish: function () { }, removeClass: function (t) { return n.root.classList.remove(t) }, removeClassFromLeadingIcon: function (t) { n.leadingIcon_ && n.leadingIcon_.classList.remove(t) }, removeTrailingActionFocus: function () { n.trailingAction_ && n.trailingAction_.removeFocus() }, setPrimaryActionAttr: function (t, e) { n.primaryAction_ && n.primaryAction_.setAttribute(t, e) }, setStyleProperty: function (t, e) { return n.root.style.setProperty(t, e) } }; return new h.MDCChipFoundation(t) }, _.prototype.setSelectedFromChipSet = function (t, e) { this.foundation.setSelectedFromChipSet(t, e) }, _.prototype.focusPrimaryAction = function () { this.foundation.focusPrimaryAction() }, _.prototype.focusTrailingAction = function () { this.foundation.focusTrailingAction() }, _.prototype.removeFocus = function () { this.foundation.removeFocus() }, _.prototype.remove = function () { var t = this.root.parentNode; null !== t && t.removeChild(this.root) }, _); function _() { return null !== s && s.apply(this, arguments) || this } e.MDCChip = f }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a = n(0), h = n(12), c = n(51), u = (s = a.MDCFoundation, r(l, s), Object.defineProperty(l, "strings", { get: function () { return c.strings }, enumerable: !0, configurable: !0 }), Object.defineProperty(l, "cssClasses", { get: function () { return c.cssClasses }, enumerable: !0, configurable: !0 }), Object.defineProperty(l, "defaultAdapter", { get: function () { return { announceMessage: function () { }, focusChipPrimaryActionAtIndex: function () { }, focusChipTrailingActionAtIndex: function () { }, getChipListCount: function () { return -1 }, getIndexOfChipById: function () { return -1 }, hasClass: function () { return !1 }, isRTL: function () { return !1 }, removeChipAtIndex: function () { }, removeFocusFromChipAtIndex: function () { }, selectChipAtIndex: function () { } } }, enumerable: !0, configurable: !0 }), l.prototype.getSelectedChipIds = function () { return this.selectedChipIds_.slice() }, l.prototype.select = function (t) { this.select_(t, !1) }, l.prototype.handleChipInteraction = function (t) { var e = t.chipId, n = this.adapter.getIndexOfChipById(e); this.removeFocusFromChipsExcept_(n), (this.adapter.hasClass(c.cssClasses.CHOICE) || this.adapter.hasClass(c.cssClasses.FILTER)) && this.toggleSelect_(e) }, l.prototype.handleChipSelection = function (t) { var e = t.chipId, n = t.selected; if (!t.shouldIgnore) { var i = 0 <= this.selectedChipIds_.indexOf(e); n && !i ? this.select(e) : !n && i && this.deselect_(e) } }, l.prototype.handleChipRemoval = function (t) { var e = t.chipId, n = t.removedAnnouncement; n && this.adapter.announceMessage(n); var i = this.adapter.getIndexOfChipById(e); this.deselectAndNotifyClients_(e), this.adapter.removeChipAtIndex(i); var r = this.adapter.getChipListCount() - 1; if (!(r < 0)) { var o = Math.min(i, r); this.removeFocusFromChipsExcept_(o), this.adapter.focusChipTrailingActionAtIndex(o) } }, l.prototype.handleChipNavigation = function (t) { var e = t.chipId, n = t.key, i = t.source, r = this.adapter.getChipListCount() - 1, o = this.adapter.getIndexOfChipById(e); if (-1 !== o && h.navigationKeys.has(n)) { var s = this.adapter.isRTL(), a = n === h.strings.ARROW_LEFT_KEY || n === h.strings.IE_ARROW_LEFT_KEY, c = n === h.strings.ARROW_RIGHT_KEY || n === h.strings.IE_ARROW_RIGHT_KEY, u = n === h.strings.ARROW_DOWN_KEY || n === h.strings.IE_ARROW_DOWN_KEY, l = !s && c || s && a || u, d = n === h.strings.HOME_KEY, p = n === h.strings.END_KEY; l ? o++ : d ? o = 0 : p ? o = r : o--, o < 0 || r < o || (this.removeFocusFromChipsExcept_(o), this.focusChipAction_(o, n, i)) } }, l.prototype.focusChipAction_ = function (t, e, n) { var i = h.jumpChipKeys.has(e); if (i && n === h.EventSource.PRIMARY) return this.adapter.focusChipPrimaryActionAtIndex(t); if (i && n === h.EventSource.TRAILING) return this.adapter.focusChipTrailingActionAtIndex(t); var r = this.getDirection_(e); return r === h.Direction.LEFT ? this.adapter.focusChipTrailingActionAtIndex(t) : r === h.Direction.RIGHT ? this.adapter.focusChipPrimaryActionAtIndex(t) : void 0 }, l.prototype.getDirection_ = function (t) { var e = this.adapter.isRTL(), n = t === h.strings.ARROW_LEFT_KEY || t === h.strings.IE_ARROW_LEFT_KEY, i = t === h.strings.ARROW_RIGHT_KEY || t === h.strings.IE_ARROW_RIGHT_KEY; return !e && n || e && i ? h.Direction.LEFT : h.Direction.RIGHT }, l.prototype.deselect_ = function (t, e) { void 0 === e && (e = !1); var n = this.selectedChipIds_.indexOf(t); if (0 <= n) { this.selectedChipIds_.splice(n, 1); var i = this.adapter.getIndexOfChipById(t); this.adapter.selectChipAtIndex(i, !1, e) } }, l.prototype.deselectAndNotifyClients_ = function (t) { this.deselect_(t, !0) }, l.prototype.toggleSelect_ = function (t) { 0 <= this.selectedChipIds_.indexOf(t) ? this.deselectAndNotifyClients_(t) : this.selectAndNotifyClients_(t) }, l.prototype.removeFocusFromChipsExcept_ = function (t) { for (var e = this.adapter.getChipListCount(), n = 0; n < e; n++)n !== t && this.adapter.removeFocusFromChipAtIndex(n) }, l.prototype.selectAndNotifyClients_ = function (t) { this.select_(t, !0) }, l.prototype.select_ = function (t, e) { if (!(0 <= this.selectedChipIds_.indexOf(t))) { if (this.adapter.hasClass(c.cssClasses.CHOICE) && 0 < this.selectedChipIds_.length) { var n = this.selectedChipIds_[0], i = this.adapter.getIndexOfChipById(n); this.selectedChipIds_ = [], this.adapter.selectChipAtIndex(i, !1, e) } this.selectedChipIds_.push(t); var r = this.adapter.getIndexOfChipById(t); this.adapter.selectChipAtIndex(r, !0, e) } }, l); function l(t) { var e = s.call(this, o(o({}, l.defaultAdapter), t)) || this; return e.selectedChipIds_ = [], e } e.MDCChipSetFoundation = u, e.default = u }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }), e.strings = { CHIP_SELECTOR: ".mdc-chip" }, e.cssClasses = { CHOICE: "mdc-chip-set--choice", FILTER: "mdc-chip-set--filter" } }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a = n(0), c = n(53), u = (s = a.MDCFoundation, r(l, s), Object.defineProperty(l, "cssClasses", { get: function () { return c.cssClasses }, enumerable: !0, configurable: !0 }), Object.defineProperty(l, "strings", { get: function () { return c.strings }, enumerable: !0, configurable: !0 }), Object.defineProperty(l, "defaultAdapter", { get: function () { return { addClass: function () { }, getDeterminateCircleAttribute: function () { return null }, hasClass: function () { return !1 }, removeClass: function () { }, removeAttribute: function () { }, setAttribute: function () { }, setDeterminateCircleAttribute: function () { } } }, enumerable: !0, configurable: !0 }), l.prototype.init = function () { this.isClosed_ = this.adapter.hasClass(c.cssClasses.CLOSED_CLASS), this.isDeterminate_ = !this.adapter.hasClass(c.cssClasses.INDETERMINATE_CLASS), this.progress_ = 0, this.isDeterminate_ && this.adapter.setAttribute(c.strings.ARIA_VALUENOW, this.progress_.toString()), this.radius_ = Number(this.adapter.getDeterminateCircleAttribute(c.strings.RADIUS)) }, l.prototype.isDeterminate = function () { return this.isDeterminate_ }, l.prototype.getProgress = function () { return this.progress_ }, l.prototype.isClosed = function () { return this.isClosed_ }, l.prototype.setDeterminate = function (t) { this.isDeterminate_ = t, this.isDeterminate_ ? (this.adapter.removeClass(c.cssClasses.INDETERMINATE_CLASS), this.setProgress(this.progress_)) : (this.adapter.addClass(c.cssClasses.INDETERMINATE_CLASS), this.adapter.removeAttribute(c.strings.ARIA_VALUENOW)) }, l.prototype.setProgress = function (t) { if (this.progress_ = t, this.isDeterminate_) { var e = (1 - this.progress_) * (2 * Math.PI * this.radius_); this.adapter.setDeterminateCircleAttribute(c.strings.STROKE_DASHOFFSET, "" + e), this.adapter.setAttribute(c.strings.ARIA_VALUENOW, this.progress_.toString()) } }, l.prototype.open = function () { this.isClosed_ = !1, this.adapter.removeClass(c.cssClasses.CLOSED_CLASS) }, l.prototype.close = function () { this.isClosed_ = !0, this.adapter.addClass(c.cssClasses.CLOSED_CLASS) }, l); function l(t) { return s.call(this, o(o({}, l.defaultAdapter), t)) || this } e.MDCCircularProgressFoundation = u, e.default = u }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }), e.cssClasses = { INDETERMINATE_CLASS: "mdc-circular-progress--indeterminate", CLOSED_CLASS: "mdc-circular-progress--closed" }, e.strings = { DETERMINATE_CIRCLE_SELECTOR: ".mdc-circular-progress__determinate-circle", ARIA_VALUENOW: "aria-valuenow", RADIUS: "r", STROKE_DASHOFFSET: "stroke-dashoffset" } }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }); Object.defineProperty(e, "__esModule", { value: !0 }); var o, s = n(1), a = n(55), c = (o = s.MDCComponent, r(u, o), u.attachTo = function (t) { return new u(t) }, Object.defineProperty(u.prototype, "determinate", { set: function (t) { this.foundation.setDeterminate(t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(u.prototype, "progress", { set: function (t) { this.foundation.setProgress(t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(u.prototype, "buffer", { set: function (t) { this.foundation.setBuffer(t) }, enumerable: !0, configurable: !0 }), u.prototype.open = function () { this.foundation.open() }, u.prototype.close = function () { this.foundation.close() }, u.prototype.initialSyncWithDOM = function () { var t = this; this.root.addEventListener("transitionend", function () { t.foundation.handleTransitionEnd() }) }, u.prototype.getDefaultFoundation = function () { var i = this, t = { addClass: function (t) { i.root.classList.add(t) }, forceLayout: function () { i.root.getBoundingClientRect() }, setBufferBarStyle: function (t, e) { var n = i.root.querySelector(a.MDCLinearProgressFoundation.strings.BUFFER_BAR_SELECTOR); n && n.style.setProperty(t, e) }, setPrimaryBarStyle: function (t, e) { var n = i.root.querySelector(a.MDCLinearProgressFoundation.strings.PRIMARY_BAR_SELECTOR); n && n.style.setProperty(t, e) }, hasClass: function (t) { return i.root.classList.contains(t) }, removeAttribute: function (t) { i.root.removeAttribute(t) }, removeClass: function (t) { i.root.classList.remove(t) }, setAttribute: function (t, e) { i.root.setAttribute(t, e) }, setStyle: function (t, e) { i.root.style.setProperty(t, e) }, attachResizeObserver: function (t) { var e = window.ResizeObserver; if (e) { var n = new e(t); return n.observe(i.root), n } return null }, getWidth: function () { return i.root.offsetWidth } }; return new a.MDCLinearProgressFoundation(t) }, u); function u() { return null !== o && o.apply(this, arguments) || this } e.MDCLinearProgress = c }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }, a = this && this.__values || function (t) { var e = "function" == typeof Symbol && Symbol.iterator, n = e && t[e], i = 0; if (n) return n.call(t); if (t && "number" == typeof t.length) return { next: function () { return t && i >= t.length && (t = void 0), { value: t && t[i++], done: !t } } }; throw new TypeError(e ? "Object is not iterable." : "Symbol.iterator is not defined.") }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, c = n(10), u = n(0), l = n(56), d = (s = u.MDCFoundation, r(p, s), Object.defineProperty(p, "cssClasses", { get: function () { return l.cssClasses }, enumerable: !0, configurable: !0 }), Object.defineProperty(p, "strings", { get: function () { return l.strings }, enumerable: !0, configurable: !0 }), Object.defineProperty(p, "defaultAdapter", { get: function () { return { addClass: function () { }, attachResizeObserver: function () { return null }, forceLayout: function () { }, getWidth: function () { return 0 }, hasClass: function () { return !1 }, setBufferBarStyle: function () { return null }, setPrimaryBarStyle: function () { return null }, setStyle: function () { }, removeAttribute: function () { }, removeClass: function () { }, setAttribute: function () { } } }, enumerable: !0, configurable: !0 }), p.prototype.init = function () { var s = this; this.isDeterminate = !this.adapter.hasClass(l.cssClasses.INDETERMINATE_CLASS), this.adapter.addClass(l.cssClasses.ANIMATION_READY_CLASS), this.progress = 0, this.buffer = 1, this.observer = this.adapter.attachResizeObserver(function (t) { var e, n; if (!s.isDeterminate) try { for (var i = a(t), r = i.next(); !r.done; r = i.next()) { var o = r.value; o.contentRect && s.calculateAndSetDimensions(o.contentRect.width) } } catch (t) { e = { error: t } } finally { try { r && !r.done && (n = i.return) && n.call(i) } finally { if (e) throw e.error } } }), !this.isDeterminate && this.observer && this.calculateAndSetDimensions(this.adapter.getWidth()) }, p.prototype.setDeterminate = function (t) { if (this.isDeterminate = t, this.isDeterminate) return this.adapter.removeClass(l.cssClasses.INDETERMINATE_CLASS), this.adapter.setAttribute(l.strings.ARIA_VALUENOW, this.progress.toString()), this.adapter.setAttribute(l.strings.ARIA_VALUEMAX, "1"), this.adapter.setAttribute(l.strings.ARIA_VALUEMIN, "0"), this.setPrimaryBarProgress(this.progress), void this.setBufferBarProgress(this.buffer); this.observer && this.calculateAndSetDimensions(this.adapter.getWidth()), this.adapter.addClass(l.cssClasses.INDETERMINATE_CLASS), this.adapter.removeAttribute(l.strings.ARIA_VALUENOW), this.adapter.removeAttribute(l.strings.ARIA_VALUEMAX), this.adapter.removeAttribute(l.strings.ARIA_VALUEMIN), this.setPrimaryBarProgress(1), this.setBufferBarProgress(1) }, p.prototype.getDeterminate = function () { return this.isDeterminate }, p.prototype.setProgress = function (t) { this.progress = t, this.isDeterminate && (this.setPrimaryBarProgress(t), this.adapter.setAttribute(l.strings.ARIA_VALUENOW, t.toString())) }, p.prototype.getProgress = function () { return this.progress }, p.prototype.setBuffer = function (t) { this.buffer = t, this.isDeterminate && this.setBufferBarProgress(t) }, p.prototype.open = function () { this.adapter.removeClass(l.cssClasses.CLOSED_CLASS), this.adapter.removeClass(l.cssClasses.CLOSED_ANIMATION_OFF_CLASS) }, p.prototype.close = function () { this.adapter.addClass(l.cssClasses.CLOSED_CLASS) }, p.prototype.handleTransitionEnd = function () { this.adapter.hasClass(l.cssClasses.CLOSED_CLASS) && this.adapter.addClass(l.cssClasses.CLOSED_ANIMATION_OFF_CLASS) }, p.prototype.destroy = function () { s.prototype.destroy.call(this), this.observer && this.observer.disconnect() }, p.prototype.restartAnimation = function () { this.adapter.removeClass(l.cssClasses.ANIMATION_READY_CLASS), this.adapter.forceLayout(), this.adapter.addClass(l.cssClasses.ANIMATION_READY_CLASS) }, p.prototype.setPrimaryBarProgress = function (t) { var e = "scaleX(" + t + ")", n = "undefined" != typeof window ? c.getCorrectPropertyName(window, "transform") : "transform"; this.adapter.setPrimaryBarStyle(n, e) }, p.prototype.setBufferBarProgress = function (t) { var e = 100 * t + "%"; this.adapter.setBufferBarStyle(l.strings.FLEX_BASIS, e) }, p.prototype.calculateAndSetDimensions = function (t) { var e = t * l.animationDimensionPercentages.PRIMARY_HALF, n = t * l.animationDimensionPercentages.PRIMARY_FULL, i = t * l.animationDimensionPercentages.SECONDARY_QUARTER, r = t * l.animationDimensionPercentages.SECONDARY_HALF, o = t * l.animationDimensionPercentages.SECONDARY_FULL; this.adapter.setStyle("--mdc-linear-progress-primary-half", e + "px"), this.adapter.setStyle("--mdc-linear-progress-primary-half-neg", -e + "px"), this.adapter.setStyle("--mdc-linear-progress-primary-full", n + "px"), this.adapter.setStyle("--mdc-linear-progress-primary-full-neg", -n + "px"), this.adapter.setStyle("--mdc-linear-progress-secondary-quarter", i + "px"), this.adapter.setStyle("--mdc-linear-progress-secondary-quarter-neg", -i + "px"), this.adapter.setStyle("--mdc-linear-progress-secondary-half", r + "px"), this.adapter.setStyle("--mdc-linear-progress-secondary-half-neg", -r + "px"), this.adapter.setStyle("--mdc-linear-progress-secondary-full", o + "px"), this.adapter.setStyle("--mdc-linear-progress-secondary-full-neg", -o + "px"), this.restartAnimation() }, p); function p(t) { var e = s.call(this, o(o({}, p.defaultAdapter), t)) || this; return e.observer = null, e } e.MDCLinearProgressFoundation = d, e.default = d }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }), e.cssClasses = { CLOSED_CLASS: "mdc-linear-progress--closed", CLOSED_ANIMATION_OFF_CLASS: "mdc-linear-progress--closed-animation-off", INDETERMINATE_CLASS: "mdc-linear-progress--indeterminate", REVERSED_CLASS: "mdc-linear-progress--reversed", ANIMATION_READY_CLASS: "mdc-linear-progress--animation-ready" }, e.strings = { ARIA_VALUEMAX: "aria-valuemax", ARIA_VALUEMIN: "aria-valuemin", ARIA_VALUENOW: "aria-valuenow", BUFFER_BAR_SELECTOR: ".mdc-linear-progress__buffer-bar", FLEX_BASIS: "flex-basis", PRIMARY_BAR_SELECTOR: ".mdc-linear-progress__primary-bar" }, e.animationDimensionPercentages = { PRIMARY_HALF: .8367142, PRIMARY_FULL: 2.00611057, SECONDARY_QUARTER: .37651913, SECONDARY_HALF: .84386165, SECONDARY_FULL: 1.60277782 } }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }, s = this && this.__awaiter || function (t, s, a, c) { return new (a = a || Promise)(function (e, n) { function i(t) { try { o(c.next(t)) } catch (t) { n(t) } } function r(t) { try { o(c.throw(t)) } catch (t) { n(t) } } function o(t) { t.done ? e(t.value) : function (e) { return e instanceof a ? e : new a(function (t) { t(e) }) }(t.value).then(i, r) } o((c = c.apply(t, s || [])).next()) }) }, a = this && this.__generator || function (n, i) { var r, o, s, t, a = { label: 0, sent: function () { if (1 & s[0]) throw s[1]; return s[1] }, trys: [], ops: [] }; return t = { next: e(0), throw: e(1), return: e(2) }, "function" == typeof Symbol && (t[Symbol.iterator] = function () { return this }), t; function e(e) { return function (t) { return function (e) { if (r) throw new TypeError("Generator is already executing."); for (; a;)try { if (r = 1, o && (s = 2 & e[0] ? o.return : e[0] ? o.throw || ((s = o.return) && s.call(o), 0) : o.next) && !(s = s.call(o, e[1])).done) return s; switch (o = 0, s && (e = [2 & e[0], s.value]), e[0]) { case 0: case 1: s = e; break; case 4: return a.label++, { value: e[1], done: !1 }; case 5: a.label++, o = e[1], e = [0]; continue; case 7: e = a.ops.pop(), a.trys.pop(); continue; default: if (!(s = 0 < (s = a.trys).length && s[s.length - 1]) && (6 === e[0] || 2 === e[0])) { a = 0; continue } if (3 === e[0] && (!s || e[1] > s[0] && e[1] < s[3])) { a.label = e[1]; break } if (6 === e[0] && a.label < s[1]) { a.label = s[1], s = e; break } if (s && a.label < s[2]) { a.label = s[2], a.ops.push(e); break } s[2] && a.ops.pop(), a.trys.pop(); continue }e = i.call(n, a) } catch (t) { e = [6, t], o = 0 } finally { r = s = 0 } if (5 & e[0]) throw e[1]; return { value: e[0] ? e[1] : void 0, done: !0 } }([e, t]) } } }; Object.defineProperty(e, "__esModule", { value: !0 }); var c, u = n(0), l = n(22), d = (c = u.MDCFoundation, r(p, c), Object.defineProperty(p, "defaultAdapter", { get: function () { return { addClass: function () { }, addClassAtRowIndex: function () { }, getAttributeByHeaderCellIndex: function () { return "" }, getHeaderCellCount: function () { return 0 }, getHeaderCellElements: function () { return [] }, getRowCount: function () { return 0 }, getRowElements: function () { return [] }, getRowIdAtIndex: function () { return "" }, getRowIndexByChildElement: function () { return 0 }, getSelectedRowCount: function () { return 0 }, getTableContainerHeight: function () { return 0 }, getTableHeaderHeight: function () { return 0 }, isCheckboxAtRowIndexChecked: function () { return !1 }, isHeaderRowCheckboxChecked: function () { return !1 }, isRowsSelectable: function () { return !1 }, notifyRowSelectionChanged: function () { }, notifySelectedAll: function () { }, notifySortAction: function () { }, notifyUnselectedAll: function () { }, registerHeaderRowCheckbox: function () { }, registerRowCheckboxes: function () { }, removeClass: function () { }, removeClassAtRowIndex: function () { }, removeClassNameByHeaderCellIndex: function () { }, setAttributeAtRowIndex: function () { }, setAttributeByHeaderCellIndex: function () { }, setClassNameByHeaderCellIndex: function () { }, setHeaderRowCheckboxChecked: function () { }, setHeaderRowCheckboxIndeterminate: function () { }, setProgressIndicatorStyles: function () { }, setRowCheckboxCheckedAtIndex: function () { }, setSortStatusLabelByHeaderCellIndex: function () { } } }, enumerable: !0, configurable: !0 }), p.prototype.layout = function () { this.adapter.isRowsSelectable() && (this.adapter.registerHeaderRowCheckbox(), this.adapter.registerRowCheckboxes(), this.setHeaderRowCheckboxState()) }, p.prototype.layoutAsync = function () { return s(this, void 0, void 0, function () { return a(this, function (t) { switch (t.label) { case 0: return this.adapter.isRowsSelectable() ? [4, this.adapter.registerHeaderRowCheckbox()] : [3, 3]; case 1: return t.sent(), [4, this.adapter.registerRowCheckboxes()]; case 2: t.sent(), this.setHeaderRowCheckboxState(), t.label = 3; case 3: return [2] } }) }) }, p.prototype.getRows = function () { return this.adapter.getRowElements() }, p.prototype.getHeaderCells = function () { return this.adapter.getHeaderCellElements() }, p.prototype.setSelectedRowIds = function (t) { for (var e = 0; e < this.adapter.getRowCount(); e++) { var n = this.adapter.getRowIdAtIndex(e), i = !1; n && 0 <= t.indexOf(n) && (i = !0), this.adapter.setRowCheckboxCheckedAtIndex(e, i), this.selectRowAtIndex(e, i) } this.setHeaderRowCheckboxState() }, p.prototype.getRowIds = function () { for (var t = [], e = 0; e < this.adapter.getRowCount(); e++)t.push(this.adapter.getRowIdAtIndex(e)); return t }, p.prototype.getSelectedRowIds = function () { for (var t = [], e = 0; e < this.adapter.getRowCount(); e++)this.adapter.isCheckboxAtRowIndexChecked(e) && t.push(this.adapter.getRowIdAtIndex(e)); return t }, p.prototype.handleHeaderRowCheckboxChange = function () { for (var t = this.adapter.isHeaderRowCheckboxChecked(), e = 0; e < this.adapter.getRowCount(); e++)this.adapter.setRowCheckboxCheckedAtIndex(e, t), this.selectRowAtIndex(e, t); t ? this.adapter.notifySelectedAll() : this.adapter.notifyUnselectedAll() }, p.prototype.handleRowCheckboxChange = function (t) { var e = this.adapter.getRowIndexByChildElement(t.target); if (-1 !== e) { var n = this.adapter.isCheckboxAtRowIndexChecked(e); this.selectRowAtIndex(e, n), this.setHeaderRowCheckboxState(); var i = this.adapter.getRowIdAtIndex(e); this.adapter.notifyRowSelectionChanged({ rowId: i, rowIndex: e, selected: n }) } }, p.prototype.handleSortAction = function (t) { for (var e = t.columnId, n = t.columnIndex, i = t.headerCell, r = 0; r < this.adapter.getHeaderCellCount(); r++)r !== n && (this.adapter.removeClassNameByHeaderCellIndex(r, l.cssClasses.HEADER_CELL_SORTED), this.adapter.removeClassNameByHeaderCellIndex(r, l.cssClasses.HEADER_CELL_SORTED_DESCENDING), this.adapter.setAttributeByHeaderCellIndex(r, l.strings.ARIA_SORT, l.SortValue.NONE), this.adapter.setSortStatusLabelByHeaderCellIndex(r, l.SortValue.NONE)); this.adapter.setClassNameByHeaderCellIndex(n, l.cssClasses.HEADER_CELL_SORTED); var o = this.adapter.getAttributeByHeaderCellIndex(n, l.strings.ARIA_SORT), s = l.SortValue.NONE; s = o === l.SortValue.ASCENDING ? (this.adapter.setClassNameByHeaderCellIndex(n, l.cssClasses.HEADER_CELL_SORTED_DESCENDING), this.adapter.setAttributeByHeaderCellIndex(n, l.strings.ARIA_SORT, l.SortValue.DESCENDING), l.SortValue.DESCENDING) : (o === l.SortValue.DESCENDING && this.adapter.removeClassNameByHeaderCellIndex(n, l.cssClasses.HEADER_CELL_SORTED_DESCENDING), this.adapter.setAttributeByHeaderCellIndex(n, l.strings.ARIA_SORT, l.SortValue.ASCENDING), l.SortValue.ASCENDING), this.adapter.setSortStatusLabelByHeaderCellIndex(n, s), this.adapter.notifySortAction({ columnId: e, columnIndex: n, headerCell: i, sortValue: s }) }, p.prototype.showProgress = function () { var t = this.adapter.getTableHeaderHeight(), e = this.adapter.getTableContainerHeight() - t, n = t; this.adapter.setProgressIndicatorStyles({ height: e + "px", top: n + "px" }), this.adapter.addClass(l.cssClasses.IN_PROGRESS) }, p.prototype.hideProgress = function () { this.adapter.removeClass(l.cssClasses.IN_PROGRESS) }, p.prototype.setHeaderRowCheckboxState = function () { 0 === this.adapter.getSelectedRowCount() ? (this.adapter.setHeaderRowCheckboxChecked(!1), this.adapter.setHeaderRowCheckboxIndeterminate(!1)) : this.adapter.getSelectedRowCount() === this.adapter.getRowCount() ? (this.adapter.setHeaderRowCheckboxChecked(!0), this.adapter.setHeaderRowCheckboxIndeterminate(!1)) : (this.adapter.setHeaderRowCheckboxIndeterminate(!0), this.adapter.setHeaderRowCheckboxChecked(!1)) }, p.prototype.selectRowAtIndex = function (t, e) { e ? (this.adapter.addClassAtRowIndex(t, l.cssClasses.ROW_SELECTED), this.adapter.setAttributeAtRowIndex(t, l.strings.ARIA_SELECTED, "true")) : (this.adapter.removeClassAtRowIndex(t, l.cssClasses.ROW_SELECTED), this.adapter.setAttributeAtRowIndex(t, l.strings.ARIA_SELECTED, "false")) }, p); function p(t) { return c.call(this, o(o({}, p.defaultAdapter), t)) || this } e.MDCDataTableFoundation = d }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }), e.createFocusTrapInstance = function (t, e, n) { return e(t, { initialFocusEl: n }) }, e.isScrollable = function (t) { return !!t && t.scrollHeight > t.offsetHeight }, e.isScrollAtTop = function (t) { return !!t && 0 === t.scrollTop }, e.isScrollAtBottom = function (t) { return !!t && Math.ceil(t.scrollHeight - t.scrollTop) === t.clientHeight }, e.areTopsMisaligned = function (t) { var e = new Set; return [].forEach.call(t, function (t) { return e.add(t.offsetTop) }), 1 < e.size } }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a = n(60), c = n(0), u = n(61); (s = s || {}).POLL_SCROLL_POS = "poll_scroll_position"; var l, d = (l = c.MDCFoundation, r(p, l), Object.defineProperty(p, "cssClasses", { get: function () { return u.cssClasses }, enumerable: !0, configurable: !0 }), Object.defineProperty(p, "strings", { get: function () { return u.strings }, enumerable: !0, configurable: !0 }), Object.defineProperty(p, "numbers", { get: function () { return u.numbers }, enumerable: !0, configurable: !0 }), Object.defineProperty(p, "defaultAdapter", { get: function () { return { addBodyClass: function () { }, addClass: function () { }, areButtonsStacked: function () { return !1 }, clickDefaultButton: function () { }, eventTargetMatches: function () { return !1 }, getActionFromEvent: function () { return "" }, getInitialFocusEl: function () { return null }, hasClass: function () { return !1 }, isContentScrollable: function () { return !1 }, notifyClosed: function () { }, notifyClosing: function () { }, notifyOpened: function () { }, notifyOpening: function () { }, releaseFocus: function () { }, removeBodyClass: function () { }, removeClass: function () { }, reverseButtons: function () { }, trapFocus: function () { }, registerContentEventHandler: function () { }, deregisterContentEventHandler: function () { }, isScrollableContentAtTop: function () { return !1 }, isScrollableContentAtBottom: function () { return !1 } } }, enumerable: !0, configurable: !0 }), p.prototype.init = function () { this.adapter.hasClass(u.cssClasses.STACKED) && this.setAutoStackButtons(!1), this.isFullscreen = this.adapter.hasClass(u.cssClasses.FULLSCREEN) }, p.prototype.destroy = function () { this.dialogOpen && this.close(u.strings.DESTROY_ACTION), this.animationTimer && (clearTimeout(this.animationTimer), this.handleAnimationTimerEnd()), this.layoutFrame && (cancelAnimationFrame(this.layoutFrame), this.layoutFrame = 0), this.isFullscreen && this.adapter.isContentScrollable() && this.adapter.deregisterContentEventHandler("scroll", this.contentScrollHandler) }, p.prototype.open = function () { var t = this; this.dialogOpen = !0, this.adapter.notifyOpening(), this.adapter.addClass(u.cssClasses.OPENING), this.isFullscreen && this.adapter.isContentScrollable() && this.adapter.registerContentEventHandler("scroll", this.contentScrollHandler), this.runNextAnimationFrame(function () { t.adapter.addClass(u.cssClasses.OPEN), t.adapter.addBodyClass(u.cssClasses.SCROLL_LOCK), t.layout(), t.animationTimer = setTimeout(function () { t.handleAnimationTimerEnd(), t.adapter.trapFocus(t.adapter.getInitialFocusEl()), t.adapter.notifyOpened() }, u.numbers.DIALOG_ANIMATION_OPEN_TIME_MS) }) }, p.prototype.close = function (t) { var e = this; void 0 === t && (t = ""), this.dialogOpen && (this.dialogOpen = !1, this.adapter.notifyClosing(t), this.adapter.addClass(u.cssClasses.CLOSING), this.adapter.removeClass(u.cssClasses.OPEN), this.adapter.removeBodyClass(u.cssClasses.SCROLL_LOCK), this.isFullscreen && this.adapter.isContentScrollable() && this.adapter.deregisterContentEventHandler("scroll", this.contentScrollHandler), cancelAnimationFrame(this.animationFrame), this.animationFrame = 0, clearTimeout(this.animationTimer), this.animationTimer = setTimeout(function () { e.adapter.releaseFocus(), e.handleAnimationTimerEnd(), e.adapter.notifyClosed(t) }, u.numbers.DIALOG_ANIMATION_CLOSE_TIME_MS)) }, p.prototype.isOpen = function () { return this.dialogOpen }, p.prototype.getEscapeKeyAction = function () { return this.escapeKeyAction }, p.prototype.setEscapeKeyAction = function (t) { this.escapeKeyAction = t }, p.prototype.getScrimClickAction = function () { return this.scrimClickAction }, p.prototype.setScrimClickAction = function (t) { this.scrimClickAction = t }, p.prototype.getAutoStackButtons = function () { return this.autoStackButtons }, p.prototype.setAutoStackButtons = function (t) { this.autoStackButtons = t }, p.prototype.getSuppressDefaultPressSelector = function () { return this.suppressDefaultPressSelector }, p.prototype.setSuppressDefaultPressSelector = function (t) { this.suppressDefaultPressSelector = t }, p.prototype.layout = function () { var t = this; this.layoutFrame && cancelAnimationFrame(this.layoutFrame), this.layoutFrame = requestAnimationFrame(function () { t.layoutInternal(), t.layoutFrame = 0 }) }, p.prototype.handleClick = function (t) { if (this.adapter.eventTargetMatches(t.target, u.strings.SCRIM_SELECTOR) && "" !== this.scrimClickAction) this.close(this.scrimClickAction); else { var e = this.adapter.getActionFromEvent(t); e && this.close(e) } }, p.prototype.handleKeydown = function (t) { var e = "Enter" === t.key || 13 === t.keyCode; if (e && !this.adapter.getActionFromEvent(t)) { var n = t.composedPath ? t.composedPath()[0] : t.target, i = !this.suppressDefaultPressSelector || !this.adapter.eventTargetMatches(n, this.suppressDefaultPressSelector); e && i && this.adapter.clickDefaultButton() } }, p.prototype.handleDocumentKeydown = function (t) { "Escape" !== t.key && 27 !== t.keyCode || "" === this.escapeKeyAction || this.close(this.escapeKeyAction) }, p.prototype.handleScrollEvent = function () { var t = this; this.animFrame.request(s.POLL_SCROLL_POS, function () { t.toggleScrollDividerHeader(), t.toggleScrollDividerFooter() }) }, p.prototype.layoutInternal = function () { this.autoStackButtons && this.detectStackedButtons(), this.toggleScrollableClasses() }, p.prototype.handleAnimationTimerEnd = function () { this.animationTimer = 0, this.adapter.removeClass(u.cssClasses.OPENING), this.adapter.removeClass(u.cssClasses.CLOSING) }, p.prototype.runNextAnimationFrame = function (t) { var e = this; cancelAnimationFrame(this.animationFrame), this.animationFrame = requestAnimationFrame(function () { e.animationFrame = 0, clearTimeout(e.animationTimer), e.animationTimer = setTimeout(t, 0) }) }, p.prototype.detectStackedButtons = function () { this.adapter.removeClass(u.cssClasses.STACKED); var t = this.adapter.areButtonsStacked(); t && this.adapter.addClass(u.cssClasses.STACKED), t !== this.areButtonsStacked && (this.adapter.reverseButtons(), this.areButtonsStacked = t) }, p.prototype.toggleScrollableClasses = function () { this.adapter.removeClass(u.cssClasses.SCROLLABLE), this.adapter.isContentScrollable() && (this.adapter.addClass(u.cssClasses.SCROLLABLE), this.isFullscreen && (this.toggleScrollDividerHeader(), this.toggleScrollDividerFooter())) }, p.prototype.toggleScrollDividerHeader = function () { this.adapter.isScrollableContentAtTop() ? this.adapter.hasClass(u.cssClasses.SCROLL_DIVIDER_HEADER) && this.adapter.removeClass(u.cssClasses.SCROLL_DIVIDER_HEADER) : this.adapter.addClass(u.cssClasses.SCROLL_DIVIDER_HEADER) }, p.prototype.toggleScrollDividerFooter = function () { this.adapter.isScrollableContentAtBottom() ? this.adapter.hasClass(u.cssClasses.SCROLL_DIVIDER_FOOTER) && this.adapter.removeClass(u.cssClasses.SCROLL_DIVIDER_FOOTER) : this.adapter.addClass(u.cssClasses.SCROLL_DIVIDER_FOOTER) }, p); function p(t) { var e = l.call(this, o(o({}, p.defaultAdapter), t)) || this; return e.dialogOpen = !1, e.isFullscreen = !1, e.animationFrame = 0, e.animationTimer = 0, e.layoutFrame = 0, e.escapeKeyAction = u.strings.CLOSE_ACTION, e.scrimClickAction = u.strings.CLOSE_ACTION, e.autoStackButtons = !0, e.areButtonsStacked = !1, e.suppressDefaultPressSelector = u.strings.SUPPRESS_DEFAULT_PRESS_SELECTOR, e.animFrame = new a.AnimationFrame, e.contentScrollHandler = function () { e.handleScrollEvent() }, e } e.MDCDialogFoundation = d, e.default = d }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }); var i = (r.prototype.request = function (e, n) { var i = this; this.cancel(e); var t = requestAnimationFrame(function (t) { i.rafIDs.delete(e), n(t) }); this.rafIDs.set(e, t) }, r.prototype.cancel = function (t) { var e = this.rafIDs.get(t); e && (cancelAnimationFrame(e), this.rafIDs.delete(t)) }, r.prototype.cancelAll = function () { var n = this; this.rafIDs.forEach(function (t, e) { n.cancel(e) }) }, r.prototype.getQueue = function () { var n = []; return this.rafIDs.forEach(function (t, e) { n.push(e) }), n }, r); function r() { this.rafIDs = new Map } e.AnimationFrame = i }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }), e.cssClasses = { CLOSING: "mdc-dialog--closing", OPEN: "mdc-dialog--open", OPENING: "mdc-dialog--opening", SCROLLABLE: "mdc-dialog--scrollable", SCROLL_LOCK: "mdc-dialog-scroll-lock", STACKED: "mdc-dialog--stacked", FULLSCREEN: "mdc-dialog--fullscreen", SCROLL_DIVIDER_HEADER: "mdc-dialog-scroll-divider-header", SCROLL_DIVIDER_FOOTER: "mdc-dialog-scroll-divider-footer" }, e.strings = { ACTION_ATTRIBUTE: "data-mdc-dialog-action", BUTTON_DEFAULT_ATTRIBUTE: "data-mdc-dialog-button-default", BUTTON_SELECTOR: ".mdc-dialog__button", CLOSED_EVENT: "MDCDialog:closed", CLOSE_ACTION: "close", CLOSING_EVENT: "MDCDialog:closing", CONTAINER_SELECTOR: ".mdc-dialog__container", CONTENT_SELECTOR: ".mdc-dialog__content", DESTROY_ACTION: "destroy", INITIAL_FOCUS_ATTRIBUTE: "data-mdc-dialog-initial-focus", OPENED_EVENT: "MDCDialog:opened", OPENING_EVENT: "MDCDialog:opening", SCRIM_SELECTOR: ".mdc-dialog__scrim", SUPPRESS_DEFAULT_PRESS_SELECTOR: ["textarea", ".mdc-menu .mdc-list-item"].join(", "), SURFACE_SELECTOR: ".mdc-dialog__surface" }, e.numbers = { DIALOG_ANIMATION_CLOSE_TIME_MS: 75, DIALOG_ANIMATION_OPEN_TIME_MS: 150 } }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }), e.createFocusTrapInstance = function (t, e) { return e(t, { skipInitialFocus: !0 }) } }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }); var i = ["input", "button", "textarea", "select"]; e.preventDefaultEvent = function (t) { var e = t.target; if (e) { var n = ("" + e.tagName).toLowerCase(); -1 === i.indexOf(n) && t.preventDefault() } } }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }); e.cssClasses = { ANIMATE: "mdc-drawer--animate", CLOSING: "mdc-drawer--closing", DISMISSIBLE: "mdc-drawer--dismissible", MODAL: "mdc-drawer--modal", OPEN: "mdc-drawer--open", OPENING: "mdc-drawer--opening", ROOT: "mdc-drawer" }; e.strings = { APP_CONTENT_SELECTOR: ".mdc-drawer-app-content", CLOSE_EVENT: "MDCDrawer:closed", OPEN_EVENT: "MDCDrawer:opened", SCRIM_SELECTOR: ".mdc-drawer-scrim" } }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }); Object.defineProperty(e, "__esModule", { value: !0 }); var o, s = n(25), a = (o = s.MDCDismissibleDrawerFoundation, r(c, o), c.prototype.handleScrimClick = function () { this.close() }, c.prototype.opened_ = function () { this.adapter.trapFocus() }, c.prototype.closed_ = function () { this.adapter.releaseFocus() }, c); function c() { return null !== o && o.apply(this, arguments) || this } e.MDCModalDrawerFoundation = a, e.default = a }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }), e.cssClasses = { LABEL_FLOAT_ABOVE: "mdc-floating-label--float-above", LABEL_REQUIRED: "mdc-floating-label--required", LABEL_SHAKE: "mdc-floating-label--shake", ROOT: "mdc-floating-label" } }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a = n(0), c = n(68), u = (s = a.MDCFoundation, r(l, s), Object.defineProperty(l, "cssClasses", { get: function () { return c.cssClasses }, enumerable: !0, configurable: !0 }), Object.defineProperty(l, "strings", { get: function () { return c.strings }, enumerable: !0, configurable: !0 }), Object.defineProperty(l, "defaultAdapter", { get: function () { return { activateInputRipple: function () { }, deactivateInputRipple: function () { }, deregisterInteractionHandler: function () { }, registerInteractionHandler: function () { } } }, enumerable: !0, configurable: !0 }), l.prototype.init = function () { this.adapter.registerInteractionHandler("click", this.click) }, l.prototype.destroy = function () { this.adapter.deregisterInteractionHandler("click", this.click) }, l.prototype.handleClick = function () { var t = this; this.adapter.activateInputRipple(), requestAnimationFrame(function () { t.adapter.deactivateInputRipple() }) }, l); function l(t) { var e = s.call(this, o(o({}, l.defaultAdapter), t)) || this; return e.click = function () { e.handleClick() }, e } e.MDCFormFieldFoundation = u, e.default = u }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }), e.cssClasses = { ROOT: "mdc-form-field" }, e.strings = { LABEL_SELECTOR: ".mdc-form-field > label" } }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a = n(0), c = n(70), u = (s = a.MDCFoundation, r(l, s), Object.defineProperty(l, "cssClasses", { get: function () { return c.cssClasses }, enumerable: !0, configurable: !0 }), Object.defineProperty(l, "strings", { get: function () { return c.strings }, enumerable: !0, configurable: !0 }), Object.defineProperty(l, "defaultAdapter", { get: function () { return { addClass: function () { }, hasClass: function () { return !1 }, notifyChange: function () { }, removeClass: function () { }, getAttr: function () { return null }, setAttr: function () { } } }, enumerable: !0, configurable: !0 }), l.prototype.init = function () { var t = this.adapter.getAttr(c.strings.DATA_ARIA_LABEL_ON), e = this.adapter.getAttr(c.strings.DATA_ARIA_LABEL_OFF); if (t && e) { if (null !== this.adapter.getAttr(c.strings.ARIA_PRESSED)) throw new Error("MDCIconButtonToggleFoundation: Button should not set `aria-pressed` if it has a toggled aria label."); this.hasToggledAriaLabel = !0 } else this.adapter.setAttr(c.strings.ARIA_PRESSED, String(this.isOn())) }, l.prototype.handleClick = function () { this.toggle(), this.adapter.notifyChange({ isOn: this.isOn() }) }, l.prototype.isOn = function () { return this.adapter.hasClass(c.cssClasses.ICON_BUTTON_ON) }, l.prototype.toggle = function (t) { if (void 0 === t && (t = !this.isOn()), t ? this.adapter.addClass(c.cssClasses.ICON_BUTTON_ON) : this.adapter.removeClass(c.cssClasses.ICON_BUTTON_ON), this.hasToggledAriaLabel) { var e = t ? this.adapter.getAttr(c.strings.DATA_ARIA_LABEL_ON) : this.adapter.getAttr(c.strings.DATA_ARIA_LABEL_OFF); this.adapter.setAttr(c.strings.ARIA_LABEL, e || "") } else this.adapter.setAttr(c.strings.ARIA_PRESSED, "" + t) }, l); function l(t) { var e = s.call(this, o(o({}, l.defaultAdapter), t)) || this; return e.hasToggledAriaLabel = !1, e } e.MDCIconButtonToggleFoundation = u, e.default = u }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }), e.cssClasses = { ICON_BUTTON_ON: "mdc-icon-button--on", ROOT: "mdc-icon-button" }, e.strings = { ARIA_LABEL: "aria-label", ARIA_PRESSED: "aria-pressed", DATA_ARIA_LABEL_OFF: "data-aria-label-off", DATA_ARIA_LABEL_ON: "data-aria-label-on", CHANGE_EVENT: "MDCIconButtonToggle:change" } }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a = n(0), c = n(72), u = (s = a.MDCFoundation, r(l, s), Object.defineProperty(l, "cssClasses", { get: function () { return c.cssClasses }, enumerable: !0, configurable: !0 }), Object.defineProperty(l, "defaultAdapter", { get: function () { return { addClass: function () { }, removeClass: function () { }, hasClass: function () { return !1 }, setStyle: function () { }, registerEventHandler: function () { }, deregisterEventHandler: function () { } } }, enumerable: !0, configurable: !0 }), l.prototype.init = function () { this.adapter.registerEventHandler("transitionend", this.transitionEndHandler_) }, l.prototype.destroy = function () { this.adapter.deregisterEventHandler("transitionend", this.transitionEndHandler_) }, l.prototype.activate = function () { this.adapter.removeClass(c.cssClasses.LINE_RIPPLE_DEACTIVATING), this.adapter.addClass(c.cssClasses.LINE_RIPPLE_ACTIVE) }, l.prototype.setRippleCenter = function (t) { this.adapter.setStyle("transform-origin", t + "px center") }, l.prototype.deactivate = function () { this.adapter.addClass(c.cssClasses.LINE_RIPPLE_DEACTIVATING) }, l.prototype.handleTransitionEnd = function (t) { var e = this.adapter.hasClass(c.cssClasses.LINE_RIPPLE_DEACTIVATING); "opacity" === t.propertyName && e && (this.adapter.removeClass(c.cssClasses.LINE_RIPPLE_ACTIVE), this.adapter.removeClass(c.cssClasses.LINE_RIPPLE_DEACTIVATING)) }, l); function l(t) { var e = s.call(this, o(o({}, l.defaultAdapter), t)) || this; return e.transitionEndHandler_ = function (t) { return e.handleTransitionEnd(t) }, e } e.MDCLineRippleFoundation = u, e.default = u }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }); e.cssClasses = { LINE_RIPPLE_ACTIVE: "mdc-line-ripple--active", LINE_RIPPLE_DEACTIVATING: "mdc-line-ripple--deactivating" } }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }); Object.defineProperty(e, "__esModule", { value: !0 }); var o, s = n(1), a = n(8), c = n(14), u = n(10), l = (o = s.MDCComponent, r(d, o), d.attachTo = function (t) { return new d(t) }, d.prototype.initialSyncWithDOM = function () { var e = this, t = this.root.parentElement; this.anchorElement = t && t.classList.contains(a.cssClasses.ANCHOR) ? t : null, this.root.classList.contains(a.cssClasses.FIXED) && this.setFixedPosition(!0), this.handleKeydown = function (t) { e.foundation.handleKeydown(t) }, this.handleBodyClick = function (t) { e.foundation.handleBodyClick(t) }, this.registerBodyClickListener = function () { document.body.addEventListener("click", e.handleBodyClick, { capture: !0 }) }, this.deregisterBodyClickListener = function () { document.body.removeEventListener("click", e.handleBodyClick, { capture: !0 }) }, this.listen("keydown", this.handleKeydown), this.listen(a.strings.OPENED_EVENT, this.registerBodyClickListener), this.listen(a.strings.CLOSED_EVENT, this.deregisterBodyClickListener) }, d.prototype.destroy = function () { this.unlisten("keydown", this.handleKeydown), this.unlisten(a.strings.OPENED_EVENT, this.registerBodyClickListener), this.unlisten(a.strings.CLOSED_EVENT, this.deregisterBodyClickListener), o.prototype.destroy.call(this) }, d.prototype.isOpen = function () { return this.foundation.isOpen() }, d.prototype.open = function () { this.foundation.open() }, d.prototype.close = function (t) { void 0 === t && (t = !1), this.foundation.close(t) }, Object.defineProperty(d.prototype, "quickOpen", { set: function (t) { this.foundation.setQuickOpen(t) }, enumerable: !0, configurable: !0 }), d.prototype.setIsHoisted = function (t) { this.foundation.setIsHoisted(t) }, d.prototype.setMenuSurfaceAnchorElement = function (t) { this.anchorElement = t }, d.prototype.setFixedPosition = function (t) { t ? this.root.classList.add(a.cssClasses.FIXED) : this.root.classList.remove(a.cssClasses.FIXED), this.foundation.setFixedPosition(t) }, d.prototype.setAbsolutePosition = function (t, e) { this.foundation.setAbsolutePosition(t, e), this.setIsHoisted(!0) }, d.prototype.setAnchorCorner = function (t) { this.foundation.setAnchorCorner(t) }, d.prototype.setAnchorMargin = function (t) { this.foundation.setAnchorMargin(t) }, d.prototype.getDefaultFoundation = function () { var n = this, t = { addClass: function (t) { return n.root.classList.add(t) }, removeClass: function (t) { return n.root.classList.remove(t) }, hasClass: function (t) { return n.root.classList.contains(t) }, hasAnchor: function () { return !!n.anchorElement }, notifyClose: function () { return n.emit(c.MDCMenuSurfaceFoundation.strings.CLOSED_EVENT, {}) }, notifyClosing: function () { n.emit(c.MDCMenuSurfaceFoundation.strings.CLOSING_EVENT, {}) }, notifyOpen: function () { return n.emit(c.MDCMenuSurfaceFoundation.strings.OPENED_EVENT, {}) }, isElementInContainer: function (t) { return n.root.contains(t) }, isRtl: function () { return "rtl" === getComputedStyle(n.root).getPropertyValue("direction") }, setTransformOrigin: function (t) { var e = u.getCorrectPropertyName(window, "transform") + "-origin"; n.root.style.setProperty(e, t) }, isFocused: function () { return document.activeElement === n.root }, saveFocus: function () { n.previousFocus = document.activeElement }, restoreFocus: function () { n.root.contains(document.activeElement) && n.previousFocus && n.previousFocus.focus && n.previousFocus.focus() }, getInnerDimensions: function () { return { width: n.root.offsetWidth, height: n.root.offsetHeight } }, getAnchorDimensions: function () { return n.anchorElement ? n.anchorElement.getBoundingClientRect() : null }, getWindowDimensions: function () { return { width: window.innerWidth, height: window.innerHeight } }, getBodyDimensions: function () { return { width: document.body.clientWidth, height: document.body.clientHeight } }, getWindowScroll: function () { return { x: window.pageXOffset, y: window.pageYOffset } }, setPosition: function (t) { var e = n.root; e.style.left = "left" in t ? t.left + "px" : "", e.style.right = "right" in t ? t.right + "px" : "", e.style.top = "top" in t ? t.top + "px" : "", e.style.bottom = "bottom" in t ? t.bottom + "px" : "" }, setMaxHeight: function (t) { n.root.style.maxHeight = t } }; return new c.MDCMenuSurfaceFoundation(t) }, d); function d() { return null !== o && o.apply(this, arguments) || this } e.MDCMenuSurface = l }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }); Object.defineProperty(e, "__esModule", { value: !0 }); var o, s = n(1), a = n(2), c = n(24), u = n(7), l = n(13), d = n(73), p = n(14), h = n(15), f = n(75), _ = (o = s.MDCComponent, r(y, o), y.attachTo = function (t) { return new y(t) }, y.prototype.initialize = function (t, e) { void 0 === t && (t = function (t) { return new d.MDCMenuSurface(t) }), void 0 === e && (e = function (t) { return new c.MDCList(t) }), this.menuSurfaceFactory_ = t, this.listFactory_ = e }, y.prototype.initialSyncWithDOM = function () { var e = this; this.menuSurface_ = this.menuSurfaceFactory_(this.root); var t = this.root.querySelector(h.strings.LIST_SELECTOR); t ? (this.list_ = this.listFactory_(t), this.list_.wrapFocus = !0) : this.list_ = null, this.handleKeydown_ = function (t) { return e.foundation.handleKeydown(t) }, this.handleItemAction_ = function (t) { return e.foundation.handleItemAction(e.items[t.detail.index]) }, this.handleMenuSurfaceOpened_ = function () { return e.foundation.handleMenuSurfaceOpened() }, this.menuSurface_.listen(p.MDCMenuSurfaceFoundation.strings.OPENED_EVENT, this.handleMenuSurfaceOpened_), this.listen("keydown", this.handleKeydown_), this.listen(l.MDCListFoundation.strings.ACTION_EVENT, this.handleItemAction_) }, y.prototype.destroy = function () { this.list_ && this.list_.destroy(), this.menuSurface_.destroy(), this.menuSurface_.unlisten(p.MDCMenuSurfaceFoundation.strings.OPENED_EVENT, this.handleMenuSurfaceOpened_), this.unlisten("keydown", this.handleKeydown_), this.unlisten(l.MDCListFoundation.strings.ACTION_EVENT, this.handleItemAction_), o.prototype.destroy.call(this) }, Object.defineProperty(y.prototype, "open", { get: function () { return this.menuSurface_.isOpen() }, set: function (t) { t ? this.menuSurface_.open() : this.menuSurface_.close() }, enumerable: !0, configurable: !0 }), Object.defineProperty(y.prototype, "wrapFocus", { get: function () { return !!this.list_ && this.list_.wrapFocus }, set: function (t) { this.list_ && (this.list_.wrapFocus = t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(y.prototype, "hasTypeahead", { set: function (t) { this.list_ && (this.list_.hasTypeahead = t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(y.prototype, "typeaheadInProgress", { get: function () { return !!this.list_ && this.list_.typeaheadInProgress }, enumerable: !0, configurable: !0 }), y.prototype.typeaheadMatchItem = function (t, e) { return this.list_ ? this.list_.typeaheadMatchItem(t, e) : -1 }, y.prototype.layout = function () { this.list_ && this.list_.layout() }, Object.defineProperty(y.prototype, "items", { get: function () { return this.list_ ? this.list_.listElements : [] }, enumerable: !0, configurable: !0 }), Object.defineProperty(y.prototype, "singleSelection", { set: function (t) { this.list_ && (this.list_.singleSelection = t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(y.prototype, "selectedIndex", { get: function () { return this.list_ ? this.list_.selectedIndex : u.numbers.UNSET_INDEX }, set: function (t) { this.list_ && (this.list_.selectedIndex = t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(y.prototype, "quickOpen", { set: function (t) { this.menuSurface_.quickOpen = t }, enumerable: !0, configurable: !0 }), y.prototype.setDefaultFocusState = function (t) { this.foundation.setDefaultFocusState(t) }, y.prototype.setAnchorCorner = function (t) { this.menuSurface_.setAnchorCorner(t) }, y.prototype.setAnchorMargin = function (t) { this.menuSurface_.setAnchorMargin(t) }, y.prototype.setSelectedIndex = function (t) { this.foundation.setSelectedIndex(t) }, y.prototype.setEnabled = function (t, e) { this.foundation.setEnabled(t, e) }, y.prototype.getOptionByIndex = function (t) { return t < this.items.length ? this.items[t] : null }, y.prototype.getPrimaryTextAtIndex = function (t) { var e = this.getOptionByIndex(t); return e && this.list_ && this.list_.getPrimaryText(e) || "" }, y.prototype.setFixedPosition = function (t) { this.menuSurface_.setFixedPosition(t) }, y.prototype.setIsHoisted = function (t) { this.menuSurface_.setIsHoisted(t) }, y.prototype.setAbsolutePosition = function (t, e) { this.menuSurface_.setAbsolutePosition(t, e) }, y.prototype.setAnchorElement = function (t) { this.menuSurface_.anchorElement = t }, y.prototype.getDefaultFoundation = function () { var i = this, t = { addClassToElementAtIndex: function (t, e) { i.items[t].classList.add(e) }, removeClassFromElementAtIndex: function (t, e) { i.items[t].classList.remove(e) }, addAttributeToElementAtIndex: function (t, e, n) { i.items[t].setAttribute(e, n) }, removeAttributeFromElementAtIndex: function (t, e) { i.items[t].removeAttribute(e) }, elementContainsClass: function (t, e) { return t.classList.contains(e) }, closeSurface: function (t) { return i.menuSurface_.close(t) }, getElementIndex: function (t) { return i.items.indexOf(t) }, notifySelected: function (t) { return i.emit(h.strings.SELECTED_EVENT, { index: t.index, item: i.items[t.index] }) }, getMenuItemCount: function () { return i.items.length }, focusItemAtIndex: function (t) { return i.items[t].focus() }, focusListRoot: function () { return i.root.querySelector(h.strings.LIST_SELECTOR).focus() }, isSelectableItemAtIndex: function (t) { return !!a.closest(i.items[t], "." + h.cssClasses.MENU_SELECTION_GROUP) }, getSelectedSiblingOfItemAtIndex: function (t) { var e = a.closest(i.items[t], "." + h.cssClasses.MENU_SELECTION_GROUP).querySelector("." + h.cssClasses.MENU_SELECTED_LIST_ITEM); return e ? i.items.indexOf(e) : -1 } }; return new f.MDCMenuFoundation(t) }, y); function y() { return null !== o && o.apply(this, arguments) || this } e.MDCMenu = _ }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a = n(0), c = n(7), u = n(14), l = n(15), d = (s = a.MDCFoundation, r(p, s), Object.defineProperty(p, "cssClasses", { get: function () { return l.cssClasses }, enumerable: !0, configurable: !0 }), Object.defineProperty(p, "strings", { get: function () { return l.strings }, enumerable: !0, configurable: !0 }), Object.defineProperty(p, "numbers", { get: function () { return l.numbers }, enumerable: !0, configurable: !0 }), Object.defineProperty(p, "defaultAdapter", { get: function () { return { addClassToElementAtIndex: function () { }, removeClassFromElementAtIndex: function () { }, addAttributeToElementAtIndex: function () { }, removeAttributeFromElementAtIndex: function () { }, elementContainsClass: function () { return !1 }, closeSurface: function () { }, getElementIndex: function () { return -1 }, notifySelected: function () { }, getMenuItemCount: function () { return 0 }, focusItemAtIndex: function () { }, focusListRoot: function () { }, getSelectedSiblingOfItemAtIndex: function () { return -1 }, isSelectableItemAtIndex: function () { return !1 } } }, enumerable: !0, configurable: !0 }), p.prototype.destroy = function () { this.closeAnimationEndTimerId_ && clearTimeout(this.closeAnimationEndTimerId_), this.adapter.closeSurface() }, p.prototype.handleKeydown = function (t) { var e = t.key, n = t.keyCode; "Tab" !== e && 9 !== n || this.adapter.closeSurface(!0) }, p.prototype.handleItemAction = function (e) { var n = this, t = this.adapter.getElementIndex(e); t < 0 || (this.adapter.notifySelected({ index: t }), this.adapter.closeSurface(), this.closeAnimationEndTimerId_ = setTimeout(function () { var t = n.adapter.getElementIndex(e); 0 <= t && n.adapter.isSelectableItemAtIndex(t) && n.setSelectedIndex(t) }, u.MDCMenuSurfaceFoundation.numbers.TRANSITION_CLOSE_DURATION)) }, p.prototype.handleMenuSurfaceOpened = function () { switch (this.defaultFocusState_) { case l.DefaultFocusState.FIRST_ITEM: this.adapter.focusItemAtIndex(0); break; case l.DefaultFocusState.LAST_ITEM: this.adapter.focusItemAtIndex(this.adapter.getMenuItemCount() - 1); break; case l.DefaultFocusState.NONE: break; default: this.adapter.focusListRoot() } }, p.prototype.setDefaultFocusState = function (t) { this.defaultFocusState_ = t }, p.prototype.setSelectedIndex = function (t) { if (this.validatedIndex_(t), !this.adapter.isSelectableItemAtIndex(t)) throw new Error("MDCMenuFoundation: No selection group at specified index."); var e = this.adapter.getSelectedSiblingOfItemAtIndex(t); 0 <= e && (this.adapter.removeAttributeFromElementAtIndex(e, l.strings.ARIA_CHECKED_ATTR), this.adapter.removeClassFromElementAtIndex(e, l.cssClasses.MENU_SELECTED_LIST_ITEM)), this.adapter.addClassToElementAtIndex(t, l.cssClasses.MENU_SELECTED_LIST_ITEM), this.adapter.addAttributeToElementAtIndex(t, l.strings.ARIA_CHECKED_ATTR, "true") }, p.prototype.setEnabled = function (t, e) { this.validatedIndex_(t), e ? (this.adapter.removeClassFromElementAtIndex(t, c.cssClasses.LIST_ITEM_DISABLED_CLASS), this.adapter.addAttributeToElementAtIndex(t, l.strings.ARIA_DISABLED_ATTR, "false")) : (this.adapter.addClassToElementAtIndex(t, c.cssClasses.LIST_ITEM_DISABLED_CLASS), this.adapter.addAttributeToElementAtIndex(t, l.strings.ARIA_DISABLED_ATTR, "true")) }, p.prototype.validatedIndex_ = function (t) { var e = this.adapter.getMenuItemCount(); if (!(0 <= t && t < e)) throw new Error("MDCMenuFoundation: No list item at specified index.") }, p); function p(t) { var e = s.call(this, o(o({}, p.defaultAdapter), t)) || this; return e.closeAnimationEndTimerId_ = 0, e.defaultFocusState_ = l.DefaultFocusState.LIST_ROOT, e } e.MDCMenuFoundation = d, e.default = d }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a = n(0), c = n(30), u = (s = a.MDCFoundation, r(l, s), Object.defineProperty(l, "strings", { get: function () { return c.strings }, enumerable: !0, configurable: !0 }), Object.defineProperty(l, "cssClasses", { get: function () { return c.cssClasses }, enumerable: !0, configurable: !0 }), Object.defineProperty(l, "numbers", { get: function () { return c.numbers }, enumerable: !0, configurable: !0 }), Object.defineProperty(l, "defaultAdapter", { get: function () { return { addClass: function () { }, removeClass: function () { }, setNotchWidthProperty: function () { }, removeNotchWidthProperty: function () { } } }, enumerable: !0, configurable: !0 }), l.prototype.notch = function (t) { var e = l.cssClasses.OUTLINE_NOTCHED; 0 < t && (t += c.numbers.NOTCH_ELEMENT_PADDING), this.adapter.setNotchWidthProperty(t), this.adapter.addClass(e) }, l.prototype.closeNotch = function () { var t = l.cssClasses.OUTLINE_NOTCHED; this.adapter.removeClass(t), this.adapter.removeNotchWidthProperty() }, l); function l(t) { return s.call(this, o(o({}, l.defaultAdapter), t)) || this } e.MDCNotchedOutlineFoundation = u, e.default = u }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a = n(0), c = n(78), u = (s = a.MDCFoundation, r(l, s), Object.defineProperty(l, "cssClasses", { get: function () { return c.cssClasses }, enumerable: !0, configurable: !0 }), Object.defineProperty(l, "strings", { get: function () { return c.strings }, enumerable: !0, configurable: !0 }), Object.defineProperty(l, "defaultAdapter", { get: function () { return { addClass: function () { }, removeClass: function () { }, setNativeControlDisabled: function () { } } }, enumerable: !0, configurable: !0 }), l.prototype.setDisabled = function (t) { var e = l.cssClasses.DISABLED; this.adapter.setNativeControlDisabled(t), t ? this.adapter.addClass(e) : this.adapter.removeClass(e) }, l); function l(t) { return s.call(this, o(o({}, l.defaultAdapter), t)) || this } e.MDCRadioFoundation = u, e.default = u }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }); e.strings = { NATIVE_CONTROL_SELECTOR: ".mdc-radio__native-control" }; e.cssClasses = { DISABLED: "mdc-radio--disabled", ROOT: "mdc-radio" } }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }, s = this && this.__values || function (t) { var e = "function" == typeof Symbol && Symbol.iterator, n = e && t[e], i = 0; if (n) return n.call(t); if (t && "number" == typeof t.length) return { next: function () { return t && i >= t.length && (t = void 0), { value: t && t[i++], done: !t } } }; throw new TypeError(e ? "Object is not iterable." : "Symbol.iterator is not defined.") }; Object.defineProperty(e, "__esModule", { value: !0 }); var a, c = n(0), u = n(80), l = (a = c.MDCFoundation, r(d, a), Object.defineProperty(d, "defaultAdapter", { get: function () { return { hasClass: function () { return !1 }, getSegments: function () { return [] }, selectSegment: function () { }, unselectSegment: function () { }, notifySelectedChange: function () { } } }, enumerable: !0, configurable: !0 }), d.prototype.selectSegment = function (t) { this.adapter.selectSegment(t) }, d.prototype.unselectSegment = function (t) { this.adapter.unselectSegment(t) }, d.prototype.getSelectedSegments = function () { return this.adapter.getSegments().filter(function (t) { return t.selected }) }, d.prototype.isSegmentSelected = function (e) { return this.adapter.getSegments().some(function (t) { return (t.index === e || t.segmentId === e) && t.selected }) }, d.prototype.isSingleSelect = function () { return this.adapter.hasClass(u.cssClasses.SINGLE_SELECT) }, d.prototype.handleSelected = function (t) { this.isSingleSelect() && this.unselectPrevSelected(t.index), this.adapter.notifySelectedChange(t) }, d.prototype.unselectPrevSelected = function (t) { var e, n; try { for (var i = s(this.getSelectedSegments()), r = i.next(); !r.done; r = i.next()) { var o = r.value; o.index !== t && this.unselectSegment(o.index) } } catch (t) { e = { error: t } } finally { try { r && !r.done && (n = i.return) && n.call(i) } finally { if (e) throw e.error } } }, d); function d(t) { return a.call(this, o(o({}, d.defaultAdapter), t)) || this } e.MDCSegmentedButtonFoundation = l }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }), e.selectors = { SEGMENT: ".mdc-segmented-button__segment" }, e.events = { SELECTED: "selected", CHANGE: "change" }, e.cssClasses = { SINGLE_SELECT: "mdc-segmented-button--single-select" } }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a = n(1), c = n(3), u = n(4), l = n(82), d = n(83), p = (s = a.MDCComponent, r(h, s), Object.defineProperty(h.prototype, "ripple", { get: function () { return this.rippleComponent }, enumerable: !0, configurable: !0 }), h.attachTo = function (t) { return new h(t) }, h.prototype.initialize = function (t) { var e = this; void 0 === t && (t = function (t, e) { return new c.MDCRipple(t, e) }); var n = o(o({}, c.MDCRipple.createAdapter(this)), { computeBoundingRect: function () { return e.foundation.getDimensions() } }); this.rippleComponent = t(this.root, new u.MDCRippleFoundation(n)) }, h.prototype.initialSyncWithDOM = function () { var t = this; this.handleClick = function () { t.foundation.handleClick() }, this.listen(l.events.CLICK, this.handleClick) }, h.prototype.destroy = function () { this.ripple.destroy(), this.unlisten(l.events.CLICK, this.handleClick), s.prototype.destroy.call(this) }, h.prototype.getDefaultFoundation = function () { var n = this, t = { isSingleSelect: function () { return n.isSingleSelect }, getAttr: function (t) { return n.root.getAttribute(t) }, setAttr: function (t, e) { n.root.setAttribute(t, e) }, addClass: function (t) { n.root.classList.add(t) }, removeClass: function (t) { n.root.classList.remove(t) }, hasClass: function (t) { return n.root.classList.contains(t) }, notifySelectedChange: function (t) { n.emit(l.events.SELECTED, { index: n.index, selected: t, segmentId: n.getSegmentId() }, !0) }, getRootBoundingClientRect: function () { return n.root.getBoundingClientRect() } }; return new d.MDCSegmentedButtonSegmentFoundation(t) }, h.prototype.setIndex = function (t) { this.index = t }, h.prototype.setIsSingleSelect = function (t) { this.isSingleSelect = t }, h.prototype.isSelected = function () { return this.foundation.isSelected() }, h.prototype.setSelected = function () { this.foundation.setSelected() }, h.prototype.setUnselected = function () { this.foundation.setUnselected() }, h.prototype.getSegmentId = function () { return this.foundation.getSegmentId() }, h); function h() { return null !== s && s.apply(this, arguments) || this } e.MDCSegmentedButtonSegment = p }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }), e.booleans = { TRUE: "true", FALSE: "false" }, e.attributes = { ARIA_CHECKED: "aria-checked", ARIA_PRESSED: "aria-pressed", DATA_SEGMENT_ID: "data-segment-id" }, e.events = { CLICK: "click", SELECTED: "selected" }, e.cssClasses = { SELECTED: "mdc-segmented-button__segment--selected" } }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a = n(0), c = n(82), u = { bottom: 0, height: 0, left: 0, right: 0, top: 0, width: 0 }, l = (s = a.MDCFoundation, r(d, s), Object.defineProperty(d, "defaultAdapter", { get: function () { return { isSingleSelect: function () { return !1 }, getAttr: function () { return "" }, setAttr: function () { }, addClass: function () { }, removeClass: function () { }, hasClass: function () { return !1 }, notifySelectedChange: function () { }, getRootBoundingClientRect: function () { return u } } }, enumerable: !0, configurable: !0 }), d.prototype.isSelected = function () { return this.adapter.hasClass(c.cssClasses.SELECTED) }, d.prototype.setSelected = function () { this.adapter.addClass(c.cssClasses.SELECTED), this.setAriaAttr(c.booleans.TRUE) }, d.prototype.setUnselected = function () { this.adapter.removeClass(c.cssClasses.SELECTED), this.setAriaAttr(c.booleans.FALSE) }, d.prototype.getSegmentId = function () { var t; return null !== (t = this.adapter.getAttr(c.attributes.DATA_SEGMENT_ID)) && void 0 !== t ? t : void 0 }, d.prototype.handleClick = function () { this.adapter.isSingleSelect() ? this.setSelected() : this.toggleSelection(), this.adapter.notifySelectedChange(this.isSelected()) }, d.prototype.getDimensions = function () { return this.adapter.getRootBoundingClientRect() }, d.prototype.toggleSelection = function () { this.isSelected() ? this.setUnselected() : this.setSelected() }, d.prototype.setAriaAttr = function (t) { this.adapter.isSingleSelect() ? this.adapter.setAttr(c.attributes.ARIA_CHECKED, t) : this.adapter.setAttr(c.attributes.ARIA_PRESSED, t) }, d); function d(t) { return s.call(this, o(o({}, d.defaultAdapter), t)) || this } e.MDCSegmentedButtonSegmentFoundation = l }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a = n(0), c = n(6), u = n(8), l = n(31), d = (s = a.MDCFoundation, r(p, s), Object.defineProperty(p, "cssClasses", { get: function () { return l.cssClasses }, enumerable: !0, configurable: !0 }), Object.defineProperty(p, "numbers", { get: function () { return l.numbers }, enumerable: !0, configurable: !0 }), Object.defineProperty(p, "strings", { get: function () { return l.strings }, enumerable: !0, configurable: !0 }), Object.defineProperty(p, "defaultAdapter", { get: function () { return { addClass: function () { }, removeClass: function () { }, hasClass: function () { return !1 }, activateBottomLine: function () { }, deactivateBottomLine: function () { }, getSelectedIndex: function () { return -1 }, setSelectedIndex: function () { }, hasLabel: function () { return !1 }, floatLabel: function () { }, getLabelWidth: function () { return 0 }, setLabelRequired: function () { }, hasOutline: function () { return !1 }, notchOutline: function () { }, closeOutline: function () { }, setRippleCenter: function () { }, notifyChange: function () { }, setSelectedText: function () { }, isSelectAnchorFocused: function () { return !1 }, getSelectAnchorAttr: function () { return "" }, setSelectAnchorAttr: function () { }, removeSelectAnchorAttr: function () { }, addMenuClass: function () { }, removeMenuClass: function () { }, openMenu: function () { }, closeMenu: function () { }, getAnchorElement: function () { return null }, setMenuAnchorElement: function () { }, setMenuAnchorCorner: function () { }, setMenuWrapFocus: function () { }, focusMenuItemAtIndex: function () { }, getMenuItemCount: function () { return 0 }, getMenuItemValues: function () { return [] }, getMenuItemTextAtIndex: function () { return "" }, isTypeaheadInProgress: function () { return !1 }, typeaheadMatchItem: function () { return -1 } } }, enumerable: !0, configurable: !0 }), p.prototype.getSelectedIndex = function () { return this.adapter.getSelectedIndex() }, p.prototype.setSelectedIndex = function (t, e, n) { void 0 === e && (e = !1), void 0 === n && (n = !1), t >= this.adapter.getMenuItemCount() || (t === l.numbers.UNSET_INDEX ? this.adapter.setSelectedText("") : this.adapter.setSelectedText(this.adapter.getMenuItemTextAtIndex(t).trim()), this.adapter.setSelectedIndex(t), e && this.adapter.closeMenu(), n || this.lastSelectedIndex === t || this.handleChange(), this.lastSelectedIndex = t) }, p.prototype.setValue = function (t, e) { void 0 === e && (e = !1); var n = this.adapter.getMenuItemValues().indexOf(t); this.setSelectedIndex(n, !1, e) }, p.prototype.getValue = function () { var t = this.adapter.getSelectedIndex(), e = this.adapter.getMenuItemValues(); return t !== l.numbers.UNSET_INDEX ? e[t] : "" }, p.prototype.getDisabled = function () { return this.disabled }, p.prototype.setDisabled = function (t) { this.disabled = t, this.disabled ? (this.adapter.addClass(l.cssClasses.DISABLED), this.adapter.closeMenu()) : this.adapter.removeClass(l.cssClasses.DISABLED), this.leadingIcon && this.leadingIcon.setDisabled(this.disabled), this.disabled ? this.adapter.removeSelectAnchorAttr("tabindex") : this.adapter.setSelectAnchorAttr("tabindex", "0"), this.adapter.setSelectAnchorAttr("aria-disabled", this.disabled.toString()) }, p.prototype.openMenu = function () { this.adapter.addClass(l.cssClasses.ACTIVATED), this.adapter.openMenu(), this.isMenuOpen = !0, this.adapter.setSelectAnchorAttr("aria-expanded", "true") }, p.prototype.setHelperTextContent = function (t) { this.helperText && this.helperText.setContent(t) }, p.prototype.layout = function () { if (this.adapter.hasLabel()) { var t = 0 < this.getValue().length, e = this.adapter.hasClass(l.cssClasses.FOCUSED), n = t || e, i = this.adapter.hasClass(l.cssClasses.REQUIRED); this.notchOutline(n), this.adapter.floatLabel(n), this.adapter.setLabelRequired(i) } }, p.prototype.layoutOptions = function () { var t = this.adapter.getMenuItemValues().indexOf(this.getValue()); this.setSelectedIndex(t, !1, !0) }, p.prototype.handleMenuOpened = function () { if (0 !== this.adapter.getMenuItemValues().length) { var t = this.getSelectedIndex(), e = 0 <= t ? t : 0; this.adapter.focusMenuItemAtIndex(e) } }, p.prototype.handleMenuClosing = function () { this.adapter.setSelectAnchorAttr("aria-expanded", "false") }, p.prototype.handleMenuClosed = function () { this.adapter.removeClass(l.cssClasses.ACTIVATED), this.isMenuOpen = !1, this.adapter.isSelectAnchorFocused() || this.blur() }, p.prototype.handleChange = function () { this.layout(), this.adapter.notifyChange(this.getValue()), this.adapter.hasClass(l.cssClasses.REQUIRED) && this.useDefaultValidation && this.setValid(this.isValid()) }, p.prototype.handleMenuItemAction = function (t) { this.setSelectedIndex(t, !0) }, p.prototype.handleFocus = function () { this.adapter.addClass(l.cssClasses.FOCUSED), this.layout(), this.adapter.activateBottomLine() }, p.prototype.handleBlur = function () { this.isMenuOpen || this.blur() }, p.prototype.handleClick = function (t) { this.disabled || this.recentlyClicked || (this.setClickDebounceTimeout(), this.isMenuOpen ? this.adapter.closeMenu() : (this.adapter.setRippleCenter(t), this.openMenu())) }, p.prototype.handleKeydown = function (t) { if (!this.isMenuOpen && this.adapter.hasClass(l.cssClasses.FOCUSED)) { var e = c.normalizeKey(t) === c.KEY.ENTER, n = c.normalizeKey(t) === c.KEY.SPACEBAR, i = c.normalizeKey(t) === c.KEY.ARROW_UP, r = c.normalizeKey(t) === c.KEY.ARROW_DOWN; if (!n && t.key && 1 === t.key.length || n && this.adapter.isTypeaheadInProgress()) { var o = n ? " " : t.key, s = this.adapter.typeaheadMatchItem(o, this.getSelectedIndex()); return 0 <= s && this.setSelectedIndex(s), void t.preventDefault() } (e || n || i || r) && (i && 0 < this.getSelectedIndex() ? this.setSelectedIndex(this.getSelectedIndex() - 1) : r && this.getSelectedIndex() < this.adapter.getMenuItemCount() - 1 && this.setSelectedIndex(this.getSelectedIndex() + 1), this.openMenu(), t.preventDefault()) } }, p.prototype.notchOutline = function (t) { if (this.adapter.hasOutline()) { var e = this.adapter.hasClass(l.cssClasses.FOCUSED); if (t) { var n = l.numbers.LABEL_SCALE, i = this.adapter.getLabelWidth() * n; this.adapter.notchOutline(i) } else e || this.adapter.closeOutline() } }, p.prototype.setLeadingIconAriaLabel = function (t) { this.leadingIcon && this.leadingIcon.setAriaLabel(t) }, p.prototype.setLeadingIconContent = function (t) { this.leadingIcon && this.leadingIcon.setContent(t) }, p.prototype.setUseDefaultValidation = function (t) { this.useDefaultValidation = t }, p.prototype.setValid = function (t) { this.useDefaultValidation || (this.customValidity = t), this.adapter.setSelectAnchorAttr("aria-invalid", (!t).toString()), t ? (this.adapter.removeClass(l.cssClasses.INVALID), this.adapter.removeMenuClass(l.cssClasses.MENU_INVALID)) : (this.adapter.addClass(l.cssClasses.INVALID), this.adapter.addMenuClass(l.cssClasses.MENU_INVALID)), this.syncHelperTextValidity(t) }, p.prototype.isValid = function () { return this.useDefaultValidation && this.adapter.hasClass(l.cssClasses.REQUIRED) && !this.adapter.hasClass(l.cssClasses.DISABLED) ? this.getSelectedIndex() !== l.numbers.UNSET_INDEX && (0 !== this.getSelectedIndex() || Boolean(this.getValue())) : this.customValidity }, p.prototype.setRequired = function (t) { t ? this.adapter.addClass(l.cssClasses.REQUIRED) : this.adapter.removeClass(l.cssClasses.REQUIRED), this.adapter.setSelectAnchorAttr("aria-required", t.toString()), this.adapter.setLabelRequired(t) }, p.prototype.getRequired = function () { return "true" === this.adapter.getSelectAnchorAttr("aria-required") }, p.prototype.init = function () { var t = this.adapter.getAnchorElement(); t && (this.adapter.setMenuAnchorElement(t), this.adapter.setMenuAnchorCorner(u.Corner.BOTTOM_START)), this.adapter.setMenuWrapFocus(!1), this.setDisabled(this.adapter.hasClass(l.cssClasses.DISABLED)), this.syncHelperTextValidity(!this.adapter.hasClass(l.cssClasses.INVALID)), this.layout(), this.layoutOptions() }, p.prototype.blur = function () { this.adapter.removeClass(l.cssClasses.FOCUSED), this.layout(), this.adapter.deactivateBottomLine(), this.adapter.hasClass(l.cssClasses.REQUIRED) && this.useDefaultValidation && this.setValid(this.isValid()) }, p.prototype.syncHelperTextValidity = function (t) { if (this.helperText) { this.helperText.setValidity(t); var e = this.helperText.isVisible(), n = this.helperText.getId(); e && n ? this.adapter.setSelectAnchorAttr(l.strings.ARIA_DESCRIBEDBY, n) : this.adapter.removeSelectAnchorAttr(l.strings.ARIA_DESCRIBEDBY) } }, p.prototype.setClickDebounceTimeout = function () { var t = this; clearTimeout(this.clickDebounceTimeout), this.clickDebounceTimeout = setTimeout(function () { t.recentlyClicked = !1 }, l.numbers.CLICK_DEBOUNCE_TIMEOUT_MS), this.recentlyClicked = !0 }, p); function p(t, e) { void 0 === e && (e = {}); var n = s.call(this, o(o({}, p.defaultAdapter), t)) || this; return n.disabled = !1, n.isMenuOpen = !1, n.useDefaultValidation = !0, n.customValidity = !0, n.lastSelectedIndex = l.numbers.UNSET_INDEX, n.clickDebounceTimeout = 0, n.recentlyClicked = !1, n.leadingIcon = e.leadingIcon, n.helperText = e.helperText, n } e.MDCSelectFoundation = d, e.default = d }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }); Object.defineProperty(e, "__esModule", { value: !0 }); var o, s = n(1), a = n(86), c = (o = s.MDCComponent, r(u, o), u.attachTo = function (t) { return new u(t) }, Object.defineProperty(u.prototype, "foundationForSelect", { get: function () { return this.foundation }, enumerable: !0, configurable: !0 }), u.prototype.getDefaultFoundation = function () { var n = this, t = { addClass: function (t) { return n.root.classList.add(t) }, removeClass: function (t) { return n.root.classList.remove(t) }, hasClass: function (t) { return n.root.classList.contains(t) }, getAttr: function (t) { return n.root.getAttribute(t) }, setAttr: function (t, e) { return n.root.setAttribute(t, e) }, removeAttr: function (t) { return n.root.removeAttribute(t) }, setContent: function (t) { n.root.textContent = t } }; return new a.MDCSelectHelperTextFoundation(t) }, u); function u() { return null !== o && o.apply(this, arguments) || this } e.MDCSelectHelperText = c }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a = n(0), c = n(87), u = (s = a.MDCFoundation, r(l, s), Object.defineProperty(l, "cssClasses", { get: function () { return c.cssClasses }, enumerable: !0, configurable: !0 }), Object.defineProperty(l, "strings", { get: function () { return c.strings }, enumerable: !0, configurable: !0 }), Object.defineProperty(l, "defaultAdapter", { get: function () { return { addClass: function () { }, removeClass: function () { }, hasClass: function () { return !1 }, setAttr: function () { }, getAttr: function () { return null }, removeAttr: function () { }, setContent: function () { } } }, enumerable: !0, configurable: !0 }), l.prototype.getId = function () { return this.adapter.getAttr("id") }, l.prototype.isVisible = function () { return "true" !== this.adapter.getAttr(c.strings.ARIA_HIDDEN) }, l.prototype.setContent = function (t) { this.adapter.setContent(t) }, l.prototype.setValidation = function (t) { t ? this.adapter.addClass(c.cssClasses.HELPER_TEXT_VALIDATION_MSG) : this.adapter.removeClass(c.cssClasses.HELPER_TEXT_VALIDATION_MSG) }, l.prototype.setValidationMsgPersistent = function (t) { t ? this.adapter.addClass(c.cssClasses.HELPER_TEXT_VALIDATION_MSG_PERSISTENT) : this.adapter.removeClass(c.cssClasses.HELPER_TEXT_VALIDATION_MSG_PERSISTENT) }, l.prototype.setValidity = function (t) { if (this.adapter.hasClass(c.cssClasses.HELPER_TEXT_VALIDATION_MSG)) { var e = this.adapter.hasClass(c.cssClasses.HELPER_TEXT_VALIDATION_MSG_PERSISTENT); if (!t || e) return this.showToScreenReader(), void (t ? this.adapter.removeAttr(c.strings.ROLE) : this.adapter.setAttr(c.strings.ROLE, "alert")); this.adapter.removeAttr(c.strings.ROLE), this.hide() } }, l.prototype.showToScreenReader = function () { this.adapter.removeAttr(c.strings.ARIA_HIDDEN) }, l.prototype.hide = function () { this.adapter.setAttr(c.strings.ARIA_HIDDEN, "true") }, l); function l(t) { return s.call(this, o(o({}, l.defaultAdapter), t)) || this } e.MDCSelectHelperTextFoundation = u, e.default = u }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }); e.strings = { ARIA_HIDDEN: "aria-hidden", ROLE: "role" }; e.cssClasses = { HELPER_TEXT_VALIDATION_MSG: "mdc-select-helper-text--validation-msg", HELPER_TEXT_VALIDATION_MSG_PERSISTENT: "mdc-select-helper-text--validation-msg-persistent" } }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }); Object.defineProperty(e, "__esModule", { value: !0 }); var o, s = n(1), a = n(89), c = (o = s.MDCComponent, r(u, o), u.attachTo = function (t) { return new u(t) }, Object.defineProperty(u.prototype, "foundationForSelect", { get: function () { return this.foundation }, enumerable: !0, configurable: !0 }), u.prototype.getDefaultFoundation = function () { var n = this, t = { getAttr: function (t) { return n.root.getAttribute(t) }, setAttr: function (t, e) { return n.root.setAttribute(t, e) }, removeAttr: function (t) { return n.root.removeAttribute(t) }, setContent: function (t) { n.root.textContent = t }, registerInteractionHandler: function (t, e) { return n.listen(t, e) }, deregisterInteractionHandler: function (t, e) { return n.unlisten(t, e) }, notifyIconAction: function () { return n.emit(a.MDCSelectIconFoundation.strings.ICON_EVENT, {}, !0) } }; return new a.MDCSelectIconFoundation(t) }, u); function u() { return null !== o && o.apply(this, arguments) || this } e.MDCSelectIcon = c }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a = n(0), c = n(90), u = ["click", "keydown"], l = (s = a.MDCFoundation, r(d, s), Object.defineProperty(d, "strings", { get: function () { return c.strings }, enumerable: !0, configurable: !0 }), Object.defineProperty(d, "defaultAdapter", { get: function () { return { getAttr: function () { return null }, setAttr: function () { }, removeAttr: function () { }, setContent: function () { }, registerInteractionHandler: function () { }, deregisterInteractionHandler: function () { }, notifyIconAction: function () { } } }, enumerable: !0, configurable: !0 }), d.prototype.init = function () { var e = this; this.savedTabIndex_ = this.adapter.getAttr("tabindex"), u.forEach(function (t) { e.adapter.registerInteractionHandler(t, e.interactionHandler_) }) }, d.prototype.destroy = function () { var e = this; u.forEach(function (t) { e.adapter.deregisterInteractionHandler(t, e.interactionHandler_) }) }, d.prototype.setDisabled = function (t) { this.savedTabIndex_ && (t ? (this.adapter.setAttr("tabindex", "-1"), this.adapter.removeAttr("role")) : (this.adapter.setAttr("tabindex", this.savedTabIndex_), this.adapter.setAttr("role", c.strings.ICON_ROLE))) }, d.prototype.setAriaLabel = function (t) { this.adapter.setAttr("aria-label", t) }, d.prototype.setContent = function (t) { this.adapter.setContent(t) }, d.prototype.handleInteraction = function (t) { var e = "Enter" === t.key || 13 === t.keyCode; "click" !== t.type && !e || this.adapter.notifyIconAction() }, d); function d(t) { var e = s.call(this, o(o({}, d.defaultAdapter), t)) || this; return e.savedTabIndex_ = null, e.interactionHandler_ = function (t) { return e.handleInteraction(t) }, e } e.MDCSelectIconFoundation = l, e.default = l }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }); e.strings = { ICON_EVENT: "MDCSelect:icon", ICON_ROLE: "button" } }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, l = n(10), a = n(0), c = n(32), d = n(33), p = "undefined" != typeof window, u = (s = a.MDCFoundation, r(h, s), Object.defineProperty(h, "defaultAdapter", { get: function () { return { hasClass: function () { return !1 }, addClass: function () { }, removeClass: function () { }, addThumbClass: function () { }, removeThumbClass: function () { }, getAttribute: function () { return null }, getInputValue: function () { return "" }, setInputValue: function () { }, getInputAttribute: function () { return null }, setInputAttribute: function () { return null }, removeInputAttribute: function () { return null }, focusInput: function () { }, isInputFocused: function () { return !1 }, getThumbKnobWidth: function () { return 0 }, getThumbBoundingClientRect: function () { return { top: 0, right: 0, bottom: 0, left: 0, width: 0, height: 0 } }, getBoundingClientRect: function () { return { top: 0, right: 0, bottom: 0, left: 0, width: 0, height: 0 } }, isRTL: function () { return !1 }, setThumbStyleProperty: function () { }, removeThumbStyleProperty: function () { }, setTrackActiveStyleProperty: function () { }, removeTrackActiveStyleProperty: function () { }, setValueIndicatorText: function () { }, getValueToAriaValueTextFn: function () { return null }, updateTickMarks: function () { }, setPointerCapture: function () { }, emitChangeEvent: function () { }, emitInputEvent: function () { }, emitDragStartEvent: function () { }, emitDragEndEvent: function () { }, registerEventHandler: function () { }, deregisterEventHandler: function () { }, registerThumbEventHandler: function () { }, deregisterThumbEventHandler: function () { }, registerInputEventHandler: function () { }, deregisterInputEventHandler: function () { }, registerBodyEventHandler: function () { }, deregisterBodyEventHandler: function () { }, registerWindowEventHandler: function () { }, deregisterWindowEventHandler: function () { } } }, enumerable: !0, configurable: !0 }), h.prototype.init = function () { var t = this; this.isDisabled = this.adapter.hasClass(c.cssClasses.DISABLED), this.isDiscrete = this.adapter.hasClass(c.cssClasses.DISCRETE), this.hasTickMarks = this.adapter.hasClass(c.cssClasses.TICK_MARKS), this.isRange = this.adapter.hasClass(c.cssClasses.RANGE); var e = this.convertAttributeValueToNumber(this.adapter.getInputAttribute(c.attributes.INPUT_MIN, this.isRange ? d.Thumb.START : d.Thumb.END), c.attributes.INPUT_MIN), n = this.convertAttributeValueToNumber(this.adapter.getInputAttribute(c.attributes.INPUT_MAX, d.Thumb.END), c.attributes.INPUT_MAX), i = this.convertAttributeValueToNumber(this.adapter.getInputAttribute(c.attributes.INPUT_VALUE, d.Thumb.END), c.attributes.INPUT_VALUE), r = this.isRange ? this.convertAttributeValueToNumber(this.adapter.getInputAttribute(c.attributes.INPUT_VALUE, d.Thumb.START), c.attributes.INPUT_VALUE) : e; this.validateProperties({ min: e, max: n, value: i, valueStart: r }), this.min = e, this.max = n, this.value = i, this.valueStart = r, this.valueBeforeDownEvent = i, this.valueStartBeforeDownEvent = r; var o = this.adapter.getInputAttribute(c.attributes.INPUT_STEP, d.Thumb.END); if (o && (this.step = this.convertAttributeValueToNumber(o, c.attributes.INPUT_STEP)), this.step <= 0) throw new Error("MDCSliderFoundation: step must be a positive number. Current step: " + this.step); this.mousedownOrTouchstartListener = this.handleMousedownOrTouchstart.bind(this), this.moveListener = this.handleMove.bind(this), this.pointerdownListener = this.handlePointerdown.bind(this), this.pointerupListener = this.handlePointerup.bind(this), this.thumbMouseenterListener = this.handleThumbMouseenter.bind(this), this.thumbMouseleaveListener = this.handleThumbMouseleave.bind(this), this.inputStartChangeListener = function () { t.handleInputChange(d.Thumb.START) }, this.inputEndChangeListener = function () { t.handleInputChange(d.Thumb.END) }, this.inputStartFocusListener = function () { t.handleInputFocus(d.Thumb.START) }, this.inputEndFocusListener = function () { t.handleInputFocus(d.Thumb.END) }, this.inputStartBlurListener = function () { t.handleInputBlur(d.Thumb.START) }, this.inputEndBlurListener = function () { t.handleInputBlur(d.Thumb.END) }, this.resizeListener = this.handleResize.bind(this), this.registerEventHandlers() }, h.prototype.destroy = function () { this.deregisterEventHandlers() }, h.prototype.getMin = function () { return this.min }, h.prototype.getMax = function () { return this.max }, h.prototype.getValue = function () { return this.value }, h.prototype.setValue = function (t) { if (this.isRange && t < this.valueStart) throw new Error("end thumb value (" + t + ") must be >= start thumb value (" + this.valueStart + ")"); this.updateValue(t, d.Thumb.END) }, h.prototype.getValueStart = function () { if (!this.isRange) throw new Error("`valueStart` is only applicable for range sliders."); return this.valueStart }, h.prototype.setValueStart = function (t) { if (!this.isRange) throw new Error("`valueStart` is only applicable for range sliders."); if (this.isRange && t > this.value) throw new Error("start thumb value (" + t + ") must be <= end thumb value (" + this.value + ")"); this.updateValue(t, d.Thumb.START) }, h.prototype.getStep = function () { return this.step }, h.prototype.getDisabled = function () { return this.isDisabled }, h.prototype.setDisabled = function (t) { (this.isDisabled = t) ? (this.adapter.addClass(c.cssClasses.DISABLED), this.isRange && this.adapter.setInputAttribute(c.attributes.INPUT_DISABLED, "", d.Thumb.START), this.adapter.setInputAttribute(c.attributes.INPUT_DISABLED, "", d.Thumb.END)) : (this.adapter.removeClass(c.cssClasses.DISABLED), this.isRange && this.adapter.removeInputAttribute(c.attributes.INPUT_DISABLED, d.Thumb.START), this.adapter.removeInputAttribute(c.attributes.INPUT_DISABLED, d.Thumb.END)) }, h.prototype.getIsRange = function () { return this.isRange }, h.prototype.layout = function (t) { var e = (void 0 === t ? {} : t).skipUpdateUI; this.rect = this.adapter.getBoundingClientRect(), this.isRange && (this.startThumbKnobWidth = this.adapter.getThumbKnobWidth(d.Thumb.START), this.endThumbKnobWidth = this.adapter.getThumbKnobWidth(d.Thumb.END)), e || this.updateUI() }, h.prototype.handleResize = function () { this.layout() }, h.prototype.handleDown = function (t) { if (!this.isDisabled) { this.valueStartBeforeDownEvent = this.valueStart, this.valueBeforeDownEvent = this.value; var e = null != t.clientX ? t.clientX : t.targetTouches[0].clientX; this.downEventClientX = e; var n = this.mapClientXOnSliderScale(e); this.thumb = this.getThumbFromDownEvent(e, n), null !== this.thumb && (this.handleDragStart(t, n, this.thumb), this.isRange && n >= this.valueStart && n <= this.value || this.updateValue(n, this.thumb, { emitInputEvent: !0 })) } }, h.prototype.handleMove = function (t) { if (!this.isDisabled) { t.preventDefault(); var e = null != t.clientX ? t.clientX : t.targetTouches[0].clientX, n = null != this.thumb; if (this.thumb = this.getThumbFromMoveEvent(e), null !== this.thumb) { var i = this.mapClientXOnSliderScale(e); n || (this.handleDragStart(t, i, this.thumb), this.adapter.emitDragStartEvent(i, this.thumb)), this.updateValue(i, this.thumb, { emitInputEvent: !0 }) } } }, h.prototype.handleUp = function () { if (!this.isDisabled && null !== this.thumb) { var t = this.thumb === d.Thumb.START ? this.valueStartBeforeDownEvent : this.valueBeforeDownEvent, e = this.thumb === d.Thumb.START ? this.valueStart : this.value; t !== e && this.adapter.emitChangeEvent(e, this.thumb), this.adapter.emitDragEndEvent(e, this.thumb), this.thumb = null } }, h.prototype.handleThumbMouseenter = function () { this.isDiscrete && this.isRange && (this.adapter.addThumbClass(c.cssClasses.THUMB_WITH_INDICATOR, d.Thumb.START), this.adapter.addThumbClass(c.cssClasses.THUMB_WITH_INDICATOR, d.Thumb.END)) }, h.prototype.handleThumbMouseleave = function () { this.isDiscrete && this.isRange && (this.adapter.isInputFocused(d.Thumb.START) || this.adapter.isInputFocused(d.Thumb.END) || (this.adapter.removeThumbClass(c.cssClasses.THUMB_WITH_INDICATOR, d.Thumb.START), this.adapter.removeThumbClass(c.cssClasses.THUMB_WITH_INDICATOR, d.Thumb.END))) }, h.prototype.handleMousedownOrTouchstart = function (t) { var e = this, n = "mousedown" === t.type ? "mousemove" : "touchmove"; function i() { e.handleUp(), e.adapter.deregisterBodyEventHandler(n, e.moveListener), e.adapter.deregisterEventHandler("mouseup", i), e.adapter.deregisterEventHandler("touchend", i) } this.adapter.registerBodyEventHandler(n, this.moveListener), this.adapter.registerBodyEventHandler("mouseup", i), this.adapter.registerBodyEventHandler("touchend", i), this.handleDown(t) }, h.prototype.handlePointerdown = function (t) { this.adapter.setPointerCapture(t.pointerId), this.adapter.registerEventHandler("pointermove", this.moveListener), this.handleDown(t) }, h.prototype.handleInputChange = function (t) { var e = Number(this.adapter.getInputValue(t)); t === d.Thumb.START ? this.setValueStart(e) : this.setValue(e), this.adapter.emitChangeEvent(t === d.Thumb.START ? this.valueStart : this.value, t) }, h.prototype.handleInputFocus = function (t) { if (this.isDiscrete && (this.adapter.addThumbClass(c.cssClasses.THUMB_WITH_INDICATOR, t), this.isRange)) { var e = t === d.Thumb.START ? d.Thumb.END : d.Thumb.START; this.adapter.addThumbClass(c.cssClasses.THUMB_WITH_INDICATOR, e) } }, h.prototype.handleInputBlur = function (t) { if (this.isDiscrete && (this.adapter.removeThumbClass(c.cssClasses.THUMB_WITH_INDICATOR, t), this.isRange)) { var e = t === d.Thumb.START ? d.Thumb.END : d.Thumb.START; this.adapter.removeThumbClass(c.cssClasses.THUMB_WITH_INDICATOR, e) } }, h.prototype.handleDragStart = function (t, e, n) { this.adapter.focusInput(n), t.preventDefault(), this.adapter.emitDragStartEvent(e, n) }, h.prototype.getThumbFromDownEvent = function (t, e) { if (!this.isRange) return d.Thumb.END; var n = this.adapter.getThumbBoundingClientRect(d.Thumb.START), i = this.adapter.getThumbBoundingClientRect(d.Thumb.END), r = t >= n.left && t <= n.right, o = t >= i.left && t <= i.right; return r && o ? null : r ? d.Thumb.START : o ? d.Thumb.END : e < this.valueStart ? d.Thumb.START : e > this.value ? d.Thumb.END : null }, h.prototype.getThumbFromMoveEvent = function (t) { if (null !== this.thumb) return this.thumb; if (null === this.downEventClientX) throw new Error("`downEventClientX` is null after move event."); return Math.abs(this.downEventClientX - t) < c.numbers.THUMB_UPDATE_MIN_PX ? this.thumb : t < this.downEventClientX ? this.adapter.isRTL() ? d.Thumb.END : d.Thumb.START : this.adapter.isRTL() ? d.Thumb.START : d.Thumb.END }, h.prototype.updateUI = function (t) { this.updateThumbAndInputAttributes(t), this.updateThumbAndTrackUI(t), this.updateValueIndicatorUI(t), this.updateTickMarksUI() }, h.prototype.updateThumbAndInputAttributes = function (t) { if (t) { var e = this.isRange && t === d.Thumb.START ? this.valueStart : this.value, n = String(e); this.adapter.setInputAttribute(c.attributes.INPUT_VALUE, n, t), this.isRange && t === d.Thumb.START ? this.adapter.setInputAttribute(c.attributes.INPUT_MIN, n, d.Thumb.END) : this.isRange && t === d.Thumb.END && this.adapter.setInputAttribute(c.attributes.INPUT_MAX, n, d.Thumb.START), this.adapter.getInputValue(t) !== n && this.adapter.setInputValue(n, t); var i = this.adapter.getValueToAriaValueTextFn(); i && this.adapter.setInputAttribute(c.attributes.ARIA_VALUETEXT, i(e), t) } }, h.prototype.updateValueIndicatorUI = function (t) { if (this.isDiscrete) { var e = this.isRange && t === d.Thumb.START ? this.valueStart : this.value; this.adapter.setValueIndicatorText(e, t === d.Thumb.START ? d.Thumb.START : d.Thumb.END), !t && this.isRange && this.adapter.setValueIndicatorText(this.valueStart, d.Thumb.START) } }, h.prototype.updateTickMarksUI = function () { if (this.isDiscrete && this.hasTickMarks) { var t = (this.valueStart - this.min) / this.step, e = (this.value - this.valueStart) / this.step + 1, n = (this.max - this.value) / this.step, i = Array.from({ length: t }).fill(d.TickMark.INACTIVE), r = Array.from({ length: e }).fill(d.TickMark.ACTIVE), o = Array.from({ length: n }).fill(d.TickMark.INACTIVE); this.adapter.updateTickMarks(i.concat(r).concat(o)) } }, h.prototype.mapClientXOnSliderScale = function (t) { var e = (t - this.rect.left) / this.rect.width; this.adapter.isRTL() && (e = 1 - e); var n = this.min + e * (this.max - this.min); return n === this.max || n === this.min ? n : this.quantize(n) }, h.prototype.updateValue = function (t, e, n) { var i = void 0 === n ? {} : n, r = i.emitInputEvent, o = i.emitChangeEvent; if (t = this.clampValue(t, e), this.isRange && e === d.Thumb.START) { if (this.valueStart === t) return; this.valueStart = t } else { if (this.value === t) return; this.value = t } this.updateUI(e), r && this.adapter.emitInputEvent(e === d.Thumb.START ? this.valueStart : this.value, e), o && this.adapter.emitChangeEvent(e === d.Thumb.START ? this.valueStart : this.value, e) }, h.prototype.quantize = function (t) { return Math.round(t / this.step) * this.step }, h.prototype.clampValue = function (t, e) { return t = Math.min(Math.max(t, this.min), this.max), this.isRange && e === d.Thumb.START && t > this.value ? this.value : this.isRange && e === d.Thumb.END && t < this.valueStart ? this.valueStart : t }, h.prototype.updateThumbAndTrackUI = function (n) { var i = this, t = this.max, e = this.min, r = (this.value - this.valueStart) / (t - e), o = r * this.rect.width, s = this.adapter.isRTL(), a = p ? l.getCorrectPropertyName(window, "transform") : "transform"; if (this.isRange) { var c = this.adapter.isRTL() ? (t - this.value) / (t - e) * this.rect.width : (this.valueStart - e) / (t - e) * this.rect.width, u = c + o; requestAnimationFrame(function () { !s && n === d.Thumb.START || s && n !== d.Thumb.START ? (i.adapter.setTrackActiveStyleProperty("transform-origin", "right"), i.adapter.setTrackActiveStyleProperty("left", "unset"), i.adapter.setTrackActiveStyleProperty("right", i.rect.width - u + "px")) : (i.adapter.setTrackActiveStyleProperty("transform-origin", "left"), i.adapter.setTrackActiveStyleProperty("right", "unset"), i.adapter.setTrackActiveStyleProperty("left", c + "px")), i.adapter.setTrackActiveStyleProperty(a, "scaleX(" + r + ")"); var t = s ? u : c, e = i.adapter.isRTL() ? c : u; n !== d.Thumb.START && n && i.initialStylesRemoved || i.adapter.setThumbStyleProperty(a, "translateX(" + t + "px)", d.Thumb.START), n !== d.Thumb.END && n && i.initialStylesRemoved || i.adapter.setThumbStyleProperty(a, "translateX(" + e + "px)", d.Thumb.END), i.removeInitialStyles(s), i.updateOverlappingThumbsUI(t, e, n) }) } else requestAnimationFrame(function () { var t = s ? i.rect.width - o : o; i.adapter.setThumbStyleProperty(a, "translateX(" + t + "px)", d.Thumb.END), i.adapter.setTrackActiveStyleProperty(a, "scaleX(" + r + ")"), i.removeInitialStyles(s) }) }, h.prototype.removeInitialStyles = function (t) { if (!this.initialStylesRemoved) { var e = t ? "right" : "left"; this.adapter.removeThumbStyleProperty(e, d.Thumb.END), this.isRange && this.adapter.removeThumbStyleProperty(e, d.Thumb.START), this.initialStylesRemoved = !0, this.resetTrackAndThumbAnimation() } }, h.prototype.resetTrackAndThumbAnimation = function () { var t = this; if (this.isDiscrete) { var e = p ? l.getCorrectPropertyName(window, "transition") : "transition", n = "all 0s ease 0s"; this.adapter.setThumbStyleProperty(e, n, d.Thumb.END), this.isRange && this.adapter.setThumbStyleProperty(e, n, d.Thumb.START), this.adapter.setTrackActiveStyleProperty(e, n), requestAnimationFrame(function () { t.adapter.removeThumbStyleProperty(e, d.Thumb.END), t.adapter.removeTrackActiveStyleProperty(e), t.isRange && t.adapter.removeThumbStyleProperty(e, d.Thumb.START) }) } }, h.prototype.updateOverlappingThumbsUI = function (t, e, n) { var i = !1; if (this.adapter.isRTL()) i = t - this.startThumbKnobWidth / 2 <= e + this.endThumbKnobWidth / 2; else { var r = t + this.startThumbKnobWidth / 2; i = e - this.endThumbKnobWidth / 2 <= r } i ? (this.adapter.addThumbClass(c.cssClasses.THUMB_TOP, n || d.Thumb.END), this.adapter.removeThumbClass(c.cssClasses.THUMB_TOP, n === d.Thumb.START ? d.Thumb.END : d.Thumb.START)) : (this.adapter.removeThumbClass(c.cssClasses.THUMB_TOP, d.Thumb.START), this.adapter.removeThumbClass(c.cssClasses.THUMB_TOP, d.Thumb.END)) }, h.prototype.convertAttributeValueToNumber = function (t, e) { if (null === t) throw new Error("MDCSliderFoundation: `" + e + "` must be non-null."); var n = Number(t); if (isNaN(n)) throw new Error("MDCSliderFoundation: `" + e + "` value is `" + t + "`, but must be a number."); return n }, h.prototype.validateProperties = function (t) { var e = t.min, n = t.max, i = t.value, r = t.valueStart; if (n <= e) throw new Error("MDCSliderFoundation: min must be strictly less than max. Current: [min: " + e + ", max: " + n + "]"); if (this.isRange) { if (i < e || n < i || r < e || n < r) throw new Error("MDCSliderFoundation: values must be in [min, max] range. Current values: [start value: " + r + ", end value: " + i + "]"); if (i < r) throw new Error("MDCSliderFoundation: start value must be <= end value. Current values: [start value: " + r + ", end value: " + i + "]") } else if (i < e || n < i) throw new Error("MDCSliderFoundation: value must be in [min, max] range. Current value: " + i) }, h.prototype.registerEventHandlers = function () { this.adapter.registerWindowEventHandler("resize", this.resizeListener), h.SUPPORTS_POINTER_EVENTS ? (this.adapter.registerEventHandler("pointerdown", this.pointerdownListener), this.adapter.registerEventHandler("pointerup", this.pointerupListener)) : (this.adapter.registerEventHandler("mousedown", this.mousedownOrTouchstartListener), this.adapter.registerEventHandler("touchstart", this.mousedownOrTouchstartListener)), this.isRange && (this.adapter.registerThumbEventHandler(d.Thumb.START, "mouseenter", this.thumbMouseenterListener), this.adapter.registerThumbEventHandler(d.Thumb.START, "mouseleave", this.thumbMouseleaveListener), this.adapter.registerInputEventHandler(d.Thumb.START, "change", this.inputStartChangeListener), this.adapter.registerInputEventHandler(d.Thumb.START, "focus", this.inputStartFocusListener), this.adapter.registerInputEventHandler(d.Thumb.START, "blur", this.inputStartBlurListener)), this.adapter.registerThumbEventHandler(d.Thumb.END, "mouseenter", this.thumbMouseenterListener), this.adapter.registerThumbEventHandler(d.Thumb.END, "mouseleave", this.thumbMouseleaveListener), this.adapter.registerInputEventHandler(d.Thumb.END, "change", this.inputEndChangeListener), this.adapter.registerInputEventHandler(d.Thumb.END, "focus", this.inputEndFocusListener), this.adapter.registerInputEventHandler(d.Thumb.END, "blur", this.inputEndBlurListener) }, h.prototype.deregisterEventHandlers = function () { this.adapter.deregisterWindowEventHandler("resize", this.resizeListener), h.SUPPORTS_POINTER_EVENTS ? (this.adapter.deregisterEventHandler("pointerdown", this.pointerdownListener), this.adapter.deregisterEventHandler("pointerup", this.pointerupListener)) : (this.adapter.deregisterEventHandler("mousedown", this.mousedownOrTouchstartListener), this.adapter.deregisterEventHandler("touchstart", this.mousedownOrTouchstartListener)), this.isRange && (this.adapter.deregisterThumbEventHandler(d.Thumb.START, "mouseenter", this.thumbMouseenterListener), this.adapter.deregisterThumbEventHandler(d.Thumb.START, "mouseleave", this.thumbMouseleaveListener), this.adapter.deregisterInputEventHandler(d.Thumb.START, "change", this.inputStartChangeListener), this.adapter.deregisterInputEventHandler(d.Thumb.START, "focus", this.inputStartFocusListener), this.adapter.deregisterInputEventHandler(d.Thumb.START, "blur", this.inputStartBlurListener)), this.adapter.deregisterThumbEventHandler(d.Thumb.END, "mouseenter", this.thumbMouseenterListener), this.adapter.deregisterThumbEventHandler(d.Thumb.END, "mouseleave", this.thumbMouseleaveListener), this.adapter.deregisterInputEventHandler(d.Thumb.END, "change", this.inputEndChangeListener), this.adapter.deregisterInputEventHandler(d.Thumb.END, "focus", this.inputEndFocusListener), this.adapter.deregisterInputEventHandler(d.Thumb.END, "blur", this.inputEndBlurListener) }, h.prototype.handlePointerup = function () { this.handleUp(), this.adapter.deregisterEventHandler("pointermove", this.moveListener) }, h.SUPPORTS_POINTER_EVENTS = p && Boolean(window.PointerEvent) && !(["iPad Simulator", "iPhone Simulator", "iPod Simulator", "iPad", "iPhone", "iPod"].includes(navigator.platform) || navigator.userAgent.includes("Mac") && "ontouchend" in document), h); function h(t) { var e = s.call(this, o(o({}, h.defaultAdapter), t)) || this; return e.initialStylesRemoved = !1, e.isDisabled = !1, e.isDiscrete = !1, e.step = c.numbers.STEP_SIZE, e.hasTickMarks = !1, e.isRange = !1, e.thumb = null, e.downEventClientX = null, e.startThumbKnobWidth = 0, e.endThumbKnobWidth = 0, e } e.MDCSliderFoundation = u }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }); var i = n(16), r = i.numbers.ARIA_LIVE_DELAY_MS, o = i.strings.ARIA_LIVE_LABEL_TEXT_ATTR; e.announce = function (t, e) { void 0 === e && (e = t); var n = t.getAttribute("aria-live"), i = e.textContent.trim(); i && n && (t.setAttribute("aria-live", "off"), e.textContent = "", e.innerHTML = '<span style="display: inline-block; width: 0; height: 1px;">&nbsp;</span>', e.setAttribute(o, i), setTimeout(function () { t.setAttribute("aria-live", n), e.removeAttribute(o), e.textContent = i }, r)) } }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a = n(0), c = n(16), u = c.cssClasses.OPENING, l = c.cssClasses.OPEN, d = c.cssClasses.CLOSING, p = c.strings.REASON_ACTION, h = c.strings.REASON_DISMISS, f = (s = a.MDCFoundation, r(_, s), Object.defineProperty(_, "cssClasses", { get: function () { return c.cssClasses }, enumerable: !0, configurable: !0 }), Object.defineProperty(_, "strings", { get: function () { return c.strings }, enumerable: !0, configurable: !0 }), Object.defineProperty(_, "numbers", { get: function () { return c.numbers }, enumerable: !0, configurable: !0 }), Object.defineProperty(_, "defaultAdapter", { get: function () { return { addClass: function () { }, announce: function () { }, notifyClosed: function () { }, notifyClosing: function () { }, notifyOpened: function () { }, notifyOpening: function () { }, removeClass: function () { } } }, enumerable: !0, configurable: !0 }), _.prototype.destroy = function () { this.clearAutoDismissTimer_(), cancelAnimationFrame(this.animationFrame_), this.animationFrame_ = 0, clearTimeout(this.animationTimer_), this.animationTimer_ = 0, this.adapter.removeClass(u), this.adapter.removeClass(l), this.adapter.removeClass(d) }, _.prototype.open = function () { var e = this; this.clearAutoDismissTimer_(), this.isOpen_ = !0, this.adapter.notifyOpening(), this.adapter.removeClass(d), this.adapter.addClass(u), this.adapter.announce(), this.runNextAnimationFrame_(function () { e.adapter.addClass(l), e.animationTimer_ = setTimeout(function () { var t = e.getTimeoutMs(); e.handleAnimationTimerEnd_(), e.adapter.notifyOpened(), t !== c.numbers.INDETERMINATE && (e.autoDismissTimer_ = setTimeout(function () { e.close(h) }, t)) }, c.numbers.SNACKBAR_ANIMATION_OPEN_TIME_MS) }) }, _.prototype.close = function (t) { var e = this; void 0 === t && (t = ""), this.isOpen_ && (cancelAnimationFrame(this.animationFrame_), this.animationFrame_ = 0, this.clearAutoDismissTimer_(), this.isOpen_ = !1, this.adapter.notifyClosing(t), this.adapter.addClass(c.cssClasses.CLOSING), this.adapter.removeClass(c.cssClasses.OPEN), this.adapter.removeClass(c.cssClasses.OPENING), clearTimeout(this.animationTimer_), this.animationTimer_ = setTimeout(function () { e.handleAnimationTimerEnd_(), e.adapter.notifyClosed(t) }, c.numbers.SNACKBAR_ANIMATION_CLOSE_TIME_MS)) }, _.prototype.isOpen = function () { return this.isOpen_ }, _.prototype.getTimeoutMs = function () { return this.autoDismissTimeoutMs_ }, _.prototype.setTimeoutMs = function (t) { var e = c.numbers.MIN_AUTO_DISMISS_TIMEOUT_MS, n = c.numbers.MAX_AUTO_DISMISS_TIMEOUT_MS, i = c.numbers.INDETERMINATE; if (!(t === c.numbers.INDETERMINATE || t <= n && e <= t)) throw new Error("\n timeoutMs must be an integer in the range " + e + "–" + n + "\n (or " + i + " to disable), but got '" + t + "'"); this.autoDismissTimeoutMs_ = t }, _.prototype.getCloseOnEscape = function () { return this.closeOnEscape_ }, _.prototype.setCloseOnEscape = function (t) { this.closeOnEscape_ = t }, _.prototype.handleKeyDown = function (t) { "Escape" !== t.key && 27 !== t.keyCode || !this.getCloseOnEscape() || this.close(h) }, _.prototype.handleActionButtonClick = function (t) { this.close(p) }, _.prototype.handleActionIconClick = function (t) { this.close(h) }, _.prototype.clearAutoDismissTimer_ = function () { clearTimeout(this.autoDismissTimer_), this.autoDismissTimer_ = 0 }, _.prototype.handleAnimationTimerEnd_ = function () { this.animationTimer_ = 0, this.adapter.removeClass(c.cssClasses.OPENING), this.adapter.removeClass(c.cssClasses.CLOSING) }, _.prototype.runNextAnimationFrame_ = function (t) { var e = this; cancelAnimationFrame(this.animationFrame_), this.animationFrame_ = requestAnimationFrame(function () { e.animationFrame_ = 0, clearTimeout(e.animationTimer_), e.animationTimer_ = setTimeout(t, 0) }) }, _); function _(t) { var e = s.call(this, o(o({}, _.defaultAdapter), t)) || this; return e.isOpen_ = !1, e.animationFrame_ = 0, e.animationTimer_ = 0, e.autoDismissTimer_ = 0, e.autoDismissTimeoutMs_ = c.numbers.DEFAULT_AUTO_DISMISS_TIMEOUT_MS, e.closeOnEscape_ = !0, e } e.MDCSnackbarFoundation = f, e.default = f }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a = n(0), c = n(95), u = (s = a.MDCFoundation, r(l, s), Object.defineProperty(l, "strings", { get: function () { return c.strings }, enumerable: !0, configurable: !0 }), Object.defineProperty(l, "cssClasses", { get: function () { return c.cssClasses }, enumerable: !0, configurable: !0 }), Object.defineProperty(l, "defaultAdapter", { get: function () { return { addClass: function () { }, removeClass: function () { }, setNativeControlChecked: function () { }, setNativeControlDisabled: function () { }, setNativeControlAttr: function () { } } }, enumerable: !0, configurable: !0 }), l.prototype.setChecked = function (t) { this.adapter.setNativeControlChecked(t), this.updateAriaChecked_(t), this.updateCheckedStyling_(t) }, l.prototype.setDisabled = function (t) { this.adapter.setNativeControlDisabled(t), t ? this.adapter.addClass(c.cssClasses.DISABLED) : this.adapter.removeClass(c.cssClasses.DISABLED) }, l.prototype.handleChange = function (t) { var e = t.target; this.updateAriaChecked_(e.checked), this.updateCheckedStyling_(e.checked) }, l.prototype.updateCheckedStyling_ = function (t) { t ? this.adapter.addClass(c.cssClasses.CHECKED) : this.adapter.removeClass(c.cssClasses.CHECKED) }, l.prototype.updateAriaChecked_ = function (t) { this.adapter.setNativeControlAttr(c.strings.ARIA_CHECKED_ATTR, "" + !!t) }, l); function l(t) { return s.call(this, o(o({}, l.defaultAdapter), t)) || this } e.MDCSwitchFoundation = u, e.default = u }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }); e.cssClasses = { CHECKED: "mdc-switch--checked", DISABLED: "mdc-switch--disabled" }; e.strings = { ARIA_CHECKED_ATTR: "aria-checked", NATIVE_CONTROL_SELECTOR: ".mdc-switch__native-control", RIPPLE_SURFACE_SELECTOR: ".mdc-switch__thumb-underlay" } }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__importStar || function (t) { if (t && t.__esModule) return t; var e = {}; if (null != t) for (var n in t) Object.hasOwnProperty.call(t, n) && (e[n] = t[n]); return e.default = t, e }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a = n(1), c = n(5), u = n(2), l = n(97), d = o(n(98)), p = (s = a.MDCComponent, r(h, s), h.attachTo = function (t) { return new h(t) }, h.prototype.initialize = function () { this.area_ = this.root.querySelector(l.MDCTabScrollerFoundation.strings.AREA_SELECTOR), this.content_ = this.root.querySelector(l.MDCTabScrollerFoundation.strings.CONTENT_SELECTOR) }, h.prototype.initialSyncWithDOM = function () { var e = this; this.handleInteraction_ = function () { return e.foundation.handleInteraction() }, this.handleTransitionEnd_ = function (t) { return e.foundation.handleTransitionEnd(t) }, this.area_.addEventListener("wheel", this.handleInteraction_, c.applyPassive()), this.area_.addEventListener("touchstart", this.handleInteraction_, c.applyPassive()), this.area_.addEventListener("pointerdown", this.handleInteraction_, c.applyPassive()), this.area_.addEventListener("mousedown", this.handleInteraction_, c.applyPassive()), this.area_.addEventListener("keydown", this.handleInteraction_, c.applyPassive()), this.content_.addEventListener("transitionend", this.handleTransitionEnd_) }, h.prototype.destroy = function () { s.prototype.destroy.call(this), this.area_.removeEventListener("wheel", this.handleInteraction_, c.applyPassive()), this.area_.removeEventListener("touchstart", this.handleInteraction_, c.applyPassive()), this.area_.removeEventListener("pointerdown", this.handleInteraction_, c.applyPassive()), this.area_.removeEventListener("mousedown", this.handleInteraction_, c.applyPassive()), this.area_.removeEventListener("keydown", this.handleInteraction_, c.applyPassive()), this.content_.removeEventListener("transitionend", this.handleTransitionEnd_) }, h.prototype.getDefaultFoundation = function () { var n = this, t = { eventTargetMatchesSelector: function (t, e) { return u.matches(t, e) }, addClass: function (t) { return n.root.classList.add(t) }, removeClass: function (t) { return n.root.classList.remove(t) }, addScrollAreaClass: function (t) { return n.area_.classList.add(t) }, setScrollAreaStyleProperty: function (t, e) { return n.area_.style.setProperty(t, e) }, setScrollContentStyleProperty: function (t, e) { return n.content_.style.setProperty(t, e) }, getScrollContentStyleValue: function (t) { return window.getComputedStyle(n.content_).getPropertyValue(t) }, setScrollAreaScrollLeft: function (t) { return n.area_.scrollLeft = t }, getScrollAreaScrollLeft: function () { return n.area_.scrollLeft }, getScrollContentOffsetWidth: function () { return n.content_.offsetWidth }, getScrollAreaOffsetWidth: function () { return n.area_.offsetWidth }, computeScrollAreaClientRect: function () { return n.area_.getBoundingClientRect() }, computeScrollContentClientRect: function () { return n.content_.getBoundingClientRect() }, computeHorizontalScrollbarHeight: function () { return d.computeHorizontalScrollbarHeight(document) } }; return new l.MDCTabScrollerFoundation(t) }, h.prototype.getScrollPosition = function () { return this.foundation.getScrollPosition() }, h.prototype.getScrollContentWidth = function () { return this.content_.offsetWidth }, h.prototype.incrementScroll = function (t) { this.foundation.incrementScroll(t) }, h.prototype.scrollTo = function (t) { this.foundation.scrollTo(t) }, h); function h() { return null !== s && s.apply(this, arguments) || this } e.MDCTabScroller = p }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }, s = this && this.__read || function (t, e) { var n = "function" == typeof Symbol && t[Symbol.iterator]; if (!n) return t; var i, r, o = n.call(t), s = []; try { for (; (void 0 === e || 0 < e--) && !(i = o.next()).done;)s.push(i.value) } catch (t) { r = { error: t } } finally { try { i && !i.done && (n = o.return) && n.call(o) } finally { if (r) throw r.error } } return s }; Object.defineProperty(e, "__esModule", { value: !0 }); var a, c = n(0), u = n(34), l = n(171), d = n(172), p = n(173), h = (a = c.MDCFoundation, r(f, a), Object.defineProperty(f, "cssClasses", { get: function () { return u.cssClasses }, enumerable: !0, configurable: !0 }), Object.defineProperty(f, "strings", { get: function () { return u.strings }, enumerable: !0, configurable: !0 }), Object.defineProperty(f, "defaultAdapter", { get: function () { return { eventTargetMatchesSelector: function () { return !1 }, addClass: function () { }, removeClass: function () { }, addScrollAreaClass: function () { }, setScrollAreaStyleProperty: function () { }, setScrollContentStyleProperty: function () { }, getScrollContentStyleValue: function () { return "" }, setScrollAreaScrollLeft: function () { }, getScrollAreaScrollLeft: function () { return 0 }, getScrollContentOffsetWidth: function () { return 0 }, getScrollAreaOffsetWidth: function () { return 0 }, computeScrollAreaClientRect: function () { return { top: 0, right: 0, bottom: 0, left: 0, width: 0, height: 0 } }, computeScrollContentClientRect: function () { return { top: 0, right: 0, bottom: 0, left: 0, width: 0, height: 0 } }, computeHorizontalScrollbarHeight: function () { return 0 } } }, enumerable: !0, configurable: !0 }), f.prototype.init = function () { var t = this.adapter.computeHorizontalScrollbarHeight(); this.adapter.setScrollAreaStyleProperty("margin-bottom", -t + "px"), this.adapter.addScrollAreaClass(f.cssClasses.SCROLL_AREA_SCROLL) }, f.prototype.getScrollPosition = function () { if (this.isRTL_()) return this.computeCurrentScrollPositionRTL_(); var t = this.calculateCurrentTranslateX_(); return this.adapter.getScrollAreaScrollLeft() - t }, f.prototype.handleInteraction = function () { this.isAnimating_ && this.stopScrollAnimation_() }, f.prototype.handleTransitionEnd = function (t) { var e = t.target; this.isAnimating_ && this.adapter.eventTargetMatchesSelector(e, f.strings.CONTENT_SELECTOR) && (this.isAnimating_ = !1, this.adapter.removeClass(f.cssClasses.ANIMATING)) }, f.prototype.incrementScroll = function (t) { 0 !== t && this.animate_(this.getIncrementScrollOperation_(t)) }, f.prototype.incrementScrollImmediate = function (t) { if (0 !== t) { var e = this.getIncrementScrollOperation_(t); 0 !== e.scrollDelta && (this.stopScrollAnimation_(), this.adapter.setScrollAreaScrollLeft(e.finalScrollPosition)) } }, f.prototype.scrollTo = function (t) { if (this.isRTL_()) return this.scrollToRTL_(t); this.scrollTo_(t) }, f.prototype.getRTLScroller = function () { return this.rtlScrollerInstance_ || (this.rtlScrollerInstance_ = this.rtlScrollerFactory_()), this.rtlScrollerInstance_ }, f.prototype.calculateCurrentTranslateX_ = function () { var t = this.adapter.getScrollContentStyleValue("transform"); if ("none" === t) return 0; var e = /\((.+?)\)/.exec(t); if (!e) return 0; var n = e[1], i = s(n.split(","), 6), r = (i[0], i[1], i[2], i[3], i[4]); return i[5], parseFloat(r) }, f.prototype.clampScrollValue_ = function (t) { var e = this.calculateScrollEdges_(); return Math.min(Math.max(e.left, t), e.right) }, f.prototype.computeCurrentScrollPositionRTL_ = function () { var t = this.calculateCurrentTranslateX_(); return this.getRTLScroller().getScrollPositionRTL(t) }, f.prototype.calculateScrollEdges_ = function () { return { left: 0, right: this.adapter.getScrollContentOffsetWidth() - this.adapter.getScrollAreaOffsetWidth() } }, f.prototype.scrollTo_ = function (t) { var e = this.getScrollPosition(), n = this.clampScrollValue_(t), i = n - e; this.animate_({ finalScrollPosition: n, scrollDelta: i }) }, f.prototype.scrollToRTL_ = function (t) { var e = this.getRTLScroller().scrollToRTL(t); this.animate_(e) }, f.prototype.getIncrementScrollOperation_ = function (t) { if (this.isRTL_()) return this.getRTLScroller().incrementScrollRTL(t); var e = this.getScrollPosition(), n = t + e, i = this.clampScrollValue_(n); return { finalScrollPosition: i, scrollDelta: i - e } }, f.prototype.animate_ = function (t) { var e = this; 0 !== t.scrollDelta && (this.stopScrollAnimation_(), this.adapter.setScrollAreaScrollLeft(t.finalScrollPosition), this.adapter.setScrollContentStyleProperty("transform", "translateX(" + t.scrollDelta + "px)"), this.adapter.computeScrollAreaClientRect(), requestAnimationFrame(function () { e.adapter.addClass(f.cssClasses.ANIMATING), e.adapter.setScrollContentStyleProperty("transform", "none") }), this.isAnimating_ = !0) }, f.prototype.stopScrollAnimation_ = function () { this.isAnimating_ = !1; var t = this.getAnimatingScrollPosition_(); this.adapter.removeClass(f.cssClasses.ANIMATING), this.adapter.setScrollContentStyleProperty("transform", "translateX(0px)"), this.adapter.setScrollAreaScrollLeft(t) }, f.prototype.getAnimatingScrollPosition_ = function () { var t = this.calculateCurrentTranslateX_(), e = this.adapter.getScrollAreaScrollLeft(); return this.isRTL_() ? this.getRTLScroller().getAnimatingScrollPosition(e, t) : e - t }, f.prototype.rtlScrollerFactory_ = function () { var t = this.adapter.getScrollAreaScrollLeft(); this.adapter.setScrollAreaScrollLeft(t - 1); var e = this.adapter.getScrollAreaScrollLeft(); if (e < 0) return this.adapter.setScrollAreaScrollLeft(t), new d.MDCTabScrollerRTLNegative(this.adapter); var n = this.adapter.computeScrollAreaClientRect(), i = this.adapter.computeScrollContentClientRect(), r = Math.round(i.right - n.right); return this.adapter.setScrollAreaScrollLeft(t), r === e ? new p.MDCTabScrollerRTLReverse(this.adapter) : new l.MDCTabScrollerRTLDefault(this.adapter) }, f.prototype.isRTL_ = function () { return "rtl" === this.adapter.getScrollContentStyleValue("direction") }, f); function f(t) { var e = a.call(this, o(o({}, f.defaultAdapter), t)) || this; return e.isAnimating_ = !1, e } e.MDCTabScrollerFoundation = h, e.default = h }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }); var r, o = n(34); e.computeHorizontalScrollbarHeight = function (t, e) { if (void 0 === e && (e = !0), e && void 0 !== r) return r; var n = t.createElement("div"); n.classList.add(o.cssClasses.SCROLL_TEST), t.body.appendChild(n); var i = n.offsetHeight - n.clientHeight; return t.body.removeChild(n), e && (r = i), i } }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), s = this && this.__assign || function () { return (s = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }; Object.defineProperty(e, "__esModule", { value: !0 }); var o, a = n(1), c = n(3), u = n(4), l = n(100), d = n(36), p = (o = a.MDCComponent, r(h, o), h.attachTo = function (t) { return new h(t) }, h.prototype.initialize = function (t, e) { void 0 === t && (t = function (t, e) { return new c.MDCRipple(t, e) }), void 0 === e && (e = function (t) { return new l.MDCTabIndicator(t) }), this.id = this.root.id; var n = this.root.querySelector(d.MDCTabFoundation.strings.RIPPLE_SELECTOR), i = s(s({}, c.MDCRipple.createAdapter(this)), { addClass: function (t) { return n.classList.add(t) }, removeClass: function (t) { return n.classList.remove(t) }, updateCssVariable: function (t, e) { return n.style.setProperty(t, e) } }), r = new u.MDCRippleFoundation(i); this.ripple_ = t(this.root, r); var o = this.root.querySelector(d.MDCTabFoundation.strings.TAB_INDICATOR_SELECTOR); this.tabIndicator_ = e(o), this.content_ = this.root.querySelector(d.MDCTabFoundation.strings.CONTENT_SELECTOR) }, h.prototype.initialSyncWithDOM = function () { var t = this; this.handleClick_ = function () { return t.foundation.handleClick() }, this.listen("click", this.handleClick_) }, h.prototype.destroy = function () { this.unlisten("click", this.handleClick_), this.ripple_.destroy(), o.prototype.destroy.call(this) }, h.prototype.getDefaultFoundation = function () { var n = this, t = { setAttr: function (t, e) { return n.root.setAttribute(t, e) }, addClass: function (t) { return n.root.classList.add(t) }, removeClass: function (t) { return n.root.classList.remove(t) }, hasClass: function (t) { return n.root.classList.contains(t) }, activateIndicator: function (t) { return n.tabIndicator_.activate(t) }, deactivateIndicator: function () { return n.tabIndicator_.deactivate() }, notifyInteracted: function () { return n.emit(d.MDCTabFoundation.strings.INTERACTED_EVENT, { tabId: n.id }, !0) }, getOffsetLeft: function () { return n.root.offsetLeft }, getOffsetWidth: function () { return n.root.offsetWidth }, getContentOffsetLeft: function () { return n.content_.offsetLeft }, getContentOffsetWidth: function () { return n.content_.offsetWidth }, focus: function () { return n.root.focus() } }; return new d.MDCTabFoundation(t) }, Object.defineProperty(h.prototype, "active", { get: function () { return this.foundation.isActive() }, enumerable: !0, configurable: !0 }), Object.defineProperty(h.prototype, "focusOnActivate", { set: function (t) { this.foundation.setFocusOnActivate(t) }, enumerable: !0, configurable: !0 }), h.prototype.activate = function (t) { this.foundation.activate(t) }, h.prototype.deactivate = function () { this.foundation.deactivate() }, h.prototype.computeIndicatorClientRect = function () { return this.tabIndicator_.computeContentClientRect() }, h.prototype.computeDimensions = function () { return this.foundation.computeDimensions() }, h.prototype.focus = function () { this.root.focus() }, h); function h() { return null !== o && o.apply(this, arguments) || this } e.MDCTab = p }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }); Object.defineProperty(e, "__esModule", { value: !0 }); var o, s = n(1), a = n(101), c = n(17), u = n(103), l = (o = s.MDCComponent, r(d, o), d.attachTo = function (t) { return new d(t) }, d.prototype.initialize = function () { this.content_ = this.root.querySelector(c.MDCTabIndicatorFoundation.strings.CONTENT_SELECTOR) }, d.prototype.computeContentClientRect = function () { return this.foundation.computeContentClientRect() }, d.prototype.getDefaultFoundation = function () { var n = this, t = { addClass: function (t) { return n.root.classList.add(t) }, removeClass: function (t) { return n.root.classList.remove(t) }, computeContentClientRect: function () { return n.content_.getBoundingClientRect() }, setContentStyleProperty: function (t, e) { return n.content_.style.setProperty(t, e) } }; return this.root.classList.contains(c.MDCTabIndicatorFoundation.cssClasses.FADE) ? new a.MDCFadingTabIndicatorFoundation(t) : new u.MDCSlidingTabIndicatorFoundation(t) }, d.prototype.activate = function (t) { this.foundation.activate(t) }, d.prototype.deactivate = function () { this.foundation.deactivate() }, d); function d() { return null !== o && o.apply(this, arguments) || this } e.MDCTabIndicator = l }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }); Object.defineProperty(e, "__esModule", { value: !0 }); var o, s = n(17), a = (o = s.MDCTabIndicatorFoundation, r(c, o), c.prototype.activate = function () { this.adapter.addClass(s.MDCTabIndicatorFoundation.cssClasses.ACTIVE) }, c.prototype.deactivate = function () { this.adapter.removeClass(s.MDCTabIndicatorFoundation.cssClasses.ACTIVE) }, c); function c() { return null !== o && o.apply(this, arguments) || this } e.MDCFadingTabIndicatorFoundation = a, e.default = a }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }); e.cssClasses = { ACTIVE: "mdc-tab-indicator--active", FADE: "mdc-tab-indicator--fade", NO_TRANSITION: "mdc-tab-indicator--no-transition" }; e.strings = { CONTENT_SELECTOR: ".mdc-tab-indicator__content" } }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }); Object.defineProperty(e, "__esModule", { value: !0 }); var o, s = n(17), a = (o = s.MDCTabIndicatorFoundation, r(c, o), c.prototype.activate = function (t) { if (t) { var e = this.computeContentClientRect(), n = t.width / e.width, i = t.left - e.left; this.adapter.addClass(s.MDCTabIndicatorFoundation.cssClasses.NO_TRANSITION), this.adapter.setContentStyleProperty("transform", "translateX(" + i + "px) scaleX(" + n + ")"), this.computeContentClientRect(), this.adapter.removeClass(s.MDCTabIndicatorFoundation.cssClasses.NO_TRANSITION), this.adapter.addClass(s.MDCTabIndicatorFoundation.cssClasses.ACTIVE), this.adapter.setContentStyleProperty("transform", "") } else this.adapter.addClass(s.MDCTabIndicatorFoundation.cssClasses.ACTIVE) }, c.prototype.deactivate = function () { this.adapter.removeClass(s.MDCTabIndicatorFoundation.cssClasses.ACTIVE) }, c); function c() { return null !== o && o.apply(this, arguments) || this } e.MDCSlidingTabIndicatorFoundation = a, e.default = a }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }); e.cssClasses = { ACTIVE: "mdc-tab--active" }; e.strings = { ARIA_SELECTED: "aria-selected", CONTENT_SELECTOR: ".mdc-tab__content", INTERACTED_EVENT: "MDCTab:interacted", RIPPLE_SELECTOR: ".mdc-tab__ripple", TABINDEX: "tabIndex", TAB_INDICATOR_SELECTOR: ".mdc-tab-indicator" } }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }; Object.defineProperty(e, "__esModule", { value: !0 }); var s = n(0), u = n(106), a = new Set; a.add(u.strings.ARROW_LEFT_KEY), a.add(u.strings.ARROW_RIGHT_KEY), a.add(u.strings.END_KEY), a.add(u.strings.HOME_KEY), a.add(u.strings.ENTER_KEY), a.add(u.strings.SPACE_KEY); var c = new Map; c.set(u.numbers.ARROW_LEFT_KEYCODE, u.strings.ARROW_LEFT_KEY), c.set(u.numbers.ARROW_RIGHT_KEYCODE, u.strings.ARROW_RIGHT_KEY), c.set(u.numbers.END_KEYCODE, u.strings.END_KEY), c.set(u.numbers.HOME_KEYCODE, u.strings.HOME_KEY), c.set(u.numbers.ENTER_KEYCODE, u.strings.ENTER_KEY), c.set(u.numbers.SPACE_KEYCODE, u.strings.SPACE_KEY); var l, d = (l = s.MDCFoundation, r(p, l), Object.defineProperty(p, "strings", { get: function () { return u.strings }, enumerable: !0, configurable: !0 }), Object.defineProperty(p, "numbers", { get: function () { return u.numbers }, enumerable: !0, configurable: !0 }), Object.defineProperty(p, "defaultAdapter", { get: function () { return { scrollTo: function () { }, incrementScroll: function () { }, getScrollPosition: function () { return 0 }, getScrollContentWidth: function () { return 0 }, getOffsetWidth: function () { return 0 }, isRTL: function () { return !1 }, setActiveTab: function () { }, activateTabAtIndex: function () { }, deactivateTabAtIndex: function () { }, focusTabAtIndex: function () { }, getTabIndicatorClientRectAtIndex: function () { return { top: 0, right: 0, bottom: 0, left: 0, width: 0, height: 0 } }, getTabDimensionsAtIndex: function () { return { rootLeft: 0, rootRight: 0, contentLeft: 0, contentRight: 0 } }, getPreviousActiveTabIndex: function () { return -1 }, getFocusedTabIndex: function () { return -1 }, getIndexOfTabById: function () { return -1 }, getTabListLength: function () { return 0 }, notifyTabActivated: function () { } } }, enumerable: !0, configurable: !0 }), p.prototype.setUseAutomaticActivation = function (t) { this.useAutomaticActivation_ = t }, p.prototype.activateTab = function (t) { var e, n = this.adapter.getPreviousActiveTabIndex(); this.indexIsInRange_(t) && t !== n && (-1 !== n && (this.adapter.deactivateTabAtIndex(n), e = this.adapter.getTabIndicatorClientRectAtIndex(n)), this.adapter.activateTabAtIndex(t, e), this.scrollIntoView(t), this.adapter.notifyTabActivated(t)) }, p.prototype.handleKeyDown = function (t) { var e = this.getKeyFromEvent_(t); if (void 0 !== e) if (this.isActivationKey_(e) || t.preventDefault(), this.useAutomaticActivation_) { if (this.isActivationKey_(e)) return; var n = this.determineTargetFromKey_(this.adapter.getPreviousActiveTabIndex(), e); this.adapter.setActiveTab(n), this.scrollIntoView(n) } else { var i = this.adapter.getFocusedTabIndex(); this.isActivationKey_(e) ? this.adapter.setActiveTab(i) : (n = this.determineTargetFromKey_(i, e), this.adapter.focusTabAtIndex(n), this.scrollIntoView(n)) } }, p.prototype.handleTabInteraction = function (t) { this.adapter.setActiveTab(this.adapter.getIndexOfTabById(t.detail.tabId)) }, p.prototype.scrollIntoView = function (t) { if (this.indexIsInRange_(t)) return 0 === t ? this.adapter.scrollTo(0) : t === this.adapter.getTabListLength() - 1 ? this.adapter.scrollTo(this.adapter.getScrollContentWidth()) : this.isRTL_() ? this.scrollIntoViewRTL_(t) : void this.scrollIntoView_(t) }, p.prototype.determineTargetFromKey_ = function (t, e) { var n = this.isRTL_(), i = this.adapter.getTabListLength() - 1, r = e === u.strings.END_KEY, o = e === u.strings.ARROW_LEFT_KEY && !n || e === u.strings.ARROW_RIGHT_KEY && n, s = e === u.strings.ARROW_RIGHT_KEY && !n || e === u.strings.ARROW_LEFT_KEY && n, a = t; return r ? a = i : o ? a -= 1 : s ? a += 1 : a = 0, a < 0 ? a = i : i < a && (a = 0), a }, p.prototype.calculateScrollIncrement_ = function (t, e, n, i) { var r = this.adapter.getTabDimensionsAtIndex(e), o = r.contentLeft - n - i, s = r.contentRight - n - u.numbers.EXTRA_SCROLL_AMOUNT, a = o + u.numbers.EXTRA_SCROLL_AMOUNT; return e < t ? Math.min(s, 0) : Math.max(a, 0) }, p.prototype.calculateScrollIncrementRTL_ = function (t, e, n, i, r) { var o = this.adapter.getTabDimensionsAtIndex(e), s = r - o.contentLeft - n, a = r - o.contentRight - n - i + u.numbers.EXTRA_SCROLL_AMOUNT, c = s - u.numbers.EXTRA_SCROLL_AMOUNT; return t < e ? Math.max(a, 0) : Math.min(c, 0) }, p.prototype.findAdjacentTabIndexClosestToEdge_ = function (t, e, n, i) { var r = e.rootLeft - n, o = e.rootRight - n - i, s = r + o; return r < 0 || s < 0 ? t - 1 : 0 < o || 0 < s ? t + 1 : -1 }, p.prototype.findAdjacentTabIndexClosestToEdgeRTL_ = function (t, e, n, i, r) { var o = r - e.rootLeft - i - n, s = r - e.rootRight - n, a = o + s; return 0 < o || 0 < a ? t + 1 : s < 0 || a < 0 ? t - 1 : -1 }, p.prototype.getKeyFromEvent_ = function (t) { return a.has(t.key) ? t.key : c.get(t.keyCode) }, p.prototype.isActivationKey_ = function (t) { return t === u.strings.SPACE_KEY || t === u.strings.ENTER_KEY }, p.prototype.indexIsInRange_ = function (t) { return 0 <= t && t < this.adapter.getTabListLength() }, p.prototype.isRTL_ = function () { return this.adapter.isRTL() }, p.prototype.scrollIntoView_ = function (t) { var e = this.adapter.getScrollPosition(), n = this.adapter.getOffsetWidth(), i = this.adapter.getTabDimensionsAtIndex(t), r = this.findAdjacentTabIndexClosestToEdge_(t, i, e, n); if (this.indexIsInRange_(r)) { var o = this.calculateScrollIncrement_(t, r, e, n); this.adapter.incrementScroll(o) } }, p.prototype.scrollIntoViewRTL_ = function (t) { var e = this.adapter.getScrollPosition(), n = this.adapter.getOffsetWidth(), i = this.adapter.getTabDimensionsAtIndex(t), r = this.adapter.getScrollContentWidth(), o = this.findAdjacentTabIndexClosestToEdgeRTL_(t, i, e, n, r); if (this.indexIsInRange_(o)) { var s = this.calculateScrollIncrementRTL_(t, o, e, n, r); this.adapter.incrementScroll(s) } }, p); function p(t) { var e = l.call(this, o(o({}, p.defaultAdapter), t)) || this; return e.useAutomaticActivation_ = !1, e } e.MDCTabBarFoundation = d, e.default = d }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }); e.strings = { ARROW_LEFT_KEY: "ArrowLeft", ARROW_RIGHT_KEY: "ArrowRight", END_KEY: "End", ENTER_KEY: "Enter", HOME_KEY: "Home", SPACE_KEY: "Space", TAB_ACTIVATED_EVENT: "MDCTabBar:activated", TAB_SCROLLER_SELECTOR: ".mdc-tab-scroller", TAB_SELECTOR: ".mdc-tab" }; e.numbers = { ARROW_LEFT_KEYCODE: 37, ARROW_RIGHT_KEYCODE: 39, END_KEYCODE: 35, ENTER_KEYCODE: 13, EXTRA_SCROLL_AMOUNT: 20, HOME_KEYCODE: 36, SPACE_KEYCODE: 32 } }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }); Object.defineProperty(e, "__esModule", { value: !0 }); var o, s = n(1), a = n(37), c = (o = s.MDCComponent, r(u, o), u.attachTo = function (t) { return new u(t) }, Object.defineProperty(u.prototype, "foundationForTextField", { get: function () { return this.foundation }, enumerable: !0, configurable: !0 }), u.prototype.getDefaultFoundation = function () { var e = this, t = { setContent: function (t) { e.root.textContent = t } }; return new a.MDCTextFieldCharacterCounterFoundation(t) }, u); function u() { return null !== o && o.apply(this, arguments) || this } e.MDCTextFieldCharacterCounter = c }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }); var i = { ROOT: "mdc-text-field-character-counter" }, r = { ROOT_SELECTOR: "." + (e.cssClasses = i).ROOT }; e.strings = r }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a = n(0), c = n(38), u = ["mousedown", "touchstart"], l = ["click", "keydown"], d = (s = a.MDCFoundation, r(p, s), Object.defineProperty(p, "cssClasses", { get: function () { return c.cssClasses }, enumerable: !0, configurable: !0 }), Object.defineProperty(p, "strings", { get: function () { return c.strings }, enumerable: !0, configurable: !0 }), Object.defineProperty(p, "numbers", { get: function () { return c.numbers }, enumerable: !0, configurable: !0 }), Object.defineProperty(p.prototype, "shouldAlwaysFloat_", { get: function () { var t = this.getNativeInput_().type; return 0 <= c.ALWAYS_FLOAT_TYPES.indexOf(t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(p.prototype, "shouldFloat", { get: function () { return this.shouldAlwaysFloat_ || this.isFocused_ || !!this.getValue() || this.isBadInput_() }, enumerable: !0, configurable: !0 }), Object.defineProperty(p.prototype, "shouldShake", { get: function () { return !this.isFocused_ && !this.isValid() && !!this.getValue() }, enumerable: !0, configurable: !0 }), Object.defineProperty(p, "defaultAdapter", { get: function () { return { addClass: function () { }, removeClass: function () { }, hasClass: function () { return !0 }, setInputAttr: function () { }, removeInputAttr: function () { }, registerTextFieldInteractionHandler: function () { }, deregisterTextFieldInteractionHandler: function () { }, registerInputInteractionHandler: function () { }, deregisterInputInteractionHandler: function () { }, registerValidationAttributeChangeHandler: function () { return new MutationObserver(function () { }) }, deregisterValidationAttributeChangeHandler: function () { }, getNativeInput: function () { return null }, isFocused: function () { return !1 }, activateLineRipple: function () { }, deactivateLineRipple: function () { }, setLineRippleTransformOrigin: function () { }, shakeLabel: function () { }, floatLabel: function () { }, setLabelRequired: function () { }, hasLabel: function () { return !1 }, getLabelWidth: function () { return 0 }, hasOutline: function () { return !1 }, notchOutline: function () { }, closeOutline: function () { } } }, enumerable: !0, configurable: !0 }), p.prototype.init = function () { var e = this; this.adapter.hasLabel() && this.getNativeInput_().required && this.adapter.setLabelRequired(!0), this.adapter.isFocused() ? this.inputFocusHandler_() : this.adapter.hasLabel() && this.shouldFloat && (this.notchOutline(!0), this.adapter.floatLabel(!0), this.styleFloating_(!0)), this.adapter.registerInputInteractionHandler("focus", this.inputFocusHandler_), this.adapter.registerInputInteractionHandler("blur", this.inputBlurHandler_), this.adapter.registerInputInteractionHandler("input", this.inputInputHandler_), u.forEach(function (t) { e.adapter.registerInputInteractionHandler(t, e.setPointerXOffset_) }), l.forEach(function (t) { e.adapter.registerTextFieldInteractionHandler(t, e.textFieldInteractionHandler_) }), this.validationObserver_ = this.adapter.registerValidationAttributeChangeHandler(this.validationAttributeChangeHandler_), this.setCharacterCounter_(this.getValue().length) }, p.prototype.destroy = function () { var e = this; this.adapter.deregisterInputInteractionHandler("focus", this.inputFocusHandler_), this.adapter.deregisterInputInteractionHandler("blur", this.inputBlurHandler_), this.adapter.deregisterInputInteractionHandler("input", this.inputInputHandler_), u.forEach(function (t) { e.adapter.deregisterInputInteractionHandler(t, e.setPointerXOffset_) }), l.forEach(function (t) { e.adapter.deregisterTextFieldInteractionHandler(t, e.textFieldInteractionHandler_) }), this.adapter.deregisterValidationAttributeChangeHandler(this.validationObserver_) }, p.prototype.handleTextFieldInteraction = function () { var t = this.adapter.getNativeInput(); t && t.disabled || (this.receivedUserInput_ = !0) }, p.prototype.handleValidationAttributeChange = function (t) { var e = this; t.some(function (t) { return -1 < c.VALIDATION_ATTR_WHITELIST.indexOf(t) && (e.styleValidity_(!0), e.adapter.setLabelRequired(e.getNativeInput_().required), !0) }), -1 < t.indexOf("maxlength") && this.setCharacterCounter_(this.getValue().length) }, p.prototype.notchOutline = function (t) { if (this.adapter.hasOutline() && this.adapter.hasLabel()) if (t) { var e = this.adapter.getLabelWidth() * c.numbers.LABEL_SCALE; this.adapter.notchOutline(e) } else this.adapter.closeOutline() }, p.prototype.activateFocus = function () { this.isFocused_ = !0, this.styleFocused_(this.isFocused_), this.adapter.activateLineRipple(), this.adapter.hasLabel() && (this.notchOutline(this.shouldFloat), this.adapter.floatLabel(this.shouldFloat), this.styleFloating_(this.shouldFloat), this.adapter.shakeLabel(this.shouldShake)), !this.helperText_ || !this.helperText_.isPersistent() && this.helperText_.isValidation() && this.isValid_ || this.helperText_.showToScreenReader() }, p.prototype.setTransformOrigin = function (t) { if (!this.isDisabled() && !this.adapter.hasOutline()) { var e = t.touches, n = e ? e[0] : t, i = n.target.getBoundingClientRect(), r = n.clientX - i.left; this.adapter.setLineRippleTransformOrigin(r) } }, p.prototype.handleInput = function () { this.autoCompleteFocus(), this.setCharacterCounter_(this.getValue().length) }, p.prototype.autoCompleteFocus = function () { this.receivedUserInput_ || this.activateFocus() }, p.prototype.deactivateFocus = function () { this.isFocused_ = !1, this.adapter.deactivateLineRipple(); var t = this.isValid(); this.styleValidity_(t), this.styleFocused_(this.isFocused_), this.adapter.hasLabel() && (this.notchOutline(this.shouldFloat), this.adapter.floatLabel(this.shouldFloat), this.styleFloating_(this.shouldFloat), this.adapter.shakeLabel(this.shouldShake)), this.shouldFloat || (this.receivedUserInput_ = !1) }, p.prototype.getValue = function () { return this.getNativeInput_().value }, p.prototype.setValue = function (t) { if (this.getValue() !== t && (this.getNativeInput_().value = t), this.setCharacterCounter_(t.length), this.validateOnValueChange_) { var e = this.isValid(); this.styleValidity_(e) } this.adapter.hasLabel() && (this.notchOutline(this.shouldFloat), this.adapter.floatLabel(this.shouldFloat), this.styleFloating_(this.shouldFloat), this.validateOnValueChange_ && this.adapter.shakeLabel(this.shouldShake)) }, p.prototype.isValid = function () { return this.useNativeValidation_ ? this.isNativeInputValid_() : this.isValid_ }, p.prototype.setValid = function (t) { this.isValid_ = t, this.styleValidity_(t); var e = !t && !this.isFocused_ && !!this.getValue(); this.adapter.hasLabel() && this.adapter.shakeLabel(e) }, p.prototype.setValidateOnValueChange = function (t) { this.validateOnValueChange_ = t }, p.prototype.getValidateOnValueChange = function () { return this.validateOnValueChange_ }, p.prototype.setUseNativeValidation = function (t) { this.useNativeValidation_ = t }, p.prototype.isDisabled = function () { return this.getNativeInput_().disabled }, p.prototype.setDisabled = function (t) { this.getNativeInput_().disabled = t, this.styleDisabled_(t) }, p.prototype.setHelperTextContent = function (t) { this.helperText_ && this.helperText_.setContent(t) }, p.prototype.setLeadingIconAriaLabel = function (t) { this.leadingIcon_ && this.leadingIcon_.setAriaLabel(t) }, p.prototype.setLeadingIconContent = function (t) { this.leadingIcon_ && this.leadingIcon_.setContent(t) }, p.prototype.setTrailingIconAriaLabel = function (t) { this.trailingIcon_ && this.trailingIcon_.setAriaLabel(t) }, p.prototype.setTrailingIconContent = function (t) { this.trailingIcon_ && this.trailingIcon_.setContent(t) }, p.prototype.setCharacterCounter_ = function (t) { if (this.characterCounter_) { var e = this.getNativeInput_().maxLength; if (-1 === e) throw new Error("MDCTextFieldFoundation: Expected maxlength html property on text input or textarea."); this.characterCounter_.setCounterValue(t, e) } }, p.prototype.isBadInput_ = function () { return this.getNativeInput_().validity.badInput || !1 }, p.prototype.isNativeInputValid_ = function () { return this.getNativeInput_().validity.valid }, p.prototype.styleValidity_ = function (t) { var e = p.cssClasses.INVALID; if (t ? this.adapter.removeClass(e) : this.adapter.addClass(e), this.helperText_) { if (this.helperText_.setValidity(t), !this.helperText_.isValidation()) return; var n = this.helperText_.isVisible(), i = this.helperText_.getId(); n && i ? this.adapter.setInputAttr(c.strings.ARIA_DESCRIBEDBY, i) : this.adapter.removeInputAttr(c.strings.ARIA_DESCRIBEDBY) } }, p.prototype.styleFocused_ = function (t) { var e = p.cssClasses.FOCUSED; t ? this.adapter.addClass(e) : this.adapter.removeClass(e) }, p.prototype.styleDisabled_ = function (t) { var e = p.cssClasses, n = e.DISABLED, i = e.INVALID; t ? (this.adapter.addClass(n), this.adapter.removeClass(i)) : this.adapter.removeClass(n), this.leadingIcon_ && this.leadingIcon_.setDisabled(t), this.trailingIcon_ && this.trailingIcon_.setDisabled(t) }, p.prototype.styleFloating_ = function (t) { var e = p.cssClasses.LABEL_FLOATING; t ? this.adapter.addClass(e) : this.adapter.removeClass(e) }, p.prototype.getNativeInput_ = function () { return (this.adapter ? this.adapter.getNativeInput() : null) || { disabled: !1, maxLength: -1, required: !1, type: "input", validity: { badInput: !1, valid: !0 }, value: "" } }, p); function p(t, e) { void 0 === e && (e = {}); var n = s.call(this, o(o({}, p.defaultAdapter), t)) || this; return n.isFocused_ = !1, n.receivedUserInput_ = !1, n.isValid_ = !0, n.useNativeValidation_ = !0, n.validateOnValueChange_ = !0, n.helperText_ = e.helperText, n.characterCounter_ = e.characterCounter, n.leadingIcon_ = e.leadingIcon, n.trailingIcon_ = e.trailingIcon, n.inputFocusHandler_ = function () { return n.activateFocus() }, n.inputBlurHandler_ = function () { return n.deactivateFocus() }, n.inputInputHandler_ = function () { return n.handleInput() }, n.setPointerXOffset_ = function (t) { return n.setTransformOrigin(t) }, n.textFieldInteractionHandler_ = function () { return n.handleTextFieldInteraction() }, n.validationAttributeChangeHandler_ = function (t) { return n.handleValidationAttributeChange(t) }, n } e.MDCTextFieldFoundation = d, e.default = d }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }); Object.defineProperty(e, "__esModule", { value: !0 }); var o, s = n(1), a = n(39), c = (o = s.MDCComponent, r(u, o), u.attachTo = function (t) { return new u(t) }, Object.defineProperty(u.prototype, "foundationForTextField", { get: function () { return this.foundation }, enumerable: !0, configurable: !0 }), u.prototype.getDefaultFoundation = function () { var n = this, t = { addClass: function (t) { return n.root.classList.add(t) }, removeClass: function (t) { return n.root.classList.remove(t) }, hasClass: function (t) { return n.root.classList.contains(t) }, getAttr: function (t) { return n.root.getAttribute(t) }, setAttr: function (t, e) { return n.root.setAttribute(t, e) }, removeAttr: function (t) { return n.root.removeAttribute(t) }, setContent: function (t) { n.root.textContent = t } }; return new a.MDCTextFieldHelperTextFoundation(t) }, u); function u() { return null !== o && o.apply(this, arguments) || this } e.MDCTextFieldHelperText = c }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }); var i = { HELPER_TEXT_PERSISTENT: "mdc-text-field-helper-text--persistent", HELPER_TEXT_VALIDATION_MSG: "mdc-text-field-helper-text--validation-msg", ROOT: "mdc-text-field-helper-text" }, r = { ARIA_HIDDEN: "aria-hidden", ROLE: "role", ROOT_SELECTOR: "." + (e.cssClasses = i).ROOT }; e.strings = r }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }); Object.defineProperty(e, "__esModule", { value: !0 }); var o, s = n(1), a = n(113), c = (o = s.MDCComponent, r(u, o), u.attachTo = function (t) { return new u(t) }, Object.defineProperty(u.prototype, "foundationForTextField", { get: function () { return this.foundation }, enumerable: !0, configurable: !0 }), u.prototype.getDefaultFoundation = function () { var n = this, t = { getAttr: function (t) { return n.root.getAttribute(t) }, setAttr: function (t, e) { return n.root.setAttribute(t, e) }, removeAttr: function (t) { return n.root.removeAttribute(t) }, setContent: function (t) { n.root.textContent = t }, registerInteractionHandler: function (t, e) { return n.listen(t, e) }, deregisterInteractionHandler: function (t, e) { return n.unlisten(t, e) }, notifyIconAction: function () { return n.emit(a.MDCTextFieldIconFoundation.strings.ICON_EVENT, {}, !0) } }; return new a.MDCTextFieldIconFoundation(t) }, u); function u() { return null !== o && o.apply(this, arguments) || this } e.MDCTextFieldIcon = c }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a = n(0), c = n(114), u = ["click", "keydown"], l = (s = a.MDCFoundation, r(d, s), Object.defineProperty(d, "strings", { get: function () { return c.strings }, enumerable: !0, configurable: !0 }), Object.defineProperty(d, "cssClasses", { get: function () { return c.cssClasses }, enumerable: !0, configurable: !0 }), Object.defineProperty(d, "defaultAdapter", { get: function () { return { getAttr: function () { return null }, setAttr: function () { }, removeAttr: function () { }, setContent: function () { }, registerInteractionHandler: function () { }, deregisterInteractionHandler: function () { }, notifyIconAction: function () { } } }, enumerable: !0, configurable: !0 }), d.prototype.init = function () { var e = this; this.savedTabIndex_ = this.adapter.getAttr("tabindex"), u.forEach(function (t) { e.adapter.registerInteractionHandler(t, e.interactionHandler_) }) }, d.prototype.destroy = function () { var e = this; u.forEach(function (t) { e.adapter.deregisterInteractionHandler(t, e.interactionHandler_) }) }, d.prototype.setDisabled = function (t) { this.savedTabIndex_ && (t ? (this.adapter.setAttr("tabindex", "-1"), this.adapter.removeAttr("role")) : (this.adapter.setAttr("tabindex", this.savedTabIndex_), this.adapter.setAttr("role", c.strings.ICON_ROLE))) }, d.prototype.setAriaLabel = function (t) { this.adapter.setAttr("aria-label", t) }, d.prototype.setContent = function (t) { this.adapter.setContent(t) }, d.prototype.handleInteraction = function (t) { var e = "Enter" === t.key || 13 === t.keyCode; "click" !== t.type && !e || (t.preventDefault(), this.adapter.notifyIconAction()) }, d); function d(t) { var e = s.call(this, o(o({}, d.defaultAdapter), t)) || this; return e.savedTabIndex_ = null, e.interactionHandler_ = function (t) { return e.handleInteraction(t) }, e } e.MDCTextFieldIconFoundation = l, e.default = l }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }); e.strings = { ICON_EVENT: "MDCTextField:icon", ICON_ROLE: "button" }; e.cssClasses = { ROOT: "mdc-text-field__icon" } }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }, u = this && this.__values || function (t) { var e = "function" == typeof Symbol && Symbol.iterator, n = e && t[e], i = 0; if (n) return n.call(t); if (t && "number" == typeof t.length) return { next: function () { return t && i >= t.length && (t = void 0), { value: t && t[i++], done: !t } } }; throw new TypeError(e ? "Object is not iterable." : "Symbol.iterator is not defined.") }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a = n(60), h = n(10), c = n(0), l = n(6), d = n(40), p = d.CssClasses.RICH, f = d.CssClasses.SHOWN, _ = d.CssClasses.SHOWING, y = d.CssClasses.SHOWING_TRANSITION, C = d.CssClasses.HIDE, m = d.CssClasses.HIDE_TRANSITION, E = d.CssClasses.MULTILINE_TOOLTIP; (s = s || {}).POLL_ANCHOR = "poll_anchor"; var g, T = "undefined" != typeof window, v = (g = c.MDCFoundation, r(A, g), Object.defineProperty(A, "defaultAdapter", { get: function () { return { getAttribute: function () { return null }, setAttribute: function () { }, addClass: function () { }, hasClass: function () { return !1 }, removeClass: function () { }, getComputedStyleProperty: function () { return "" }, setStyleProperty: function () { }, setSurfaceStyleProperty: function () { }, getViewportWidth: function () { return 0 }, getViewportHeight: function () { return 0 }, getTooltipSize: function () { return { width: 0, height: 0 } }, getAnchorBoundingRect: function () { return { top: 0, right: 0, bottom: 0, left: 0, width: 0, height: 0 } }, getParentBoundingRect: function () { return { top: 0, right: 0, bottom: 0, left: 0, width: 0, height: 0 } }, getAnchorAttribute: function () { return null }, setAnchorAttribute: function () { return null }, isRTL: function () { return !1 }, anchorContainsElement: function () { return !1 }, tooltipContainsElement: function () { return !1 }, focusAnchorElement: function () { }, registerEventHandler: function () { }, deregisterEventHandler: function () { }, registerDocumentEventHandler: function () { }, deregisterDocumentEventHandler: function () { }, registerWindowEventHandler: function () { }, deregisterWindowEventHandler: function () { }, notifyHidden: function () { } } }, enumerable: !0, configurable: !0 }), A.prototype.init = function () { this.richTooltip = this.adapter.hasClass(p), this.persistentTooltip = "true" === this.adapter.getAttribute(d.attributes.PERSISTENT), this.interactiveTooltip = !!this.adapter.getAnchorAttribute(d.attributes.ARIA_EXPANDED) && "dialog" === this.adapter.getAnchorAttribute(d.attributes.ARIA_HASPOPUP) }, A.prototype.isShown = function () { return this.tooltipShown }, A.prototype.isRich = function () { return this.richTooltip }, A.prototype.isPersistent = function () { return this.persistentTooltip }, A.prototype.handleAnchorMouseEnter = function () { var t = this; this.tooltipShown ? this.show() : (this.clearHideTimeout(), this.showTimeout = setTimeout(function () { t.show() }, this.showDelayMs)) }, A.prototype.handleAnchorFocus = function (t) { var e = this, n = t.relatedTarget; n instanceof HTMLElement && this.adapter.tooltipContainsElement(n) || (this.showTimeout = setTimeout(function () { e.show() }, this.showDelayMs)) }, A.prototype.handleAnchorMouseLeave = function () { var t = this; this.clearShowTimeout(), this.hideTimeout = setTimeout(function () { t.hide() }, this.hideDelayMs) }, A.prototype.handleAnchorBlur = function (t) { this.richTooltip && t.relatedTarget instanceof HTMLElement && this.adapter.tooltipContainsElement(t.relatedTarget) || this.hide() }, A.prototype.handleAnchorClick = function () { this.tooltipShown ? this.hide() : this.show() }, A.prototype.handleDocumentClick = function (t) { var e = t.target instanceof HTMLElement && (this.adapter.anchorContainsElement(t.target) || this.adapter.tooltipContainsElement(t.target)); this.richTooltip && this.persistentTooltip && e || this.hide() }, A.prototype.handleKeydown = function (t) { l.normalizeKey(t) === l.KEY.ESCAPE && (document.activeElement instanceof HTMLElement && this.adapter.tooltipContainsElement(document.activeElement) && this.adapter.focusAnchorElement(), this.hide()) }, A.prototype.handleRichTooltipMouseEnter = function () { this.show() }, A.prototype.handleRichTooltipMouseLeave = function () { var t = this; this.clearShowTimeout(), this.hideTimeout = setTimeout(function () { t.hide() }, this.hideDelayMs) }, A.prototype.handleRichTooltipFocusOut = function (t) { t.relatedTarget instanceof HTMLElement && (this.adapter.anchorContainsElement(t.relatedTarget) || this.adapter.tooltipContainsElement(t.relatedTarget)) || this.hide() }, A.prototype.handleWindowChangeEvent = function () { var t = this; this.animFrame.request(s.POLL_ANCHOR, function () { t.repositionTooltipOnAnchorMove() }) }, A.prototype.show = function () { var t = this; this.clearHideTimeout(), this.clearShowTimeout(), this.tooltipShown || (this.tooltipShown = !0, this.parseShowTooltipOptions().hideFromScreenreader || this.adapter.setAttribute("aria-hidden", "false"), this.richTooltip && (this.interactiveTooltip && this.adapter.setAnchorAttribute("aria-expanded", "true"), this.adapter.registerEventHandler("focusout", this.richTooltipFocusOutHandler), this.persistentTooltip || (this.adapter.registerEventHandler("mouseenter", this.richTooltipMouseEnterHandler), this.adapter.registerEventHandler("mouseleave", this.richTooltipMouseLeaveHandler))), this.adapter.removeClass(C), this.adapter.addClass(_), this.isTooltipMultiline() && !this.richTooltip && this.adapter.addClass(E), this.anchorRect = this.adapter.getAnchorBoundingRect(), this.parentRect = this.adapter.getParentBoundingRect(), this.richTooltip ? this.positionRichTooltip() : this.positionPlainTooltip(), this.adapter.registerDocumentEventHandler("click", this.documentClickHandler), this.adapter.registerDocumentEventHandler("keydown", this.documentKeydownHandler), this.adapter.registerWindowEventHandler("scroll", this.windowScrollHandler), this.adapter.registerWindowEventHandler("resize", this.windowResizeHandler), this.frameId = requestAnimationFrame(function () { t.clearAllAnimationClasses(), t.adapter.addClass(f), t.adapter.addClass(y) })) }, A.prototype.hide = function () { this.clearHideTimeout(), this.clearShowTimeout(), this.tooltipShown && (this.frameId && cancelAnimationFrame(this.frameId), this.tooltipShown = !1, this.adapter.setAttribute("aria-hidden", "true"), this.adapter.deregisterEventHandler("focusout", this.richTooltipFocusOutHandler), this.richTooltip && (this.interactiveTooltip && this.adapter.setAnchorAttribute("aria-expanded", "false"), this.persistentTooltip || (this.adapter.deregisterEventHandler("mouseenter", this.richTooltipMouseEnterHandler), this.adapter.deregisterEventHandler("mouseleave", this.richTooltipMouseLeaveHandler))), this.clearAllAnimationClasses(), this.adapter.addClass(C), this.adapter.addClass(m), this.adapter.removeClass(f), this.adapter.deregisterDocumentEventHandler("click", this.documentClickHandler), this.adapter.deregisterDocumentEventHandler("keydown", this.documentKeydownHandler), this.adapter.deregisterWindowEventHandler("scroll", this.windowScrollHandler), this.adapter.deregisterWindowEventHandler("resize", this.windowResizeHandler)) }, A.prototype.handleTransitionEnd = function () { var t = this.adapter.hasClass(C); this.adapter.removeClass(_), this.adapter.removeClass(y), this.adapter.removeClass(C), this.adapter.removeClass(m), t && this.adapter.notifyHidden() }, A.prototype.clearAllAnimationClasses = function () { this.adapter.removeClass(y), this.adapter.removeClass(m) }, A.prototype.setTooltipPosition = function (t) { var e = t.xPos, n = t.yPos; e && (this.xTooltipPos = e), n && (this.yTooltipPos = n) }, A.prototype.setAnchorBoundaryType = function (t) { t === d.AnchorBoundaryType.UNBOUNDED ? this.anchorGap = d.numbers.UNBOUNDED_ANCHOR_GAP : this.anchorGap = d.numbers.BOUNDED_ANCHOR_GAP }, A.prototype.parseShowTooltipOptions = function () { return { hideFromScreenreader: Boolean(this.adapter.getAnchorAttribute("data-tooltip-id")) } }, A.prototype.isTooltipMultiline = function () { var t = this.adapter.getTooltipSize(); return t.height > d.numbers.MIN_HEIGHT && t.width >= d.numbers.MAX_WIDTH }, A.prototype.positionPlainTooltip = function () { var t = this.calculateTooltipStyles(this.anchorRect), e = t.top, n = t.yTransformOrigin, i = t.left, r = t.xTransformOrigin, o = T ? h.getCorrectPropertyName(window, "transform") : "transform"; this.adapter.setSurfaceStyleProperty(o + "-origin", n + " " + r), this.adapter.setStyleProperty("top", e + "px"), this.adapter.setStyleProperty("left", i + "px") }, A.prototype.positionRichTooltip = function () { var t, e, n, i, r = this.adapter.getComputedStyleProperty("width"); this.adapter.setStyleProperty("width", r); var o = this.calculateTooltipStyles(this.anchorRect), s = o.top, a = o.yTransformOrigin, c = o.left, u = o.xTransformOrigin, l = T ? h.getCorrectPropertyName(window, "transform") : "transform"; this.adapter.setSurfaceStyleProperty(l + "-origin", a + " " + u); var d = c - (null !== (e = null === (t = this.parentRect) || void 0 === t ? void 0 : t.left) && void 0 !== e ? e : 0), p = s - (null !== (i = null === (n = this.parentRect) || void 0 === n ? void 0 : n.top) && void 0 !== i ? i : 0); this.adapter.setStyleProperty("top", p + "px"), this.adapter.setStyleProperty("left", d + "px") }, A.prototype.calculateTooltipStyles = function (t) { if (!t) return { top: 0, left: 0 }; var e = this.adapter.getTooltipSize(), n = this.calculateYTooltipDistance(t, e.height), i = this.calculateXTooltipDistance(t, e.width); return { top: n.distance, yTransformOrigin: n.yTransformOrigin, left: i.distance, xTransformOrigin: i.xTransformOrigin } }, A.prototype.calculateXTooltipDistance = function (t, e) { var n, i, r, o, s, a = !this.adapter.isRTL(); s = this.richTooltip ? (n = a ? t.left - e : t.right, i = a ? t.right : t.left - e, o = a ? d.strings.RIGHT : d.strings.LEFT, a ? d.strings.LEFT : d.strings.RIGHT) : (n = a ? t.left : t.right - e, i = a ? t.right - e : t.left, r = t.left + (t.width - e) / 2, o = a ? d.strings.LEFT : d.strings.RIGHT, a ? d.strings.RIGHT : d.strings.LEFT); var c = this.richTooltip ? this.determineValidPositionOptions(n, i) : this.determineValidPositionOptions(r, n, i); if (this.xTooltipPos === d.XPosition.START && c.has(n)) return { distance: n, xTransformOrigin: o }; if (this.xTooltipPos === d.XPosition.END && c.has(i)) return { distance: i, xTransformOrigin: s }; if (this.xTooltipPos === d.XPosition.CENTER && c.has(r)) return { distance: r, xTransformOrigin: d.strings.CENTER }; var u = (this.richTooltip ? [{ distance: i, xTransformOrigin: s }, { distance: n, xTransformOrigin: o }] : [{ distance: r, xTransformOrigin: d.strings.CENTER }, { distance: n, xTransformOrigin: o }, { distance: i, xTransformOrigin: s }]).find(function (t) { var e = t.distance; return c.has(e) }); return u || (t.left < 0 ? { distance: this.minViewportTooltipThreshold, xTransformOrigin: d.strings.LEFT } : { distance: this.adapter.getViewportWidth() - (e + this.minViewportTooltipThreshold), xTransformOrigin: d.strings.RIGHT }) }, A.prototype.determineValidPositionOptions = function () { for (var e, t, n = [], i = 0; i < arguments.length; i++)n[i] = arguments[i]; var r = new Set, o = new Set; try { for (var s = u(n), a = s.next(); !a.done; a = s.next()) { var c = a.value; this.positionHonorsViewportThreshold(c) ? r.add(c) : this.positionDoesntCollideWithViewport(c) && o.add(c) } } catch (t) { e = { error: t } } finally { try { a && !a.done && (t = s.return) && t.call(s) } finally { if (e) throw e.error } } return r.size ? r : o }, A.prototype.positionHonorsViewportThreshold = function (t) { var e = this.adapter.getViewportWidth(); return t + this.adapter.getTooltipSize().width <= e - this.minViewportTooltipThreshold && t >= this.minViewportTooltipThreshold }, A.prototype.positionDoesntCollideWithViewport = function (t) { var e = this.adapter.getViewportWidth(); return t + this.adapter.getTooltipSize().width <= e && 0 <= t }, A.prototype.calculateYTooltipDistance = function (t, e) { var n = t.bottom + this.anchorGap, i = t.top - (this.anchorGap + e), r = this.determineValidYPositionOptions(i, n); return this.yTooltipPos === d.YPosition.ABOVE && r.has(i) ? { distance: i, yTransformOrigin: d.strings.BOTTOM } : this.yTooltipPos === d.YPosition.BELOW && r.has(n) ? { distance: n, yTransformOrigin: d.strings.TOP } : r.has(n) ? { distance: n, yTransformOrigin: d.strings.TOP } : r.has(i) ? { distance: i, yTransformOrigin: d.strings.BOTTOM } : { distance: n, yTransformOrigin: d.strings.TOP } }, A.prototype.determineValidYPositionOptions = function (t, e) { var n = new Set, i = new Set; return this.yPositionHonorsViewportThreshold(t) ? n.add(t) : this.yPositionDoesntCollideWithViewport(t) && i.add(t), this.yPositionHonorsViewportThreshold(e) ? n.add(e) : this.yPositionDoesntCollideWithViewport(e) && i.add(e), n.size ? n : i }, A.prototype.yPositionHonorsViewportThreshold = function (t) { var e = this.adapter.getViewportHeight(); return t + this.adapter.getTooltipSize().height + this.minViewportTooltipThreshold <= e && t >= this.minViewportTooltipThreshold }, A.prototype.yPositionDoesntCollideWithViewport = function (t) { var e = this.adapter.getViewportHeight(); return t + this.adapter.getTooltipSize().height <= e && 0 <= t }, A.prototype.repositionTooltipOnAnchorMove = function () { var t = this.adapter.getAnchorBoundingRect(); t && this.anchorRect && (t.top === this.anchorRect.top && t.left === this.anchorRect.left && t.height === this.anchorRect.height && t.width === this.anchorRect.width || (this.anchorRect = t, this.parentRect = this.adapter.getParentBoundingRect(), this.richTooltip ? this.positionRichTooltip() : this.positionPlainTooltip())) }, A.prototype.clearShowTimeout = function () { this.showTimeout && (clearTimeout(this.showTimeout), this.showTimeout = null) }, A.prototype.clearHideTimeout = function () { this.hideTimeout && (clearTimeout(this.hideTimeout), this.hideTimeout = null) }, A.prototype.destroy = function () { this.frameId && (cancelAnimationFrame(this.frameId), this.frameId = null), this.clearHideTimeout(), this.clearShowTimeout(), this.adapter.removeClass(f), this.adapter.removeClass(y), this.adapter.removeClass(_), this.adapter.removeClass(C), this.adapter.removeClass(m), this.richTooltip && (this.adapter.deregisterEventHandler("focusout", this.richTooltipFocusOutHandler), this.persistentTooltip || (this.adapter.deregisterEventHandler("mouseenter", this.richTooltipMouseEnterHandler), this.adapter.deregisterEventHandler("mouseleave", this.richTooltipMouseLeaveHandler))), this.adapter.deregisterDocumentEventHandler("click", this.documentClickHandler), this.adapter.deregisterDocumentEventHandler("keydown", this.documentKeydownHandler), this.adapter.deregisterWindowEventHandler("scroll", this.windowScrollHandler), this.adapter.deregisterWindowEventHandler("resize", this.windowResizeHandler), this.animFrame.cancelAll() }, A); function A(t) { var e = g.call(this, o(o({}, A.defaultAdapter), t)) || this; return e.tooltipShown = !1, e.anchorGap = d.numbers.BOUNDED_ANCHOR_GAP, e.xTooltipPos = d.XPosition.DETECTED, e.yTooltipPos = d.YPosition.DETECTED, e.minViewportTooltipThreshold = d.numbers.MIN_VIEWPORT_TOOLTIP_THRESHOLD, e.hideDelayMs = d.numbers.HIDE_DELAY_MS, e.showDelayMs = d.numbers.SHOW_DELAY_MS, e.anchorRect = null, e.parentRect = null, e.frameId = null, e.hideTimeout = null, e.showTimeout = null, e.animFrame = new a.AnimationFrame, e.documentClickHandler = function (t) { e.handleDocumentClick(t) }, e.documentKeydownHandler = function (t) { e.handleKeydown(t) }, e.richTooltipMouseEnterHandler = function () { e.handleRichTooltipMouseEnter() }, e.richTooltipMouseLeaveHandler = function () { e.handleRichTooltipMouseLeave() }, e.richTooltipFocusOutHandler = function (t) { e.handleRichTooltipFocusOut(t) }, e.windowScrollHandler = function () { e.handleWindowChangeEvent() }, e.windowResizeHandler = function () { e.handleWindowChangeEvent() }, e } e.MDCTooltipFoundation = v, e.default = v }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }); Object.defineProperty(e, "__esModule", { value: !0 }); var o, s = n(9), a = n(41), c = (o = a.MDCTopAppBarFoundation, r(u, o), u.prototype.handleTargetScroll = function () { this.adapter.getViewportScrollY() <= 0 ? this.wasScrolled_ && (this.adapter.removeClass(s.cssClasses.FIXED_SCROLLED_CLASS), this.wasScrolled_ = !1) : this.wasScrolled_ || (this.adapter.addClass(s.cssClasses.FIXED_SCROLLED_CLASS), this.wasScrolled_ = !0) }, u); function u() { var t = null !== o && o.apply(this, arguments) || this; return t.wasScrolled_ = !1, t } e.MDCFixedTopAppBarFoundation = c, e.default = c }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }); Object.defineProperty(e, "__esModule", { value: !0 }); var o, s = n(9), a = n(42), c = (o = a.MDCTopAppBarBaseFoundation, r(u, o), Object.defineProperty(u.prototype, "isCollapsed", { get: function () { return this.isCollapsed_ }, enumerable: !0, configurable: !0 }), u.prototype.init = function () { o.prototype.init.call(this), 0 < this.adapter.getTotalActionItems() && this.adapter.addClass(s.cssClasses.SHORT_HAS_ACTION_ITEM_CLASS), this.setAlwaysCollapsed(this.adapter.hasClass(s.cssClasses.SHORT_COLLAPSED_CLASS)) }, u.prototype.setAlwaysCollapsed = function (t) { this.isAlwaysCollapsed_ = !!t, this.isAlwaysCollapsed_ ? this.collapse_() : this.maybeCollapseBar_() }, u.prototype.getAlwaysCollapsed = function () { return this.isAlwaysCollapsed_ }, u.prototype.handleTargetScroll = function () { this.maybeCollapseBar_() }, u.prototype.maybeCollapseBar_ = function () { this.isAlwaysCollapsed_ || (this.adapter.getViewportScrollY() <= 0 ? this.isCollapsed_ && this.uncollapse_() : this.isCollapsed_ || this.collapse_()) }, u.prototype.uncollapse_ = function () { this.adapter.removeClass(s.cssClasses.SHORT_COLLAPSED_CLASS), this.isCollapsed_ = !1 }, u.prototype.collapse_ = function () { this.adapter.addClass(s.cssClasses.SHORT_COLLAPSED_CLASS), this.isCollapsed_ = !0 }, u); function u(t) { var e = o.call(this, t) || this; return e.isCollapsed_ = !1, e.isAlwaysCollapsed_ = !1, e } e.MDCShortTopAppBarFoundation = c, e.default = c }, function (t, e, n) { "use strict"; var i = this && this.__importDefault || function (t) { return t && t.__esModule ? t : { default: t } }, r = this && this.__importStar || function (t) { if (t && t.__esModule) return t; var e = {}; if (null != t) for (var n in t) Object.hasOwnProperty.call(t, n) && (e[n] = t[n]); return e.default = t, e }; Object.defineProperty(e, "__esModule", { value: !0 }); var o = i(n(119)); e.autoInit = o.default; var s = r(n(121)); e.banner = s; var a = r(n(123)); e.base = a; var c = r(n(124)); e.checkbox = c; var u = r(n(125)); e.chips = u; var l = r(n(131)); e.circularProgress = l; var d = r(n(133)); e.dataTable = d; var p = r(n(135)); e.dialog = p; var h = r(n(137)); e.dom = h; var f = r(n(138)); e.drawer = f; var _ = r(n(141)); e.floatingLabel = _; var y = r(n(142)); e.formField = y; var C = r(n(144)); e.iconButton = C; var m = r(n(146)); e.lineRipple = m; var E = r(n(147)); e.linearProgress = E; var g = r(n(148)); e.list = g; var T = r(n(149)); e.menuSurface = T; var v = r(n(150)); e.menu = v; var A = r(n(151)); e.notchedOutline = A; var b = r(n(152)); e.radio = b; var I = r(n(154)); e.ripple = I; var O = r(n(155)); e.segmentedButton = O; var S = r(n(159)); e.select = S; var R = r(n(163)); e.slider = R; var D = r(n(165)); e.snackbar = D; var L = r(n(167)); e.switchControl = L; var P = r(n(169)); e.tabBar = P; var N = r(n(174)); e.tabIndicator = N; var M = r(n(175)); e.tabScroller = M; var w = r(n(176)); e.tab = w; var x = r(n(177)); e.textField = x; var F = r(n(182)); e.tooltip = F; var H = r(n(184)); e.topAppBar = H, o.default.register("MDCBanner", s.MDCBanner), o.default.register("MDCCheckbox", c.MDCCheckbox), o.default.register("MDCChip", u.MDCChip), o.default.register("MDCChipSet", u.MDCChipSet), o.default.register("MDCCircularProgress", l.MDCCircularProgress), o.default.register("MDCDataTable", d.MDCDataTable), o.default.register("MDCDialog", p.MDCDialog), o.default.register("MDCDrawer", f.MDCDrawer), o.default.register("MDCFloatingLabel", _.MDCFloatingLabel), o.default.register("MDCFormField", y.MDCFormField), o.default.register("MDCIconButtonToggle", C.MDCIconButtonToggle), o.default.register("MDCLineRipple", m.MDCLineRipple), o.default.register("MDCLinearProgress", E.MDCLinearProgress), o.default.register("MDCList", g.MDCList), o.default.register("MDCMenu", v.MDCMenu), o.default.register("MDCMenuSurface", T.MDCMenuSurface), o.default.register("MDCNotchedOutline", A.MDCNotchedOutline), o.default.register("MDCRadio", b.MDCRadio), o.default.register("MDCRipple", I.MDCRipple), o.default.register("MDCSegmentedButton", O.MDCSegmentedButton), o.default.register("MDCSelect", S.MDCSelect), o.default.register("MDCSlider", R.MDCSlider), o.default.register("MDCSnackbar", D.MDCSnackbar), o.default.register("MDCSwitch", L.MDCSwitch), o.default.register("MDCTabBar", P.MDCTabBar), o.default.register("MDCTextField", x.MDCTextField), o.default.register("MDCTooltip", F.MDCTooltip), o.default.register("MDCTopAppBar", H.MDCTopAppBar) }, function (t, e, n) { "use strict"; var d = this && this.__values || function (t) { var e = "function" == typeof Symbol && Symbol.iterator, n = e && t[e], i = 0; if (n) return n.call(t); if (t && "number" == typeof t.length) return { next: function () { return t && i >= t.length && (t = void 0), { value: t && t[i++], done: !t } } }; throw new TypeError(e ? "Object is not iterable." : "Symbol.iterator is not defined.") }; Object.defineProperty(e, "__esModule", { value: !0 }); var i = n(120), p = i.strings.AUTO_INIT_ATTR, h = i.strings.AUTO_INIT_STATE_ATTR, f = i.strings.INITIALIZED_STATE, _ = {}, r = console.warn.bind(console); function o(t) { var e, n; void 0 === t && (t = document); var i = [], r = [].slice.call(t.querySelectorAll("[" + p + "]")); r = r.filter(function (t) { return t.getAttribute(h) !== f }); try { for (var o = d(r), s = o.next(); !s.done; s = o.next()) { var a = s.value, c = a.getAttribute(p); if (!c) throw new Error("(mdc-auto-init) Constructor name must be given."); var u = _[c]; if ("function" != typeof u) throw new Error("(mdc-auto-init) Could not find constructor in registry for " + c); var l = u.attachTo(a); Object.defineProperty(a, c, { configurable: !0, enumerable: !1, value: l, writable: !1 }), i.push(l), a.setAttribute(h, f) } } catch (t) { e = { error: t } } finally { try { s && !s.done && (n = o.return) && n.call(o) } finally { if (e) throw e.error } } return function (t, e, n) { var i; void 0 === n && (n = !1), "function" == typeof CustomEvent ? i = new CustomEvent(t, { bubbles: n, detail: e }) : (i = document.createEvent("CustomEvent")).initCustomEvent(t, n, !1, e), document.dispatchEvent(i) }("MDCAutoInit:End", {}), i } (e.mdcAutoInit = o).register = function (t, e, n) { if (void 0 === n && (n = r), "function" != typeof e) throw new Error("(mdc-auto-init) Invalid Constructor value: " + e + ". Expected function."); var i = _[t]; i && n("(mdc-auto-init) Overriding registration for " + t + " with " + e + ". Was: " + i), _[t] = e }, o.deregister = function (t) { delete _[t] }, o.deregisterAll = function () { Object.keys(_).forEach(this.deregister, this) }, e.default = o }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }), e.strings = { AUTO_INIT_ATTR: "data-mdc-auto-init", AUTO_INIT_STATE_ATTR: "data-mdc-auto-init-state", INITIALIZED_STATE: "initialized" } }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } Object.defineProperty(n, "__esModule", { value: !0 }), i(e(122)), i(e(18)), i(e(43)) }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }); Object.defineProperty(e, "__esModule", { value: !0 }); var o, s = n(1), a = n(2), c = n(18), u = n(43), l = (o = s.MDCComponent, r(d, o), d.attachTo = function (t) { return new d(t) }, d.prototype.initialize = function () { var n = this; this.contentEl = this.root.querySelector(c.selectors.CONTENT), this.textEl = this.root.querySelector(c.selectors.TEXT), this.primaryActionEl = this.root.querySelector(c.selectors.PRIMARY_ACTION), this.secondaryActionEl = this.root.querySelector(c.selectors.SECONDARY_ACTION), this.handleContentClick = function (t) { var e = t.target; a.closest(e, c.selectors.PRIMARY_ACTION) ? n.foundation.handlePrimaryActionClick() : a.closest(e, c.selectors.SECONDARY_ACTION) && n.foundation.handleSecondaryActionClick() } }, d.prototype.initialSyncWithDOM = function () { this.registerContentClickHandler(this.handleContentClick) }, d.prototype.destroy = function () { o.prototype.destroy.call(this), this.deregisterContentClickHandler(this.handleContentClick) }, d.prototype.layout = function () { this.foundation.layout() }, d.prototype.open = function () { this.foundation.open() }, d.prototype.close = function (t) { this.foundation.close(t) }, d.prototype.getDefaultFoundation = function () { var n = this, t = { addClass: function (t) { n.root.classList.add(t) }, getContentHeight: function () { return n.contentEl.offsetHeight }, notifyClosed: function (t) { n.emit(c.events.CLOSED, { reason: t }) }, notifyClosing: function (t) { n.emit(c.events.CLOSING, { reason: t }) }, notifyOpened: function () { n.emit(c.events.OPENED, {}) }, notifyOpening: function () { n.emit(c.events.OPENING, {}) }, removeClass: function (t) { n.root.classList.remove(t) }, setStyleProperty: function (t, e) { n.root.style.setProperty(t, e) } }; return new u.MDCBannerFoundation(t) }, Object.defineProperty(d.prototype, "isOpen", { get: function () { return this.foundation.isOpen() }, enumerable: !0, configurable: !0 }), d.prototype.getText = function () { return this.textEl.textContent || "" }, d.prototype.setText = function (t) { this.textEl.textContent = t }, d.prototype.getPrimaryActionText = function () { return this.primaryActionEl.textContent || "" }, d.prototype.setPrimaryActionText = function (t) { this.primaryActionEl.textContent = t }, d.prototype.getSecondaryActionText = function () { return this.secondaryActionEl ? this.secondaryActionEl.textContent || "" : null }, d.prototype.setSecondaryActionText = function (t) { this.secondaryActionEl && (this.secondaryActionEl.textContent = t) }, d.prototype.registerContentClickHandler = function (t) { this.contentEl.addEventListener("click", t) }, d.prototype.deregisterContentClickHandler = function (t) { this.contentEl.removeEventListener("click", t) }, d); function d() { return null !== o && o.apply(this, arguments) || this } e.MDCBanner = l }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } Object.defineProperty(n, "__esModule", { value: !0 }), i(e(1)), i(e(0)) }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } Object.defineProperty(n, "__esModule", { value: !0 }), i(e(44)), i(e(20)), i(e(46)) }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } Object.defineProperty(n, "__esModule", { value: !0 }), i(e(126)), i(e(127)), i(e(128)) }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } Object.defineProperty(n, "__esModule", { value: !0 }), i(e(47)), i(e(48)); var r = e(11); n.trailingActionStrings = r.strings }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } Object.defineProperty(n, "__esModule", { value: !0 }), i(e(49)), i(e(21)); var r = e(12); n.chipCssClasses = r.cssClasses, n.chipStrings = r.strings }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } Object.defineProperty(n, "__esModule", { value: !0 }), i(e(129)), i(e(50)); var r = e(51); n.chipSetCssClasses = r.cssClasses, n.chipSetStrings = r.strings }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }); Object.defineProperty(e, "__esModule", { value: !0 }); var o, s = n(1), a = n(130), c = n(49), u = n(21), l = n(50), d = u.MDCChipFoundation.strings, p = d.INTERACTION_EVENT, h = d.SELECTION_EVENT, f = d.REMOVAL_EVENT, _ = d.NAVIGATION_EVENT, y = l.MDCChipSetFoundation.strings.CHIP_SELECTOR, C = 0, m = (o = s.MDCComponent, r(E, o), E.attachTo = function (t) { return new E(t) }, Object.defineProperty(E.prototype, "chips", { get: function () { return this.chips_.slice() }, enumerable: !0, configurable: !0 }), Object.defineProperty(E.prototype, "selectedChipIds", { get: function () { return this.foundation.getSelectedChipIds() }, enumerable: !0, configurable: !0 }), E.prototype.initialize = function (t) { void 0 === t && (t = function (t) { return new c.MDCChip(t) }), this.chipFactory_ = t, this.chips_ = this.instantiateChips_(this.chipFactory_) }, E.prototype.initialSyncWithDOM = function () { var e = this; this.chips_.forEach(function (t) { t.id && t.selected && e.foundation.select(t.id) }), this.handleChipInteraction_ = function (t) { return e.foundation.handleChipInteraction(t.detail) }, this.handleChipSelection_ = function (t) { return e.foundation.handleChipSelection(t.detail) }, this.handleChipRemoval_ = function (t) { return e.foundation.handleChipRemoval(t.detail) }, this.handleChipNavigation_ = function (t) { return e.foundation.handleChipNavigation(t.detail) }, this.listen(p, this.handleChipInteraction_), this.listen(h, this.handleChipSelection_), this.listen(f, this.handleChipRemoval_), this.listen(_, this.handleChipNavigation_) }, E.prototype.destroy = function () { this.chips_.forEach(function (t) { t.destroy() }), this.unlisten(p, this.handleChipInteraction_), this.unlisten(h, this.handleChipSelection_), this.unlisten(f, this.handleChipRemoval_), this.unlisten(_, this.handleChipNavigation_), o.prototype.destroy.call(this) }, E.prototype.addChip = function (t) { t.id = t.id || "mdc-chip-" + ++C, this.chips_.push(this.chipFactory_(t)) }, E.prototype.getDefaultFoundation = function () { var i = this, t = { announceMessage: function (t) { a.announce(t) }, focusChipPrimaryActionAtIndex: function (t) { i.chips_[t].focusPrimaryAction() }, focusChipTrailingActionAtIndex: function (t) { i.chips_[t].focusTrailingAction() }, getChipListCount: function () { return i.chips_.length }, getIndexOfChipById: function (t) { return i.findChipIndex_(t) }, hasClass: function (t) { return i.root.classList.contains(t) }, isRTL: function () { return "rtl" === window.getComputedStyle(i.root).getPropertyValue("direction") }, removeChipAtIndex: function (t) { 0 <= t && t < i.chips_.length && (i.chips_[t].destroy(), i.chips_[t].remove(), i.chips_.splice(t, 1)) }, removeFocusFromChipAtIndex: function (t) { i.chips_[t].removeFocus() }, selectChipAtIndex: function (t, e, n) { 0 <= t && t < i.chips_.length && i.chips_[t].setSelectedFromChipSet(e, n) } }; return new l.MDCChipSetFoundation(t) }, E.prototype.instantiateChips_ = function (e) { return [].slice.call(this.root.querySelectorAll(y)).map(function (t) { return t.id = t.id || "mdc-chip-" + ++C, e(t) }) }, E.prototype.findChipIndex_ = function (t) { for (var e = 0; e < this.chips_.length; e++)if (this.chips_[e].id === t) return e; return -1 }, E); function E() { return null !== o && o.apply(this, arguments) || this } e.MDCChipSet = m }, function (t, n, e) { "use strict"; var r, i; Object.defineProperty(n, "__esModule", { value: !0 }), (i = r = n.AnnouncerPriority || (n.AnnouncerPriority = {})).POLITE = "polite", i.ASSERTIVE = "assertive", n.DATA_MDC_DOM_ANNOUNCE = "data-mdc-dom-announce", n.announce = function (t, e) { o.getInstance().say(t, e) }; var o = (s.getInstance = function () { return s.instance || (s.instance = new s), s.instance }, s.prototype.say = function (t, e) { void 0 === e && (e = r.POLITE); var n = this.getLiveRegion(e); function i() { n.textContent = "", document.removeEventListener("click", i) } n.textContent = "", setTimeout(function () { n.textContent = t, document.addEventListener("click", i) }, 1) }, s.prototype.getLiveRegion = function (t) { var e = this.liveRegions.get(t); if (e && document.body.contains(e)) return e; var n = this.createLiveRegion(t); return this.liveRegions.set(t, n), n }, s.prototype.createLiveRegion = function (t) { var e = document.createElement("div"); return e.style.position = "absolute", e.style.top = "-9999px", e.style.left = "-9999px", e.style.height = "1px", e.style.overflow = "hidden", e.setAttribute("aria-atomic", "true"), e.setAttribute("aria-live", t), e.setAttribute(n.DATA_MDC_DOM_ANNOUNCE, "true"), document.body.appendChild(e), e }, s); function s() { this.liveRegions = new Map } }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } Object.defineProperty(n, "__esModule", { value: !0 }), i(e(132)), i(e(53)), i(e(52)) }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }); Object.defineProperty(e, "__esModule", { value: !0 }); var o, s = n(1), a = n(52), c = (o = s.MDCComponent, r(u, o), u.prototype.initialize = function () { this.determinateCircle_ = this.root.querySelector(a.MDCCircularProgressFoundation.strings.DETERMINATE_CIRCLE_SELECTOR) }, u.attachTo = function (t) { return new u(t) }, Object.defineProperty(u.prototype, "determinate", { set: function (t) { this.foundation.setDeterminate(t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(u.prototype, "progress", { set: function (t) { this.foundation.setProgress(t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(u.prototype, "isClosed", { get: function () { return this.foundation.isClosed() }, enumerable: !0, configurable: !0 }), u.prototype.open = function () { this.foundation.open() }, u.prototype.close = function () { this.foundation.close() }, u.prototype.getDefaultFoundation = function () { var n = this, t = { addClass: function (t) { return n.root.classList.add(t) }, getDeterminateCircleAttribute: function (t) { return n.determinateCircle_.getAttribute(t) }, hasClass: function (t) { return n.root.classList.contains(t) }, removeClass: function (t) { return n.root.classList.remove(t) }, removeAttribute: function (t) { return n.root.removeAttribute(t) }, setAttribute: function (t, e) { return n.root.setAttribute(t, e) }, setDeterminateCircleAttribute: function (t, e) { return n.determinateCircle_.setAttribute(t, e) } }; return new a.MDCCircularProgressFoundation(t) }, u); function u() { return null !== o && o.apply(this, arguments) || this } e.MDCCircularProgress = c }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } Object.defineProperty(n, "__esModule", { value: !0 }), i(e(134)), i(e(57)), i(e(22)) }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__values || function (t) { var e = "function" == typeof Symbol && Symbol.iterator, n = e && t[e], i = 0; if (n) return n.call(t); if (t && "number" == typeof t.length) return { next: function () { return t && i >= t.length && (t = void 0), { value: t && t[i++], done: !t } } }; throw new TypeError(e ? "Object is not iterable." : "Symbol.iterator is not defined.") }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a = n(1), c = n(44), u = n(2), l = n(54), d = n(22), p = n(57), h = (s = a.MDCComponent, r(f, s), f.attachTo = function (t) { return new f(t) }, f.prototype.initialize = function (t) { void 0 === t && (t = function (t) { return new c.MDCCheckbox(t) }), this.checkboxFactory = t }, f.prototype.initialSyncWithDOM = function () { var e = this; this.headerRow = this.root.querySelector("." + d.cssClasses.HEADER_ROW), this.handleHeaderRowCheckboxChange = function () { e.foundation.handleHeaderRowCheckboxChange() }, this.headerRow.addEventListener("change", this.handleHeaderRowCheckboxChange), this.headerRowClickListener = function (t) { e.handleHeaderRowClick(t) }, this.headerRow.addEventListener("click", this.headerRowClickListener), this.content = this.root.querySelector("." + d.cssClasses.CONTENT), this.handleRowCheckboxChange = function (t) { e.foundation.handleRowCheckboxChange(t) }, this.content.addEventListener("change", this.handleRowCheckboxChange), this.layout() }, f.prototype.layout = function () { this.foundation.layout() }, f.prototype.getHeaderCells = function () { return [].slice.call(this.root.querySelectorAll(d.selectors.HEADER_CELL)) }, f.prototype.getRows = function () { return this.foundation.getRows() }, f.prototype.getSelectedRowIds = function () { return this.foundation.getSelectedRowIds() }, f.prototype.setSelectedRowIds = function (t) { this.foundation.setSelectedRowIds(t) }, f.prototype.showProgress = function () { this.getLinearProgress().open(), this.foundation.showProgress() }, f.prototype.hideProgress = function () { this.foundation.hideProgress(), this.getLinearProgress().close() }, f.prototype.destroy = function () { var e, t; if (this.handleHeaderRowCheckboxChange && this.headerRow.removeEventListener("change", this.handleHeaderRowCheckboxChange), this.headerRowClickListener && this.headerRow.removeEventListener("click", this.headerRowClickListener), this.handleRowCheckboxChange && this.content.removeEventListener("change", this.handleRowCheckboxChange), this.headerRowCheckbox && this.headerRowCheckbox.destroy(), this.rowCheckboxList) try { for (var n = o(this.rowCheckboxList), i = n.next(); !i.done; i = n.next())i.value.destroy() } catch (t) { e = { error: t } } finally { try { i && !i.done && (t = n.return) && t.call(n) } finally { if (e) throw e.error } } }, f.prototype.getDefaultFoundation = function () { var i = this, t = { addClass: function (t) { i.root.classList.add(t) }, removeClass: function (t) { i.root.classList.remove(t) }, getHeaderCellElements: function () { return i.getHeaderCells() }, getHeaderCellCount: function () { return i.getHeaderCells().length }, getAttributeByHeaderCellIndex: function (t, e) { return i.getHeaderCells()[t].getAttribute(e) }, setAttributeByHeaderCellIndex: function (t, e, n) { i.getHeaderCells()[t].setAttribute(e, n) }, setClassNameByHeaderCellIndex: function (t, e) { i.getHeaderCells()[t].classList.add(e) }, removeClassNameByHeaderCellIndex: function (t, e) { i.getHeaderCells()[t].classList.remove(e) }, notifySortAction: function (t) { i.emit(d.events.SORTED, t, !0) }, getTableContainerHeight: function () { var t = i.root.querySelector("." + d.cssClasses.TABLE_CONTAINER); if (!t) throw new Error("MDCDataTable: Table container element not found."); return t.getBoundingClientRect().height }, getTableHeaderHeight: function () { var t = i.root.querySelector(d.selectors.HEADER_ROW); if (!t) throw new Error("MDCDataTable: Table header element not found."); return t.getBoundingClientRect().height }, setProgressIndicatorStyles: function (t) { var e = i.root.querySelector(d.selectors.PROGRESS_INDICATOR); if (!e) throw new Error("MDCDataTable: Progress indicator element not found."); e.style.setProperty("height", t.height), e.style.setProperty("top", t.top) }, addClassAtRowIndex: function (t, e) { i.getRows()[t].classList.add(e) }, getRowCount: function () { return i.getRows().length }, getRowElements: function () { return [].slice.call(i.root.querySelectorAll(d.selectors.ROW)) }, getRowIdAtIndex: function (t) { return i.getRows()[t].getAttribute(d.dataAttributes.ROW_ID) }, getRowIndexByChildElement: function (t) { return i.getRows().indexOf(u.closest(t, d.selectors.ROW)) }, getSelectedRowCount: function () { return i.root.querySelectorAll(d.selectors.ROW_SELECTED).length }, isCheckboxAtRowIndexChecked: function (t) { return i.rowCheckboxList[t].checked }, isHeaderRowCheckboxChecked: function () { return i.headerRowCheckbox.checked }, isRowsSelectable: function () { return !!i.root.querySelector(d.selectors.ROW_CHECKBOX) || !!i.root.querySelector(d.selectors.HEADER_ROW_CHECKBOX) }, notifyRowSelectionChanged: function (t) { i.emit(d.events.ROW_SELECTION_CHANGED, { row: i.getRowByIndex(t.rowIndex), rowId: i.getRowIdByIndex(t.rowIndex), rowIndex: t.rowIndex, selected: t.selected }, !0) }, notifySelectedAll: function () { i.emit(d.events.SELECTED_ALL, {}, !0) }, notifyUnselectedAll: function () { i.emit(d.events.UNSELECTED_ALL, {}, !0) }, registerHeaderRowCheckbox: function () { i.headerRowCheckbox && i.headerRowCheckbox.destroy(); var t = i.root.querySelector(d.selectors.HEADER_ROW_CHECKBOX); i.headerRowCheckbox = i.checkboxFactory(t) }, registerRowCheckboxes: function () { i.rowCheckboxList && i.rowCheckboxList.forEach(function (t) { t.destroy() }), i.rowCheckboxList = [], i.getRows().forEach(function (t) { var e = i.checkboxFactory(t.querySelector(d.selectors.ROW_CHECKBOX)); i.rowCheckboxList.push(e) }) }, removeClassAtRowIndex: function (t, e) { i.getRows()[t].classList.remove(e) }, setAttributeAtRowIndex: function (t, e, n) { i.getRows()[t].setAttribute(e, n) }, setHeaderRowCheckboxChecked: function (t) { i.headerRowCheckbox.checked = t }, setHeaderRowCheckboxIndeterminate: function (t) { i.headerRowCheckbox.indeterminate = t }, setRowCheckboxCheckedAtIndex: function (t, e) { i.rowCheckboxList[t].checked = e }, setSortStatusLabelByHeaderCellIndex: function (t, e) { var n = i.getHeaderCells()[t].querySelector(d.selectors.SORT_STATUS_LABEL); n && (n.textContent = i.getSortStatusMessageBySortValue(e)) } }; return new p.MDCDataTableFoundation(t) }, f.prototype.getRowByIndex = function (t) { return this.getRows()[t] }, f.prototype.getRowIdByIndex = function (t) { return this.getRowByIndex(t).getAttribute(d.dataAttributes.ROW_ID) }, f.prototype.handleHeaderRowClick = function (t) { var e = u.closest(t.target, d.selectors.HEADER_CELL_WITH_SORT); if (e) { var n = e.getAttribute(d.dataAttributes.COLUMN_ID), i = this.getHeaderCells().indexOf(e); -1 !== i && this.foundation.handleSortAction({ columnId: n, columnIndex: i, headerCell: e }) } }, f.prototype.getSortStatusMessageBySortValue = function (t) { switch (t) { case d.SortValue.ASCENDING: return d.messages.SORTED_IN_ASCENDING; case d.SortValue.DESCENDING: return d.messages.SORTED_IN_DESCENDING; default: return "" } }, f.prototype.getLinearProgressElement = function () { var t = this.root.querySelector("." + d.cssClasses.LINEAR_PROGRESS); if (!t) throw new Error("MDCDataTable: linear progress element is not found."); return t }, f.prototype.getLinearProgress = function () { if (!this.linearProgress) { var t = this.getLinearProgressElement(); this.linearProgress = new l.MDCLinearProgress(t) } return this.linearProgress }, f); function f() { return null !== s && s.apply(this, arguments) || this } e.MDCDataTable = h }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } var r = this && this.__importStar || function (t) { if (t && t.__esModule) return t; var e = {}; if (null != t) for (var n in t) Object.hasOwnProperty.call(t, n) && (e[n] = t[n]); return e.default = t, e }; Object.defineProperty(n, "__esModule", { value: !0 }); var o = r(e(58)); n.util = o, i(e(136)), i(e(61)), i(e(59)) }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), a = this && this.__values || function (t) { var e = "function" == typeof Symbol && Symbol.iterator, n = e && t[e], i = 0; if (n) return n.call(t); if (t && "number" == typeof t.length) return { next: function () { return t && i >= t.length && (t = void 0), { value: t && t[i++], done: !t } } }; throw new TypeError(e ? "Object is not iterable." : "Symbol.iterator is not defined.") }, o = this && this.__importStar || function (t) { if (t && t.__esModule) return t; var e = {}; if (null != t) for (var n in t) Object.hasOwnProperty.call(t, n) && (e[n] = t[n]); return e.default = t, e }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, c = n(1), u = n(23), l = n(2), d = n(3), p = n(59), h = o(n(58)), f = p.MDCDialogFoundation.strings, _ = (s = c.MDCComponent, r(y, s), Object.defineProperty(y.prototype, "isOpen", { get: function () { return this.foundation.isOpen() }, enumerable: !0, configurable: !0 }), Object.defineProperty(y.prototype, "escapeKeyAction", { get: function () { return this.foundation.getEscapeKeyAction() }, set: function (t) { this.foundation.setEscapeKeyAction(t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(y.prototype, "scrimClickAction", { get: function () { return this.foundation.getScrimClickAction() }, set: function (t) { this.foundation.setScrimClickAction(t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(y.prototype, "autoStackButtons", { get: function () { return this.foundation.getAutoStackButtons() }, set: function (t) { this.foundation.setAutoStackButtons(t) }, enumerable: !0, configurable: !0 }), y.attachTo = function (t) { return new y(t) }, y.prototype.initialize = function (t) { var e, n; void 0 === t && (t = function (t, e) { return new u.FocusTrap(t, e) }); var i = this.root.querySelector(f.CONTAINER_SELECTOR); if (!i) throw new Error("Dialog component requires a " + f.CONTAINER_SELECTOR + " container element"); this.container = i, this.content = this.root.querySelector(f.CONTENT_SELECTOR), this.buttons = [].slice.call(this.root.querySelectorAll(f.BUTTON_SELECTOR)), this.defaultButton = this.root.querySelector("[" + f.BUTTON_DEFAULT_ATTRIBUTE + "]"), this.focusTrapFactory = t, this.buttonRipples = []; try { for (var r = a(this.buttons), o = r.next(); !o.done; o = r.next()) { var s = o.value; this.buttonRipples.push(new d.MDCRipple(s)) } } catch (t) { e = { error: t } } finally { try { o && !o.done && (n = r.return) && n.call(r) } finally { if (e) throw e.error } } }, y.prototype.initialSyncWithDOM = function () { var e = this; this.focusTrap = h.createFocusTrapInstance(this.container, this.focusTrapFactory, this.getInitialFocusEl() || void 0), this.handleClick = this.foundation.handleClick.bind(this.foundation), this.handleKeydown = this.foundation.handleKeydown.bind(this.foundation), this.handleDocumentKeydown = this.foundation.handleDocumentKeydown.bind(this.foundation), this.handleLayout = this.layout.bind(this); var t = ["resize", "orientationchange"]; this.handleOpening = function () { t.forEach(function (t) { window.addEventListener(t, e.handleLayout) }), document.addEventListener("keydown", e.handleDocumentKeydown) }, this.handleClosing = function () { t.forEach(function (t) { window.removeEventListener(t, e.handleLayout) }), document.removeEventListener("keydown", e.handleDocumentKeydown) }, this.listen("click", this.handleClick), this.listen("keydown", this.handleKeydown), this.listen(f.OPENING_EVENT, this.handleOpening), this.listen(f.CLOSING_EVENT, this.handleClosing) }, y.prototype.destroy = function () { this.unlisten("click", this.handleClick), this.unlisten("keydown", this.handleKeydown), this.unlisten(f.OPENING_EVENT, this.handleOpening), this.unlisten(f.CLOSING_EVENT, this.handleClosing), this.handleClosing(), this.buttonRipples.forEach(function (t) { t.destroy() }), s.prototype.destroy.call(this) }, y.prototype.layout = function () { this.foundation.layout() }, y.prototype.open = function () { this.foundation.open() }, y.prototype.close = function (t) { void 0 === t && (t = ""), this.foundation.close(t) }, y.prototype.getDefaultFoundation = function () { var n = this, t = { addBodyClass: function (t) { return document.body.classList.add(t) }, addClass: function (t) { return n.root.classList.add(t) }, areButtonsStacked: function () { return h.areTopsMisaligned(n.buttons) }, clickDefaultButton: function () { n.defaultButton && n.defaultButton.click() }, eventTargetMatches: function (t, e) { return !!t && l.matches(t, e) }, getActionFromEvent: function (t) { if (!t.target) return ""; var e = l.closest(t.target, "[" + f.ACTION_ATTRIBUTE + "]"); return e && e.getAttribute(f.ACTION_ATTRIBUTE) }, getInitialFocusEl: function () { return n.getInitialFocusEl() }, hasClass: function (t) { return n.root.classList.contains(t) }, isContentScrollable: function () { return h.isScrollable(n.content) }, notifyClosed: function (t) { return n.emit(f.CLOSED_EVENT, t ? { action: t } : {}) }, notifyClosing: function (t) { return n.emit(f.CLOSING_EVENT, t ? { action: t } : {}) }, notifyOpened: function () { return n.emit(f.OPENED_EVENT, {}) }, notifyOpening: function () { return n.emit(f.OPENING_EVENT, {}) }, releaseFocus: function () { n.focusTrap.releaseFocus() }, removeBodyClass: function (t) { return document.body.classList.remove(t) }, removeClass: function (t) { return n.root.classList.remove(t) }, reverseButtons: function () { n.buttons.reverse(), n.buttons.forEach(function (t) { t.parentElement.appendChild(t) }) }, trapFocus: function () { n.focusTrap.trapFocus() }, registerContentEventHandler: function (t, e) { n.content instanceof HTMLElement && n.content.addEventListener(t, e) }, deregisterContentEventHandler: function (t, e) { n.content instanceof HTMLElement && n.content.removeEventListener(t, e) }, isScrollableContentAtTop: function () { return h.isScrollAtTop(n.content) }, isScrollableContentAtBottom: function () { return h.isScrollAtBottom(n.content) } }; return new p.MDCDialogFoundation(t) }, y.prototype.getInitialFocusEl = function () { return this.root.querySelector("[" + f.INITIAL_FOCUS_ATTRIBUTE + "]") }, y); function y() { return null !== s && s.apply(this, arguments) || this } e.MDCDialog = _ }, function (t, e, n) { "use strict"; var i = this && this.__importStar || function (t) { if (t && t.__esModule) return t; var e = {}; if (null != t) for (var n in t) Object.hasOwnProperty.call(t, n) && (e[n] = t[n]); return e.default = t, e }; Object.defineProperty(e, "__esModule", { value: !0 }); var r = i(n(5)); e.events = r; var o = i(n(23)); e.focusTrap = o; var s = i(n(6)); e.keyboard = s; var a = i(n(2)); e.ponyfill = a }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } var r = this && this.__importStar || function (t) { if (t && t.__esModule) return t; var e = {}; if (null != t) for (var n in t) Object.hasOwnProperty.call(t, n) && (e[n] = t[n]); return e.default = t, e }; Object.defineProperty(n, "__esModule", { value: !0 }); var o = r(e(62)); n.util = o, i(e(139)), i(e(64)), i(e(25)), i(e(65)) }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__importStar || function (t) { if (t && t.__esModule) return t; var e = {}; if (null != t) for (var n in t) Object.hasOwnProperty.call(t, n) && (e[n] = t[n]); return e.default = t, e }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a = n(1), c = n(23), u = n(24), l = n(13), d = n(25), p = n(65), h = o(n(62)), f = d.MDCDismissibleDrawerFoundation.cssClasses, _ = d.MDCDismissibleDrawerFoundation.strings, y = (s = a.MDCComponent, r(C, s), C.attachTo = function (t) { return new C(t) }, Object.defineProperty(C.prototype, "open", { get: function () { return this.foundation.isOpen() }, set: function (t) { t ? this.foundation.open() : this.foundation.close() }, enumerable: !0, configurable: !0 }), Object.defineProperty(C.prototype, "list", { get: function () { return this.list_ }, enumerable: !0, configurable: !0 }), C.prototype.initialize = function (t, e) { void 0 === t && (t = function (t) { return new c.FocusTrap(t) }), void 0 === e && (e = function (t) { return new u.MDCList(t) }); var n = this.root.querySelector("." + l.MDCListFoundation.cssClasses.ROOT); n && (this.list_ = e(n), this.list_.wrapFocus = !0), this.focusTrapFactory_ = t }, C.prototype.initialSyncWithDOM = function () { var e = this, t = f.MODAL, n = _.SCRIM_SELECTOR; this.scrim_ = this.root.parentNode.querySelector(n), this.scrim_ && this.root.classList.contains(t) && (this.handleScrimClick_ = function () { return e.foundation.handleScrimClick() }, this.scrim_.addEventListener("click", this.handleScrimClick_), this.focusTrap_ = h.createFocusTrapInstance(this.root, this.focusTrapFactory_)), this.handleKeydown_ = function (t) { return e.foundation.handleKeydown(t) }, this.handleTransitionEnd_ = function (t) { return e.foundation.handleTransitionEnd(t) }, this.listen("keydown", this.handleKeydown_), this.listen("transitionend", this.handleTransitionEnd_) }, C.prototype.destroy = function () { this.unlisten("keydown", this.handleKeydown_), this.unlisten("transitionend", this.handleTransitionEnd_), this.list_ && this.list_.destroy(); var t = f.MODAL; this.scrim_ && this.handleScrimClick_ && this.root.classList.contains(t) && (this.scrim_.removeEventListener("click", this.handleScrimClick_), this.open = !1) }, C.prototype.getDefaultFoundation = function () { var e = this, t = { addClass: function (t) { return e.root.classList.add(t) }, removeClass: function (t) { return e.root.classList.remove(t) }, hasClass: function (t) { return e.root.classList.contains(t) }, elementHasClass: function (t, e) { return t.classList.contains(e) }, saveFocus: function () { return e.previousFocus_ = document.activeElement }, restoreFocus: function () { var t = e.previousFocus_; t && t.focus && e.root.contains(document.activeElement) && t.focus() }, focusActiveNavigationItem: function () { var t = e.root.querySelector("." + l.MDCListFoundation.cssClasses.LIST_ITEM_ACTIVATED_CLASS); t && t.focus() }, notifyClose: function () { return e.emit(_.CLOSE_EVENT, {}, !0) }, notifyOpen: function () { return e.emit(_.OPEN_EVENT, {}, !0) }, trapFocus: function () { return e.focusTrap_.trapFocus() }, releaseFocus: function () { return e.focusTrap_.releaseFocus() } }, n = f.DISMISSIBLE, i = f.MODAL; if (this.root.classList.contains(n)) return new d.MDCDismissibleDrawerFoundation(t); if (this.root.classList.contains(i)) return new p.MDCModalDrawerFoundation(t); throw new Error("MDCDrawer: Failed to instantiate component. Supported variants are " + n + " and " + i + ".") }, C); function C() { return null !== s && s.apply(this, arguments) || this } e.MDCDrawer = y }, function (t, e, n) { "use strict"; Object.defineProperty(e, "__esModule", { value: !0 }); var y = n(6), u = n(7), C = n(63); function m(t, e) { var n, i = t.nextChar, r = t.focusItemAtIndex, o = t.sortedIndexByFirstChar, s = t.focusedItemIndex, a = t.skipFocus, c = t.isItemAtIndexDisabled; return clearTimeout(e.bufferClearTimeout), e.bufferClearTimeout = setTimeout(function () { l(e) }, u.numbers.TYPEAHEAD_BUFFER_CLEAR_TIMEOUT_MS), e.typeaheadBuffer = e.typeaheadBuffer + i, -1 === (n = 1 === e.typeaheadBuffer.length ? function (t, e, n, i) { var r = i.typeaheadBuffer[0], o = t.get(r); if (!o) return -1; if (r === i.currentFirstChar && o[i.sortedIndexCursor].index === e) { i.sortedIndexCursor = (i.sortedIndexCursor + 1) % o.length; var s = o[i.sortedIndexCursor].index; if (!n(s)) return s } i.currentFirstChar = r; var a, c = -1; for (a = 0; a < o.length; a++)if (!n(o[a].index)) { c = a; break } for (; a < o.length; a++)if (o[a].index > e && !n(o[a].index)) { c = a; break } return -1 === c ? -1 : (i.sortedIndexCursor = c, o[i.sortedIndexCursor].index) }(o, s, c, e) : function (t, e, n) { var i = n.typeaheadBuffer[0], r = t.get(i); if (!r) return -1; var o = r[n.sortedIndexCursor]; if (0 === o.text.lastIndexOf(n.typeaheadBuffer, 0) && !e(o.index)) return o.index; var s = (n.sortedIndexCursor + 1) % r.length, a = -1; for (; s !== n.sortedIndexCursor;) { var c = r[s], u = 0 === c.text.lastIndexOf(n.typeaheadBuffer, 0), l = !e(c.index); if (u && l) { a = s; break } s = (s + 1) % r.length } return -1 === a ? -1 : (n.sortedIndexCursor = a, r[n.sortedIndexCursor].index) }(o, c, e)) || a || r(n), n } function E(t) { return 0 < t.typeaheadBuffer.length } function l(t) { t.typeaheadBuffer = "" } e.initState = function () { return { bufferClearTimeout: 0, currentFirstChar: "", sortedIndexCursor: 0, typeaheadBuffer: "" } }, e.initSortedIndex = function (t, e) { for (var n = new Map, i = 0; i < t; i++) { var r = e(i).trim(); if (r) { var o = r[0].toLowerCase(); n.has(o) || n.set(o, []), n.get(o).push({ text: r.toLowerCase(), index: i }) } } return n.forEach(function (t) { t.sort(function (t, e) { return t.index - e.index }) }), n }, e.matchItem = m, e.isTypingInProgress = E, e.clearBuffer = l, e.handleKeydown = function (t, e) { var n = t.event, i = t.isTargetListItem, r = t.focusedItemIndex, o = t.focusItemAtIndex, s = t.sortedIndexByFirstChar, a = t.isItemAtIndexDisabled, c = "ArrowLeft" === y.normalizeKey(n), u = "ArrowUp" === y.normalizeKey(n), l = "ArrowRight" === y.normalizeKey(n), d = "ArrowDown" === y.normalizeKey(n), p = "Home" === y.normalizeKey(n), h = "End" === y.normalizeKey(n), f = "Enter" === y.normalizeKey(n), _ = "Spacebar" === y.normalizeKey(n); return c || u || l || d || p || h || f ? -1 : _ || 1 !== n.key.length ? _ ? (i && C.preventDefaultEvent(n), i && E(e) ? m({ focusItemAtIndex: o, focusedItemIndex: r, nextChar: " ", sortedIndexByFirstChar: s, skipFocus: !1, isItemAtIndexDisabled: a }, e) : -1) : -1 : (C.preventDefaultEvent(n), m({ focusItemAtIndex: o, focusedItemIndex: r, nextChar: n.key.toLowerCase(), sortedIndexByFirstChar: s, skipFocus: !1, isItemAtIndexDisabled: a }, e)) } }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } Object.defineProperty(n, "__esModule", { value: !0 }), i(e(26)), i(e(66)), i(e(27)) }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } Object.defineProperty(n, "__esModule", { value: !0 }), i(e(143)), i(e(68)), i(e(67)) }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }); Object.defineProperty(e, "__esModule", { value: !0 }); var o, s = n(1), a = n(67), c = (o = s.MDCComponent, r(u, o), u.attachTo = function (t) { return new u(t) }, u.prototype.labelEl = function () { var t = a.MDCFormFieldFoundation.strings.LABEL_SELECTOR; return this.root.querySelector(t) }, u.prototype.getDefaultFoundation = function () { var i = this, t = { activateInputRipple: function () { i.input && i.input.ripple && i.input.ripple.activate() }, deactivateInputRipple: function () { i.input && i.input.ripple && i.input.ripple.deactivate() }, deregisterInteractionHandler: function (t, e) { var n = i.labelEl(); n && n.removeEventListener(t, e) }, registerInteractionHandler: function (t, e) { var n = i.labelEl(); n && n.addEventListener(t, e) } }; return new a.MDCFormFieldFoundation(t) }, u); function u() { return null !== o && o.apply(this, arguments) || this } e.MDCFormField = c }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } Object.defineProperty(n, "__esModule", { value: !0 }), i(e(145)), i(e(70)), i(e(69)) }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }); Object.defineProperty(e, "__esModule", { value: !0 }); var o, s = n(1), a = n(3), c = n(69), u = c.MDCIconButtonToggleFoundation.strings, l = (o = s.MDCComponent, r(d, o), d.attachTo = function (t) { return new d(t) }, d.prototype.initialSyncWithDOM = function () { var t = this; this.handleClick = function () { t.foundation.handleClick() }, this.listen("click", this.handleClick) }, d.prototype.destroy = function () { this.unlisten("click", this.handleClick), this.ripple.destroy(), o.prototype.destroy.call(this) }, d.prototype.getDefaultFoundation = function () { var n = this, t = { addClass: function (t) { return n.root.classList.add(t) }, hasClass: function (t) { return n.root.classList.contains(t) }, notifyChange: function (t) { n.emit(u.CHANGE_EVENT, t) }, removeClass: function (t) { return n.root.classList.remove(t) }, getAttr: function (t) { return n.root.getAttribute(t) }, setAttr: function (t, e) { return n.root.setAttribute(t, e) } }; return new c.MDCIconButtonToggleFoundation(t) }, Object.defineProperty(d.prototype, "ripple", { get: function () { return this.rippleComponent }, enumerable: !0, configurable: !0 }), Object.defineProperty(d.prototype, "on", { get: function () { return this.foundation.isOn() }, set: function (t) { this.foundation.toggle(t) }, enumerable: !0, configurable: !0 }), d.prototype.createRipple = function () { var t = new a.MDCRipple(this.root); return t.unbounded = !0, t }, d); function d() { var t = null !== o && o.apply(this, arguments) || this; return t.rippleComponent = t.createRipple(), t } e.MDCIconButtonToggle = l }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } Object.defineProperty(n, "__esModule", { value: !0 }), i(e(28)), i(e(72)), i(e(71)) }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } Object.defineProperty(n, "__esModule", { value: !0 }), i(e(54)), i(e(56)), i(e(55)) }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } Object.defineProperty(n, "__esModule", { value: !0 }), i(e(24)), i(e(7)), i(e(13)) }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } Object.defineProperty(n, "__esModule", { value: !0 }), i(e(73)), i(e(8)), i(e(14)) }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } Object.defineProperty(n, "__esModule", { value: !0 }); var r = e(8); n.Corner = r.Corner, i(e(74)), i(e(15)), i(e(75)) }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } Object.defineProperty(n, "__esModule", { value: !0 }), i(e(29)), i(e(30)), i(e(76)) }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } Object.defineProperty(n, "__esModule", { value: !0 }), i(e(153)), i(e(78)), i(e(77)) }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a = n(1), c = n(5), u = n(3), l = n(4), d = n(77), p = (s = a.MDCComponent, r(h, s), h.attachTo = function (t) { return new h(t) }, Object.defineProperty(h.prototype, "checked", { get: function () { return this.nativeControl_.checked }, set: function (t) { this.nativeControl_.checked = t }, enumerable: !0, configurable: !0 }), Object.defineProperty(h.prototype, "disabled", { get: function () { return this.nativeControl_.disabled }, set: function (t) { this.foundation.setDisabled(t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(h.prototype, "value", { get: function () { return this.nativeControl_.value }, set: function (t) { this.nativeControl_.value = t }, enumerable: !0, configurable: !0 }), Object.defineProperty(h.prototype, "ripple", { get: function () { return this.ripple_ }, enumerable: !0, configurable: !0 }), h.prototype.destroy = function () { this.ripple_.destroy(), s.prototype.destroy.call(this) }, h.prototype.getDefaultFoundation = function () { var e = this, t = { addClass: function (t) { return e.root.classList.add(t) }, removeClass: function (t) { return e.root.classList.remove(t) }, setNativeControlDisabled: function (t) { return e.nativeControl_.disabled = t } }; return new d.MDCRadioFoundation(t) }, h.prototype.createRipple_ = function () { var n = this, t = o(o({}, u.MDCRipple.createAdapter(this)), { registerInteractionHandler: function (t, e) { return n.nativeControl_.addEventListener(t, e, c.applyPassive()) }, deregisterInteractionHandler: function (t, e) { return n.nativeControl_.removeEventListener(t, e, c.applyPassive()) }, isSurfaceActive: function () { return !1 }, isUnbounded: function () { return !0 } }); return new u.MDCRipple(this.root, new l.MDCRippleFoundation(t)) }, Object.defineProperty(h.prototype, "nativeControl_", { get: function () { var t = d.MDCRadioFoundation.strings.NATIVE_CONTROL_SELECTOR, e = this.root.querySelector(t); if (!e) throw new Error("Radio component requires a " + t + " element"); return e }, enumerable: !0, configurable: !0 }), h); function h() { var t = null !== s && s.apply(this, arguments) || this; return t.ripple_ = t.createRipple_(), t } e.MDCRadio = p }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } var r = this && this.__importStar || function (t) { if (t && t.__esModule) return t; var e = {}; if (null != t) for (var n in t) Object.hasOwnProperty.call(t, n) && (e[n] = t[n]); return e.default = t, e }; Object.defineProperty(n, "__esModule", { value: !0 }); var o = r(e(19)); n.util = o, i(e(3)), i(e(45)), i(e(4)) }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } Object.defineProperty(n, "__esModule", { value: !0 }), i(e(156)), i(e(158)) }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } Object.defineProperty(n, "__esModule", { value: !0 }), i(e(79)), i(e(157)) }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }); Object.defineProperty(e, "__esModule", { value: !0 }); var o, s = n(1), a = n(81), c = n(80), u = n(79), l = (o = s.MDCComponent, r(d, o), d.attachTo = function (t) { return new d(t) }, Object.defineProperty(d.prototype, "segments", { get: function () { return this.segments_.slice() }, enumerable: !0, configurable: !0 }), d.prototype.initialize = function (t) { void 0 === t && (t = function (t) { return new a.MDCSegmentedButtonSegment(t) }), this.segmentFactory = t, this.segments_ = this.instantiateSegments(this.segmentFactory) }, d.prototype.instantiateSegments = function (e) { return [].slice.call(this.root.querySelectorAll(c.selectors.SEGMENT)).map(function (t) { return e(t) }) }, d.prototype.initialSyncWithDOM = function () { var e = this; this.handleSelected = function (t) { e.foundation.handleSelected(t.detail) }, this.listen(c.events.SELECTED, this.handleSelected); var n = this.foundation.isSingleSelect(); this.segments_.forEach(function (t, e) { t.setIndex(e), t.setIsSingleSelect(n) }); var t = this.segments_.filter(function (t) { return t.isSelected() }); if (n && 0 == t.length && 0 < this.segments_.length) throw new Error("No segment selected in singleSelect mdc-segmented-button"); if (n && 1 < t.length) throw new Error("Multiple segments selected in singleSelect mdc-segmented-button") }, d.prototype.destroy = function () { this.segments_.forEach(function (t) { t.destroy() }), this.unlisten(c.events.SELECTED, this.handleSelected), o.prototype.destroy.call(this) }, d.prototype.getDefaultFoundation = function () { var n = this, t = { hasClass: function (t) { return n.root.classList.contains(t) }, getSegments: function () { return n.mappedSegments() }, selectSegment: function (e) { var t = n.mappedSegments().find(function (t) { return t.index === e || t.segmentId === e }); t && n.segments_[t.index].setSelected() }, unselectSegment: function (e) { var t = n.mappedSegments().find(function (t) { return t.index === e || t.segmentId === e }); t && n.segments_[t.index].setUnselected() }, notifySelectedChange: function (t) { n.emit(c.events.CHANGE, t, !0) } }; return new u.MDCSegmentedButtonFoundation(t) }, d.prototype.getSelectedSegments = function () { return this.foundation.getSelectedSegments() }, d.prototype.selectSegment = function (t) { this.foundation.selectSegment(t) }, d.prototype.unselectSegment = function (t) { this.foundation.unselectSegment(t) }, d.prototype.isSegmentSelected = function (t) { return this.foundation.isSegmentSelected(t) }, d.prototype.mappedSegments = function () { return this.segments_.map(function (t, e) { return { index: e, selected: t.isSelected(), segmentId: t.getSegmentId() } }) }, d); function d() { return null !== o && o.apply(this, arguments) || this } e.MDCSegmentedButton = l }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } Object.defineProperty(n, "__esModule", { value: !0 }), i(e(83)), i(e(81)) }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } Object.defineProperty(n, "__esModule", { value: !0 }), i(e(160)), i(e(31)), i(e(84)), i(e(161)), i(e(162)) }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }, s = this && this.__importStar || function (t) { if (t && t.__esModule) return t; var e = {}; if (null != t) for (var n in t) Object.hasOwnProperty.call(t, n) && (e[n] = t[n]); return e.default = t, e }; Object.defineProperty(e, "__esModule", { value: !0 }); var a, c = n(1), d = n(26), p = n(28), u = s(n(8)), h = n(74), l = s(n(15)), f = n(29), _ = n(3), y = n(4), C = n(31), m = n(84), E = n(85), g = n(88), T = (a = c.MDCComponent, r(v, a), v.attachTo = function (t) { return new v(t) }, v.prototype.initialize = function (t, e, n, i, r, o) { if (void 0 === t && (t = function (t) { return new d.MDCFloatingLabel(t) }), void 0 === e && (e = function (t) { return new p.MDCLineRipple(t) }), void 0 === n && (n = function (t) { return new f.MDCNotchedOutline(t) }), void 0 === i && (i = function (t) { return new h.MDCMenu(t) }), void 0 === r && (r = function (t) { return new g.MDCSelectIcon(t) }), void 0 === o && (o = function (t) { return new E.MDCSelectHelperText(t) }), this.selectAnchor = this.root.querySelector(C.strings.SELECT_ANCHOR_SELECTOR), this.selectedText = this.root.querySelector(C.strings.SELECTED_TEXT_SELECTOR), this.hiddenInput = this.root.querySelector(C.strings.HIDDEN_INPUT_SELECTOR), !this.selectedText) throw new Error("MDCSelect: Missing required element: The following selector must be present: '" + C.strings.SELECTED_TEXT_SELECTOR + "'"); if (this.selectAnchor.hasAttribute(C.strings.ARIA_CONTROLS)) { var s = document.getElementById(this.selectAnchor.getAttribute(C.strings.ARIA_CONTROLS)); s && (this.helperText = o(s)) } this.menuSetup(i); var a = this.root.querySelector(C.strings.LABEL_SELECTOR); this.label = a ? t(a) : null; var c = this.root.querySelector(C.strings.LINE_RIPPLE_SELECTOR); this.lineRipple = c ? e(c) : null; var u = this.root.querySelector(C.strings.OUTLINE_SELECTOR); this.outline = u ? n(u) : null; var l = this.root.querySelector(C.strings.LEADING_ICON_SELECTOR); l && (this.leadingIcon = r(l)), this.root.classList.contains(C.cssClasses.OUTLINED) || (this.ripple = this.createRipple()) }, v.prototype.initialSyncWithDOM = function () { var e = this; if (this.handleFocus = function () { e.foundation.handleFocus() }, this.handleBlur = function () { e.foundation.handleBlur() }, this.handleClick = function (t) { e.selectAnchor.focus(), e.foundation.handleClick(e.getNormalizedXCoordinate(t)) }, this.handleKeydown = function (t) { e.foundation.handleKeydown(t) }, this.handleMenuItemAction = function (t) { e.foundation.handleMenuItemAction(t.detail.index) }, this.handleMenuOpened = function () { e.foundation.handleMenuOpened() }, this.handleMenuClosed = function () { e.foundation.handleMenuClosed() }, this.handleMenuClosing = function () { e.foundation.handleMenuClosing() }, this.selectAnchor.addEventListener("focus", this.handleFocus), this.selectAnchor.addEventListener("blur", this.handleBlur), this.selectAnchor.addEventListener("click", this.handleClick), this.selectAnchor.addEventListener("keydown", this.handleKeydown), this.menu.listen(u.strings.CLOSED_EVENT, this.handleMenuClosed), this.menu.listen(u.strings.CLOSING_EVENT, this.handleMenuClosing), this.menu.listen(u.strings.OPENED_EVENT, this.handleMenuOpened), this.menu.listen(l.strings.SELECTED_EVENT, this.handleMenuItemAction), this.hiddenInput) { if (this.hiddenInput.value) return this.foundation.setValue(this.hiddenInput.value, !0), void this.foundation.layout(); this.hiddenInput.value = this.value } }, v.prototype.destroy = function () { this.selectAnchor.removeEventListener("focus", this.handleFocus), this.selectAnchor.removeEventListener("blur", this.handleBlur), this.selectAnchor.removeEventListener("keydown", this.handleKeydown), this.selectAnchor.removeEventListener("click", this.handleClick), this.menu.unlisten(u.strings.CLOSED_EVENT, this.handleMenuClosed), this.menu.unlisten(u.strings.OPENED_EVENT, this.handleMenuOpened), this.menu.unlisten(l.strings.SELECTED_EVENT, this.handleMenuItemAction), this.menu.destroy(), this.ripple && this.ripple.destroy(), this.outline && this.outline.destroy(), this.leadingIcon && this.leadingIcon.destroy(), this.helperText && this.helperText.destroy(), a.prototype.destroy.call(this) }, Object.defineProperty(v.prototype, "value", { get: function () { return this.foundation.getValue() }, set: function (t) { this.foundation.setValue(t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(v.prototype, "selectedIndex", { get: function () { return this.foundation.getSelectedIndex() }, set: function (t) { this.foundation.setSelectedIndex(t, !0) }, enumerable: !0, configurable: !0 }), Object.defineProperty(v.prototype, "disabled", { get: function () { return this.foundation.getDisabled() }, set: function (t) { this.foundation.setDisabled(t), this.hiddenInput && (this.hiddenInput.disabled = t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(v.prototype, "leadingIconAriaLabel", { set: function (t) { this.foundation.setLeadingIconAriaLabel(t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(v.prototype, "leadingIconContent", { set: function (t) { this.foundation.setLeadingIconContent(t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(v.prototype, "helperTextContent", { set: function (t) { this.foundation.setHelperTextContent(t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(v.prototype, "useDefaultValidation", { set: function (t) { this.foundation.setUseDefaultValidation(t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(v.prototype, "valid", { get: function () { return this.foundation.isValid() }, set: function (t) { this.foundation.setValid(t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(v.prototype, "required", { get: function () { return this.foundation.getRequired() }, set: function (t) { this.foundation.setRequired(t) }, enumerable: !0, configurable: !0 }), v.prototype.layout = function () { this.foundation.layout() }, v.prototype.layoutOptions = function () { this.foundation.layoutOptions(), this.menu.layout(), this.menuItemValues = this.menu.items.map(function (t) { return t.getAttribute(C.strings.VALUE_ATTR) || "" }), this.hiddenInput && (this.hiddenInput.value = this.value) }, v.prototype.getDefaultFoundation = function () { var t = o(o(o(o({}, this.getSelectAdapterMethods()), this.getCommonAdapterMethods()), this.getOutlineAdapterMethods()), this.getLabelAdapterMethods()); return new m.MDCSelectFoundation(t, this.getFoundationMap()) }, v.prototype.menuSetup = function (t) { this.menuElement = this.root.querySelector(C.strings.MENU_SELECTOR), this.menu = t(this.menuElement), this.menu.hasTypeahead = !0, this.menu.singleSelection = !0, this.menuItemValues = this.menu.items.map(function (t) { return t.getAttribute(C.strings.VALUE_ATTR) || "" }) }, v.prototype.createRipple = function () { var n = this, t = o(o({}, _.MDCRipple.createAdapter({ root: this.selectAnchor })), { registerInteractionHandler: function (t, e) { n.selectAnchor.addEventListener(t, e) }, deregisterInteractionHandler: function (t, e) { n.selectAnchor.removeEventListener(t, e) } }); return new _.MDCRipple(this.selectAnchor, new y.MDCRippleFoundation(t)) }, v.prototype.getSelectAdapterMethods = function () { var n = this; return { getMenuItemAttr: function (t, e) { return t.getAttribute(e) }, setSelectedText: function (t) { n.selectedText.textContent = t }, isSelectAnchorFocused: function () { return document.activeElement === n.selectAnchor }, getSelectAnchorAttr: function (t) { return n.selectAnchor.getAttribute(t) }, setSelectAnchorAttr: function (t, e) { n.selectAnchor.setAttribute(t, e) }, removeSelectAnchorAttr: function (t) { n.selectAnchor.removeAttribute(t) }, addMenuClass: function (t) { n.menuElement.classList.add(t) }, removeMenuClass: function (t) { n.menuElement.classList.remove(t) }, openMenu: function () { n.menu.open = !0 }, closeMenu: function () { n.menu.open = !1 }, getAnchorElement: function () { return n.root.querySelector(C.strings.SELECT_ANCHOR_SELECTOR) }, setMenuAnchorElement: function (t) { n.menu.setAnchorElement(t) }, setMenuAnchorCorner: function (t) { n.menu.setAnchorCorner(t) }, setMenuWrapFocus: function (t) { n.menu.wrapFocus = t }, getSelectedIndex: function () { var t = n.menu.selectedIndex; return t instanceof Array ? t[0] : t }, setSelectedIndex: function (t) { n.menu.selectedIndex = t }, focusMenuItemAtIndex: function (t) { n.menu.items[t].focus() }, getMenuItemCount: function () { return n.menu.items.length }, getMenuItemValues: function () { return n.menuItemValues }, getMenuItemTextAtIndex: function (t) { return n.menu.getPrimaryTextAtIndex(t) }, isTypeaheadInProgress: function () { return n.menu.typeaheadInProgress }, typeaheadMatchItem: function (t, e) { return n.menu.typeaheadMatchItem(t, e) } } }, v.prototype.getCommonAdapterMethods = function () { var n = this; return { addClass: function (t) { n.root.classList.add(t) }, removeClass: function (t) { n.root.classList.remove(t) }, hasClass: function (t) { return n.root.classList.contains(t) }, setRippleCenter: function (t) { n.lineRipple && n.lineRipple.setRippleCenter(t) }, activateBottomLine: function () { n.lineRipple && n.lineRipple.activate() }, deactivateBottomLine: function () { n.lineRipple && n.lineRipple.deactivate() }, notifyChange: function (t) { var e = n.selectedIndex; n.emit(C.strings.CHANGE_EVENT, { value: t, index: e }, !0), n.hiddenInput && (n.hiddenInput.value = t) } } }, v.prototype.getOutlineAdapterMethods = function () { var e = this; return { hasOutline: function () { return Boolean(e.outline) }, notchOutline: function (t) { e.outline && e.outline.notch(t) }, closeOutline: function () { e.outline && e.outline.closeNotch() } } }, v.prototype.getLabelAdapterMethods = function () { var e = this; return { hasLabel: function () { return !!e.label }, floatLabel: function (t) { e.label && e.label.float(t) }, getLabelWidth: function () { return e.label ? e.label.getWidth() : 0 }, setLabelRequired: function (t) { e.label && e.label.setRequired(t) } } }, v.prototype.getNormalizedXCoordinate = function (t) { var e = t.target.getBoundingClientRect(); return (this.isTouchEvent(t) ? t.touches[0].clientX : t.clientX) - e.left }, v.prototype.isTouchEvent = function (t) { return Boolean(t.touches) }, v.prototype.getFoundationMap = function () { return { helperText: this.helperText ? this.helperText.foundationForSelect : void 0, leadingIcon: this.leadingIcon ? this.leadingIcon.foundationForSelect : void 0 } }, v); function v() { return null !== a && a.apply(this, arguments) || this } e.MDCSelect = T }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } Object.defineProperty(n, "__esModule", { value: !0 }), i(e(85)), i(e(86)); var r = e(87); n.helperTextCssClasses = r.cssClasses, n.helperTextStrings = r.strings }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } Object.defineProperty(n, "__esModule", { value: !0 }), i(e(88)), i(e(89)); var r = e(90); n.iconStrings = r.strings }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } Object.defineProperty(n, "__esModule", { value: !0 }), i(e(164)), i(e(32)), i(e(91)), i(e(33)) }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), c = this && this.__assign || function () { return (c = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }; Object.defineProperty(e, "__esModule", { value: !0 }); var o, s = n(1), u = n(5), l = n(2), d = n(3), p = n(4), h = n(32), a = n(91), f = n(33), _ = (o = s.MDCComponent, r(y, o), y.attachTo = function (t, e) { return void 0 === e && (e = {}), new y(t, void 0, e) }, y.prototype.getDefaultFoundation = function () { var i = this, t = { hasClass: function (t) { return i.root.classList.contains(t) }, addClass: function (t) { i.root.classList.add(t) }, removeClass: function (t) { i.root.classList.remove(t) }, addThumbClass: function (t, e) { i.getThumbEl(e).classList.add(t) }, removeThumbClass: function (t, e) { i.getThumbEl(e).classList.remove(t) }, getAttribute: function (t) { return i.root.getAttribute(t) }, getInputValue: function (t) { return i.getInput(t).value }, setInputValue: function (t, e) { i.getInput(e).value = t }, getInputAttribute: function (t, e) { return i.getInput(e).getAttribute(t) }, setInputAttribute: function (t, e, n) { i.getInput(n).setAttribute(t, e) }, removeInputAttribute: function (t, e) { i.getInput(e).removeAttribute(t) }, focusInput: function (t) { i.getInput(t).focus() }, isInputFocused: function (t) { return i.getInput(t) === document.activeElement }, getThumbKnobWidth: function (t) { return i.getThumbEl(t).querySelector("." + h.cssClasses.THUMB_KNOB).getBoundingClientRect().width }, getThumbBoundingClientRect: function (t) { return i.getThumbEl(t).getBoundingClientRect() }, getBoundingClientRect: function () { return i.root.getBoundingClientRect() }, isRTL: function () { return "rtl" === getComputedStyle(i.root).direction }, setThumbStyleProperty: function (t, e, n) { i.getThumbEl(n).style.setProperty(t, e) }, removeThumbStyleProperty: function (t, e) { i.getThumbEl(e).style.removeProperty(t) }, setTrackActiveStyleProperty: function (t, e) { i.trackActive.style.setProperty(t, e) }, removeTrackActiveStyleProperty: function (t) { i.trackActive.style.removeProperty(t) }, setValueIndicatorText: function (t, e) { i.getThumbEl(e).querySelector("." + h.cssClasses.VALUE_INDICATOR_TEXT).textContent = String(t) }, getValueToAriaValueTextFn: function () { return i.valueToAriaValueTextFn }, updateTickMarks: function (t) { var e = i.root.querySelector("." + h.cssClasses.TICK_MARKS_CONTAINER); e || ((e = document.createElement("div")).classList.add(h.cssClasses.TICK_MARKS_CONTAINER), i.root.querySelector("." + h.cssClasses.TRACK).appendChild(e)), t.length !== e.children.length ? (e.innerHTML = "", i.addTickMarks(e, t)) : i.updateTickMarks(e, t) }, setPointerCapture: function (t) { i.root.setPointerCapture(t) }, emitChangeEvent: function (t, e) { i.emit(h.events.CHANGE, { value: t, thumb: e }) }, emitInputEvent: function (t, e) { i.emit(h.events.INPUT, { value: t, thumb: e }) }, emitDragStartEvent: function (t, e) { i.getRipple(e).activate() }, emitDragEndEvent: function (t, e) { i.getRipple(e).deactivate() }, registerEventHandler: function (t, e) { i.listen(t, e) }, deregisterEventHandler: function (t, e) { i.unlisten(t, e) }, registerThumbEventHandler: function (t, e, n) { i.getThumbEl(t).addEventListener(e, n) }, deregisterThumbEventHandler: function (t, e, n) { i.getThumbEl(t).removeEventListener(e, n) }, registerInputEventHandler: function (t, e, n) { i.getInput(t).addEventListener(e, n) }, deregisterInputEventHandler: function (t, e, n) { i.getInput(t).removeEventListener(e, n) }, registerBodyEventHandler: function (t, e) { document.body.addEventListener(t, e) }, deregisterBodyEventHandler: function (t, e) { document.body.removeEventListener(t, e) }, registerWindowEventHandler: function (t, e) { window.addEventListener(t, e) }, deregisterWindowEventHandler: function (t, e) { window.removeEventListener(t, e) } }; return new a.MDCSliderFoundation(t) }, y.prototype.initialize = function (t) { var e = (void 0 === t ? {} : t).skipInitialUIUpdate; this.inputs = [].slice.call(this.root.querySelectorAll("." + h.cssClasses.INPUT)), this.thumbs = [].slice.call(this.root.querySelectorAll("." + h.cssClasses.THUMB)), this.trackActive = this.root.querySelector("." + h.cssClasses.TRACK_ACTIVE), this.ripples = this.createRipples(), e && (this.skipInitialUIUpdate = !0) }, y.prototype.initialSyncWithDOM = function () { this.foundation.layout({ skipUpdateUI: this.skipInitialUIUpdate }) }, y.prototype.layout = function () { this.foundation.layout() }, y.prototype.getValueStart = function () { return this.foundation.getValueStart() }, y.prototype.setValueStart = function (t) { this.foundation.setValueStart(t) }, y.prototype.getValue = function () { return this.foundation.getValue() }, y.prototype.setValue = function (t) { this.foundation.setValue(t) }, y.prototype.getDisabled = function () { return this.foundation.getDisabled() }, y.prototype.setDisabled = function (t) { this.foundation.setDisabled(t) }, y.prototype.setValueToAriaValueTextFn = function (t) { this.valueToAriaValueTextFn = t }, y.prototype.getThumbEl = function (t) { return t === f.Thumb.END ? this.thumbs[this.thumbs.length - 1] : this.thumbs[0] }, y.prototype.getInput = function (t) { return t === f.Thumb.END ? this.inputs[this.inputs.length - 1] : this.inputs[0] }, y.prototype.getRipple = function (t) { return t === f.Thumb.END ? this.ripples[this.ripples.length - 1] : this.ripples[0] }, y.prototype.addTickMarks = function (t, e) { for (var n = document.createDocumentFragment(), i = 0; i < e.length; i++) { var r = document.createElement("div"), o = e[i] === f.TickMark.ACTIVE ? h.cssClasses.TICK_MARK_ACTIVE : h.cssClasses.TICK_MARK_INACTIVE; r.classList.add(o), n.appendChild(r) } t.appendChild(n) }, y.prototype.updateTickMarks = function (t, e) { for (var n = Array.from(t.children), i = 0; i < n.length; i++)e[i] === f.TickMark.ACTIVE ? (n[i].classList.add(h.cssClasses.TICK_MARK_ACTIVE), n[i].classList.remove(h.cssClasses.TICK_MARK_INACTIVE)) : (n[i].classList.add(h.cssClasses.TICK_MARK_INACTIVE), n[i].classList.remove(h.cssClasses.TICK_MARK_ACTIVE)) }, y.prototype.createRipples = function () { for (var o = [], s = [].slice.call(this.root.querySelectorAll("." + h.cssClasses.THUMB)), t = function (t) { var n = s[t], i = a.inputs[t], e = c(c({}, d.MDCRipple.createAdapter(a)), { addClass: function (t) { n.classList.add(t) }, computeBoundingRect: function () { return n.getBoundingClientRect() }, deregisterInteractionHandler: function (t, e) { i.removeEventListener(t, e) }, isSurfaceActive: function () { return l.matches(i, ":active") }, isUnbounded: function () { return !0 }, registerInteractionHandler: function (t, e) { i.addEventListener(t, e, u.applyPassive()) }, removeClass: function (t) { n.classList.remove(t) }, updateCssVariable: function (t, e) { n.style.setProperty(t, e) } }), r = new d.MDCRipple(n, new p.MDCRippleFoundation(e)); r.unbounded = !0, o.push(r) }, a = this, e = 0; e < s.length; e++)t(e); return o }, y); function y() { var t = null !== o && o.apply(this, arguments) || this; return t.skipInitialUIUpdate = !1, t.valueToAriaValueTextFn = null, t } e.MDCSlider = _ }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } var r = this && this.__importStar || function (t) { if (t && t.__esModule) return t; var e = {}; if (null != t) for (var n in t) Object.hasOwnProperty.call(t, n) && (e[n] = t[n]); return e.default = t, e }; Object.defineProperty(n, "__esModule", { value: !0 }); var o = r(e(92)); n.util = o, i(e(166)), i(e(16)), i(e(93)) }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__importStar || function (t) { if (t && t.__esModule) return t; var e = {}; if (null != t) for (var n in t) Object.hasOwnProperty.call(t, n) && (e[n] = t[n]); return e.default = t, e }; Object.defineProperty(e, "__esModule", { value: !0 }); var s, a = n(1), c = n(2), u = n(16), l = n(93), d = o(n(92)), p = u.strings.SURFACE_SELECTOR, h = u.strings.LABEL_SELECTOR, f = u.strings.ACTION_SELECTOR, _ = u.strings.DISMISS_SELECTOR, y = u.strings.OPENING_EVENT, C = u.strings.OPENED_EVENT, m = u.strings.CLOSING_EVENT, E = u.strings.CLOSED_EVENT, g = (s = a.MDCComponent, r(T, s), T.attachTo = function (t) { return new T(t) }, T.prototype.initialize = function (t) { void 0 === t && (t = function () { return d.announce }), this.announce_ = t() }, T.prototype.initialSyncWithDOM = function () { var n = this; this.surfaceEl_ = this.root.querySelector(p), this.labelEl_ = this.root.querySelector(h), this.actionEl_ = this.root.querySelector(f), this.handleKeyDown_ = function (t) { return n.foundation.handleKeyDown(t) }, this.handleSurfaceClick_ = function (t) { var e = t.target; n.isActionButton_(e) ? n.foundation.handleActionButtonClick(t) : n.isActionIcon_(e) && n.foundation.handleActionIconClick(t) }, this.registerKeyDownHandler_(this.handleKeyDown_), this.registerSurfaceClickHandler_(this.handleSurfaceClick_) }, T.prototype.destroy = function () { s.prototype.destroy.call(this), this.deregisterKeyDownHandler_(this.handleKeyDown_), this.deregisterSurfaceClickHandler_(this.handleSurfaceClick_) }, T.prototype.open = function () { this.foundation.open() }, T.prototype.close = function (t) { void 0 === t && (t = ""), this.foundation.close(t) }, T.prototype.getDefaultFoundation = function () { var e = this, t = { addClass: function (t) { return e.root.classList.add(t) }, announce: function () { return e.announce_(e.labelEl_) }, notifyClosed: function (t) { return e.emit(E, t ? { reason: t } : {}) }, notifyClosing: function (t) { return e.emit(m, t ? { reason: t } : {}) }, notifyOpened: function () { return e.emit(C, {}) }, notifyOpening: function () { return e.emit(y, {}) }, removeClass: function (t) { return e.root.classList.remove(t) } }; return new l.MDCSnackbarFoundation(t) }, Object.defineProperty(T.prototype, "timeoutMs", { get: function () { return this.foundation.getTimeoutMs() }, set: function (t) { this.foundation.setTimeoutMs(t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(T.prototype, "closeOnEscape", { get: function () { return this.foundation.getCloseOnEscape() }, set: function (t) { this.foundation.setCloseOnEscape(t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(T.prototype, "isOpen", { get: function () { return this.foundation.isOpen() }, enumerable: !0, configurable: !0 }), Object.defineProperty(T.prototype, "labelText", { get: function () { return this.labelEl_.textContent }, set: function (t) { this.labelEl_.textContent = t }, enumerable: !0, configurable: !0 }), Object.defineProperty(T.prototype, "actionButtonText", { get: function () { return this.actionEl_.textContent }, set: function (t) { this.actionEl_.textContent = t }, enumerable: !0, configurable: !0 }), T.prototype.registerKeyDownHandler_ = function (t) { this.listen("keydown", t) }, T.prototype.deregisterKeyDownHandler_ = function (t) { this.unlisten("keydown", t) }, T.prototype.registerSurfaceClickHandler_ = function (t) { this.surfaceEl_.addEventListener("click", t) }, T.prototype.deregisterSurfaceClickHandler_ = function (t) { this.surfaceEl_.removeEventListener("click", t) }, T.prototype.isActionButton_ = function (t) { return Boolean(c.closest(t, f)) }, T.prototype.isActionIcon_ = function (t) { return Boolean(c.closest(t, _)) }, T); function T() { return null !== s && s.apply(this, arguments) || this } e.MDCSnackbar = g }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } Object.defineProperty(n, "__esModule", { value: !0 }), i(e(168)), i(e(95)), i(e(94)) }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }, s = this && this.__read || function (t, e) { var n = "function" == typeof Symbol && t[Symbol.iterator]; if (!n) return t; var i, r, o = n.call(t), s = []; try { for (; (void 0 === e || 0 < e--) && !(i = o.next()).done;)s.push(i.value) } catch (t) { r = { error: t } } finally { try { i && !i.done && (n = o.return) && n.call(o) } finally { if (r) throw r.error } } return s }, a = this && this.__spread || function () { for (var t = [], e = 0; e < arguments.length; e++)t = t.concat(s(arguments[e])); return t }; Object.defineProperty(e, "__esModule", { value: !0 }); var c, u = n(1), l = n(5), d = n(2), p = n(3), h = n(4), f = n(94), _ = (c = u.MDCComponent, r(y, c), y.attachTo = function (t) { return new y(t) }, y.prototype.destroy = function () { c.prototype.destroy.call(this), this.ripple_.destroy(), this.nativeControl_.removeEventListener("change", this.changeHandler_) }, y.prototype.initialSyncWithDOM = function () { var i = this; this.changeHandler_ = function () { for (var t, e = [], n = 0; n < arguments.length; n++)e[n] = arguments[n]; return (t = i.foundation).handleChange.apply(t, a(e)) }, this.nativeControl_.addEventListener("change", this.changeHandler_), this.checked = this.checked }, y.prototype.getDefaultFoundation = function () { var n = this, t = { addClass: function (t) { return n.root.classList.add(t) }, removeClass: function (t) { return n.root.classList.remove(t) }, setNativeControlChecked: function (t) { return n.nativeControl_.checked = t }, setNativeControlDisabled: function (t) { return n.nativeControl_.disabled = t }, setNativeControlAttr: function (t, e) { return n.nativeControl_.setAttribute(t, e) } }; return new f.MDCSwitchFoundation(t) }, Object.defineProperty(y.prototype, "ripple", { get: function () { return this.ripple_ }, enumerable: !0, configurable: !0 }), Object.defineProperty(y.prototype, "checked", { get: function () { return this.nativeControl_.checked }, set: function (t) { this.foundation.setChecked(t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(y.prototype, "disabled", { get: function () { return this.nativeControl_.disabled }, set: function (t) { this.foundation.setDisabled(t) }, enumerable: !0, configurable: !0 }), y.prototype.createRipple_ = function () { var n = this, t = f.MDCSwitchFoundation.strings.RIPPLE_SURFACE_SELECTOR, i = this.root.querySelector(t), e = o(o({}, p.MDCRipple.createAdapter(this)), { addClass: function (t) { return i.classList.add(t) }, computeBoundingRect: function () { return i.getBoundingClientRect() }, deregisterInteractionHandler: function (t, e) { n.nativeControl_.removeEventListener(t, e, l.applyPassive()) }, isSurfaceActive: function () { return d.matches(n.nativeControl_, ":active") }, isUnbounded: function () { return !0 }, registerInteractionHandler: function (t, e) { n.nativeControl_.addEventListener(t, e, l.applyPassive()) }, removeClass: function (t) { i.classList.remove(t) }, updateCssVariable: function (t, e) { i.style.setProperty(t, e) } }); return new p.MDCRipple(this.root, new h.MDCRippleFoundation(e)) }, Object.defineProperty(y.prototype, "nativeControl_", { get: function () { var t = f.MDCSwitchFoundation.strings.NATIVE_CONTROL_SELECTOR; return this.root.querySelector(t) }, enumerable: !0, configurable: !0 }), y); function y() { var t = null !== c && c.apply(this, arguments) || this; return t.ripple_ = t.createRipple_(), t } e.MDCSwitch = _ }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } Object.defineProperty(n, "__esModule", { value: !0 }), i(e(170)), i(e(106)), i(e(105)) }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }); Object.defineProperty(e, "__esModule", { value: !0 }); var o, s = n(1), a = n(96), c = n(99), u = n(36), l = n(105), d = l.MDCTabBarFoundation.strings, p = 0, h = (o = s.MDCComponent, r(f, o), f.attachTo = function (t) { return new f(t) }, Object.defineProperty(f.prototype, "focusOnActivate", { set: function (e) { this.tabList_.forEach(function (t) { return t.focusOnActivate = e }) }, enumerable: !0, configurable: !0 }), Object.defineProperty(f.prototype, "useAutomaticActivation", { set: function (t) { this.foundation.setUseAutomaticActivation(t) }, enumerable: !0, configurable: !0 }), f.prototype.initialize = function (t, e) { void 0 === t && (t = function (t) { return new c.MDCTab(t) }), void 0 === e && (e = function (t) { return new a.MDCTabScroller(t) }), this.tabList_ = this.instantiateTabs_(t), this.tabScroller_ = this.instantiateTabScroller_(e) }, f.prototype.initialSyncWithDOM = function () { var e = this; this.handleTabInteraction_ = function (t) { return e.foundation.handleTabInteraction(t) }, this.handleKeyDown_ = function (t) { return e.foundation.handleKeyDown(t) }, this.listen(u.MDCTabFoundation.strings.INTERACTED_EVENT, this.handleTabInteraction_), this.listen("keydown", this.handleKeyDown_); for (var t = 0; t < this.tabList_.length; t++)if (this.tabList_[t].active) { this.scrollIntoView(t); break } }, f.prototype.destroy = function () { o.prototype.destroy.call(this), this.unlisten(u.MDCTabFoundation.strings.INTERACTED_EVENT, this.handleTabInteraction_), this.unlisten("keydown", this.handleKeyDown_), this.tabList_.forEach(function (t) { return t.destroy() }), this.tabScroller_ && this.tabScroller_.destroy() }, f.prototype.getDefaultFoundation = function () { var n = this, t = { scrollTo: function (t) { return n.tabScroller_.scrollTo(t) }, incrementScroll: function (t) { return n.tabScroller_.incrementScroll(t) }, getScrollPosition: function () { return n.tabScroller_.getScrollPosition() }, getScrollContentWidth: function () { return n.tabScroller_.getScrollContentWidth() }, getOffsetWidth: function () { return n.root.offsetWidth }, isRTL: function () { return "rtl" === window.getComputedStyle(n.root).getPropertyValue("direction") }, setActiveTab: function (t) { return n.foundation.activateTab(t) }, activateTabAtIndex: function (t, e) { return n.tabList_[t].activate(e) }, deactivateTabAtIndex: function (t) { return n.tabList_[t].deactivate() }, focusTabAtIndex: function (t) { return n.tabList_[t].focus() }, getTabIndicatorClientRectAtIndex: function (t) { return n.tabList_[t].computeIndicatorClientRect() }, getTabDimensionsAtIndex: function (t) { return n.tabList_[t].computeDimensions() }, getPreviousActiveTabIndex: function () { for (var t = 0; t < n.tabList_.length; t++)if (n.tabList_[t].active) return t; return -1 }, getFocusedTabIndex: function () { var t = n.getTabElements_(), e = document.activeElement; return t.indexOf(e) }, getIndexOfTabById: function (t) { for (var e = 0; e < n.tabList_.length; e++)if (n.tabList_[e].id === t) return e; return -1 }, getTabListLength: function () { return n.tabList_.length }, notifyTabActivated: function (t) { return n.emit(d.TAB_ACTIVATED_EVENT, { index: t }, !0) } }; return new l.MDCTabBarFoundation(t) }, f.prototype.activateTab = function (t) { this.foundation.activateTab(t) }, f.prototype.scrollIntoView = function (t) { this.foundation.scrollIntoView(t) }, f.prototype.getTabElements_ = function () { return [].slice.call(this.root.querySelectorAll(d.TAB_SELECTOR)) }, f.prototype.instantiateTabs_ = function (e) { return this.getTabElements_().map(function (t) { return t.id = t.id || "mdc-tab-" + ++p, e(t) }) }, f.prototype.instantiateTabScroller_ = function (t) { var e = this.root.querySelector(d.TAB_SCROLLER_SELECTOR); return e ? t(e) : null }, f); function f() { return null !== o && o.apply(this, arguments) || this } e.MDCTabBar = h }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }); Object.defineProperty(e, "__esModule", { value: !0 }); var o, s = n(35), a = (o = s.MDCTabScrollerRTL, r(c, o), c.prototype.getScrollPositionRTL = function () { var t = this.adapter.getScrollAreaScrollLeft(), e = this.calculateScrollEdges_().right; return Math.round(e - t) }, c.prototype.scrollToRTL = function (t) { var e = this.calculateScrollEdges_(), n = this.adapter.getScrollAreaScrollLeft(), i = this.clampScrollValue_(e.right - t); return { finalScrollPosition: i, scrollDelta: i - n } }, c.prototype.incrementScrollRTL = function (t) { var e = this.adapter.getScrollAreaScrollLeft(), n = this.clampScrollValue_(e - t); return { finalScrollPosition: n, scrollDelta: n - e } }, c.prototype.getAnimatingScrollPosition = function (t) { return t }, c.prototype.calculateScrollEdges_ = function () { return { left: 0, right: this.adapter.getScrollContentOffsetWidth() - this.adapter.getScrollAreaOffsetWidth() } }, c.prototype.clampScrollValue_ = function (t) { var e = this.calculateScrollEdges_(); return Math.min(Math.max(e.left, t), e.right) }, c); function c() { return null !== o && o.apply(this, arguments) || this } e.MDCTabScrollerRTLDefault = a, e.default = a }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }); Object.defineProperty(e, "__esModule", { value: !0 }); var o, s = n(35), a = (o = s.MDCTabScrollerRTL, r(c, o), c.prototype.getScrollPositionRTL = function (t) { var e = this.adapter.getScrollAreaScrollLeft(); return Math.round(t - e) }, c.prototype.scrollToRTL = function (t) { var e = this.adapter.getScrollAreaScrollLeft(), n = this.clampScrollValue_(-t); return { finalScrollPosition: n, scrollDelta: n - e } }, c.prototype.incrementScrollRTL = function (t) { var e = this.adapter.getScrollAreaScrollLeft(), n = this.clampScrollValue_(e - t); return { finalScrollPosition: n, scrollDelta: n - e } }, c.prototype.getAnimatingScrollPosition = function (t, e) { return t - e }, c.prototype.calculateScrollEdges_ = function () { var t = this.adapter.getScrollContentOffsetWidth(); return { left: this.adapter.getScrollAreaOffsetWidth() - t, right: 0 } }, c.prototype.clampScrollValue_ = function (t) { var e = this.calculateScrollEdges_(); return Math.max(Math.min(e.right, t), e.left) }, c); function c() { return null !== o && o.apply(this, arguments) || this } e.MDCTabScrollerRTLNegative = a, e.default = a }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }); Object.defineProperty(e, "__esModule", { value: !0 }); var o, s = n(35), a = (o = s.MDCTabScrollerRTL, r(c, o), c.prototype.getScrollPositionRTL = function (t) { var e = this.adapter.getScrollAreaScrollLeft(); return Math.round(e - t) }, c.prototype.scrollToRTL = function (t) { var e = this.adapter.getScrollAreaScrollLeft(), n = this.clampScrollValue_(t); return { finalScrollPosition: n, scrollDelta: e - n } }, c.prototype.incrementScrollRTL = function (t) { var e = this.adapter.getScrollAreaScrollLeft(), n = this.clampScrollValue_(e + t); return { finalScrollPosition: n, scrollDelta: e - n } }, c.prototype.getAnimatingScrollPosition = function (t, e) { return t + e }, c.prototype.calculateScrollEdges_ = function () { return { left: this.adapter.getScrollContentOffsetWidth() - this.adapter.getScrollAreaOffsetWidth(), right: 0 } }, c.prototype.clampScrollValue_ = function (t) { var e = this.calculateScrollEdges_(); return Math.min(Math.max(e.right, t), e.left) }, c); function c() { return null !== o && o.apply(this, arguments) || this } e.MDCTabScrollerRTLReverse = a, e.default = a }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } Object.defineProperty(n, "__esModule", { value: !0 }), i(e(100)), i(e(102)), i(e(17)), i(e(101)), i(e(103)) }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } var r = this && this.__importStar || function (t) { if (t && t.__esModule) return t; var e = {}; if (null != t) for (var n in t) Object.hasOwnProperty.call(t, n) && (e[n] = t[n]); return e.default = t, e }; Object.defineProperty(n, "__esModule", { value: !0 }); var o = r(e(98)); n.util = o, i(e(96)), i(e(34)), i(e(97)) }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } Object.defineProperty(n, "__esModule", { value: !0 }), i(e(99)), i(e(104)), i(e(36)) }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } Object.defineProperty(n, "__esModule", { value: !0 }), i(e(178)), i(e(38)), i(e(109)), i(e(179)), i(e(180)), i(e(181)) }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }), o = this && this.__assign || function () { return (o = Object.assign || function (t) { for (var e, n = 1, i = arguments.length; n < i; n++)for (var r in e = arguments[n]) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]); return t }).apply(this, arguments) }, s = this && this.__importStar || function (t) { if (t && t.__esModule) return t; var e = {}; if (null != t) for (var n in t) Object.hasOwnProperty.call(t, n) && (e[n] = t[n]); return e.default = t, e }; Object.defineProperty(e, "__esModule", { value: !0 }); var a, c = n(1), u = n(5), l = s(n(2)), m = n(26), E = n(28), g = n(29), T = n(3), d = n(4), v = n(107), A = n(37), b = n(38), p = n(109), I = n(110), O = n(39), S = n(112), h = (a = c.MDCComponent, r(f, a), f.attachTo = function (t) { return new f(t) }, f.prototype.initialize = function (t, e, n, i, r, o, s) { void 0 === t && (t = function (t, e) { return new T.MDCRipple(t, e) }), void 0 === e && (e = function (t) { return new E.MDCLineRipple(t) }), void 0 === n && (n = function (t) { return new I.MDCTextFieldHelperText(t) }), void 0 === i && (i = function (t) { return new v.MDCTextFieldCharacterCounter(t) }), void 0 === r && (r = function (t) { return new S.MDCTextFieldIcon(t) }), void 0 === o && (o = function (t) { return new m.MDCFloatingLabel(t) }), void 0 === s && (s = function (t) { return new g.MDCNotchedOutline(t) }), this.input_ = this.root.querySelector(b.strings.INPUT_SELECTOR); var a = this.root.querySelector(b.strings.LABEL_SELECTOR); this.label_ = a ? o(a) : null; var c = this.root.querySelector(b.strings.LINE_RIPPLE_SELECTOR); this.lineRipple_ = c ? e(c) : null; var u = this.root.querySelector(b.strings.OUTLINE_SELECTOR); this.outline_ = u ? s(u) : null; var l = O.MDCTextFieldHelperTextFoundation.strings, d = this.root.nextElementSibling, p = d && d.classList.contains(b.cssClasses.HELPER_LINE), h = p && d && d.querySelector(l.ROOT_SELECTOR); this.helperText_ = h ? n(h) : null; var f = A.MDCTextFieldCharacterCounterFoundation.strings, _ = this.root.querySelector(f.ROOT_SELECTOR); !_ && p && d && (_ = d.querySelector(f.ROOT_SELECTOR)), this.characterCounter_ = _ ? i(_) : null; var y = this.root.querySelector(b.strings.LEADING_ICON_SELECTOR); this.leadingIcon_ = y ? r(y) : null; var C = this.root.querySelector(b.strings.TRAILING_ICON_SELECTOR); this.trailingIcon_ = C ? r(C) : null, this.prefix_ = this.root.querySelector(b.strings.PREFIX_SELECTOR), this.suffix_ = this.root.querySelector(b.strings.SUFFIX_SELECTOR), this.ripple = this.createRipple_(t) }, f.prototype.destroy = function () { this.ripple && this.ripple.destroy(), this.lineRipple_ && this.lineRipple_.destroy(), this.helperText_ && this.helperText_.destroy(), this.characterCounter_ && this.characterCounter_.destroy(), this.leadingIcon_ && this.leadingIcon_.destroy(), this.trailingIcon_ && this.trailingIcon_.destroy(), this.label_ && this.label_.destroy(), this.outline_ && this.outline_.destroy(), a.prototype.destroy.call(this) }, f.prototype.initialSyncWithDOM = function () { this.disabled = this.input_.disabled }, Object.defineProperty(f.prototype, "value", { get: function () { return this.foundation.getValue() }, set: function (t) { this.foundation.setValue(t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(f.prototype, "disabled", { get: function () { return this.foundation.isDisabled() }, set: function (t) { this.foundation.setDisabled(t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(f.prototype, "valid", { get: function () { return this.foundation.isValid() }, set: function (t) { this.foundation.setValid(t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(f.prototype, "required", { get: function () { return this.input_.required }, set: function (t) { this.input_.required = t }, enumerable: !0, configurable: !0 }), Object.defineProperty(f.prototype, "pattern", { get: function () { return this.input_.pattern }, set: function (t) { this.input_.pattern = t }, enumerable: !0, configurable: !0 }), Object.defineProperty(f.prototype, "minLength", { get: function () { return this.input_.minLength }, set: function (t) { this.input_.minLength = t }, enumerable: !0, configurable: !0 }), Object.defineProperty(f.prototype, "maxLength", { get: function () { return this.input_.maxLength }, set: function (t) { t < 0 ? this.input_.removeAttribute("maxLength") : this.input_.maxLength = t }, enumerable: !0, configurable: !0 }), Object.defineProperty(f.prototype, "min", { get: function () { return this.input_.min }, set: function (t) { this.input_.min = t }, enumerable: !0, configurable: !0 }), Object.defineProperty(f.prototype, "max", { get: function () { return this.input_.max }, set: function (t) { this.input_.max = t }, enumerable: !0, configurable: !0 }), Object.defineProperty(f.prototype, "step", { get: function () { return this.input_.step }, set: function (t) { this.input_.step = t }, enumerable: !0, configurable: !0 }), Object.defineProperty(f.prototype, "helperTextContent", { set: function (t) { this.foundation.setHelperTextContent(t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(f.prototype, "leadingIconAriaLabel", { set: function (t) { this.foundation.setLeadingIconAriaLabel(t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(f.prototype, "leadingIconContent", { set: function (t) { this.foundation.setLeadingIconContent(t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(f.prototype, "trailingIconAriaLabel", { set: function (t) { this.foundation.setTrailingIconAriaLabel(t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(f.prototype, "trailingIconContent", { set: function (t) { this.foundation.setTrailingIconContent(t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(f.prototype, "useNativeValidation", { set: function (t) { this.foundation.setUseNativeValidation(t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(f.prototype, "prefixText", { get: function () { return this.prefix_ ? this.prefix_.textContent : null }, set: function (t) { this.prefix_ && (this.prefix_.textContent = t) }, enumerable: !0, configurable: !0 }), Object.defineProperty(f.prototype, "suffixText", { get: function () { return this.suffix_ ? this.suffix_.textContent : null }, set: function (t) { this.suffix_ && (this.suffix_.textContent = t) }, enumerable: !0, configurable: !0 }), f.prototype.focus = function () { this.input_.focus() }, f.prototype.layout = function () { var t = this.foundation.shouldFloat; this.foundation.notchOutline(t) }, f.prototype.getDefaultFoundation = function () { var t = o(o(o(o(o({}, this.getRootAdapterMethods_()), this.getInputAdapterMethods_()), this.getLabelAdapterMethods_()), this.getLineRippleAdapterMethods_()), this.getOutlineAdapterMethods_()); return new p.MDCTextFieldFoundation(t, this.getFoundationMap_()) }, f.prototype.getRootAdapterMethods_ = function () { var n = this; return { addClass: function (t) { return n.root.classList.add(t) }, removeClass: function (t) { return n.root.classList.remove(t) }, hasClass: function (t) { return n.root.classList.contains(t) }, registerTextFieldInteractionHandler: function (t, e) { n.listen(t, e) }, deregisterTextFieldInteractionHandler: function (t, e) { n.unlisten(t, e) }, registerValidationAttributeChangeHandler: function (e) { var t = new MutationObserver(function (t) { return e(function (t) { return t.map(function (t) { return t.attributeName }).filter(function (t) { return t }) }(t)) }); return t.observe(n.input_, { attributes: !0 }), t }, deregisterValidationAttributeChangeHandler: function (t) { t.disconnect() } } }, f.prototype.getInputAdapterMethods_ = function () { var n = this; return { getNativeInput: function () { return n.input_ }, setInputAttr: function (t, e) { n.input_.setAttribute(t, e) }, removeInputAttr: function (t) { n.input_.removeAttribute(t) }, isFocused: function () { return document.activeElement === n.input_ }, registerInputInteractionHandler: function (t, e) { n.input_.addEventListener(t, e, u.applyPassive()) }, deregisterInputInteractionHandler: function (t, e) { n.input_.removeEventListener(t, e, u.applyPassive()) } } }, f.prototype.getLabelAdapterMethods_ = function () { var e = this; return { floatLabel: function (t) { return e.label_ && e.label_.float(t) }, getLabelWidth: function () { return e.label_ ? e.label_.getWidth() : 0 }, hasLabel: function () { return Boolean(e.label_) }, shakeLabel: function (t) { return e.label_ && e.label_.shake(t) }, setLabelRequired: function (t) { return e.label_ && e.label_.setRequired(t) } } }, f.prototype.getLineRippleAdapterMethods_ = function () { var e = this; return { activateLineRipple: function () { e.lineRipple_ && e.lineRipple_.activate() }, deactivateLineRipple: function () { e.lineRipple_ && e.lineRipple_.deactivate() }, setLineRippleTransformOrigin: function (t) { e.lineRipple_ && e.lineRipple_.setRippleCenter(t) } } }, f.prototype.getOutlineAdapterMethods_ = function () { var e = this; return { closeOutline: function () { return e.outline_ && e.outline_.closeNotch() }, hasOutline: function () { return Boolean(e.outline_) }, notchOutline: function (t) { return e.outline_ && e.outline_.notch(t) } } }, f.prototype.getFoundationMap_ = function () { return { characterCounter: this.characterCounter_ ? this.characterCounter_.foundationForTextField : void 0, helperText: this.helperText_ ? this.helperText_.foundationForTextField : void 0, leadingIcon: this.leadingIcon_ ? this.leadingIcon_.foundationForTextField : void 0, trailingIcon: this.trailingIcon_ ? this.trailingIcon_.foundationForTextField : void 0 } }, f.prototype.createRipple_ = function (t) { var n = this, e = this.root.classList.contains(b.cssClasses.TEXTAREA), i = this.root.classList.contains(b.cssClasses.OUTLINED); if (e || i) return null; var r = o(o({}, T.MDCRipple.createAdapter(this)), { isSurfaceActive: function () { return l.matches(n.input_, ":active") }, registerInteractionHandler: function (t, e) { return n.input_.addEventListener(t, e, u.applyPassive()) }, deregisterInteractionHandler: function (t, e) { return n.input_.removeEventListener(t, e, u.applyPassive()) } }); return t(this.root, new d.MDCRippleFoundation(r)) }, f); function f() { return null !== a && a.apply(this, arguments) || this } e.MDCTextField = h }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } Object.defineProperty(n, "__esModule", { value: !0 }), i(e(107)), i(e(37)); var r = e(108); n.characterCountCssClasses = r.cssClasses, n.characterCountStrings = r.strings }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } Object.defineProperty(n, "__esModule", { value: !0 }), i(e(110)), i(e(39)); var r = e(111); n.helperTextCssClasses = r.cssClasses, n.helperTextStrings = r.strings }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } Object.defineProperty(n, "__esModule", { value: !0 }), i(e(112)), i(e(113)); var r = e(114); n.iconCssClasses = r.cssClasses, n.iconStrings = r.strings }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } Object.defineProperty(n, "__esModule", { value: !0 }), i(e(183)), i(e(115)), i(e(40)) }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }); Object.defineProperty(e, "__esModule", { value: !0 }); var o, s = n(1), a = n(40), c = n(115), u = (o = s.MDCComponent, r(l, o), l.attachTo = function (t) { return new l(t) }, l.prototype.initialize = function () { var t = this.root.getAttribute("id"); if (!t) throw new Error("MDCTooltip: Tooltip component must have an id."); var e = document.querySelector('[aria-describedby="' + t + '"]') || document.querySelector('[data-tooltip-id="' + t + '"]'); if (!e) throw new Error("MDCTooltip: Tooltip component requires an anchor element annotated with [aria-describedby] or [data-tooltip-id] anchor element."); this.anchorElem = e }, l.prototype.initialSyncWithDOM = function () { var e = this; this.isTooltipRich = this.foundation.isRich(), this.isTooltipPersistent = this.foundation.isPersistent(), this.handleMouseEnter = function () { e.foundation.handleAnchorMouseEnter() }, this.handleFocus = function (t) { e.foundation.handleAnchorFocus(t) }, this.handleMouseLeave = function () { e.foundation.handleAnchorMouseLeave() }, this.handleBlur = function (t) { e.foundation.handleAnchorBlur(t) }, this.handleTransitionEnd = function () { e.foundation.handleTransitionEnd() }, this.handleClick = function () { e.foundation.handleAnchorClick() }, this.anchorElem.addEventListener("blur", this.handleBlur), this.isTooltipRich && this.isTooltipPersistent ? this.anchorElem.addEventListener("click", this.handleClick) : (this.anchorElem.addEventListener("mouseenter", this.handleMouseEnter), this.anchorElem.addEventListener("focus", this.handleFocus), this.anchorElem.addEventListener("mouseleave", this.handleMouseLeave)), this.listen("transitionend", this.handleTransitionEnd) }, l.prototype.destroy = function () { this.anchorElem && (this.anchorElem.removeEventListener("blur", this.handleBlur), this.isTooltipRich && this.isTooltipPersistent ? this.anchorElem.removeEventListener("click", this.handleClick) : (this.anchorElem.removeEventListener("mouseenter", this.handleMouseEnter), this.anchorElem.removeEventListener("focus", this.handleFocus), this.anchorElem.removeEventListener("mouseleave", this.handleMouseLeave))), this.unlisten("transitionend", this.handleTransitionEnd), o.prototype.destroy.call(this) }, l.prototype.setTooltipPosition = function (t) { this.foundation.setTooltipPosition(t) }, l.prototype.setAnchorBoundaryType = function (t) { this.foundation.setAnchorBoundaryType(t) }, l.prototype.hide = function () { this.foundation.hide() }, l.prototype.isShown = function () { this.foundation.isShown() }, l.prototype.getDefaultFoundation = function () { var i = this, t = { getAttribute: function (t) { return i.root.getAttribute(t) }, setAttribute: function (t, e) { i.root.setAttribute(t, e) }, addClass: function (t) { i.root.classList.add(t) }, hasClass: function (t) { return i.root.classList.contains(t) }, removeClass: function (t) { i.root.classList.remove(t) }, getComputedStyleProperty: function (t) { return window.getComputedStyle(i.root).getPropertyValue(t) }, setStyleProperty: function (t, e) { i.root.style.setProperty(t, e) }, setSurfaceStyleProperty: function (t, e) { var n = i.root.querySelector("." + a.CssClasses.SURFACE); null == n || n.style.setProperty(t, e) }, getViewportWidth: function () { return window.innerWidth }, getViewportHeight: function () { return window.innerHeight }, getTooltipSize: function () { return { width: i.root.offsetWidth, height: i.root.offsetHeight } }, getAnchorBoundingRect: function () { return i.anchorElem ? i.anchorElem.getBoundingClientRect() : null }, getParentBoundingRect: function () { var t, e; return null !== (e = null === (t = i.root.parentElement) || void 0 === t ? void 0 : t.getBoundingClientRect()) && void 0 !== e ? e : null }, getAnchorAttribute: function (t) { return i.anchorElem ? i.anchorElem.getAttribute(t) : null }, setAnchorAttribute: function (t, e) { var n; null === (n = i.anchorElem) || void 0 === n || n.setAttribute(t, e) }, isRTL: function () { return "rtl" === getComputedStyle(i.root).direction }, anchorContainsElement: function (t) { var e; return !!(null === (e = i.anchorElem) || void 0 === e ? void 0 : e.contains(t)) }, tooltipContainsElement: function (t) { return i.root.contains(t) }, focusAnchorElement: function () { var t; null === (t = i.anchorElem) || void 0 === t || t.focus() }, registerEventHandler: function (t, e) { i.root instanceof HTMLElement && i.root.addEventListener(t, e) }, deregisterEventHandler: function (t, e) { i.root instanceof HTMLElement && i.root.removeEventListener(t, e) }, registerDocumentEventHandler: function (t, e) { document.body.addEventListener(t, e) }, deregisterDocumentEventHandler: function (t, e) { document.body.removeEventListener(t, e) }, registerWindowEventHandler: function (t, e) { window.addEventListener(t, e) }, deregisterWindowEventHandler: function (t, e) { window.removeEventListener(t, e) }, notifyHidden: function () { i.emit(a.events.HIDDEN, {}) } }; return new c.MDCTooltipFoundation(t) }, l); function l() { return null !== o && o.apply(this, arguments) || this } e.MDCTooltip = u }, function (t, n, e) { "use strict"; function i(t) { for (var e in t) n.hasOwnProperty(e) || (n[e] = t[e]) } Object.defineProperty(n, "__esModule", { value: !0 }), i(e(185)), i(e(9)), i(e(42)), i(e(116)), i(e(117)), i(e(41)) }, function (t, e, n) { "use strict"; var i, r = this && this.__extends || (i = function (t, e) { return (i = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function (t, e) { t.__proto__ = e } || function (t, e) { for (var n in e) e.hasOwnProperty(n) && (t[n] = e[n]) })(t, e) }, function (t, e) { function n() { this.constructor = t } i(t, e), t.prototype = null === e ? Object.create(e) : (n.prototype = e.prototype, new n) }); Object.defineProperty(e, "__esModule", { value: !0 }); var o, s = n(1), a = n(3), c = n(9), u = n(116), l = n(117), d = n(41), p = (o = s.MDCComponent, r(h, o), h.attachTo = function (t) { return new h(t) }, h.prototype.initialize = function (n) { void 0 === n && (n = function (t) { return a.MDCRipple.attachTo(t) }), this.navIcon_ = this.root.querySelector(c.strings.NAVIGATION_ICON_SELECTOR); var t = [].slice.call(this.root.querySelectorAll(c.strings.ACTION_ITEM_SELECTOR)); this.navIcon_ && t.push(this.navIcon_), this.iconRipples_ = t.map(function (t) { var e = n(t); return e.unbounded = !0, e }), this.scrollTarget_ = window }, h.prototype.initialSyncWithDOM = function () { this.handleNavigationClick_ = this.foundation.handleNavigationClick.bind(this.foundation), this.handleWindowResize_ = this.foundation.handleWindowResize.bind(this.foundation), this.handleTargetScroll_ = this.foundation.handleTargetScroll.bind(this.foundation), this.scrollTarget_.addEventListener("scroll", this.handleTargetScroll_), this.navIcon_ && this.navIcon_.addEventListener("click", this.handleNavigationClick_); var t = this.root.classList.contains(c.cssClasses.FIXED_CLASS); this.root.classList.contains(c.cssClasses.SHORT_CLASS) || t || window.addEventListener("resize", this.handleWindowResize_) }, h.prototype.destroy = function () { this.iconRipples_.forEach(function (t) { return t.destroy() }), this.scrollTarget_.removeEventListener("scroll", this.handleTargetScroll_), this.navIcon_ && this.navIcon_.removeEventListener("click", this.handleNavigationClick_); var t = this.root.classList.contains(c.cssClasses.FIXED_CLASS); this.root.classList.contains(c.cssClasses.SHORT_CLASS) || t || window.removeEventListener("resize", this.handleWindowResize_), o.prototype.destroy.call(this) }, h.prototype.setScrollTarget = function (t) { this.scrollTarget_.removeEventListener("scroll", this.handleTargetScroll_), this.scrollTarget_ = t, this.handleTargetScroll_ = this.foundation.handleTargetScroll.bind(this.foundation), this.scrollTarget_.addEventListener("scroll", this.handleTargetScroll_) }, h.prototype.getDefaultFoundation = function () { var n = this, t = { hasClass: function (t) { return n.root.classList.contains(t) }, addClass: function (t) { return n.root.classList.add(t) }, removeClass: function (t) { return n.root.classList.remove(t) }, setStyle: function (t, e) { return n.root.style.setProperty(t, e) }, getTopAppBarHeight: function () { return n.root.clientHeight }, notifyNavigationIconClicked: function () { return n.emit(c.strings.NAVIGATION_EVENT, {}) }, getViewportScrollY: function () { var t = n.scrollTarget_, e = n.scrollTarget_; return void 0 !== t.pageYOffset ? t.pageYOffset : e.scrollTop }, getTotalActionItems: function () { return n.root.querySelectorAll(c.strings.ACTION_ITEM_SELECTOR).length } }; return this.root.classList.contains(c.cssClasses.SHORT_CLASS) ? new l.MDCShortTopAppBarFoundation(t) : this.root.classList.contains(c.cssClasses.FIXED_CLASS) ? new u.MDCFixedTopAppBarFoundation(t) : new d.MDCTopAppBarFoundation(t) }, h); function h() { return null !== o && o.apply(this, arguments) || this } e.MDCTopAppBar = p }], r.c = i, r.d = function (t, e, n) { r.o(t, e) || Object.defineProperty(t, e, { enumerable: !0, get: n }) }, r.r = function (t) { "undefined" != typeof Symbol && Symbol.toStringTag && Object.defineProperty(t, Symbol.toStringTag, { value: "Module" }), Object.defineProperty(t, "__esModule", { value: !0 }) }, r.t = function (e, t) { if (1 & t && (e = r(e)), 8 & t) return e; if (4 & t && "object" == typeof e && e && e.__esModule) return e; var n = Object.create(null); if (r.r(n), Object.defineProperty(n, "default", { enumerable: !0, value: e }), 2 & t && "string" != typeof e) for (var i in e) r.d(n, i, function (t) { return e[t] }.bind(null, i)); return n }, r.n = function (t) { var e = t && t.__esModule ? function () { return t.default } : function () { return t }; return r.d(e, "a", e), e }, r.o = function (t, e) { return Object.prototype.hasOwnProperty.call(t, e) }, r.p = "", r(r.s = 118); function r(t) { if (i[t]) return i[t].exports; var e = i[t] = { i: t, l: !1, exports: {} }; return n[t].call(e.exports, e, e.exports, r), e.l = !0, e.exports } var n, i });
# Copyright 2019 LiveSite authors # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import argparse import re import bs4 import requests from livecli.scrapers import base _DEFAULT_COLORS = ( '#F44336', # red '#4CAF50', # green '#EAD61E', # yellow '#3F51B5', # blue '#F48FB1', # pink '#FF9800', # orange '#81D4FA', # cyan '#E040FB', # purple '#76FF03', # light green '#FFFFFF', # white '#000000', # black ) _LABEL_CHARS = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' class DomjudgeScraper(base.Scraper): def __init__(self, options: argparse.Namespace): self._options = options def scrape_impl(self, html: str) -> dict: doc = bs4.BeautifulSoup(html, 'html5lib') if doc.select('#loginform'): raise base.NeedLoginException() standings = {'problems': [], 'entries': []} scoreheader_elems = doc.select('.scoreheader') if not scoreheader_elems: raise Exception('Scoreboard not available yet') scoreheader_elem = scoreheader_elems[0] for index_problem, problem_elem in enumerate(scoreheader_elem.select('th')[3:]): # label = problem_elem.get_text().strip() label = _LABEL_CHARS[index_problem % len(_LABEL_CHARS)] tooltip = problem_elem.attrs.get('title', '') if tooltip.startswith('problem '): name = tooltip[len('problem '):].strip(' \'') else: name = '' circles = problem_elem.select('.circle') if circles: style = circles[0].attrs.get('style', '') m = re.search(r'background:\s*([^\s;]+)\s*;', style) color = m.group(1) if m else '' else: color = _DEFAULT_COLORS[index_problem % len(_DEFAULT_COLORS)] standings['problems'].append({ 'label': label, # 'name': name, 'name': label, 'color': color, }) scoreboard_elem = doc.select('table.scoreboard')[0] last_rank = 1 for team_elem in scoreboard_elem.select('tbody tr'): if not team_elem.attrs.get('id', '').startswith('team:'): break team_problems = [] for problem_elem in team_elem.select('td.score_cell'): text = problem_elem.get_text().strip() if not text: penalty, attempts, pendings = 0, 0, 0 else: m = re.search(r'^(?:(?P<penalty>\d+)\s+)?(?P<attempts>\d+)\s+(?:\+\s+(?P<pendings>\d+)\s+)?(?:try|tries)$', text) assert m, text penalty = int(m.group('penalty') or '0') attempts = int(m.group('attempts')) pendings = int(m.group('pendings') or '0') classes = problem_elem['class'] solved = len(problem_elem.select('.score_correct')) > 0 team_problems.append({ 'attempts': attempts, 'pendings': pendings, 'penalty': penalty, 'solved': solved, }) rank = team_elem.select('.scorepl')[0].get_text().strip() if rank: last_rank = rank = int(rank) else: rank = last_rank name = team_elem.select('.scoretn .forceWidth')[0].get_text().strip() # Strip badge texts for badge in team_elem.select('.badge'): prefix = badge.get_text().strip() assert name.startswith(prefix) name = name[len(prefix):].strip() try: tid = str(int(name.split(':', 1)[0], 10)) except ValueError: continue solved = int(team_elem.select('.scorenc')[0].get_text().strip()) penalty = int(team_elem.select('.scorett')[0].get_text().strip()) standings['entries'].append({ 'teamId': tid, 'rank': rank, 'solved': solved, 'penalty': penalty, 'problems': team_problems, }) return standings def login(self, session: requests.Session) -> None: r = session.get(self._options.login_url) r.raise_for_status() doc = bs4.BeautifulSoup(r.text, 'html5lib') form = doc.select('#loginform form')[0] params = {} for kv in form.select('input[type=hidden]'): params[kv.attrs['name']] = kv.attrs['value'] params['_username'] = self._options.login_user params['_password'] = self._options.login_password r = session.post(self._options.login_url, params) r.raise_for_status() doc = bs4.BeautifulSoup(r.text, 'html5lib') alerts = doc.select('#loginform .login-content .alert') if alerts: raise Exception('Login failed: %s' % alerts[0].get_text())
require('dotenv').config(); const express = require('express'); const app = express(); const server = require('http').createServer(app); const { Server } = require('socket.io'); const port = process.env.PORT || 3000; app .use(require('cors')({ origin: 'https://react-webpack-express.herokuapp.com' })) .use(express.json()) .use('/', require('./server/routes/router')); require('./server/connection/socket-io').socket(new Server(server)); server.listen(port, () => console.log(`App is live at port http://localhost:${port}`));
#!/usr/bin/env python from __future__ import print_function import argparse import os import sys from collections import defaultdict import json import ssg.build_yaml import ssg.oval import ssg.build_remediations import ssg.products import ssg.rules import ssg.yaml SSG_ROOT = os.path.abspath(os.path.join(os.path.dirname(__file__), "..")) BUILD_OUTPUT = os.path.join(SSG_ROOT, "build", "rule_dirs.json") def parse_args(): parser = argparse.ArgumentParser() parser.add_argument("-r", "--root", type=str, action="store", default=SSG_ROOT, help="Path to SSG root directory (defaults to %s)" % SSG_ROOT) parser.add_argument("-o", "--output", type=str, action="store", default=BUILD_OUTPUT, help="File to write json output to (defaults to build/rule_dirs.json)") return parser.parse_args() def walk_products(root, all_products): visited_dirs = set() all_rule_dirs = [] product_yamls = {} for product in all_products: product_dir = os.path.join(root, product) product_yaml_path = os.path.join(product_dir, "product.yml") product_yaml = ssg.products.load_product_yaml(product_yaml_path) product_yamls[product] = product_yaml guide_dir = os.path.join(product_dir, product_yaml['benchmark_root']) guide_dir = os.path.abspath(guide_dir) additional_content_directories = product_yaml.get("additional_content_directories", []) add_content_dirs = [os.path.abspath(os.path.join(product_dir, rd)) for rd in additional_content_directories] for cur_dir in [guide_dir] + add_content_dirs: if cur_dir not in visited_dirs: for rule_id, rule_dir in collect_rule_ids_and_dirs(cur_dir): all_rule_dirs.append((rule_id, rule_dir, cur_dir, product)) visited_dirs.add(cur_dir) return all_rule_dirs, product_yamls def collect_rule_ids_and_dirs(rules_dir): for rule_dir in sorted(ssg.rules.find_rule_dirs(rules_dir)): yield ssg.rules.get_rule_dir_id(rule_dir), rule_dir def handle_rule_yaml(product_list, product_yamls, rule_id, rule_dir, guide_dir): rule_obj = {'id': rule_id, 'dir': rule_dir, 'guide': guide_dir} rule_file = ssg.rules.get_rule_dir_yaml(rule_dir) prod_type = product_list[0] product_yaml = product_yamls[prod_type] rule_yaml = ssg.build_yaml.Rule.from_yaml(rule_file, product_yaml) rule_products = set() for product in product_list: if ssg.utils.is_applicable(rule_yaml.prodtype, product): rule_products.add(product) rule_products = sorted(rule_products) rule_obj['products'] = rule_products rule_obj['title'] = rule_yaml.title return rule_obj def handle_ovals(product_list, product_yamls, rule_obj): rule_dir = rule_obj['dir'] rule_ovals = {} oval_products = defaultdict(set) for oval_path in ssg.rules.get_rule_dir_ovals(rule_dir): oval_name = os.path.basename(oval_path) oval_product, _ = os.path.splitext(oval_name) oval_obj = {'name': oval_name, 'product': oval_product} platforms = ssg.oval.applicable_platforms(oval_path) cs_platforms = ','.join(platforms) oval_obj['platforms'] = platforms oval_obj['products'] = set() for product in product_list: if ssg.utils.is_applicable(cs_platforms, product): oval_products[product].add(oval_name) oval_obj['products'].add(product) oval_obj['products'] = sorted(oval_obj['products']) rule_ovals[oval_name] = oval_obj return rule_ovals, oval_products def handle_remediations(product_list, product_yamls, rule_obj): rule_dir = rule_obj['dir'] rule_remediations = {} r_products = defaultdict(set) for r_type in ssg.build_remediations.REMEDIATION_TO_EXT_MAP: rule_remediations[r_type] = {} r_paths = ssg.build_remediations.get_rule_dir_remediations(rule_dir, r_type) for r_path in r_paths: r_name = os.path.basename(r_path) r_product, r_ext = os.path.splitext(r_name) r_obj = {'type': r_type, 'name': r_name, 'product': r_product, 'ext': r_ext[1:]} prod_type = product_list[0] if r_product != 'shared' and r_product in product_list: prod_type = r_product product_yaml = product_yamls[prod_type] _, config = ssg.build_remediations.parse_from_file_with_jinja( r_path, product_yaml ) platforms = config['platform'] if not platforms: print(config['platform']) r_obj['platforms'] = sorted(map(lambda x: x.strip(), platforms.split(','))) r_obj['products'] = set() for product in product_list: if ssg.utils.is_applicable(platforms, product): r_products[product].add(r_name) r_obj['products'].add(product) r_obj['products'] = sorted(r_obj['products']) rule_remediations[r_type][r_name] = r_obj return rule_remediations, r_products def main(): args = parse_args() linux_products, other_products = ssg.products.get_all(args.root) all_products = linux_products.union(other_products) all_rule_dirs, product_yamls = walk_products(args.root, all_products) known_rules = {} for rule_id, rule_dir, guide_dir, given_product in all_rule_dirs: product_list = sorted(linux_products) if 'linux_os' not in guide_dir: product_list = [given_product] try: rule_obj = handle_rule_yaml(product_list, product_yamls, rule_id, rule_dir, guide_dir) except ssg.yaml.DocumentationNotComplete: # Happens on non-debug build when a rule is "documentation-incomplete" continue rule_obj['ovals'], oval_products = handle_ovals(product_list, product_yamls, rule_obj) rule_obj['remediations'], r_products = handle_remediations(product_list, product_yamls, rule_obj) # Validate oval products for key in oval_products: oval_products[key] = sorted(oval_products[key]) if len(oval_products[key]) > 1: print("product has multiple ovals: %s - %s" % (key, ','.join(oval_products[key])), file=sys.stderr) rule_obj['oval_products'] = oval_products # Validate remediation products for key in r_products: r_products[key] = sorted(r_products[key]) if len(r_products[key]) > 1: exts = sorted(map(lambda x: os.path.splitext(x)[1], r_products[key])) if len(exts) != len(set(exts)): print("product has multiple remediations of the same type: %s - %s" % (key, ','.join(r_products[key])), file=sys.stderr) rule_obj['remediation_products'] = r_products known_rules[rule_id] = rule_obj f = open(args.output, 'w') j = json.dump(known_rules, f) if not f.closed: f.flush() f.close() if __name__ == "__main__": main()
import _async_to_generator from "@swc/helpers/lib/_async_to_generator.js"; function func() { return _func.apply(this, arguments); } function _func() { _func = _async_to_generator(function*() { before(); var b = fn(a, a, a); after(); }); return _func.apply(this, arguments); }
function parseStateRef(ref, current) { var preparsed = ref.match(/^\s*({[^}]*})\s*$/), parsed; if (preparsed) ref = current + '(' + preparsed[1] + ')'; parsed = ref.replace(/\n/g, " ").match(/^([^(]+?)\s*(\((.*)\))?$/); if (!parsed || parsed.length !== 4) throw new Error("Invalid state ref '" + ref + "'"); return { state: parsed[1], paramExpr: parsed[3] || null }; } function stateContext(el) { var stateData = el.parent().inheritedData('$uiView'); if (stateData && stateData.state && stateData.state.name) { return stateData.state; } } function getTypeInfo(el) { // SVGAElement does not use the href attribute, but rather the 'xlinkHref' attribute. var isSvg = Object.prototype.toString.call(el.prop('href')) === '[object SVGAnimatedString]'; var isForm = el[0].nodeName === "FORM"; return { attr: isForm ? "action" : (isSvg ? 'xlink:href' : 'href'), isAnchor: el.prop("tagName").toUpperCase() === "A", clickable: !isForm }; } function clickHook(el, $state, $timeout, type, current) { return function(e) { var button = e.which || e.button, target = current(); if (!(button > 1 || e.ctrlKey || e.metaKey || e.shiftKey || el.attr('target'))) { // HACK: This is to allow ng-clicks to be processed before the transition is initiated: var transition = $timeout(function() { $state.go(target.state, target.params, target.options); }); e.preventDefault(); // if the state has no URL, ignore one preventDefault from the <a> directive. var ignorePreventDefaultCount = type.isAnchor && !target.href ? 1: 0; e.preventDefault = function() { if (ignorePreventDefaultCount-- <= 0) $timeout.cancel(transition); }; } }; } function defaultOpts(el, $state) { return { relative: stateContext(el) || $state.$current, inherit: true }; } /** * @ngdoc directive * @name ui.router.state.directive:ui-sref * * @requires ui.router.state.$state * @requires $timeout * * @restrict A * * @description * A directive that binds a link (`<a>` tag) to a state. If the state has an associated * URL, the directive will automatically generate & update the `href` attribute via * the {@link ui.router.state.$state#methods_href $state.href()} method. Clicking * the link will trigger a state transition with optional parameters. * * Also middle-clicking, right-clicking, and ctrl-clicking on the link will be * handled natively by the browser. * * You can also use relative state paths within ui-sref, just like the relative * paths passed to `$state.go()`. You just need to be aware that the path is relative * to the state that the link lives in, in other words the state that loaded the * template containing the link. * * You can specify options to pass to {@link ui.router.state.$state#methods_go $state.go()} * using the `ui-sref-opts` attribute. Options are restricted to `location`, `inherit`, * and `reload`. * * @example * Here's an example of how you'd use ui-sref and how it would compile. If you have the * following template: * <pre> * <a ui-sref="home">Home</a> | <a ui-sref="about">About</a> | <a ui-sref="{page: 2}">Next page</a> * * <ul> * <li ng-repeat="contact in contacts"> * <a ui-sref="contacts.detail({ id: contact.id })">{{ contact.name }}</a> * </li> * </ul> * </pre> * * Then the compiled html would be (assuming Html5Mode is off and current state is contacts): * <pre> * <a href="#/home" ui-sref="home">Home</a> | <a href="#/about" ui-sref="about">About</a> | <a href="#/contacts?page=2" ui-sref="{page: 2}">Next page</a> * * <ul> * <li ng-repeat="contact in contacts"> * <a href="#/contacts/1" ui-sref="contacts.detail({ id: contact.id })">Joe</a> * </li> * <li ng-repeat="contact in contacts"> * <a href="#/contacts/2" ui-sref="contacts.detail({ id: contact.id })">Alice</a> * </li> * <li ng-repeat="contact in contacts"> * <a href="#/contacts/3" ui-sref="contacts.detail({ id: contact.id })">Bob</a> * </li> * </ul> * * <a ui-sref="home" ui-sref-opts="{reload: true}">Home</a> * </pre> * * @param {string} ui-sref 'stateName' can be any valid absolute or relative state * @param {Object} ui-sref-opts options to pass to {@link ui.router.state.$state#methods_go $state.go()} */ $StateRefDirective.$inject = ['$state', '$timeout']; function $StateRefDirective($state, $timeout) { return { restrict: 'A', require: ['?^uiSrefActive', '?^uiSrefActiveEq'], link: function(scope, element, attrs, uiSrefActive) { var ref = parseStateRef(attrs.uiSref, $state.current.name); var def = { state: ref.state, href: null, params: null }; var type = getTypeInfo(element); var active = uiSrefActive[1] || uiSrefActive[0]; var unlinkInfoFn = null; var hookFn; def.options = extend(defaultOpts(element, $state), attrs.uiSrefOpts ? scope.$eval(attrs.uiSrefOpts) : {}); var update = function(val) { if (val) def.params = angular.copy(val); def.href = $state.href(ref.state, def.params, def.options); if (unlinkInfoFn) unlinkInfoFn(); if (active) unlinkInfoFn = active.$$addStateInfo(ref.state, def.params); if (def.href !== null) attrs.$set(type.attr, def.href); }; if (ref.paramExpr) { scope.$watch(ref.paramExpr, function(val) { if (val !== def.params) update(val); }, true); def.params = angular.copy(scope.$eval(ref.paramExpr)); } update(); if (!type.clickable) return; hookFn = clickHook(element, $state, $timeout, type, function() { return def; }); element.bind("click", hookFn); scope.$on('$destroy', function() { element.unbind("click", hookFn); }); } }; } /** * @ngdoc directive * @name ui.router.state.directive:ui-state * * @requires ui.router.state.uiSref * * @restrict A * * @description * Much like ui-sref, but will accept named $scope properties to evaluate for a state definition, * params and override options. * * @param {string} ui-state 'stateName' can be any valid absolute or relative state * @param {Object} ui-state-params params to pass to {@link ui.router.state.$state#methods_href $state.href()} * @param {Object} ui-state-opts options to pass to {@link ui.router.state.$state#methods_go $state.go()} */ $StateRefDynamicDirective.$inject = ['$state', '$timeout']; function $StateRefDynamicDirective($state, $timeout) { return { restrict: 'A', require: ['?^uiSrefActive', '?^uiSrefActiveEq'], link: function(scope, element, attrs, uiSrefActive) { var type = getTypeInfo(element); var active = uiSrefActive[1] || uiSrefActive[0]; var group = [attrs.uiState, attrs.uiStateParams || null, attrs.uiStateOpts || null]; var watch = '[' + group.map(function(val) { return val || 'null'; }).join(', ') + ']'; var def = { state: null, params: null, options: null, href: null }; var unlinkInfoFn = null; var hookFn; function runStateRefLink (group) { def.state = group[0]; def.params = group[1]; def.options = group[2]; def.href = $state.href(def.state, def.params, def.options); if (unlinkInfoFn) unlinkInfoFn(); if (active) unlinkInfoFn = active.$$addStateInfo(def.state, def.params); if (def.href) attrs.$set(type.attr, def.href); } scope.$watch(watch, runStateRefLink, true); runStateRefLink(scope.$eval(watch)); if (!type.clickable) return; hookFn = clickHook(element, $state, $timeout, type, function() { return def; }); element.bind("click", hookFn); scope.$on('$destroy', function() { element.unbind("click", hookFn); }); } }; } /** * @ngdoc directive * @name ui.router.state.directive:ui-sref-active * * @requires ui.router.state.$state * @requires ui.router.state.$stateParams * @requires $interpolate * * @restrict A * * @description * A directive working alongside ui-sref to add classes to an element when the * related ui-sref directive's state is active, and removing them when it is inactive. * The primary use-case is to simplify the special appearance of navigation menus * relying on `ui-sref`, by having the "active" state's menu button appear different, * distinguishing it from the inactive menu items. * * ui-sref-active can live on the same element as ui-sref or on a parent element. The first * ui-sref-active found at the same level or above the ui-sref will be used. * * Will activate when the ui-sref's target state or any child state is active. If you * need to activate only when the ui-sref target state is active and *not* any of * it's children, then you will use * {@link ui.router.state.directive:ui-sref-active-eq ui-sref-active-eq} * * @example * Given the following template: * <pre> * <ul> * <li ui-sref-active="active" class="item"> * <a href ui-sref="app.user({user: 'bilbobaggins'})">@bilbobaggins</a> * </li> * </ul> * </pre> * * * When the app state is "app.user" (or any children states), and contains the state parameter "user" with value "bilbobaggins", * the resulting HTML will appear as (note the 'active' class): * <pre> * <ul> * <li ui-sref-active="active" class="item active"> * <a ui-sref="app.user({user: 'bilbobaggins'})" href="/users/bilbobaggins">@bilbobaggins</a> * </li> * </ul> * </pre> * * The class name is interpolated **once** during the directives link time (any further changes to the * interpolated value are ignored). * * Multiple classes may be specified in a space-separated format: * <pre> * <ul> * <li ui-sref-active='class1 class2 class3'> * <a ui-sref="app.user">link</a> * </li> * </ul> * </pre> * * It is also possible to pass ui-sref-active an expression that evaluates * to an object hash, whose keys represent active class names and whose * values represent the respective state names/globs. * ui-sref-active will match if the current active state **includes** any of * the specified state names/globs, even the abstract ones. * * @Example * Given the following template, with "admin" being an abstract state: * <pre> * <div ui-sref-active="{'active': 'admin.*'}"> * <a ui-sref-active="active" ui-sref="admin.roles">Roles</a> * </div> * </pre> * * When the current state is "admin.roles" the "active" class will be applied * to both the <div> and <a> elements. It is important to note that the state * names/globs passed to ui-sref-active shadow the state provided by ui-sref. */ /** * @ngdoc directive * @name ui.router.state.directive:ui-sref-active-eq * * @requires ui.router.state.$state * @requires ui.router.state.$stateParams * @requires $interpolate * * @restrict A * * @description * The same as {@link ui.router.state.directive:ui-sref-active ui-sref-active} but will only activate * when the exact target state used in the `ui-sref` is active; no child states. * */ $StateRefActiveDirective.$inject = ['$state', '$stateParams', '$interpolate']; function $StateRefActiveDirective($state, $stateParams, $interpolate) { return { restrict: "A", controller: ['$scope', '$element', '$attrs', '$timeout', function ($scope, $element, $attrs, $timeout) { var states = [], activeClasses = {}, activeEqClass, uiSrefActive; // There probably isn't much currentPoint in $observing this // uiSrefActive and uiSrefActiveEq share the same directive object with some // slight difference in logic routing activeEqClass = $interpolate($attrs.uiSrefActiveEq || '', false)($scope); try { uiSrefActive = $scope.$eval($attrs.uiSrefActive); } catch (e) { // Do nothing. uiSrefActive is not a valid expression. // Fall back to using $interpolate below } uiSrefActive = uiSrefActive || $interpolate($attrs.uiSrefActive || '', false)($scope); if (isObject(uiSrefActive)) { forEach(uiSrefActive, function(stateOrName, activeClass) { if (isString(stateOrName)) { var ref = parseStateRef(stateOrName, $state.current.name); addState(ref.state, $scope.$eval(ref.paramExpr), activeClass); } }); } // Allow uiSref to communicate with uiSrefActive[Equals] this.$$addStateInfo = function (newState, newParams) { // we already got an explicit state provided by ui-sref-active, so we // shadow the one that comes from ui-sref if (isObject(uiSrefActive) && states.length > 0) { return; } var deregister = addState(newState, newParams, uiSrefActive); update(); return deregister; }; $scope.$on('$stateChangeSuccess', update); function addState(stateName, stateParams, activeClass) { var state = $state.get(stateName, stateContext($element)); var stateHash = createStateHash(stateName, stateParams); var stateInfo = { state: state || { name: stateName }, params: stateParams, hash: stateHash }; states.push(stateInfo); activeClasses[stateHash] = activeClass; return function removeState() { var idx = states.indexOf(stateInfo); if (idx !== -1) states.splice(idx, 1); }; } /** * @param {string} state * @param {Object|string} [params] * @return {string} */ function createStateHash(state, params) { if (!isString(state)) { throw new Error('state should be a string'); } if (isObject(params)) { return state + toJson(params); } params = $scope.$eval(params); if (isObject(params)) { return state + toJson(params); } return state; } // Update route state function update() { for (var i = 0; i < states.length; i++) { if (anyMatch(states[i].state, states[i].params)) { addClass($element, activeClasses[states[i].hash]); } else { removeClass($element, activeClasses[states[i].hash]); } if (exactMatch(states[i].state, states[i].params)) { addClass($element, activeEqClass); } else { removeClass($element, activeEqClass); } } } function addClass(el, className) { $timeout(function () { el.addClass(className); }); } function removeClass(el, className) { el.removeClass(className); } function anyMatch(state, params) { return $state.includes(state.name, params); } function exactMatch(state, params) { return $state.is(state.name, params); } update(); }] }; } angular.module('ui.router.state') .directive('uiSref', $StateRefDirective) .directive('uiSrefActive', $StateRefActiveDirective) .directive('uiSrefActiveEq', $StateRefActiveDirective) .directive('uiState', $StateRefDynamicDirective);
self.__BUILD_MANIFEST = {"/_error":["static\u002Fchunks\u002Fpages\u002F_error.js"],"/basic":["static\u002Fchunks\u002Fpages\u002Fbasic.js"]};self.__BUILD_MANIFEST_CB && self.__BUILD_MANIFEST_CB()
import unittest import data from promo import address_set class TestAddressReading(unittest.TestCase): def test_address_reading(self): expected = ["[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "sdfo@foo", "idsjf@osefj"] addrs = [addr for addr in address_set(data.get_path("addresses"))] self.assertEqual(sorted(addrs), sorted(expected))
let capitalizeString = (string) => { if (typeof string !== 'string') { throw new Error('It needs to be a string'); } else return string[0].toUpperCase() + string.slice(1); }; module.exports = capitalizeString;
import passport from 'passport' import {User} from '../models/user' export const registerUserAPI = (req, res, next) => { let user = new User user.firstName = req.body.firstName user.lastName = req.body.lastName user.email = req.body.email user.username = req.body.username user.setPassword(req.body.password) user.save(err => { if (err) { console.log(err) res.json({success: false, message: "Unable to register user"}) res.end() } else { res.end() } }) } export const signUserInAPI = (req, res, next) => { console.log("in signUserInAPI") passport.authenticate('local', (err, user, info) => { console.log("in authenticate") if (err) { console.log(err) res.status(404).json(err) res.end() } else { if (user) { let token = user.generateJWT() res.cookie("token", token, {maxAge: 1000 * 60 * 60 * 24}) //res.cookie("token", token, {maxAge: 1000 * 3}) res.end() } else { res.status(401) res.end() } } })(req, res, next) }
function SvgKeyboardAltTwoTone(props) { return ( <svg xmlns='http://www.w3.org/2000/svg' height='1em' viewBox='0 0 24 24' width='1em' className='svg-icon' {...props}> <path fill='none' d='M0 0h24v24H0z' /> <path d='M3 19h18V6H3v13zM17 8h2v2h-2V8zm0 4h2v2h-2v-2zm-4-4h2v2h-2V8zm0 4h2v2h-2v-2zM9 8h2v2H9V8zm0 4h2v2H9v-2zm-1 4h8v1H8v-1zM5 8h2v2H5V8zm0 4h2v2H5v-2z' opacity={0.3} /> <path d='M21 4H3c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 15H3V6h18v13z' /> <path d='M9 8h2v2H9zM5 8h2v2H5zM8 16h8v1H8zM13 8h2v2h-2zM9 12h2v2H9zM5 12h2v2H5zM13 12h2v2h-2zM17 8h2v2h-2zM17 12h2v2h-2z' /> </svg> ); } export default SvgKeyboardAltTwoTone;
function test(value, finalSettingsLength){ if (finalSettingsLength == 1) { return 1; } else { if (value == "algorithm1"){ // console.log("lol") return 1; } else{ return 2; } } } function createBrushMap() { var checkCount = JSON.parse(finalSettings); var finalSettingsLength = Object.keys(checkCount).length; console.log("final length", finalSettingsLength); console.log(finalSettings); var value = 0; if (finalSettingsLength == 1) { value = 100; } else { value = 150; } // set the dimensions and margins of the graph var margin = {top: 10, right: 30, bottom: 30, left: 60}, width = 1400 - margin.left - margin.right, height = value - margin.top - margin.bottom; // width = 330; // height = 100; $("#brushMapContent").empty(); var title = '<h6 class="m-b-20">Time Series Brush Map</h6>'; $("#brushMapContent").append(title); var graph = JSON.parse(JSON.stringify(graphs)); var data = graph["gazeAndDensity"]; var normalisedDataLength = data.length; for (var i=0; i < normalisedDataLength; i++ ) { data[i]["Scaled_X"] = width * data[i]["Scaled_X"]; data[i]["Scaled_Y"] = height * data[i]["Scaled_Y"]; } // data = data.slice(0,10); console.log("Modelled for Brush Map", data); var graphContainer = '<div id="brushMapGraph"></div>'; $("#brushMapContent").append(graphContainer); // append the svg object to the body of the page var svg = d3.select("#brushMapGraph") .append("svg") .attr("width", width + margin.left + margin.right) .attr("height", height + margin.top + margin.bottom) .append("g") .attr("transform", "translate(" + margin.left + "," + margin.top + ")"); // var svg = d3.select("#brushMapGraph") // .append("svg") // .attr("width", width) // .attr("height", height); var x = d3.scaleLinear() .domain([2960950, 3005934]) .range([ 0, width ]); svg.append("g") .attr("transform", "translate(0," + height + ")") .call(d3.axisBottom(x)); // Add Y axis // var y = d3.scaleLinear() // .domain([d3.min(data, function(d) { return d["signal"] }), d3.max(data, function(d) { return d["signal"] })]) // .range([ height, 0]) // .nice(); // svg.append("g") // .call(d3.axisLeft(y).tickSize(-width*1.3).ticks(7)) // .select(".domain").remove(); var y = d3.scaleLinear() .domain([0, finalSettingsLength]) .range([ height, 0]); svg.append("g") .call(d3.axisLeft(y).ticks(finalSettingsLength)); var color = d3.scaleOrdinal() .domain([1, 2, "virginica" ]) .range([ "#37AFA9", "#152329","#21908dff"]); var myCircle = svg.append('g') .selectAll("circle") .data(data) .enter() .append("rect") .attr("x", function (d) { return x(d["Time"]); } ) .attr("y", function (d) { return y(test(d["algorithm"], finalSettingsLength)); } ) .attr("width", 3) .attr("height", 30) .style("fill", function (d) { return color(d["label"]) } ) .style("opacity", 0.5); // Add brushing svg .call( d3.brush() // Add the brush feature using the d3.brush function .extent( [ [0,0], [width,height] ] ) // initialise the brush area: start at 0,0 and finishes at width,height: it means I select the whole graph area .on("start brush", updateChart) // Each time the brush selection changes, trigger the 'updateChart' function .on("end", brushended) ) // function lol() { // console.log("lol"); // } if (finalSettingsLength == 2) { var graphKeys = '<p class="m-b-0"><div class="box mildGreen"></div>Fixations</div><div><div class="box black"></div>Sacades</p>'; $("#brushMapContent").append(graphKeys); } else { var graphKeys = '<br>' + '<p class="m-b-0">One can you use this time series plot highligth portion of the Gaze, Fixation and Density Graphs by the means of Linked Brushing !</p>'; $("#brushMapContent").append(graphKeys); } // Function that is triggered when brushing is performed function updateChart() { extent = d3.event.selection; // console.log(extent); // console.log(x.invert(extent[0][0])); // lol(); myCircle.classed("selected", function(d){ return isBrushed(extent, x(d.Sepal_Length), y(d.Petal_Length) ) } ) } // A function that return TRUE or FALSE according if a dot is in the selection or not function isBrushed(brush_coords, cx, cy) { var x0 = brush_coords[0][0], x1 = brush_coords[1][0], y0 = brush_coords[0][1], y1 = brush_coords[1][1]; return x0 <= cx && cx <= x1 && y0 <= cy && cy <= y1; // This return TRUE or FALSE depending on if the points is in the selected area } function brushended() { if (!d3.event.selection) { extent = d3.event.selection; console.log("fucked"); createGazePlot(); createFixationPlot(); createHeatMap(); } else{ console.log("GG"); extent = d3.event.selection; // console.log(extent); reRenderTheMainGraphs(extent,x,y); } } }
describe('execution environments', () => { let num = (~~(Math.random() * 1000000)).toString(); before(() => { cy.login(); cy.deleteRegistries(); cy.deleteContainers(); cy.addRemoteRegistry(`docker${num}`, 'https://registry.hub.docker.com/'); cy.addRemoteContainer({ name: `remotepine${num}`, upstream_name: 'library/alpine', registry: `docker${num}`, include_tags: 'latest', }); cy.addLocalContainer(`localpine${num}`, 'alpine'); }); beforeEach(() => { cy.login(); cy.menuGo('Execution Environments > Execution Environments'); }); it('edits a remote container', () => { cy.contains('a', `remotepine${num}`).click(); cy.get('.pf-c-button.pf-m-secondary').contains('Edit').click(); cy.get('#description').type('This is the description.'); cy.contains('button', 'Save').click(); cy.wait(10000); // FIXME have a reload request, wait for it; can't wait for an unspecified number of task requests cy.get('[data-cy=description]').should( 'have.text', 'This is the description.', ); }); it('edits a local container', () => { cy.contains('a', `localpine${num}`).click(); cy.get('.pf-c-button.pf-m-secondary').contains('Edit').click(); cy.get('#description').type('This is the description.'); cy.contains('button', 'Save').click(); cy.wait(10000); // FIXME have a reload request, wait for it; can't wait for an unspecified number of task requests cy.get('[data-cy=description]').should( 'have.text', 'This is the description.', ); }); });
#This pre-processes Ontario libraries. #The csv includes both street and mailing address, #and in some instances the mailing address is just a box number (to go along with street address), #and in other instances the mailing address is the full address and the street address is blank #we'll just look for empty entries in street address, and copy over the corresponding #mailing addresses. import pandas as pd df=pd.read_csv('/home/csis/codes/OpenTabulate/Libraries/ON_Libraries.csv',encoding='utf-8') N=len(df["A1.9 Street Address"]) i=0 street=list(df["A1.9 Street Address"]) mail=list(df["A1.5 Mailing Address"]) while i<N: if pd.isnull(street[i])==True: street[i]=mail[i] i+=1 df["A1.9 Street Address"]=street #print(street) f_out='/home/csis/codes/OpenTabulate/pddir/raw/ON_Libraries.csv' df.to_csv(f_out)
const path = require('path') const exec = require('./lib/shell') const globby = require('globby') let rootDir = path.resolve(__dirname, '..') let examplesDir = path.join(rootDir, 'example-projects') let givenProjName = process.argv[2] let runCmd = process.argv[3] if (!givenProjName) { console.error('Must specify an example-project name, or "all"') process.exit(1) } if (!runCmd) { console.error('Must specify a run command') process.exit(1) } let projNames = givenProjName === 'all' ? globby.sync('*', { cwd: examplesDir, onlyDirectories: true }) : [ givenProjName ] for (let projName of projNames) { let projDir = path.join(examplesDir, projName) console.log('') console.log('PROJECT:', projName) console.log(projDir) switch(projName) { /* each of these projects need to be built with old-fashioned npm-install in their individual directories. to exclude them from yarn workspaces and cache their directories in CI, keep these files in sync: - package.json - .travis.yml */ case 'next': // somehow incompatible with babel-plugin-transform-require-ignore. REVISIT case 'next-scheduler': // same case 'nuxt': // nuxt cli tool uses webpack 4 case 'vue-typescript': // vue cli tool uses webpack 4 case 'vue-vuex': // vue cli tool uses webpack 4 case 'parcel': // doesn't support pnp yet. parcel 2 WILL console.log('Using NPM simulation') console.log() exec.sync( [ 'yarn', 'run', 'example:npm', projName, runCmd ], { cwd: rootDir, exitOnError: true, live: true } ) break case 'angular': console.log('Using PnP simulation') console.log() exec.sync( [ 'yarn', 'run', 'example:pnp', projName, runCmd ], { cwd: rootDir, exitOnError: true, live: true } ) break default: console.log('Normal Yarn execution') console.log() exec.sync( [ 'yarn', 'run', runCmd ], { cwd: projDir, exitOnError: true, live: true } ) break } console.log('') }
""" N.B. this is a v2 of the distortions_corrector started in Dec 2017 -MAR This file contains the Distortions_corrector. An object used to correct distortions using an interactive procedure involving repeated measurements. """ from qcodes.instrument.base import Instrument from qcodes.instrument.parameter import ManualParameter, InstrumentRefParameter from qcodes.utils import validators as vals import pycqed.analysis.fitting_models as fm import pycqed.measurement.kernel_functions_ZI as kf import numpy as np import scipy.linalg import scipy.interpolate as sc_intpl from pycqed.analysis import fitting_models as fit_mods import lmfit import os.path import datetime import json import logging import PyQt5 from qcodes.plots.pyqtgraph import QtPlot class Distortion_corrector(Instrument): def __init__(self, name, nr_plot_points: int=1000, sampling_rate: float=2.4e9, auto_save_plots: bool=True, **kw): ''' Instantiates an object. Args: kernel_object (Instrument): kernel object instrument that handles applying kernels to flux pulses. square_amp (float): Amplitude of the square pulse that is applied. This is needed for correct normalization of the step response. nr_plot_points (int): Number of points of the waveform that are plotted. Can be changed in self.cfg_nr_plot_points(). ''' super().__init__(name, **kw) # Initialize instance variables # Plotting self._y_min = 0 self._y_max = 1 self._stop_idx = -1 self._start_idx = 0 self._t_start_loop = 0 # sets x range for plotting during loop self._t_stop_loop = 30e-6 self.add_parameter('cfg_nr_plot_points', initial_value=nr_plot_points, parameter_class=ManualParameter) self.sampling_rate = sampling_rate self.add_parameter('cfg_sampling_rate', initial_value=sampling_rate, parameter_class=ManualParameter) self.add_parameter('instr_dist_kern', parameter_class=InstrumentRefParameter) # Files self.filename = '' # where traces and plots are saved # self.data_dir = self.kernel_object.kernel_dir() self._iteration = 0 self.auto_save_plots = auto_save_plots # Data self.waveform = [] self.time_pts = [] self.new_step = [] # Fitting self.known_fit_models = ['exponential', 'high-pass', 'spline'] self.fit_model = None self.edge_idx = None self.fit_res = None self.predicted_waveform = None # Default fit model used in the interactive loop self._fit_model_loop = 'exponential' self._loop_helpstring = str( 'h: Print this help.\n' 'q: Quit the loop.\n' 'm: Remeasures the trace. \n' 'p <pars>:\n' ' Print the parameters of the last fit if pars not given.\n' ' If pars are given in the form of JSON string, \n' ' e.g., {"parA": a, "parB": b} the parameters of the last\n' ' fit are updated with those provided.' 's <filename>:\n' ' Save the current plot to "filename.png".\n' 'model <name>:\n' ' Choose the fit model that is used.\n' ' Available models:\n' ' ' + str(self.known_fit_models) + '\n' 'xrange <min> <max>:\n' ' Set the x-range of the plot to (min, max). The points\n' ' outside this range are not plotted. The number of\n' ' points plotted in the given interval is fixed to\n' ' self.cfg_nr_plot_points() (default=1000).\n' 'square_amp <amp> \n' ' Set the square_amp used to normalize measured waveforms.\n' ' If amp = "?" the current square_amp is printed.') # Make window for plots self.vw = QtPlot(window_title=name, figsize=(600, 400)) # def load_kernel_file(self, filename): # ''' # Loads kernel dictionary (containing kernel and metadata) from a JSON # file. This function looks only in the directory # self.kernel_object.kernel_dir() for the file. # Returns a dictionary of the kernel and metadata. # ''' # with open(os.path.join(self.kernel_object.kernel_dir(), # filename)) as infile: # data = json.load(infile) # return data # def save_kernel_file(self, kernel_dict, filename): # ''' # Saves kernel dictionary (containing kernel and metadata) to a JSON # file in the directory self.kernel_object.kernel_dir(). # ''' # directory = self.kernel_object.kernel_dir() # if not os.path.exists(directory): # os.makedirs(directory) # with open(os.path.join(directory, filename), # 'w') as outfile: # json.dump(kernel_dict, outfile, indent=True, sort_keys=True) def save_plot(self, filename): try: directory = self.kernel_object.kernel_dir() if not os.path.exists(directory): os.makedirs(directory) # FIXME: saving disabled as it is currently broken. # self.vw.save(os.path.join(self.kernel_object.kernel_dir(), # filename)) except Exception as e: logging.warning('Could not save plot.') # def open_new_correction(self, kernel_length, AWG_sampling_rate, name): # ''' # Opens a new correction with name 'filename', i.e. initializes the # combined kernel to a Dirac delta and empties kernel_list of the # kernel object associated with self. # Args: # kernel_length (float): # Length of the corrections kernel in s. # AWG_sampling_rate (float): # Sampling rate of the AWG generating the flux pulses in Hz. # name (string): # Name for the new kernel. The files will be named after # this, but with different suffixes (e.g. '_combined.json'). # ''' # self.kernel_length = int(kernel_length * AWG_sampling_rate) # self.filename = name # self._iteration = 0 # # Initialize kernel to Dirac delta # init_ker = np.zeros(self.kernel_length) # init_ker[0] = 1 # self.kernel_combined_dict = { # 'metadata': {}, # dictionary of kernel dictionaries # 'kernel': list(init_ker), # 'iteration': 0 # } # self.save_kernel_file(self.kernel_combined_dict, # '{}_combined.json'.format(self.filename)) # # Configure kernel object # self.kernel_object.add_kernel_to_kernel_list( # '{}_combined.json'.format(self.filename)) # def resume_correction(self, filename): # ''' # Loads combined kernel from the specified file and prepares for adding # new corrections to that kernel. # ''' # # Remove '_combined.json' from filename # self.filename = '_'.join(filename.split('_')[:-1]) # self.kernel_combined_dict = self.load_kernel_file(filename) # self._iteration = self.kernel_combined_dict['iteration'] # self.kernel_length = len(self.kernel_combined_dict['kernel']) # # Configure kernel object # self.kernel_object.kernel_list([]) # self.kernel_object.add_kernel_to_kernel_list(filename) # def empty_kernel_list(self): # self.kernel_object.kernel_list([]) def measure_trace(self, verbose=True): raise NotImplementedError( 'Base class is not attached to physical instruments and does not ' 'implement measurements.') def fit_exp_model(self, start_time_fit, end_time_fit): ''' Fits an exponential of the form A * exp(-t/tau) + offset to the last trace that was measured (self.waveform). The fit model and result are saved in self.fit_model and self.fit_res, respectively. The new predistortion kernel and information about the fit is stored in self.new_kernel_dict. Args: start_time_fit (float): start of the fitted interval end_time_fit (float): end of the fitted interval ''' self._start_idx = np.argmin(np.abs(self.time_pts - start_time_fit)) self._stop_idx = np.argmin(np.abs(self.time_pts - end_time_fit)) # Prepare the fit model self.fit_model = lmfit.Model(fm.gain_corr_ExpDecayFunc) self.fit_model.set_param_hint('gc', value=self.waveform[self._stop_idx], vary=True) self.fit_model.set_param_hint('amp', value=(self.waveform[self._start_idx] - self.waveform[self._stop_idx]), vary=True) self.fit_model.set_param_hint('tau', value=end_time_fit-start_time_fit, vary=True) params = self.fit_model.make_params() # Do the fit fit_res = self.fit_model.fit( data=self.waveform[self._start_idx:self._stop_idx], t=self.time_pts[self._start_idx:self._stop_idx], params=params) self.fitted_waveform = fit_res.eval( t=self.time_pts[self._start_idx:self._stop_idx]) # Analytic form of the predistorted square pulse (input that creates a # square pulse at the output) amp = fit_res.best_values['amp'] tau = fit_res.best_values['tau'] # Check if parameters are physical and print warnings if not if tau < 0: print('Warning: unphysical tau = {} (expect tau > 0).' .format(tau)) # Save the results self.fit_res = fit_res self.predicted_waveform = kf.exponential_decay_correction( self.waveform, tau=tau, amp=amp, sampling_rate=self.scope_sampling_rate) def fit_high_pass(self, start_time_fit, end_time_fit): ''' Fits a model for a simple RC high-pass exp(-t/tau), tau = RC to the last trace that was measured (self.waveform). The fit model and result are saved in self.fit_model and self.fit_res, respectively. The new predistortion kernel and information about the fit is stored in self.new_kernel_dict. Args: start_time_fit (float): start of the fitted interval end_time_fit (float): end of the fitted interval ''' self._start_idx = np.argmin(np.abs(self.time_pts - start_time_fit)) self._stop_idx = np.argmin(np.abs(self.time_pts - end_time_fit)) # Prepare the fit model: exponential, where only tau is varied self.fit_model = lmfit.Model(fm.ExpDecayFunc) self.fit_model.set_param_hint('tau', value=end_time_fit-start_time_fit, vary=True) self.fit_model.set_param_hint('offset', value=0, vary=False) self.fit_model.set_param_hint('amplitude', value=1, vary=True) self.fit_model.set_param_hint('n', value=1, vary=False) params = self.fit_model.make_params() # Do the fit fit_res = self.fit_model.fit( data=self.waveform[self._start_idx:self._stop_idx], t=self.time_pts[self._start_idx:self._stop_idx], params=params) self.fitted_waveform = fit_res.eval( t=self.time_pts[self._start_idx:self._stop_idx]) tau = fit_res.best_values['tau'] # Check if parameters are physical and print warnings if not if tau < 0: print('Warning: unphysical tau = {} (expect tau > 0).' .format(tau)) # Save the fit results and predicted correction self.fit_res = fit_res self.predicted_waveform = kf.bias_tee_correction( self.waveform, tau=tau, sampling_rate=self.scope_sampling_rate) def fit_spline(self, start_time_fit, end_time_fit, s=0.001, weight_tau='inf'): ''' Fit the data using a spline interpolation. The fit model and result are saved in self.fit_model and self.fit_res, respectively. The new predistortion kernel and information about the fit is stored in self.new_kernel_dict. Args: start_time_fit (float): Start of the fitted interval. end_time_fit (float): End of the fitted interval. s (float): Smoothing condition for the spline. See documentation on scipy.interpolate.splrep for more information. weight_tau (float or 'auto'): The points are weighted by a decaying exponential with time constant weight_tau. If this is 'auto' the time constant is chosen to be end_time_fit. If this is 'inf' all weights are set to 1. Smaller weight means the spline can have a larger distance from this point. See documentation on scipy.interpolate.splrep for more information. ''' self._start_idx = np.argmin(np.abs(self.time_pts - start_time_fit)) self._stop_idx = np.argmin(np.abs(self.time_pts - end_time_fit)) if weight_tau == 'auto': weight_tau = end_time_fit if weight_tau == 'inf': splWeights = np.ones(self._stop_idx - self._start_idx) else: splWeights = np.exp( -self.time_pts[self._start_idx:self._stop_idx] / weight_tau) splTuple = sc_intpl.splrep( x=self.time_pts[self._start_idx:self._stop_idx], y=self.waveform[self._start_idx:self._stop_idx], w=splWeights, s=s) splStep = sc_intpl.splev( self.time_pts[self._start_idx:self._stop_idx], splTuple, ext=3) # Pad step response with avg of last 10 points (assuming the user has # chosen the range such that the response has become flat) splStep = np.concatenate((splStep, np.ones(self.kernel_length - len(splStep)) * np.mean(splStep[-10:]))) self.fit_res = None self.fit_model = None self.fitted_waveform = splStep[:self._stop_idx-self._start_idx] # Calculate the kernel and invert it. h = np.empty_like(splStep) h[0] = splStep[0] h[1:] = splStep[1:] - splStep[:-1] filterMatrix = np.zeros((len(h), len(h))) for n in range(len(h)): for m in range(n+1): filterMatrix[n, m] = h[n - m] new_ker = scipy.linalg.inv(filterMatrix)[:, 0] self.new_step = np.convolve(new_ker, np.ones(len(splStep)))[:len(splStep)] self.new_kernel_dict = { 'name': self.filename + '_' + str(self._iteration), 'filter_params': {}, 'fit': { 'model': 'spline', 's': s, 'weight_tau': weight_tau }, 'kernel': list(new_ker) } def plot_trace(self, start_time=-.5e-6, stop_time=10e-6, nr_plot_pts=4000, save_y_range=True): ''' Plot last trace that was measured (self.waveform). Args: start_time (float): Start of the plotted interval. stop_time (float): End of the plotted interval. save_y_range (bool): Keep the current y-range of the plot. ''' start_idx = np.argmin(np.abs(self.time_pts - start_time)) stop_idx = np.argmin(np.abs(self.time_pts - stop_time)) step = max( int(len(self.time_pts[start_idx:stop_idx]) // nr_plot_pts), 1) # Save the y-range of the plot if a window is open. err = False try: x_range, y_range = self.vw.subplots[0].getViewBox().viewRange() except Exception as e: print(e) err = True plot_t_pts = self.time_pts[:len(self.waveform)] # Plot self.vw.clear() self.vw.add(x=plot_t_pts[start_idx:stop_idx:step], y=self.waveform[start_idx:stop_idx:step], symbol='o', symbolSize=5, name='Measured waveform') if self.predicted_waveform is not None: start_idx = np.argmin(np.abs(self.time_pts - start_time)) stop_idx = np.argmin(np.abs(self.time_pts - stop_time)) step = max( int(len(self.time_pts[start_idx:stop_idx]) // nr_plot_pts), 1) self.vw.add(x=self.time_pts[start_idx:stop_idx:step], y=self.predicted_waveform[start_idx:stop_idx:step], name='Predicted waveform') self.vw.add(x=[start_time, stop_time], y=[self.waveform[stop_idx]]*2, color=(150, 150, 150)) self.vw.add(x=[start_time, stop_time], y=[0]*2, color=(150, 150, 150)) self.vw.add(x=[start_time, stop_time], y=[-self.waveform[stop_idx]]*2, color=(150, 150, 150)) # Set the y-range to previous value if save_y_range and not err: self.vw.subplots[0].setYRange(y_range[0], y_range[1]) # Labels need to be set in the end, else they don't show sometimes self.vw.subplots[0].getAxis('bottom').setLabel('t', 's') self.vw.subplots[0].getAxis('left').setLabel('Amplitude', 'V') def plot_fit(self, start_time=0, stop_time=10e-6, save_y_range=True, nr_plot_pts=4000): ''' Plot last trace that was measured (self.waveform) and the latest fit. Args: start_time (float): Start of the plotted interval. stop_time (float): End of the plotted interval. save_y_range (bool): Keep the current y-range of the plot. ''' self.plot_trace(start_time=start_time, stop_time=stop_time, save_y_range=save_y_range, nr_plot_pts=nr_plot_pts) self.vw.add(x=self.time_pts[self._start_idx:self._stop_idx], y=self.fitted_waveform, color = '#2ca02c', name='Fit') # Labels need to be set in the end, else they don't show sometimes self.vw.subplots[0].getAxis('bottom').setLabel('t', 's') self.vw.subplots[0].getAxis('left').setLabel('amp', 'V') def test_new_kernel(self): ''' Save the new kernel self.new_kernel_dict to its own file and add it to the kernel list of the kernel object. ''' self._iteration dist_kern = self.instr_dist_kern.get_instr() if self._fit_model_loop == 'high-pass': tau = self.fit_res.best_values['tau'] model = {'model': 'high-pass', 'params': {'tau':tau}} dist_kern.set('filter_model_{:02}'.format(self._iteration), model) elif self._fit_model_loop == 'exponential': tau = self.fit_res.best_values['tau'] amp = self.fit_res.best_values['amp'] model = {'model': 'exponential', 'params':{'tau':tau, 'amp':amp}} dist_kern.set('filter_model_{:02}'.format(self._iteration), model) else: raise NotImplementedError def apply_new_kernel(self): ''' The correction number (self._iteration) is incremented, such that the kernel file for the latest distortion is not overwritten anymore. ''' self._iteration += 1 # This correction is considered completed. def discard_new_kernel(self): ''' Removes a the last kernel that was added from the distortions. ''' dist_kern = self.instr_dist_kern.get_instr() dist_kern.set('filter_model_{:02}'.format(self._iteration), {}) def interactive_loop(self): ''' Starts interactive loop to iteratively add corrections. ''' # Loop: # 1. Measure trace and plot # 2. Fit and plot # 3. Test correction and plot # -> discard: back to 2. # -> approve: continue with 4. # 4. Apply correction # -> quit? # -> back to 2. print('********\n' 'Interactive room-temperature distortion corrections\n' '********\n' 'At any prompts you may use these commands:\n' + self._loop_helpstring) while True: inp = input('New kernel? ([y]/n) ') if inp in ['y', 'n', '']: break if inp == 'y': print('Resetting all kernels in kernel object') self.instr_dist_kern.get_instr().reset_kernels() self._iteration = 0 else: # Continue working with current kernel; determine how many filters # already exist. self._iteration = self.instr_dist_kern.get_instr().get_first_empty_filter() print('Starting from iteration {}'.format(self._iteration)) # 1. Measure trace and plot self.measure_trace() # Set up initial plot range self._t_start_loop = 0 self._t_stop_loop = self.time_pts[-1] self.plot_trace(self._t_start_loop, self._t_stop_loop, save_y_range=False, nr_plot_pts=self.cfg_nr_plot_points()) # LOOP STARTS HERE # Default fit model used, high-pass is typically the first model self._fit_model_loop = 'high-pass' while True: print('\n-- Correction number {} --'.format(self._iteration)) print('Current fit model: {}'.format(self._fit_model_loop)) # 2. Fit and plot repeat = True while repeat: inp = input('Fit range: ') repeat, quit = self._handle_interactive_input(inp, 'any') if not quit and not repeat: try: inp = inp.split(' ') fit_start = float(inp[0]) fit_stop = float(inp[1]) except Exception as e: print('input format: "t_start t_stop"') repeat = True if quit: # Exit loop break if self._fit_model_loop == 'exponential': self.fit_exp_model(fit_start, fit_stop) elif self._fit_model_loop == 'high-pass': self.fit_high_pass(fit_start, fit_stop) elif self._fit_model_loop == 'spline': self.fit_spline(fit_start, fit_stop) self.plot_fit(self._t_start_loop, self._t_stop_loop, nr_plot_pts=self.cfg_nr_plot_points()) repeat = True while repeat: inp = input('Accept? ([y]/n) ').strip() repeat, quit = self._handle_interactive_input(inp, ['y', 'n', '']) if quit: # Exit loop break elif inp != 'y' and inp != '': # Go back to 2. continue # Fit was accepted -> save plot if self.auto_save_plots: self.save_plot('fit_{}.png'.format(self._iteration)) # 3. Test correction and plot # Save last data, in case new distortion is rejected. previous_t = self.time_pts previous_wave = self.waveform print('Testing new correction.') self.test_new_kernel() self.measure_trace() self.plot_trace(self._t_start_loop, self._t_stop_loop, nr_plot_pts=self.cfg_nr_plot_points()) repeat = True while repeat: inp = input('Accept? ([y]/n) ').strip() repeat, quit = self._handle_interactive_input(inp, ['y', 'n', '']) if quit: # Exit loop break elif inp != 'y' and inp != '': print('Discarding new correction.') self.discard_new_kernel() self.time_pts = previous_t self.waveform = previous_wave self.plot_trace(self._t_start_loop, self._t_stop_loop, nr_plot_pts=self.cfg_nr_plot_points()) # Go back to 2. continue # Correction was accepted -> save plot if self.auto_save_plots: self.save_plot('trace_{}.png'.format(self._iteration)) # 4. Apply correction print('Applying new correction.') self.apply_new_kernel() def _handle_interactive_input(self, inp, valid_inputs): ''' Handles input from user in an interactive loop session. Takes action in special cases. Args: inp (string): Input given by the user. valid_inputs (list of strings or 'any'): List of inputs that are accepted. Any input is accepted if this is 'any'. Returns: repeat (bool): Should the input prompt be repeated. quit (bool): Should the loop be exited. ''' repeat = True quit = False inp_elements = inp.split(' ') if (inp_elements[0].lower() == 'xrange' and len(inp_elements) == 3): self._t_start_loop = float(inp_elements[1]) self._t_stop_loop = float(inp_elements[2]) if len(self.vw.traces) == 4: # 3 grey lines + 1 data trace # Only data plotted self.plot_trace(self._t_start_loop, self._t_stop_loop, nr_plot_pts=self.cfg_nr_plot_points()) else: # Fit also plotted self.plot_fit(self._t_start_loop, self._t_stop_loop, nr_plot_pts=self.cfg_nr_plot_points()) elif inp_elements[0] == 'm': # Remeasures the trace print('Remeasuring trace') self.measure_trace() self.plot_trace(self._t_start_loop, self._t_stop_loop, save_y_range=False, nr_plot_pts=self.cfg_nr_plot_points()) elif inp_elements[0] == 'h': print(self._loop_helpstring) elif inp_elements[0] == 'q': self.print_summary() quit = True repeat = False elif inp_elements[0] == 'p': if len(inp_elements) == 1: try: # for param, val in self.new_kernel_dict['fit'].items(): # print('{} = {}'.format(param, val)) print(self.fit_res.best_values) except KeyError: print('No fit has been done yet!') else: self._update_latest_params(json_string=inp[1:]) elif (inp_elements[0] == 's' and len(inp_elements == 2)): self.save_plot('{}.png'.format(inp_elements[1])) print('Current plot saved.') elif (inp_elements[0] == 'model' and len(inp_elements) == 2): if inp_elements[1] in self.known_fit_models: self._fit_model_loop = str(inp_elements[1]) print('Using fit model "{}".'.format(self._fit_model_loop)) else: print('Model "{}" unknown. Please choose from {}.' .format(inp_elements[1], self.known_fit_models)) elif valid_inputs != 'any': if inp not in valid_inputs: print('Valid inputs: {}'.format(valid_inputs)) else: repeat = False else: # Any input ok repeat = False return repeat, quit def _update_latest_params(self, json_string): """ Uses a JSON formatted string to update the parameters of the latest fit. For each model does the following 1. update the 'fit' dict 4. calculate the new "fit" 5. Plot the new "fit" Currently only supported for the high-pass and exponential model. """ try: par_dict = json.loads(json_string) except Exception as e: print(e) return # 1. update the 'fit' dict self.fit_res.best_values.update(par_dict) self.fitted_waveform = self.fit_res.eval( t=self.time_pts[self._start_idx:self._stop_idx], tau=self.fit_res.best_values['tau']) if self._fit_model_loop == 'high-pass': self.predicted_waveform = kf.bias_tee_correction( self.waveform, tau=self.fit_res.best_values['tau'], sampling_rate=self.scope_sampling_rate) elif self._fit_model_loop == 'exponential': self.predicted_waveform = kf.exponential_decay_correction( self.waveform, tau=self.fit_res.best_values['tau'], amp=self.fit_res.best_values['amp'], sampling_rate=self.scope_sampling_rate) # The fit results still have to be updated self.plot_fit(self._t_start_loop, self._t_stop_loop, nr_plot_pts=self.cfg_nr_plot_points()) def print_summary(self): ''' Prints a summary of all corrections that have been applied. ''' self.instr_dist_kern.get_instr().print_overview() def _set_square_amp(self, square_amp: float): old_square_amp = self.square_amp self.square_amp = square_amp if len(self.waveform) > 0: self.waveform = self.waveform*old_square_amp/self.square_amp self.plot_trace(self._t_start_loop, self._t_stop_loop, nr_plot_pts=self.cfg_nr_plot_points()) print('Updated square amp from {} to {}'.format(old_square_amp, square_amp)) class Dummy_distortion_corrector(Distortion_corrector): def measure_trace(self, verbose=True): sampling_rate = 5e9 # Generate some dummy square wave self.raw_waveform = np.concatenate([np.zeros(100), np.ones(50000), np.zeros(1000)]) noise = np.random.rand(len(self.raw_waveform)) * 0.02 self.raw_waveform += noise self.raw_waveform = np.convolve( self.raw_waveform, self.kernel_object.get_decay_kernel_1()) self.raw_time_pts = np.arange(len(self.raw_waveform))/sampling_rate # Normalize waveform and find rising edge self.waveform = self.detect_edge_and_normalize_wf(self.raw_waveform) self.time_pts = np.arange(len(self.waveform))/sampling_rate class RT_distortion_corrector_AWG8(Distortion_corrector): def __init__(self, name, measure_scope_trace, nr_plot_points: int=1000, **kw): ''' Instantiates an object. Note: Sampling rate of the scope is assumed to be 5 GHz. Sampling rate of the AWG is assumed to be 1 GHz. Args: flux_lutman (Instrument): Lookup table manager for the AWG. oscilloscope (Instrument): Oscilloscope instrument. nr_plot_points (int): Number of points of the waveform that are plotted. Can be changed in self.cfg_nr_plot_points(). ''' super().__init__(name, sampling_rate=2.4e9, nr_plot_points=nr_plot_points, **kw) self.add_parameter('instr_flux_lutman', parameter_class=InstrumentRefParameter) self.measure_scope_trace = measure_scope_trace self.raw_waveform = [] self.raw_time_pts = [] def measure_trace(self, verbose=True): ''' Measure a trace with the oscilloscope. Raw data is saved to self.raw_time_pts and self.raw_waveform. Data clipped to start at the rising edge is saved to self.time_pts and self.waveform. N.B. This measure trace method makes two assumptions 1. The scope is properly configured. 2. The CCLight is running the correct program that triggers the AWG8. ''' # Upload waveform self.instr_flux_lutman.get_instr().load_waveform_onto_AWG_lookuptable( 'square', regenerate_waveforms=True) if verbose: print('Measuring trace...') self.raw_time_pts, self.waveform = self.measure_scope_trace() # Find rising edge if self.edge_idx == None: # this is because finding the edge is usally most robust in the # beginning self.edge_idx = detect_edge(self.waveform, edge_level=0.02) self.time_pts = self.raw_time_pts - self.raw_time_pts[self.edge_idx] self.scope_sampling_rate = 1/(self.time_pts[1]-self.time_pts[0]) class RT_distortion_corrector_QWG(Distortion_corrector): def __init__(self, name, measure_scope_trace, nr_plot_points: int=1000, **kw): ''' Instantiates an object. Note: Sampling rate of the scope is assumed to be 5 GHz. Sampling rate of the AWG is assumed to be 1 GHz. Args: flux_lutman (Instrument): Lookup table manager for the AWG. oscilloscope (Instrument): Oscilloscope instrument. nr_plot_points (int): Number of points of the waveform that are plotted. Can be changed in self.cfg_nr_plot_points(). ''' super().__init__(name, sampling_rate=1e9, nr_plot_points=nr_plot_points, **kw) self.add_parameter('instr_flux_lutman', parameter_class=InstrumentRefParameter) self.measure_scope_trace = measure_scope_trace self.raw_waveform = [] self.raw_time_pts = [] self._edge_for_trace = 0.05 def measure_trace(self, verbose=True): ''' Measure a trace with the oscilloscope. Raw data is saved to self.raw_time_pts and self.raw_waveform. Data clipped to start at the rising edge is saved to self.time_pts and self.waveform. N.B. This measure trace method makes two assumptions 1. The scope is properly configured. 2. The CCLight is running the correct program that triggers the AWG8. ''' # Upload waveform self.instr_flux_lutman.get_instr().load_waveform_onto_AWG_lookuptable( 'square', regenerate_waveforms=True) if verbose: print('Measuring trace...') self.raw_time_pts, self.waveform = self.measure_scope_trace() # Find rising edge if self.edge_idx == None: # this is because finding the edge is usally most robust in the # beginning self.edge_idx = detect_edge(self.waveform, edge_level=self._edge_for_trace) self.time_pts = self.raw_time_pts - self.raw_time_pts[self.edge_idx] self.scope_sampling_rate = 1/(self.time_pts[1]-self.time_pts[0]) # def detect_edge(y, edge_level=0.1): # """ # Trivial edge detection algortihm # """ # edge_idx = -1 # abs_edge_change = (np.max(y) - np.min(y))*edge_level # for i in range(len(y) - 1): # if (y[i+1] - y[i]) > abs_edge_change: # edge_idx = i # print('edge detected at idx:', edge_idx) # break # if edge_idx < 0: # # This is an important error but should not crash the # # process # logging.warning('Failed to find rising edge.') # edge_idx = 0 # return edge_idx def detect_edge(y, edge_level=0.10): """ Detects the first crossing of some threshold and returns the index """ th = y > edge_level*np.max(y) # marks all but the first occurence of True to False th[1:][th[:-1] & th[1:]] = False return np.where(th)[0][0]
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = require("tslib"); var React = tslib_1.__importStar(require("react")); var StyledIconBase_1 = require("../../StyledIconBase"); exports.Play3 = React.forwardRef(function (props, ref) { var attrs = { "fill": "currentColor", }; return (React.createElement(StyledIconBase_1.StyledIconBase, tslib_1.__assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 16 16" }, props, { ref: ref }), React.createElement("path", { d: "M3 2l10 6-10 6z", key: "k0" }))); }); exports.Play3.displayName = 'Play3'; exports.Play3Dimensions = { height: 16, width: 16 };
// Copyright (c) 2020, VHRS and contributors // For license information, please see license.txt frappe.ui.form.on('Employee Induction', { refresh: function(frm) { } });
module.exports = { plugins: { tailwindcss: {} } }
define({ init: function (global, document, notebookRoot) { // hover display element used by the given `notebookRoot` let hoverDiv = document.createElement('div'); hoverDiv.classList.add('rendered_html'); hoverDiv.style.backgroundColor = 'white'; hoverDiv.style.display = 'none'; hoverDiv.style.position = 'fixed'; hoverDiv.style.zIndex = 10; notebookRoot.appendChild(hoverDiv); function createHoverHandler(event, element) { return function () { // find matching line let lines = element.getElementsByClassName("CodeMirror-line"); let foundLine = false; let foundColumn = false; let lineNumber = 0; for (; lineNumber < lines.length; lineNumber++) { let rect = lines[lineNumber].getBoundingClientRect(); if (event.pageX >= rect.left && event.pageX <= rect.right && event.pageY >= rect.top && event.pageY <= rect.bottom) { foundLine = true; break; } } // find matching column let columnNumber = 0; if (foundLine) { let childNodes = lines[lineNumber].children[0].childNodes; for (let childNode of childNodes) { let childRect = null; let childText = ""; if (childNode.nodeType === 1) { // DOM element childRect = childNode.getBoundingClientRect(); childText = childNode.innerText; } else if (childNode.nodeType === 3) { // text let range = document.createRange(); range.selectNode(childNode); childRect = range.getBoundingClientRect(); childText = childNode.textContent; range.detach(); } if (childRect) { if (event.pageX >= childRect.left && event.pageX <= childRect.right) { foundColumn = true; break; } } columnNumber += childText.length; } } if (foundColumn) { global.Lsp.textDocumentHover(element, lineNumber, columnNumber).then(function (result) { hoverDiv.style.top = `${event.pageY}px`; hoverDiv.style.left = `${event.pageX}px`; hoverDiv.style.display = 'inline'; if (result.contents.kind === "markdown") { require(['components/marked/lib/marked'], function (marked) { // this should work for jupyter notebook hoverDiv.innerHTML = marked(result.contents.value); }, function (_err) { // couldn't load `marked`; this will happen in jupyter lab let pre = document.createElement('pre'); pre.innerText = result.contents.value; hoverDiv.innerHTML = ''; hoverDiv.appendChild(pre); }); } else { hoverDiv.innerText = result.contents.value; } }); } }; } function applyHoverTimeoutsToElement(element) { if (!element._hasCodeMirrorEvents) { element._hasCodeMirrorEvents = true; element._hoverTimeoutHandle = 0; element._clearHoverTimeout = function () { if (element._hoverTimeoutHandle) { clearTimeout(element._hoverTimeoutHandle); element._hoverTimeoutHandle = 0; } }; element._setHoverTimeout = function (event) { hoverDiv.style.display = 'none'; element._clearHoverTimeout(); element._hoverTimeoutHandle = setTimeout(createHoverHandler(event, element), 500); }; element.addEventListener('mousemove', (e) => { element._setHoverTimeout(e); }); element.addEventListener('mouseleave', () => { element._clearHoverTimeout(); }); } } function isCodeMirrorEditor(element) { return element.nodeName.toLowerCase() === 'div' && element.classList.contains('CodeMirror'); } // find all extant CodeMirror editors and enable the appropriate events let extantEditors = notebookRoot.getElementsByClassName('CodeMirror'); for (let extantEditor of extantEditors) { applyHoverTimeoutsToElement(extantEditor); } // ensure all subsequently created editors are subscribed let observer = new MutationObserver(function (mutationList) { for (let mutation of mutationList) { switch (mutation.type) { case 'attributes': if (isCodeMirrorEditor(mutation.target)) { applyHoverTimeoutsToElement(mutation.target); } break; case 'childList': for (let added of mutation.addedNodes) { if (isCodeMirrorEditor(added)) { applyHoverTimeoutsToElement(added); } } break; default: break; } } }); observer.observe(notebookRoot, { attributes: true, attributeFilter: [ 'class' ], childList: true, subtree: true }); } });
import moment from "moment"; import { log } from "./services/logger"; import { retrieveActivities } from "./services/mongo-db"; export default async (event, context, callback) => { context.callbackWaitsForEmptyEventLoop = false; try { const currentYear = `${moment.utc().year()}`; const { years = currentYear, clubId } = event.queryStringParameters || {}; if (!years || !clubId) { throw new Error( `Request parameters 'years' or 'clubId' not provided: years=${years} clubId=${clubId}` ); } const parsedYears = years.split(",").map((year) => parseInt(year)); const parsedClubId = parseInt(clubId); log.debug({ parsedYears, parsedClubId }); const clubActivities = await retrieveActivities(parsedYears, parsedClubId); log.debug({ clubActivities }); callback(null, { statusCode: 200, headers: { "Access-Control-Allow-Origin": "*", "Access-Control-Allow-Credentials": true, }, body: JSON.stringify(clubActivities), }); } catch (error) { log.error(error); callback(null, { statusCode: 400, headers: { "Access-Control-Allow-Origin": "*", "Access-Control-Allow-Credentials": true, }, }); } };
class CountDownTimer { constructor(duration, granularity) { this.duration = duration; this.granularity = granularity || 1000; this.tickFtns = []; this.running = false; this.reset = false; this.resetTimeText = ""; } start() { if (this.running) { return; } this.running = true; var start = Date.now(), that = this, diff, obj; (function timer() { diff = that.duration - (((Date.now() - start) / 1000) | 0); if (diff > 0 && that.reset == false) { setTimeout(timer, that.granularity); } else { diff = 0; that.running = false; } obj = CountDownTimer.parse(diff); that.tickFtns.forEach(function(ftn) { ftn.call(this, obj.minutes, obj.seconds); }, that); }()); } resetTimer() { this.reset = true; } onTick(ftn) { if (typeof ftn === 'function') { this.tickFtns.push(ftn); } return this; } expired() { return !this.running; } static parse(seconds) { return { 'minutes': (seconds / 60) | 0, 'seconds': (seconds % 60) | 0 }; } } export {CountDownTimer};
/** * ------------------------------------------------------------------------------------------------- * Functionality specific to this theme * Provides helper functions to enhance the theme experience. * ------------------------------------------------------------------------------------------------- */ ( function( $ ) { var body = $( 'body' ), _window = $( window ), nav, button, menu; nav = $( '.site__navigation' ); button = $( '#nav__toggle' ); menu = $( '.nav__menu' ); /** * Enables menu toggle for small screens. */ ( function() { if ( ! nav || ! button ) { return; } // Hide button if menu is missing or empty. if ( ! menu || ! menu.children().length ) { button.hide(); return; } button.on( 'click.blank', function() { nav.toggleClass( 'toggled-on' ); if ( nav.hasClass( 'toggled-on' ) ) { $( this ).attr( 'aria-expanded', 'true' ); menu.attr( 'aria-expanded', 'true' ); } else { $( this ).attr( 'aria-expanded', 'false' ); menu.attr( 'aria-expanded', 'false' ); } } ); // Better focus for hidden submenu items for accessibility. menu.find( 'a' ).on( 'focus.blank blur.blank', function() { $( this ).parents( '.menu-item, .page_item' ).toggleClass( 'focus' ); } ); } )(); /** * @summary Add or remove ARIA attributes. * Uses jQuery's width() function to determine the size of the window and add * the default ARIA attributes for the menu toggle if it's visible. * @since Blank 1.0 */ function onResizeARIA() { if ( 599 > _window.width() ) { button.attr( 'aria-expanded', 'false' ); menu.attr( 'aria-expanded', 'false' ); button.attr( 'aria-controls', 'nav__menu' ); } else { button.removeAttr( 'aria-expanded' ); menu.removeAttr( 'aria-expanded' ); button.removeAttr( 'aria-controls' ); } } _window .on( 'load.blank', onResizeARIA ) .on( 'resize.blank', function() { onResizeARIA(); } ); /** * Makes "skip to content" link work correctly in IE9 and Chrome for better * accessibility. * * @link http://www.nczonline.net/blog/2013/01/15/fixing-skip-to-content-links/ */ _window.on( 'hashchange.blank', function() { var element = document.getElementById( location.hash.substring( 1 ) ); if ( element ) { if ( ! /^(?:a|select|input|button|textarea)$/i.test( element.tagName ) ) { element.tabIndex = -1; } element.focus(); } } ); } )( jQuery );
/* * * Migration actions * */ import { actionTypes } from "./constants"; import { compareMigrationApi } from "../../api"; const getMigrationDemo = payload => ({ type: actionTypes.GET_MIGRATION_DEMO, payload }); const getMigrationDemoSuccess = payload => ({ type: actionTypes.GET_MIGRATION_DEMO_SUCCESS, payload }); const getMigrationDemoFailure = payload => ({ type: actionTypes.GET_MIGRATION_DEMO_FAILURE, payload }); export const fetchMigrationDemoData = payload => dispatch => { dispatch(getMigrationDemo()); return compareMigrationApi(payload).then( d => dispatch(getMigrationDemoSuccess(d)), e => dispatch(getMigrationDemoFailure(e)) ); }; export default { fetchMigrationDemoData };
class DataProvider { baseURL = 'https://us-central1-js-capstone-backend.cloudfunctions.net/api/games/'; initialGameKey = 'BEfD6yAIbHxFQG2vuO7V'; constructor() { const key = window.localStorage.getItem('GameKey'); if (key) this.initialGameKey = key; } /* This function return a promise */ async getScores() { const socket = new XMLHttpRequest(); socket.open('GET', `${this.baseURL}${this.initialGameKey}/scores`, false); socket.setRequestHeader('Credentials', 'omit'); socket.setRequestHeader('Acept', 'application/json'); socket.setRequestHeader('Content-Type', 'text/plain'); socket.send(); if (socket.status === 200) return JSON.parse(socket.response).result; return []; } getNewGameKey() { const socket = new XMLHttpRequest(); socket.open('POST', `${this.baseURL}`, false); socket.setRequestHeader('Credentials', 'omit'); socket.setRequestHeader('Acept', 'application/json'); socket.setRequestHeader('Content-Type', 'application/json'); socket.send(`{ "name": "Victor's Game" }`); if (socket.status === 201) { const response = JSON.parse(socket.response).result; this.initialGameKey = response.substr(14, 20); window.localStorage.setItem('GameKey', this.initialGameKey); return this.initialGameKey; } return ''; } async putScore(user, score) { const socket = new XMLHttpRequest(); socket.open('POST', `${this.baseURL}${this.initialGameKey}/scores`, false); socket.setRequestHeader('Credentials', 'omit'); socket.setRequestHeader('Acept', 'application/json'); socket.setRequestHeader('Content-Type', 'application/json'); const body = `{"user":"${user}", "score":${Number(score)}}`; socket.send(body); if (socket.status === 201) { const response = JSON.parse(socket.response).result; if (response === 'Leaderboard score created correctly.') return true; return false; } return false; } async putScoreFetch(user, score) { const response = await fetch(`${this.baseURL}${this.initialGameKey}/scores`, { method: 'POST', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify({ user, score: Number(score), }), }); const final = response.json(); return final; } } export default DataProvider;
const jwt = require("jsonwebtoken"); require("dotenv").config(); const signToken = () => { console.info("call to signToken"); const token = jwt.sign( { user_id: "admin", expires: Date.now() + 300000 }, process.env.JWT_SECRET ); return token; }; module.exports = { signToken };
module.exports = { CommandManager: require('./commands'), Logger: require('./logger'), Stats: require('./stats') };
import { J_LOCAL, J_GLOBAL, PI, TORAD } from '../constants.js'; function Joint2D( clockwise, antiClockwise, coordSystem ){ this.coordinateSystem = coordSystem || J_LOCAL; this.min = clockwise !== undefined ? -clockwise * TORAD : -PI; this.max = antiClockwise !== undefined ? antiClockwise * TORAD : PI; } Object.assign( Joint2D.prototype, { isJoint2D: true, clone: function () { var j = new Joint2D(); j.coordinateSystem = this.coordinateSystem; j.max = this.max; j.min = this.min; return j; }, validateAngle: function ( a ) { a = a < 0 ? 0 : a; a = a > 180 ? 180 : a; return a; }, // SET set: function ( joint ) { this.max = joint.max; this.min = joint.min; this.coordinateSystem = joint.coordinateSystem; }, setClockwiseConstraintDegs: function ( angle ) { // 0 to -180 degrees represents clockwise rotation this.min = - (this.validateAngle( angle ) * TORAD); }, setAnticlockwiseConstraintDegs: function ( angle ) { // 0 to 180 degrees represents anti-clockwise rotation this.max = this.validateAngle( angle ) * TORAD; }, setConstraintCoordinateSystem: function ( coordSystem ) { this.coordinateSystem = coordSystem; }, // GET getConstraintCoordinateSystem: function () { return this.coordinateSystem; }, } ); export { Joint2D };
var UI = {}; UI.Element = function () {}; UI.Element.prototype = { setId: function ( id ) { this.dom.id = id; return this; }, setClass: function ( name ) { this.dom.className = name; return this; }, setStyle: function ( style, array ) { for ( var i = 0; i < array.length; i ++ ) { this.dom.style[ style ] = array[ i ]; } }, setDisabled: function ( value ) { this.dom.disabled = value; return this; }, setTextContent: function ( value ) { this.dom.textContent = value; return this; } } // properties var properties = [ 'position', 'left', 'top', 'right', 'bottom', 'width', 'height', 'border', 'borderLeft', 'borderTop', 'borderRight', 'borderBottom', 'borderColor', 'display', 'overflow', 'margin', 'marginLeft', 'marginTop', 'marginRight', 'marginBottom', 'padding', 'paddingLeft', 'paddingTop', 'paddingRight', 'paddingBottom', 'color', 'backgroundColor', 'opacity', 'fontSize', 'fontWeight', 'textTransform', 'cursor' ]; properties.forEach( function ( property ) { var method = 'set' + property.substr( 0, 1 ).toUpperCase() + property.substr( 1, property.length ); UI.Element.prototype[ method ] = function () { this.setStyle( property, arguments ); return this; }; } ); // events var events = [ 'KeyUp', 'KeyDown', 'MouseOver', 'MouseOut', 'Click', 'Change' ]; events.forEach( function ( event ) { var method = 'on' + event; UI.Element.prototype[ method ] = function ( callback ) { this.dom.addEventListener( event.toLowerCase(), callback, false ); return this; }; } ); // Panel UI.Panel = function () { UI.Element.call( this ); var dom = document.createElement( 'div' ); dom.className = 'Panel'; dom.style.userSelect = 'none'; dom.style.WebkitUserSelect = 'none'; dom.style.MozUserSelect = 'none'; this.dom = dom; return this; }; UI.Panel.prototype = Object.create( UI.Element.prototype ); UI.Panel.prototype.add = function () { for ( var i = 0; i < arguments.length; i ++ ) { this.dom.appendChild( arguments[ i ].dom ); } return this; }; UI.Panel.prototype.remove = function () { for ( var i = 0; i < arguments.length; i ++ ) { this.dom.removeChild( arguments[ i ].dom ); } return this; }; // Text UI.Text = function ( text ) { UI.Element.call( this ); var dom = document.createElement( 'span' ); dom.className = 'Text'; dom.style.cursor = 'default'; dom.style.display = 'inline-block'; dom.style.verticalAlign = 'middle'; this.dom = dom; this.setValue( text ); return this; }; UI.Text.prototype = Object.create( UI.Element.prototype ); UI.Text.prototype.setValue = function ( value ) { if ( value !== undefined ) { this.dom.textContent = value; } return this; }; // Input UI.Input = function () { UI.Element.call( this ); var scope = this; var dom = document.createElement( 'input' ); dom.className = 'Input'; dom.style.padding = '2px'; dom.style.border = '1px solid #ccc'; dom.addEventListener( 'keydown', function ( event ) { event.stopPropagation(); }, false ); this.dom = dom; return this; }; UI.Input.prototype = Object.create( UI.Element.prototype ); UI.Input.prototype.getValue = function () { return this.dom.value; }; UI.Input.prototype.setValue = function ( value ) { this.dom.value = value; return this; }; // TextArea UI.TextArea = function () { UI.Element.call( this ); var scope = this; var dom = document.createElement( 'textarea' ); dom.className = 'TextArea'; dom.style.padding = '2px'; dom.style.border = '1px solid #ccc'; dom.addEventListener( 'keydown', function ( event ) { event.stopPropagation(); }, false ); this.dom = dom; return this; }; UI.TextArea.prototype = Object.create( UI.Element.prototype ); UI.TextArea.prototype.getValue = function () { return this.dom.value; }; UI.TextArea.prototype.setValue = function ( value ) { this.dom.value = value; return this; }; // Select UI.Select = function () { UI.Element.call( this ); var scope = this; var dom = document.createElement( 'select' ); dom.className = 'Select'; dom.style.width = '64px'; dom.style.height = '16px'; dom.style.border = '0px'; dom.style.padding = '0px'; this.dom = dom; return this; }; UI.Select.prototype = Object.create( UI.Element.prototype ); UI.Select.prototype.setMultiple = function ( boolean ) { this.dom.multiple = boolean; return this; }; UI.Select.prototype.setOptions = function ( options ) { var selected = this.dom.value; while ( this.dom.children.length > 0 ) { this.dom.removeChild( this.dom.firstChild ); } for ( var key in options ) { var option = document.createElement( 'option' ); option.value = key; option.innerHTML = options[ key ]; this.dom.appendChild( option ); } this.dom.value = selected; return this; }; UI.Select.prototype.getValue = function () { return this.dom.value; }; UI.Select.prototype.setValue = function ( value ) { this.dom.value = value; return this; }; // FancySelect UI.FancySelect = function () { UI.Element.call( this ); var scope = this; var dom = document.createElement( 'div' ); dom.className = 'FancySelect'; dom.style.background = '#fff'; dom.style.border = '1px solid #ccc'; dom.style.padding = '0'; dom.style.cursor = 'default'; dom.style.overflow = 'auto'; this.dom = dom; this.options = []; this.selectedValue = null; return this; }; UI.FancySelect.prototype = Object.create( UI.Element.prototype ); UI.FancySelect.prototype.setOptions = function ( options ) { var scope = this; var changeEvent = document.createEvent( 'HTMLEvents' ); changeEvent.initEvent( 'change', true, true ); while ( scope.dom.children.length > 0 ) { scope.dom.removeChild( scope.dom.firstChild ); } scope.options = []; for ( var key in options ) { var option = document.createElement( 'div' ); option.style.padding = '4px'; option.style.whiteSpace = 'nowrap'; option.innerHTML = options[ key ]; option.value = key; scope.dom.appendChild( option ); scope.options.push( option ); option.addEventListener( 'click', function ( event ) { scope.setValue( this.value ); scope.dom.dispatchEvent( changeEvent ); }, false ); } return scope; }; UI.FancySelect.prototype.getValue = function () { return this.selectedValue; }; UI.FancySelect.prototype.setValue = function ( value ) { if ( typeof value === 'number' ) value = value.toString(); for ( var i = 0; i < this.options.length; i ++ ) { var element = this.options[ i ]; if ( element.value === value ) { element.style.backgroundColor = '#f0f0f0'; // scroll into view var y = i * element.clientHeight; var scrollTop = this.dom.scrollTop; var domHeight = this.dom.clientHeight; if ( y < scrollTop || y > scrollTop + domHeight ) { this.dom.scrollTop = y; } } else { element.style.backgroundColor = ''; } } this.selectedValue = value; return this; }; // Checkbox UI.Checkbox = function ( boolean ) { UI.Element.call( this ); var scope = this; var dom = document.createElement( 'input' ); dom.className = 'Checkbox'; dom.type = 'checkbox'; this.dom = dom; this.setValue( boolean ); return this; }; UI.Checkbox.prototype = Object.create( UI.Element.prototype ); UI.Checkbox.prototype.getValue = function () { return this.dom.checked; }; UI.Checkbox.prototype.setValue = function ( value ) { if ( value !== undefined ) { this.dom.checked = value; } return this; }; // Color UI.Color = function () { UI.Element.call( this ); var scope = this; var dom = document.createElement( 'input' ); dom.className = 'Color'; dom.style.width = '64px'; dom.style.height = '16px'; dom.style.border = '0px'; dom.style.padding = '0px'; dom.style.backgroundColor = 'transparent'; try { dom.type = 'color'; } catch ( exception ) {} this.dom = dom; return this; }; UI.Color.prototype = Object.create( UI.Element.prototype ); UI.Color.prototype.getValue = function () { return this.dom.value; }; UI.Color.prototype.getHexValue = function () { return parseInt( this.dom.value.substr( 1 ), 16 ); }; UI.Color.prototype.setValue = function ( value ) { this.dom.value = value; return this; }; UI.Color.prototype.setHexValue = function ( hex ) { this.dom.value = "#" + ( '000000' + hex.toString( 16 ) ).slice( -6 ); return this; }; // Number UI.Number = function ( number ) { UI.Element.call( this ); var scope = this; var dom = document.createElement( 'input' ); dom.className = 'Number'; dom.style.color = '#0080f0'; dom.style.fontSize = '12px'; dom.style.backgroundColor = 'transparent'; dom.style.border = '1px solid transparent'; dom.style.padding = '2px'; dom.style.cursor = 'col-resize'; dom.value = '0.00'; dom.addEventListener( 'keydown', function ( event ) { event.stopPropagation(); if ( event.keyCode === 13 ) dom.blur(); }, false ); this.min = - Infinity; this.max = Infinity; this.precision = 2; this.step = 1; this.dom = dom; this.setValue( number ); var changeEvent = document.createEvent( 'HTMLEvents' ); changeEvent.initEvent( 'change', true, true ); var distance = 0; var onMouseDownValue = 0; var onMouseDown = function ( event ) { event.preventDefault(); distance = 0; onMouseDownValue = parseFloat( dom.value ); document.addEventListener( 'mousemove', onMouseMove, false ); document.addEventListener( 'mouseup', onMouseUp, false ); }; var onMouseMove = function ( event ) { var currentValue = dom.value; var movementX = event.movementX || event.webkitMovementX || event.mozMovementX || 0; var movementY = event.movementY || event.webkitMovementY || event.mozMovementY || 0; distance += movementX - movementY; var number = onMouseDownValue + ( distance / ( event.shiftKey ? 5 : 50 ) ) * scope.step; dom.value = Math.min( scope.max, Math.max( scope.min, number ) ).toFixed( scope.precision ); if ( currentValue !== dom.value ) dom.dispatchEvent( changeEvent ); }; var onMouseUp = function ( event ) { document.removeEventListener( 'mousemove', onMouseMove, false ); document.removeEventListener( 'mouseup', onMouseUp, false ); if ( Math.abs( distance ) < 2 ) { dom.focus(); dom.select(); } }; var onChange = function ( event ) { var number = parseFloat( dom.value ); if ( isNaN( number ) === false ) { dom.value = number; } }; var onFocus = function ( event ) { dom.style.backgroundColor = ''; dom.style.borderColor = '#ccc'; dom.style.cursor = ''; }; var onBlur = function ( event ) { dom.style.backgroundColor = 'transparent'; dom.style.borderColor = 'transparent'; dom.style.cursor = 'col-resize'; }; dom.addEventListener( 'mousedown', onMouseDown, false ); dom.addEventListener( 'change', onChange, false ); dom.addEventListener( 'focus', onFocus, false ); dom.addEventListener( 'blur', onBlur, false ); return this; }; UI.Number.prototype = Object.create( UI.Element.prototype ); UI.Number.prototype.getValue = function () { return parseFloat( this.dom.value ); }; UI.Number.prototype.setValue = function ( value ) { if ( value !== undefined ) { this.dom.value = value.toFixed( this.precision ); } return this; }; UI.Number.prototype.setRange = function ( min, max ) { this.min = min; this.max = max; return this; }; UI.Number.prototype.setPrecision = function ( precision ) { this.precision = precision; return this; }; // Integer UI.Integer = function ( number ) { UI.Element.call( this ); var scope = this; var dom = document.createElement( 'input' ); dom.className = 'Number'; dom.style.color = '#0080f0'; dom.style.fontSize = '12px'; dom.style.backgroundColor = 'transparent'; dom.style.border = '1px solid transparent'; dom.style.padding = '2px'; dom.style.cursor = 'col-resize'; dom.value = '0.00'; dom.addEventListener( 'keydown', function ( event ) { event.stopPropagation(); }, false ); this.min = - Infinity; this.max = Infinity; this.step = 1; this.dom = dom; this.setValue( number ); var changeEvent = document.createEvent( 'HTMLEvents' ); changeEvent.initEvent( 'change', true, true ); var distance = 0; var onMouseDownValue = 0; var onMouseDown = function ( event ) { event.preventDefault(); distance = 0; onMouseDownValue = parseFloat( dom.value ); document.addEventListener( 'mousemove', onMouseMove, false ); document.addEventListener( 'mouseup', onMouseUp, false ); }; var onMouseMove = function ( event ) { var currentValue = dom.value; var movementX = event.movementX || event.webkitMovementX || event.mozMovementX || 0; var movementY = event.movementY || event.webkitMovementY || event.mozMovementY || 0; distance += movementX - movementY; var number = onMouseDownValue + ( distance / ( event.shiftKey ? 5 : 50 ) ) * scope.step; dom.value = Math.min( scope.max, Math.max( scope.min, number ) ) | 0; if ( currentValue !== dom.value ) dom.dispatchEvent( changeEvent ); }; var onMouseUp = function ( event ) { document.removeEventListener( 'mousemove', onMouseMove, false ); document.removeEventListener( 'mouseup', onMouseUp, false ); if ( Math.abs( distance ) < 2 ) { dom.focus(); dom.select(); } }; var onChange = function ( event ) { var number = parseInt( dom.value ); if ( isNaN( number ) === false ) { dom.value = number; } }; var onFocus = function ( event ) { dom.style.backgroundColor = ''; dom.style.borderColor = '#ccc'; dom.style.cursor = ''; }; var onBlur = function ( event ) { dom.style.backgroundColor = 'transparent'; dom.style.borderColor = 'transparent'; dom.style.cursor = 'col-resize'; }; dom.addEventListener( 'mousedown', onMouseDown, false ); dom.addEventListener( 'change', onChange, false ); dom.addEventListener( 'focus', onFocus, false ); dom.addEventListener( 'blur', onBlur, false ); return this; }; UI.Integer.prototype = Object.create( UI.Element.prototype ); UI.Integer.prototype.getValue = function () { return parseInt( this.dom.value ); }; UI.Integer.prototype.setValue = function ( value ) { if ( value !== undefined ) { this.dom.value = value | 0; } return this; }; UI.Integer.prototype.setRange = function ( min, max ) { this.min = min; this.max = max; return this; }; // Break UI.Break = function () { UI.Element.call( this ); var dom = document.createElement( 'br' ); dom.className = 'Break'; this.dom = dom; return this; }; UI.Break.prototype = Object.create( UI.Element.prototype ); // HorizontalRule UI.HorizontalRule = function () { UI.Element.call( this ); var dom = document.createElement( 'hr' ); dom.className = 'HorizontalRule'; this.dom = dom; return this; }; UI.HorizontalRule.prototype = Object.create( UI.Element.prototype ); // Button UI.Button = function ( value ) { UI.Element.call( this ); var scope = this; var dom = document.createElement( 'button' ); dom.className = 'Button'; this.dom = dom; this.dom.textContent = value; return this; }; UI.Button.prototype = Object.create( UI.Element.prototype ); UI.Button.prototype.setLabel = function ( value ) { this.dom.textContent = value; return this; };
import React from 'react' const StickyContainer = ({ children, margin }) => ( <div css={{ position: 'sticky', top: 50, }} style={{ margin: margin || '4.5em 0 4em', }} > {children} </div> ) export default StickyContainer
const { series, watch } = require('gulp'); const config = require('../gulp.config.js')(); const createSvgSprite = require('./create-svg-sprite'); const liveReload = require('./live-reload'); const watchSvg = () => watch( config.paths.sprite.src, series(createSvgSprite, liveReload), ); module.exports = watchSvg;
const { run } = require("../src/serverreplay"); const { createHar, createEntry, createRequest, createResponse, } = require("../src/har"); const { request } = require("./support/http"); const { AbortController } = require("abort-controller"); describe("serverreplay", () => { it("returns a correct HAR when making matching simple request", async () => { const harInput = createHar({ entries: [ createEntry({ request: createRequest({ method: "GET", url: "http://localhost/", httpVersion: "1.1", headers: [ { name: "Host", value: "localhost" }, { name: "Connection", value: "close" }, ], }), response: createResponse({ status: 200, statusText: "OK", }), }), ], }); const abortController = new AbortController(); let result; const promise = run({ port: 80, harInput, abortController, }).then((_result) => { result = _result; }); await request(); abortController.abort(); await promise; expect(result).toMatchInlineSnapshot( { log: { entries: [{ startedDateTime: expect.any(String) }] }, }, ` Object { "log": Object { "creator": Object { "name": "harhar", "version": "", }, "entries": Array [ Object { "cache": Object {}, "request": Object { "bodySize": -1, "cookies": Array [], "headers": Array [ Object { "name": "Host", "value": "localhost", }, Object { "name": "Connection", "value": "close", }, ], "headersSize": -1, "httpVersion": "1.1", "method": "GET", "postData": undefined, "queryString": Array [], "url": "http://localhost/", }, "response": Object { "bodySize": -1, "content": Object { "mimeType": "x-unknown", "size": 0, }, "cookies": Array [], "headers": Array [], "headersSize": -1, "httpVersion": "HTTP/1.1", "redirectURL": "", "status": 200, "statusText": "OK", }, "startedDateTime": Any<String>, "time": -1, "timings": Object { "receive": -1, "send": -1, "wait": -1, }, }, ], "version": "1.2", }, } ` ); }); });
#!/usr/bin/env python3 import argparse import os import queue import subprocess import sounddevice as sd import vosk import sys from playsound import playsound q = queue.Queue() def int_or_str(text): """Helper function for argument parsing.""" try: return int(text) except ValueError: return text def callback(indata, frames, time, status): """This is called (from a separate thread) for each audio block.""" # if status: # print(status, file=sys.stderr) q.put(bytes(indata)) parser = argparse.ArgumentParser(add_help=False) parser.add_argument( '-l', '--list-devices', action='store_true', help='show list of audio devices and exit') args, remaining = parser.parse_known_args() if args.list_devices: print(sd.query_devices()) parser.exit(0) parser = argparse.ArgumentParser( description=__doc__, formatter_class=argparse.RawDescriptionHelpFormatter, parents=[parser]) parser.add_argument( '-f', '--filename', type=str, metavar='FILENAME', help='audio file to store recording to') parser.add_argument( '-m', '--model', type=str, metavar='MODEL_PATH', help='Path to the model') parser.add_argument( '-d', '--device', type=int_or_str, help='input device (numeric ID or substring)') parser.add_argument( '-r', '--samplerate', type=int, help='sampling rate') args = parser.parse_args(remaining) try: if args.model is None: args.model = "model" if not os.path.exists(args.model): print ("Please download a model for your language from https://alphacephei.com/vosk/models") print ("and unpack as 'model' in the current folder.") parser.exit(0) if args.samplerate is None: device_info = sd.query_devices(args.device, 'input') # soundfile expects an int, sounddevice provides a float: args.samplerate = int(device_info['default_samplerate']) model = vosk.Model(args.model) if args.filename: dump_fn = open(args.filename, "wb") else: dump_fn = None with sd.RawInputStream(samplerate=args.samplerate, blocksize = 8000, device=args.device, dtype='int16', channels=1, callback=callback): rec = vosk.KaldiRecognizer(model, args.samplerate) # play chime here playsound('../chime.mp3') while True: data = q.get() if rec.AcceptWaveform(data): string = rec.Result() if "\"\"" not in string: with open("../test.txt", "w") as f: f.write(string) subprocess.call("python demo.py --access_key m0+HbUHSSsu05nwctd7Op66ahB3yq8qx1uFOvZxkGsCtD4M8uw0njQ== --keywords bumblebee alexa computer ", shell=True) quit() if dump_fn is not None: dump_fn.write(data) except KeyboardInterrupt: print('\nDone') parser.exit(0) except Exception as e: parser.exit(type(e).__name__ + ': ' + str(e))
import { REGISTER_SUCCESS, USER_LOADED, AUTH_ERROR, LOGIN_SUCCESS, LOGOUT, ACCOUNT_DELETED, } from '../actions/types' const initialState = { token: localStorage.getItem('token'), isAuth: null, loading: true, user: null, } function authReducer(state = initialState, action) { const { type, payload } = action switch (type) { case USER_LOADED: return { ...state, isAuth: true, loading: false, user: payload, } case REGISTER_SUCCESS: case LOGIN_SUCCESS: localStorage.setItem('token', payload.token) return { ...state, ...payload, isAuth: true, loading: false, } case AUTH_ERROR: case LOGOUT: case ACCOUNT_DELETED: localStorage.removeItem('token') return { ...state, token: null, isAuth: false, loading: false, user: null, } default: return state } } export default authReducer
import{r as e,e as s,h as p,H as t}from"./p-4d70e85a.js";const i=class{constructor(p){e(this,p),this.btnLeftClick=s(this,"btnLeftClick",7),this.btnRightClick=s(this,"btnRightClick",7),this.onBtnLeftClick=()=>{this.btnLeftClick.emit()},this.onBtnRightClick=()=>{this.btnRightClick.emit()}}render(){const{header:e,btnLeft:s,btnRight:i}=this;return p(t,{"from-stencil":!0},p("div",{class:"content"},p("div",{class:"content__top"},p("div",{class:"content__left"},p("slot",{name:"imagem"})),p("div",{class:"content__right"},p("h4",{class:"header"},e),p("slot",{name:"content"}))),p("div",{class:"content__bottom"},s&&p("button",{class:"button button--left",onClick:this.onBtnLeftClick}," ",s," "),i&&p("button",{class:"button button--right",onClick:this.onBtnRightClick}," ",i," "))))}};i.style=':root{--med-font-family-brand:"fsemeric";--med-font-family-base:"fsemeric";--med-font-size-nano:10px;--med-font-size-xxxs:12px;--med-font-size-xxs:14px;--med-font-size-xs:16px;--med-font-size-sm:20px;--med-font-size-md:24px;--med-font-size-lg:32px;--med-font-size-xl:40px;--med-font-size-xxl:48px;--med-font-size-xxxl:64px;--med-font-size-huge:96px;--med-font-weight-thin:250;--med-font-weight-light:300;--med-font-weight-regular:400;--med-font-weight-medium:500;--med-font-weight-semibold:600;--med-font-weight-bold:700;--med-font-weight-extrabold:800;--med-font-weight-heavy:900;--med-letter-spacing-ultracompressed:-0.04;--med-letter-spacing-compressed:-0.02;--med-letter-spacing-default:0;--med-letter-spacing-medium:0.02;--med-letter-spacing-expanded:0.05;--med-letter-spacing-distant:0.1;--med-letter-spacing-far:0.2;--med-line-height-compressed:100%;--med-line-height-default:24px;--med-line-height-double:200%}:root{--med-spacing-inset-nano:4px;--med-spacing-inset-xs:8px;--med-spacing-inset-sm:16px;--med-spacing-inset-base:24px;--med-spacing-inset-md:32px;--med-spacing-inset-lg:40px;--med-spacing-inset-xl:48px;--med-spacing-inset-xxl:64px;--med-spacing-squish-nano:4px 8px;--med-spacing-squish-xs:8px 16px;--med-spacing-squish-sm:8px 24px;--med-spacing-squish-base:8px 32px;--med-spacing-squish-md:16px 24px;--med-spacing-squish-lg:16px 32px;--med-spacing-squish-xl:24px 32px;--med-spacing-squish-xxl:32px 40px;--med-spacing-stretch-nano:8px 4px;--med-spacing-stretch-xs:16px 8px;--med-spacing-stretch-sm:24px 8px;--med-spacing-stretch-base:32px 8px;--med-spacing-stretch-md:24px 16px;--med-spacing-stretch-lg:32px 16px;--med-spacing-stretch-xl:32px 24px;--med-spacing-stretch-xxl:40px 32px;--med-spacing-inline-quark:2px;--med-spacing-inline-nano:4px;--med-spacing-inline-xxxs:8px;--med-spacing-inline-base:16px;--med-spacing-inline-xxs:24px;--med-spacing-inline-xs:32px;--med-spacing-inline-sm:40px;--med-spacing-inline-md:48px;--med-spacing-inline-lg:56px;--med-spacing-inline-xl:64px;--med-spacing-inline-xxl:72px;--med-spacing-inline-xxxl:80px;--med-spacing-inline-huge:120px;--med-spacing-inline-ultra:160px;--med-spacing-stack-quark:2px;--med-spacing-stack-nano:4px;--med-spacing-stack-xxxs:8px;--med-spacing-stack-base:16px;--med-spacing-stack-xxs:24px;--med-spacing-stack-xs:32px;--med-spacing-stack-sm:40px;--med-spacing-stack-md:48px;--med-spacing-stack-lg:56px;--med-spacing-stack-xl:64px;--med-spacing-stack-xxl:72px;--med-spacing-stack-xxxl:80px;--med-spacing-stack-huge:120px;--med-spacing-stack-ultra:160px}:root{--med-border-radius-none:0;--med-border-radius-quark:2px;--med-border-radius-nano:4px;--med-border-radius-sm:8px;--med-border-radius-md:16px;--med-border-radius-lg:24px;--med-border-radius-pill:31.25em;--med-border-radius-full:50%;--med-border-radius-speech-left-down:8px 8px 8px 0;--med-border-radius-speech-right-down:8px 8px 0 8px;--med-border-radius-speech-right-up:8px 0 8px 0px;--med-border-radius-speech-left-up:0 8px 8px 0px;--med-border-radius-table-down-sm:0 0 8px 8px;--med-border-radius-table-up-sm:8px 8px 0 0;--med-border-radius-table-down-md:16px 16px 0 0;--med-border-radius-table-up-md:0 0 16px 16px;--med-border-width-none:0;--med-border-width-quark:0.25px;--med-border-width-nano:0.5px;--med-border-width-hairline:1px;--med-border-width-thin:2px;--med-border-width-thick:4px;--med-border-width-bold:8px;--med-border-width-heavy:16px;--med-opacity-level-semiopaque:0.8;--med-opacity-level-intense:0.64;--med-opacity-level-half:0.5;--med-opacity-level-medium:0.32;--med-opacity-level-light:0.16;--med-opacity-level-semitransparent:0.08;--med-shadow-level-0:none;--med-shadow-level-1:0 0 2px rgba(0, 0, 0, 0.12), 0 2px 2px rgba(0, 0, 0, 0.14), 0 1px 3px rgba(0, 0, 0, 0.2);--med-shadow-level-2:0 2px 4px rgba(0, 0, 0, 0.14), 0 3px 4px rgba(0, 0, 0, 0.12), 0 1px 5px rgba(0, 0, 0, 0.2);--med-shadow-level-3:0 3px 3px rgba(0, 0, 0, 0.14), 0 3px 4px rgba(0, 0, 0, 0.12), 0 1px 8px rgba(0, 0, 0, 0.2);--med-shadow-level-4:0 0 2px rgba(0, 0, 0, 0.14), 0 4px 5px rgba(0, 0, 0, 0.12), 0 1px 10px rgba(0, 0, 0, 0.2);--med-shadow-level-5:0 6px 10px rgba(0, 0, 0, 0.14), 0 1px 18px rgba(0, 0, 0, 0.12), 0 3px 5px rgba(0, 0, 0, 0.2);--med-shadow-level-6:0 8px 10px rgba(0, 0, 0, 0.14), 0 3px 14px rgba(0, 0, 0, 0.12), 0 4px 5px rgba(0, 0, 0, 0.2);--med-shadow-level-7:0 9px 12px rgba(0, 0, 0, 0.14), 0 3px 16px rgba(0, 0, 0, 0.12), 0 5px 6px rgba(0, 0, 0, 0.2);--med-shadow-level-8:0 12px 17px rgba(0, 0, 0, 0.14), 0 5px 22px rgba(0, 0, 0, 0.12), 0 7px 8px rgba(0, 0, 0, 0.2);--med-shadow-level-9:0 16px 24px rgba(0, 0, 0, 0.14), 0 6px 30px rgba(0, 0, 0, 0.12), 0 8px 10px rgba(0, 0, 0, 0.2);--med-shadow-level-10:0 24px 38px rgba(0, 0, 0, 0.14), 0 9px 46px rgba(0, 0, 0, 0.12), 0 11px 15px rgba(0, 0, 0, 0.2)}:host{--background:hsl(var(--med-color-neutral-2));--color:hsl(var(--med-color-neutral-10))}:host{padding:var(--med-spacing-stretch-md);display:block;background:var(--background)}:host .content__top{display:-ms-flexbox;display:flex}:host .content__left{margin-right:var(--med-spacing-inline-base)}:host .content__bottom{display:-ms-flexbox;display:flex;-ms-flex-pack:end;justify-content:flex-end}:host .header{font-size:var(--med-font-size-xs);font-weight:var(--med-font-weight-semibold);line-height:var(--med-line-height-default);color:var(--color);margin:0;margin-bottom:var(--med-spacing-inline-nano);text-align:left}:host .button{font-size:var(--med-font-size-xxs);line-height:24px;color:hsl(var(--med-color-neutral-10));background:transparent;border:0;cursor:pointer;text-transform:uppercase;font-weight:var(--med-font-weight-regular)}:host .button--right{font-weight:var(--med-font-weight-semibold);margin-left:var(--med-spacing-inline-xxs)}::slotted([slot=content]){font-size:var(--med-font-size-xxs);font-weight:var(--med-font-weight-regular);line-height:var(--med-line-height-compressed);color:hsl(var(--med-color-neutral-10));margin:0;padding:0;padding-bottom:var(--med-spacing-inline-xxs);text-align:left}::slotted([slot=imagem]){min-width:56px;max-width:56px}';export{i as med_banner}
/* eslint no-unused-expressions:0 */ import React, { Component } from 'react/addons'; import Counter from '../../src/components/Counter'; import jsdom from 'mocha-jsdom'; const { TestUtils } = React.addons; describe('Components', () => { jsdom(); describe('Counter', () => { // Mock minimal Home interface class Home extends Component { constructor(props) { super(props); this.state = { counter: 0 }; } increment() { this.setState({ counter: this.state.counter += 1 }); } render() { return ( <div> <Counter count={this.state.counter} onIncrement={::this.increment} /> </div> ); } } it('should receive and increment counter', () => { const tree = TestUtils.renderIntoDocument(<Home />); const counter = TestUtils.findRenderedComponentWithType(tree, Counter); TestUtils.Simulate.click(TestUtils.findRenderedDOMComponentWithTag(counter, 'a')); expect(counter.props.count).to.be.equal(1); expect(TestUtils.findRenderedDOMComponentWithTag(counter, 'h1').getDOMNode().textContent) .to.contain('1'); }); describe('increment', () => { it('should get called when a click on button happens', () => { const spy = sinon.spy(); const counter = TestUtils.renderIntoDocument(<Counter onIncrement={spy} count={0} />); const button = TestUtils.findRenderedDOMComponentWithTag(counter, 'a'); TestUtils.Simulate.click(button); expect(spy).to.have.been.calledOnce; }); }); }); });
export function getTextWidth(text, font = '12px Open Sans') { const canvas = getTextWidth.canvas || (getTextWidth.canvas = document.createElement('canvas')); const context = canvas.getContext('2d'); if (context) { context.font = font; const metrics = context.measureText(text); return metrics.width; } return 0; }
export * from './MailerServerModule'; export { default } from './MailerServerModule';
$(document).ready(function() { // Click nav $('.home2_nav').click(function() { var uri = $(this).data('uri'); location.href = baseUrl + uri; }); });
import Fetch from '../internal/fetch'; export default { GetMy, Yes, Maybe, No }; export function GetMy( event ) { return Fetch.Get(API_ENDPOINT+'/vx/theme/list/vote/getmy/'+event, true); } export function Yes( theme ) { return Fetch.Get(API_ENDPOINT+'/vx/theme/list/vote/yes/'+theme, true); } export function Maybe( theme ) { return Fetch.Get(API_ENDPOINT+'/vx/theme/list/vote/maybe/'+theme, true); } export function No( theme ) { return Fetch.Get(API_ENDPOINT+'/vx/theme/list/vote/no/'+theme, true); }
(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/API/upload-file/upload-file"],{ /***/ 476: /*!*******************************************************************************************************************!*\ !*** C:/Users/kira3/Documents/GitHub/TemporaryParking/main.js?{"page":"pages%2FAPI%2Fupload-file%2Fupload-file"} ***! \*******************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; /* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5); var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3)); var _uploadFile = _interopRequireDefault(__webpack_require__(/*! ./pages/API/upload-file/upload-file.vue */ 477));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__; createPage(_uploadFile.default); /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"])) /***/ }), /***/ 477: /*!**********************************************************************************************!*\ !*** C:/Users/kira3/Documents/GitHub/TemporaryParking/pages/API/upload-file/upload-file.vue ***! \**********************************************************************************************/ /*! no static exports found */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony import */ var _upload_file_vue_vue_type_template_id_dcf329fa___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./upload-file.vue?vue&type=template&id=dcf329fa& */ 478); /* harmony import */ var _upload_file_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./upload-file.vue?vue&type=script&lang=js& */ 480); /* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _upload_file_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _upload_file_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__)); /* harmony import */ var _upload_file_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./upload-file.vue?vue&type=style&index=0&lang=css& */ 482); /* harmony import */ var _tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../../../tools/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 13); var renderjs /* normalize component */ var component = Object(_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])( _upload_file_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"], _upload_file_vue_vue_type_template_id_dcf329fa___WEBPACK_IMPORTED_MODULE_0__["render"], _upload_file_vue_vue_type_template_id_dcf329fa___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"], false, null, null, null, false, _upload_file_vue_vue_type_template_id_dcf329fa___WEBPACK_IMPORTED_MODULE_0__["components"], renderjs ) component.options.__file = "pages/API/upload-file/upload-file.vue" /* harmony default export */ __webpack_exports__["default"] = (component.exports); /***/ }), /***/ 478: /*!*****************************************************************************************************************************!*\ !*** C:/Users/kira3/Documents/GitHub/TemporaryParking/pages/API/upload-file/upload-file.vue?vue&type=template&id=dcf329fa& ***! \*****************************************************************************************************************************/ /*! exports provided: render, staticRenderFns, recyclableRender, components */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony import */ var _tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_upload_file_vue_vue_type_template_id_dcf329fa___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../../tools/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../../tools/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../../../tools/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../../tools/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../../tools/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../../tools/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./upload-file.vue?vue&type=template&id=dcf329fa& */ 479); /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_upload_file_vue_vue_type_template_id_dcf329fa___WEBPACK_IMPORTED_MODULE_0__["render"]; }); /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_upload_file_vue_vue_type_template_id_dcf329fa___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; }); /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_upload_file_vue_vue_type_template_id_dcf329fa___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; }); /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_upload_file_vue_vue_type_template_id_dcf329fa___WEBPACK_IMPORTED_MODULE_0__["components"]; }); /***/ }), /***/ 479: /*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!C:/Users/kira3/Documents/GitHub/TemporaryParking/pages/API/upload-file/upload-file.vue?vue&type=template&id=dcf329fa& ***! \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ /*! exports provided: render, staticRenderFns, recyclableRender, components */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; }); var components try { components = { pageHead: function() { return __webpack_require__.e(/*! import() | components/page-head/page-head */ "components/page-head/page-head").then(__webpack_require__.bind(null, /*! @/components/page-head/page-head.vue */ 1129)) } } } catch (e) { if ( e.message.indexOf("Cannot find module") !== -1 && e.message.indexOf(".vue") !== -1 ) { console.error(e.message) console.error("1. 排查组件名称拼写是否正确") console.error( "2. 排查组件是否符合 easycom 规范,文档:https://uniapp.dcloud.net.cn/collocation/pages?id=easycom" ) console.error( "3. 若组件不符合 easycom 规范,需手动引入,并在 components 中注册该组件" ) } else { throw e } } var render = function() { var _vm = this var _h = _vm.$createElement var _c = _vm._self._c || _h } var recyclableRender = false var staticRenderFns = [] render._withStripped = true /***/ }), /***/ 480: /*!***********************************************************************************************************************!*\ !*** C:/Users/kira3/Documents/GitHub/TemporaryParking/pages/API/upload-file/upload-file.vue?vue&type=script&lang=js& ***! \***********************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony import */ var _tools_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_upload_file_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../../tools/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../../../tools/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../../../tools/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../../tools/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../../tools/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./upload-file.vue?vue&type=script&lang=js& */ 481); /* harmony import */ var _tools_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_upload_file_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_tools_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_upload_file_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__); /* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _tools_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_upload_file_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _tools_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_upload_file_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__)); /* harmony default export */ __webpack_exports__["default"] = (_tools_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_upload_file_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a); /***/ }), /***/ 481: /*!******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!C:/Users/kira3/Documents/GitHub/TemporaryParking/pages/API/upload-file/upload-file.vue?vue&type=script&lang=js& ***! \******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { "use strict"; /* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; // // // // // // // // // // // // // // // var _default = { data: function data() { return { title: 'uploadFile', imageSrc: '' }; }, onUnload: function onUnload() { this.imageSrc = ''; }, methods: { chooseImage: function chooseImage() {var _this = this; uni.chooseImage({ count: 1, sizeType: ['compressed'], sourceType: ['album'], success: function success(res) { console.log('chooseImage success, temp path is', res.tempFilePaths[0]); var imageSrc = res.tempFilePaths[0]; uni.uploadFile({ url: 'https://unidemo.dcloud.net.cn/upload', filePath: imageSrc, fileType: 'image', name: 'data', success: function success(res) { console.log('uploadImage success, res is:', res); uni.showToast({ title: '上传成功', icon: 'success', duration: 1000 }); _this.imageSrc = imageSrc; }, fail: function fail(err) { console.log('uploadImage fail', err); uni.showModal({ content: err.errMsg, showCancel: false }); } }); }, fail: function fail(err) { console.log('chooseImage fail', err); uni.getSetting({ success: function success(res) { var authStatus = res.authSetting['scope.album']; if (!authStatus) { uni.showModal({ title: '授权失败', content: 'Hello uni-app需要从您的相册获取图片,请在设置界面打开相关权限', success: function success(res) { if (res.confirm) { uni.openSetting(); } } }); } } }); } }); } } };exports.default = _default; /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"])) /***/ }), /***/ 482: /*!*******************************************************************************************************************************!*\ !*** C:/Users/kira3/Documents/GitHub/TemporaryParking/pages/API/upload-file/upload-file.vue?vue&type=style&index=0&lang=css& ***! \*******************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony import */ var _tools_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_tools_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_tools_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_upload_file_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../../tools/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../../tools/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../../tools/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../../tools/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../../../tools/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../../../tools/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../../tools/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./upload-file.vue?vue&type=style&index=0&lang=css& */ 483); /* harmony import */ var _tools_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_tools_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_tools_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_upload_file_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_tools_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_tools_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_tools_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_upload_file_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__); /* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _tools_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_tools_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_tools_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_upload_file_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _tools_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_tools_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_tools_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_upload_file_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__)); /* harmony default export */ __webpack_exports__["default"] = (_tools_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_tools_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_tools_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_tools_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_upload_file_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a); /***/ }), /***/ 483: /*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!C:/Users/kira3/Documents/GitHub/TemporaryParking/pages/API/upload-file/upload-file.vue?vue&type=style&index=0&lang=css& ***! \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { // extracted by mini-css-extract-plugin if(false) { var cssReload; } /***/ }) },[[476,"common/runtime","common/vendor"]]]); //# sourceMappingURL=../../../../.sourcemap/mp-weixin/pages/API/upload-file/upload-file.js.map
import isArray from '../is/isArray' import isObject from '../is/isObject' import isString from '../is/isString' /** * Get value by deep key in object(array) * * @example * const obj = { key : 0, label: 'Root', items: { one: { key : 1, label : 'One', val : 111, items : { two: { key : 2, label: 'Two', val : 111, items: {}, }, }, children: [{ key : 2, label: 'Two', val : 111, items: {}, }, { key : 4, label: 'Four', val : 444, }], }, }, } * remove(obj, 'items.one.children.1.key') * remove(obj, 'items.one') * remove(obj, 'label') * remove(obj, 'items/one/items/two/items','/') * * @param {object} object * @param {string|array} selector * @param {string} divider [divider='.'] * @returns {object} */ export default function remove(object, selector, divider = '.') { if (isString(selector)) { selector = [selector] } const removeFromObject = function (from, keys) { if (keys.length > 1) { if (from[keys[0]] !== undefined) { if (isArray(from[keys[0]]) || isObject(from[keys[0]])) { removeFromObject(from[keys[0]], keys.slice(1)) } } } else { if (isArray(from)) { from.splice(keys[0], 1) } else if (isObject(from)) { delete from[keys[0]] } } } if (isArray(selector)) { selector.forEach((v) => { removeFromObject(object, v.split(divider)) }) } return object }
print('Digite 6 números inteiros.') s = 0 c = 0 for n in range(1, 7): a = int(input('Digite o {} número inteiro: '.format(n))) if a % 2 == 0: s += a c += 1 print('A soma dos {} números pares é {}'.format(c, s))
// @link https://schemas.extratv.com/json-schema/extra/iam/request/get-all-apps-response/1-0-0.json# import Fb from '@gdbots/pbj/FieldBuilder.js'; import GdbotsPbjxResponseV1Mixin from '@gdbots/schemas/gdbots/pbjx/mixin/response/ResponseV1Mixin.js'; import Message from '@gdbots/pbj/Message.js'; import Schema from '@gdbots/pbj/Schema.js'; import T from '@gdbots/pbj/types/index.js'; export default class GetAllAppsResponseV1 extends Message { /** * @private * * @returns {Schema} */ static defineSchema() { return new Schema(this.SCHEMA_ID, this, [ Fb.create('response_id', T.UuidType.create()) .required() .build(), Fb.create('created_at', T.MicrotimeType.create()) .build(), /* * Multi-tenant apps can use this field to track the tenant id. */ Fb.create('ctx_tenant_id', T.StringType.create()) .pattern('^[\\w\\/\\.:-]+$') .build(), Fb.create('ctx_request_ref', T.MessageRefType.create()) .build(), /* * The "ctx_request" is the actual request object that "ctx_request_ref" refers to. * In some cases it's useful for request handlers to copy the request into the response * so the requestor has everything in one message. This will NOT always be populated. * A common use case is search request/response cycles where you want to know what the * search criteria was so you can render that along with the results. */ Fb.create('ctx_request', T.MessageType.create()) .anyOfCuries([ 'gdbots:pbjx:mixin:request', ]) .build(), Fb.create('ctx_correlator_ref', T.MessageRefType.create()) .build(), /* * Responses can include "dereferenced" messages to prevent * the consumer from needing to make multiple HTTP requests. * It is up to the consumer to make use of the dereferenced * messages if/when they are provided. */ Fb.create('derefs', T.MessageType.create()) .asAMap() .build(), /* * @link https://en.wikipedia.org/wiki/HATEOAS */ Fb.create('links', T.TextType.create()) .asAMap() .build(), Fb.create('metas', T.TextType.create()) .asAMap() .build(), Fb.create('nodes', T.MessageType.create()) .asAList() .anyOfCuries([ 'gdbots:iam:mixin:app', ]) .build(), ], this.MIXINS, ); } } const M = GetAllAppsResponseV1; M.prototype.SCHEMA_ID = M.SCHEMA_ID = 'pbj:extra:iam:request:get-all-apps-response:1-0-0'; M.prototype.SCHEMA_CURIE = M.SCHEMA_CURIE = 'extra:iam:request:get-all-apps-response'; M.prototype.SCHEMA_CURIE_MAJOR = M.SCHEMA_CURIE_MAJOR = 'extra:iam:request:get-all-apps-response:v1'; M.prototype.MIXINS = M.MIXINS = [ 'gdbots:pbjx:mixin:response:v1', 'gdbots:pbjx:mixin:response', 'gdbots:iam:mixin:get-all-apps-response:v1', 'gdbots:iam:mixin:get-all-apps-response', ]; GdbotsPbjxResponseV1Mixin(M); Object.freeze(M); Object.freeze(M.prototype);
#!/usr/bin/env python3 """ Models for fitting. .. code-author: Raymond Ehlers <[email protected]>, Yale University """ import abc import logging import operator from typing import Any, Callable, Dict, Iterable, Iterator, TypeVar, Union import iminuit import numpy as np import numpy.typing as npt import scipy.integrate from pachyderm import generic_class, histogram from pachyderm.fit import base as fit_base logger = logging.getLogger(__name__) T_CostFunction = TypeVar("T_CostFunction", bound="CostFunctionBase") def _quad( f: Callable[..., float], bin_edges: npt.NDArray[Any], *args: Union[float, npt.NDArray[np.float64]] ) -> npt.NDArray[Any]: """Integrate over the given function using QUADPACK. Unfortunately, this option is fairly slow because we can't take advantage of vectorized numpy operations. Something like numba could speed this up if all functions and classes could be supported. Args: f: Function to integrate. bin_edges: Bin edges of the data histogram. args: Arguments for evaluating the function. Returns: Integral over each bin. """ values = [] for lower, upper in zip(bin_edges[:-1], bin_edges[1:]): res, _ = scipy.integrate.quad(func=f, a=lower, b=upper, args=tuple(args)) values.append(res) return np.array(values) def _simpson_38( f: Callable[..., float], bin_edges: npt.NDArray[Any], *args: Union[float, npt.NDArray[np.float64]] ) -> npt.NDArray[Any]: """Integrate over each histogram bin with the Simpson 3/8 rule. Implemented via the expression at https://en.wikipedia.org/wiki/Simpson%27s_rule#Simpson's_3/8_rule . Could also be implemented via ``scipy.integrate.simps``, but it implements the composite rule which, as far as I can tell, doesn't map onto our histogram data quite as nicely as our own implementation. Args: f: Function to integrate. bin_edges: Bin edges of the data histogram. args: Arguments for evaluating the function. Returns: Integral over each bin. """ a = bin_edges[:-1] b = bin_edges[1:] # Recall that bin_edges[1:] - bin_edges[:-1] is the bin widths return (b - a) / 8 * (f(a, *args) + 3 * f((2 * a + b) / 3, *args) + 3 * f((a + 2 * b) / 3, *args) + f(b, *args)) # type: ignore def _integrate_1D( f: Callable[..., float], bin_edges: npt.NDArray[Any], *args: Union[float, npt.NDArray[np.float64]] ) -> npt.NDArray[Any]: """Integrate the given function over each bin in 1D. A number of options are available for integration, including a simple method evaluated on the bin edges, Simpson's 3/8 rule, and using QUADPACK. Note: Integration depends on the bin edges, which implicitly undoes the bin width scaling that is applied to a histogram. To compensate, we divide the integrated values by the bin width. Args: f: Function to integrate. bin_edges: Bin edges of the data histogram. args: Arguments for evaluating the function. Returns: Integral over each bin. """ # Simplest case where we just evaluate on the edges. # return (f(bin_edges[1:], *args) + f(bin_edges[:-1], *args)) / 2 * (bin_edges[1:] - bin_edges[:-1]) # QUADPACK is another option, but it's slow. # return _quad(f, bin_edges, *args) / (bin_edges[1:] - bin_edges[:-1]) # Simpson's 3/8 rule is better than the simple case, but faster than QUADPACK. return _simpson_38(f, bin_edges, *args) / (bin_edges[1:] - bin_edges[:-1]) # type: ignore def unravel_simultaneous_fits( functions: Iterable[Union["CostFunctionBase", "SimultaneousFit"]] ) -> Iterator["CostFunctionBase"]: """Unravel the cost functions from possible simultaneous fit objects. The functions are unravel by recursively retrieving the functions from existing ``SimultaneousFit`` objects that may be in the list of passed functions. The cost functions store their fit data, so they are fully self contained. Consequently, we are okay to fully unravel the functions without worrying about the intermediate ``SimultaneousFit`` objects. Args: functions: Functions to unravel. Returns: Iterator of the base cost functions. """ for f in functions: if isinstance(f, SimultaneousFit): yield from unravel_simultaneous_fits(f.cost_functions) else: yield f class SimultaneousFit(generic_class.EqualityMixin): """Cost function for the simultaneous fit of the given cost functions. Args: cost_functions: The cost functions. Attributes: functions: The cost functions. func_code: Function arguments derived from the fit functions. They need to be separately specified to allow iminuit to determine the proper arguments. argument_positions: Map of merged arguments to the arguments for each individual function. """ def __init__(self, *cost_functions: Union[T_CostFunction, "SimultaneousFit"]): # Validation # Ensure that we unravel any SimultaneousFit objects to their base cost functions. funcs = list(unravel_simultaneous_fits(list(cost_functions))) self.cost_functions = funcs logger.debug("Simultaneous Fit") merged_args, argument_positions = fit_base.merge_func_codes(self.cost_functions) # We don't drop any of the arguments here because the cost functions already did it. self.func_code = fit_base.FuncCode(merged_args) self.argument_positions = argument_positions def __add__(self, other: Union[T_CostFunction, "SimultaneousFit"]) -> "SimultaneousFit": """Add a new function to the simultaneous fit.""" return type(self)(self, other) def __radd__(self, other: Union[T_CostFunction, "SimultaneousFit"]) -> "SimultaneousFit": """For use with ``sum(...)``.""" if other == 0: return self else: return self + other def __call__(self, *args: float) -> float: """Calculate the cost function for all x values in the data.""" return fit_base.call_list_of_callables_with_operation( operator.add, self.cost_functions, self.argument_positions, *args ) class CostFunctionBase(abc.ABC): """Base cost function. Args: f: The fit function. data: Data to be used for fitting. additional_call_options: Additional keyword options to be passed when calling the cost function. Attributes: f: The fit function. func_code: Function arguments derived from the fit function. They need to be separately specified to allow iminuit to determine the proper arguments. data: Data to be used for fitting. additional_call_options: Additional keyword options to be passed when calling the cost function. _cost_function: Function to be used to calculate the actual cost function. """ _cost_function: Callable[..., float] def __init__( self, f: Callable[..., float], data: Union[npt.NDArray[Any], histogram.Histogram1D], **additional_call_options: Any, ): # If using numba, we would need to JIT the function to be able to pass it to the cost function. self.f = f # We need to drop the leading x argument self.func_code = fit_base.FuncCode(iminuit.util.describe(self.f)[1:]) self.data = data self._additional_call_options: Dict[str, Any] = additional_call_options def __add__(self: T_CostFunction, other: T_CostFunction) -> SimultaneousFit: """Creates a simultaneous fit when added with another cost function.""" return SimultaneousFit(self, other) def __radd__(self: T_CostFunction, other: T_CostFunction) -> Union[T_CostFunction, SimultaneousFit]: """For use with ``sum(...)``.""" if other == 0: return self else: return self + other def __call__(self, *args: float) -> float: """Calculate the cost function for all x values in the data.""" return self._call_cost_function(self.data, self.f, *args, **self._additional_call_options) @classmethod @abc.abstractmethod def _call_cost_function( cls, data: Union[npt.NDArray[Any], histogram.Histogram1D], f: Callable[..., float], *args: Union[float, npt.NDArray[Any]], **kwargs: Any, ) -> float: """Wrapper to allow access to the method as if it's unbound. This is needed for use with numba. Args: data: The input data. f: Fit function. args: Other arguments for the fit function (not including where it will be evaluated (ie. x)). kwargs: Additional arguments to pass to the cost function. Returns: The cost function evaluated at all of the corresponding data points. """ ... class StandaloneCostFunction(CostFunctionBase): """Cost function which only needs a list of input data. This is in contrast to those which need data to compare against at each point. One example of a cost function which only needs the input data is the unbinned log likelihood. Attributes: f: The fit function. func_code: Function arguments derived from the fit function. They need to be separately specified to allow iminuit to determine the proper arguments. data: Numpy array of all input values (not binned in any way). It's just a list of the values. _cost_function: Function to be used to calculate the actual cost function. """ def __init__(self, *args: Any, **kwargs: Any): super().__init__(*args, **kwargs) # Check that we have the proper input data. This isn't very pythnoic, but it's # important that have the data in the proper format. assert isinstance(self.data, np.ndarray) @classmethod def _call_cost_function( cls, data: Union[histogram.Histogram1D, npt.NDArray[Any]], f: Callable[..., float], *args: Union[float, npt.NDArray[np.float64]], **kwargs: Any, ) -> float: """Wrapper to allow access to the method as if it's unbound. This is needed for use with numba. Args: data: The input histogram. This should simply be an array of the values. Returns: The cost function evaluated at all of the corresponding data points (ie. ``self.data``). """ return cls._cost_function(data, f, *args, **kwargs) class DataComparisonCostFunction(CostFunctionBase): """Cost function which needs comparison data, the points where it was evaluated, and the errors. This is in contrast to those which only need the input data. Examples of cost functions needing input data included the chi squared (both unbinned and binned), as well as the binned log likelihood. Attributes: f: The fit function. func_code: Function arguments derived from the fit function. They need to be separately specified to allow iminuit to determine the proper arguments. data: Numpy array of all input values (not binned in any way). It's just a list of the values. _cost_function: Function to be used to calculate the actual cost function. """ def __init__(self, *args: Any, **kwargs: Any): super().__init__(*args, **kwargs) # Check that we have the proper input data. This isn't very pythnoic, but it's # important that have the data in the proper format. assert isinstance(self.data, histogram.Histogram1D) @classmethod def _call_cost_function( cls, data: Any, f: Callable[..., float], *args: Union[float, npt.NDArray[np.float64]], **kwargs: Any ) -> float: """Wrapper to allow access to the method as if it's unbound. This is needed for use with numba. Args: data: Input data in the form of a histogram. Note that this must be a ``Histogram1D`` (but it's specified as Any above to avoid needing isinstance calls in performance sensitive code). f: Fit function. args: Arguments for the function. Returns: The cost function evaluated at all the corresponding data points (ie. data.x). """ return cls._cost_function(data.x, data.y, data.errors, data.bin_edges, f, *args, **kwargs) def _chi_squared( x: npt.NDArray[Any], y: npt.NDArray[Any], errors: npt.NDArray[Any], _: npt.NDArray[Any], f: Callable[..., float], *args: float, ) -> Any: r"""Actual implementation of the chi squared. Implemented with some help from the iminuit advanced tutorial. The chi squared is defined as: .. math:: \Chi^{2} = \sum_{i} (\frac{(y_{i} - f(x, *args)}{error_{i})})^{2} Note: It returns a float, but numba can't handle cast. So we return ``Any`` and then cast the result. Args: x: x values for calculation. y: y values for calculation. errors: Errors for calculation. _: Ignored here. f: Fit function. args: Additional arguments for the fit function. Returns: (Unbinned) chi squared for the given arguments. """ return np.sum(np.square((y - f(x, *args)) / errors)) class ChiSquared(DataComparisonCostFunction): """chi^2 cost function. Attributes: f: The fit function. func_code: Function arguments derived from the fit function. They need to be separately specified to allow iminuit to determine the proper arguments. data: Data to be used for fitting. _cost_function: Function to be used to calculate the actual cost function. """ _cost_function = _chi_squared def _binned_chi_squared( x: npt.NDArray[Any], y: npt.NDArray[Any], errors: npt.NDArray[Any], bin_edges: npt.NDArray[Any], f: Callable[..., float], *args: float, ) -> Any: r"""Actual implementation of the binned chi squared. The binned chi squared is defined as: .. math:: \Chi^{2} = \sum_{i} (\frac{(y_{i} - \int_{i \mathrm{lower edge}}^{i \mathrm{upper edge}} f(x, *args)}{error_{i})})^{2} where the function is integrated over each bin. Note: It returns a float, but numba can't handle cast. So we return ``Any`` and then cast the result. Args: x: x values where the function should be evaluated. y: Histogram values at each x. errors: Histogram errors at each x. bin_edges: Histogram bin edges. f: Fit function. args: Arguments for the fit function. Returns: Binned chi squared calculated for each x value. """ # ROOT appears to use the unbinned chi squared, despite working with binned data # return np.sum(np.square((y - f(x, *args)) / errors)) # Evaluate the function value over the entire bin. expected_values = _integrate_1D(f, bin_edges, *args) return np.sum(np.square((y - expected_values) / errors)) def binned_chi_squared_safe_for_zeros( x: npt.NDArray[Any], y: npt.NDArray[Any], errors: npt.NDArray[Any], bin_edges: npt.NDArray[Any], f: Callable[..., float], *args: float, ) -> Any: """Actual implementation of the binned chi squared. See `_binned_chi_squared` for further information. This function is just the standard binned chi squared, but the division is protected from divide by 0. This allows safe use when calculating a binned chi squared. Args: x: x values where the function should be evaluated. y: Histogram values at each x. errors: Histogram errors at each x. bin_edges: Histogram bin edges. f: Fit function. args: Arguments for the fit function. Returns: Binned chi squared calculated for each x value. """ expected_values = _integrate_1D(f, bin_edges, *args) return np.sum(np.square(np.divide((y - expected_values), errors, out=np.zeros_like(errors), where=errors != 0))) class BinnedChiSquared(DataComparisonCostFunction): """Binned chi^2 cost function. Calling this class will calculate the chi squared. Implemented with some help from ... Attributes: f: The fit function. func_code: Function arguments derived from the fit function. They need to be separately specified to allow iminuit to determine the proper arguments. data: Data to be used for fitting. _cost_function: Function to be used to calculate the actual cost function. """ _cost_function = _binned_chi_squared def _log_likelihood(data: npt.NDArray[Any], f: Callable[..., float], *args: float) -> Any: r"""Actual implementation of the log likelihood cost function. The unbinned log likelihood is defined as: .. math:: \mathrm{likelihood} = - \sum_{i \in data} \log{f(x, *args)} Note: It returns a float, but numba can't handle cast. So we return ``Any`` and then cast the result. Args: data: Data points (raw data, not histogramed). f: Fit function. args: Fit function arguments. Returns: Unbinned log likelihood for the given data points. """ return np.log(f(data, *args)) class LogLikelihood(StandaloneCostFunction): """Log likelihood cost function. Calling this class will calculate the chi squared. Implemented with some help from ... Attributes: f: The fit function. func_code: Function arguments derived from the fit function. They need to be separately specified to allow iminuit to determine the proper arguments. data: Data to be used for fitting. _cost_function: Function to be used to calculate the actual cost function. """ _cost_function = _log_likelihood def _extended_binned_log_likelihood( x: npt.NDArray[Any], y: npt.NDArray[Any], errors: npt.NDArray[Any], bin_edges: npt.NDArray[Any], f: Callable[..., float], *args: float, use_weights: bool = False, ) -> Any: r"""Actual implementation of the extended binned log likelihood (cost function). Based on Probfit's binned log likelihood implementation. I also looked at ROOT's ``FitUtil::EvaluatePoissonLogL(...)`` for evaluating the binned log likelihood, and they appear to be consistent. The actual expression that is implemented is: .. math:: \textrm{Likelihood} = -\sum_{i \in bins} s_i \times \left( h_i \times \log (\frac{E_i}{h_i}) + (h_i-E_i) \right) where E_i is the expected value (from the fit function), and h_i is the histogram. To make a proper comparison between E_i and h_i, we need to evaluate the value of the entire bin. To do so, we use: .. math:: E_i = \frac{f(l_i, arg\ldots )+f(r_i, arg \ldots )}{2} \times b_i and s_i is unity when performing a standard fit, and: .. math:: s_i = h_i / error_i^2 when performing a weighted fit. Note: It returns a float, but numba can't handle cast. So we return ``Any`` and then cast the result. Args: x: x values for calculation. y: y values for calculation. errors: Errors for calculation. bin_edges: Bin widths of the histogram. f: Fit function. args: Additional arguments for the fit function. use_weights: Use data weights in calculating the log likelihood. Returns: Binned log likelihood. """ # Need to normalize the contributions. scale = y / errors ** 2 if use_weights else np.ones(len(y)) expected_values = _integrate_1D(f, bin_edges, *args) # We don't use log rules to combine the log1p expressions (ie. log(expected_values / y)) because it appears # to create numerical issues (throwing NaN). # It sounds like the absolute value of FCN doesn't necessarily mean much for the log likelihood ratio # In principle, I should be able to get it to match ROOT, but that doesn't seem so trivial in practice. return -1 * np.sum(scale * (y * (np.log1p(expected_values) - np.log1p(y)) + (y - expected_values))) class BinnedLogLikelihood(DataComparisonCostFunction): """Binned log likelihood cost function. Calling this class will calculate the chi squared. Implemented with some help from ... Args: f: The fit function. data: Data to be used for fitting. use_weights: Whether to use the data weights when calculating the cost function. This is equivalent to the "WL" option in ROOT. Default: False. additional_call_options: Additional keyword options to be passed when calling the cost function. Attributes: f: The fit function. func_code: Function arguments derived from the fit function. They need to be separately specified to allow iminuit to determine the proper arguments. data: Data to be used for fitting. _cost_function: Function to be used to calculate the actual cost function. """ def __init__(self, use_weights: bool = False, *args: Any, **kwargs: Any): kwargs["use_weights"] = use_weights super().__init__(*args, **kwargs) _cost_function = _extended_binned_log_likelihood
/** vim: et:ts=4:sw=4:sts=4 * @license RequireJS 2.1.2 Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved. * Available via the MIT or new BSD license. * see: http://github.com/jrburke/requirejs for details */ //Not using strict: uneven strict support in browsers, #392, and causes //problems with requirejs.exec()/transpiler plugins that may not be strict. /*jslint regexp: true, nomen: true, sloppy: true */ /*global window, navigator, document, importScripts, jQuery, setTimeout, opera */ var requirejs, require, define; (function (global) { var req, s, head, baseElement, dataMain, src, interactiveScript, currentlyAddingScript, mainScript, subPath, version = '2.1.2', commentRegExp = /(\/\*([\s\S]*?)\*\/|([^:]|^)\/\/(.*)$)/mg, cjsRequireRegExp = /[^.]\s*require\s*\(\s*["']([^'"\s]+)["']\s*\)/g, jsSuffixRegExp = /\.js$/, currDirRegExp = /^\.\//, op = Object.prototype, ostring = op.toString, hasOwn = op.hasOwnProperty, ap = Array.prototype, aps = ap.slice, apsp = ap.splice, isBrowser = !!(typeof window !== 'undefined' && navigator && document), isWebWorker = !isBrowser && typeof importScripts !== 'undefined', //PS3 indicates loaded and complete, but need to wait for complete //specifically. Sequence is 'loading', 'loaded', execution, // then 'complete'. The UA check is unfortunate, but not sure how //to feature test w/o causing perf issues. readyRegExp = isBrowser && navigator.platform === 'PLAYSTATION 3' ? /^complete$/ : /^(complete|loaded)$/, defContextName = '_', //Oh the tragedy, detecting opera. See the usage of isOpera for reason. isOpera = typeof opera !== 'undefined' && opera.toString() === '[object Opera]', contexts = {}, cfg = {}, globalDefQueue = [], useInteractive = false; function isFunction(it) { return ostring.call(it) === '[object Function]'; } function isArray(it) { return ostring.call(it) === '[object Array]'; } /** * Helper function for iterating over an array. If the func returns * a true value, it will break out of the loop. */ function each(ary, func) { if (ary) { var i; for (i = 0; i < ary.length; i += 1) { if (ary[i] && func(ary[i], i, ary)) { break; } } } } /** * Helper function for iterating over an array backwards. If the func * returns a true value, it will break out of the loop. */ function eachReverse(ary, func) { if (ary) { var i; for (i = ary.length - 1; i > -1; i -= 1) { if (ary[i] && func(ary[i], i, ary)) { break; } } } } function hasProp(obj, prop) { return hasOwn.call(obj, prop); } function getOwn(obj, prop) { return hasProp(obj, prop) && obj[prop]; } /** * Cycles over properties in an object and calls a function for each * property value. If the function returns a truthy value, then the * iteration is stopped. */ function eachProp(obj, func) { var prop; for (prop in obj) { if (hasProp(obj, prop)) { if (func(obj[prop], prop)) { break; } } } } /** * Simple function to mix in properties from source into target, * but only if target does not already have a property of the same name. */ function mixin(target, source, force, deepStringMixin) { if (source) { eachProp(source, function (value, prop) { if (force || !hasProp(target, prop)) { if (deepStringMixin && typeof value !== 'string') { if (!target[prop]) { target[prop] = {}; } mixin(target[prop], value, force, deepStringMixin); } else { target[prop] = value; } } }); } return target; } //Similar to Function.prototype.bind, but the 'this' object is specified //first, since it is easier to read/figure out what 'this' will be. function bind(obj, fn) { return function () { return fn.apply(obj, arguments); }; } function scripts() { return document.getElementsByTagName('script'); } //Allow getting a global that expressed in //dot notation, like 'a.b.c'. function getGlobal(value) { if (!value) { return value; } var g = global; each(value.split('.'), function (part) { g = g[part]; }); return g; } /** * Constructs an error with a pointer to an URL with more information. * @param {String} id the error ID that maps to an ID on a web page. * @param {String} message human readable error. * @param {Error} [err] the original error, if there is one. * * @returns {Error} */ function makeError(id, msg, err, requireModules) { var e = new Error(msg + '\nhttp://requirejs.org/docs/errors.html#' + id); e.requireType = id; e.requireModules = requireModules; if (err) { e.originalError = err; } return e; } if (typeof define !== 'undefined') { //If a define is already in play via another AMD loader, //do not overwrite. return; } if (typeof requirejs !== 'undefined') { if (isFunction(requirejs)) { //Do not overwrite and existing requirejs instance. return; } cfg = requirejs; requirejs = undefined; } //Allow for a require config object if (typeof require !== 'undefined' && !isFunction(require)) { //assume it is a config object. cfg = require; require = undefined; } function newContext(contextName) { var inCheckLoaded, Module, context, handlers, checkLoadedTimeoutId, config = { waitSeconds: 7, baseUrl: './', paths: {}, pkgs: {}, shim: {}, map: {}, config: {} }, registry = {}, undefEvents = {}, defQueue = [], defined = {}, urlFetched = {}, requireCounter = 1, unnormalizedCounter = 1; /** * Trims the . and .. from an array of path segments. * It will keep a leading path segment if a .. will become * the first path segment, to help with module name lookups, * which act like paths, but can be remapped. But the end result, * all paths that use this function should look normalized. * NOTE: this method MODIFIES the input array. * @param {Array} ary the array of path segments. */ function trimDots(ary) { var i, part; for (i = 0; ary[i]; i += 1) { part = ary[i]; if (part === '.') { ary.splice(i, 1); i -= 1; } else if (part === '..') { if (i === 1 && (ary[2] === '..' || ary[0] === '..')) { //End of the line. Keep at least one non-dot //path segment at the front so it can be mapped //correctly to disk. Otherwise, there is likely //no path mapping for a path starting with '..'. //This can still fail, but catches the most reasonable //uses of .. break; } else if (i > 0) { ary.splice(i - 1, 2); i -= 2; } } } } /** * Given a relative module name, like ./something, normalize it to * a real name that can be mapped to a path. * @param {String} name the relative name * @param {String} baseName a real name that the name arg is relative * to. * @param {Boolean} applyMap apply the map config to the value. Should * only be done if this normalization is for a dependency ID. * @returns {String} normalized name */ function normalize(name, baseName, applyMap) { var pkgName, pkgConfig, mapValue, nameParts, i, j, nameSegment, foundMap, foundI, foundStarMap, starI, baseParts = baseName && baseName.split('/'), normalizedBaseParts = baseParts, map = config.map, starMap = map && map['*']; //Adjust any relative paths. if (name && name.charAt(0) === '.') { //If have a base name, try to normalize against it, //otherwise, assume it is a top-level require that will //be relative to baseUrl in the end. if (baseName) { if (getOwn(config.pkgs, baseName)) { //If the baseName is a package name, then just treat it as one //name to concat the name with. normalizedBaseParts = baseParts = [baseName]; } else { //Convert baseName to array, and lop off the last part, //so that . matches that 'directory' and not name of the baseName's //module. For instance, baseName of 'one/two/three', maps to //'one/two/three.js', but we want the directory, 'one/two' for //this normalization. normalizedBaseParts = baseParts.slice(0, baseParts.length - 1); } name = normalizedBaseParts.concat(name.split('/')); trimDots(name); //Some use of packages may use a . path to reference the //'main' module name, so normalize for that. pkgConfig = getOwn(config.pkgs, (pkgName = name[0])); name = name.join('/'); if (pkgConfig && name === pkgName + '/' + pkgConfig.main) { name = pkgName; } } else if (name.indexOf('./') === 0) { // No baseName, so this is ID is resolved relative // to baseUrl, pull off the leading dot. name = name.substring(2); } } //Apply map config if available. if (applyMap && (baseParts || starMap) && map) { nameParts = name.split('/'); for (i = nameParts.length; i > 0; i -= 1) { nameSegment = nameParts.slice(0, i).join('/'); if (baseParts) { //Find the longest baseName segment match in the config. //So, do joins on the biggest to smallest lengths of baseParts. for (j = baseParts.length; j > 0; j -= 1) { mapValue = getOwn(map, baseParts.slice(0, j).join('/')); //baseName segment has config, find if it has one for //this name. if (mapValue) { mapValue = getOwn(mapValue, nameSegment); if (mapValue) { //Match, update name to the new value. foundMap = mapValue; foundI = i; break; } } } } if (foundMap) { break; } //Check for a star map match, but just hold on to it, //if there is a shorter segment match later in a matching //config, then favor over this star map. if (!foundStarMap && starMap && getOwn(starMap, nameSegment)) { foundStarMap = getOwn(starMap, nameSegment); starI = i; } } if (!foundMap && foundStarMap) { foundMap = foundStarMap; foundI = starI; } if (foundMap) { nameParts.splice(0, foundI, foundMap); name = nameParts.join('/'); } } return name; } function removeScript(name) { if (isBrowser) { each(scripts(), function (scriptNode) { if (scriptNode.getAttribute('data-requiremodule') === name && scriptNode.getAttribute('data-requirecontext') === context.contextName) { scriptNode.parentNode.removeChild(scriptNode); return true; } }); } } function hasPathFallback(id) { var pathConfig = getOwn(config.paths, id); if (pathConfig && isArray(pathConfig) && pathConfig.length > 1) { removeScript(id); //Pop off the first array value, since it failed, and //retry pathConfig.shift(); context.require.undef(id); context.require([id]); return true; } } //Turns a plugin!resource to [plugin, resource] //with the plugin being undefined if the name //did not have a plugin prefix. function splitPrefix(name) { var prefix, index = name ? name.indexOf('!') : -1; if (index > -1) { prefix = name.substring(0, index); name = name.substring(index + 1, name.length); } return [prefix, name]; } /** * Creates a module mapping that includes plugin prefix, module * name, and path. If parentModuleMap is provided it will * also normalize the name via require.normalize() * * @param {String} name the module name * @param {String} [parentModuleMap] parent module map * for the module name, used to resolve relative names. * @param {Boolean} isNormalized: is the ID already normalized. * This is true if this call is done for a define() module ID. * @param {Boolean} applyMap: apply the map config to the ID. * Should only be true if this map is for a dependency. * * @returns {Object} */ function makeModuleMap(name, parentModuleMap, isNormalized, applyMap) { var url, pluginModule, suffix, nameParts, prefix = null, parentName = parentModuleMap ? parentModuleMap.name : null, originalName = name, isDefine = true, normalizedName = ''; //If no name, then it means it is a require call, generate an //internal name. if (!name) { isDefine = false; name = '_@r' + (requireCounter += 1); } nameParts = splitPrefix(name); prefix = nameParts[0]; name = nameParts[1]; if (prefix) { prefix = normalize(prefix, parentName, applyMap); pluginModule = getOwn(defined, prefix); } //Account for relative paths if there is a base name. if (name) { if (prefix) { if (pluginModule && pluginModule.normalize) { //Plugin is loaded, use its normalize method. normalizedName = pluginModule.normalize(name, function (name) { return normalize(name, parentName, applyMap); }); } else { normalizedName = normalize(name, parentName, applyMap); } } else { //A regular module. normalizedName = normalize(name, parentName, applyMap); //Normalized name may be a plugin ID due to map config //application in normalize. The map config values must //already be normalized, so do not need to redo that part. nameParts = splitPrefix(normalizedName); prefix = nameParts[0]; normalizedName = nameParts[1]; isNormalized = true; url = context.nameToUrl(normalizedName); } } //If the id is a plugin id that cannot be determined if it needs //normalization, stamp it with a unique ID so two matching relative //ids that may conflict can be separate. suffix = prefix && !pluginModule && !isNormalized ? '_unnormalized' + (unnormalizedCounter += 1) : ''; return { prefix: prefix, name: normalizedName, parentMap: parentModuleMap, unnormalized: !!suffix, url: url, originalName: originalName, isDefine: isDefine, id: (prefix ? prefix + '!' + normalizedName : normalizedName) + suffix }; } function getModule(depMap) { var id = depMap.id, mod = getOwn(registry, id); if (!mod) { mod = registry[id] = new context.Module(depMap); } return mod; } function on(depMap, name, fn) { var id = depMap.id, mod = getOwn(registry, id); if (hasProp(defined, id) && (!mod || mod.defineEmitComplete)) { if (name === 'defined') { fn(defined[id]); } } else { getModule(depMap).on(name, fn); } } function onError(err, errback) { var ids = err.requireModules, notified = false; if (errback) { errback(err); } else { each(ids, function (id) { var mod = getOwn(registry, id); if (mod) { //Set error on module, so it skips timeout checks. mod.error = err; if (mod.events.error) { notified = true; mod.emit('error', err); } } }); if (!notified) { req.onError(err); } } } /** * Internal method to transfer globalQueue items to this context's * defQueue. */ function takeGlobalQueue() { //Push all the globalDefQueue items into the context's defQueue if (globalDefQueue.length) { //Array splice in the values since the context code has a //local var ref to defQueue, so cannot just reassign the one //on context. apsp.apply(defQueue, [defQueue.length - 1, 0].concat(globalDefQueue)); globalDefQueue = []; } } handlers = { 'require': function (mod) { if (mod.require) { return mod.require; } else { return (mod.require = context.makeRequire(mod.map)); } }, 'exports': function (mod) { mod.usingExports = true; if (mod.map.isDefine) { if (mod.exports) { return mod.exports; } else { return (mod.exports = defined[mod.map.id] = {}); } } }, 'module': function (mod) { if (mod.module) { return mod.module; } else { return (mod.module = { id: mod.map.id, uri: mod.map.url, config: function () { return (config.config && getOwn(config.config, mod.map.id)) || {}; }, exports: defined[mod.map.id] }); } } }; function cleanRegistry(id) { //Clean up machinery used for waiting modules. delete registry[id]; } function breakCycle(mod, traced, processed) { var id = mod.map.id; if (mod.error) { mod.emit('error', mod.error); } else { traced[id] = true; each(mod.depMaps, function (depMap, i) { var depId = depMap.id, dep = getOwn(registry, depId); //Only force things that have not completed //being defined, so still in the registry, //and only if it has not been matched up //in the module already. if (dep && !mod.depMatched[i] && !processed[depId]) { if (getOwn(traced, depId)) { mod.defineDep(i, defined[depId]); mod.check(); //pass false? } else { breakCycle(dep, traced, processed); } } }); processed[id] = true; } } function checkLoaded() { var map, modId, err, usingPathFallback, waitInterval = config.waitSeconds * 1000, //It is possible to disable the wait interval by using waitSeconds of 0. expired = waitInterval && (context.startTime + waitInterval) < new Date().getTime(), noLoads = [], reqCalls = [], stillLoading = false, needCycleCheck = true; //Do not bother if this call was a result of a cycle break. if (inCheckLoaded) { return; } inCheckLoaded = true; //Figure out the state of all the modules. eachProp(registry, function (mod) { map = mod.map; modId = map.id; //Skip things that are not enabled or in error state. if (!mod.enabled) { return; } if (!map.isDefine) { reqCalls.push(mod); } if (!mod.error) { //If the module should be executed, and it has not //been inited and time is up, remember it. if (!mod.inited && expired) { if (hasPathFallback(modId)) { usingPathFallback = true; stillLoading = true; } else { noLoads.push(modId); removeScript(modId); } } else if (!mod.inited && mod.fetched && map.isDefine) { stillLoading = true; if (!map.prefix) { //No reason to keep looking for unfinished //loading. If the only stillLoading is a //plugin resource though, keep going, //because it may be that a plugin resource //is waiting on a non-plugin cycle. return (needCycleCheck = false); } } } }); if (expired && noLoads.length) { //If wait time expired, throw error of unloaded modules. err = makeError('timeout', 'Load timeout for modules: ' + noLoads, null, noLoads); err.contextName = context.contextName; return onError(err); } //Not expired, check for a cycle. if (needCycleCheck) { each(reqCalls, function (mod) { breakCycle(mod, {}, {}); }); } //If still waiting on loads, and the waiting load is something //other than a plugin resource, or there are still outstanding //scripts, then just try back later. if ((!expired || usingPathFallback) && stillLoading) { //Something is still waiting to load. Wait for it, but only //if a timeout is not already in effect. if ((isBrowser || isWebWorker) && !checkLoadedTimeoutId) { checkLoadedTimeoutId = setTimeout(function () { checkLoadedTimeoutId = 0; checkLoaded(); }, 50); } } inCheckLoaded = false; } Module = function (map) { this.events = getOwn(undefEvents, map.id) || {}; this.map = map; this.shim = getOwn(config.shim, map.id); this.depExports = []; this.depMaps = []; this.depMatched = []; this.pluginMaps = {}; this.depCount = 0; /* this.exports this.factory this.depMaps = [], this.enabled, this.fetched */ }; Module.prototype = { init: function (depMaps, factory, errback, options) { options = options || {}; //Do not do more inits if already done. Can happen if there //are multiple define calls for the same module. That is not //a normal, common case, but it is also not unexpected. if (this.inited) { return; } this.factory = factory; if (errback) { //Register for errors on this module. this.on('error', errback); } else if (this.events.error) { //If no errback already, but there are error listeners //on this module, set up an errback to pass to the deps. errback = bind(this, function (err) { this.emit('error', err); }); } //Do a copy of the dependency array, so that //source inputs are not modified. For example //"shim" deps are passed in here directly, and //doing a direct modification of the depMaps array //would affect that config. this.depMaps = depMaps && depMaps.slice(0); this.errback = errback; //Indicate this module has be initialized this.inited = true; this.ignore = options.ignore; //Could have option to init this module in enabled mode, //or could have been previously marked as enabled. However, //the dependencies are not known until init is called. So //if enabled previously, now trigger dependencies as enabled. if (options.enabled || this.enabled) { //Enable this module and dependencies. //Will call this.check() this.enable(); } else { this.check(); } }, defineDep: function (i, depExports) { //Because of cycles, defined callback for a given //export can be called more than once. if (!this.depMatched[i]) { this.depMatched[i] = true; this.depCount -= 1; this.depExports[i] = depExports; } }, fetch: function () { if (this.fetched) { return; } this.fetched = true; context.startTime = (new Date()).getTime(); var map = this.map; //If the manager is for a plugin managed resource, //ask the plugin to load it now. if (this.shim) { context.makeRequire(this.map, { enableBuildCallback: true })(this.shim.deps || [], bind(this, function () { return map.prefix ? this.callPlugin() : this.load(); })); } else { //Regular dependency. return map.prefix ? this.callPlugin() : this.load(); } }, load: function () { var url = this.map.url; //Regular dependency. if (!urlFetched[url]) { urlFetched[url] = true; context.load(this.map.id, url); } }, /** * Checks is the module is ready to define itself, and if so, * define it. */ check: function () { if (!this.enabled || this.enabling) { return; } var err, cjsModule, id = this.map.id, depExports = this.depExports, exports = this.exports, factory = this.factory; if (!this.inited) { this.fetch(); } else if (this.error) { this.emit('error', this.error); } else if (!this.defining) { //The factory could trigger another require call //that would result in checking this module to //define itself again. If already in the process //of doing that, skip this work. this.defining = true; if (this.depCount < 1 && !this.defined) { if (isFunction(factory)) { //If there is an error listener, favor passing //to that instead of throwing an error. if (this.events.error) { try { exports = context.execCb(id, factory, depExports, exports); } catch (e) { err = e; } } else { exports = context.execCb(id, factory, depExports, exports); } if (this.map.isDefine) { //If setting exports via 'module' is in play, //favor that over return value and exports. After that, //favor a non-undefined return value over exports use. cjsModule = this.module; if (cjsModule && cjsModule.exports !== undefined && //Make sure it is not already the exports value cjsModule.exports !== this.exports) { exports = cjsModule.exports; } else if (exports === undefined && this.usingExports) { //exports already set the defined value. exports = this.exports; } } if (err) { err.requireMap = this.map; err.requireModules = [this.map.id]; err.requireType = 'define'; return onError((this.error = err)); } } else { //Just a literal value exports = factory; } this.exports = exports; if (this.map.isDefine && !this.ignore) { defined[id] = exports; if (req.onResourceLoad) { req.onResourceLoad(context, this.map, this.depMaps); } } //Clean up delete registry[id]; this.defined = true; } //Finished the define stage. Allow calling check again //to allow define notifications below in the case of a //cycle. this.defining = false; if (this.defined && !this.defineEmitted) { this.defineEmitted = true; this.emit('defined', this.exports); this.defineEmitComplete = true; } } }, callPlugin: function () { var map = this.map, id = map.id, //Map already normalized the prefix. pluginMap = makeModuleMap(map.prefix); //Mark this as a dependency for this plugin, so it //can be traced for cycles. this.depMaps.push(pluginMap); on(pluginMap, 'defined', bind(this, function (plugin) { var load, normalizedMap, normalizedMod, name = this.map.name, parentName = this.map.parentMap ? this.map.parentMap.name : null, localRequire = context.makeRequire(map.parentMap, { enableBuildCallback: true, skipMap: true }); //If current map is not normalized, wait for that //normalized name to load instead of continuing. if (this.map.unnormalized) { //Normalize the ID if the plugin allows it. if (plugin.normalize) { name = plugin.normalize(name, function (name) { return normalize(name, parentName, true); }) || ''; } //prefix and name should already be normalized, no need //for applying map config again either. normalizedMap = makeModuleMap(map.prefix + '!' + name, this.map.parentMap); on(normalizedMap, 'defined', bind(this, function (value) { this.init([], function () { return value; }, null, { enabled: true, ignore: true }); })); normalizedMod = getOwn(registry, normalizedMap.id); if (normalizedMod) { //Mark this as a dependency for this plugin, so it //can be traced for cycles. this.depMaps.push(normalizedMap); if (this.events.error) { normalizedMod.on('error', bind(this, function (err) { this.emit('error', err); })); } normalizedMod.enable(); } return; } load = bind(this, function (value) { this.init([], function () { return value; }, null, { enabled: true }); }); load.error = bind(this, function (err) { this.inited = true; this.error = err; err.requireModules = [id]; //Remove temp unnormalized modules for this module, //since they will never be resolved otherwise now. eachProp(registry, function (mod) { if (mod.map.id.indexOf(id + '_unnormalized') === 0) { cleanRegistry(mod.map.id); } }); onError(err); }); //Allow plugins to load other code without having to know the //context or how to 'complete' the load. load.fromText = bind(this, function (text, textAlt) { /*jslint evil: true */ var moduleName = map.name, moduleMap = makeModuleMap(moduleName), hasInteractive = useInteractive; //As of 2.1.0, support just passing the text, to reinforce //fromText only being called once per resource. Still //support old style of passing moduleName but discard //that moduleName in favor of the internal ref. if (textAlt) { text = textAlt; } //Turn off interactive script matching for IE for any define //calls in the text, then turn it back on at the end. if (hasInteractive) { useInteractive = false; } //Prime the system by creating a module instance for //it. getModule(moduleMap); //Transfer any config to this other module. if (hasProp(config.config, id)) { config.config[moduleName] = config.config[id]; } try { req.exec(text); } catch (e) { throw new Error('fromText eval for ' + moduleName + ' failed: ' + e); } if (hasInteractive) { useInteractive = true; } //Mark this as a dependency for the plugin //resource this.depMaps.push(moduleMap); //Support anonymous modules. context.completeLoad(moduleName); //Bind the value of that module to the value for this //resource ID. localRequire([moduleName], load); }); //Use parentName here since the plugin's name is not reliable, //could be some weird string with no path that actually wants to //reference the parentName's path. plugin.load(map.name, localRequire, load, config); })); context.enable(pluginMap, this); this.pluginMaps[pluginMap.id] = pluginMap; }, enable: function () { this.enabled = true; //Set flag mentioning that the module is enabling, //so that immediate calls to the defined callbacks //for dependencies do not trigger inadvertent load //with the depCount still being zero. this.enabling = true; //Enable each dependency each(this.depMaps, bind(this, function (depMap, i) { var id, mod, handler; if (typeof depMap === 'string') { //Dependency needs to be converted to a depMap //and wired up to this module. depMap = makeModuleMap(depMap, (this.map.isDefine ? this.map : this.map.parentMap), false, !this.skipMap); this.depMaps[i] = depMap; handler = getOwn(handlers, depMap.id); if (handler) { this.depExports[i] = handler(this); return; } this.depCount += 1; on(depMap, 'defined', bind(this, function (depExports) { this.defineDep(i, depExports); this.check(); })); if (this.errback) { on(depMap, 'error', this.errback); } } id = depMap.id; mod = registry[id]; //Skip special modules like 'require', 'exports', 'module' //Also, don't call enable if it is already enabled, //important in circular dependency cases. if (!hasProp(handlers, id) && mod && !mod.enabled) { context.enable(depMap, this); } })); //Enable each plugin that is used in //a dependency eachProp(this.pluginMaps, bind(this, function (pluginMap) { var mod = getOwn(registry, pluginMap.id); if (mod && !mod.enabled) { context.enable(pluginMap, this); } })); this.enabling = false; this.check(); }, on: function (name, cb) { var cbs = this.events[name]; if (!cbs) { cbs = this.events[name] = []; } cbs.push(cb); }, emit: function (name, evt) { each(this.events[name], function (cb) { cb(evt); }); if (name === 'error') { //Now that the error handler was triggered, remove //the listeners, since this broken Module instance //can stay around for a while in the registry. delete this.events[name]; } } }; function callGetModule(args) { //Skip modules already defined. if (!hasProp(defined, args[0])) { getModule(makeModuleMap(args[0], null, true)).init(args[1], args[2]); } } function removeListener(node, func, name, ieName) { //Favor detachEvent because of IE9 //issue, see attachEvent/addEventListener comment elsewhere //in this file. if (node.detachEvent && !isOpera) { //Probably IE. If not it will throw an error, which will be //useful to know. if (ieName) { node.detachEvent(ieName, func); } } else { node.removeEventListener(name, func, false); } } /** * Given an event from a script node, get the requirejs info from it, * and then removes the event listeners on the node. * @param {Event} evt * @returns {Object} */ function getScriptData(evt) { //Using currentTarget instead of target for Firefox 2.0's sake. Not //all old browsers will be supported, but this one was easy enough //to support and still makes sense. var node = evt.currentTarget || evt.srcElement; //Remove the listeners once here. removeListener(node, context.onScriptLoad, 'load', 'onreadystatechange'); removeListener(node, context.onScriptError, 'error'); return { node: node, id: node && node.getAttribute('data-requiremodule') }; } function intakeDefines() { var args; //Any defined modules in the global queue, intake them now. takeGlobalQueue(); //Make sure any remaining defQueue items get properly processed. while (defQueue.length) { args = defQueue.shift(); if (args[0] === null) { return onError(makeError('mismatch', 'Mismatched anonymous define() module: ' + args[args.length - 1])); } else { //args are id, deps, factory. Should be normalized by the //define() function. callGetModule(args); } } } context = { config: config, contextName: contextName, registry: registry, defined: defined, urlFetched: urlFetched, defQueue: defQueue, Module: Module, makeModuleMap: makeModuleMap, nextTick: req.nextTick, /** * Set a configuration for the context. * @param {Object} cfg config object to integrate. */ configure: function (cfg) { //Make sure the baseUrl ends in a slash. if (cfg.baseUrl) { if (cfg.baseUrl.charAt(cfg.baseUrl.length - 1) !== '/') { cfg.baseUrl += '/'; } } //Save off the paths and packages since they require special processing, //they are additive. var pkgs = config.pkgs, shim = config.shim, objs = { paths: true, config: true, map: true }; eachProp(cfg, function (value, prop) { if (objs[prop]) { if (prop === 'map') { mixin(config[prop], value, true, true); } else { mixin(config[prop], value, true); } } else { config[prop] = value; } }); //Merge shim if (cfg.shim) { eachProp(cfg.shim, function (value, id) { //Normalize the structure if (isArray(value)) { value = { deps: value }; } if ((value.exports || value.init) && !value.exportsFn) { value.exportsFn = context.makeShimExports(value); } shim[id] = value; }); config.shim = shim; } //Adjust packages if necessary. if (cfg.packages) { each(cfg.packages, function (pkgObj) { var location; pkgObj = typeof pkgObj === 'string' ? {name: pkgObj} : pkgObj; location = pkgObj.location; //Create a brand new object on pkgs, since currentPackages can //be passed in again, and config.pkgs is the internal transformed //state for all package configs. pkgs[pkgObj.name] = { name: pkgObj.name, location: location || pkgObj.name, //Remove leading dot in main, so main paths are normalized, //and remove any trailing .js, since different package //envs have different conventions: some use a module name, //some use a file name. main: (pkgObj.main || 'main') .replace(currDirRegExp, '') .replace(jsSuffixRegExp, '') }; }); //Done with modifications, assing packages back to context config config.pkgs = pkgs; } //If there are any "waiting to execute" modules in the registry, //update the maps for them, since their info, like URLs to load, //may have changed. eachProp(registry, function (mod, id) { //If module already has init called, since it is too //late to modify them, and ignore unnormalized ones //since they are transient. if (!mod.inited && !mod.map.unnormalized) { mod.map = makeModuleMap(id); } }); //If a deps array or a config callback is specified, then call //require with those args. This is useful when require is defined as a //config object before require.js is loaded. if (cfg.deps || cfg.callback) { context.require(cfg.deps || [], cfg.callback); } }, makeShimExports: function (value) { function fn() { var ret; if (value.init) { ret = value.init.apply(global, arguments); } return ret || (value.exports && getGlobal(value.exports)); } return fn; }, makeRequire: function (relMap, options) { options = options || {}; function localRequire(deps, callback, errback) { var id, map, requireMod; if (options.enableBuildCallback && callback && isFunction(callback)) { callback.__requireJsBuild = true; } if (typeof deps === 'string') { if (isFunction(callback)) { //Invalid call return onError(makeError('requireargs', 'Invalid require call'), errback); } //If require|exports|module are requested, get the //value for them from the special handlers. Caveat: //this only works while module is being defined. if (relMap && hasProp(handlers, deps)) { return handlers[deps](registry[relMap.id]); } //Synchronous access to one module. If require.get is //available (as in the Node adapter), prefer that. if (req.get) { return req.get(context, deps, relMap); } //Normalize module name, if it contains . or .. map = makeModuleMap(deps, relMap, false, true); id = map.id; if (!hasProp(defined, id)) { return onError(makeError('notloaded', 'Module name "' + id + '" has not been loaded yet for context: ' + contextName + (relMap ? '' : '. Use require([])'))); } return defined[id]; } //Grab defines waiting in the global queue. intakeDefines(); //Mark all the dependencies as needing to be loaded. context.nextTick(function () { //Some defines could have been added since the //require call, collect them. intakeDefines(); requireMod = getModule(makeModuleMap(null, relMap)); //Store if map config should be applied to this require //call for dependencies. requireMod.skipMap = options.skipMap; requireMod.init(deps, callback, errback, { enabled: true }); checkLoaded(); }); return localRequire; } mixin(localRequire, { isBrowser: isBrowser, /** * Converts a module name + .extension into an URL path. * *Requires* the use of a module name. It does not support using * plain URLs like nameToUrl. */ toUrl: function (moduleNamePlusExt) { var index = moduleNamePlusExt.lastIndexOf('.'), ext = null; if (index !== -1) { ext = moduleNamePlusExt.substring(index, moduleNamePlusExt.length); moduleNamePlusExt = moduleNamePlusExt.substring(0, index); } return context.nameToUrl(normalize(moduleNamePlusExt, relMap && relMap.id, true), ext); }, defined: function (id) { return hasProp(defined, makeModuleMap(id, relMap, false, true).id); }, specified: function (id) { id = makeModuleMap(id, relMap, false, true).id; return hasProp(defined, id) || hasProp(registry, id); } }); //Only allow undef on top level require calls if (!relMap) { localRequire.undef = function (id) { //Bind any waiting define() calls to this context, //fix for #408 takeGlobalQueue(); var map = makeModuleMap(id, relMap, true), mod = getOwn(registry, id); delete defined[id]; delete urlFetched[map.url]; delete undefEvents[id]; if (mod) { //Hold on to listeners in case the //module will be attempted to be reloaded //using a different config. if (mod.events.defined) { undefEvents[id] = mod.events; } cleanRegistry(id); } }; } return localRequire; }, /** * Called to enable a module if it is still in the registry * awaiting enablement. parent module is passed in for context, * used by the optimizer. */ enable: function (depMap, parent) { var mod = getOwn(registry, depMap.id); if (mod) { getModule(depMap).enable(); } }, /** * Internal method used by environment adapters to complete a load event. * A load event could be a script load or just a load pass from a synchronous * load call. * @param {String} moduleName the name of the module to potentially complete. */ completeLoad: function (moduleName) { var found, args, mod, shim = getOwn(config.shim, moduleName) || {}, shExports = shim.exports; takeGlobalQueue(); while (defQueue.length) { args = defQueue.shift(); if (args[0] === null) { args[0] = moduleName; //If already found an anonymous module and bound it //to this name, then this is some other anon module //waiting for its completeLoad to fire. if (found) { break; } found = true; } else if (args[0] === moduleName) { //Found matching define call for this script! found = true; } callGetModule(args); } //Do this after the cycle of callGetModule in case the result //of those calls/init calls changes the registry. mod = getOwn(registry, moduleName); if (!found && !hasProp(defined, moduleName) && mod && !mod.inited) { if (config.enforceDefine && (!shExports || !getGlobal(shExports))) { if (hasPathFallback(moduleName)) { return; } else { return onError(makeError('nodefine', 'No define call for ' + moduleName, null, [moduleName])); } } else { //A script that does not call define(), so just simulate //the call for it. callGetModule([moduleName, (shim.deps || []), shim.exportsFn]); } } checkLoaded(); }, /** * Converts a module name to a file path. Supports cases where * moduleName may actually be just an URL. * Note that it **does not** call normalize on the moduleName, * it is assumed to have already been normalized. This is an * internal API, not a public one. Use toUrl for the public API. */ nameToUrl: function (moduleName, ext) { var paths, pkgs, pkg, pkgPath, syms, i, parentModule, url, parentPath; //If a colon is in the URL, it indicates a protocol is used and it is just //an URL to a file, or if it starts with a slash, contains a query arg (i.e. ?) //or ends with .js, then assume the user meant to use an url and not a module id. //The slash is important for protocol-less URLs as well as full paths. if (req.jsExtRegExp.test(moduleName)) { //Just a plain path, not module name lookup, so just return it. //Add extension if it is included. This is a bit wonky, only non-.js things pass //an extension, this method probably needs to be reworked. url = moduleName + (ext || ''); } else { //A module that needs to be converted to a path. paths = config.paths; pkgs = config.pkgs; syms = moduleName.split('/'); //For each module name segment, see if there is a path //registered for it. Start with most specific name //and work up from it. for (i = syms.length; i > 0; i -= 1) { parentModule = syms.slice(0, i).join('/'); pkg = getOwn(pkgs, parentModule); parentPath = getOwn(paths, parentModule); if (parentPath) { //If an array, it means there are a few choices, //Choose the one that is desired if (isArray(parentPath)) { parentPath = parentPath[0]; } syms.splice(0, i, parentPath); break; } else if (pkg) { //If module name is just the package name, then looking //for the main module. if (moduleName === pkg.name) { pkgPath = pkg.location + '/' + pkg.main; } else { pkgPath = pkg.location; } syms.splice(0, i, pkgPath); break; } } //Join the path parts together, then figure out if baseUrl is needed. url = syms.join('/'); url += (ext || (/\?/.test(url) ? '' : '.js')); url = (url.charAt(0) === '/' || url.match(/^[\w\+\.\-]+:/) ? '' : config.baseUrl) + url; } return config.urlArgs ? url + ((url.indexOf('?') === -1 ? '?' : '&') + config.urlArgs) : url; }, //Delegates to req.load. Broken out as a separate function to //allow overriding in the optimizer. load: function (id, url) { req.load(context, id, url); }, /** * Executes a module callack function. Broken out as a separate function * solely to allow the build system to sequence the files in the built * layer in the right sequence. * * @private */ execCb: function (name, callback, args, exports) { return callback.apply(exports, args); }, /** * callback for script loads, used to check status of loading. * * @param {Event} evt the event from the browser for the script * that was loaded. */ onScriptLoad: function (evt) { //Using currentTarget instead of target for Firefox 2.0's sake. Not //all old browsers will be supported, but this one was easy enough //to support and still makes sense. if (evt.type === 'load' || (readyRegExp.test((evt.currentTarget || evt.srcElement).readyState))) { //Reset interactive script so a script node is not held onto for //to long. interactiveScript = null; //Pull out the name of the module and the context. var data = getScriptData(evt); context.completeLoad(data.id); } }, /** * Callback for script errors. */ onScriptError: function (evt) { var data = getScriptData(evt); if (!hasPathFallback(data.id)) { return onError(makeError('scripterror', 'Script error', evt, [data.id])); } } }; context.require = context.makeRequire(); return context; } /** * Main entry point. * * If the only argument to require is a string, then the module that * is represented by that string is fetched for the appropriate context. * * If the first argument is an array, then it will be treated as an array * of dependency string names to fetch. An optional function callback can * be specified to execute when all of those dependencies are available. * * Make a local req variable to help Caja compliance (it assumes things * on a require that are not standardized), and to give a short * name for minification/local scope use. */ req = requirejs = function (deps, callback, errback, optional) { //Find the right context, use default var context, config, contextName = defContextName; // Determine if have config object in the call. if (!isArray(deps) && typeof deps !== 'string') { // deps is a config object config = deps; if (isArray(callback)) { // Adjust args if there are dependencies deps = callback; callback = errback; errback = optional; } else { deps = []; } } if (config && config.context) { contextName = config.context; } context = getOwn(contexts, contextName); if (!context) { context = contexts[contextName] = req.s.newContext(contextName); } if (config) { context.configure(config); } return context.require(deps, callback, errback); }; /** * Support require.config() to make it easier to cooperate with other * AMD loaders on globally agreed names. */ req.config = function (config) { return req(config); }; /** * Execute something after the current tick * of the event loop. Override for other envs * that have a better solution than setTimeout. * @param {Function} fn function to execute later. */ req.nextTick = typeof setTimeout !== 'undefined' ? function (fn) { setTimeout(fn, 4); } : function (fn) { fn(); }; /** * Export require as a global, but only if it does not already exist. */ if (!require) { require = req; } req.version = version; //Used to filter out dependencies that are already paths. req.jsExtRegExp = /^\/|:|\?|\.js$/; req.isBrowser = isBrowser; s = req.s = { contexts: contexts, newContext: newContext }; //Create default context. req({}); //Exports some context-sensitive methods on global require. each([ 'toUrl', 'undef', 'defined', 'specified' ], function (prop) { //Reference from contexts instead of early binding to default context, //so that during builds, the latest instance of the default context //with its config gets used. req[prop] = function () { var ctx = contexts[defContextName]; return ctx.require[prop].apply(ctx, arguments); }; }); if (isBrowser) { head = s.head = document.getElementsByTagName('head')[0]; //If BASE tag is in play, using appendChild is a problem for IE6. //When that browser dies, this can be removed. Details in this jQuery bug: //http://dev.jquery.com/ticket/2709 baseElement = document.getElementsByTagName('base')[0]; if (baseElement) { head = s.head = baseElement.parentNode; } } /** * Any errors that require explicitly generates will be passed to this * function. Intercept/override it if you want custom error handling. * @param {Error} err the error object. */ req.onError = function (err) { throw err; }; /** * Does the request to load a module for the browser case. * Make this a separate function to allow other environments * to override it. * * @param {Object} context the require context to find state. * @param {String} moduleName the name of the module. * @param {Object} url the URL to the module. */ req.load = function (context, moduleName, url) { var config = (context && context.config) || {}, node; if (isBrowser) { //In the browser so use a script tag node = config.xhtml ? document.createElementNS('http://www.w3.org/1999/xhtml', 'html:script') : document.createElement('script'); node.type = config.scriptType || 'text/javascript'; node.charset = 'utf-8'; node.async = true; node.setAttribute('data-requirecontext', context.contextName); node.setAttribute('data-requiremodule', moduleName); //Set up load listener. Test attachEvent first because IE9 has //a subtle issue in its addEventListener and script onload firings //that do not match the behavior of all other browsers with //addEventListener support, which fire the onload event for a //script right after the script execution. See: //https://connect.microsoft.com/IE/feedback/details/648057/script-onload-event-is-not-fired-immediately-after-script-execution //UNFORTUNATELY Opera implements attachEvent but does not follow the script //script execution mode. if (node.attachEvent && //Check if node.attachEvent is artificially added by custom script or //natively supported by browser //read https://github.com/jrburke/requirejs/issues/187 //if we can NOT find [native code] then it must NOT natively supported. //in IE8, node.attachEvent does not have toString() //Note the test for "[native code" with no closing brace, see: //https://github.com/jrburke/requirejs/issues/273 !(node.attachEvent.toString && node.attachEvent.toString().indexOf('[native code') < 0) && !isOpera) { //Probably IE. IE (at least 6-8) do not fire //script onload right after executing the script, so //we cannot tie the anonymous define call to a name. //However, IE reports the script as being in 'interactive' //readyState at the time of the define call. useInteractive = true; node.attachEvent('onreadystatechange', context.onScriptLoad); //It would be great to add an error handler here to catch //404s in IE9+. However, onreadystatechange will fire before //the error handler, so that does not help. If addEvenListener //is used, then IE will fire error before load, but we cannot //use that pathway given the connect.microsoft.com issue //mentioned above about not doing the 'script execute, //then fire the script load event listener before execute //next script' that other browsers do. //Best hope: IE10 fixes the issues, //and then destroys all installs of IE 6-9. //node.attachEvent('onerror', context.onScriptError); } else { node.addEventListener('load', context.onScriptLoad, false); node.addEventListener('error', context.onScriptError, false); } node.src = url; //For some cache cases in IE 6-8, the script executes before the end //of the appendChild execution, so to tie an anonymous define //call to the module name (which is stored on the node), hold on //to a reference to this node, but clear after the DOM insertion. currentlyAddingScript = node; if (baseElement) { head.insertBefore(node, baseElement); } else { head.appendChild(node); } currentlyAddingScript = null; return node; } else if (isWebWorker) { //In a web worker, use importScripts. This is not a very //efficient use of importScripts, importScripts will block until //its script is downloaded and evaluated. However, if web workers //are in play, the expectation that a build has been done so that //only one script needs to be loaded anyway. This may need to be //reevaluated if other use cases become common. importScripts(url); //Account for anonymous modules context.completeLoad(moduleName); } }; function getInteractiveScript() { if (interactiveScript && interactiveScript.readyState === 'interactive') { return interactiveScript; } eachReverse(scripts(), function (script) { if (script.readyState === 'interactive') { return (interactiveScript = script); } }); return interactiveScript; } //Look for a data-main script attribute, which could also adjust the baseUrl. if (isBrowser) { //Figure out baseUrl. Get it from the script tag with require.js in it. eachReverse(scripts(), function (script) { //Set the 'head' where we can append children by //using the script's parent. if (!head) { head = script.parentNode; } //Look for a data-main attribute to set main script for the page //to load. If it is there, the path to data main becomes the //baseUrl, if it is not already set. dataMain = script.getAttribute('data-main'); if (dataMain) { //Set final baseUrl if there is not already an explicit one. if (!cfg.baseUrl) { //Pull off the directory of data-main for use as the //baseUrl. src = dataMain.split('/'); mainScript = src.pop(); subPath = src.length ? src.join('/') + '/' : './'; cfg.baseUrl = subPath; dataMain = mainScript; } //Strip off any trailing .js since dataMain is now //like a module name. dataMain = dataMain.replace(jsSuffixRegExp, ''); //Put the data-main script in the files to load. cfg.deps = cfg.deps ? cfg.deps.concat(dataMain) : [dataMain]; return true; } }); } /** * The function that handles definitions of modules. Differs from * require() in that a string for the module should be the first argument, * and the function to execute after dependencies are loaded should * return a value to define the module corresponding to the first argument's * name. */ define = function (name, deps, callback) { var node, context; //Allow for anonymous modules if (typeof name !== 'string') { //Adjust args appropriately callback = deps; deps = name; name = null; } //This module may not have dependencies if (!isArray(deps)) { callback = deps; deps = []; } //If no name, and callback is a function, then figure out if it a //CommonJS thing with dependencies. if (!deps.length && isFunction(callback)) { //Remove comments from the callback string, //look for require calls, and pull them into the dependencies, //but only if there are function args. if (callback.length) { callback .toString() .replace(commentRegExp, '') .replace(cjsRequireRegExp, function (match, dep) { deps.push(dep); }); //May be a CommonJS thing even without require calls, but still //could use exports, and module. Avoid doing exports and module //work though if it just needs require. //REQUIRES the function to expect the CommonJS variables in the //order listed below. deps = (callback.length === 1 ? ['require'] : ['require', 'exports', 'module']).concat(deps); } } //If in IE 6-8 and hit an anonymous define() call, do the interactive //work. if (useInteractive) { node = currentlyAddingScript || getInteractiveScript(); if (node) { if (!name) { name = node.getAttribute('data-requiremodule'); } context = contexts[node.getAttribute('data-requirecontext')]; } } //Always save off evaluating the def call until the script onload handler. //This allows multiple modules to be in a file without prematurely //tracing dependencies, and allows for anonymous module support, //where the module name is not known until the script onload event //occurs. If no context, use the global queue, and get it processed //in the onscript load callback. (context ? context.defQueue : globalDefQueue).push([name, deps, callback]); }; define.amd = { jQuery: true }; /** * Executes the text. Normally just uses eval, but can be modified * to use a better, environment-specific call. Only used for transpiling * loader plugins, not for plain JS modules. * @param {String} text the text to execute/evaluate. */ req.exec = function (text) { /*jslint evil: true */ return eval(text); }; //Set up with config info. req(cfg); }(this));
import React, { Component } from 'react'; import logo from './logo.svg'; import './App.css'; import Example from './components/Example'; class App extends Component { render(){ return ( <div className="App"> <header className="App-header"> <img src={logo} className="App-logo" alt="logo" /> <p> Edit <code>src/App.js</code> and save to reload. </p> <a className="App-link" href="https://reactjs.org" target="_blank" rel="noopener noreferrer" > Learn React </a> <Example /> </header> </div> ); } } export default App;
import React from "react"; import { Link } from "react-router-dom"; import { Helmet } from "react-helmet"; import Particles from "react-particles-js"; import "./style.css"; export default () => { return ( <div className="found-container page-component"> <Helmet> <title>Energia Powered | User Verified</title> </Helmet> <Particles height="100%" className="particles" params={{ particles: { line_linked: { color: "#FFFFFF" }, number: { value: 80 }, size: { value: 2 } }, interactivity: { events: { onhover: { enable: true, mode: "repulse" }, onresize: { enable: true, density_auto: true, density_area: 100 } } } }} /> <section className="text-center found-content"> <div className="found-children"> <h1 className="section-title found-title"> Congrats! </h1> <p>Your email has been verfied successfully</p> <Link to="/login"> Please login </Link> </div> </section> </div> ); };
const stakingRewardAddress = '0xd6b2D8f59Bf30cfE7009fB4fC00a7b13Ca836A2c'; const conStakingTokenAddress = '0x154a9f9cbd3449ad22fdae23044319d6ef2a1fab'; const mainAddress = '0x39Bea96e13453Ed52A734B6ACEeD4c41F57B2271'; const charAddress = '0xc6f252c2cdd4087e30608a35c022ce490b58179b'; const weapAddress = '0x7e091b0a220356b157131c831258a9c98ac8031a'; const oracleAddress = '0x1cbfa0ec28da66896946474b2a93856eb725fbba'; const defaultAddress = '0x0000000000000000000000000000000000000000'; let NODE = 'https://bsc-dataseed1.ninicoin.io/' if (localStorage.getItem('node')){ NODE = localStorage.getItem('node') } const web3 = new Web3(NODE); // CONTRACTS const conStakingReward = new web3.eth.Contract(IStakingRewards.abi, stakingRewardAddress); const conStakingToken = new web3.eth.Contract(IERC20.abi, conStakingTokenAddress); const conCryptoBlades = new web3.eth.Contract(CryptoBlades.abi, mainAddress); const conCharacters = new web3.eth.Contract(Characters.abi, charAddress); const conWeapons = new web3.eth.Contract(Weapons.abi, weapAddress); const conOracle = new web3.eth.Contract(BasicPriceOracle.abi, oracleAddress); const isAddress = address => web3.utils.isAddress(address); const getBNBBalance = address => web3.eth.getBalance(address); const getStakedBalance = address => conStakingToken.methods.balanceOf(address).call({ from: defaultAddress }); const getStakedRewards = address => conStakingReward.methods.balanceOf(address).call({ from: defaultAddress }); const getStakedTimeLeft = address => conStakingReward.methods.getStakeUnlockTimeLeft().call({ from: address }); const getAccountCharacters = address => conCryptoBlades.methods.getMyCharacters().call({ from: address }); const getAccountWeapons = address => conCryptoBlades.methods.getMyWeapons().call({ from: address }); const getAccountSkillReward = address => conCryptoBlades.methods.getTokenRewards().call({ from: address }); const getIngameSkill = address => conCryptoBlades.methods.inGameOnlyFunds(address).call({ from: address }); const getCharacterExp = charId => conCryptoBlades.methods.getXpRewards(`${charId}`).call({ from: defaultAddress }); const characterTargets = (charId, weapId) => conCryptoBlades.methods.getTargets(charId, weapId).call({ from: defaultAddress }); const getCharacterStamina = charId => conCharacters.methods.getStaminaPoints(`${charId}`).call({ from: defaultAddress }); const getCharacterData = charId => conCharacters.methods.get(`${charId}`).call({ from: defaultAddress }); const getWeaponData = weapId => conWeapons.methods.get(`${weapId}`).call({ from: defaultAddress }); const getOraclePrice = () => conOracle.methods.currentPrice().call({ from: defaultAddress }); const fetchFightGasOffset = async () => conCryptoBlades.methods.usdToSkill(await conCryptoBlades.methods.fightRewardGasOffset().call({ from: defaultAddress })).call({ from: defaultAddress }); const fetchFightBaseline = async () => conCryptoBlades.methods.usdToSkill(await conCryptoBlades.methods.fightRewardBaseline().call({ from: defaultAddress })).call({ from: defaultAddress }); const decodeAbi = (types, data) => web3.eth.abi.decodeParameters(types, data); const getPasLogs = options => web3.eth.abi.getPasLogs(options);
import React, { Component } from 'react'; import { Dimensions, Image, StyleSheet, Text, TouchableHighlight, View, } from 'react-native'; import Slider from 'react-native-slider'; import {Audio} from 'expo-av'; //import {Font} from 'expo-font'; import { Asset } from 'expo'; import { MaterialIcons } from '@expo/vector-icons'; class PlaylistItem { constructor(name, uri, image) { this.name = name; this.uri = uri; this.image = image; } } const PLAYLIST = [ new PlaylistItem( 'Comfort Fit - “Sorry”', 'https://s3.amazonaws.com/exp-us-standard/audio/playlist-example/Comfort_Fit_-_03_-_Sorry.mp3', 'https://picsum.photos/250/300' ), new PlaylistItem( 'Mildred Bailey – “All Of Me”', 'https://ia800304.us.archive.org/34/items/PaulWhitemanwithMildredBailey/PaulWhitemanwithMildredBailey-AllofMe.mp3', 'https://picsum.photos/250/300' ), new PlaylistItem( 'Podington Bear - “Rubber Robot”', 'https://s3.amazonaws.com/exp-us-standard/audio/playlist-example/Podington_Bear_-_Rubber_Robot.mp3', 'https://picsum.photos/250/300' ), ]; const { width: DEVICE_WIDTH, height: DEVICE_HEIGHT } = Dimensions.get('window'); const BACKGROUND_COLOR = '#FFFFFF'; const DISABLED_OPACITY = 0.5; const FONT_SIZE = 14; const LOADING_STRING = 'Loading...'; const BUFFERING_STRING = 'Buffering...'; const RATE_SCALE = 3.0; export default class App extends Component { constructor(props) { super(props); this.index = 0; this.isSeeking = false; this.shouldPlayAtEndOfSeek = false; this.playbackInstance = null; this.state = { playbackInstanceName: LOADING_STRING, playbackInstancePosition: null, playbackInstanceDuration: null, shouldPlay: false, isPlaying: false, isBuffering: false, isLoading: true, fontLoaded: false, volume: 1.0, rate: 1.0, portrait: null, }; } componentDidMount() { Audio.setAudioModeAsync({ allowsRecordingIOS: false, interruptionModeIOS: Audio.INTERRUPTION_MODE_IOS_DO_NOT_MIX, playsInSilentModeIOS: true, shouldDuckAndroid: true, interruptionModeAndroid: Audio.INTERRUPTION_MODE_ANDROID_DO_NOT_MIX, playThroughEarpieceAndroid: true }); // (async () => { // await Font.loadAsync({ // roboto: require('./assets/fonts/Roboto.ttf'), // }); this.setState({ fontLoaded: true }); // })(); this._loadNewPlaybackInstance(false); } async _loadNewPlaybackInstance(playing) { if (this.playbackInstance != null) { await this.playbackInstance.unloadAsync(); this.playbackInstance.setOnPlaybackStatusUpdate(null); this.playbackInstance = null; } const source = { uri: PLAYLIST[this.index].uri }; const initialStatus = { shouldPlay: playing, rate: this.state.rate, volume: this.state.volume, }; const { sound, status } = await Audio.Sound.create( source, initialStatus, this._onPlaybackStatusUpdate ); this.playbackInstance = sound; this._updateScreenForLoading(false); } _updateScreenForLoading(isLoading) { if (isLoading) { this.setState({ isPlaying: false, playbackInstanceName: LOADING_STRING, playbackInstanceDuration: null, playbackInstancePosition: null, isLoading: true, }); } else { this.setState({ playbackInstanceName: PLAYLIST[this.index].name, portrait: PLAYLIST[this.index].image, isLoading: false, }); } } _onPlaybackStatusUpdate = status => { if (status.isLoaded) { this.setState({ playbackInstancePosition: status.positionMillis, playbackInstanceDuration: status.durationMillis, shouldPlay: status.shouldPlay, isPlaying: status.isPlaying, isBuffering: status.isBuffering, rate: status.rate, volume: status.volume, }); if (status.didJustFinish) { this._advanceIndex(true); this._updatePlaybackInstanceForIndex(true); } } else { if (status.error) { console.log(`FATAL PLAYER ERROR: ${status.error}`); } } }; _advanceIndex(forward) { this.index = (this.index + (forward ? 1 : PLAYLIST.length - 1)) % PLAYLIST.length; } async _updatePlaybackInstanceForIndex(playing) { this._updateScreenForLoading(true); this._loadNewPlaybackInstance(playing); } _onPlayPausePressed = () => { if (this.playbackInstance != null) { if (this.state.isPlaying) { this.playbackInstance.pauseAsync(); } else { this.playbackInstance.playAsync(); } } }; _onStopPressed = () => { if (this.playbackInstance != null) { this.playbackInstance.stopAsync(); } }; _onForwardPressed = () => { if (this.playbackInstance != null) { this._advanceIndex(true); this._updatePlaybackInstanceForIndex(this.state.shouldPlay); } }; _onBackPressed = () => { if (this.playbackInstance != null) { this._advanceIndex(false); this._updatePlaybackInstanceForIndex(this.state.shouldPlay); } }; _onVolumeSliderValueChange = value => { if (this.playbackInstance != null) { this.playbackInstance.setVolumeAsync(value); } }; _trySetRate = async rate => { if (this.playbackInstance != null) { try { await this.playbackInstance.setRateAsync(rate); } catch (error) { // Rate changing could not be performed, possibly because the client's Android API is too old. } } }; _onRateSliderSlidingComplete = async value => { this._trySetRate(value * RATE_SCALE); }; _onSeekSliderValueChange = value => { if (this.playbackInstance != null && !this.isSeeking) { this.isSeeking = true; this.shouldPlayAtEndOfSeek = this.state.shouldPlay; this.playbackInstance.pauseAsync(); } }; _onSeekSliderSlidingComplete = async value => { if (this.playbackInstance != null) { this.isSeeking = false; const seekPosition = value * this.state.playbackInstanceDuration; if (this.shouldPlayAtEndOfSeek) { this.playbackInstance.playFromPositionAsync(seekPosition); } else { this.playbackInstance.setPositionAsync(seekPosition); } } }; _getSeekSliderPosition() { if ( this.playbackInstance != null && this.state.playbackInstancePosition != null && this.state.playbackInstanceDuration != null ) { return ( this.state.playbackInstancePosition / this.state.playbackInstanceDuration ); } return 0; } _getMMSSFromMillis(millis) { const totalSeconds = millis / 1000; const seconds = Math.floor(totalSeconds % 60); const minutes = Math.floor(totalSeconds / 60); const padWithZero = number => { const string = number.toString(); if (number < 10) { return '0' + string; } return string; }; return padWithZero(minutes) + ':' + padWithZero(seconds); } _getTimestamp() { if ( this.playbackInstance != null && this.state.playbackInstancePosition != null && this.state.playbackInstanceDuration != null ) { return `${this._getMMSSFromMillis( this.state.playbackInstancePosition )} / ${this._getMMSSFromMillis( this.state.playbackInstanceDuration )}`; } return ''; } render() { return !this.state.fontLoaded ? ( <View /> ) : ( <View style={styles.container}> <View style={styles.portraitContainer}> {/* <Image style={styles.portrait} source={{uri: this.state.portrait}} /> */} </View> {/* <View style={styles.detailsContainer}> <Text> {this.state.playbackInstanceName} </Text> <Text> {this.state.isBuffering ? ( BUFFERING_STRING ) : ( this._getTimestamp() )} </Text> </View> */} <View style={[ styles.buttonsContainerBase,styles.buttonsContainerTopRow, { opacity: this.state.isLoading ? DISABLED_OPACITY : 1.0, }, ]} > <TouchableHighlight underlayColor={BACKGROUND_COLOR} style={styles.wrapper} onPress={this._onBackPressed} disabled={this.state.isLoading} > <View> <MaterialIcons name="fast-rewind" size={40} color="#56D5FA" /> </View> </TouchableHighlight> <TouchableHighlight underlayColor={BACKGROUND_COLOR} style={styles.wrapper} onPress={this._onPlayPausePressed} disabled={this.state.isLoading} > <View> {this.state.isPlaying ? ( <MaterialIcons name="pause" size={40} color="#56D5FA" /> ) : ( <MaterialIcons name="play-arrow" size={40} color="#56D5FA" /> )} </View> </TouchableHighlight> <TouchableHighlight underlayColor={BACKGROUND_COLOR} style={styles.wrapper} onPress={this._onStopPressed} disabled={this.state.isLoading} > <View> <MaterialIcons name="stop" size={40} color="#56D5FA" /> </View> </TouchableHighlight> <TouchableHighlight underlayColor={BACKGROUND_COLOR} style={styles.wrapper} onPress={this._onForwardPressed} disabled={this.state.isLoading} > <View> <MaterialIcons name="fast-forward" size={40} color="#56D5FA" /> </View> </TouchableHighlight> </View> <View style={[ styles.playbackContainer, { opacity: this.state.isLoading ? DISABLED_OPACITY : 1.0, }, ]} > <Slider style={styles.playbackSlider} value={this._getSeekSliderPosition()} onValueChange={this._onSeekSliderValueChange} onSlidingComplete={this._onSeekSliderSlidingComplete} thumbTintColor="#000000" minimumTrackTintColor="#4CCFF9" disabled={this.state.isLoading} /> </View> <View style={[ styles.buttonsContainerBase, styles.buttonsContainerMiddleRow, ]} > <View style={styles.volumeContainer}> <View> <MaterialIcons name="volume-down" size={40} color="#56D5FA" /> </View> <Slider style={styles.volumeSlider} value={1} onValueChange={this._onVolumeSliderValueChange} thumbTintColor="#000000" minimumTrackTintColor="#4CCFF9" /> <View> <MaterialIcons name="volume-up" size={40} color="#56D5FA" /> </View> </View> </View> {/* Barra cambio velocidad <View style={[ styles.buttonsContainerBase, styles.buttonsContainerBottomRow, ]} > <View> <MaterialIcons name="call-received" size={40} color="#56D5FA" /> </View> <Slider style={styles.rateSlider} value={this.state.rate / RATE_SCALE} onSlidingComplete={this._onRateSliderSlidingComplete} thumbTintColor="#000000" minimumTrackTintColor="#4CCFF9" /> <View> <MaterialIcons name="call-made" size={40} color="#56D5FA" /> </View> </View> */} </View> ); } } const styles = StyleSheet.create({ container: { flex: 1, position: 'absolute', //paddingTop: 500, top: 600, //flexDirection: 'column', //justifyContent: 'space-between', //alignItems: 'center', //alignSelf: 'stretch', backgroundColor: 'red',//BACKGROUND_COLOR, }, portraitContainer: { marginTop: 80, }, portrait: { backgroundColor:'green', height: 200, width: 200, }, detailsContainer: { height: 40, marginTop: 40, alignItems: 'center', }, playbackContainer: { flex: 1, flexDirection: 'column', justifyContent: 'space-between', alignItems: 'center', alignSelf: 'stretch', }, playbackSlider: { alignSelf: 'stretch', marginLeft: 10, marginRight: 10, }, text: { fontSize: FONT_SIZE, minHeight: FONT_SIZE, }, buttonsContainerBase: { flex: 1, flexDirection: 'row', alignItems: 'center', justifyContent: 'space-between', }, buttonsContainerTopRow: { maxHeight: 40, minWidth: DEVICE_WIDTH / 2.0, maxWidth: DEVICE_WIDTH / 2.0, }, buttonsContainerMiddleRow: { maxHeight: 40, alignSelf: 'stretch', paddingRight: 20, }, volumeContainer: { flex: 1, flexDirection: 'row', alignItems: 'center', justifyContent: 'space-between', minWidth: DEVICE_WIDTH - 40, maxWidth: DEVICE_WIDTH - 40, }, volumeSlider: { width: DEVICE_WIDTH - 80, }, buttonsContainerBottomRow: { alignSelf: 'stretch', }, rateSlider: { width: DEVICE_WIDTH - 80, }, });
var request = require("request"), assert = require("assert") exports.blockrio = blockrio function blockrio (type, wallets, opts) { return new Blockrio (type, wallets, opts) } function Blockrio (type, wallets, opts) { if (!(this instanceof Blockrio)) { return new Blockrio(type, wallets, opts) } var url if (opts.url) url = opts.url else url = "http://" + type + ".blockr.io/api/v1/address/balance/" wallets = wallets.join(",") this.address = url + wallets } Blockrio.prototype.request = function (cb) { request({ uri: this.address, method: 'GET', json: true }, function (err, res, json) { if (err) return cb(err) cb(null, json) }) } Blockrio.prototype.normalize = function (json) { if (json.data && json.data.balance) return [json.data.balance] return json.data.reduce(function (acc, curr) { acc.push(curr.balance) return acc }, []) } Blockrio.prototype.start = function (cb) { this.request(function (err, data) { if (err) return cb(err) try { var res = this.normalize(data) } catch (e) { err = e } if (err) return cb(err) cb(null, res) }.bind(this)) }
"""Compatibility fixes for older versions of libraries If you add content to this file, please give the version of the package at which the fix is no longer needed. # originally copied from scikit-learn """ # Authors: Emmanuelle Gouillart <[email protected]> # Gael Varoquaux <[email protected]> # Fabian Pedregosa <[email protected]> # Lars Buitinck <[email protected]> # License: BSD from distutils.version import LooseVersion import functools import inspect from math import log import os from pathlib import Path import warnings import numpy as np ############################################################################### # Misc # helpers to get function arguments def _get_args(function, varargs=False): params = inspect.signature(function).parameters args = [key for key, param in params.items() if param.kind not in (param.VAR_POSITIONAL, param.VAR_KEYWORD)] if varargs: varargs = [param.name for param in params.values() if param.kind == param.VAR_POSITIONAL] if len(varargs) == 0: varargs = None return args, varargs else: return args def _safe_svd(A, **kwargs): """Wrapper to get around the SVD did not converge error of death""" # Intel has a bug with their GESVD driver: # https://software.intel.com/en-us/forums/intel-distribution-for-python/topic/628049 # noqa: E501 # For SciPy 0.18 and up, we can work around it by using # lapack_driver='gesvd' instead. from scipy import linalg if kwargs.get('overwrite_a', False): raise ValueError('Cannot set overwrite_a=True with this function') try: return linalg.svd(A, **kwargs) except np.linalg.LinAlgError as exp: from .utils import warn if 'lapack_driver' in _get_args(linalg.svd): warn('SVD error (%s), attempting to use GESVD instead of GESDD' % (exp,)) return linalg.svd(A, lapack_driver='gesvd', **kwargs) else: raise def _csc_matrix_cast(x): from scipy.sparse import csc_matrix return csc_matrix(x) ############################################################################### # Backporting nibabel's read_geometry def _get_read_geometry(): """Get the geometry reading function.""" try: import nibabel as nib has_nibabel = True except ImportError: has_nibabel = False if has_nibabel: from nibabel.freesurfer import read_geometry else: read_geometry = _read_geometry return read_geometry def _read_geometry(filepath, read_metadata=False, read_stamp=False): """Backport from nibabel.""" from .surface import _fread3, _fread3_many volume_info = dict() TRIANGLE_MAGIC = 16777214 QUAD_MAGIC = 16777215 NEW_QUAD_MAGIC = 16777213 with open(filepath, "rb") as fobj: magic = _fread3(fobj) if magic in (QUAD_MAGIC, NEW_QUAD_MAGIC): # Quad file nvert = _fread3(fobj) nquad = _fread3(fobj) (fmt, div) = (">i2", 100.) if magic == QUAD_MAGIC else (">f4", 1.) coords = np.fromfile(fobj, fmt, nvert * 3).astype(np.float64) / div coords = coords.reshape(-1, 3) quads = _fread3_many(fobj, nquad * 4) quads = quads.reshape(nquad, 4) # # Face splitting follows # faces = np.zeros((2 * nquad, 3), dtype=np.int64) nface = 0 for quad in quads: if (quad[0] % 2) == 0: faces[nface] = quad[0], quad[1], quad[3] nface += 1 faces[nface] = quad[2], quad[3], quad[1] nface += 1 else: faces[nface] = quad[0], quad[1], quad[2] nface += 1 faces[nface] = quad[0], quad[2], quad[3] nface += 1 elif magic == TRIANGLE_MAGIC: # Triangle file create_stamp = fobj.readline().rstrip(b'\n').decode('utf-8') fobj.readline() vnum = np.fromfile(fobj, ">i4", 1)[0] fnum = np.fromfile(fobj, ">i4", 1)[0] coords = np.fromfile(fobj, ">f4", vnum * 3).reshape(vnum, 3) faces = np.fromfile(fobj, ">i4", fnum * 3).reshape(fnum, 3) if read_metadata: volume_info = _read_volume_info(fobj) else: raise ValueError("File does not appear to be a Freesurfer surface") coords = coords.astype(np.float64) # XXX: due to mayavi bug on mac 32bits ret = (coords, faces) if read_metadata: if len(volume_info) == 0: warnings.warn('No volume information contained in the file') ret += (volume_info,) if read_stamp: ret += (create_stamp,) return ret ############################################################################### # Triaging FFT functions to get fast pocketfft (SciPy 1.4) @functools.lru_cache(None) def _import_fft(name): single = False if not isinstance(name, tuple): name = (name,) single = True try: from scipy.fft import rfft # noqa analysis:ignore except ImportError: from numpy import fft # noqa else: from scipy import fft # noqa out = [getattr(fft, n) for n in name] if single: out = out[0] return out ############################################################################### # NumPy Generator (NumPy 1.17) def rng_uniform(rng): """Get the unform/randint from the rng.""" # prefer Generator.integers, fall back to RandomState.randint return getattr(rng, 'integers', getattr(rng, 'randint', None)) def _validate_sos(sos): """Helper to validate a SOS input""" sos = np.atleast_2d(sos) if sos.ndim != 2: raise ValueError('sos array must be 2D') n_sections, m = sos.shape if m != 6: raise ValueError('sos array must be shape (n_sections, 6)') if not (sos[:, 3] == 1).all(): raise ValueError('sos[:, 3] should be all ones') return sos, n_sections ############################################################################### # Misc utilities # get_fdata() requires knowing the dtype ahead of time, so let's triage on our # own instead def _get_img_fdata(img): data = np.asanyarray(img.dataobj) dtype = np.complex128 if np.iscomplexobj(data) else np.float64 return data.astype(dtype) def _read_volume_info(fobj): """An implementation of nibabel.freesurfer.io._read_volume_info, since old versions of nibabel (<=2.1.0) don't have it. """ volume_info = dict() head = np.fromfile(fobj, '>i4', 1) if not np.array_equal(head, [20]): # Read two bytes more head = np.concatenate([head, np.fromfile(fobj, '>i4', 2)]) if not np.array_equal(head, [2, 0, 20]): warnings.warn("Unknown extension code.") return volume_info volume_info['head'] = head for key in ['valid', 'filename', 'volume', 'voxelsize', 'xras', 'yras', 'zras', 'cras']: pair = fobj.readline().decode('utf-8').split('=') if pair[0].strip() != key or len(pair) != 2: raise IOError('Error parsing volume info.') if key in ('valid', 'filename'): volume_info[key] = pair[1].strip() elif key == 'volume': volume_info[key] = np.array(pair[1].split()).astype(int) else: volume_info[key] = np.array(pair[1].split()).astype(float) # Ignore the rest return volume_info def _serialize_volume_info(volume_info): """An implementation of nibabel.freesurfer.io._serialize_volume_info, since old versions of nibabel (<=2.1.0) don't have it.""" keys = ['head', 'valid', 'filename', 'volume', 'voxelsize', 'xras', 'yras', 'zras', 'cras'] diff = set(volume_info.keys()).difference(keys) if len(diff) > 0: raise ValueError('Invalid volume info: %s.' % diff.pop()) strings = list() for key in keys: if key == 'head': if not (np.array_equal(volume_info[key], [20]) or np.array_equal( volume_info[key], [2, 0, 20])): warnings.warn("Unknown extension code.") strings.append(np.array(volume_info[key], dtype='>i4').tobytes()) elif key in ('valid', 'filename'): val = volume_info[key] strings.append('{} = {}\n'.format(key, val).encode('utf-8')) elif key == 'volume': val = volume_info[key] strings.append('{} = {} {} {}\n'.format( key, val[0], val[1], val[2]).encode('utf-8')) else: val = volume_info[key] strings.append('{} = {:0.10g} {:0.10g} {:0.10g}\n'.format( key.ljust(6), val[0], val[1], val[2]).encode('utf-8')) return b''.join(strings) ############################################################################## # adapted from scikit-learn def is_classifier(estimator): """Returns True if the given estimator is (probably) a classifier. Parameters ---------- estimator : object Estimator object to test. Returns ------- out : bool True if estimator is a classifier and False otherwise. """ return getattr(estimator, "_estimator_type", None) == "classifier" def is_regressor(estimator): """Returns True if the given estimator is (probably) a regressor. Parameters ---------- estimator : object Estimator object to test. Returns ------- out : bool True if estimator is a regressor and False otherwise. """ return getattr(estimator, "_estimator_type", None) == "regressor" _DEFAULT_TAGS = { 'non_deterministic': False, 'requires_positive_X': False, 'requires_positive_y': False, 'X_types': ['2darray'], 'poor_score': False, 'no_validation': False, 'multioutput': False, "allow_nan": False, 'stateless': False, 'multilabel': False, '_skip_test': False, '_xfail_checks': False, 'multioutput_only': False, 'binary_only': False, 'requires_fit': True, 'preserves_dtype': [np.float64], 'requires_y': False, 'pairwise': False, } class BaseEstimator(object): """Base class for all estimators in scikit-learn. Notes ----- All estimators should specify all the parameters that can be set at the class level in their ``__init__`` as explicit keyword arguments (no ``*args`` or ``**kwargs``). """ @classmethod def _get_param_names(cls): """Get parameter names for the estimator""" # fetch the constructor or the original constructor before # deprecation wrapping if any init = getattr(cls.__init__, 'deprecated_original', cls.__init__) if init is object.__init__: # No explicit constructor to introspect return [] # introspect the constructor arguments to find the model parameters # to represent init_signature = inspect.signature(init) # Consider the constructor parameters excluding 'self' parameters = [p for p in init_signature.parameters.values() if p.name != 'self' and p.kind != p.VAR_KEYWORD] for p in parameters: if p.kind == p.VAR_POSITIONAL: raise RuntimeError("scikit-learn estimators should always " "specify their parameters in the signature" " of their __init__ (no varargs)." " %s with constructor %s doesn't " " follow this convention." % (cls, init_signature)) # Extract and sort argument names excluding 'self' return sorted([p.name for p in parameters]) def get_params(self, deep=True): """Get parameters for this estimator. Parameters ---------- deep : bool, optional If True, will return the parameters for this estimator and contained subobjects that are estimators. Returns ------- params : dict Parameter names mapped to their values. """ out = dict() for key in self._get_param_names(): # We need deprecation warnings to always be on in order to # catch deprecated param values. # This is set in utils/__init__.py but it gets overwritten # when running under python3 somehow. warnings.simplefilter("always", DeprecationWarning) try: with warnings.catch_warnings(record=True) as w: value = getattr(self, key, None) if len(w) and w[0].category == DeprecationWarning: # if the parameter is deprecated, don't show it continue finally: warnings.filters.pop(0) # XXX: should we rather test if instance of estimator? if deep and hasattr(value, 'get_params'): deep_items = value.get_params().items() out.update((key + '__' + k, val) for k, val in deep_items) out[key] = value return out def set_params(self, **params): """Set the parameters of this estimator. The method works on simple estimators as well as on nested objects (such as pipelines). The latter have parameters of the form ``<component>__<parameter>`` so that it's possible to update each component of a nested object. Parameters ---------- **params : dict Parameters. Returns ------- inst : instance The object. """ if not params: # Simple optimisation to gain speed (inspect is slow) return self valid_params = self.get_params(deep=True) for key, value in params.items(): split = key.split('__', 1) if len(split) > 1: # nested objects case name, sub_name = split if name not in valid_params: raise ValueError('Invalid parameter %s for estimator %s. ' 'Check the list of available parameters ' 'with `estimator.get_params().keys()`.' % (name, self)) sub_object = valid_params[name] sub_object.set_params(**{sub_name: value}) else: # simple objects case if key not in valid_params: raise ValueError('Invalid parameter %s for estimator %s. ' 'Check the list of available parameters ' 'with `estimator.get_params().keys()`.' % (key, self.__class__.__name__)) setattr(self, key, value) return self def __repr__(self): from sklearn.base import _pprint class_name = self.__class__.__name__ return '%s(%s)' % (class_name, _pprint(self.get_params(deep=False), offset=len(class_name),),) # __getstate__ and __setstate__ are omitted because they only contain # conditionals that are not satisfied by our objects (e.g., # ``if type(self).__module__.startswith('sklearn.')``. def _more_tags(self): return _DEFAULT_TAGS def _get_tags(self): collected_tags = {} for base_class in reversed(inspect.getmro(self.__class__)): if hasattr(base_class, '_more_tags'): # need the if because mixins might not have _more_tags # but might do redundant work in estimators # (i.e. calling more tags on BaseEstimator multiple times) more_tags = base_class._more_tags(self) collected_tags.update(more_tags) return collected_tags # newer sklearn deprecates importing from sklearn.metrics.scoring, # but older sklearn does not expose check_scoring in sklearn.metrics. def _get_check_scoring(): try: from sklearn.metrics import check_scoring # noqa except ImportError: from sklearn.metrics.scorer import check_scoring # noqa return check_scoring def _check_fit_params(X, fit_params, indices=None): """Check and validate the parameters passed during `fit`. Parameters ---------- X : array-like of shape (n_samples, n_features) Data array. fit_params : dict Dictionary containing the parameters passed at fit. indices : array-like of shape (n_samples,), default=None Indices to be selected if the parameter has the same size as `X`. Returns ------- fit_params_validated : dict Validated parameters. We ensure that the values support indexing. """ try: from sklearn.utils.validation import \ _check_fit_params as _sklearn_check_fit_params return _sklearn_check_fit_params(X, fit_params, indices) except ImportError: from sklearn.model_selection import _validation fit_params_validated = \ {k: _validation._index_param_value(X, v, indices) for k, v in fit_params.items()} return fit_params_validated ############################################################################### # Copied from sklearn to simplify code paths def empirical_covariance(X, assume_centered=False): """Computes the Maximum likelihood covariance estimator Parameters ---------- X : ndarray, shape (n_samples, n_features) Data from which to compute the covariance estimate assume_centered : Boolean If True, data are not centered before computation. Useful when working with data whose mean is almost, but not exactly zero. If False, data are centered before computation. Returns ------- covariance : 2D ndarray, shape (n_features, n_features) Empirical covariance (Maximum Likelihood Estimator). """ X = np.asarray(X) if X.ndim == 1: X = np.reshape(X, (1, -1)) if X.shape[0] == 1: warnings.warn("Only one sample available. " "You may want to reshape your data array") if assume_centered: covariance = np.dot(X.T, X) / X.shape[0] else: covariance = np.cov(X.T, bias=1) if covariance.ndim == 0: covariance = np.array([[covariance]]) return covariance class EmpiricalCovariance(BaseEstimator): """Maximum likelihood covariance estimator Read more in the :ref:`User Guide <covariance>`. Parameters ---------- store_precision : bool Specifies if the estimated precision is stored. assume_centered : bool If True, data are not centered before computation. Useful when working with data whose mean is almost, but not exactly zero. If False (default), data are centered before computation. Attributes ---------- covariance_ : 2D ndarray, shape (n_features, n_features) Estimated covariance matrix precision_ : 2D ndarray, shape (n_features, n_features) Estimated pseudo-inverse matrix. (stored only if store_precision is True) """ def __init__(self, store_precision=True, assume_centered=False): self.store_precision = store_precision self.assume_centered = assume_centered def _set_covariance(self, covariance): """Saves the covariance and precision estimates Storage is done accordingly to `self.store_precision`. Precision stored only if invertible. Parameters ---------- covariance : 2D ndarray, shape (n_features, n_features) Estimated covariance matrix to be stored, and from which precision is computed. """ from scipy import linalg # covariance = check_array(covariance) # set covariance self.covariance_ = covariance # set precision if self.store_precision: self.precision_ = linalg.pinvh(covariance) else: self.precision_ = None def get_precision(self): """Getter for the precision matrix. Returns ------- precision_ : array-like, The precision matrix associated to the current covariance object. """ from scipy import linalg if self.store_precision: precision = self.precision_ else: precision = linalg.pinvh(self.covariance_) return precision def fit(self, X, y=None): """Fit the Maximum Likelihood Estimator covariance model. Parameters ---------- X : array-like, shape = [n_samples, n_features] Training data, where n_samples is the number of samples and n_features is the number of features. y : ndarray | None Not used, present for API consistency. Returns ------- self : object Returns self. """ # noqa: E501 # X = check_array(X) if self.assume_centered: self.location_ = np.zeros(X.shape[1]) else: self.location_ = X.mean(0) covariance = empirical_covariance( X, assume_centered=self.assume_centered) self._set_covariance(covariance) return self def score(self, X_test, y=None): """Compute the log-likelihood of a Gaussian dataset. Uses ``self.covariance_`` as an estimator of its covariance matrix. Parameters ---------- X_test : array-like, shape = [n_samples, n_features] Test data of which we compute the likelihood, where n_samples is the number of samples and n_features is the number of features. X_test is assumed to be drawn from the same distribution than the data used in fit (including centering). y : ndarray | None Not used, present for API consistency. Returns ------- res : float The likelihood of the data set with `self.covariance_` as an estimator of its covariance matrix. """ # compute empirical covariance of the test set test_cov = empirical_covariance( X_test - self.location_, assume_centered=True) # compute log likelihood res = log_likelihood(test_cov, self.get_precision()) return res def error_norm(self, comp_cov, norm='frobenius', scaling=True, squared=True): """Computes the Mean Squared Error between two covariance estimators. Parameters ---------- comp_cov : array-like, shape = [n_features, n_features] The covariance to compare with. norm : str The type of norm used to compute the error. Available error types: - 'frobenius' (default): sqrt(tr(A^t.A)) - 'spectral': sqrt(max(eigenvalues(A^t.A)) where A is the error ``(comp_cov - self.covariance_)``. scaling : bool If True (default), the squared error norm is divided by n_features. If False, the squared error norm is not rescaled. squared : bool Whether to compute the squared error norm or the error norm. If True (default), the squared error norm is returned. If False, the error norm is returned. Returns ------- The Mean Squared Error (in the sense of the Frobenius norm) between `self` and `comp_cov` covariance estimators. """ from scipy import linalg # compute the error error = comp_cov - self.covariance_ # compute the error norm if norm == "frobenius": squared_norm = np.sum(error ** 2) elif norm == "spectral": squared_norm = np.amax(linalg.svdvals(np.dot(error.T, error))) else: raise NotImplementedError( "Only spectral and frobenius norms are implemented") # optionally scale the error norm if scaling: squared_norm = squared_norm / error.shape[0] # finally get either the squared norm or the norm if squared: result = squared_norm else: result = np.sqrt(squared_norm) return result def mahalanobis(self, observations): """Computes the squared Mahalanobis distances of given observations. Parameters ---------- observations : array-like, shape = [n_observations, n_features] The observations, the Mahalanobis distances of the which we compute. Observations are assumed to be drawn from the same distribution than the data used in fit. Returns ------- mahalanobis_distance : array, shape = [n_observations,] Squared Mahalanobis distances of the observations. """ precision = self.get_precision() # compute mahalanobis distances centered_obs = observations - self.location_ mahalanobis_dist = np.sum( np.dot(centered_obs, precision) * centered_obs, 1) return mahalanobis_dist def log_likelihood(emp_cov, precision): """Computes the sample mean of the log_likelihood under a covariance model computes the empirical expected log-likelihood (accounting for the normalization terms and scaling), allowing for universal comparison (beyond this software package) Parameters ---------- emp_cov : 2D ndarray (n_features, n_features) Maximum Likelihood Estimator of covariance precision : 2D ndarray (n_features, n_features) The precision matrix of the covariance model to be tested Returns ------- sample mean of the log-likelihood """ p = precision.shape[0] log_likelihood_ = - np.sum(emp_cov * precision) + _logdet(precision) log_likelihood_ -= p * np.log(2 * np.pi) log_likelihood_ /= 2. return log_likelihood_ # sklearn uses np.linalg for this, but ours is more robust to zero eigenvalues def _logdet(A): """Compute the log det of a positive semidefinite matrix.""" from scipy import linalg vals = linalg.eigvalsh(A) # avoid negative (numerical errors) or zero (semi-definite matrix) values tol = vals.max() * vals.size * np.finfo(np.float64).eps vals = np.where(vals > tol, vals, tol) return np.sum(np.log(vals)) def _infer_dimension_(spectrum, n_samples, n_features): """Infers the dimension of a dataset of shape (n_samples, n_features) The dataset is described by its spectrum `spectrum`. """ n_spectrum = len(spectrum) ll = np.empty(n_spectrum) for rank in range(n_spectrum): ll[rank] = _assess_dimension_(spectrum, rank, n_samples, n_features) return ll.argmax() def _assess_dimension_(spectrum, rank, n_samples, n_features): from scipy.special import gammaln if rank > len(spectrum): raise ValueError("The tested rank cannot exceed the rank of the" " dataset") pu = -rank * log(2.) for i in range(rank): pu += (gammaln((n_features - i) / 2.) - log(np.pi) * (n_features - i) / 2.) pl = np.sum(np.log(spectrum[:rank])) pl = -pl * n_samples / 2. if rank == n_features: pv = 0 v = 1 else: v = np.sum(spectrum[rank:]) / (n_features - rank) pv = -np.log(v) * n_samples * (n_features - rank) / 2. m = n_features * rank - rank * (rank + 1.) / 2. pp = log(2. * np.pi) * (m + rank + 1.) / 2. pa = 0. spectrum_ = spectrum.copy() spectrum_[rank:n_features] = v for i in range(rank): for j in range(i + 1, len(spectrum)): pa += log((spectrum[i] - spectrum[j]) * (1. / spectrum_[j] - 1. / spectrum_[i])) + log(n_samples) ll = pu + pl + pv + pp - pa / 2. - rank * log(n_samples) / 2. return ll def svd_flip(u, v, u_based_decision=True): if u_based_decision: # columns of u, rows of v max_abs_cols = np.argmax(np.abs(u), axis=0) signs = np.sign(u[max_abs_cols, np.arange(u.shape[1])]) u *= signs v *= signs[:, np.newaxis] else: # rows of v, columns of u max_abs_rows = np.argmax(np.abs(v), axis=1) signs = np.sign(v[np.arange(v.shape[0]), max_abs_rows]) u *= signs v *= signs[:, np.newaxis] return u, v def stable_cumsum(arr, axis=None, rtol=1e-05, atol=1e-08): """Use high precision for cumsum and check that final value matches sum Parameters ---------- arr : array-like To be cumulatively summed as flat axis : int, optional Axis along which the cumulative sum is computed. The default (None) is to compute the cumsum over the flattened array. rtol : float Relative tolerance, see ``np.allclose`` atol : float Absolute tolerance, see ``np.allclose`` """ out = np.cumsum(arr, axis=axis, dtype=np.float64) expected = np.sum(arr, axis=axis, dtype=np.float64) if not np.all(np.isclose(out.take(-1, axis=axis), expected, rtol=rtol, atol=atol, equal_nan=True)): warnings.warn('cumsum was found to be unstable: ' 'its last element does not correspond to sum', RuntimeWarning) return out # This shim can be removed once NumPy 1.19.0+ is required (1.18.4 has sign bug) def svd(a, hermitian=False): if hermitian: # faster s, u = np.linalg.eigh(a) sgn = np.sign(s) s = np.abs(s) sidx = np.argsort(s)[..., ::-1] sgn = take_along_axis(sgn, sidx, axis=-1) s = take_along_axis(s, sidx, axis=-1) u = take_along_axis(u, sidx[..., None, :], axis=-1) # singular values are unsigned, move the sign into v vt = (u * sgn[..., np.newaxis, :]).swapaxes(-2, -1).conj() np.abs(s, out=s) return u, s, vt else: return np.linalg.svd(a) ############################################################################### # NumPy einsum backward compat (allow "optimize" arg and fix 1.14.0 bug) # XXX eventually we should hand-tune our `einsum` calls given our array sizes! def einsum(*args, **kwargs): if 'optimize' not in kwargs: kwargs['optimize'] = False return np.einsum(*args, **kwargs) try: from numpy import take_along_axis except ImportError: # NumPy < 1.15 def take_along_axis(arr, indices, axis): # normalize inputs if axis is None: arr = arr.flat arr_shape = (len(arr),) # flatiter has no .shape axis = 0 else: # there is a NumPy function for this, but rather than copy our # internal uses should be correct, so just normalize quickly if axis < 0: axis += arr.ndim assert 0 <= axis < arr.ndim arr_shape = arr.shape # use the fancy index return arr[_make_along_axis_idx(arr_shape, indices, axis)] def _make_along_axis_idx(arr_shape, indices, axis): # compute dimensions to iterate over if not np.issubdtype(indices.dtype, np.integer): raise IndexError('`indices` must be an integer array') if len(arr_shape) != indices.ndim: raise ValueError( "`indices` and `arr` must have the same number of dimensions") shape_ones = (1,) * indices.ndim dest_dims = list(range(axis)) + [None] + list(range(axis+1, indices.ndim)) # build a fancy index, consisting of orthogonal aranges, with the # requested index inserted at the right location fancy_index = [] for dim, n in zip(dest_dims, arr_shape): if dim is None: fancy_index.append(indices) else: ind_shape = shape_ones[:dim] + (-1,) + shape_ones[dim+1:] fancy_index.append(np.arange(n).reshape(ind_shape)) return tuple(fancy_index) ############################################################################### # From nilearn def _crop_colorbar(cbar, cbar_vmin, cbar_vmax): """ crop a colorbar to show from cbar_vmin to cbar_vmax Used when symmetric_cbar=False is used. """ import matplotlib if (cbar_vmin is None) and (cbar_vmax is None): return cbar_tick_locs = cbar.locator.locs if cbar_vmax is None: cbar_vmax = cbar_tick_locs.max() if cbar_vmin is None: cbar_vmin = cbar_tick_locs.min() new_tick_locs = np.linspace(cbar_vmin, cbar_vmax, len(cbar_tick_locs)) # matplotlib >= 3.2.0 no longer normalizes axes between 0 and 1 # See https://matplotlib.org/3.2.1/api/prev_api_changes/api_changes_3.2.0.html # _outline was removed in # https://github.com/matplotlib/matplotlib/commit/03a542e875eba091a027046d5ec652daa8be6863 # so we use the code from there if LooseVersion(matplotlib.__version__) >= LooseVersion("3.2.0"): cbar.ax.set_ylim(cbar_vmin, cbar_vmax) X, _ = cbar._mesh() X = np.array([X[0], X[-1]]) Y = np.array([[cbar_vmin, cbar_vmin], [cbar_vmax, cbar_vmax]]) N = X.shape[0] ii = [0, 1, N - 2, N - 1, 2 * N - 1, 2 * N - 2, N + 1, N, 0] x = X.T.reshape(-1)[ii] y = Y.T.reshape(-1)[ii] xy = (np.column_stack([y, x]) if cbar.orientation == 'horizontal' else np.column_stack([x, y])) cbar.outline.set_xy(xy) else: cbar.ax.set_ylim(cbar.norm(cbar_vmin), cbar.norm(cbar_vmax)) outline = cbar.outline.get_xy() outline[:2, 1] += cbar.norm(cbar_vmin) outline[2:6, 1] -= (1. - cbar.norm(cbar_vmax)) outline[6:, 1] += cbar.norm(cbar_vmin) cbar.outline.set_xy(outline) cbar.set_ticks(new_tick_locs, update_ticks=True) ############################################################################### # Matplotlib def _get_status(checks): """Deal with old MPL to get check box statuses.""" try: return list(checks.get_status()) except AttributeError: return [x[0].get_visible() for x in checks.lines] ############################################################################### # Numba (optional requirement) # Here we choose different defaults to speed things up by default try: import numba if LooseVersion(numba.__version__) < LooseVersion('0.40'): raise ImportError prange = numba.prange def jit(nopython=True, nogil=True, fastmath=True, cache=True, **kwargs): # noqa return numba.jit(nopython=nopython, nogil=nogil, fastmath=fastmath, cache=cache, **kwargs) except ImportError: has_numba = False else: has_numba = (os.getenv('MNE_USE_NUMBA', 'true').lower() == 'true') if not has_numba: def jit(**kwargs): # noqa def _jit(func): return func return _jit prange = range bincount = np.bincount mean = np.mean else: @jit() def bincount(x, weights, minlength): # noqa: D103 out = np.zeros(minlength) for idx, w in zip(x, weights): out[idx] += w return out # fix because Numba does not support axis kwarg for mean @jit() def _np_apply_along_axis(func1d, axis, arr): assert arr.ndim == 2 assert axis in [0, 1] if axis == 0: result = np.empty(arr.shape[1]) for i in range(len(result)): result[i] = func1d(arr[:, i]) else: result = np.empty(arr.shape[0]) for i in range(len(result)): result[i] = func1d(arr[i, :]) return result @jit() def mean(array, axis): return _np_apply_along_axis(np.mean, axis, array) ############################################################################### # Added in Python 3.7 (remove when we drop support for 3.6) try: from contextlib import nullcontext except ImportError: from contextlib import contextmanager @contextmanager def nullcontext(enter_result=None): yield enter_result
import React from 'react'; import Title from 'react-title-component'; import CodeExample from '../../../CodeExample'; import PropTypeDescription from '../../../PropTypeDescription'; import MarkdownElement from '../../../MarkdownElement'; import sliderReadmeText from './README'; import SliderExampleSimple from './ExampleSimple'; import sliderExampleSimpleCode from '!raw!./ExampleSimple'; import SliderExampleDisabled from './ExampleDisabled'; import sliderExampleDisabledCode from '!raw!./ExampleDisabled'; import SliderExampleStep from './ExampleStep'; import sliderExampleStepCode from '!raw!./ExampleStep'; import SliderExampleControlled from './ExampleControlled'; import sliderExampleControlledCode from '!raw!./ExampleControlled'; import sliderCode from '!raw!material-ui/lib/Slider/Slider'; const descriptions = { simple: 'The `defaultValue` property sets the initial position of the slider. The slider appearance changes when ' + 'not at the starting position.', stepped: 'By default, the slider is continuous. The `step` property causes the slider to move in discrete ' + 'increments.', value: 'The slider bar can have a set minimum and maximum, and the value can be ' + 'obtained through the value parameter fired on an onChange event.', }; const SliderPage = () => ( <div> <Title render={(previousTitle) => `Slider - ${previousTitle}`} /> <MarkdownElement text={sliderReadmeText} /> <CodeExample title="Simple examples" description={descriptions.simple} code={sliderExampleSimpleCode} > <SliderExampleSimple /> </CodeExample> <CodeExample title="Disabled examples" code={sliderExampleDisabledCode} > <SliderExampleDisabled /> </CodeExample> <CodeExample title="Stepped example" description={descriptions.stepped} code={sliderExampleStepCode} > <SliderExampleStep /> </CodeExample> <CodeExample title="Controlled Examples" description={descriptions.value} code={sliderExampleControlledCode} > <SliderExampleControlled /> </CodeExample> <PropTypeDescription code={sliderCode} /> </div> ); export default SliderPage;
import React from 'react'; import ReactDOM from 'react-dom'; import renderer from 'react-test-renderer'; import SimpleBanner from '../SimpleBanner'; import { componentProperties, componentAttributes, } from '../componentProperties'; const reactProps = { ...componentAttributes, ...componentProperties }; it('renders without crashing', () => { const div = document.createElement('div'); ReactDOM.render(<SimpleBanner {...reactProps} />, div); ReactDOM.unmountComponentAtNode(div); }); it('matches snapshot as expected', () => { const renderTree = renderer.create(<SimpleBanner {...reactProps} />).toJSON(); expect(renderTree).toMatchSnapshot(); });
# coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for # license information. # # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. # -------------------------------------------------------------------------- from msrest.paging import Paged class ApplicationSecurityGroupPaged(Paged): """ A paging container for iterating over a list of :class:`ApplicationSecurityGroup <azure.mgmt.network.v2018_06_01.models.ApplicationSecurityGroup>` object """ _attribute_map = { 'next_link': {'key': 'nextLink', 'type': 'str'}, 'current_page': {'key': 'value', 'type': '[ApplicationSecurityGroup]'} } def __init__(self, *args, **kwargs): super(ApplicationSecurityGroupPaged, self).__init__(*args, **kwargs)
import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( <path d="M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM11 20v-5.5H9L13 7v5.5h2L11 20z" /> , 'BatteryChargingFull');
const checkDistance = (x1, y1, x2, y2) => { const distance = Math.sqrt(Math.pow(x2 - x1, 2) + Math.pow(y2 - y1, 2)); return distance; }; const checkPossibleMove = (x, y) => { const id = "#" + y + "-" + x; return $(id).hasClass("movePossible"); }; const meldWeaponResource = (string) => { const number = Number(string.substr(6, 1)); switch (number) { case 0: return "ressources/couteau.jpg"; break; case 1: return "ressources/sabre.jpg"; break; case 2: return "ressources/sabre_laser.png"; break; case 3: return "ressources/pistolet.jpg"; break; case 4: return "ressources/mitrailleuse.jpg"; break; default: break; } }
#!/usr/bin/env python # -*- coding: utf-8 -*- """ Example Python node to publish on a specific topic. """ # Import required Python code. from __future__ import print_function import sys import roslib import rospy import cv2 from matplotlib import pyplot as plt from std_msgs.msg import String from sensor_msgs.msg import Image from sensor_msgs.msg import CompressedImage from cv_bridge import CvBridge, CvBridgeError class EuclidRS(object): ''' Node example class. ''' def __init__(self): self.bridge = CvBridge() #self.image_sub = rospy.Subscriber("/camera/color/image_raw", Image, self.imageCallback) self.depthImage_sub = rospy.Subscriber("/camera/depth/image_raw", Image, self.depthImageCallback) plt.ion() def imageCallback(self, data): try: cv_image = self.bridge.imgmsg_to_cv2(data, "bgr8") except CvBridgeError as e: print(e) cv2.imshow("Image window", cv_image) cv2.waitKey(3) def depthImageCallback(self, depthData): try: cv_depthimage = self.bridge.imgmsg_to_cv2(depthData, "16UC1") except CvBridgeError as e: print(e) cv2.imshow("Depth Image window", cv_depthimage) cv2.waitKey(3) def main(args): ers = EuclidRS() rospy.init_node('euclid_rs', anonymous=True) try: rospy.spin() except KeyboardInterrupt: print("Shutting down") cv2.destroyAllWindows() if __name__ == '__main__': main(sys.argv)
""" __version__.py ~~~~~~~~~~~~~~ Information about the current version of the py-package-template package. """ __title__ = 'villa-encryptor-thanakijwanavit' __description__ = 'encrypt and decrypt data based on villa api' __version__ = '0.0.1' __author__ = 'Nic Wanavit' __author_email__ = '[email protected]' __license__ = 'Apache 2.0' __url__ = 'https://github.com/thanakijwanavit/villaWallet'
import React from 'react'; import StaticIcon from './StaticIcon' import Image from './Image' export default class SoftButtonImage extends React.Component { constructor(props) { super(props); } fillColor() { var fillColor = null; if (this.props.theme) { fillColor = "#FFFFFF" } else { fillColor = "#000000" } return fillColor; } render() { if(this.props.image) { var className = this.props.class ? this.props.class : "soft-button-image"; if(this.props.imageType === "STATIC") { if (className === "soft-button-image") { className += "-static" } return ( <div className={className}> <StaticIcon image={this.props.image} /> </div> ) } else { return ( <div className={className}> <Image image={this.props.image} isTemplate={this.props.isTemplate} fillColor={this.fillColor()}/> </div> ) } } else { return(null) } } }
const { app, ipcMain, BrowserWindow, Menu, } = require("electron") const fs = require("fs") const path = require("path") function addMenu(platform) { let menu = Menu.buildFromTemplate([ { role: "appMenu" }, { role: "editMenu" }, { role: "viewMenu" }, { role: "windowMenu" }, { role: "help", submenu: [ { label: "Learn More" } ] } ]) if (platform == "darwin") { Menu.setApplicationMenu(menu) } else { Menu.setApplicationMenu(null) } } function createWindow() { // Create the browser window mainWindow = new BrowserWindow({ width: 1600, height: 900, titleBarStyle: "hiddenInset", icon: path.join(__dirname, "../build/icons/icon.png"), webPreferences: { preload: path.join(__dirname, "preload.js") } }) // Load the app mainWindow.loadURL(`file://${__dirname}/pev/index.html`) // On ipcEvent... ipcMain.on("contextmenu:open", function (event, x, y) { let contextmenu = Menu.buildFromTemplate([{ role: "undo" }, { role: "redo" }, { type: "separator" }, { role: "cut" }, { role: "copy" }, { role: "paste" }, { type: "separator" }, { label: "Advanced", submenu: [{ role: "reload" }, { role: "toggleDevTools" }, ] } ]) contextmenu.popup({ window: mainWindow, x, y }) }) if (process.platform == "darwin") { app.on("activate-with-no-open-windows", function () { mainWindow.show() }) } // Emitted when the window is closed. mainWindow.on("close", function () { // Dereference the window object, usually you would store windows // in an array if your app supports multi windows, this is the time // when you should delete the corresponding element. if (process.platform != "darwin") { mainWindow = null } else { mainWindow.hide() } }) } // Keep a global reference of the window object, if you don"t, the window will // be closed automatically when the javascript object is GCed. let mainWindow = null // Add menu addMenu(process.platform) // Quit when all windows are closed. app.on("window-all-closed", function () { app.quit() }) // This method will be called when Electron has done everything // initialization and ready for creating browser windows. app.on("ready", createWindow)
from sciapp.action import ImageTool class Plugin(ImageTool): """ColorPicker class plugin with events callbacks""" title = "Color Picker" para = {"front": (255, 255, 255), "back": (0, 0, 0)} view = [("color", "front", "front", "color"), ("color", "back", "back", "color")] def config(self): self.app.manager("color").add("front", self.para["front"]) self.app.manager("color").add("back", self.para["back"]) def mouse_down(self, ips, x, y, btn, **key): manager = self.app.manager("color") if btn == 1: manager.add("front", ips.img[int(y), int(x)]) if btn == 3: manager.add("back", ips.img[int(y), int(x)]) def mouse_up(self, ips, x, y, btn, **key): pass def mouse_move(self, ips, x, y, btn, **key): pass def mouse_wheel(self, ips, x, y, d, **key): pass
# coding=utf-8 # Copyright 2014 Pants project contributors (see CONTRIBUTORS.md). # Licensed under the Apache License, Version 2.0 (see LICENSE). from __future__ import (absolute_import, division, generators, nested_scopes, print_function, unicode_literals, with_statement) import os from six.moves import range from pants.backend.core.targets.prep_command import PrepCommand from pants.backend.core.tasks.run_prep_command import RunPrepCommand from pants.base.build_file_aliases import BuildFileAliases from pants.base.exceptions import TaskError from pants.util.contextutil import temporary_dir from pants.util.dirutil import touch from pants_test.base_test import BaseTest class PrepTest(BaseTest): @property def alias_groups(self): return BuildFileAliases.create( targets={ 'prep_command': PrepCommand, }, ) def test_prep_order(self): with temporary_dir() as workdir: with temporary_dir() as tmp: files = [os.path.join(tmp, 'file%s' % i) for i in range(3)] touch(files[0]) a = self.make_target('a', dependencies=[], target_type=PrepCommand, prep_executable='mv', prep_args=[files[0], files[1]]) b = self.make_target('b', dependencies=[a], target_type=PrepCommand, prep_executable='mv', prep_args=[files[1], files[2]]) context = self.context(target_roots=[b]) task = RunPrepCommand(context=context, workdir=workdir) task.execute() self.assertTrue(os.path.exists(files[2])) def test_prep_environ(self): with temporary_dir() as workdir: a = self.make_target('a', dependencies=[], target_type=PrepCommand, prep_executable='echo', prep_args=['-n', 'test_prep_env_var=fleem'], prep_environ=True) context = self.context(target_roots=[a]) task = RunPrepCommand(context=context, workdir=workdir) task.execute() self.assertEquals('fleem', os.environ['test_prep_env_var']) def test_prep_no_command(self): with self.assertRaises(TaskError): a = self.make_target('a', dependencies=[], target_type=PrepCommand, prep_executable='no_such_executable!$^!$&!$#^$#%!%@!', prep_args=[]) context = self.context(target_roots=[a]) task = RunPrepCommand(context=context, workdir='') task.execute() def test_prep_command_fails(self): with self.assertRaises(TaskError): a = self.make_target('a', dependencies=[], target_type=PrepCommand, prep_executable='mv', prep_args=['/non/existent/file/name', '/bogus/destination/place']) context = self.context(target_roots=[a]) task = RunPrepCommand(context=context, workdir='') task.execute()
ELECTRUM_VERSION = '2.9.3.6' # version of the client package PROTOCOL_VERSION = '0.10' # protocol version requested # The hash of the mnemonic seed must begin with this SEED_PREFIX = '01' # Electrum standard wallet SEED_PREFIX_SW = '02' # Electrum segwit wallet SEED_PREFIX_2FA = '101' # extended seed for two-factor authentication def seed_prefix(seed_type): if seed_type == 'standard': return SEED_PREFIX elif seed_type == 'segwit': return SEED_PREFIX_SW elif seed_type == '2fa': return SEED_PREFIX_2FA
/*kad iOS v2.0.10 js Interface*/ window.kadiosjs = { __callbacks: {}, invokeCallback: function(cbID, removeAfterExecute) { var args = Array.prototype.slice.call(arguments); args.shift(); args.shift(); for (var i = 0, l = args.length; i < l; i++) { args[i] = decodeURIComponent(args[i]); } var cb = kadiosjs.__callbacks[cbID]; if (removeAfterExecute) { kadiosjs.__callbacks[cbID] = undefined; } return cb.apply(null, args); }, call: function(obj, functionName, args) { var formattedArgs = []; for (var i = 0, l = args.length; i < l; i++) { if (typeof args[i] == "function") { formattedArgs.push("f"); var cbID = "__cb" + ( + new Date); kadiosjs.__callbacks[cbID] = args[i]; formattedArgs.push(cbID); } else { formattedArgs.push("s"); formattedArgs.push(encodeURIComponent(args[i])); } } var argStr = (formattedArgs.length > 0 ? ":" + encodeURIComponent(formattedArgs.join(":")) : ""); var iframe = document.createElement("IFRAME"); iframe.setAttribute("src", "kadios-js:" + obj + ":" + encodeURIComponent(functionName) + argStr); document.documentElement.appendChild(iframe); iframe.parentNode.removeChild(iframe); iframe = null; var ret = kadiosjs.retValue; kadiosjs.retValue = undefined; if (ret) { return decodeURIComponent(ret); } }, inject: function(obj, methods) { window[obj] = {}; var jsObj = window[obj]; for (var i = 0, l = methods.length; i < l; i++) { (function() { var method = methods[i]; var jsMethod = method.replace(new RegExp(":", "g"), ""); jsObj[jsMethod] = function() { return kadiosjs.call(obj, method, Array.prototype.slice.call(arguments)); }; })(); } } }; kadiosjs.inject("kadios", ["isLogin", "getUserId", "getUniqueId", "getIDFA", "getChannelName", "viewControl", "startShoppingCar", "startPromotion", "goSeckill", "getCoupon:", "showToast:", "goLogin", "goRegister", "openUrl:", "goNearlyExpress", "goUserSignIn", "goInvite", "goFootprint", "goHome", "getGoods:", "goGoodsDetail:", "getAppVersion", "runner", "goAppStore", "toast:", "startSign", "goShareSin:n:g:l:e:", "getIDFV", "invokeAny:", "getJSInterfaceVersionNo", "getAppVersionNo", "getDeviceType", "getSystemVersionNo", "getSystemVersion","getAppInnerVersionNo", "call:", "addGoodsToShopping:Car:", "goSearch:", "goGoodsLi:st:", "addPackageToShopping:Car:", "toastCenter:", "getGtClientId", "getWidth", "getHeight", "goHistory", "goHistoryPage", "closeGuide", "downloadAPK", "startWebView:", "startShareInviteCode", "goSha:r:e:s:", "g:o:S:h:a:r:e:s:", "GoShareSin:n:g:l:e:", "kadShareWith:T:y:p:e:", "exitApp", "startHealth", "startBMI", "startBloodPressure", "startRemind", "startAddRemind:", "startCapture", "startFavorite", "startChatCenter", "startChatShouqian", "startChatShouhou", "startChatWithGroupId:AndSource:", "startPersonalCustom", "startShits", "startQuickSearch", "popView:", "goRegAndBindKadAccoun:t:", "goBindPhoneNumbe:r:", "callback:","goNewDema:n:d:","goToZiceyongyao","addRemi:n:d:","cancelRemin:d:","getRemindSta:t:e:","goCategory","goChangeCoupon","goAboutUs","goShark","goNewAddress","goAddressLis:t:","goCommonPa:y:","gotoMessageBox","goExpress:","jsCallBac:k:"]); /*Add a handle for kad*/ if (typeof(kad) == "undefined") { var kad = kadios; } else { var old = kad; var versionNo = 112; var kad = { getAppVersionNo: function() { return old.getAppVersionNo() }, getAppVersionName: function() { return old.getAppVersionName() }, setClipboardContent: function(a) { old.setClipboardContent(a) }, addGoodsToShoppingCar: function(a, b) { if (b) { if (typeof(a) == "number") { if (old.getAppVersionNo() > versionNo) { var temp = a.toString(); old.addGoodsToShoppingCar(temp, b) } else { old.addGoodsToShoppingCar(a, b) } } else { if (typeof(a) == "string") { if (old.getAppVersionNo() <= versionNo) { var temp = parseInt(a); old.addGoodsToShoppingCar(temp, b) } else { old.addGoodsToShoppingCar(a, b) } } } } else { if (typeof(a) == "number") { if (old.getAppVersionNo() > versionNo) { var temp = a.toString(); old.addGoodsToShoppingCar(temp) } else { old.addGoodsToShoppingCar(a) } } else { if (typeof(a) == "string") { if (old.getAppVersionNo() <= versionNo) { var temp = parseInt(a); old.addGoodsToShoppingCar(temp) } else { old.addGoodsToShoppingCar(a) } } } } }, addPackageToShoppingCar: function(a, b) { if (b) { if (typeof(a) == "number") { if (old.getAppVersionNo() > versionNo) { var temp = a.toString(); old.addPackageToShoppingCar(temp, b) } else { old.addPackageToShoppingCar(a, b) } } else { if (typeof(a) == "string") { if (old.getAppVersionNo() <= versionNo) { var temp = parseInt(a); old.addPackageToShoppingCar(temp, b) } else { old.addPackageToShoppingCar(a, b) } } } } else { if (typeof(a) == "number") { if (old.getAppVersionNo() > versionNo) { var temp = a.toString(); old.addPackageToShoppingCar(temp) } else { old.addPackageToShoppingCar(a) } } else { if (typeof(a) == "string") { if (old.getAppVersionNo() <= versionNo) { var temp = parseInt(a); old.addPackageToShoppingCar(temp) } else { old.addPackageToShoppingCar(a) } } } } }, call: function(a) { old.call(a) }, callback: function(a) { old.callback(a) }, finish: function() { old.finish() }, getChannelName: function() { return old.getChannelName() }, getCoupon: function(id) { if (typeof(id) == "number") { if (old.getAppVersionNo() > versionNo) { var temp = id.toString(); old.getCoupon(temp) } else { old.getCoupon(id) } } else { if (typeof(id) == "string") { if (old.getAppVersionNo() <= versionNo) { var temp = parseInt(id); old.getCoupon(temp) } else { old.getCoupon(id) } } } }, getDeviceType: function() { return old.getDeviceType() }, getGoods: function(id) { if (typeof(id) == "number") { if (old.getAppVersionNo() > versionNo) { var temp = id.toString(); old.getGoods(temp) } else { old.getGoods(id) } } else { if (typeof(id) == "string") { if (old.getAppVersionNo() <= versionNo) { var temp = parseInt(id); old.getGoods(temp) } else { old.getGoods(id) } } } }, getGtClientId: function() { return old.getGtClientId() }, getHeight: function() { return old.getHeight() }, getJSInterfaceVersionNo: function() { return old.getJSInterfaceVersionNo() }, getSystemVersionNo: function() { return old.getSystemVersionNo() }, getUniqueId: function() { return old.getUniqueId() }, getUserId: function() { return old.getUserId() }, getWidth: function() { return old.getWidth() }, goDemand: function(a, b, c, d, e, f, g) { old.goDemand(a, b, c, d, e, f, g) }, goDex: function(a) { old.goDex(a) }, goFootprint: function() { old.goFootprint() }, goGoodsDetail: function(id) { if (typeof(id) == "number") { if (old.getAppVersionNo() > versionNo) { var temp = id.toString(); old.goGoodsDetail(temp) } else { old.goGoodsDetail(id) } } else { if (typeof(id) == "string") { if (old.getAppVersionNo() <= versionNo) { var temp = parseInt(id); old.goGoodsDetail(temp) } else { old.goGoodsDetail(id) } } } }, goGoodsList: function(a, b) { if (b) { if (typeof(a) == "number") { if (old.getAppVersionNo() > versionNo) { var temp = a.toString(); old.goGoodsList(temp, b) } else { old.goGoodsList(a, b) } } else { if (typeof(a) == "string") { if (old.getAppVersionNo() <= versionNo) { var temp = parseInt(a); old.goGoodsList(temp, b) } else { old.goGoodsList(a, b) } } } } else { if (typeof(a) == "number") { if (old.getAppVersionNo() > versionNo) { var temp = a.toString(); old.goGoodsList(temp) } else { old.goGoodsList(a) } } else { if (typeof(a) == "string") { if (old.getAppVersionNo() <= versionNo) { var temp = parseInt(a); old.goGoodsList(temp) } else { old.goGoodsList(a) } } } } }, goHistory: function() { old.goHistory() }, goHome: function() { old.goHome() }, goLogin: function() { old.goLogin() }, goRegister: function() { old.goRegister() }, goSearch: function(a) { old.goSearch(a) }, goSeckill: function() { old.goSeckill() }, goShares: function(a, b, c, d, e, f) { if (e && f) { old.goShares(a, b, c, d, e, f) } else { old.goShares(a, b, c, d) } }, goSingleShare: function(a, b, c, d, e, f, g) { if (f && g) { old.goSingleShare(a, b, c, d, e, f, g) } else { old.goSingleShare(a, b, c, d, e) } }, isLogin: function() { return old.isLogin() }, onPayResult: function(a, b) { if (typeof(a) == "number") { if (old.getAppVersionNo() > versionNo) { var temp = a.toString(); old.onPayResult(temp, b) } else { old.onPayResult(a, b) } } else { if (typeof(a) == "string") { if (old.getAppVersionNo() <= versionNo) { var temp = parseInt(a); old.onPayResult(temp, b) } else { old.onPayResult(a, b) } } } }, onPaySuccess: function() { old.onPaySuccess() }, showToast: function(a) { old.showToast(a) }, startAddRemind: function(a) { if (a) { old.startAddRemind(a) } else { old.startAddRemind() } }, startBloodPressure: function() { old.startBloodPressure() }, startBMI: function() { old.startBMI() }, startCapture: function() { old.startCapture() }, startChatCenter: function() { old.startChatCenter() }, startChatShouhou: function() { old.startChatShouhou() }, startChatShouqian: function() { old.startChatShouqian() }, startFavorite: function() { old.startFavorite() }, startHealth: function() { old.startHealth() }, startLoadingCustomPlugin: function(a) { old.startLoadingCustomPlugin(a) }, startMyCoupon: function() { old.startMyCoupon() }, startPersonalCustom: function() { old.startPersonalCustom() }, startPromotion: function() { old.startPromotion() }, startQuickSearch: function() { old.startQuickSearch() }, startRemind: function() { old.startRemind() }, startShareInviteCode: function() { old.startShareInviteCode() }, startShits: function() { old.startShits() }, startShoppingCar: function() { old.startShoppingCar() }, startSign: function() { old.startSign() }, startWebView: function(a) { old.startWebView(a) }, toast: function(a) { old.toast(a) }, toastCenter: function(a) { old.toastCenter(a) }, addRemind: function(a, b, c) { old.addRemind(a, b, c) }, cancelRemind: function(a, b) { old.cancelRemind(a, b) }, getRemindState: function(a, b, c) { return old.getRemindState(a, b, c) }, goBindPhoneNumber:function(a,b){ return old.goBindPhoneNumber(a,b) }, goRegAndBindKadAccount:function(a,b){ return old.goRegAndBindKadAccount(a,b) }, goNewDemand:function(a,b,c){ old.goNewDemand(a,b,c) }, goToZiceyongyao:function(){ old.goToZiceyongyao() }, goMyIntegral:function(){ old.goMyIntegral() }, goCategory:function(){ old.goCategory() }, goChangeCoupon:function(){ old.goChangeCoupon() }, goAboutUs:function(){ old.goAboutUs() }, goShark:function(){ old.goShark() }, goCommonPay:function(a,b){ old.goCommonPay(a,b) }, goAddressList:function(a,b){ old.goAddressList(a,b) }, goNewAddress:function(){ old.goNewAddress() } }; var listener = kad; }; /*Old version*/ if (typeof(listener) == "undefined") { var listener = { iosCall: function(mode, p0, p1, p2, p3, p4) { var iosParams = '?mode=' + mode; if (p0) { iosParams += "&p0=" + encodeURIComponent(p0); } if (p1) { iosParams += "&p1=" + encodeURIComponent(p1); } if (p2) { iosParams += "&p2=" + encodeURIComponent(p2); } if (p3) { iosParams += "&p3=" + encodeURIComponent(p3); } if (p4) { iosParams += "&p4=" + encodeURIComponent(p4); } var ifrUrl = "kad://webview/" + iosParams; var iframe = document.createElement("IFRAME"); iframe.setAttribute("src", ifrUrl); document.documentElement.appendChild(iframe); iframe.parentNode.removeChild(iframe); iframe = null; }, inject: function(method) { listener[method] = function(p0, p1, p2, p3, p4) { listener.iosCall(method, p0, p1, p2, p3, p4); }; } }; var kadListenerInject = ["goGoodsDetail", "goGoodsList", "addGoodsToShoppingCar", "addPackageToShoppingCar", "goSearch", "downloadAPK", "startShoppingCar", "startPromotion", "goSeckill", "getCoupon", "showToast", "startChannel", "call", "getGoods", "goLogin", "goRegister", "goShares", "goShareSingle"]; for (var i = 0; i < kadListenerInject.length; i++) { listener.inject(kadListenerInject[i]); } }; //普康宝app的异常处理。。。 if (window.pukangbao) { kad = undefined; }
//// [aliasInaccessibleModule2.ts] module M { module N { class C { } } import R = N; export import X = R; } //// [aliasInaccessibleModule2.js] var M; (function (M) { var N; (function (N) { var C = /** @class */ (function () { function C() { } return C; }()); })(N || (N = {})); var R = N; M.X = R; })(M || (M = {}));
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ /** File Name: 15.9.5.13.js ECMA Section: 15.9.5.13 Description: Date.prototype.getUTCDay 1.Let t be this time value. 2.If t is NaN, return NaN. 3.Return WeekDay(t). Author: [email protected] Date: 12 november 1997 */ var SECTION = "15.9.5.13"; var VERSION = "ECMA_1"; startTest(); var TITLE = "Date.prototype.getUTCDay()"; writeHeaderToLog( SECTION + " "+ TITLE); addTestCase( TIME_1970 ); test(); function addTestCase( t ) { var start = TimeFromYear(YearFromTime(t)); var stop = TimeFromYear(YearFromTime(t) + 1); for (var d = start; d < stop; d += msPerDay) { new TestCase( SECTION, "(new Date("+d+")).getUTCDay()", WeekDay((d)), (new Date(d)).getUTCDay() ); } }
/* The MIT License (MIT) Copyright (c) 2014-2019 Nikolai Suslov and the Krestianstvo.org project contributors. (https://github.com/NikolaySuslov/livecodingspace/blob/master/LICENSE.md) Virtual World Framework Apache 2.0 license (https://github.com/NikolaySuslov/livecodingspace/blob/master/licenses/LICENSE_VWF.md) */ import { Helpers } from '/core/helpers.js'; class ReflectorClient { constructor() { console.log("reflector client constructor"); this.helpers = new Helpers; this.socket = undefined; } connect(component_uri_or_json_or_object, path){ function isSocketIO07() { //return ( parseFloat( io.version ) >= 0.7 ); return true } try { let objToRef = this.helpers.reduceSaveObject(path); var options = { // The socket is relative to the application path. // resource: window.location.pathname.slice( 1, // window.location.pathname.lastIndexOf("/") ), query: { pathname: window.location.pathname.slice( 1, window.location.pathname.lastIndexOf("/") ), appRoot: "./public", path: JSON.stringify(objToRef)//JSON.stringify(path) }, // query: 'pathname=' + window.location.pathname.slice( 1, // window.location.pathname.lastIndexOf("/") ), // Use a secure connection when the application comes from https. secure: window.location.protocol === "https:", // Don't attempt to reestablish lost connections. The client reloads after a // disconnection to recreate the application from scratch. //reconnect: false, reconnection: false, upgrade: false, transports: ['websocket'] }; if ( isSocketIO07() ) { //window.location.host var host = window._app.reflectorHost; //localStorage.getItem('lcs_reflector'); //if(!host) host = 'http://localhost:3002'; //window.location.origin; this.socket = io.connect( host, options ); } } catch ( e ) { // If a connection to the reflector is not available, then run in single-user mode. // Messages intended for the reflector will loop directly back to us in this case. // Start a timer to monitor the incoming queue and dispatch the messages as though // they were received from the server. // this.dispatch(); // setInterval( function() { // var fields = { // time: vwf.now + 0.010, // TODO: there will be a slight skew here since the callback intervals won't be exactly 10 ms; increment using the actual delta time; also, support play/pause/stop and different playback rates as with connected mode. // origin: "reflector", // }; // _app.virtualTime.insert( fields, true ); // may invoke dispatch(), so call last before returning to the host // }, 10 ); } if ( this.socket ) { this.socket.on('connect_error', function(err) { console.log(err); var errDiv = document.createElement("div"); errDiv.innerHTML = "<div class='vwf-err' style='z-index: 10; position: absolute; top: 80px; right: 50px'>Connection error!" + err + "</div>"; document.querySelector('body').appendChild(errDiv); }); this.socket.on( "connect", function() { vwf.logger.infox( "-socket", "connected" ); if ( isSocketIO07() ) { vwf.moniker_ = this.id; } else { //Ruby Server vwf.moniker_ = this.transport.sessionid; } } ); // Configure a handler to receive messages from the server. // Note that this example code doesn't implement a robust parser capable of handling // arbitrary text and that the messages should be placed in a dedicated priority // queue for best performance rather than resorting the queue as each message // arrives. Additionally, overlapping messages may cause actions to be performed out // of order in some cases if messages are not processed on a single thread. this.socket.on( "message", function( message ) { // vwf.logger.debugx( "-socket", "message", message ); try { if ( isSocketIO07() ) { var fields = message; } else { // Ruby Server - Unpack the arguements var fields = JSON.parse( message ); } fields.time = Number( fields.time ); // TODO: other message validation (check node id, others?) fields.origin = "reflector"; // Update the queue. Messages in the queue are ordered by time, then by order of arrival. // Time is only advanced if the message has no action, meaning it is a tick. if(_app.config.streamMsg) { vwf.virtualTime.streamAdapter.induce(fields); } else { vwf.virtualTime.insert( fields, !fields.action ); } // // may invoke dispatch(), so call last before returning to the host // Each message from the server allows us to move time forward. Parse the // timestamp from the message and call dispatch() to execute all queued // actions through that time, including the message just received. // The simulation may perform immediate actions at the current time or it // may post actions to the queue to be performed in the future. But we only // move time forward for items arriving in the queue from the reflector. } catch ( e ) { vwf.logger.warn( fields.action, fields.node, fields.member, fields.parameters, "exception performing action:", vwf.utility.exceptionMessage( e ) ); } } ); this.socket.on( "disconnect", function() { vwf.logger.infox( "-socket", "disconnected" ); // Reload to rejoin the application. window.location = window.location.href; } ); this.socket.on( "error", function() { //Overcome by compatibility.js websockets check document.querySelector('body').innerHTML = "<div class='vwf-err'>WebSockets connections are currently being blocked. Please check your proxy server settings.</div>"; // jQuery('body').html("<div class='vwf-err'>WebSockets connections are currently being blocked. Please check your proxy server settings.</div>"); } ); if ( !isSocketIO07() ) { // Start communication with the reflector. this.socket.connect(); // TODO: errors can occur here too, particularly if a local client contains the socket.io files but there is no server; do the loopback here instead of earlier in response to new io.Socket. } } else if ( component_uri_or_json_or_object ) { // Load the application. The application is rooted in a single node constructed here // as an instance of the component passed to initialize(). That component, its // prototype(s), and its children, and their prototypes and children, flesh out the // entire application. // TODO: add note that this is only for a self-determined application; with socket, wait for reflection server to tell us. // TODO: maybe depends on component_uri_or_json_or_object too; when to override and not connect to reflection server? this.createNode( component_uri_or_json_or_object, "application" ); } else { // TODO: also do this if component_uri_or_json_or_object was invalid and createNode() failed // TODO: show a selection dialog } } } export { ReflectorClient }
import '@babel/polyfill' import 'whatwg-fetch' import * as BabelStandalone from './babel-standalone' export * from './babel-standalone' BabelStandalone.registerPresets({ 'env': require('@babel/preset-env') }) BabelStandalone.registerPlugins({ 'proposal-async-generator-functions': require('@babel/plugin-proposal-async-generator-functions'), 'proposal-class-properties': require('@babel/plugin-proposal-class-properties'), 'proposal-dynamic-import': require('@babel/plugin-proposal-dynamic-import'), 'proposal-function-bind': require('@babel/plugin-proposal-function-bind'), 'proposal-json-strings': require('@babel/plugin-proposal-json-strings'), 'proposal-nullish-coalescing-operator': require('@babel/plugin-proposal-nullish-coalescing-operator'), 'proposal-numeric-separator': require('@babel/plugin-proposal-numeric-separator'), 'proposal-object-rest-spread': require('@babel/plugin-proposal-object-rest-spread'), 'proposal-optional-catch-binding': require('@babel/plugin-proposal-optional-catch-binding'), 'proposal-optional-chaining': require('@babel/plugin-proposal-optional-chaining'), 'proposal-private-methods': require('@babel/plugin-proposal-private-methods'), 'proposal-unicode-property-regex': require('@babel/plugin-proposal-unicode-property-regex'), 'syntax-async-generators': require('@babel/plugin-syntax-async-generators'), 'syntax-class-properties': require('@babel/plugin-syntax-class-properties'), 'syntax-dynamic-import': require('@babel/plugin-syntax-dynamic-import'), 'syntax-json-strings': require('@babel/plugin-syntax-json-strings'), 'syntax-nullish-coalescing-operator': require('@babel/plugin-syntax-nullish-coalescing-operator'), 'syntax-numeric-separator': require('@babel/plugin-syntax-numeric-separator'), 'syntax-object-rest-spread': require('@babel/plugin-syntax-object-rest-spread'), 'syntax-optional-catch-binding': require('@babel/plugin-syntax-optional-catch-binding'), 'syntax-optional-chaining': require('@babel/plugin-syntax-optional-chaining'), 'syntax-top-level-await': require('@babel/plugin-syntax-top-level-await'), 'transform-arrow-functions': require('@babel/plugin-transform-arrow-functions'), 'transform-async-to-generator': require('@babel/plugin-transform-async-to-generator'), 'transform-block-scoped-functions': require('@babel/plugin-transform-block-scoped-functions'), 'transform-block-scoping': require('@babel/plugin-transform-block-scoping'), 'transform-classes': require('@babel/plugin-transform-classes'), 'transform-computed-properties': require('@babel/plugin-transform-computed-properties'), 'transform-destructuring': require('@babel/plugin-transform-destructuring'), 'transform-dotall-regex': require('@babel/plugin-transform-dotall-regex'), 'transform-duplicate-keys': require('@babel/plugin-transform-duplicate-keys'), 'transform-exponentiation-operator': require('@babel/plugin-transform-exponentiation-operator'), 'transform-for-of': require('@babel/plugin-transform-for-of'), 'transform-function-name': require('@babel/plugin-transform-function-name'), 'transform-literals': require('@babel/plugin-transform-literals'), 'transform-member-expression-literals': require('@babel/plugin-transform-member-expression-literals'), 'transform-modules-amd': require('@babel/plugin-transform-modules-amd'), 'transform-modules-commonjs': require('@babel/plugin-transform-modules-commonjs'), 'transform-modules-systemjs': require('@babel/plugin-transform-modules-systemjs'), 'transform-modules-umd': require('@babel/plugin-transform-modules-umd'), 'transform-named-capturing-groups-regex': require('@babel/plugin-transform-named-capturing-groups-regex'), 'transform-new-target': require('@babel/plugin-transform-new-target'), 'transform-object-super': require('@babel/plugin-transform-object-super'), 'transform-parameters': require('@babel/plugin-transform-parameters'), 'transform-property-literals': require('@babel/plugin-transform-property-literals'), 'transform-regenerator': require('@babel/plugin-transform-regenerator'), 'transform-reserved-words': require('@babel/plugin-transform-reserved-words'), 'transform-shorthand-properties': require('@babel/plugin-transform-shorthand-properties'), 'transform-spread': require('@babel/plugin-transform-spread'), 'transform-sticky-regex': require('@babel/plugin-transform-sticky-regex'), 'transform-template-literals': require('@babel/plugin-transform-template-literals'), 'transform-typeof-symbol': require('@babel/plugin-transform-typeof-symbol'), 'transform-unicode-escapes': require('@babel/plugin-transform-unicode-escapes'), 'transform-unicode-regex': require('@babel/plugin-transform-unicode-regex') })
var fs = require('fs'); var async = require('async'); var mongoose = require('mongoose'); var schema = require('./schema'); mongoose.Promise = Promise; class mongodb { constructor() { this._setup(); } _setup() { var self = this; self._conncted = false; mongoose.connect('mongodb://localhost/ragezombies?authSource=admin', { useCreateIndex: true, useNewUrlParser: true }); self._db = mongoose.connection; self._db.on('error', console.error.bind(console, 'connection error:')); self._dbUserModel = mongoose.model('User', schema.user); self._dbInventoryModel = mongoose.model('Inventory', schema.inventory); self._dbBuildingModel = mongoose.model('Buildings', schema.buildings); self._dbVehicleModel = mongoose.model('Vehicles', schema.vehicles); self._dbCropModel = mongoose.model('Crops', schema.crops); self._db.once('open', function() { self._conncted = true; console.log("- MongoDB Instance successfully initialized"); require("./mongodb_warmup.js") }); } getUserModel() { return this._dbUserModel; } getInventoryModel() { return this._dbInventoryModel; } getBuildingModel() { return this._dbBuildingModel; } getVehicleModel() { return this._dbVehicleModel; } getCropModel() { return this._dbCropModel; } } module.exports = new mongodb();
from mantabot.apps.moderation.handlers.readonly import ReadOnly __all__ = ('ReadOnly',)
#! python2 import os import sys sys.path.append(r'../client/build/') sep_char = "\\" script_path = os.path.dirname(os.path.realpath(__file__)) base_path = os.path.abspath(r"%s/../".replace('/', sep_char) % script_path) resource_path = os.path.abspath(r"%s/resource".replace('/', sep_char) % base_path) cur_path = os.path.abspath(os.getcwd()) readXmlThread = True def codegen(): global readXmlThread execute = "" os.chdir("%s/tools/config_binary_maker/" % resource_path) if os.system(("%s config_binary_maker.exe %s" % (execute, readXmlThread)).replace("/", os.sep)) != 0: raise Exception("config_binary_maker.exe error!") os.chdir(cur_path) if __name__ == "__main__": try: quiet = False if len(sys.argv) > 1: quiet = sys.argv[1] == "-q" codegen() print ('config gen complete') os.system('pause') except Exception as e: print ('config gen failed: ') print (e) os.system('pause') sys.exit(-1)
import utils import re def solution(data: str) -> str: result = re.findall(r"[^A-Z][A-Z]{3}([a-z])[A-Z]{3}[^A-Z]", data) return "".join(result) input_data = utils.read_level_input_from_file(level=3) sol = solution(input_data) utils.print_solution_def_php(sol)
module.exports=function(B,e){"use strict";var r={};function __webpack_require__(e){if(r[e]){return r[e].exports}var t=r[e]={i:e,l:false,exports:{}};var n=true;try{B[e].call(t.exports,t,t.exports,__webpack_require__);n=false}finally{if(n)delete r[e]}t.l=true;return t.exports}__webpack_require__.ab=__dirname+"/";function startup(){return __webpack_require__(1676)}return startup()}({11:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{2:"0 1 2 3 4 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB",194:"5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y",1218:"BB"},D:{1:"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j",322:"k l m n o"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L lB mB nB oB R VB qB U",578:"X Y Z a b"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{2:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{2:"RC"}},B:1,C:"Dialog element"}},40:function(B,e,r){var t=r(8600);function buildGraph(){var B={};var e=Object.keys(t);for(var r=e.length,n=0;n<r;n++){B[e[n]]={distance:-1,parent:null}}return B}function deriveBFS(B){var e=buildGraph();var r=[B];e[B].distance=0;while(r.length){var n=r.pop();var i=Object.keys(t[n]);for(var C=i.length,o=0;o<C;o++){var a=i[o];var s=e[a];if(s.distance===-1){s.distance=e[n].distance+1;s.parent=n;r.unshift(a)}}}return e}function link(B,e){return function(r){return e(B(r))}}function wrapConversion(B,e){var r=[e[B].parent,B];var n=t[e[B].parent][B];var i=e[B].parent;while(e[i].parent){r.unshift(e[i].parent);n=link(t[e[i].parent][i],n);i=e[i].parent}n.conversion=r;return n}B.exports=function(B){var e=deriveBFS(B);var r={};var t=Object.keys(e);for(var n=t.length,i=0;i<n;i++){var C=t[i];var o=e[C];if(o.parent===null){continue}r[C]=wrapConversion(C,e)}return r}},70:function(B){B.exports={A:{A:{132:"I D F E A B iB"},B:{132:"C N H P J K L y BB Q WB S"},C:{132:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{132:"0 1 2 3 4 5 6 7 8 9 G W j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",388:"I D F E A B C N H P J K L X Y Z a b c d e f g h i"},E:{132:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{132:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{132:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{132:"AC"},I:{132:"KB G Q BC CC DC EC IB FC GC"},J:{132:"D A"},K:{132:"A B C O R VB U"},L:{132:"S"},M:{132:"M"},N:{132:"A B"},O:{132:"HC"},P:{132:"G IC JC KC LC MC XB NC OC"},Q:{132:"PC"},R:{132:"QC"},S:{132:"RC"}},B:6,C:"DNSSEC and DANE"}},74:function(B){B.exports={A:{A:{1:"E A B",2:"I D F iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H cB dB eB fB XB R U jB kB",16:"0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T oB R VB qB U",16:"E lB mB nB"},G:{1:"F rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB"},H:{2:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"Selection controls for input & textarea"}},83:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 1 2 3 4 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB"},D:{1:"AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},E:{1:"N H jB kB",2:"G W I D F E A B C 0B YB cB dB eB fB XB R U"},F:{1:"0 1 2 3 4 5 6 7 8 9 x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w lB mB nB oB R VB qB U"},G:{1:"5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"KC LC MC XB NC OC",2:"G IC JC"},Q:{1:"PC"},R:{2:"QC"},S:{2:"RC"}},B:5,C:"display: flow-root"}},84:function(B){B.exports={A:{A:{16:"iB",132:"I D F E A B"},B:{1:"L y BB Q WB S",132:"C N H P J K"},C:{1:"8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",132:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g pB hB",260:"4 5 6 7",772:"0 1 2 3 h i j k l m n o p q r s t u v w x O z"},D:{1:"MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",132:"G W I D F E A B C N H P J K L X Y Z a b",260:"0 1 2 3 4 5 6 7 8 9 q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T",772:"c d e f g h i j k l m n o p"},E:{1:"C N H U jB kB",16:"G W 0B YB",132:"I D F E A cB dB eB fB",260:"B XB R"},F:{1:"9 AB CB EB FB GB HB DB V M T",16:"E B C lB mB nB oB R VB qB",132:"U",260:"0 1 2 3 4 5 6 7 8 d e f g h i j k l m n o p q r s t u v w x O z",772:"P J K L X Y Z a b c"},G:{1:"ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB rB IB tB",132:"F uB vB wB xB yB zB"},H:{132:"AC"},I:{1:"Q",16:"KB BC CC DC",132:"G EC IB",772:"FC GC"},J:{132:"D A"},K:{1:"O",16:"A B C R VB",132:"U"},L:{1:"S"},M:{1:"M"},N:{132:"A B"},O:{260:"HC"},P:{1:"MC XB NC OC",260:"G IC JC KC LC"},Q:{260:"PC"},R:{132:"QC"},S:{132:"RC"}},B:6,C:"Date.prototype.toLocaleDateString"}},86:function(B,e){var r=function(){function JisonParserError(B,e){Object.defineProperty(this,"name",{enumerable:false,writable:false,value:"JisonParserError"});if(B==null)B="???";Object.defineProperty(this,"message",{enumerable:false,writable:true,value:B});this.hash=e;var r;if(e&&e.exception instanceof Error){var t=e.exception;this.message=t.message||B;r=t.stack}if(!r){if(Error.hasOwnProperty("captureStackTrace")){Error.captureStackTrace(this,this.constructor)}else{r=new Error(B).stack}}if(r){Object.defineProperty(this,"stack",{enumerable:false,writable:false,value:r})}}if(typeof Object.setPrototypeOf==="function"){Object.setPrototypeOf(JisonParserError.prototype,Error.prototype)}else{JisonParserError.prototype=Object.create(Error.prototype)}JisonParserError.prototype.constructor=JisonParserError;JisonParserError.prototype.name="JisonParserError";function bp(B){var e=[];var r=B.pop;var t=B.rule;for(var n=0,i=r.length;n<i;n++){e.push([r[n],t[n]])}return e}function bda(B){var e={};var r=B.idx;var t=B.goto;for(var n=0,i=r.length;n<i;n++){var C=r[n];e[C]=t[n]}return e}function bt(B){var e=[];var r=B.len;var t=B.symbol;var n=B.type;var i=B.state;var C=B.mode;var o=B.goto;for(var a=0,s=r.length;a<s;a++){var u=r[a];var f={};for(var l=0;l<u;l++){var c=t.shift();switch(n.shift()){case 2:f[c]=[C.shift(),o.shift()];break;case 0:f[c]=i.shift();break;default:f[c]=[3]}}e.push(f)}return e}function s(B,e,r){r=r||0;for(var t=0;t<e;t++){this.push(B);B+=r}}function c(B,e){B=this.length-B;for(e+=B;B<e;B++){this.push(this[B])}}function u(B){var e=[];for(var r=0,t=B.length;r<t;r++){var n=B[r];if(typeof n==="function"){r++;n.apply(e,B[r])}else{e.push(n)}}return e}var B={trace:function no_op_trace(){},JisonParserError:JisonParserError,yy:{},options:{type:"lalr",hasPartialLrUpgradeOnConflict:true,errorRecoveryTokenDiscardCount:3},symbols_:{$accept:0,$end:1,ADD:6,ANGLE:12,CALC:3,CHS:19,DIV:9,EMS:17,EOF:1,EXS:18,FREQ:14,FUNCTION:10,LENGTH:11,LPAREN:4,MUL:8,NUMBER:26,PERCENTAGE:25,REMS:20,RES:15,RPAREN:5,SUB:7,TIME:13,UNKNOWN_DIMENSION:16,VHS:21,VMAXS:24,VMINS:23,VWS:22,dimension:30,error:2,expression:27,function:29,math_expression:28,number:31},terminals_:{1:"EOF",2:"error",3:"CALC",4:"LPAREN",5:"RPAREN",6:"ADD",7:"SUB",8:"MUL",9:"DIV",10:"FUNCTION",11:"LENGTH",12:"ANGLE",13:"TIME",14:"FREQ",15:"RES",16:"UNKNOWN_DIMENSION",17:"EMS",18:"EXS",19:"CHS",20:"REMS",21:"VHS",22:"VWS",23:"VMINS",24:"VMAXS",25:"PERCENTAGE",26:"NUMBER"},TERROR:2,EOF:1,originalQuoteName:null,originalParseError:null,cleanupAfterParse:null,constructParseErrorInfo:null,yyMergeLocationInfo:null,__reentrant_call_depth:0,__error_infos:[],__error_recovery_infos:[],quoteName:function parser_quoteName(B){return'"'+B+'"'},getSymbolName:function parser_getSymbolName(B){if(this.terminals_[B]){return this.terminals_[B]}var e=this.symbols_;for(var r in e){if(e[r]===B){return r}}return null},describeSymbol:function parser_describeSymbol(B){if(B!==this.EOF&&this.terminal_descriptions_&&this.terminal_descriptions_[B]){return this.terminal_descriptions_[B]}else if(B===this.EOF){return"end of input"}var e=this.getSymbolName(B);if(e){return this.quoteName(e)}return null},collect_expected_token_set:function parser_collect_expected_token_set(B,e){var r=this.TERROR;var t=[];var n={};if(!e&&this.state_descriptions_&&this.state_descriptions_[B]){return[this.state_descriptions_[B]]}for(var i in this.table[B]){i=+i;if(i!==r){var C=e?i:this.describeSymbol(i);if(C&&!n[C]){t.push(C);n[C]=true}}}return t},productions_:bp({pop:u([27,s,[28,9],29,s,[30,17],s,[31,3]]),rule:u([2,4,s,[3,5],s,[1,19],2,2,c,[3,3]])}),performAction:function parser__PerformAction(B,e,r){var t=this.yy;var n=t.parser;var i=t.lexer;switch(B){case 0:this.$=r[e-1];break;case 1:this.$=r[e-1];return r[e-1];break;case 2:case 7:this.$=r[e-1];break;case 3:case 4:case 5:case 6:this.$={type:"MathExpression",operator:r[e-1],left:r[e-2],right:r[e]};break;case 8:case 9:case 10:this.$=r[e];break;case 11:this.$={type:"Function",value:r[e]};break;case 12:this.$={type:"LengthValue",value:parseFloat(r[e]),unit:/[a-z]+$/i.exec(r[e])[0]};break;case 13:this.$={type:"AngleValue",value:parseFloat(r[e]),unit:/[a-z]+$/i.exec(r[e])[0]};break;case 14:this.$={type:"TimeValue",value:parseFloat(r[e]),unit:/[a-z]+$/i.exec(r[e])[0]};break;case 15:this.$={type:"FrequencyValue",value:parseFloat(r[e]),unit:/[a-z]+$/i.exec(r[e])[0]};break;case 16:this.$={type:"ResolutionValue",value:parseFloat(r[e]),unit:/[a-z]+$/i.exec(r[e])[0]};break;case 17:this.$={type:"UnknownDimension",value:parseFloat(r[e]),unit:/[a-z]+$/i.exec(r[e])[0]};break;case 18:this.$={type:"EmValue",value:parseFloat(r[e]),unit:"em"};break;case 19:this.$={type:"ExValue",value:parseFloat(r[e]),unit:"ex"};break;case 20:this.$={type:"ChValue",value:parseFloat(r[e]),unit:"ch"};break;case 21:this.$={type:"RemValue",value:parseFloat(r[e]),unit:"rem"};break;case 22:this.$={type:"VhValue",value:parseFloat(r[e]),unit:"vh"};break;case 23:this.$={type:"VwValue",value:parseFloat(r[e]),unit:"vw"};break;case 24:this.$={type:"VminValue",value:parseFloat(r[e]),unit:"vmin"};break;case 25:this.$={type:"VmaxValue",value:parseFloat(r[e]),unit:"vmax"};break;case 26:this.$={type:"PercentageValue",value:parseFloat(r[e]),unit:"%"};break;case 27:var C=r[e];this.$=C;break;case 28:var C=r[e];C.value*=-1;this.$=C;break;case 29:case 30:this.$={type:"Number",value:parseFloat(r[e])};break;case 31:this.$={type:"Number",value:parseFloat(r[e])*-1};break}},table:bt({len:u([26,1,5,1,25,s,[0,19],19,19,0,0,s,[25,5],5,0,0,18,18,0,0,6,6,0,0,c,[11,3]]),symbol:u([3,4,6,7,s,[10,22,1],1,1,s,[6,4,1],4,c,[33,21],c,[32,4],6,7,c,[22,16],30,c,[19,19],c,[63,25],c,[25,100],s,[5,5,1],c,[149,17],c,[167,18],30,1,c,[42,5],c,[6,6],c,[5,5]]),type:u([s,[2,21],s,[0,5],1,s,[2,27],s,[0,4],c,[22,19],c,[19,37],c,[63,25],c,[25,103],c,[148,19],c,[18,18]]),state:u([1,2,5,6,7,33,c,[4,3],34,38,40,c,[6,3],41,c,[4,3],42,c,[4,3],43,c,[4,3],44,c,[22,5]]),mode:u([s,[1,228],s,[2,4],c,[6,8],s,[1,5]]),goto:u([3,4,24,25,s,[8,16,1],s,[26,7,1],c,[27,21],36,37,c,[18,15],35,c,[18,17],39,c,[57,21],c,[21,84],45,c,[168,4],c,[128,17],c,[17,17],s,[3,4],30,31,s,[4,4],30,31,46,c,[51,4]])}),defaultActions:bda({idx:u([s,[5,19,1],26,27,34,35,38,39,42,43,45,46]),goto:u([s,[8,19,1],29,1,27,30,28,31,5,6,7,2])}),parseError:function parseError(B,e,r){if(e.recoverable){if(typeof this.trace==="function"){this.trace(B)}e.destroy()}else{if(typeof this.trace==="function"){this.trace(B)}if(!r){r=this.JisonParserError}throw new r(B,e)}},parse:function parse(B){var e=this;var r=new Array(128);var t=new Array(128);var n=new Array(128);var i=this.table;var C=0;var o=0;var a=this.TERROR;var s=this.EOF;var u=this.options.errorRecoveryTokenDiscardCount|0||3;var f=[0,47];var l;if(this.__lexer__){l=this.__lexer__}else{l=this.__lexer__=Object.create(this.lexer)}var c={parseError:undefined,quoteName:undefined,lexer:undefined,parser:undefined,pre_parse:undefined,post_parse:undefined,pre_lex:undefined,post_lex:undefined};var p;if(typeof assert!=="function"){p=function JisonAssert(B,e){if(!B){throw new Error("assertion failed: "+(e||"***"))}}}else{p=assert}this.yyGetSharedState=function yyGetSharedState(){return c};function shallow_copy_noclobber(B,e){for(var r in e){if(typeof B[r]==="undefined"&&Object.prototype.hasOwnProperty.call(e,r)){B[r]=e[r]}}}shallow_copy_noclobber(c,this.yy);c.lexer=l;c.parser=this;if(typeof c.parseError==="function"){this.parseError=function parseErrorAlt(B,e,r){if(!r){r=this.JisonParserError}return c.parseError.call(this,B,e,r)}}else{this.parseError=this.originalParseError}if(typeof c.quoteName==="function"){this.quoteName=function quoteNameAlt(B){return c.quoteName.call(this,B)}}else{this.quoteName=this.originalQuoteName}this.cleanupAfterParse=function parser_cleanupAfterParse(B,e,i){var o;if(e){var a;if(c.post_parse||this.post_parse){a=this.constructParseErrorInfo(null,null,null,false)}if(c.post_parse){o=c.post_parse.call(this,c,B,a);if(typeof o!=="undefined")B=o}if(this.post_parse){o=this.post_parse.call(this,c,B,a);if(typeof o!=="undefined")B=o}if(a&&a.destroy){a.destroy()}}if(this.__reentrant_call_depth>1)return B;if(l.cleanupAfterLex){l.cleanupAfterLex(i)}if(c){c.lexer=undefined;c.parser=undefined;if(l.yy===c){l.yy=undefined}}c=undefined;this.parseError=this.originalParseError;this.quoteName=this.originalQuoteName;r.length=0;t.length=0;n.length=0;C=0;if(!i){for(var s=this.__error_infos.length-1;s>=0;s--){var u=this.__error_infos[s];if(u&&typeof u.destroy==="function"){u.destroy()}}this.__error_infos.length=0}return B};this.constructParseErrorInfo=function parser_constructParseErrorInfo(B,e,i,a){var s={errStr:B,exception:e,text:l.match,value:l.yytext,token:this.describeSymbol(o)||o,token_id:o,line:l.yylineno,expected:i,recoverable:a,state:d,action:h,new_state:M,symbol_stack:r,state_stack:t,value_stack:n,stack_pointer:C,yy:c,lexer:l,parser:this,destroy:function destructParseErrorInfo(){var B=!!this.recoverable;for(var e in this){if(this.hasOwnProperty(e)&&typeof e==="object"){this[e]=undefined}}this.recoverable=B}};this.__error_infos.push(s);return s};function getNonTerminalFromCode(B){var r=e.getSymbolName(B);if(!r){r=B}return r}function stdLex(){var B=l.lex();if(typeof B!=="number"){B=e.symbols_[B]||B}return B||s}function fastLex(){var B=l.fastLex();if(typeof B!=="number"){B=e.symbols_[B]||B}return B||s}var A=stdLex;var d,h,E,D;var v={$:true,_$:undefined,yy:c};var F;var G;var O;var M;var g=false;try{this.__reentrant_call_depth++;l.setInput(B,c);if(typeof l.canIUse==="function"){var I=l.canIUse();if(I.fastLex&&typeof fastLex==="function"){A=fastLex}}n[C]=null;t[C]=0;r[C]=0;++C;if(this.pre_parse){this.pre_parse.call(this,c)}if(c.pre_parse){c.pre_parse.call(this,c)}M=t[C-1];for(;;){d=M;if(this.defaultActions[d]){h=2;M=this.defaultActions[d]}else{if(!o){o=A()}D=i[d]&&i[d][o]||f;M=D[1];h=D[0];if(!h){var H;var L=this.describeSymbol(o)||o;var m=this.collect_expected_token_set(d);if(typeof l.yylineno==="number"){H="Parse error on line "+(l.yylineno+1)+": "}else{H="Parse error: "}if(typeof l.showPosition==="function"){H+="\n"+l.showPosition(79-10,10)+"\n"}if(m.length){H+="Expecting "+m.join(", ")+", got unexpected "+L}else{H+="Unexpected "+L}F=this.constructParseErrorInfo(H,null,m,false);E=this.parseError(F.errStr,F,this.JisonParserError);if(typeof E!=="undefined"){g=E}break}}switch(h){default:if(h instanceof Array){F=this.constructParseErrorInfo("Parse Error: multiple actions possible at state: "+d+", token: "+o,null,null,false);E=this.parseError(F.errStr,F,this.JisonParserError);if(typeof E!=="undefined"){g=E}break}F=this.constructParseErrorInfo("Parsing halted. No viable error recovery approach available due to internal system failure.",null,null,false);E=this.parseError(F.errStr,F,this.JisonParserError);if(typeof E!=="undefined"){g=E}break;case 1:r[C]=o;n[C]=l.yytext;t[C]=M;++C;o=0;continue;case 2:O=this.productions_[M-1];G=O[1];E=this.performAction.call(v,M,C-1,n);if(typeof E!=="undefined"){g=E;break}C-=G;var y=O[0];r[C]=y;n[C]=v.$;M=i[t[C-1]][y];t[C]=M;++C;continue;case 3:if(C!==-2){g=true;C--;if(typeof n[C]!=="undefined"){g=n[C]}}break}break}}catch(B){if(B instanceof this.JisonParserError){throw B}else if(l&&typeof l.JisonLexerError==="function"&&B instanceof l.JisonLexerError){throw B}F=this.constructParseErrorInfo("Parsing aborted due to exception.",B,null,false);g=false;E=this.parseError(F.errStr,F,this.JisonParserError);if(typeof E!=="undefined"){g=E}}finally{g=this.cleanupAfterParse(g,true,true);this.__reentrant_call_depth--}return g}};B.originalParseError=B.parseError;B.originalQuoteName=B.quoteName;var e=function(){function JisonLexerError(B,e){Object.defineProperty(this,"name",{enumerable:false,writable:false,value:"JisonLexerError"});if(B==null)B="???";Object.defineProperty(this,"message",{enumerable:false,writable:true,value:B});this.hash=e;var r;if(e&&e.exception instanceof Error){var t=e.exception;this.message=t.message||B;r=t.stack}if(!r){if(Error.hasOwnProperty("captureStackTrace")){Error.captureStackTrace(this,this.constructor)}else{r=new Error(B).stack}}if(r){Object.defineProperty(this,"stack",{enumerable:false,writable:false,value:r})}}if(typeof Object.setPrototypeOf==="function"){Object.setPrototypeOf(JisonLexerError.prototype,Error.prototype)}else{JisonLexerError.prototype=Object.create(Error.prototype)}JisonLexerError.prototype.constructor=JisonLexerError;JisonLexerError.prototype.name="JisonLexerError";var B={EOF:1,ERROR:2,__currentRuleSet__:null,__error_infos:[],__decompressed:false,done:false,_backtrack:false,_input:"",_more:false,_signaled_error_token:false,conditionStack:[],match:"",matched:"",matches:false,yytext:"",offset:0,yyleng:0,yylineno:0,yylloc:null,constructLexErrorInfo:function lexer_constructLexErrorInfo(B,e,r){B=""+B;if(r==undefined){r=!(B.indexOf("\n")>0&&B.indexOf("^")>0)}if(this.yylloc&&r){if(typeof this.prettyPrintRange==="function"){var t=this.prettyPrintRange(this.yylloc);if(!/\n\s*$/.test(B)){B+="\n"}B+="\n Erroneous area:\n"+this.prettyPrintRange(this.yylloc)}else if(typeof this.showPosition==="function"){var n=this.showPosition();if(n){if(B.length&&B[B.length-1]!=="\n"&&n[0]!=="\n"){B+="\n"+n}else{B+=n}}}}var i={errStr:B,recoverable:!!e,text:this.match,token:null,line:this.yylineno,loc:this.yylloc,yy:this.yy,lexer:this,destroy:function destructLexErrorInfo(){var B=!!this.recoverable;for(var e in this){if(this.hasOwnProperty(e)&&typeof e==="object"){this[e]=undefined}}this.recoverable=B}};this.__error_infos.push(i);return i},parseError:function lexer_parseError(B,e,r){if(!r){r=this.JisonLexerError}if(this.yy){if(this.yy.parser&&typeof this.yy.parser.parseError==="function"){return this.yy.parser.parseError.call(this,B,e,r)||this.ERROR}else if(typeof this.yy.parseError==="function"){return this.yy.parseError.call(this,B,e,r)||this.ERROR}}throw new r(B,e)},yyerror:function yyError(B){var e="";if(this.yylloc){e=" on line "+(this.yylineno+1)}var r=this.constructLexErrorInfo("Lexical error"+e+": "+B,this.options.lexerErrorsAreRecoverable);var t=Array.prototype.slice.call(arguments,1);if(t.length){r.extra_error_attributes=t}return this.parseError(r.errStr,r,this.JisonLexerError)||this.ERROR},cleanupAfterLex:function lexer_cleanupAfterLex(B){this.setInput("",{});if(!B){for(var e=this.__error_infos.length-1;e>=0;e--){var r=this.__error_infos[e];if(r&&typeof r.destroy==="function"){r.destroy()}}this.__error_infos.length=0}return this},clear:function lexer_clear(){this.yytext="";this.yyleng=0;this.match="";this.matches=false;this._more=false;this._backtrack=false;var B=this.yylloc?this.yylloc.last_column:0;this.yylloc={first_line:this.yylineno+1,first_column:B,last_line:this.yylineno+1,last_column:B,range:[this.offset,this.offset]}},setInput:function lexer_setInput(B,e){this.yy=e||this.yy||{};if(!this.__decompressed){var r=this.rules;for(var t=0,n=r.length;t<n;t++){var i=r[t];if(typeof i==="number"){r[t]=r[i]}}var C=this.conditions;for(var o in C){var a=C[o];var s=a.rules;var n=s.length;var u=new Array(n+1);var f=new Array(n+1);for(var t=0;t<n;t++){var l=s[t];var i=r[l];u[t+1]=i;f[t+1]=l}a.rules=f;a.__rule_regexes=u;a.__rule_count=n}this.__decompressed=true}this._input=B||"";this.clear();this._signaled_error_token=false;this.done=false;this.yylineno=0;this.matched="";this.conditionStack=["INITIAL"];this.__currentRuleSet__=null;this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0,range:[0,0]};this.offset=0;return this},editRemainingInput:function lexer_editRemainingInput(B,e){var r=B.call(this,this._input,e);if(typeof r!=="string"){if(r){this._input=""+r}}else{this._input=r}return this},input:function lexer_input(){if(!this._input){return null}var B=this._input[0];this.yytext+=B;this.yyleng++;this.offset++;this.match+=B;this.matched+=B;var e=1;var r=false;if(B==="\n"){r=true}else if(B==="\r"){r=true;var t=this._input[1];if(t==="\n"){e++;B+=t;this.yytext+=t;this.yyleng++;this.offset++;this.match+=t;this.matched+=t;this.yylloc.range[1]++}}if(r){this.yylineno++;this.yylloc.last_line++;this.yylloc.last_column=0}else{this.yylloc.last_column++}this.yylloc.range[1]++;this._input=this._input.slice(e);return B},unput:function lexer_unput(B){var e=B.length;var r=B.split(/(?:\r\n?|\n)/g);this._input=B+this._input;this.yytext=this.yytext.substr(0,this.yytext.length-e);this.yyleng=this.yytext.length;this.offset-=e;this.match=this.match.substr(0,this.match.length-e);this.matched=this.matched.substr(0,this.matched.length-e);if(r.length>1){this.yylineno-=r.length-1;this.yylloc.last_line=this.yylineno+1;var t=this.match;var n=t.split(/(?:\r\n?|\n)/g);if(n.length===1){t=this.matched;n=t.split(/(?:\r\n?|\n)/g)}this.yylloc.last_column=n[n.length-1].length}else{this.yylloc.last_column-=e}this.yylloc.range[1]=this.yylloc.range[0]+this.yyleng;this.done=false;return this},more:function lexer_more(){this._more=true;return this},reject:function lexer_reject(){if(this.options.backtrack_lexer){this._backtrack=true}else{var B="";if(this.yylloc){B=" on line "+(this.yylineno+1)}var e=this.constructLexErrorInfo("Lexical error"+B+": You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).",false);this._signaled_error_token=this.parseError(e.errStr,e,this.JisonLexerError)||this.ERROR}return this},less:function lexer_less(B){return this.unput(this.match.slice(B))},pastInput:function lexer_pastInput(B,e){var r=this.matched.substring(0,this.matched.length-this.match.length);if(B<0)B=r.length;else if(!B)B=20;if(e<0)e=r.length;else if(!e)e=1;r=r.substr(-B*2-2);var t=r.replace(/\r\n|\r/g,"\n").split("\n");t=t.slice(-e);r=t.join("\n");if(r.length>B){r="..."+r.substr(-B)}return r},upcomingInput:function lexer_upcomingInput(B,e){var r=this.match;if(B<0)B=r.length+this._input.length;else if(!B)B=20;if(e<0)e=B;else if(!e)e=1;if(r.length<B*2+2){r+=this._input.substring(0,B*2+2)}var t=r.replace(/\r\n|\r/g,"\n").split("\n");t=t.slice(0,e);r=t.join("\n");if(r.length>B){r=r.substring(0,B)+"..."}return r},showPosition:function lexer_showPosition(B,e){var r=this.pastInput(B).replace(/\s/g," ");var t=new Array(r.length+1).join("-");return r+this.upcomingInput(e).replace(/\s/g," ")+"\n"+t+"^"},deriveLocationInfo:function lexer_deriveYYLLOC(B,e,r,t){var n={first_line:1,first_column:0,last_line:1,last_column:0,range:[0,0]};if(B){n.first_line=B.first_line|0;n.last_line=B.last_line|0;n.first_column=B.first_column|0;n.last_column=B.last_column|0;if(B.range){n.range[0]=B.range[0]|0;n.range[1]=B.range[1]|0}}if(n.first_line<=0||n.last_line<n.first_line){if(n.first_line<=0&&e){n.first_line=e.last_line|0;n.first_column=e.last_column|0;if(e.range){n.range[0]=B.range[1]|0}}if((n.last_line<=0||n.last_line<n.first_line)&&r){n.last_line=r.first_line|0;n.last_column=r.first_column|0;if(r.range){n.range[1]=B.range[0]|0}}if(n.first_line<=0&&t&&(n.last_line<=0||t.last_line<=n.last_line)){n.first_line=t.first_line|0;n.first_column=t.first_column|0;if(t.range){n.range[0]=t.range[0]|0}}if(n.last_line<=0&&t&&(n.first_line<=0||t.first_line>=n.first_line)){n.last_line=t.last_line|0;n.last_column=t.last_column|0;if(t.range){n.range[1]=t.range[1]|0}}}if(n.last_line<=0){if(n.first_line<=0){n.first_line=this.yylloc.first_line;n.last_line=this.yylloc.last_line;n.first_column=this.yylloc.first_column;n.last_column=this.yylloc.last_column;n.range[0]=this.yylloc.range[0];n.range[1]=this.yylloc.range[1]}else{n.last_line=this.yylloc.last_line;n.last_column=this.yylloc.last_column;n.range[1]=this.yylloc.range[1]}}if(n.first_line<=0){n.first_line=n.last_line;n.first_column=0;n.range[1]=n.range[0]}if(n.first_column<0){n.first_column=0}if(n.last_column<0){n.last_column=n.first_column>0?n.first_column:80}return n},prettyPrintRange:function lexer_prettyPrintRange(B,e,r){B=this.deriveLocationInfo(B,e,r);const t=3;const n=1;const i=2;var C=this.matched+this._input;var o=C.split("\n");var a=Math.max(1,e?e.first_line:B.first_line-t);var s=Math.max(1,r?r.last_line:B.last_line+n);var u=1+Math.log10(s|1)|0;var f=new Array(u).join(" ");var l=[];var c=o.slice(a-1,s+1).map(function injectLineNumber(e,r){var t=r+a;var n=(f+t).substr(-u);var i=n+": "+e;var C=new Array(u+1).join("^");var o=2+1;var s=0;if(t===B.first_line){o+=B.first_column;s=Math.max(2,(t===B.last_line?B.last_column:e.length)-B.first_column+1)}else if(t===B.last_line){s=Math.max(2,B.last_column+1)}else if(t>B.first_line&&t<B.last_line){s=Math.max(2,e.length+1)}if(s){var c=new Array(o).join(".");var p=new Array(s).join("^");i+="\n"+C+c+p;if(e.trim().length>0){l.push(r)}}i=i.replace(/\t/g," ");return i});if(l.length>2*i){var p=l[i-1]+1;var A=l[l.length-i]-1;var d=new Array(u+1).join(" ")+" (...continued...)";d+="\n"+new Array(u+1).join("-")+" (---------------)";c.splice(p,A-p+1,d)}return c.join("\n")},describeYYLLOC:function lexer_describe_yylloc(B,e){var r=B.first_line;var t=B.last_line;var n=B.first_column;var i=B.last_column;var C=t-r;var o=i-n;var a;if(C===0){a="line "+r+", ";if(o<=1){a+="column "+n}else{a+="columns "+n+" .. "+i}}else{a="lines "+r+"(column "+n+") .. "+t+"(column "+i+")"}if(B.range&&e){var s=B.range[0];var u=B.range[1]-1;if(u<=s){a+=" {String Offset: "+s+"}"}else{a+=" {String Offset range: "+s+" .. "+u+"}"}}return a},test_match:function lexer_test_match(B,e){var r,t,n,i,C;if(this.options.backtrack_lexer){n={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.yylloc.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column,range:this.yylloc.range.slice(0)},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done}}i=B[0];C=i.length;t=i.split(/(?:\r\n?|\n)/g);if(t.length>1){this.yylineno+=t.length-1;this.yylloc.last_line=this.yylineno+1;this.yylloc.last_column=t[t.length-1].length}else{this.yylloc.last_column+=C}this.yytext+=i;this.match+=i;this.matched+=i;this.matches=B;this.yyleng=this.yytext.length;this.yylloc.range[1]+=C;this.offset+=C;this._more=false;this._backtrack=false;this._input=this._input.slice(C);r=this.performAction.call(this,this.yy,e,this.conditionStack[this.conditionStack.length-1]);if(this.done&&this._input){this.done=false}if(r){return r}else if(this._backtrack){for(var o in n){this[o]=n[o]}this.__currentRuleSet__=null;return false}else if(this._signaled_error_token){r=this._signaled_error_token;this._signaled_error_token=false;return r}return false},next:function lexer_next(){if(this.done){this.clear();return this.EOF}if(!this._input){this.done=true}var B,e,r,t;if(!this._more){this.clear()}var n=this.__currentRuleSet__;if(!n){n=this.__currentRuleSet__=this._currentRules();if(!n||!n.rules){var i="";if(this.options.trackPosition){i=" on line "+(this.yylineno+1)}var C=this.constructLexErrorInfo("Internal lexer engine error"+i+': The lex grammar programmer pushed a non-existing condition name "'+this.topState()+'"; this is a fatal error and should be reported to the application programmer team!',false);return this.parseError(C.errStr,C,this.JisonLexerError)||this.ERROR}}var o=n.rules;var a=n.__rule_regexes;var s=n.__rule_count;for(var u=1;u<=s;u++){r=this._input.match(a[u]);if(r&&(!e||r[0].length>e[0].length)){e=r;t=u;if(this.options.backtrack_lexer){B=this.test_match(r,o[u]);if(B!==false){return B}else if(this._backtrack){e=undefined;continue}else{return false}}else if(!this.options.flex){break}}}if(e){B=this.test_match(e,o[t]);if(B!==false){return B}return false}if(!this._input){this.done=true;this.clear();return this.EOF}else{var i="";if(this.options.trackPosition){i=" on line "+(this.yylineno+1)}var C=this.constructLexErrorInfo("Lexical error"+i+": Unrecognized text.",this.options.lexerErrorsAreRecoverable);var f=this._input;var l=this.topState();var c=this.conditionStack.length;B=this.parseError(C.errStr,C,this.JisonLexerError)||this.ERROR;if(B===this.ERROR){if(!this.matches&&f===this._input&&l===this.topState()&&c===this.conditionStack.length){this.input()}}return B}},lex:function lexer_lex(){var B;if(typeof this.pre_lex==="function"){B=this.pre_lex.call(this,0)}if(typeof this.options.pre_lex==="function"){B=this.options.pre_lex.call(this,B)||B}if(this.yy&&typeof this.yy.pre_lex==="function"){B=this.yy.pre_lex.call(this,B)||B}while(!B){B=this.next()}if(this.yy&&typeof this.yy.post_lex==="function"){B=this.yy.post_lex.call(this,B)||B}if(typeof this.options.post_lex==="function"){B=this.options.post_lex.call(this,B)||B}if(typeof this.post_lex==="function"){B=this.post_lex.call(this,B)||B}return B},fastLex:function lexer_fastLex(){var B;while(!B){B=this.next()}return B},canIUse:function lexer_canIUse(){var B={fastLex:!(typeof this.pre_lex==="function"||typeof this.options.pre_lex==="function"||this.yy&&typeof this.yy.pre_lex==="function"||this.yy&&typeof this.yy.post_lex==="function"||typeof this.options.post_lex==="function"||typeof this.post_lex==="function")&&typeof this.fastLex==="function"};return B},begin:function lexer_begin(B){return this.pushState(B)},pushState:function lexer_pushState(B){this.conditionStack.push(B);this.__currentRuleSet__=null;return this},popState:function lexer_popState(){var B=this.conditionStack.length-1;if(B>0){this.__currentRuleSet__=null;return this.conditionStack.pop()}else{return this.conditionStack[0]}},topState:function lexer_topState(B){B=this.conditionStack.length-1-Math.abs(B||0);if(B>=0){return this.conditionStack[B]}else{return"INITIAL"}},_currentRules:function lexer__currentRules(){if(this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]){return this.conditions[this.conditionStack[this.conditionStack.length-1]]}else{return this.conditions["INITIAL"]}},stateStackSize:function lexer_stateStackSize(){return this.conditionStack.length},options:{trackPosition:true,caseInsensitive:true},JisonLexerError:JisonLexerError,performAction:function lexer__performAction(B,e,r){var t=this;var n=r;switch(e){case 0:break;default:return this.simpleCaseActionClusters[e]}},simpleCaseActionClusters:{1:3,2:10,3:8,4:9,5:6,6:7,7:17,8:18,9:19,10:20,11:22,12:21,13:23,14:24,15:11,16:11,17:11,18:11,19:11,20:11,21:11,22:12,23:12,24:12,25:12,26:13,27:13,28:14,29:14,30:15,31:15,32:15,33:25,34:26,35:16,36:4,37:5,38:1},rules:[/^(?:\s+)/i,/^(?:(-(webkit|moz)-)?calc\b)/i,/^(?:[a-z][\d\-a-z]*\s*\((?:(?:"(?:\\.|[^"\\])*"|'(?:\\.|[^'\\])*')|\([^)]*\)|[^()]*)*\))/i,/^(?:\*)/i,/^(?:\/)/i,/^(?:\+)/i,/^(?:-)/i,/^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)em\b)/i,/^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)ex\b)/i,/^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)ch\b)/i,/^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)rem\b)/i,/^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)vw\b)/i,/^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)vh\b)/i,/^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)vmin\b)/i,/^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)vmax\b)/i,/^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)cm\b)/i,/^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)mm\b)/i,/^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)Q\b)/i,/^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)in\b)/i,/^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)pt\b)/i,/^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)pc\b)/i,/^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)px\b)/i,/^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)deg\b)/i,/^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)grad\b)/i,/^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)rad\b)/i,/^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)turn\b)/i,/^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)s\b)/i,/^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)ms\b)/i,/^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)Hz\b)/i,/^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)kHz\b)/i,/^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)dpi\b)/i,/^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)dpcm\b)/i,/^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)dppx\b)/i,/^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)%)/i,/^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)\b)/i,/^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)-?([^\W\d]|[ -ÿ]|(\\[\dA-Fa-f]{1,6}(\r\n|[\t\n\f\r ])?|\\[^\d\n\f\rA-Fa-f]))([\w\-]|[ -ÿ]|(\\[\dA-Fa-f]{1,6}(\r\n|[\t\n\f\r ])?|\\[^\d\n\f\rA-Fa-f]))*\b)/i,/^(?:\()/i,/^(?:\))/i,/^(?:$)/i],conditions:{INITIAL:{rules:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38],inclusive:true}}};return B}();B.lexer=e;function Parser(){this.yy={}}Parser.prototype=B;B.Parser=Parser;return new Parser}();if(true){e.parser=r;e.Parser=r.Parser;e.parse=function(){return r.parse.apply(r,arguments)}}},100:function(B){B.exports={A:{A:{1:"A B",2:"I D F E iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X",33:"Y Z a b"},E:{1:"F E A B C N H fB XB R U jB kB",2:"G W I D 0B YB cB dB eB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U"},G:{1:"F xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB uB vB wB"},H:{2:"AC"},I:{1:"Q FC GC",2:"KB G BC CC DC EC IB"},J:{1:"A",2:"D"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:2,C:"High Resolution Time API"}},111:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB"},E:{2:"G W I D F E A B C 0B YB cB dB eB fB XB R",194:"N H U jB kB"},F:{1:"4 5 6 7 8 9 AB CB EB FB GB HB DB V M T",2:"0 1 2 3 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:5,C:"CSS Paint API"}},126:function(B){var e=200;var r="__lodash_hash_undefined__";var t=1/0;var n="[object Function]",i="[object GeneratorFunction]";var C=/[\\^$.*+?()[\]{}|]/g;var o=/^\[object .+?Constructor\]$/;var a=typeof global=="object"&&global&&global.Object===Object&&global;var s=typeof self=="object"&&self&&self.Object===Object&&self;var u=a||s||Function("return this")();function arrayIncludes(B,e){var r=B?B.length:0;return!!r&&baseIndexOf(B,e,0)>-1}function arrayIncludesWith(B,e,r){var t=-1,n=B?B.length:0;while(++t<n){if(r(e,B[t])){return true}}return false}function baseFindIndex(B,e,r,t){var n=B.length,i=r+(t?1:-1);while(t?i--:++i<n){if(e(B[i],i,B)){return i}}return-1}function baseIndexOf(B,e,r){if(e!==e){return baseFindIndex(B,baseIsNaN,r)}var t=r-1,n=B.length;while(++t<n){if(B[t]===e){return t}}return-1}function baseIsNaN(B){return B!==B}function cacheHas(B,e){return B.has(e)}function getValue(B,e){return B==null?undefined:B[e]}function isHostObject(B){var e=false;if(B!=null&&typeof B.toString!="function"){try{e=!!(B+"")}catch(B){}}return e}function setToArray(B){var e=-1,r=Array(B.size);B.forEach(function(B){r[++e]=B});return r}var f=Array.prototype,l=Function.prototype,c=Object.prototype;var p=u["__core-js_shared__"];var A=function(){var B=/[^.]+$/.exec(p&&p.keys&&p.keys.IE_PROTO||"");return B?"Symbol(src)_1."+B:""}();var d=l.toString;var h=c.hasOwnProperty;var E=c.toString;var D=RegExp("^"+d.call(h).replace(C,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");var v=f.splice;var F=getNative(u,"Map"),G=getNative(u,"Set"),O=getNative(Object,"create");function Hash(B){var e=-1,r=B?B.length:0;this.clear();while(++e<r){var t=B[e];this.set(t[0],t[1])}}function hashClear(){this.__data__=O?O(null):{}}function hashDelete(B){return this.has(B)&&delete this.__data__[B]}function hashGet(B){var e=this.__data__;if(O){var t=e[B];return t===r?undefined:t}return h.call(e,B)?e[B]:undefined}function hashHas(B){var e=this.__data__;return O?e[B]!==undefined:h.call(e,B)}function hashSet(B,e){var t=this.__data__;t[B]=O&&e===undefined?r:e;return this}Hash.prototype.clear=hashClear;Hash.prototype["delete"]=hashDelete;Hash.prototype.get=hashGet;Hash.prototype.has=hashHas;Hash.prototype.set=hashSet;function ListCache(B){var e=-1,r=B?B.length:0;this.clear();while(++e<r){var t=B[e];this.set(t[0],t[1])}}function listCacheClear(){this.__data__=[]}function listCacheDelete(B){var e=this.__data__,r=assocIndexOf(e,B);if(r<0){return false}var t=e.length-1;if(r==t){e.pop()}else{v.call(e,r,1)}return true}function listCacheGet(B){var e=this.__data__,r=assocIndexOf(e,B);return r<0?undefined:e[r][1]}function listCacheHas(B){return assocIndexOf(this.__data__,B)>-1}function listCacheSet(B,e){var r=this.__data__,t=assocIndexOf(r,B);if(t<0){r.push([B,e])}else{r[t][1]=e}return this}ListCache.prototype.clear=listCacheClear;ListCache.prototype["delete"]=listCacheDelete;ListCache.prototype.get=listCacheGet;ListCache.prototype.has=listCacheHas;ListCache.prototype.set=listCacheSet;function MapCache(B){var e=-1,r=B?B.length:0;this.clear();while(++e<r){var t=B[e];this.set(t[0],t[1])}}function mapCacheClear(){this.__data__={hash:new Hash,map:new(F||ListCache),string:new Hash}}function mapCacheDelete(B){return getMapData(this,B)["delete"](B)}function mapCacheGet(B){return getMapData(this,B).get(B)}function mapCacheHas(B){return getMapData(this,B).has(B)}function mapCacheSet(B,e){getMapData(this,B).set(B,e);return this}MapCache.prototype.clear=mapCacheClear;MapCache.prototype["delete"]=mapCacheDelete;MapCache.prototype.get=mapCacheGet;MapCache.prototype.has=mapCacheHas;MapCache.prototype.set=mapCacheSet;function SetCache(B){var e=-1,r=B?B.length:0;this.__data__=new MapCache;while(++e<r){this.add(B[e])}}function setCacheAdd(B){this.__data__.set(B,r);return this}function setCacheHas(B){return this.__data__.has(B)}SetCache.prototype.add=SetCache.prototype.push=setCacheAdd;SetCache.prototype.has=setCacheHas;function assocIndexOf(B,e){var r=B.length;while(r--){if(eq(B[r][0],e)){return r}}return-1}function baseIsNative(B){if(!isObject(B)||isMasked(B)){return false}var e=isFunction(B)||isHostObject(B)?D:o;return e.test(toSource(B))}function baseUniq(B,r,t){var n=-1,i=arrayIncludes,C=B.length,o=true,a=[],s=a;if(t){o=false;i=arrayIncludesWith}else if(C>=e){var u=r?null:M(B);if(u){return setToArray(u)}o=false;i=cacheHas;s=new SetCache}else{s=r?[]:a}B:while(++n<C){var f=B[n],l=r?r(f):f;f=t||f!==0?f:0;if(o&&l===l){var c=s.length;while(c--){if(s[c]===l){continue B}}if(r){s.push(l)}a.push(f)}else if(!i(s,l,t)){if(s!==a){s.push(l)}a.push(f)}}return a}var M=!(G&&1/setToArray(new G([,-0]))[1]==t)?noop:function(B){return new G(B)};function getMapData(B,e){var r=B.__data__;return isKeyable(e)?r[typeof e=="string"?"string":"hash"]:r.map}function getNative(B,e){var r=getValue(B,e);return baseIsNative(r)?r:undefined}function isKeyable(B){var e=typeof B;return e=="string"||e=="number"||e=="symbol"||e=="boolean"?B!=="__proto__":B===null}function isMasked(B){return!!A&&A in B}function toSource(B){if(B!=null){try{return d.call(B)}catch(B){}try{return B+""}catch(B){}}return""}function uniq(B){return B&&B.length?baseUniq(B):[]}function eq(B,e){return B===e||B!==B&&e!==e}function isFunction(B){var e=isObject(B)?E.call(B):"";return e==n||e==i}function isObject(B){var e=typeof B;return!!B&&(e=="object"||e=="function")}function noop(){}B.exports=uniq},127:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g",194:"h i j k l m n o p q r s"},E:{2:"G W I D 0B YB cB dB",260:"F E A B C N H eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g lB mB nB oB R VB qB U"},G:{2:"YB rB IB tB uB vB",260:"F wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"Blending of HTML/SVG elements"}},129:function(B,e,r){"use strict";e.__esModule=true;e.default=void 0;var t=_interopRequireDefault(r(7837));var n=_interopRequireDefault(r(7950));var i=_interopRequireDefault(r(4631));var C=_interopRequireDefault(r(686));var o=_interopRequireDefault(r(7901));var a=_interopRequireDefault(r(7048));var s=_interopRequireDefault(r(7463));var u=_interopRequireDefault(r(2474));var f=_interopRequireDefault(r(1222));var l=_interopRequireDefault(r(3108));var c=_interopRequireWildcard(r(4382));var p=_interopRequireDefault(r(5301));var A=_interopRequireDefault(r(2519));var d=_interopRequireDefault(r(6499));var h=_interopRequireDefault(r(626));var E=_interopRequireWildcard(r(7598));var D=_interopRequireWildcard(r(3854));var v=_interopRequireWildcard(r(8019));var F=r(7744);var G,O;function _interopRequireWildcard(B){if(B&&B.__esModule){return B}else{var e={};if(B!=null){for(var r in B){if(Object.prototype.hasOwnProperty.call(B,r)){var t=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor(B,r):{};if(t.get||t.set){Object.defineProperty(e,r,t)}else{e[r]=B[r]}}}}e.default=B;return e}}function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _defineProperties(B,e){for(var r=0;r<e.length;r++){var t=e[r];t.enumerable=t.enumerable||false;t.configurable=true;if("value"in t)t.writable=true;Object.defineProperty(B,t.key,t)}}function _createClass(B,e,r){if(e)_defineProperties(B.prototype,e);if(r)_defineProperties(B,r);return B}var M=(G={},G[D.space]=true,G[D.cr]=true,G[D.feed]=true,G[D.newline]=true,G[D.tab]=true,G);var g=Object.assign({},M,(O={},O[D.comment]=true,O));function tokenStart(B){return{line:B[E.FIELDS.START_LINE],column:B[E.FIELDS.START_COL]}}function tokenEnd(B){return{line:B[E.FIELDS.END_LINE],column:B[E.FIELDS.END_COL]}}function getSource(B,e,r,t){return{start:{line:B,column:e},end:{line:r,column:t}}}function getTokenSource(B){return getSource(B[E.FIELDS.START_LINE],B[E.FIELDS.START_COL],B[E.FIELDS.END_LINE],B[E.FIELDS.END_COL])}function getTokenSourceSpan(B,e){if(!B){return undefined}return getSource(B[E.FIELDS.START_LINE],B[E.FIELDS.START_COL],e[E.FIELDS.END_LINE],e[E.FIELDS.END_COL])}function unescapeProp(B,e){var r=B[e];if(typeof r!=="string"){return}if(r.indexOf("\\")!==-1){(0,F.ensureObject)(B,"raws");B[e]=(0,F.unesc)(r);if(B.raws[e]===undefined){B.raws[e]=r}}return B}var I=function(){function Parser(B,e){if(e===void 0){e={}}this.rule=B;this.options=Object.assign({lossy:false,safe:false},e);this.position=0;this.css=typeof this.rule==="string"?this.rule:this.rule.selector;this.tokens=(0,E.default)({css:this.css,error:this._errorGenerator(),safe:this.options.safe});var r=getTokenSourceSpan(this.tokens[0],this.tokens[this.tokens.length-1]);this.root=new i.default({source:r});this.root.errorGenerator=this._errorGenerator();var t=new C.default({source:{start:{line:1,column:1}}});this.root.append(t);this.current=t;this.loop()}var B=Parser.prototype;B._errorGenerator=function _errorGenerator(){var B=this;return function(e,r){if(typeof B.rule==="string"){return new Error(e)}return B.rule.error(e,r)}};B.attribute=function attribute(){var B=[];var e=this.currToken;this.position++;while(this.position<this.tokens.length&&this.currToken[E.FIELDS.TYPE]!==D.closeSquare){B.push(this.currToken);this.position++}if(this.currToken[E.FIELDS.TYPE]!==D.closeSquare){return this.expected("closing square bracket",this.currToken[E.FIELDS.START_POS])}var r=B.length;var t={source:getSource(e[1],e[2],this.currToken[3],this.currToken[4]),sourceIndex:e[E.FIELDS.START_POS]};if(r===1&&!~[D.word].indexOf(B[0][E.FIELDS.TYPE])){return this.expected("attribute",B[0][E.FIELDS.START_POS])}var n=0;var i="";var C="";var o=null;var a=false;while(n<r){var s=B[n];var u=this.content(s);var f=B[n+1];switch(s[E.FIELDS.TYPE]){case D.space:a=true;if(this.options.lossy){break}if(o){(0,F.ensureObject)(t,"spaces",o);var l=t.spaces[o].after||"";t.spaces[o].after=l+u;var p=(0,F.getProp)(t,"raws","spaces",o,"after")||null;if(p){t.raws.spaces[o].after=p+u}}else{i=i+u;C=C+u}break;case D.asterisk:if(f[E.FIELDS.TYPE]===D.equals){t.operator=u;o="operator"}else if((!t.namespace||o==="namespace"&&!a)&&f){if(i){(0,F.ensureObject)(t,"spaces","attribute");t.spaces.attribute.before=i;i=""}if(C){(0,F.ensureObject)(t,"raws","spaces","attribute");t.raws.spaces.attribute.before=i;C=""}t.namespace=(t.namespace||"")+u;var A=(0,F.getProp)(t,"raws","namespace")||null;if(A){t.raws.namespace+=u}o="namespace"}a=false;break;case D.dollar:if(o==="value"){var d=(0,F.getProp)(t,"raws","value");t.value+="$";if(d){t.raws.value=d+"$"}break}case D.caret:if(f[E.FIELDS.TYPE]===D.equals){t.operator=u;o="operator"}a=false;break;case D.combinator:if(u==="~"&&f[E.FIELDS.TYPE]===D.equals){t.operator=u;o="operator"}if(u!=="|"){a=false;break}if(f[E.FIELDS.TYPE]===D.equals){t.operator=u;o="operator"}else if(!t.namespace&&!t.attribute){t.namespace=true}a=false;break;case D.word:if(f&&this.content(f)==="|"&&B[n+2]&&B[n+2][E.FIELDS.TYPE]!==D.equals&&!t.operator&&!t.namespace){t.namespace=u;o="namespace"}else if(!t.attribute||o==="attribute"&&!a){if(i){(0,F.ensureObject)(t,"spaces","attribute");t.spaces.attribute.before=i;i=""}if(C){(0,F.ensureObject)(t,"raws","spaces","attribute");t.raws.spaces.attribute.before=C;C=""}t.attribute=(t.attribute||"")+u;var h=(0,F.getProp)(t,"raws","attribute")||null;if(h){t.raws.attribute+=u}o="attribute"}else if(!t.value&&t.value!==""||o==="value"&&!a){var v=(0,F.unesc)(u);var G=(0,F.getProp)(t,"raws","value")||"";var O=t.value||"";t.value=O+v;t.quoteMark=null;if(v!==u||G){(0,F.ensureObject)(t,"raws");t.raws.value=(G||O)+u}o="value"}else{var M=u==="i"||u==="I";if((t.value||t.value==="")&&(t.quoteMark||a)){t.insensitive=M;if(!M||u==="I"){(0,F.ensureObject)(t,"raws");t.raws.insensitiveFlag=u}o="insensitive";if(i){(0,F.ensureObject)(t,"spaces","insensitive");t.spaces.insensitive.before=i;i=""}if(C){(0,F.ensureObject)(t,"raws","spaces","insensitive");t.raws.spaces.insensitive.before=C;C=""}}else if(t.value||t.value===""){o="value";t.value+=u;if(t.raws.value){t.raws.value+=u}}}a=false;break;case D.str:if(!t.attribute||!t.operator){return this.error("Expected an attribute followed by an operator preceding the string.",{index:s[E.FIELDS.START_POS]})}var g=(0,c.unescapeValue)(u),I=g.unescaped,H=g.quoteMark;t.value=I;t.quoteMark=H;o="value";(0,F.ensureObject)(t,"raws");t.raws.value=u;a=false;break;case D.equals:if(!t.attribute){return this.expected("attribute",s[E.FIELDS.START_POS],u)}if(t.value){return this.error('Unexpected "=" found; an operator was already defined.',{index:s[E.FIELDS.START_POS]})}t.operator=t.operator?t.operator+u:u;o="operator";a=false;break;case D.comment:if(o){if(a||f&&f[E.FIELDS.TYPE]===D.space||o==="insensitive"){var L=(0,F.getProp)(t,"spaces",o,"after")||"";var m=(0,F.getProp)(t,"raws","spaces",o,"after")||L;(0,F.ensureObject)(t,"raws","spaces",o);t.raws.spaces[o].after=m+u}else{var y=t[o]||"";var N=(0,F.getProp)(t,"raws",o)||y;(0,F.ensureObject)(t,"raws");t.raws[o]=N+u}}else{C=C+u}break;default:return this.error('Unexpected "'+u+'" found.',{index:s[E.FIELDS.START_POS]})}n++}unescapeProp(t,"attribute");unescapeProp(t,"namespace");this.newNode(new c.default(t));this.position++};B.parseWhitespaceEquivalentTokens=function parseWhitespaceEquivalentTokens(B){if(B<0){B=this.tokens.length}var e=this.position;var r=[];var t="";var n=undefined;do{if(M[this.currToken[E.FIELDS.TYPE]]){if(!this.options.lossy){t+=this.content()}}else if(this.currToken[E.FIELDS.TYPE]===D.comment){var i={};if(t){i.before=t;t=""}n=new a.default({value:this.content(),source:getTokenSource(this.currToken),sourceIndex:this.currToken[E.FIELDS.START_POS],spaces:i});r.push(n)}}while(++this.position<B);if(t){if(n){n.spaces.after=t}else if(!this.options.lossy){var C=this.tokens[e];var o=this.tokens[this.position-1];r.push(new f.default({value:"",source:getSource(C[E.FIELDS.START_LINE],C[E.FIELDS.START_COL],o[E.FIELDS.END_LINE],o[E.FIELDS.END_COL]),sourceIndex:C[E.FIELDS.START_POS],spaces:{before:t,after:""}}))}}return r};B.convertWhitespaceNodesToSpace=function convertWhitespaceNodesToSpace(B,e){var r=this;if(e===void 0){e=false}var t="";var n="";B.forEach(function(B){var i=r.lossySpace(B.spaces.before,e);var C=r.lossySpace(B.rawSpaceBefore,e);t+=i+r.lossySpace(B.spaces.after,e&&i.length===0);n+=i+B.value+r.lossySpace(B.rawSpaceAfter,e&&C.length===0)});if(n===t){n=undefined}var i={space:t,rawSpace:n};return i};B.isNamedCombinator=function isNamedCombinator(B){if(B===void 0){B=this.position}return this.tokens[B+0]&&this.tokens[B+0][E.FIELDS.TYPE]===D.slash&&this.tokens[B+1]&&this.tokens[B+1][E.FIELDS.TYPE]===D.word&&this.tokens[B+2]&&this.tokens[B+2][E.FIELDS.TYPE]===D.slash};B.namedCombinator=function namedCombinator(){if(this.isNamedCombinator()){var B=this.content(this.tokens[this.position+1]);var e=(0,F.unesc)(B).toLowerCase();var r={};if(e!==B){r.value="/"+B+"/"}var t=new A.default({value:"/"+e+"/",source:getSource(this.currToken[E.FIELDS.START_LINE],this.currToken[E.FIELDS.START_COL],this.tokens[this.position+2][E.FIELDS.END_LINE],this.tokens[this.position+2][E.FIELDS.END_COL]),sourceIndex:this.currToken[E.FIELDS.START_POS],raws:r});this.position=this.position+3;return t}else{this.unexpected()}};B.combinator=function combinator(){var B=this;if(this.content()==="|"){return this.namespace()}var e=this.locateNextMeaningfulToken(this.position);if(e<0||this.tokens[e][E.FIELDS.TYPE]===D.comma){var r=this.parseWhitespaceEquivalentTokens(e);if(r.length>0){var t=this.current.last;if(t){var n=this.convertWhitespaceNodesToSpace(r),i=n.space,C=n.rawSpace;if(C!==undefined){t.rawSpaceAfter+=C}t.spaces.after+=i}else{r.forEach(function(e){return B.newNode(e)})}}return}var o=this.currToken;var a=undefined;if(e>this.position){a=this.parseWhitespaceEquivalentTokens(e)}var s;if(this.isNamedCombinator()){s=this.namedCombinator()}else if(this.currToken[E.FIELDS.TYPE]===D.combinator){s=new A.default({value:this.content(),source:getTokenSource(this.currToken),sourceIndex:this.currToken[E.FIELDS.START_POS]});this.position++}else if(M[this.currToken[E.FIELDS.TYPE]]){}else if(!a){this.unexpected()}if(s){if(a){var u=this.convertWhitespaceNodesToSpace(a),f=u.space,l=u.rawSpace;s.spaces.before=f;s.rawSpaceBefore=l}}else{var c=this.convertWhitespaceNodesToSpace(a,true),p=c.space,d=c.rawSpace;if(!d){d=p}var h={};var v={spaces:{}};if(p.endsWith(" ")&&d.endsWith(" ")){h.before=p.slice(0,p.length-1);v.spaces.before=d.slice(0,d.length-1)}else if(p.startsWith(" ")&&d.startsWith(" ")){h.after=p.slice(1);v.spaces.after=d.slice(1)}else{v.value=d}s=new A.default({value:" ",source:getTokenSourceSpan(o,this.tokens[this.position-1]),sourceIndex:o[E.FIELDS.START_POS],spaces:h,raws:v})}if(this.currToken&&this.currToken[E.FIELDS.TYPE]===D.space){s.spaces.after=this.optionalSpace(this.content());this.position++}return this.newNode(s)};B.comma=function comma(){if(this.position===this.tokens.length-1){this.root.trailingComma=true;this.position++;return}this.current._inferEndPosition();var B=new C.default({source:{start:tokenStart(this.tokens[this.position+1])}});this.current.parent.append(B);this.current=B;this.position++};B.comment=function comment(){var B=this.currToken;this.newNode(new a.default({value:this.content(),source:getTokenSource(B),sourceIndex:B[E.FIELDS.START_POS]}));this.position++};B.error=function error(B,e){throw this.root.error(B,e)};B.missingBackslash=function missingBackslash(){return this.error("Expected a backslash preceding the semicolon.",{index:this.currToken[E.FIELDS.START_POS]})};B.missingParenthesis=function missingParenthesis(){return this.expected("opening parenthesis",this.currToken[E.FIELDS.START_POS])};B.missingSquareBracket=function missingSquareBracket(){return this.expected("opening square bracket",this.currToken[E.FIELDS.START_POS])};B.unexpected=function unexpected(){return this.error("Unexpected '"+this.content()+"'. Escaping special characters with \\ may help.",this.currToken[E.FIELDS.START_POS])};B.namespace=function namespace(){var B=this.prevToken&&this.content(this.prevToken)||true;if(this.nextToken[E.FIELDS.TYPE]===D.word){this.position++;return this.word(B)}else if(this.nextToken[E.FIELDS.TYPE]===D.asterisk){this.position++;return this.universal(B)}};B.nesting=function nesting(){if(this.nextToken){var B=this.content(this.nextToken);if(B==="|"){this.position++;return}}var e=this.currToken;this.newNode(new d.default({value:this.content(),source:getTokenSource(e),sourceIndex:e[E.FIELDS.START_POS]}));this.position++};B.parentheses=function parentheses(){var B=this.current.last;var e=1;this.position++;if(B&&B.type===v.PSEUDO){var r=new C.default({source:{start:tokenStart(this.tokens[this.position-1])}});var t=this.current;B.append(r);this.current=r;while(this.position<this.tokens.length&&e){if(this.currToken[E.FIELDS.TYPE]===D.openParenthesis){e++}if(this.currToken[E.FIELDS.TYPE]===D.closeParenthesis){e--}if(e){this.parse()}else{this.current.source.end=tokenEnd(this.currToken);this.current.parent.source.end=tokenEnd(this.currToken);this.position++}}this.current=t}else{var n=this.currToken;var i="(";var o;while(this.position<this.tokens.length&&e){if(this.currToken[E.FIELDS.TYPE]===D.openParenthesis){e++}if(this.currToken[E.FIELDS.TYPE]===D.closeParenthesis){e--}o=this.currToken;i+=this.parseParenthesisToken(this.currToken);this.position++}if(B){B.appendToPropertyAndEscape("value",i,i)}else{this.newNode(new f.default({value:i,source:getSource(n[E.FIELDS.START_LINE],n[E.FIELDS.START_COL],o[E.FIELDS.END_LINE],o[E.FIELDS.END_COL]),sourceIndex:n[E.FIELDS.START_POS]}))}}if(e){return this.expected("closing parenthesis",this.currToken[E.FIELDS.START_POS])}};B.pseudo=function pseudo(){var B=this;var e="";var r=this.currToken;while(this.currToken&&this.currToken[E.FIELDS.TYPE]===D.colon){e+=this.content();this.position++}if(!this.currToken){return this.expected(["pseudo-class","pseudo-element"],this.position-1)}if(this.currToken[E.FIELDS.TYPE]===D.word){this.splitWord(false,function(t,n){e+=t;B.newNode(new l.default({value:e,source:getTokenSourceSpan(r,B.currToken),sourceIndex:r[E.FIELDS.START_POS]}));if(n>1&&B.nextToken&&B.nextToken[E.FIELDS.TYPE]===D.openParenthesis){B.error("Misplaced parenthesis.",{index:B.nextToken[E.FIELDS.START_POS]})}})}else{return this.expected(["pseudo-class","pseudo-element"],this.currToken[E.FIELDS.START_POS])}};B.space=function space(){var B=this.content();if(this.position===0||this.prevToken[E.FIELDS.TYPE]===D.comma||this.prevToken[E.FIELDS.TYPE]===D.openParenthesis){this.spaces=this.optionalSpace(B);this.position++}else if(this.position===this.tokens.length-1||this.nextToken[E.FIELDS.TYPE]===D.comma||this.nextToken[E.FIELDS.TYPE]===D.closeParenthesis){this.current.last.spaces.after=this.optionalSpace(B);this.position++}else{this.combinator()}};B.string=function string(){var B=this.currToken;this.newNode(new f.default({value:this.content(),source:getTokenSource(B),sourceIndex:B[E.FIELDS.START_POS]}));this.position++};B.universal=function universal(B){var e=this.nextToken;if(e&&this.content(e)==="|"){this.position++;return this.namespace()}var r=this.currToken;this.newNode(new p.default({value:this.content(),source:getTokenSource(r),sourceIndex:r[E.FIELDS.START_POS]}),B);this.position++};B.splitWord=function splitWord(B,e){var r=this;var i=this.nextToken;var C=this.content();while(i&&~[D.dollar,D.caret,D.equals,D.word].indexOf(i[E.FIELDS.TYPE])){this.position++;var a=this.content();C+=a;if(a.lastIndexOf("\\")===a.length-1){var f=this.nextToken;if(f&&f[E.FIELDS.TYPE]===D.space){C+=this.requiredSpace(this.content(f));this.position++}}i=this.nextToken}var l=(0,t.default)(C,".").filter(function(B){return C[B-1]!=="\\"});var c=(0,t.default)(C,"#").filter(function(B){return C[B-1]!=="\\"});var p=(0,t.default)(C,"#{");if(p.length){c=c.filter(function(B){return!~p.indexOf(B)})}var A=(0,h.default)((0,n.default)([0].concat(l,c)));A.forEach(function(t,n){var i=A[n+1]||C.length;var a=C.slice(t,i);if(n===0&&e){return e.call(r,a,A.length)}var f;var p=r.currToken;var d=p[E.FIELDS.START_POS]+A[n];var h=getSource(p[1],p[2]+t,p[3],p[2]+(i-1));if(~l.indexOf(t)){var D={value:a.slice(1),source:h,sourceIndex:d};f=new o.default(unescapeProp(D,"value"))}else if(~c.indexOf(t)){var v={value:a.slice(1),source:h,sourceIndex:d};f=new s.default(unescapeProp(v,"value"))}else{var F={value:a,source:h,sourceIndex:d};unescapeProp(F,"value");f=new u.default(F)}r.newNode(f,B);B=null});this.position++};B.word=function word(B){var e=this.nextToken;if(e&&this.content(e)==="|"){this.position++;return this.namespace()}return this.splitWord(B)};B.loop=function loop(){while(this.position<this.tokens.length){this.parse(true)}this.current._inferEndPosition();return this.root};B.parse=function parse(B){switch(this.currToken[E.FIELDS.TYPE]){case D.space:this.space();break;case D.comment:this.comment();break;case D.openParenthesis:this.parentheses();break;case D.closeParenthesis:if(B){this.missingParenthesis()}break;case D.openSquare:this.attribute();break;case D.dollar:case D.caret:case D.equals:case D.word:this.word();break;case D.colon:this.pseudo();break;case D.comma:this.comma();break;case D.asterisk:this.universal();break;case D.ampersand:this.nesting();break;case D.slash:case D.combinator:this.combinator();break;case D.str:this.string();break;case D.closeSquare:this.missingSquareBracket();case D.semicolon:this.missingBackslash();default:this.unexpected()}};B.expected=function expected(B,e,r){if(Array.isArray(B)){var t=B.pop();B=B.join(", ")+" or "+t}var n=/^[aeiou]/.test(B[0])?"an":"a";if(!r){return this.error("Expected "+n+" "+B+".",{index:e})}return this.error("Expected "+n+" "+B+', found "'+r+'" instead.',{index:e})};B.requiredSpace=function requiredSpace(B){return this.options.lossy?" ":B};B.optionalSpace=function optionalSpace(B){return this.options.lossy?"":B};B.lossySpace=function lossySpace(B,e){if(this.options.lossy){return e?" ":""}else{return B}};B.parseParenthesisToken=function parseParenthesisToken(B){var e=this.content(B);if(B[E.FIELDS.TYPE]===D.space){return this.requiredSpace(e)}else{return e}};B.newNode=function newNode(B,e){if(e){if(/^ +$/.test(e)){if(!this.options.lossy){this.spaces=(this.spaces||"")+e}e=true}B.namespace=e;unescapeProp(B,"namespace")}if(this.spaces){B.spaces.before=this.spaces;this.spaces=""}return this.current.append(B)};B.content=function content(B){if(B===void 0){B=this.currToken}return this.css.slice(B[E.FIELDS.START_POS],B[E.FIELDS.END_POS])};B.locateNextMeaningfulToken=function locateNextMeaningfulToken(B){if(B===void 0){B=this.position+1}var e=B;while(e<this.tokens.length){if(g[this.tokens[e][E.FIELDS.TYPE]]){e++;continue}else{return e}}return-1};_createClass(Parser,[{key:"currToken",get:function get(){return this.tokens[this.position]}},{key:"nextToken",get:function get(){return this.tokens[this.position+1]}},{key:"prevToken",get:function get(){return this.tokens[this.position-1]}}]);return Parser}();e.default=I;B.exports=e.default},146:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L",194:"y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"0 1 2 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",194:"3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p lB mB nB oB R VB qB U",194:"0 1 2 3 4 5 6 7 8 9 q r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C R VB U",194:"O"},L:{194:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G",194:"IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{194:"QC"},S:{2:"RC"}},B:7,C:"CSS @apply rule"}},158:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",36:"C N H P J K L"},C:{1:"3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L pB hB",33:"0 1 2 X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},D:{1:"9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",36:"0 1 2 3 4 5 6 7 8 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},E:{1:"B C N H XB R U jB kB",2:"G 0B YB",36:"W I D F E A cB dB eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U",36:"P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v"},G:{1:"ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB",36:"F IB tB uB vB wB xB yB zB"},H:{2:"AC"},I:{1:"Q",36:"KB G BC CC DC EC IB FC GC"},J:{36:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{36:"A B"},O:{1:"HC"},P:{1:"KC LC MC XB NC OC",36:"G IC JC"},Q:{1:"PC"},R:{1:"QC"},S:{33:"RC"}},B:5,C:"::placeholder CSS pseudo-element"}},161:function(B,e){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var r={px:{px:1,cm:96/2.54,mm:96/25.4,q:96/101.6,in:96,pt:96/72,pc:16},cm:{px:2.54/96,cm:1,mm:.1,q:.025,in:2.54,pt:2.54/72,pc:2.54/6},mm:{px:25.4/96,cm:10,mm:1,q:.25,in:25.4,pt:25.4/72,pc:25.4/6},q:{px:101.6/96,cm:40,mm:4,q:1,in:101.6,pt:101.6/72,pc:101.6/6},in:{px:1/96,cm:1/2.54,mm:1/25.4,q:1/101.6,in:1,pt:1/72,pc:1/6},pt:{px:.75,cm:72/2.54,mm:72/25.4,q:72/101.6,in:72,pt:1,pc:12},pc:{px:.0625,cm:6/2.54,mm:6/25.4,q:6/101.6,in:6,pt:6/72,pc:1},deg:{deg:1,grad:.9,rad:180/Math.PI,turn:360},grad:{deg:400/360,grad:1,rad:200/Math.PI,turn:400},rad:{deg:Math.PI/180,grad:Math.PI/200,rad:1,turn:Math.PI*2},turn:{deg:1/360,grad:.0025,rad:.5/Math.PI,turn:1},s:{s:1,ms:.001},ms:{s:1e3,ms:1},hz:{hz:1,khz:1e3},khz:{hz:.001,khz:1},dpi:{dpi:1,dpcm:1/2.54,dppx:1/96},dpcm:{dpi:2.54,dpcm:1,dppx:2.54/96},dppx:{dpi:96,dpcm:96/2.54,dppx:1}};function convertUnit(B,e,t,n){var i=e.toLowerCase();var C=t.toLowerCase();if(!r[C]){throw new Error("Cannot convert to "+t)}if(!r[C][i]){throw new Error("Cannot convert from "+e+" to "+t)}var o=r[C][i]*B;if(n!==false){n=Math.pow(10,parseInt(n)||5);return Math.round(o*n)/n}return o}var t=convertUnit;e.default=t;B.exports=e.default},163:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},E:{2:"G W I D F E A B C N 0B YB cB dB eB fB XB R U",16:"H jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:6,C:"Media Session API"}},165:function(B){B.exports={A:{A:{2:"I D iB",260:"F",388:"E A B"},B:{1:"P J K L y BB Q WB S",388:"C N H"},C:{1:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T qB",129:"U",260:"E B lB mB nB oB R VB"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"C O U",260:"A B R VB"},L:{1:"S"},M:{1:"M"},N:{388:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"CSS outline properties"}},200:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"K L y BB Q WB S",2:"C N H P J"},C:{1:"0 1 2 3 4 5 6 7 8 9 w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g pB hB",132:"h i j k l m n o p q r s t u v"},D:{1:"1 2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},E:{1:"B C N H XB R U jB kB",2:"G W I D F E A 0B YB cB dB eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n lB mB nB oB R VB qB U"},G:{1:"ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{1:"PC"},R:{2:"QC"},S:{1:"RC"}},B:1,C:"URLSearchParams"}},203:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(8791));var n=_interopRequireDefault(r(9896));var i=r(1106);var C=r(2453);var o=r(9920);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}var a=(0,t.default)([i.IE_5_5,i.IE_6,i.IE_7],[o.RULE],function(B){if((0,n.default)(B)){return}const{selector:e}=B;const r=e.trim();if(r.lastIndexOf(",")===e.length-1||r.lastIndexOf("\\")===e.length-1){this.push(B,{identifier:C.SELECTOR,hack:e})}});e.default=a;B.exports=e.default},206:function(B){B.exports={A:{A:{2:"I D F E A iB",132:"B"},B:{1:"y BB Q WB",132:"C N H P J K L",513:"S"},C:{1:"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n pB hB"},D:{1:"JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB",2:"G W I D F E A B C N H P J K L X Y",260:"0 1 2 3 4 5 6 7 8 9 Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB",513:"S gB bB aB"},E:{1:"C N H R U jB kB",2:"G W I D 0B YB cB dB",132:"F E A B eB fB XB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U"},G:{1:"3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB uB vB",132:"F wB xB yB zB ZB 1B 2B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{513:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"Referrer Policy"}},210:function(B){B.exports={A:{A:{1:"E A B",2:"I D F iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h"},E:{1:"B C N H XB R U jB kB",2:"G W I D F E A 0B YB cB dB eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T U",2:"E B P J lB mB nB oB R VB qB",16:"C"},G:{1:"ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB"},H:{2:"AC"},I:{1:"Q FC GC",2:"KB G BC CC DC EC IB"},J:{2:"D A"},K:{1:"O U",2:"A B R VB",16:"C"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:5,C:"KeyboardEvent.getModifierState()"}},219:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"T MB NB OB PB QB RB SB TB UB y BB",2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M pB hB"},D:{1:"GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",194:"6 7 8 9 AB LB CB JB EB FB"},E:{1:"H jB kB",2:"G W I D F E A B C 0B YB cB dB eB fB XB R U",66:"N"},F:{1:"4 5 6 7 8 9 AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s lB mB nB oB R VB qB U",194:"0 1 2 3 t u v w x O z"},G:{1:"8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"MC XB NC OC",2:"G IC JC KC LC"},Q:{1:"PC"},R:{2:"QC"},S:{2:"RC"}},B:7,C:"Resize Observer"}},260:function(B){B.exports={A:{A:{16:"I D F E A B iB"},B:{1:"y BB Q WB S",16:"C N H P J K L"},C:{1:"FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",16:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB pB hB"},D:{1:"JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",16:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB"},E:{16:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 AB CB EB FB GB HB DB V M T",16:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z lB mB nB oB R VB qB U"},G:{16:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{16:"AC"},I:{1:"Q",16:"KB G BC CC DC EC IB FC GC"},J:{16:"D A"},K:{16:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{16:"A B"},O:{16:"HC"},P:{16:"G IC JC KC LC MC XB NC OC"},Q:{16:"PC"},R:{16:"QC"},S:{16:"RC"}},B:5,C:"Clear-Site-Data Header"}},271:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"N H P J K L y BB Q WB S",2:"C"},C:{1:"0 1 2 3 4 5 6 7 8 9 q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l pB hB",578:"m n o p"},D:{1:"0 1 2 3 4 5 6 7 8 9 q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o",194:"p"},E:{1:"A B C N H fB XB R U jB kB",2:"G W I D F E 0B YB cB dB eB"},F:{1:"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b lB mB nB oB R VB qB U",322:"c"},G:{1:"yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"Picture element"}},273:function(B){B.exports={A:{A:{1:"A B",2:"I D F E iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T oB R VB qB U",2:"E lB mB",16:"nB"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{1:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"B C O R VB U",16:"A"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"Base64 encoding and decoding"}},325:function(B){B.exports={A:{A:{2:"I D F E A iB",132:"B"},B:{2:"y BB Q WB S",132:"C N H P J K L"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"N H jB kB",2:"G W I D F E A 0B YB cB dB eB fB XB",516:"B C R U"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB"},H:{2:"AC"},I:{2:"KB G BC CC DC EC IB FC GC",258:"Q"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{258:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G",258:"IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:6,C:"HEVC/H.265 video format"}},335:function(B){B.exports={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",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:"#ff00ff",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:"#00ff00",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:"#ff0000",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:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"}},340:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:7,C:"Private class fields"}},341:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L",2114:"y BB Q WB S"},C:{2:"sB KB G W I D pB hB",132:"0 1 2 3 4 5 6 7 8 9 F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s",322:"0 1 2 3",578:"t u v w x O z",2114:"4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"E B C P J K L X Y Z a b c d e f g h i j k l m lB mB nB oB R VB qB U",322:"n o p q",2114:"0 1 2 3 4 5 6 7 8 9 r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{1156:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2114:"PC"},R:{2:"QC"},S:{2:"RC"}},B:7,C:"Context menu item (menuitem element)"}},342:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H",32772:"P J K L"},C:{2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i pB hB",132:"j k l m",260:"n",516:"o p q r s t u v w",8196:"0 1 2 3 4 5 6 7 8 9 x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{1:"0 1 2 3 4 5 6 7 8 9 s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n",1028:"o p q",2052:"r"},E:{1:"A B C N H XB R U jB kB",2:"G W I D F E 0B YB cB dB eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a lB mB nB oB R VB qB U",1028:"b c d",2052:"e"},G:{1:"zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{4100:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{8196:"RC"}},B:2,C:"Content Security Policy Level 2"}},343:function(B){B.exports={A:{A:{1:"E A B",2:"I D iB",132:"F"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{1:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:2,C:"CSS Generated content for pseudo-elements"}},345:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m",260:"O"},E:{1:"B C N H XB R U jB kB",2:"G W I D 0B YB cB dB",132:"F E A eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z lB mB nB oB R VB qB U",260:"l"},G:{1:"ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB uB vB",132:"F wB xB yB zB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C R VB U",260:"O"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"CSS background-blend-mode"}},370:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{2:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{1:"QC"},S:{2:"RC"}},B:5,C:"Web MIDI API"}},383:function(B){B.exports=["ah","apple","atsc","epub","hp","khtml","moz","ms","o","rim","ro","tc","wap","webkit","xv"]},385:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y",2:"C N H P J K L BB Q WB S"},C:{2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB",66:"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x O z AB LB CB"},D:{1:"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y",2:"G W I D F E A B C N H P J K L X Y Z a b c BB Q WB S gB bB aB",33:"d e f g h i j k l m"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB",2:"E B C V M T lB mB nB oB R VB qB U",33:"P J K L X Y Z"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB",33:"FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",33:"G"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:7,C:"Shadow DOM (deprecated V0 spec)"}},416:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"A B C N H XB R U jB kB",2:"G W I D F E 0B YB cB dB eB fB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:5,C:"CSS hanging-punctuation"}},423:function(B,e){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=getValue;function getValue({value:B}){return B}B.exports=e.default},433:function(B){"use strict";B.exports=function hslRegex(B){B=B||{};return B.exact?/^hsl\(\s*(\d+)\s*,\s*(\d*(?:\.\d+)?%)\s*,\s*(\d*(?:\.\d+)?%)\)$/:/hsl\(\s*(\d+)\s*,\s*(\d*(?:\.\d+)?%)\s*,\s*(\d*(?:\.\d+)?%)\)/gi}},438:function(B){B.exports={A:{A:{1:"E A B",132:"I D F iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB",2:"sB KB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H YB cB dB eB fB XB R U jB kB",2:"0B"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T mB nB oB R VB qB U",2:"E lB"},G:{1:"F IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",260:"YB rB"},H:{2:"AC"},I:{1:"G Q EC IB FC GC",2:"BC",4:"KB CC DC"},J:{1:"A",4:"D"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"@font-face Web fonts"}},444:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(1300));var n=_interopRequireDefault(r(5813));var i=_interopRequireDefault(r(9782));var C=_interopRequireDefault(r(8889));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}var o=[t.default,n.default,i.default,C.default];e.default=o;B.exports=e.default},447:function(B,e,r){var t=r(5570);var n=r(582);var i=r(1766);function ValueParser(B){if(this instanceof ValueParser){this.nodes=t(B);return this}return new ValueParser(B)}ValueParser.prototype.toString=function(){return Array.isArray(this.nodes)?i(this.nodes):""};ValueParser.prototype.walk=function(B,e){n(this.nodes,B,e);return this};ValueParser.unit=r(4651);ValueParser.walk=n;ValueParser.stringify=i;B.exports=ValueParser},454:function(B,e,r){"use strict";var t=r(5739);B.exports=t.call(Function.call,Object.prototype.hasOwnProperty)},476:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L BB Q WB S",16:"y"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S",16:"gB bB aB"},E:{1:"B",2:"G W I D F E A C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:7,C:"Explicit descendant combinator >>"}},477:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"P J K L y BB Q WB S",2:"C N H"},C:{1:"0 1 2 3 4 5 6 7 8 9 f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",33:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e pB hB"},D:{1:"M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",33:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V"},E:{1:"B C N H R U jB kB",33:"G W I D F E A 0B YB cB dB eB fB XB"},F:{1:"7 8 9 C AB CB EB FB GB HB DB V M T qB U",2:"E B lB mB nB oB R VB",33:"0 1 2 3 4 5 6 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{33:"D A"},K:{2:"A B C R VB U",33:"O"},L:{1:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{33:"PC"},R:{2:"QC"},S:{2:"RC"}},B:3,C:"CSS grab & grabbing cursors"}},484:function(B){B.exports={A:{A:{2:"I D F iB",260:"E A B"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H pB hB"},D:{1:"2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n",132:"0 1 o p q r s t u v w x O z"},E:{1:"C N H R U jB kB",2:"G W I D E A B 0B YB cB dB fB XB",132:"F eB"},F:{1:"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x O z AB CB EB FB GB HB DB V M T U",2:"P J K L X Y Z a",4:"B C mB nB oB R VB qB",16:"E lB",132:"b c d e f g h i j k l m n o"},G:{1:"2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB uB vB xB yB zB ZB 1B",132:"F wB"},H:{1:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D",132:"A"},K:{1:"O U",4:"A B C R VB"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",132:"G"},Q:{1:"PC"},R:{132:"QC"},S:{1:"RC"}},B:4,C:"SVG fragment identifiers"}},504:function(B,e,r){const t=r(2043);B.exports=t.plugin("postcss-plugin-stub",function(){return function(){}})},516:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g pB hB"},D:{1:"1 2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O",194:"0 z"},E:{2:"G W I D F E A B C 0B YB cB dB eB fB XB R",322:"N H U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l lB mB nB oB R VB qB U",194:"m n"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B",578:"3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{1:"PC"},R:{2:"QC"},S:{1:"RC"}},B:5,C:"MediaRecorder API"}},542:function(B,e){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var r={style:["italic","oblique"],variant:["small-caps"],weight:["100","200","300","400","500","600","700","800","900","bold","lighter","bolder"],stretch:["ultra-condensed","extra-condensed","condensed","semi-condensed","semi-expanded","expanded","extra-expanded","ultra-expanded"],size:["xx-small","x-small","small","medium","large","x-large","xx-large","larger","smaller"]};e.default=r;B.exports=e.default},552:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(2043));var n=_interopRequireDefault(r(6486));var i=_interopRequireDefault(r(2366));var C=_interopRequireDefault(r(6208));var o=_interopRequireDefault(r(6566));var a=_interopRequireDefault(r(3055));var s=_interopRequireDefault(r(5782));var u=r(8522);var f=_interopRequireDefault(r(2786));var l=r(3585);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function ownKeys(B,e){var r=Object.keys(B);if(Object.getOwnPropertySymbols){var t=Object.getOwnPropertySymbols(B);if(e)t=t.filter(function(e){return Object.getOwnPropertyDescriptor(B,e).enumerable});r.push.apply(r,t)}return r}function _objectSpread(B){for(var e=1;e<arguments.length;e++){var r=arguments[e]!=null?arguments[e]:{};if(e%2){ownKeys(Object(r),true).forEach(function(e){_defineProperty(B,e,r[e])})}else if(Object.getOwnPropertyDescriptors){Object.defineProperties(B,Object.getOwnPropertyDescriptors(r))}else{ownKeys(Object(r)).forEach(function(e){Object.defineProperty(B,e,Object.getOwnPropertyDescriptor(r,e))})}}return B}function _defineProperty(B,e,r){if(e in B){Object.defineProperty(B,e,{value:r,enumerable:true,configurable:true,writable:true})}else{B[e]=r}return B}const c={border:C.default,"border-block":C.default,"border-inline":C.default,"border-block-end":C.default,"border-block-start":C.default,"border-inline-end":C.default,"border-inline-start":C.default,"border-top":C.default,"border-right":C.default,"border-bottom":C.default,"border-left":C.default};const p={"grid-auto-flow":u.normalizeGridAutoFlow,"grid-column-gap":u.normalizeGridColumnRowGap,"grid-row-gap":u.normalizeGridColumnRowGap,"grid-column":u.normalizeGridColumnRow,"grid-row":u.normalizeGridColumnRow,"grid-row-start":u.normalizeGridColumnRow,"grid-row-end":u.normalizeGridColumnRow,"grid-column-start":u.normalizeGridColumnRow,"grid-column-end":u.normalizeGridColumnRow};const A={"column-rule":l.columnsRule,columns:l.column};const d=_objectSpread(_objectSpread(_objectSpread({animation:i.default,outline:C.default,"box-shadow":o.default,"flex-flow":a.default,"list-style":f.default,transition:s.default},c),p),A);function isVariableFunctionNode(B){if(B.type!=="function"){return false}return["var","env"].includes(B.value.toLowerCase())}function shouldAbort(B){let e=false;B.walk(B=>{if(B.type==="comment"||isVariableFunctionNode(B)||B.type==="word"&&~B.value.indexOf(`___CSS_LOADER_IMPORT___`)){e=true;return false}});return e}function getValue(B){let{value:e,raws:r}=B;if(r&&r.value&&r.value.raw){e=r.value.raw}return e}var h=t.default.plugin("postcss-ordered-values",()=>{return B=>{const e={};B.walkDecls(B=>{const r=B.prop.toLowerCase();const i=t.default.vendor.unprefixed(r);const C=d[i];if(!C){return}const o=getValue(B);if(e[o]){B.value=e[o];return}const a=(0,n.default)(o);if(a.nodes.length<2||shouldAbort(a)){e[o]=o;return}const s=C(a);B.value=s;e[o]=s})}});e.default=h;B.exports=e.default},562:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",16:"sB",33:"0 1 KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB"},D:{1:"HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",16:"G W I D F E A B C N H",33:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB"},E:{1:"E A B C N H fB XB R U jB kB",16:"G W I 0B YB cB",33:"D F dB eB"},F:{1:"4 5 6 7 8 9 AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U",33:"0 1 2 3 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},G:{1:"xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB rB IB tB",33:"F uB vB wB"},H:{2:"AC"},I:{1:"Q",16:"KB G BC CC DC EC IB",33:"FC GC"},J:{16:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{33:"HC"},P:{1:"MC XB NC OC",16:"G",33:"IC JC KC LC"},Q:{1:"PC"},R:{1:"QC"},S:{33:"RC"}},B:5,C:"CSS :any-link selector"}},571:function(B){B.exports={A:{A:{1:"A B",2:"I D F E iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i pB hB",194:"j k l m"},D:{1:"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c"},E:{1:"C N H R U jB kB",2:"G W I D F E A 0B YB cB dB eB fB XB",260:"B"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U"},G:{1:"1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB"},H:{2:"AC"},I:{1:"Q FC GC",2:"KB G BC CC DC EC IB"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"Resource Timing"}},578:function(B){B.exports={A:{A:{1:"B",2:"I D iB",132:"A",260:"F E"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB NB OB PB QB RB SB TB UB y BB pB hB",2:"sB KB",1025:"JB EB FB GB HB DB V M T MB"},D:{1:"0 1 2 3 4 5 6 7 8 9 N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",132:"G W I D F E A B C"},E:{2:"0B YB",513:"I D F E A B C N H dB eB fB XB R U jB kB",644:"G W cB"},F:{1:"0 1 2 3 4 5 6 7 8 9 C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T U",2:"E B lB mB nB oB R VB qB"},G:{513:"F uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",644:"YB rB IB tB"},H:{2:"AC"},I:{1:"Q FC GC",132:"KB G BC CC DC EC IB"},J:{1:"A",132:"D"},K:{1:"C O U",2:"A B R VB"},L:{1:"S"},M:{1:"M"},N:{1:"B",132:"A"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"Cross-Origin Resource Sharing"}},582:function(B){B.exports=function walk(B,e,r){var t,n,i,C;for(t=0,n=B.length;t<n;t+=1){i=B[t];if(!r){C=e(i,t,B)}if(C!==false&&i.type==="function"&&Array.isArray(i.nodes)){walk(i.nodes,e,r)}if(r){e(i,t,B)}}}},589:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K",130:"L"},C:{1:"AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB"},D:{1:"FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB"},E:{1:"N H jB kB",2:"G W I D F E A B C 0B YB cB dB eB fB XB R U"},F:{1:"2 3 4 5 6 7 8 9 AB CB EB FB GB HB DB V M T",2:"0 1 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z lB mB nB oB R VB qB U"},G:{1:"5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"LC MC XB NC OC",2:"G IC JC KC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:6,C:"Intl.PluralRules API"}},614:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b pB hB",194:"c d e f g h i j k l"},D:{1:"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g",33:"h i j k"},E:{1:"A B C N H fB XB R U jB kB",2:"G W I 0B YB cB dB",33:"D F E eB"},F:{1:"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P lB mB nB oB R VB qB U",33:"J K L X"},G:{2:"YB rB IB tB uB vB",33:"F wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q GC",2:"KB G BC CC DC EC IB",33:"FC"},J:{2:"D",33:"A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"CSS3 font-kerning"}},626:function(B,e){"use strict";e.__esModule=true;e.default=sortAscending;function sortAscending(B){return B.sort(function(B,e){return B-e})}B.exports=e.default},650:function(B){B.exports={A:{A:{1:"E A B",2:"iB",8:"I D F"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB hB",132:"sB KB pB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H cB dB eB fB XB R U jB kB",132:"0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{260:"AC"},I:{1:"KB G Q EC IB FC GC",132:"BC CC DC"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"Canvas (basic support)"}},653:function(B,e){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var r=["top","right","bottom","left"];e.default=r;B.exports=e.default},655:function(B){B.exports={A:{A:{1:"F E A B",2:"I D iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{1:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:2,C:"CSS Counters"}},660:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L",33:"y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"G W I D",33:"0 1 2 3 4 5 6 7 8 9 N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",36:"F E A B C"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"E B C lB mB nB oB R VB qB U",33:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D",33:"A"},K:{2:"A B C R VB U",33:"O"},L:{33:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G",33:"IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:7,C:"Filesystem & FileWriter API"}},661:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{16:"C N H P J K L y BB Q WB S"},C:{2:"0 1 2 3 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB",16:"4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S",16:"gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:5,C:"Media Queries: scripting media feature"}},665:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"K L y BB Q WB S",2:"C N H P J"},C:{1:"1 2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB"},D:{1:"6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",194:"4 5"},E:{1:"A B C N H XB R U jB kB",2:"G W I D F E 0B YB cB dB eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r lB mB nB oB R VB qB U",194:"s"},G:{1:"zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"JC KC LC MC XB NC OC",2:"G IC"},Q:{194:"PC"},R:{2:"QC"},S:{2:"RC"}},B:1,C:"DOM manipulation convenience methods"}},686:function(B,e,r){"use strict";e.__esModule=true;e.default=void 0;var t=_interopRequireDefault(r(4685));var n=r(8019);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _inheritsLoose(B,e){B.prototype=Object.create(e.prototype);B.prototype.constructor=B;B.__proto__=e}var i=function(B){_inheritsLoose(Selector,B);function Selector(e){var r;r=B.call(this,e)||this;r.type=n.SELECTOR;return r}return Selector}(t.default);e.default=i;B.exports=e.default},699:function(B,e){"use strict";e.__esModule=true;e.UNIVERSAL=e.ATTRIBUTE=e.CLASS=e.COMBINATOR=e.COMMENT=e.ID=e.NESTING=e.PSEUDO=e.ROOT=e.SELECTOR=e.STRING=e.TAG=void 0;var r="tag";e.TAG=r;var t="string";e.STRING=t;var n="selector";e.SELECTOR=n;var i="root";e.ROOT=i;var C="pseudo";e.PSEUDO=C;var o="nesting";e.NESTING=o;var a="id";e.ID=a;var s="comment";e.COMMENT=s;var u="combinator";e.COMBINATOR=u;var f="class";e.CLASS=f;var l="attribute";e.ATTRIBUTE=l;var c="universal";e.UNIVERSAL=c},703:function(B){B.exports={A:{A:{2:"I D F E A iB",2052:"B"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",132:"sB KB G W I D F E A B C pB hB",260:"N H P J K L X Y Z a b c d e f g h i j k l m n"},D:{1:"1 2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",260:"G W I D F E A B C N H P J K L X Y",772:"Z a b c d e f g h i j k l m n o p q r s",1028:"0 t u v w x O z"},E:{1:"A B C N H XB R U jB kB",260:"G W 0B YB",772:"I D F E cB dB eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E lB",132:"B mB nB oB R VB",644:"C qB U",772:"P J K L X Y Z a b c d e f",1028:"g h i j k l m n"},G:{1:"zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",260:"YB rB IB",772:"F tB uB vB wB xB yB"},H:{644:"AC"},I:{1:"Q",16:"BC CC",260:"DC",772:"KB G EC IB FC GC"},J:{772:"D A"},K:{1:"O",132:"A B R VB",644:"C U"},L:{1:"S"},M:{1:"M"},N:{1:"B",2:"A"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",1028:"G"},Q:{1:"PC"},R:{1028:"QC"},S:{1:"RC"}},B:6,C:"const"}},723:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u pB hB",132:"0 1 2 3 4 5 6 7 8 9 v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{1:"8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",260:"5 6 7"},E:{1:"B C N H R U jB kB",2:"G W I D F 0B YB cB dB eB",16:"E",132:"A fB XB"},F:{1:"0 1 2 3 4 5 6 7 8 9 v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u lB mB nB oB R VB qB U"},G:{1:"1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB",132:"xB yB zB ZB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{2:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"JC KC LC MC XB NC OC",2:"G IC"},Q:{1:"PC"},R:{2:"QC"},S:{132:"RC"}},B:5,C:"system-ui value for font-family"}},727:function(B){B.exports={A:{A:{1:"A B",2:"I D F E iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d pB hB",194:"e f g h i j k l m n o p q r s"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"W I D F E A B C N H cB dB eB fB XB R U jB kB",2:"G 0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T oB R VB qB U",2:"E lB mB",16:"nB"},G:{1:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB"},H:{2:"AC"},I:{1:"Q FC GC",2:"KB G BC CC DC EC IB"},J:{1:"D A"},K:{1:"B C O R VB U",2:"A"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"Channel messaging"}},733:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=r(2043);var n=B=>{const e=typeof B==="string"?t.list.space(B):B;return[e[0],e[1]||e[0],e[2]||e[0],e[3]||e[1]||e[0]]};e.default=n;B.exports=e.default},744:function(B){B.exports={A:{A:{1:"F E A B",8:"I D iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB hB",8:"sB KB pB"},D:{1:"0 1 2 3 4 5 6 7 8 9 W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",8:"G"},E:{1:"W I D F E A B C N H cB dB eB fB XB R U jB kB",8:"G 0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T oB R VB qB U",8:"E lB mB nB"},G:{1:"F rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB"},H:{2:"AC"},I:{1:"KB G Q CC DC EC IB FC GC",2:"BC"},J:{1:"D A"},K:{1:"B C O R VB U",8:"A"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"Hashchange event"}},755:function(B){B.exports={A:{A:{1:"I D iB",2:"F E A B"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H YB cB dB eB fB XB R U jB kB",16:"0B"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U",16:"E"},G:{1:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB rB IB"},H:{1:"AC"},I:{1:"KB G Q DC EC IB FC GC",16:"BC CC"},J:{1:"D A"},K:{1:"B C O R VB U",2:"A"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"wbr (word break opportunity) element"}},780:function(B){B.exports={A:{A:{1:"E A B",2:"I D F iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",16:"G W I D F E A B C N H P J K L X Y Z a b c d"},E:{1:"I D F E A B C N H cB dB eB fB XB R U jB kB",16:"G W 0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T U",2:"E B lB mB nB oB R VB qB",16:"C"},G:{1:"F uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB rB IB tB"},H:{16:"AC"},I:{1:"G Q EC IB FC GC",16:"KB BC CC DC"},J:{16:"D A"},K:{16:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{16:"A B"},O:{16:"HC"},P:{1:"IC JC KC LC MC XB NC OC",16:"G"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"Event.stopImmediatePropagation()"}},781:function(B){B.exports={A:{A:{1:"I D F E A B",2:"iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",132:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p"},E:{1:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{16:"AC"},I:{1:"KB G Q CC DC EC IB FC GC",260:"BC"},J:{1:"D A"},K:{16:"A B C O R VB U"},L:{1:"S"},M:{16:"M"},N:{16:"A B"},O:{16:"HC"},P:{1:"IC JC KC LC MC XB NC OC",16:"G"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:6,C:"SHA-2 SSL certificates"}},782:function(B){B.exports={A:{A:{4:"I D F E A B iB"},B:{1:"L y BB Q WB S",4:"C N H P J K"},C:{1:"1 2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB",4:"0 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",4:"G W I D F E A B C N H P J K L X Y Z a"},E:{1:"D F E A B C N H dB eB fB XB R U jB kB",4:"G W I 0B YB cB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T U",2:"E lB mB",4:"B C nB oB R VB qB"},G:{1:"F vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",4:"YB rB IB tB uB"},H:{4:"AC"},I:{1:"Q FC GC",4:"KB G BC CC DC EC IB"},J:{1:"A",4:"D"},K:{1:"O",4:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{4:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{4:"RC"}},B:5,C:"CSS3 Overflow-wrap"}},796:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"P J K L y BB Q WB S",2:"C",388:"N H"},C:{1:"0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d",132:"e f g h i j k l m"},E:{1:"E A B C N H fB XB R U jB kB",2:"G W I D 0B YB cB",388:"F eB",514:"dB"},F:{1:"0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U",132:"P J K L X Y Z"},G:{1:"xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB uB vB",388:"F wB"},H:{2:"AC"},I:{1:"Q FC GC",2:"KB G BC CC DC EC IB"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"HTML templates"}},810:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"0 1 2 3 v w x O z",2:"4 5 6 7 8 9 sB KB G W I D F E AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB",132:"J K L X Y Z a b c d e f g h i j k l m n o p q r s t u",164:"A B C N H P"},D:{1:"0 1 2 3 4 5 6 7 8 9 q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o",66:"p"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"Battery Status API"}},826:function(B){B.exports={A:{A:{1:"A B",260:"I D F E iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",132:"B",260:"sB KB G W I D pB hB",516:"F E A"},D:{1:"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",132:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i"},E:{1:"F E A B C N H eB fB XB R U jB kB",132:"G W I D 0B YB cB dB"},F:{1:"0 1 2 3 4 5 6 7 8 9 L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",16:"E lB",132:"B C P J K mB nB oB R VB qB U"},G:{1:"F wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",132:"YB rB IB tB uB vB"},H:{132:"AC"},I:{1:"Q FC GC",132:"KB G BC CC DC EC IB"},J:{132:"D A"},K:{1:"O",16:"A",132:"B C R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"DOM Parsing and Serialization"}},836:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB pB hB"},D:{1:"QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB"},E:{1:"B C N H XB R U jB kB",2:"G W I D F E A 0B YB cB dB eB fB"},F:{1:"GB HB DB V M T",2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB lB mB nB oB R VB qB U"},G:{1:"ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"NC OC",2:"G IC JC KC LC MC XB"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:5,C:"prefers-reduced-motion media query"}},854:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"C N H P J K L",322:"y BB Q WB S"},C:{2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k pB hB",194:"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w",322:"0 1 2 3 4 5 6 7 8 9 x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"D F E A B C N H dB eB fB XB R U jB kB",2:"G W I 0B YB cB"},F:{2:"E B C P J K L X Y Z a b c d e f g h i j lB mB nB oB R VB qB U",322:"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{1:"F vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB uB"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C R VB U",322:"O"},L:{322:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{194:"RC"}},B:1,C:"Video Tracks"}},870:function(B){B.exports={A:{A:{1:"I D F E A B iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",4:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v"},E:{1:"E A B C N H fB XB R U jB kB",4:"G W I D F 0B YB cB dB eB"},F:{1:"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U",4:"P J K L X Y Z a b c d e f g h i"},G:{1:"xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",4:"F YB rB IB tB uB vB wB"},H:{2:"AC"},I:{1:"Q",4:"KB G BC CC DC EC IB FC GC"},J:{4:"D A"},K:{2:"A B C R VB U",4:"O"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{4:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{4:"PC"},R:{1:"QC"},S:{1:"RC"}},B:5,C:"CSS3 word-break"}},877:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"S",33:"WB",164:"y BB Q",388:"C N H P J K L"},C:{1:"BB",164:"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y",676:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m pB hB"},D:{1:"S gB bB aB",33:"WB",164:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q"},E:{164:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"E B C lB mB nB oB R VB qB U",164:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{164:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{164:"KB G Q BC CC DC EC IB FC GC"},J:{164:"D A"},K:{2:"A B C R VB U",164:"O"},L:{1:"S"},M:{164:"M"},N:{2:"A",388:"B"},O:{164:"HC"},P:{164:"G IC JC KC LC MC XB NC OC"},Q:{164:"PC"},R:{164:"QC"},S:{164:"RC"}},B:5,C:"CSS Appearance"}},885:function(B){"use strict";B.exports={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]}},899:function(B){B.exports={A:{A:{1:"E A B",2:"iB",8:"I D",132:"F"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB",8:"sB KB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T mB nB oB R VB qB U",8:"E lB"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{1:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"querySelector/querySelectorAll"}},902:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J pB hB",129:"o p q r s t",420:"K L X Y Z a b c d e f g h i j k l m n"},D:{1:"5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y",420:"0 1 2 3 4 Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},E:{1:"B C N H R U jB kB",2:"G W I D F E A 0B YB cB dB eB fB XB"},F:{1:"0 1 2 3 4 5 6 7 8 9 s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B P J K lB mB nB oB R VB qB",420:"C L X Y Z a b c d e f g h i j k l m n o p q r U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB",513:"8B 9B",1537:"1B 2B 3B 4B 5B 6B 7B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D",420:"A"},K:{1:"O",2:"A B R VB",420:"C U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"JC KC LC MC XB NC OC",420:"G IC"},Q:{1:"PC"},R:{420:"QC"},S:{2:"RC"}},B:4,C:"getUserMedia/Stream API"}},933:function(B){B.exports={A:{A:{1:"B",2:"I D F E iB",164:"A"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W pB hB",8:"I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s",328:"0 1 2 3 4 5 6 7 8 9 t u v w x O z AB"},D:{1:"7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z",8:"0 1 2 3 a b c d e f g h i j k l m n o p q r s t u v w x O z",584:"4 5 6"},E:{1:"N H jB kB",2:"G W I 0B YB cB",8:"D F E A B C dB eB fB XB R",1096:"U"},F:{1:"0 1 2 3 4 5 6 7 8 9 u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U",8:"P J K L X Y Z a b c d e f g h i j k l m n o p q",584:"r s t"},G:{1:"6B 7B 8B 9B",8:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B",6148:"5B"},H:{2:"AC"},I:{1:"Q",8:"KB G BC CC DC EC IB FC GC"},J:{8:"D A"},K:{1:"O",2:"A",8:"B C R VB U"},L:{1:"S"},M:{328:"M"},N:{1:"B",36:"A"},O:{8:"HC"},P:{1:"JC KC LC MC XB NC OC",2:"IC",8:"G"},Q:{1:"PC"},R:{2:"QC"},S:{328:"RC"}},B:2,C:"Pointer events"}},935:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L BB Q WB S",16:"y"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB pB hB",16:"y BB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S",16:"gB bB aB"},E:{1:"E A B C N H fB XB R U jB kB",2:"G W I D F 0B YB cB dB eB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:5,C:"selector list argument of :not()"}},944:function(B){B.exports={A:{A:{1:"A B",2:"I D F E iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W pB hB",36:"I D F E A B C"},D:{1:"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D",36:"F E A B C N H P J K L X"},E:{1:"I D F E A B C N H dB eB fB XB R U jB kB",2:"G W 0B YB cB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T U",2:"E B C lB mB nB oB R VB qB"},G:{1:"F uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB"},H:{2:"AC"},I:{1:"Q",2:"BC CC DC",36:"KB G EC IB FC GC"},J:{1:"A",2:"D"},K:{1:"O U",2:"A B C R VB"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:5,C:"Blob constructing"}},954:function(B){B.exports={A:{A:{1:"B",2:"I D F E A iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{2:"M"},N:{1:"B",2:"A"},O:{2:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{1:"QC"},S:{2:"RC"}},B:5,C:"Resource Hints: prerender"}},1016:function(B,e,r){"use strict";e.__esModule=true;e.default=tokenize;var t=r(6877);var n=_interopRequireWildcard(t);function _interopRequireWildcard(B){if(B&&B.__esModule){return B}else{var e={};if(B!=null){for(var r in B){if(Object.prototype.hasOwnProperty.call(B,r))e[r]=B[r]}}e.default=B;return e}}var i=/[ \n\t\r\(\)\*:;!&'"\+\|~>,=$^\[\]\\]|\/(?=\*)/g;function tokenize(B){var e=[];var r=B.css.valueOf();var t=r,C=t.length;var o=-1;var a=1;var s=0;var u=0;var f=void 0,l=void 0,c=void 0,p=void 0,A=void 0,d=void 0,h=void 0,E=void 0,D=void 0,v=void 0,F=void 0,G=void 0,O=void 0;function unclosed(e,t){if(B.safe){r+=t;D=r.length-1}else{throw B.error("Unclosed "+e,a,s-o,s)}}while(s<C){f=r.charCodeAt(s);if(f===n.newline){o=s;a+=1}switch(f){case n.newline:case n.space:case n.tab:case n.cr:case n.feed:D=s;do{D+=1;f=r.charCodeAt(D);if(f===n.newline){o=D;a+=1}}while(f===n.space||f===n.newline||f===n.tab||f===n.cr||f===n.feed);O=n.space;p=a;c=s-o;u=D;break;case n.plus:case n.greaterThan:case n.tilde:case n.pipe:D=s;do{D+=1;f=r.charCodeAt(D)}while(f===n.plus||f===n.greaterThan||f===n.tilde||f===n.pipe);O=n.combinator;p=a;c=s-o;u=D;break;case n.asterisk:case n.ampersand:case n.comma:case n.equals:case n.dollar:case n.caret:case n.openSquare:case n.closeSquare:case n.colon:case n.semicolon:case n.openParenthesis:case n.closeParenthesis:D=s;O=f;p=a;c=s-o;u=D+1;break;case n.singleQuote:case n.doubleQuote:G=f===n.singleQuote?"'":'"';D=s;do{A=false;D=r.indexOf(G,D+1);if(D===-1){unclosed("quote",G)}d=D;while(r.charCodeAt(d-1)===n.backslash){d-=1;A=!A}}while(A);O=n.str;p=a;c=s-o;u=D+1;break;case n.backslash:D=s;A=true;while(r.charCodeAt(D+1)===n.backslash){D+=1;A=!A}f=r.charCodeAt(D+1);if(A&&f!==n.slash&&f!==n.space&&f!==n.newline&&f!==n.tab&&f!==n.cr&&f!==n.feed){D+=1}O=n.word;p=a;c=D-o;u=D+1;break;default:if(f===n.slash&&r.charCodeAt(s+1)===n.asterisk){D=r.indexOf("*/",s+2)+1;if(D===0){unclosed("comment","*/")}l=r.slice(s,D+1);E=l.split("\n");h=E.length-1;if(h>0){v=a+h;F=D-E[h].length}else{v=a;F=o}O=n.comment;a=v;p=v;c=D-F}else{i.lastIndex=s+1;i.test(r);if(i.lastIndex===0){D=r.length-1}else{D=i.lastIndex-2}O=n.word;p=a;c=D-o}u=D+1;break}e.push([O,a,s-o,p,c,s,u]);if(F){o=F;F=null}s=u}return e}B.exports=e["default"]},1022:function(B){B.exports={A:{A:{2:"I D F E iB",33:"A B"},B:{33:"C N H P J K L",132:"y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W pB hB",33:"I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u"},D:{2:"0 1 2 3 4 5 6 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",132:"7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W 0B YB",33:"I D F E A B C N H cB dB eB fB XB R U jB kB"},F:{2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t lB mB nB oB R VB qB U",132:"0 1 2 3 4 5 6 7 8 9 u v w x O z AB CB EB FB GB HB DB V M T"},G:{2:"YB rB",33:"F IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G BC CC DC EC IB FC GC",132:"Q"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{132:"S"},M:{1:"M"},N:{2:"A B"},O:{4:"HC"},P:{1:"JC KC LC MC XB NC OC",2:"G",132:"IC"},Q:{2:"PC"},R:{132:"QC"},S:{1:"RC"}},B:5,C:"CSS Hyphenation"}},1030:function(B,e,r){"use strict";e.__esModule=true;var t=r(4956);var n=_interopRequireDefault(t);var i=r(5544);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _classCallCheck(B,e){if(!(B instanceof e)){throw new TypeError("Cannot call a class as a function")}}function _possibleConstructorReturn(B,e){if(!B){throw new ReferenceError("this hasn't been initialised - super() hasn't been called")}return e&&(typeof e==="object"||typeof e==="function")?e:B}function _inherits(B,e){if(typeof e!=="function"&&e!==null){throw new TypeError("Super expression must either be null or a function, not "+typeof e)}B.prototype=Object.create(e&&e.prototype,{constructor:{value:B,enumerable:false,writable:true,configurable:true}});if(e)Object.setPrototypeOf?Object.setPrototypeOf(B,e):B.__proto__=e}var C=function(B){_inherits(Tag,B);function Tag(e){_classCallCheck(this,Tag);var r=_possibleConstructorReturn(this,B.call(this,e));r.type=i.TAG;return r}return Tag}(n.default);e.default=C;B.exports=e["default"]},1049:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 1 2 3 4 5 6 7 8 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB"},D:{1:"FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB"},E:{1:"C N H U jB kB",2:"G W I D F E A B 0B YB cB dB eB fB XB R"},F:{1:"2 3 4 5 6 7 8 9 AB CB EB FB GB HB DB V M T",2:"0 1 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:6,C:"Async iterators and generators"}},1071:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L",260:"y BB Q WB S"},C:{2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k pB hB",260:"LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",516:"0 1 2 3 4 5 6 7 8 9 z AB",580:"l m n o p q r s t u v w x O"},D:{2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n",132:"o p q",260:"0 1 2 3 4 5 6 7 8 9 r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A 0B YB cB dB eB fB XB",1090:"B C N R U",2049:"H jB kB"},F:{2:"E B C P J K L X Y Z a lB mB nB oB R VB qB U",132:"b c d",260:"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB",1090:"1B 2B 3B 4B 5B 6B 7B",2049:"8B 9B"},H:{2:"AC"},I:{2:"KB G BC CC DC EC IB FC GC",260:"Q"},J:{2:"D A"},K:{2:"A B C R VB U",260:"O"},L:{260:"S"},M:{1:"M"},N:{2:"A B"},O:{260:"HC"},P:{260:"G IC JC KC LC MC XB NC OC"},Q:{260:"PC"},R:{260:"QC"},S:{516:"RC"}},B:5,C:"Web Animations API"}},1099:function(B){B.exports={A:{A:{2:"I D F E iB",130:"A B"},B:{130:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB hB",130:"G W I D F E A B C N H P J K L X Y Z a b",322:"c d e f g h i j k l"},D:{2:"G W I D F E A B C N H P",130:"0 1 2 3 4 5 6 7 8 9 J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"A B C N H fB XB R U jB kB",2:"D F E 0B YB dB eB",130:"G W I cB"},F:{2:"E B C lB mB nB oB R VB qB U",130:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{1:"yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB vB wB xB",130:"rB IB tB uB"},H:{2:"AC"},I:{2:"KB G BC CC DC EC IB",130:"Q FC GC"},J:{2:"D",130:"A"},K:{2:"A B C R VB U",130:"O"},L:{130:"S"},M:{1:"M"},N:{2:"A B"},O:{130:"HC"},P:{130:"G IC JC KC LC MC XB NC OC"},Q:{130:"PC"},R:{130:"QC"},S:{1:"RC"}},B:5,C:"CSS font-variant-alternates"}},1106:function(B,e){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.OP_9=e.IE_8=e.IE_7=e.IE_6=e.IE_5_5=e.FF_2=void 0;const r="firefox 2";e.FF_2=r;const t="ie 5.5";e.IE_5_5=t;const n="ie 6";e.IE_6=n;const i="ie 7";e.IE_7=i;const C="ie 8";e.IE_8=C;const o="opera 9";e.OP_9=o},1109:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L",1025:"y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w",194:"0 1 2 3 4 x O z",706:"5 6 7",1025:"8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"E B C P J K L X Y Z a b c d e f g h i j k l m n lB mB nB oB R VB qB U",450:"o p q r",706:"s t u",1025:"0 1 2 3 4 5 6 7 8 9 v w x O z AB CB EB FB GB HB DB V M T"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G BC CC DC EC IB FC GC",1025:"Q"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1025:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"JC KC LC MC XB NC OC",2:"G IC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:7,C:"Web Bluetooth"}},1141:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L",1026:"y BB Q WB S"},C:{2:"sB KB G W I D F E A B C N H P J K L X Y Z pB hB",322:"0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{2:"G W I D F E A B C N H P J K L X Y Z a b c",164:"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"E B C P J K L X Y Z a b c d e lB mB nB oB R VB qB U",1026:"0 1 2 3 4 5 6 7 8 9 f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{164:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{164:"G IC JC KC LC MC XB NC OC"},Q:{164:"PC"},R:{164:"QC"},S:{322:"RC"}},B:7,C:"Speech Recognition API"}},1154:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H",33:"y BB Q WB S",161:"P J K L"},C:{2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB",161:"1 2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",450:"0"},D:{33:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{33:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"E B C lB mB nB oB R VB qB U",33:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{33:"F rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",36:"YB"},H:{2:"AC"},I:{2:"KB",33:"G Q BC CC DC EC IB FC GC"},J:{33:"D A"},K:{2:"A B C R VB U",33:"O"},L:{33:"S"},M:{161:"M"},N:{2:"A B"},O:{33:"HC"},P:{33:"G IC JC KC LC MC XB NC OC"},Q:{33:"PC"},R:{33:"QC"},S:{161:"RC"}},B:7,C:"CSS text-stroke and text-fill"}},1169:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P",132:"J K L"},C:{1:"4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 1 2 3 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB"},D:{1:"CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",132:"9 AB LB"},E:{1:"B C N H R U jB kB",2:"G W I D F E A 0B YB cB dB eB fB",132:"XB"},F:{1:"0 1 2 3 4 5 6 7 8 9 z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v lB mB nB oB R VB qB U",132:"w x O"},G:{1:"1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB",132:"ZB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{132:"HC"},P:{1:"LC MC XB NC OC",2:"G IC JC",132:"KC"},Q:{1:"PC"},R:{2:"QC"},S:{132:"RC"}},B:5,C:"CSS justify-content: space-evenly"}},1185:function(B){B.exports={A:{A:{1:"E A B",2:"I D F iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W",33:"I D F E A B C"},E:{1:"F E A B C N H fB XB R U jB kB",2:"G W I D 0B YB cB dB eB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U"},G:{1:"F xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB uB vB wB"},H:{2:"AC"},I:{1:"G Q EC IB FC GC",2:"KB BC CC DC"},J:{1:"A",2:"D"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:2,C:"Navigation Timing API"}},1196:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB pB hB",260:"QB RB SB TB UB y BB"},D:{1:"QB RB SB TB UB y BB Q WB S gB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB",132:"CB JB EB FB GB HB DB V M T MB NB OB PB",1025:"bB aB"},E:{2:"G W I D F E A B 0B YB cB dB eB fB XB",772:"C N H R U jB kB"},F:{1:"EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O lB mB nB oB R VB qB U",132:"0 1 2 3 4 5 6 7 8 9 z AB CB"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B",772:"2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"NC OC",2:"G IC JC KC",132:"LC MC XB"},Q:{132:"PC"},R:{2:"QC"},S:{2:"RC"}},B:5,C:"Feature Policy"}},1203:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB",164:"KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s pB hB"},D:{1:"T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",292:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M"},E:{1:"N H U jB kB",292:"G W I D F E A B C 0B YB cB dB eB fB XB R"},F:{1:"DB V M T",2:"E B C lB mB nB oB R VB qB U",292:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB"},G:{1:"4B 5B 6B 7B 8B 9B",292:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B"},H:{2:"AC"},I:{1:"Q",292:"KB G BC CC DC EC IB FC GC"},J:{292:"D A"},K:{2:"A B C R VB U",292:"O"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{292:"HC"},P:{1:"XB NC OC",292:"G IC JC KC LC MC"},Q:{292:"PC"},R:{292:"QC"},S:{1:"RC"}},B:5,C:"CSS Logical Properties"}},1218:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(8441));var n=_interopRequireDefault(r(1340));var i=_interopRequireDefault(r(8722));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}const C=(B,e)=>(B&&B.length<e.length?B:e).toLowerCase();var o=(B,e=false,r=false)=>{const o=B+"|"+e;if(r&&r[o]){return r[o]}try{const a=(0,t.default)(B.toLowerCase());const s=a.alpha();if(s===1){const B=(0,i.default)(a.hex().toLowerCase());const e=C(n.default[B],B);if(r){r[o]=e}return e}else{const B=a.rgb();if(!e&&!B.color[0]&&!B.color[1]&&!B.color[2]&&!s){const B="transparent";if(r){r[o]=B}return B}let t=a.hsl().string();let n=B.string();let i=t.length<n.length?t:n;if(r){r[o]=i}return i}}catch(e){const t=B;if(r){r[o]=t}return t}};e.default=o;B.exports=e.default},1222:function(B,e,r){"use strict";e.__esModule=true;e.default=void 0;var t=_interopRequireDefault(r(3583));var n=r(8019);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _inheritsLoose(B,e){B.prototype=Object.create(e.prototype);B.prototype.constructor=B;B.__proto__=e}var i=function(B){_inheritsLoose(String,B);function String(e){var r;r=B.call(this,e)||this;r.type=n.STRING;return r}return String}(t.default);e.default=i;B.exports=e.default},1231:function(B,e){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=addSpace;function addSpace(){return{type:"space",value:" "}}B.exports=e.default},1238:function(B){B.exports={A:{A:{1:"I D F E A B iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB",2:"sB",4:"KB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB"},H:{2:"AC"},I:{1:"KB G Q EC IB FC GC",2:"BC CC DC"},J:{1:"D A"},K:{1:"O U",2:"A B C R VB"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"contenteditable attribute (basic support)"}},1240:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o"},E:{1:"A B C N H fB XB R U jB kB",2:"G W I D F E 0B YB cB dB eB"},F:{1:"0 1 2 3 4 5 6 7 8 9 c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b lB mB nB oB R VB qB U"},G:{1:"yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB"},H:{2:"AC"},I:{1:"Q GC",2:"KB G BC CC DC EC IB FC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"CSS all property"}},1245:function(B,e){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=insertCloned;function insertCloned(B,e,r){const t=Object.assign(e.clone(),r);B.insertAfter(e,t);return t}B.exports=e.default},1251:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w"},E:{1:"A B C N H XB R U jB kB",2:"G W I D F E 0B YB cB dB eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j lB mB nB oB R VB qB U"},G:{1:"zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:6,C:"Arrow functions"}},1288:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 o p q r s t u v w x O z",2:"2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"b c d e f g h i j k l m n o",2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"G",2:"IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{1:"QC"},S:{2:"RC"}},B:7,C:"Object.observe data binding"}},1300:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=r(2043);var n=r(9649);var i=_interopRequireDefault(r(1245));var C=_interopRequireDefault(r(733));var o=_interopRequireDefault(r(8263));var a=_interopRequireDefault(r(7727));var s=_interopRequireDefault(r(7726));var u=_interopRequireDefault(r(423));var f=_interopRequireDefault(r(3119));var l=_interopRequireDefault(r(8347));var c=_interopRequireDefault(r(4333));var p=_interopRequireDefault(r(3541));var A=_interopRequireDefault(r(4907));var d=_interopRequireDefault(r(653));var h=_interopRequireDefault(r(7059));var E=_interopRequireDefault(r(3680));var D=_interopRequireDefault(r(2201));var v=_interopRequireDefault(r(8762));var F=r(4642);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}const G=["width","style","color"];const O=["medium","none","currentcolor"];function borderProperty(...B){return`border-${B.join("-")}`}function mapBorderProperty(B){return borderProperty(B)}const M=d.default.map(mapBorderProperty);const g=G.map(mapBorderProperty);const I=M.reduce((B,e)=>B.concat(G.map(B=>`${e}-${B}`)),[]);const H=[["border"],M.concat(g),I];const L=H.reduce((B,e)=>B.concat(e));function getLevel(B){for(let e=0;e<H.length;e++){if(~H[e].indexOf(B.toLowerCase())){return e}}}const m=B=>B&&!!~B.search(/var\s*\(\s*--/i);function canMergeValues(B){return!B.some(m)||B.every(m)}function getColorValue(B){if(B.prop.substr(-5)==="color"){return B.value}return(0,v.default)(B.value)[2]||O[2]}function diffingProps(B,e){return G.reduce((r,t,n)=>{if(B[n]===e[n]){return r}return[...r,t]},[])}function mergeRedundant({values:B,nextValues:e,decl:r,nextDecl:t,index:i}){if(!(0,p.default)([r,t])){return}if((0,n.detect)(r)||(0,n.detect)(t)){return}const o=diffingProps(B,e);if(o.length>1){return}const a=o.pop();const s=G.indexOf(a);const u=`${t.prop}-${a}`;const f=`border-${a}`;let A=(0,C.default)(B[s]);A[i]=e[s];const d=B.filter((B,e)=>e!==s).join(" ");const h=(0,l.default)(A);const E=((0,c.default)(r.value)+t.prop+t.value).length;const D=r.value.length+u.length+(0,c.default)(e[s]).length;const v=d.length+f.length+h.length;if(D<v&&D<E){t.prop=u;t.value=e[s]}if(v<D&&v<E){r.value=d;t.prop=f;t.value=h}}function isCloseEnough(B){return B[0]===B[1]&&B[1]===B[2]||B[1]===B[2]&&B[2]===B[3]||B[2]===B[3]&&B[3]===B[0]||B[3]===B[0]&&B[0]===B[1]}function getDistinctShorthands(B){return B.reduce((B,e)=>{B=Array.isArray(B)?B:[B];if(!~B.indexOf(e)){B.push(e)}return B})}function explode(B){B.walkDecls(/^border/i,B=>{if(!(0,E.default)(B,false)){return}if((0,n.detect)(B)){return}const e=B.prop.toLowerCase();if(e==="border"){if((0,F.isValidWsc)((0,v.default)(B.value))){M.forEach(e=>{(0,i.default)(B.parent,B,{prop:e})});return B.remove()}}if(M.some(B=>e===B)){let r=(0,v.default)(B.value);if((0,F.isValidWsc)(r)){G.forEach((t,n)=>{(0,i.default)(B.parent,B,{prop:`${e}-${t}`,value:r[n]||O[n]})});return B.remove()}}G.some(r=>{if(e!==borderProperty(r)){return false}(0,C.default)(B.value).forEach((e,t)=>{(0,i.default)(B.parent,B,{prop:borderProperty(d.default[t],r),value:e})});return B.remove()})})}function merge(B){d.default.forEach(e=>{const r=borderProperty(e);(0,f.default)(B,G.map(B=>borderProperty(e,B)),(B,e)=>{if((0,p.default)(B,false)&&!B.some(n.detect)){(0,i.default)(e.parent,e,{prop:r,value:B.map(u.default).join(" ")});B.forEach(A.default);return true}})});G.forEach(e=>{const r=borderProperty(e);(0,f.default)(B,d.default.map(B=>borderProperty(B,e)),(B,e)=>{if((0,p.default)(B)&&!B.some(n.detect)){(0,i.default)(e.parent,e,{prop:r,value:(0,l.default)(B.map(u.default).join(" "))});B.forEach(A.default);return true}})});(0,f.default)(B,M,(B,e)=>{if(B.some(n.detect)){return}const r=B.map(({value:B})=>B);if(!canMergeValues(r)){return}const t=r.map(B=>(0,v.default)(B));if(!t.every(F.isValidWsc)){return}G.forEach((B,r)=>{const n=t.map(B=>B[r]||O[r]);if(canMergeValues(n)){(0,i.default)(e.parent,e,{prop:borderProperty(B),value:(0,l.default)(n)})}else{(0,i.default)(e.parent,e)}});B.forEach(A.default);return true});(0,f.default)(B,g,(e,r)=>{if(e.some(n.detect)){return}const t=e.map(B=>(0,C.default)(B.value));const o=[0,1,2,3].map(B=>[t[0][B],t[1][B],t[2][B]].join(" "));if(!canMergeValues(o)){return}const[a,s,f]=e;const l=getDistinctShorthands(o);if(isCloseEnough(o)&&(0,p.default)(e,false)){const t=o.indexOf(l[0])!==o.lastIndexOf(l[0]);const n=(0,i.default)(r.parent,r,{prop:"border",value:t?l[0]:l[1]});if(l[1]){const e=t?l[1]:l[0];const i=borderProperty(d.default[o.indexOf(e)]);B.insertAfter(n,Object.assign(r.clone(),{prop:i,value:e}))}e.forEach(A.default);return true}else if(l.length===1){B.insertBefore(f,Object.assign(r.clone(),{prop:"border",value:[a,s].map(u.default).join(" ")}));e.filter(B=>B.prop.toLowerCase()!==g[2]).forEach(A.default);return true}});(0,f.default)(B,g,(e,r)=>{if(e.some(n.detect)){return}const t=e.map(B=>(0,C.default)(B.value));const i=[0,1,2,3].map(B=>[t[0][B],t[1][B],t[2][B]].join(" "));const o=getDistinctShorthands(i);const a="medium none currentcolor";if(o.length>1&&o.length<4&&o.includes(a)){const t=i.filter(B=>B!==a);const n=o.sort((B,e)=>i.filter(B=>B===e).length-i.filter(e=>e===B).length)[0];const C=o.length===2?t[0]:n;B.insertBefore(r,Object.assign(r.clone(),{prop:"border",value:C}));M.forEach((e,t)=>{if(i[t]!==C){B.insertBefore(r,Object.assign(r.clone(),{prop:e,value:i[t]}))}});e.forEach(A.default);return true}});(0,f.default)(B,M,(e,r)=>{if(e.some(n.detect)){return}const t=e.map(B=>{const e=(0,v.default)(B.value);if(!(0,F.isValidWsc)(e)){return B.value}return e.map((B,e)=>B||O[e]).join(" ")});const i=getDistinctShorthands(t);if(isCloseEnough(t)){const n=t.indexOf(i[0])!==t.lastIndexOf(i[0]);B.insertBefore(r,Object.assign(r.clone(),{prop:"border",value:(0,c.default)(n?t[0]:t[1])}));if(i[1]){const e=n?i[1]:i[0];const C=M[t.indexOf(e)];B.insertBefore(r,Object.assign(r.clone(),{prop:C,value:(0,c.default)(e)}))}e.forEach(A.default);return true}});M.forEach(e=>{G.forEach((r,t)=>{const C=`${e}-${r}`;(0,f.default)(B,[e,C],(B,r)=>{if(r.prop!==e){return}const o=(0,v.default)(r.value);if(!(0,F.isValidWsc)(o)){return}const a=B.filter(B=>B!==r)[0];if(!m(o[t])||(0,h.default)(a)){return}const s=o[t];o[t]=a.value;if((0,p.default)(B,false)&&!B.some(n.detect)){(0,i.default)(r.parent,r,{prop:C,value:s});r.value=(0,c.default)(o);a.remove();return true}})})});G.forEach((e,r)=>{const t=borderProperty(e);(0,f.default)(B,["border",t],(B,e)=>{if(e.prop!=="border"){return}const C=(0,v.default)(e.value);if(!(0,F.isValidWsc)(C)){return}const o=B.filter(B=>B!==e)[0];if(!m(C[r])||(0,h.default)(o)){return}const a=C[r];C[r]=o.value;if((0,p.default)(B,false)&&!B.some(n.detect)){(0,i.default)(e.parent,e,{prop:t,value:a});e.value=(0,c.default)(C);o.remove();return true}})});let e=(0,a.default)(B,M);while(e.length){const r=e[e.length-1];G.forEach((C,a)=>{const u=M.filter(B=>B!==r.prop).map(B=>`${B}-${C}`);let f=B.nodes.slice(0,B.nodes.indexOf(r));const c=(0,D.default)(f,"border");if(c){f=f.slice(f.indexOf(c))}const p=f.filter(B=>B.prop&&~u.indexOf(B.prop)&&B.important===r.important);const d=(0,s.default)(p,u);if((0,o.default)(d,...u)&&!d.some(n.detect)){const B=d.map(B=>B?B.value:null);const n=B.filter(Boolean);const o=t.list.space(r.value)[a];B[M.indexOf(r.prop)]=o;let s=(0,l.default)(B.join(" "));if(n[0]===n[1]&&n[1]===n[2]){s=n[0]}let u=p[p.length-1];if(s===o){u=r;let B=t.list.space(r.value);B.splice(a,1);r.value=B.join(" ")}(0,i.default)(u.parent,u,{prop:borderProperty(C),value:s});e=e.filter(B=>!~d.indexOf(B));d.forEach(A.default)}});e=e.filter(B=>B!==r)}B.walkDecls("border",B=>{const e=B.next();if(!e||e.type!=="decl"){return}const r=M.indexOf(e.prop);if(!~r){return}const t=(0,v.default)(B.value);const n=(0,v.default)(e.value);if(!(0,F.isValidWsc)(t)||!(0,F.isValidWsc)(n)){return}const i={values:t,nextValues:n,decl:B,nextDecl:e,index:r};return mergeRedundant(i)});B.walkDecls(/^border($|-(top|right|bottom|left)$)/i,e=>{let r=(0,v.default)(e.value);if(!(0,F.isValidWsc)(r)){return}const t=M.indexOf(e.prop);let n=[...M];n.splice(t,1);G.forEach((t,C)=>{const o=n.map(B=>`${B}-${t}`);(0,f.default)(B,[e.prop,...o],B=>{if(!B.includes(e)){return}const n=B.filter(B=>B!==e);if(n[0].value.toLowerCase()===n[1].value.toLowerCase()&&n[1].value.toLowerCase()===n[2].value.toLowerCase()&&r[C]!==undefined&&n[0].value.toLowerCase()===r[C].toLowerCase()){n.forEach(A.default);(0,i.default)(e.parent,e,{prop:borderProperty(t),value:r[C]});r[C]=null}});const a=r.join(" ");if(a){e.value=a}else{e.remove()}})});B.walkDecls(/^border($|-(top|right|bottom|left)$)/i,B=>{B.value=(0,c.default)(B.value)});B.walkDecls(/^border-spacing$/i,B=>{const e=t.list.space(B.value);if(e.length>1&&e[0]===e[1]){B.value=e.slice(1).join(" ")}});e=(0,a.default)(B,L);while(e.length){const B=e[e.length-1];const r=B.prop.split("-").pop();const t=e.filter(e=>!(0,n.detect)(B)&&!(0,n.detect)(e)&&!(0,h.default)(B)&&e!==B&&e.important===B.important&&getLevel(e.prop)>getLevel(B.prop)&&(!!~e.prop.toLowerCase().indexOf(B.prop)||e.prop.toLowerCase().endsWith(r)));t.forEach(A.default);e=e.filter(B=>!~t.indexOf(B));let i=e.filter(e=>!(0,n.detect)(B)&&!(0,n.detect)(e)&&e!==B&&e.important===B.important&&e.prop===B.prop&&!(!(0,h.default)(e)&&(0,h.default)(B)));if(i.length){if(/hsla\(|rgba\(/i.test(getColorValue(B))){const B=i.filter(B=>!/hsla\(|rgba\(/i.test(getColorValue(B))).pop();i=i.filter(e=>e!==B)}i.forEach(A.default)}e=e.filter(e=>e!==B&&!~i.indexOf(e))}}var y={explode:explode,merge:merge};e.default=y;B.exports=e.default},1311:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H pB hB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{1:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{1:"RC"}},B:4,C:"Proximity API"}},1326:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"K L y BB Q WB S",2:"C N H P J"},C:{2:"0 1 2 3 4 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB",4609:"EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",4674:"JB",5698:"CB",7490:"5 6 7 8 9",7746:"AB LB"},D:{1:"V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB",4097:"DB",4290:"LB CB JB",6148:"EB FB GB HB"},E:{2:"G W I D F E A 0B YB cB dB eB fB XB",4609:"B C R U",8193:"N H jB kB"},F:{1:"6 7 8 9 AB CB EB FB GB HB DB V M T",2:"0 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z lB mB nB oB R VB qB U",4097:"5",6148:"1 2 3 4"},G:{1:"5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB",4097:"1B 2B 3B 4B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{4097:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC",4097:"LC MC XB NC OC"},Q:{4097:"PC"},R:{2:"QC"},S:{2:"RC"}},B:5,C:"Variable fonts"}},1340:function(B){B.exports={"#f0ffff":"azure","#f5f5dc":"beige","#ffe4c4":"bisque","#a52a2a":"brown","#ff7f50":"coral","#ffd700":"gold","#808080":"grey","#008000":"green","#4b0082":"indigo","#fffff0":"ivory","#f0e68c":"khaki","#faf0e6":"linen","#800000":"maroon","#000080":"navy","#808000":"olive","#ffa500":"orange","#da70d6":"orchid","#cd853f":"peru","#ffc0cb":"pink","#dda0dd":"plum","#800080":"purple","#f00":"red","#fa8072":"salmon","#a0522d":"sienna","#c0c0c0":"silver","#fffafa":"snow","#d2b48c":"tan","#008080":"teal","#ff6347":"tomato","#ee82ee":"violet","#f5deb3":"wheat"}},1369:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(5027));var n=_interopRequireDefault(r(2682));var i=_interopRequireDefault(r(4587));var C=_interopRequireDefault(r(3051));var o=_interopRequireDefault(r(6238));var a=_interopRequireDefault(r(7250));var s=_interopRequireDefault(r(4417));var u=_interopRequireDefault(r(6090));var f=_interopRequireDefault(r(9901));var l=_interopRequireDefault(r(5347));var c=_interopRequireDefault(r(4208));var p=_interopRequireDefault(r(203));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}var A=[t.default,n.default,i.default,C.default,o.default,a.default,s.default,u.default,f.default,l.default,c.default,p.default];e.default=A;B.exports=e.default},1381:function(B){B.exports={A:{A:{1:"E A B",2:"I D F iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB",132:"KB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",260:"G W I D F E A"},E:{1:"W I D F E A B C N H cB dB eB fB XB R U jB kB",260:"G 0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T oB R VB qB U",260:"E lB mB nB"},G:{1:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",260:"YB rB IB"},H:{260:"AC"},I:{1:"G Q EC IB FC GC",260:"KB BC CC DC"},J:{1:"A",260:"D"},K:{1:"B C O R VB U",260:"A"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:2,C:"getComputedStyle"}},1397:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L",260:"y BB Q WB S"},C:{1:"EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o pB hB",260:"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x O z AB LB CB JB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",194:"AB LB CB JB EB FB GB",260:"HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"H jB kB",2:"G W I D F E A B 0B YB cB dB eB fB XB",260:"N",772:"C R U"},F:{2:"0 1 2 3 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z lB mB nB oB R VB qB U",260:"4 5 6 7 8 9 AB CB EB FB GB HB DB V M T"},G:{1:"8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B",260:"2B 3B 4B 5B 6B 7B"},H:{2:"AC"},I:{2:"KB G BC CC DC EC IB FC GC",260:"Q"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{260:"S"},M:{1:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC",260:"MC XB NC OC"},Q:{260:"PC"},R:{2:"QC"},S:{260:"RC"}},B:5,C:"CSS display: contents"}},1412:function(B){B.exports={A:{A:{2:"I D F E iB",33:"A B"},B:{2:"y BB Q WB S",33:"C N H P J K L"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{33:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:5,C:"CSS Exclusions Level 1"}},1421:function(B){B.exports={A:{A:{1:"B",2:"I D F E A iB"},B:{1:"H P J K L y BB Q WB S",129:"C N"},C:{1:"2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB",260:"0 1 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",804:"G W I D F E A B C N H pB hB"},D:{1:"8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",260:"3 4 5 6 7",388:"0 1 2 i j k l m n o p q r s t u v w x O z",1412:"P J K L X Y Z a b c d e f g h",1956:"G W I D F E A B C N H"},E:{129:"A B C N H fB XB R U jB kB",1412:"I D F E dB eB",1956:"G W 0B YB cB"},F:{1:"0 1 2 3 4 5 6 7 8 9 v w x O z AB CB EB FB GB HB DB V M T",2:"E lB mB",260:"q r s t u",388:"P J K L X Y Z a b c d e f g h i j k l m n o p",1796:"nB oB",1828:"B C R VB qB U"},G:{129:"yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",1412:"F uB vB wB xB",1956:"YB rB IB tB"},H:{1828:"AC"},I:{388:"Q FC GC",1956:"KB G BC CC DC EC IB"},J:{1412:"A",1924:"D"},K:{2:"A",388:"O",1828:"B C R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"B",2:"A"},O:{388:"HC"},P:{1:"KC LC MC XB NC OC",260:"IC JC",388:"G"},Q:{260:"PC"},R:{260:"QC"},S:{260:"RC"}},B:4,C:"CSS3 Border images"}},1458:function(B){B.exports={A:{A:{2:"I D F iB",2561:"A B",2692:"E"},B:{1:"y BB Q WB S",2561:"C N H P J K L"},C:{1:"1 2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",16:"sB",1537:"0 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z hB",1796:"KB pB"},D:{1:"DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",16:"G W I D F E A B C N H",1025:"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x O z AB LB CB JB EB FB GB HB",1537:"P J K L X Y Z a b c d e f g h i j k l m"},E:{1:"H jB kB",16:"G W I 0B YB",1025:"D F E A B C dB eB fB XB R",1537:"cB",4097:"N U"},F:{1:"4 5 6 7 8 9 AB CB EB FB GB HB DB V M T U",16:"E B C lB mB nB oB R VB",260:"qB",1025:"0 1 2 3 a b c d e f g h i j k l m n o p q r s t u v w x O z",1537:"P J K L X Y Z"},G:{16:"YB rB IB",1025:"F wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",1537:"tB uB vB"},H:{2:"AC"},I:{16:"BC CC",1025:"Q GC",1537:"KB G DC EC IB FC"},J:{1025:"A",1537:"D"},K:{1:"A B C R VB U",1025:"O"},L:{1:"S"},M:{1537:"M"},N:{2561:"A B"},O:{1537:"HC"},P:{1025:"G IC JC KC LC MC XB NC OC"},Q:{1025:"PC"},R:{1025:"QC"},S:{1537:"RC"}},B:1,C:"input event"}},1480:function(B){B.exports={A:{A:{1:"A B",2:"I D iB",260:"E",1026:"F"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",4:"sB KB pB hB",132:"G W I D F E A B C N H P J K L X Y"},D:{1:"0 1 2 3 4 5 6 7 8 9 b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",4:"G W I D F E A B C N H P J K L",132:"X Y Z a"},E:{1:"I D F E A B C N H dB eB fB XB R U jB kB",4:"G W 0B YB cB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",4:"E B C lB mB nB oB R VB qB",132:"U"},G:{1:"F uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",4:"YB rB IB tB"},H:{132:"AC"},I:{1:"Q FC GC",4:"KB BC CC DC",132:"EC IB",900:"G"},J:{1:"A",4:"D"},K:{1:"O",4:"A B C R VB",132:"U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:6,C:"ECMAScript 5"}},1488:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"N H P J K L y BB Q WB S",2:"C"},C:{1:"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q"},E:{1:"A B C N H XB R U jB kB",2:"G W I D F E 0B YB cB dB eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d lB mB nB oB R VB qB U"},G:{1:"zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:6,C:"ES6 Generators"}},1491:function(B){B.exports={A:{A:{16:"I D F E A B iB"},B:{1:"y BB Q WB S",16:"C N H P J K L"},C:{16:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",16:"0 1 2 3 4 5 6 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},E:{16:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{16:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{16:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{16:"AC"},I:{16:"KB G Q BC CC DC EC IB FC GC"},J:{16:"D A"},K:{16:"A B C O R VB U"},L:{16:"S"},M:{16:"M"},N:{16:"A B"},O:{16:"HC"},P:{16:"G IC JC KC LC MC XB NC OC"},Q:{16:"PC"},R:{16:"QC"},S:{16:"RC"}},B:5,C:"CSS4 Hyphenation"}},1502:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C 0B YB cB dB eB fB XB R U",2:"N H jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T nB oB R VB qB U",2:"E lB mB"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B",2:"5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"B C O R VB U",2:"A"},L:{1:"S"},M:{2:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{2:"RC"}},B:7,C:"Web SQL Database"}},1510:function(B){B.exports={A:{A:{1:"B",16:"iB",132:"I D F E A"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",132:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",132:"G W I D F E A B C N H P J K L X Y Z a b"},E:{1:"A B C N H XB R U jB kB",132:"G W I D F E 0B YB cB dB eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",16:"E B C lB mB nB oB R VB qB",132:"U"},G:{1:"zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",132:"F YB rB IB tB uB vB wB xB yB"},H:{132:"AC"},I:{1:"Q FC GC",132:"KB G BC CC DC EC IB"},J:{132:"D A"},K:{1:"O",16:"A B C R VB",132:"U"},L:{1:"S"},M:{1:"M"},N:{1:"B",132:"A"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",132:"G"},Q:{1:"PC"},R:{1:"QC"},S:{4:"RC"}},B:6,C:"localeCompare()"}},1518:function(B){B.exports={A:{A:{1:"F E A B",2:"I D iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB",132:"sB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{1:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:2,C:"CSS Table display"}},1529:function(B){B.exports={A:{A:{1:"B",2:"I D F E iB",289:"A"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g pB hB",194:"0 1 2 3 h i j k l m n o p q r s t u v w x O z",1025:"4 5 6 7 8"},D:{1:"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a lB mB nB oB R VB qB U"},G:{1:"5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB",516:"yB zB ZB 1B 2B 3B 4B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"B",289:"A"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{194:"RC"}},B:2,C:"CSS touch-action property"}},1565:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(2043));var n=_interopRequireDefault(r(6486));var i=_interopRequireDefault(r(454));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}const C="'".charCodeAt(0);const o='"'.charCodeAt(0);const a="\\".charCodeAt(0);const s="\n".charCodeAt(0);const u=" ".charCodeAt(0);const f="\f".charCodeAt(0);const l="\t".charCodeAt(0);const c="\r".charCodeAt(0);const p=/[ \n\t\r\f'"\\]/g;const A="string";const d="escapedSingleQuote";const h="escapedDoubleQuote";const E="singleQuote";const D="doubleQuote";const v="newline";const F="single";const G=`'`;const O=`"`;const M=`\\\n`;const g={type:d,value:`\\'`};const I={type:h,value:`\\"`};const H={type:E,value:G};const L={type:D,value:O};const m={type:v,value:M};function stringify(B){return B.nodes.reduce((B,{value:e})=>{if(e===M){return B}return B+e},"")}function parse(B){let e,r,t;let n=0;let i=B.length;const v={nodes:[],types:{escapedSingleQuote:0,escapedDoubleQuote:0,singleQuote:0,doubleQuote:0},quotes:false};while(n<i){e=B.charCodeAt(n);switch(e){case u:case l:case c:case f:r=n;do{r+=1;e=B.charCodeAt(r)}while(e===u||e===s||e===l||e===c||e===f);v.nodes.push({type:"space",value:B.slice(n,r)});n=r-1;break;case C:v.nodes.push(H);v.types[E]++;v.quotes=true;break;case o:v.nodes.push(L);v.types[D]++;v.quotes=true;break;case a:r=n+1;if(B.charCodeAt(r)===C){v.nodes.push(g);v.types[d]++;v.quotes=true;n=r;break}else if(B.charCodeAt(r)===o){v.nodes.push(I);v.types[h]++;v.quotes=true;n=r;break}else if(B.charCodeAt(r)===s){v.nodes.push(m);n=r;break}default:p.lastIndex=n+1;p.test(B);if(p.lastIndex===0){r=i-1}else{r=p.lastIndex-2}t=B.slice(n,r+1);v.nodes.push({type:A,value:t});n=r}n++}return v}function changeWrappingQuotes(B,e){const{types:r}=e;if(r[E]||r[D]){return}if(B.quote===G&&r[d]>0&&!r[h]){B.quote=O}if(B.quote===O&&r[h]>0&&!r[d]){B.quote=G}e.nodes=e.nodes.reduce((e,r)=>{if(r.type===h&&B.quote===G){return[...e,L]}if(r.type===d&&B.quote===O){return[...e,H]}return[...e,r]},[])}function normalize(B,e){if(!B||!B.length){return B}return(0,n.default)(B).walk(B=>{if(B.type!==A){return}const r=parse(B.value);if(r.quotes){changeWrappingQuotes(B,r)}else if(e===F){B.quote=G}else{B.quote=O}B.value=stringify(r)}).toString()}const y={rule:"selector",decl:"value",atrule:"params"};var N=t.default.plugin("postcss-normalize-string",B=>{const{preferredQuote:e}=Object.assign({},{preferredQuote:"double"},B);return B=>{const r={};B.walk(B=>{const{type:t}=B;if((0,i.default)(y,t)){const n=y[t];const i=B[n]+"|"+e;if(r[i]){B[n]=r[i];return}const C=normalize(B[n],e);B[n]=C;r[i]=C}})}});e.default=N;B.exports=e.default},1566:function(B,e,r){"use strict";e.__esModule=true;var t=r(5544);Object.keys(t).forEach(function(B){if(B==="default"||B==="__esModule")return;Object.defineProperty(e,B,{enumerable:true,get:function get(){return t[B]}})});var n=r(1816);Object.keys(n).forEach(function(B){if(B==="default"||B==="__esModule")return;Object.defineProperty(e,B,{enumerable:true,get:function get(){return n[B]}})});var i=r(7045);Object.keys(i).forEach(function(B){if(B==="default"||B==="__esModule")return;Object.defineProperty(e,B,{enumerable:true,get:function get(){return i[B]}})})},1569:function(B){B.exports={A:{A:{1:"E A B",2:"I D F iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB",132:"G W I D F E A B C N H P J K L X Y Z pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H cB dB eB fB XB R U jB kB",2:"0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U"},G:{1:"F rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB"},H:{2:"AC"},I:{1:"KB G Q DC EC IB FC GC",2:"BC CC"},J:{1:"D A"},K:{1:"B C O R VB U",2:"A"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:6,C:"MP3 audio format"}},1570:function(B){B.exports={A:{A:{1:"E A B",2:"I D F iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB hB",2:"sB KB pB"},D:{1:"0 1 2 3 4 5 6 7 8 9 W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G"},E:{1:"I D F E A B C N H cB dB eB fB XB R U jB kB",2:"G W 0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T R VB qB U",2:"E B lB mB nB oB"},G:{1:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB"},H:{2:"AC"},I:{1:"Q FC GC",2:"KB BC CC DC EC IB",130:"G"},J:{1:"D A"},K:{1:"B C O R VB U",2:"A"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:2,C:"WOFF - Web Open Font Format"}},1581:function(B){B.exports=function walk(B,e,r){var t,n,i,C;for(t=0,n=B.length;t<n;t+=1){i=B[t];if(!r){C=e(i,t,B)}if(C!==false&&i.type==="function"&&Array.isArray(i.nodes)){walk(i.nodes,e,r)}if(r){e(i,t,B)}}}},1616:function(B){B.exports={A:{A:{2:"I D F E iB",132:"A B"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB hB",129:"G W I D F E A B C N H P J K L X Y Z a"},D:{1:"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N",257:"H P J K L X Y Z a b c"},E:{1:"D F E A B C N H eB fB XB R U jB kB",2:"G W 0B YB",257:"I dB",260:"cB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U"},G:{1:"F vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB",257:"uB",260:"tB"},H:{2:"AC"},I:{1:"Q FC GC",2:"KB G BC CC DC EC IB"},J:{2:"D",257:"A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{132:"A B"},O:{257:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"Content Security Policy 1.0"}},1630:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f"},E:{1:"E A B C N H fB XB R U jB kB",2:"G W I D F 0B YB cB dB eB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T U",2:"E B C lB mB nB oB R VB qB"},G:{1:"xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB"},H:{1:"AC"},I:{1:"Q FC GC",2:"KB G BC CC DC EC IB"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"CSS Feature Queries"}},1636:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB",16:"sB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U",16:"E"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{1:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:7,C:"document.evaluate & XPath"}},1642:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"H P J K L y BB Q WB S",2:"C N"},C:{1:"0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G",36:"W I D F E A B C N H P J K L X Y Z"},E:{1:"I D F E A B C N H dB eB fB XB R U jB kB",2:"G W 0B YB cB"},F:{1:"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G BC CC DC EC IB",36:"Q FC GC"},J:{1:"A",2:"D"},K:{2:"A B C R VB U",36:"O"},L:{513:"S"},M:{1:"M"},N:{2:"A B"},O:{2:"HC"},P:{36:"G",258:"IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{258:"QC"},S:{1:"RC"}},B:1,C:"Web Notifications"}},1669:function(B){B.exports=require("util")},1676:function(B,e,r){const t=r(7843);B.exports=function(){return t({cssDeclarationSorter:{exclude:true}})}},1679:function(B,e,r){"use strict";e.__esModule=true;e.default=tokenize;e.FIELDS=void 0;var t=_interopRequireWildcard(r(2017));var n,i;function _interopRequireWildcard(B){if(B&&B.__esModule){return B}else{var e={};if(B!=null){for(var r in B){if(Object.prototype.hasOwnProperty.call(B,r)){var t=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor(B,r):{};if(t.get||t.set){Object.defineProperty(e,r,t)}else{e[r]=B[r]}}}}e.default=B;return e}}var C=(n={},n[t.tab]=true,n[t.newline]=true,n[t.cr]=true,n[t.feed]=true,n);var o=(i={},i[t.space]=true,i[t.tab]=true,i[t.newline]=true,i[t.cr]=true,i[t.feed]=true,i[t.ampersand]=true,i[t.asterisk]=true,i[t.bang]=true,i[t.comma]=true,i[t.colon]=true,i[t.semicolon]=true,i[t.openParenthesis]=true,i[t.closeParenthesis]=true,i[t.openSquare]=true,i[t.closeSquare]=true,i[t.singleQuote]=true,i[t.doubleQuote]=true,i[t.plus]=true,i[t.pipe]=true,i[t.tilde]=true,i[t.greaterThan]=true,i[t.equals]=true,i[t.dollar]=true,i[t.caret]=true,i[t.slash]=true,i);var a={};var s="0123456789abcdefABCDEF";for(var u=0;u<s.length;u++){a[s.charCodeAt(u)]=true}function consumeWord(B,e){var r=e;var n;do{n=B.charCodeAt(r);if(o[n]){return r-1}else if(n===t.backslash){r=consumeEscape(B,r)+1}else{r++}}while(r<B.length);return r-1}function consumeEscape(B,e){var r=e;var n=B.charCodeAt(r+1);if(C[n]){}else if(a[n]){var i=0;do{r++;i++;n=B.charCodeAt(r+1)}while(a[n]&&i<6);if(i<6&&n===t.space){r++}}else{r++}return r}var f={TYPE:0,START_LINE:1,START_COL:2,END_LINE:3,END_COL:4,START_POS:5,END_POS:6};e.FIELDS=f;function tokenize(B){var e=[];var r=B.css.valueOf();var n=r,i=n.length;var C=-1;var o=1;var a=0;var s=0;var u,f,l,c,p,A,d,h,E,D,v,F,G;function unclosed(e,t){if(B.safe){r+=t;E=r.length-1}else{throw B.error("Unclosed "+e,o,a-C,a)}}while(a<i){u=r.charCodeAt(a);if(u===t.newline){C=a;o+=1}switch(u){case t.space:case t.tab:case t.newline:case t.cr:case t.feed:E=a;do{E+=1;u=r.charCodeAt(E);if(u===t.newline){C=E;o+=1}}while(u===t.space||u===t.newline||u===t.tab||u===t.cr||u===t.feed);G=t.space;c=o;l=E-C-1;s=E;break;case t.plus:case t.greaterThan:case t.tilde:case t.pipe:E=a;do{E+=1;u=r.charCodeAt(E)}while(u===t.plus||u===t.greaterThan||u===t.tilde||u===t.pipe);G=t.combinator;c=o;l=a-C;s=E;break;case t.asterisk:case t.ampersand:case t.bang:case t.comma:case t.equals:case t.dollar:case t.caret:case t.openSquare:case t.closeSquare:case t.colon:case t.semicolon:case t.openParenthesis:case t.closeParenthesis:E=a;G=u;c=o;l=a-C;s=E+1;break;case t.singleQuote:case t.doubleQuote:F=u===t.singleQuote?"'":'"';E=a;do{p=false;E=r.indexOf(F,E+1);if(E===-1){unclosed("quote",F)}A=E;while(r.charCodeAt(A-1)===t.backslash){A-=1;p=!p}}while(p);G=t.str;c=o;l=a-C;s=E+1;break;default:if(u===t.slash&&r.charCodeAt(a+1)===t.asterisk){E=r.indexOf("*/",a+2)+1;if(E===0){unclosed("comment","*/")}f=r.slice(a,E+1);h=f.split("\n");d=h.length-1;if(d>0){D=o+d;v=E-h[d].length}else{D=o;v=C}G=t.comment;o=D;c=D;l=E-v}else if(u===t.slash){E=a;G=u;c=o;l=a-C;s=E+1}else{E=consumeWord(r,a);G=t.word;c=o;l=E-C}s=E+1;break}e.push([G,o,a-C,c,l,a,s]);if(v){C=v;v=null}a=s}return e}},1682:function(B){B.exports={A:{A:{16:"iB",644:"E A B",2308:"I D F"},B:{1:"N H P J K L y BB Q WB S",16:"C"},C:{1:"0 1 2 3 4 5 6 7 8 9 E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",16:"G W I D F E A B C N H P J K L X Y Z a b c d"},E:{1:"D F E A B C N H dB eB fB XB R U jB kB",16:"G W I 0B YB",1668:"cB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T U",16:"E B C lB mB nB oB R VB",132:"qB"},G:{1:"F vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB rB IB tB uB"},H:{16:"AC"},I:{1:"Q FC GC",16:"KB BC CC DC",1668:"G EC IB"},J:{16:"D A"},K:{16:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{16:"A B"},O:{16:"HC"},P:{1:"IC JC KC LC MC XB NC OC",16:"G"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"Node.contains()"}},1689:function(B){B.exports={A:{A:{1:"I D F E A iB",132:"B"},B:{132:"C N H P J K L",260:"y BB Q WB S"},C:{1:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h pB hB",516:"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{1:"K L X Y Z a b c d e",2:"G W I D F E A B C N H P J",132:"f g h i j k l m n o p q r s",260:"0 1 2 3 4 5 6 7 8 9 t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"I cB dB",2:"G W 0B YB",2052:"D F E A B C N H eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"YB rB IB",1025:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{1025:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{2052:"A B"},O:{1025:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{260:"PC"},R:{1:"QC"},S:{516:"RC"}},B:1,C:"autocomplete attribute: on & off values"}},1695:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"J K L y BB Q WB S",2:"C N H P"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E"},E:{1:"I D F E A B C N H cB dB eB fB XB R U jB kB",2:"G 0B YB",16:"W"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U",2:"E"},G:{1:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB"},H:{1:"AC"},I:{1:"KB G Q EC IB FC GC",2:"BC CC DC"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"Form attribute"}},1704:function(B){B.exports={A:{A:{1:"B",2:"I D iB",66:"F E A"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V",2:"sB KB G W I D F E A B C N H P J K L X Y Z a pB hB",66:"b",129:"M T MB NB OB PB QB RB SB TB",388:"UB y BB"},D:{1:"0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S",2:"G W I D F E A B C N H P J K L X Y Z",1540:"gB bB aB"},E:{1:"D F E A B C N eB fB XB R U",2:"G W I 0B YB cB dB",513:"H jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T U",2:"E B C lB mB nB oB R VB qB"},G:{1:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB"},H:{1:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{1:"A",2:"D"},K:{1:"O U",2:"A B C R VB"},L:{1:"S"},M:{129:"M"},N:{1:"B",66:"A"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:6,C:"TLS 1.1"}},1711:function(B){B.exports={A:{A:{1:"A B",2:"I D F E iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E pB hB",33:"A B C N H P J K"},D:{1:"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N",33:"H P J K L X Y Z a b c d e f g h i j k"},E:{1:"D F E A B C N H dB eB fB XB R U jB kB",2:"G W I 0B YB cB"},F:{1:"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T U",2:"E B C lB mB nB oB R VB qB",33:"P J K L X"},G:{1:"F vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB uB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB",33:"FC GC"},J:{1:"A",2:"D"},K:{1:"O U",2:"A B C R VB"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",33:"G"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:2,C:"Page Visibility"}},1714:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:7,C:"Document Policy"}},1725:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H",194:"y BB Q WB S",257:"P J K L"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB pB hB",16:"y BB"},D:{2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q",16:"0 1 2 3 4 5 6 7 8 9 r s t u v w x O z",194:"AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F 0B YB cB dB eB",16:"E A B C N H fB XB R U jB kB"},F:{2:"E B C P J K L X Y Z a b c d e f g h lB mB nB oB R VB qB U",16:"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{2:"F YB rB IB tB uB vB wB",16:"xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{16:"AC"},I:{2:"KB G BC CC DC EC IB FC GC",16:"Q"},J:{2:"D A"},K:{2:"A B C R VB U",16:"O"},L:{16:"S"},M:{16:"M"},N:{2:"A",16:"B"},O:{16:"HC"},P:{16:"G IC JC KC LC MC XB NC OC"},Q:{16:"PC"},R:{16:"QC"},S:{2:"RC"}},B:6,C:"Token Binding"}},1735:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H",260:"P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q pB hB",129:"r"},D:{1:"0 1 2 3 4 5 6 7 8 9 O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x"},E:{1:"C N H R U jB kB",2:"G W I D F E A B 0B YB cB dB eB fB XB"},F:{1:"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k lB mB nB oB R VB qB U"},G:{1:"2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{16:"M"},N:{2:"A B"},O:{16:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:5,C:"Resource Hints: preconnect"}},1766:function(B){function stringifyNode(B,e){var r=B.type;var t=B.value;var n;var i;if(e&&(i=e(B))!==undefined){return i}else if(r==="word"||r==="space"){return t}else if(r==="string"){n=B.quote||"";return n+t+(B.unclosed?"":n)}else if(r==="comment"){return"/*"+t+(B.unclosed?"":"*/")}else if(r==="div"){return(B.before||"")+t+(B.after||"")}else if(Array.isArray(B.nodes)){n=stringify(B.nodes,e);if(r!=="function"){return n}return t+"("+(B.before||"")+n+(B.after||"")+(B.unclosed?"":")")}return t}function stringify(B,e){var r,t;if(Array.isArray(B)){r="";for(t=B.length-1;~t;t-=1){r=stringifyNode(B[t],e)+r}return r}return stringifyNode(B,e)}B.exports=stringify},1797:function(B){B.exports={A:{A:{1:"E A B",2:"I D F iB"},B:{1:"C N H P J K L",2:"y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{1:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:6,C:"JPEG XR image format"}},1798:function(B){B.exports={A:{A:{1:"E A B",2:"I D F iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB",33:"pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",33:"G W I D F E"},E:{1:"I D F E A B C N H cB dB eB fB XB R U jB kB",33:"W",164:"G 0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T nB oB R VB qB U",2:"E lB mB"},G:{1:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",33:"rB IB",164:"YB"},H:{2:"AC"},I:{1:"G Q EC IB FC GC",164:"KB BC CC DC"},J:{1:"A",33:"D"},K:{1:"B C O R VB U",2:"A"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"CSS3 Box-shadow"}},1804:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"N H P J K L y BB Q WB S",2:"C"},C:{1:"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N"},E:{1:"B C N H XB R U jB kB",2:"G W I D F E A 0B YB cB dB eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U"},G:{1:"5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B"},H:{2:"AC"},I:{1:"Q FC GC",2:"KB G BC CC DC EC IB"},J:{1:"A",2:"D"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"Download attribute"}},1816:function(B,e,r){"use strict";e.__esModule=true;e.universal=e.tag=e.string=e.selector=e.root=e.pseudo=e.nesting=e.id=e.comment=e.combinator=e.className=e.attribute=undefined;var t=r(6039);var n=_interopRequireDefault(t);var i=r(7010);var C=_interopRequireDefault(i);var o=r(7129);var a=_interopRequireDefault(o);var s=r(2955);var u=_interopRequireDefault(s);var f=r(6812);var l=_interopRequireDefault(f);var c=r(9633);var p=_interopRequireDefault(c);var A=r(4222);var d=_interopRequireDefault(A);var h=r(5058);var E=_interopRequireDefault(h);var D=r(4256);var v=_interopRequireDefault(D);var F=r(3313);var G=_interopRequireDefault(F);var O=r(1030);var M=_interopRequireDefault(O);var g=r(3464);var I=_interopRequireDefault(g);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}var H=e.attribute=function attribute(B){return new n.default(B)};var L=e.className=function className(B){return new C.default(B)};var m=e.combinator=function combinator(B){return new a.default(B)};var y=e.comment=function comment(B){return new u.default(B)};var N=e.id=function id(B){return new l.default(B)};var R=e.nesting=function nesting(B){return new p.default(B)};var S=e.pseudo=function pseudo(B){return new d.default(B)};var b=e.root=function root(B){return new E.default(B)};var P=e.selector=function selector(B){return new v.default(B)};var J=e.string=function string(B){return new G.default(B)};var K=e.tag=function tag(B){return new M.default(B)};var Q=e.universal=function universal(B){return new I.default(B)}},1838:function(B){B.exports={A:{A:{2:"I D iB",132:"F E A B"},B:{1:"y BB Q WB S",132:"C N H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",132:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n pB hB"},D:{1:"JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",132:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB"},E:{2:"G W 0B YB",132:"I D F E A B C N H cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 AB CB EB FB GB HB DB V M T",2:"E lB mB nB oB",16:"B R VB",132:"C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z qB U"},G:{16:"YB rB IB",132:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{16:"BC CC",132:"KB G Q DC EC IB FC GC"},J:{132:"D A"},K:{132:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{132:"A B"},O:{132:"HC"},P:{132:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{132:"QC"},S:{1:"RC"}},B:5,C:"scrollIntoView"}},1868:function(B,e,r){"use strict";e.__esModule=true;e.default=void 0;var t=_interopRequireDefault(r(129));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}var n=function(){function Processor(B,e){this.func=B||function noop(){};this.funcRes=null;this.options=e}var B=Processor.prototype;B._shouldUpdateSelector=function _shouldUpdateSelector(B,e){if(e===void 0){e={}}var r=Object.assign({},this.options,e);if(r.updateSelector===false){return false}else{return typeof B!=="string"}};B._isLossy=function _isLossy(B){if(B===void 0){B={}}var e=Object.assign({},this.options,B);if(e.lossless===false){return true}else{return false}};B._root=function _root(B,e){if(e===void 0){e={}}var r=new t.default(B,this._parseOptions(e));return r.root};B._parseOptions=function _parseOptions(B){return{lossy:this._isLossy(B)}};B._run=function _run(B,e){var r=this;if(e===void 0){e={}}return new Promise(function(t,n){try{var i=r._root(B,e);Promise.resolve(r.func(i)).then(function(t){var n=undefined;if(r._shouldUpdateSelector(B,e)){n=i.toString();B.selector=n}return{transform:t,root:i,string:n}}).then(t,n)}catch(B){n(B);return}})};B._runSync=function _runSync(B,e){if(e===void 0){e={}}var r=this._root(B,e);var t=this.func(r);if(t&&typeof t.then==="function"){throw new Error("Selector processor returned a promise to a synchronous call.")}var n=undefined;if(e.updateSelector&&typeof B!=="string"){n=r.toString();B.selector=n}return{transform:t,root:r,string:n}};B.ast=function ast(B,e){return this._run(B,e).then(function(B){return B.root})};B.astSync=function astSync(B,e){return this._runSync(B,e).root};B.transform=function transform(B,e){return this._run(B,e).then(function(B){return B.transform})};B.transformSync=function transformSync(B,e){return this._runSync(B,e).transform};B.process=function process(B,e){return this._run(B,e).then(function(B){return B.string||B.root.toString()})};B.processSync=function processSync(B,e){var r=this._runSync(B,e);return r.string||r.root.toString()};return Processor}();e.default=n;B.exports=e.default},1870:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"N H P J K L",2:"C y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D",130:"A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:6,C:"Object RTC (ORTC) API for WebRTC"}},1871:function(B){B.exports={A:{A:{644:"I D iB",2049:"E A B",2692:"F"},B:{1:"y BB Q WB S",2049:"C N H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB",260:"G W I D F E A B",1156:"KB",1284:"pB",1796:"hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H cB dB eB fB XB R U jB kB",16:"0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T oB R VB qB U",16:"E lB",132:"mB nB"},G:{1:"F rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB"},H:{1:"AC"},I:{1:"KB G Q DC EC IB FC GC",16:"BC CC"},J:{1:"D A"},K:{1:"B C O R VB U",132:"A"},L:{1:"S"},M:{1:"M"},N:{2049:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:5,C:"Element.getBoundingClientRect()"}},1885:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",194:"AB LB CB JB EB FB GB HB DB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"6 7 8 9 AB CB EB FB GB HB DB V M T",2:"0 1 2 3 4 5 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:4,C:"Accelerometer"}},1904:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"UB y BB",2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB pB hB"},D:{1:"EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"1 2 3 4 5 6 7 8 9 AB CB EB FB GB HB DB V M T",2:"0 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{2:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"LC MC XB NC OC",2:"G IC JC KC"},Q:{1:"PC"},R:{2:"QC"},S:{2:"RC"}},B:6,C:"Lookbehind in JS regular expressions"}},1911:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L",164:"y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w pB hB",322:"x"},D:{2:"G W I D F E A B C N H P J K L X Y Z a b c",164:"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"F E A B C N H eB fB XB R U jB kB",2:"G W I 0B YB cB",164:"D dB"},F:{2:"E B C lB mB nB oB R VB qB U",164:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{1:"F vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB uB"},H:{2:"AC"},I:{2:"KB G BC CC DC EC IB",164:"Q FC GC"},J:{2:"D",164:"A"},K:{2:"A B C R VB U",164:"O"},L:{164:"S"},M:{1:"M"},N:{2:"A B"},O:{164:"HC"},P:{164:"G IC JC KC LC MC XB NC OC"},Q:{164:"PC"},R:{164:"QC"},S:{1:"RC"}},B:4,C:"text-emphasis styling"}},1930:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(9854));var n=_interopRequireDefault(r(2043));var i=_interopRequireDefault(r(383));var C=r(5433);var o=_interopRequireDefault(r(6235));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}const a=i.default.map(B=>`-${B}-`);function declarationIsEqual(B,e){return B.important===e.important&&B.prop===e.prop&&B.value===e.value}function indexOfDeclaration(B,e){return B.findIndex(B=>declarationIsEqual(B,e))}function intersect(B,e,r){return B.filter(B=>{const t=~indexOfDeclaration(e,B);return r?!t:t})}function sameDeclarationsAndOrder(B,e){if(B.length!==e.length){return false}return B.every((B,r)=>declarationIsEqual(B,e[r]))}const s=B=>~B.search(/-ms-input-placeholder/i);function filterPrefixes(B){return a.filter(e=>B.indexOf(e)!==-1)}function sameVendor(B,e){let r=B=>B.map(filterPrefixes).join();let t=B=>B.find(s);return r(B)===r(e)&&!(t(B)&&t(e))}function noVendor(B){return!filterPrefixes(B).length}function canMerge(B,e,r,t){const n=B.selectors;const i=e.selectors;const a=n.concat(i);if(!(0,o.default)(a,r,t)){return false}const s=(0,C.sameParent)(B,e);const{name:u}=B.parent;if(s&&u&&~u.indexOf("keyframes")){return false}return s&&(a.every(noVendor)||sameVendor(n,i))}function getDecls(B){return B.nodes.filter(B=>B.type==="decl")}const u=(...B)=>B.map(B=>B.selector).join();function ruleLength(...B){return B.map(B=>B.nodes.length?String(B):"").join("").length}function splitProp(B){const e=B.split("-");if(B[0]!=="-"){return{prefix:"",base:e[0],rest:e.slice(1)}}if(B[1]==="-"){return{prefix:null,base:null,rest:[B]}}return{prefix:e[1],base:e[2],rest:e.slice(3)}}function isConflictingProp(B,e){if(B===e){return true}const r=splitProp(B);const t=splitProp(e);if(!r.base&&!t.base){return true}if(r.base!==t.base){return false}if(r.rest.length!==t.rest.length){return true}return r.rest.every((B,e)=>t.rest[e]===B)}function mergeParents(B,e){if(!B.parent||!e.parent){return false}if(B.parent===e.parent){return false}e.remove();B.parent.append(e);return true}function partialMerge(B,e){let r=intersect(getDecls(B),getDecls(e));if(!r.length){return e}let t=e.next();if(!t){const B=e.parent.next();t=B&&B.nodes&&B.nodes[0]}if(t&&t.type==="rule"&&canMerge(e,t)){let n=intersect(getDecls(e),getDecls(t));if(n.length>r.length){mergeParents(e,t);B=e;e=t;r=n}}const n=getDecls(B);r=r.filter((B,e)=>{const t=indexOfDeclaration(n,B);const i=n.slice(t+1).find(e=>isConflictingProp(e.prop,B.prop));if(!i){return true}const C=r.slice(e+1).find(e=>isConflictingProp(e.prop,B.prop));if(!C){return false}if(declarationIsEqual(i,C)){return true}return false});const i=getDecls(e);r=r.filter(B=>{const e=i.findIndex(e=>isConflictingProp(e.prop,B.prop));if(e===-1){return false}if(!declarationIsEqual(i[e],B)){return false}if(B.prop.toLowerCase()!=="direction"&&B.prop.toLowerCase()!=="unicode-bidi"&&i.some(B=>B.prop.toLowerCase()==="all")){return false}i.splice(e,1);return true});if(!r.length){return e}const C=e.clone();C.selector=u(B,e);C.nodes=[];e.parent.insertBefore(e,C);const o=B.clone();const a=e.clone();function moveDecl(B){return e=>{if(~indexOfDeclaration(r,e)){B.call(this,e)}}}o.walkDecls(moveDecl(B=>{B.remove();C.append(B)}));a.walkDecls(moveDecl(B=>B.remove()));const s=ruleLength(o,C,a);const f=ruleLength(B,e);if(s<f){B.replaceWith(o);e.replaceWith(a);[o,C,a].forEach(B=>{if(!B.nodes.length){B.remove()}});if(!a.parent){return C}return a}else{C.remove();return e}}function selectorMerger(B,e){let r=null;return function(t){if(!r||!canMerge(t,r,B,e)){r=t;return}if(r===t){r=t;return}mergeParents(r,t);if(sameDeclarationsAndOrder(getDecls(t),getDecls(r))){t.selector=u(r,t);r.remove();r=t;return}if(r.selector===t.selector){const B=getDecls(r);t.walk(e=>{if(~indexOfDeclaration(B,e)){return e.remove()}r.append(e)});t.remove();return}r=partialMerge(r,t)}}var f=n.default.plugin("postcss-merge-rules",()=>{return(B,e)=>{const r=e.opts||{};const n=(0,t.default)(null,{stats:r.stats,path:__dirname,env:r.env});const i={};B.walkRules(selectorMerger(n,i))}});e.default=f;B.exports=e.default},1934:function(B){B.exports={"background-clip":"border-box","background-color":"transparent","background-origin":"padding-box","background-size":"auto auto","border-block-color":"currentcolor","border-block-end-color":"currentcolor","border-block-start-color":"currentcolor","border-bottom-color":"currentcolor","border-collapse":"separate","border-inline-color":"currentcolor","border-inline-end-color":"currentcolor","border-inline-start-color":"currentcolor","border-left-color":"currentcolor","border-right-color":"currentcolor","border-top-color":"currentcolor","box-sizing":"content-box","column-rule-color":"currentcolor","font-synthesis":"weight style","mask-clip":"border-box","mask-mode":"match-source","mask-origin":"border-box","mask-repeat":"repeat","mask-type":"luminance","ruby-align":"space-around","ruby-merge":"separate","text-decoration-color":"currentcolor","text-emphasis-color":"currentcolor","text-emphasis-position":"over right","transform-box":"border-box","transform-origin":"50% 50% 0","vertical-align":"baseline","writing-mode":"horizontal-tb"}},1940:function(B,e){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=_default;const r={in:96,px:1,pt:4/3,pc:16};const t={s:1e3,ms:1};const n={turn:360,deg:1};function dropLeadingZero(B){const e=String(B);if(B%1){if(e[0]==="0"){return e.slice(1)}if(e[0]==="-"&&e[1]==="0"){return"-"+e.slice(2)}}return e}function transform(B,e,r){const t=e.toLowerCase();let n,i;let C=Object.keys(r).filter(B=>{if(r[B]===1){n=B}return t!==B});if(t===n){i=B/r[t]}else{i=B*r[t]}return C.map(B=>dropLeadingZero(i/r[B])+B).reduce((B,e)=>B.length<e.length?B:e)}function _default(B,e,{time:i,length:C,angle:o}){let a=dropLeadingZero(B)+(e?e:"");let s;if(C!==false&&e.toLowerCase()in r){s=transform(B,e,r)}if(i!==false&&e.toLowerCase()in t){s=transform(B,e,t)}if(o!==false&&e.toLowerCase()in n){s=transform(B,e,n)}if(s&&s.length<a.length){a=s}return a}B.exports=e.default},1941:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=unpackRegion;var t=r(6918);function unpackRegion(B){return Object.keys(B).reduce(function(e,r){var n=B[r];e[t.browsers[r]]=Object.keys(n).reduce(function(B,e){var r=n[e];if(e==="_"){r.split(" ").forEach(function(e){return B[e]=null})}else{B[e]=r}return B},{});return e},{})}},1971:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 1 2 3 4 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB"},D:{1:"9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},E:{1:"C N H R U jB kB",2:"G W I D F E A B 0B YB cB dB eB fB XB"},F:{1:"0 1 2 3 4 5 6 7 8 9 w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v lB mB nB oB R VB qB U"},G:{1:"2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"KC LC MC XB NC OC",2:"G IC JC"},Q:{1:"PC"},R:{2:"QC"},S:{2:"RC"}},B:4,C:"CSS caret-color"}},2002:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w pB hB"},D:{1:"1 2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t",132:"0 u v w x O z"},E:{1:"E A B C N H fB XB R U jB kB",2:"G W I D F 0B YB cB dB eB"},F:{1:"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g lB mB nB oB R VB qB U",132:"h i j k l m n"},G:{1:"xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:6,C:"ES6 classes"}},2017:function(B,e){"use strict";e.__esModule=true;e.combinator=e.word=e.comment=e.str=e.tab=e.newline=e.feed=e.cr=e.backslash=e.bang=e.slash=e.doubleQuote=e.singleQuote=e.space=e.greaterThan=e.pipe=e.equals=e.plus=e.caret=e.tilde=e.dollar=e.closeSquare=e.openSquare=e.closeParenthesis=e.openParenthesis=e.semicolon=e.colon=e.comma=e.at=e.asterisk=e.ampersand=void 0;var r=38;e.ampersand=r;var t=42;e.asterisk=t;var n=64;e.at=n;var i=44;e.comma=i;var C=58;e.colon=C;var o=59;e.semicolon=o;var a=40;e.openParenthesis=a;var s=41;e.closeParenthesis=s;var u=91;e.openSquare=u;var f=93;e.closeSquare=f;var l=36;e.dollar=l;var c=126;e.tilde=c;var p=94;e.caret=p;var A=43;e.plus=A;var d=61;e.equals=d;var h=124;e.pipe=h;var E=62;e.greaterThan=E;var D=32;e.space=D;var v=39;e.singleQuote=v;var F=34;e.doubleQuote=F;var G=47;e.slash=G;var O=33;e.bang=O;var M=92;e.backslash=M;var g=13;e.cr=g;var I=12;e.feed=I;var H=10;e.newline=H;var L=9;e.tab=L;var m=v;e.str=m;var y=-1;e.comment=y;var N=-2;e.word=N;var R=-3;e.combinator=R},2026:function(B){B.exports={A:{A:{1:"D F E A B",2:"iB",8:"I"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{1:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:2,C:"CSS 2.1 selectors"}},2035:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"J K L y BB Q WB S",2:"C N H P"},C:{1:"2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 1 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB"},D:{1:"7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},E:{1:"A B C N H XB R U jB kB",2:"G W I D F E 0B YB cB dB eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t lB mB nB oB R VB qB U"},G:{1:"zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"JC KC LC MC XB NC OC",2:"G IC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:1,C:'"once" event listener option'}},2043:function(B){B.exports=require("postcss")},2072:function(B){B.exports={A:{A:{1:"I D F E A B",16:"iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W pB hB"},D:{1:"FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"2 3 4 5 6 7 8 9 AB CB EB FB GB HB DB V M T",2:"0 1 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{16:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{16:"A B"},O:{16:"HC"},P:{2:"IC JC KC LC MC XB NC OC",16:"G"},Q:{1:"PC"},R:{2:"QC"},S:{1:"RC"}},B:1,C:"Printing Events"}},2079:function(B){B.exports={0:"48",1:"49",2:"50",3:"51",4:"52",5:"53",6:"54",7:"55",8:"56",9:"57",A:"10",B:"11",C:"12",D:"7",E:"9",F:"8",G:"4",H:"14",I:"6",J:"16",K:"17",L:"18",M:"68",N:"13",O:"46",P:"15",Q:"81",R:"11.1",S:"84",T:"69",U:"12.1",V:"67",W:"5",X:"19",Y:"20",Z:"21",a:"22",b:"23",c:"24",d:"25",e:"26",f:"27",g:"28",h:"29",i:"30",j:"31",k:"32",l:"33",m:"34",n:"35",o:"36",p:"37",q:"38",r:"39",s:"40",t:"41",u:"42",v:"43",w:"44",x:"45",y:"79",z:"47",AB:"58",BB:"80",CB:"60",DB:"66",EB:"62",FB:"63",GB:"64",HB:"65",IB:"4.2-4.3",JB:"61",KB:"3",LB:"59",MB:"70",NB:"71",OB:"72",PB:"73",QB:"74",RB:"75",SB:"76",TB:"77",UB:"78",VB:"11.5",WB:"83",XB:"10.1",YB:"3.2",ZB:"10.3",aB:"87",bB:"86",cB:"5.1",dB:"6.1",eB:"7.1",fB:"9.1",gB:"85",hB:"3.6",iB:"5.5",jB:"13.1",kB:"TP",lB:"9.5-9.6",mB:"10.0-10.1",nB:"10.5",oB:"10.6",pB:"3.5",qB:"11.6",rB:"4.0-4.1",sB:"2",tB:"5.0-5.1",uB:"6.0-6.1",vB:"7.0-7.1",wB:"8.1-8.4",xB:"9.0-9.2",yB:"9.3",zB:"10.0-10.2","0B":"3.1","1B":"11.0-11.2","2B":"11.3-11.4","3B":"12.0-12.1","4B":"12.2-12.4","5B":"13.0-13.1","6B":"13.2","7B":"13.3","8B":"13.4-13.5","9B":"14.0",AC:"all",BC:"2.1",CC:"2.2",DC:"2.3",EC:"4.1",FC:"4.4",GC:"4.4.3-4.4.4",HC:"12.12",IC:"5.0-5.4",JC:"6.2-6.4",KC:"7.2-7.4",LC:"8.2",MC:"9.2",NC:"11.1-11.2",OC:"12.0",PC:"10.4",QC:"7.12",RC:"2.5"}},2088:function(B){B.exports={A:{A:{1:"E A B",2:"I D F iB"},B:{1:"C N H P J K L",16:"y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H pB hB"},D:{1:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l",2:"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S",16:"gB bB aB"},E:{1:"I D F E A B C N H cB dB eB fB XB R U jB kB",2:"G W 0B YB"},F:{1:"B C P J K L X Y Z a b c mB nB oB R VB qB U",2:"0 1 2 3 4 5 6 7 8 9 E d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB"},G:{1:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB rB IB"},H:{16:"AC"},I:{1:"G Q EC IB FC GC",16:"KB BC CC DC"},J:{16:"D A"},K:{1:"C O U",16:"A B R VB"},L:{1:"S"},M:{1:"M"},N:{16:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"Media attribute"}},2101:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"N H P J K L y BB Q WB S",2:"C"},C:{1:"0 1 2 3 4 5 6 7 8 9 t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N pB hB",33:"H P J K L X Y Z a b c d e f g h i j k l m n o p q r s"},D:{1:"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P",33:"a b c d e f g h i j k l m n o",66:"J K L X Y Z"},E:{1:"B C N H XB R U jB kB",2:"G W I D F E A 0B YB cB dB eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U",33:"P J K L X Y Z a b"},G:{1:"ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{2:"QC"},S:{1:"RC"}},B:2,C:"Pointer Lock API"}},2123:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"E A B C N H fB XB R U jB kB",2:"G W I D F 0B YB cB dB eB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:7,C:"selector list argument of :nth-child and :nth-last-child CSS pseudo-classes"}},2142:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"J K L y BB Q WB S",2:"C N H P"},C:{1:"9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 1 2 3 4 5 6 7 8 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB"},D:{1:"DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB"},E:{1:"N H U jB kB",2:"G W I D F E A B 0B YB cB dB eB fB XB",130:"C R"},F:{1:"5 6 7 8 9 AB CB EB FB GB HB DB V M T",2:"0 1 2 3 4 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z lB mB nB oB R VB qB U"},G:{1:"2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"MC XB NC OC",2:"G IC JC KC LC"},Q:{1:"PC"},R:{2:"QC"},S:{2:"RC"}},B:1,C:"AbortController & AbortSignal"}},2150:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L pB hB",132:"X"},D:{1:"0 1 2 3 4 5 6 7 8 9 q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p"},E:{1:"B C N H XB R U jB kB",2:"G W I D F E A 0B YB cB dB eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c lB mB nB oB R VB qB U"},G:{1:"ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"TextEncoder & TextDecoder"}},2174:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"H P J K L y BB Q WB S",2:"C N"},C:{1:"0 1 2 3 4 5 6 7 8 9 z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O pB hB"},D:{1:"6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},E:{1:"B C N H XB R U jB kB",2:"G W I D F E A 0B YB cB dB eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s lB mB nB oB R VB qB U"},G:{1:"ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D",16:"A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"JC KC LC MC XB NC OC",2:"G IC"},Q:{1:"PC"},R:{2:"QC"},S:{1:"RC"}},B:6,C:"Object.entries"}},2186:function(B){B.exports={A:{A:{16:"I D iB",132:"F E A B"},B:{132:"C N H P J K L",322:"y BB Q WB S"},C:{2:"0 1 2 3 4 5 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB",1025:"7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",1602:"6"},D:{2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u",322:"0 1 2 3 4 5 6 7 8 9 v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"E B C P J K L X Y Z a b c d e f g h lB mB nB oB R VB qB U",322:"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G BC CC DC EC IB FC GC",322:"Q"},J:{2:"D A"},K:{2:"A B C R VB U",322:"O"},L:{322:"S"},M:{1025:"M"},N:{132:"A B"},O:{2:"HC"},P:{2:"G",322:"IC JC KC LC MC XB NC OC"},Q:{322:"PC"},R:{322:"QC"},S:{2:"RC"}},B:5,C:"CSS text-justify"}},2188:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=r(2043);var n=_interopRequireWildcard(r(6486));var i=_interopRequireDefault(r(454));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _getRequireWildcardCache(){if(typeof WeakMap!=="function")return null;var B=new WeakMap;_getRequireWildcardCache=function(){return B};return B}function _interopRequireWildcard(B){if(B&&B.__esModule){return B}if(B===null||typeof B!=="object"&&typeof B!=="function"){return{default:B}}var e=_getRequireWildcardCache();if(e&&e.has(B)){return e.get(B)}var r={};var t=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var n in B){if(Object.prototype.hasOwnProperty.call(B,n)){var i=t?Object.getOwnPropertyDescriptor(B,n):null;if(i&&(i.get||i.set)){Object.defineProperty(r,n,i)}else{r[n]=B[n]}}}r.default=B;if(e){e.set(B,r)}return r}const C=["top","right","bottom","left","center"];const o="50%";const a={right:"100%",left:"0"};const s={bottom:"100%",top:"0"};function isCommaNode(B){return B.type==="div"&&B.value===","}function isVariableFunctionNode(B){if(B.type!=="function"){return false}return["var","env"].includes(B.value.toLowerCase())}function isMathFunctionNode(B){if(B.type!=="function"){return false}return["calc","min","max","clamp"].includes(B.value.toLowerCase())}function isNumberNode(B){if(B.type!=="word"){return false}const e=parseFloat(B.value);return!isNaN(e)}function isDimensionNode(B){if(B.type!=="word"){return false}const e=(0,n.unit)(B.value);if(!e){return false}return e.unit!==""}function transform(B){const e=(0,n.default)(B);const r=[];let t=0;let u=true;e.nodes.forEach((B,e)=>{if(isCommaNode(B)){t+=1;u=true;return}if(!u){return}if(B.type==="div"&&B.value==="/"){u=false;return}if(!r[t]){r[t]={start:null,end:null}}if(isVariableFunctionNode(B)){u=false;r[t].start=null;r[t].end=null;return}const n=B.type==="word"&&C.includes(B.value.toLowerCase())||isDimensionNode(B)||isNumberNode(B)||isMathFunctionNode(B);if(r[t].start===null&&n){r[t].start=e;r[t].end=e;return}if(r[t].start!==null){if(B.type==="space"){return}else if(n){r[t].end=e;return}return}});r.forEach(B=>{if(B.start===null){return}const r=e.nodes.slice(B.start,B.end+1);if(r.length>3){return}const t=r[0].value.toLowerCase();const n=r[2]&&r[2].value?r[2].value.toLowerCase():null;if(r.length===1||n==="center"){if(n){r[2].value=r[1].value=""}const B=Object.assign({},a,{center:o});if((0,i.default)(B,t)){r[0].value=B[t]}return}if(t==="center"&&C.includes(n)){r[0].value=r[1].value="";if((0,i.default)(a,n)){r[2].value=a[n]}return}if((0,i.default)(a,t)&&(0,i.default)(s,n)){r[0].value=a[t];r[2].value=s[n];return}else if((0,i.default)(s,t)&&(0,i.default)(a,n)){r[0].value=a[n];r[2].value=s[t];return}});return e.toString()}var u=(0,t.plugin)("postcss-normalize-positions",()=>{return B=>{const e={};B.walkDecls(/^(background(-position)?|(-\w+-)?perspective-origin)$/i,B=>{const r=B.value;if(!r){return}if(e[r]){B.value=e[r];return}const t=transform(r);B.value=t;e[r]=t})}});e.default=u;B.exports=e.default},2201:function(B,e){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var r=(B,e)=>{return B.filter(B=>B.prop&&B.prop.toLowerCase()===e).pop()};e.default=r;B.exports=e.default},2207:function(B){B.exports={A:{A:{2:"I D F E A iB",161:"B"},B:{2:"y BB Q WB S",161:"C N H P J K L"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A",161:"B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:5,C:"Input Method Editor API"}},2234:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"WB S",2:"C N H P J K L",66:"y BB Q"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB",66:"QB RB SB TB UB y BB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"M T",2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB lB mB nB oB R VB qB U",66:"DB V"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:7,C:"URL Scroll-To-Text Fragment"}},2251:function(B){B.exports={A:{A:{1:"E A B",16:"iB",132:"I D F"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",132:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h"},E:{1:"D F E A B C N H dB eB fB XB R U jB kB",16:"0B",132:"G W I YB cB"},F:{1:"0 1 2 3 4 5 6 7 8 9 K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",16:"E lB",132:"B C P J mB nB oB R VB qB U"},G:{1:"F rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB"},H:{2:"AC"},I:{1:"Q FC GC",16:"BC CC",132:"KB G DC EC IB"},J:{132:"D A"},K:{1:"O",132:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:2,C:"letter-spacing CSS property"}},2278:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"C N H P J K L",2:"y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"I D F E A B C N H dB eB fB XB R U jB kB",2:"G W 0B YB cB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"KB G Q EC IB FC GC",2:"BC CC DC"},J:{1:"A",2:"D"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{2:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{2:"RC"}},B:7,C:"HTTP Live Streaming (HLS)"}},2286:function(B){B.exports={A:{A:{1:"A B",2:"I D F E iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D"},E:{1:"I D F E A B C N H dB eB fB XB R U jB kB",2:"G W 0B YB cB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T R VB qB U",2:"E lB mB nB oB"},G:{2:"YB rB IB tB uB",132:"F vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{1:"AC"},I:{1:"Q FC GC",2:"KB G BC CC DC EC IB"},J:{1:"D A"},K:{1:"B C O R VB U",2:"A"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"progress element"}},2290:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB pB hB",16:"y BB"},D:{1:"1 2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{2:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{1:"PC"},R:{2:"QC"},S:{2:"RC"}},B:7,C:"Background Sync API"}},2312:function(B){B.exports={A:{A:{2:"iB",8:"I D F E A",164:"B"},B:{1:"y BB Q WB S",513:"C N H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",8:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j pB hB",66:"k l"},D:{1:"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",8:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o"},E:{1:"B C N H R U jB kB",8:"G W I D 0B YB cB dB",289:"F E A eB fB XB"},F:{1:"0 1 2 3 4 5 6 7 8 9 c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",8:"E B C P J K L X Y Z a b lB mB nB oB R VB qB U"},G:{1:"1B 2B 3B 4B 5B 6B 7B 8B 9B",8:"YB rB IB tB uB vB",289:"F wB xB yB zB ZB"},H:{2:"AC"},I:{1:"Q",8:"KB G BC CC DC EC IB FC GC"},J:{8:"D A"},K:{1:"O",8:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{8:"A",164:"B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:2,C:"Web Cryptography"}},2325:function(B){B.exports={A:{A:{2:"I D F E iB",129:"A B"},B:{1:"y BB Q WB S",129:"C N H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB",2:"sB KB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H cB dB eB fB XB R U jB kB",260:"0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U",2:"E"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{4:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"A",4:"D"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{129:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"CSS3 Text-shadow"}},2338:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P",16:"J K L X"},E:{1:"D F E A B C N H dB eB fB XB R U jB kB",2:"G W 0B YB cB",16:"I"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T U",2:"E B lB mB nB oB R VB qB",16:"C"},G:{1:"F uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB"},H:{1:"AC"},I:{1:"Q FC GC",2:"KB G BC CC DC EC IB"},J:{1:"A",2:"D"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"Reversed attribute of ordered lists"}},2339:function(B){B.exports={A:{A:{2:"I D F E iB",132:"B",164:"A"},B:{1:"y BB Q WB S",132:"C N H P J K L"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",260:"7"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t lB mB nB oB R VB qB U",260:"u"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{2:"M"},N:{132:"B",164:"A"},O:{2:"HC"},P:{1:"IC JC KC LC MC XB NC OC",16:"G"},Q:{2:"PC"},R:{1:"QC"},S:{2:"RC"}},B:5,C:"CSS touch-action level 2 values"}},2357:function(B){B.exports={A:{A:{1:"E A B",2:"I iB",132:"D F"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W"},E:{1:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"F rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB"},H:{1:"AC"},I:{1:"KB G Q EC IB FC GC",2:"BC CC DC"},J:{1:"A",2:"D"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:6,C:"Server Name Indication"}},2366:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=normalizeAnimation;var t=r(6486);var n=r(5433);var i=_interopRequireDefault(r(1231));var C=_interopRequireDefault(r(7138));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}const o=(B,e)=>{const r=["steps","cubic-bezier","frames"];const t=["ease","ease-in","ease-in-out","ease-out","linear","step-end","step-start"];return e==="function"&&r.includes(B)||t.includes(B)};const a=B=>{return["normal","reverse","alternate","alternate-reverse"].includes(B)};const s=B=>{return["none","forwards","backwards","both"].includes(B)};const u=B=>{return["running","paused"].includes(B)};const f=B=>{const e=(0,t.unit)(B);return e&&["ms","s"].includes(e.unit)};const l=B=>{const e=(0,t.unit)(B);return B==="infinite"||e&&!e.unit};function normalizeAnimation(B){const e=(0,n.getArguments)(B);const r=e.reduce((B,e)=>{const r={name:[],duration:[],timingFunction:[],delay:[],iterationCount:[],direction:[],fillMode:[],playState:[]};const t=[{property:"duration",delegate:f},{property:"timingFunction",delegate:o},{property:"delay",delegate:f},{property:"iterationCount",delegate:l},{property:"direction",delegate:a},{property:"fillMode",delegate:s},{property:"playState",delegate:u}];e.forEach(B=>{let{type:e,value:n}=B;if(e==="space"){return}n=n.toLowerCase();const C=t.some(({property:t,delegate:C})=>{if(C(n,e)&&!r[t].length){r[t]=[B,(0,i.default)()];return true}});if(!C){r.name=[...r.name,B,(0,i.default)()]}});return[...B,[...r.name,...r.duration,...r.timingFunction,...r.delay,...r.iterationCount,...r.direction,...r.fillMode,...r.playState]]},[]);return(0,C.default)(r)}B.exports=e.default},2376:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 1 2 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB",322:"3 4 5 6 7 8 9 AB LB CB JB"},D:{1:"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l",194:"m n o"},E:{1:"B C N H XB R U jB kB",2:"G W I D 0B YB cB dB",33:"F E A eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b lB mB nB oB R VB qB U"},G:{1:"ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB uB vB",33:"F wB xB yB zB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{2:"RC"}},B:4,C:"CSS Shapes Level 1"}},2387:function(B){B.exports={A:{A:{1:"F E A B",2:"iB",8:"I D"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB",4:"sB KB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H cB dB eB fB XB R U jB kB",2:"0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T nB oB R VB qB U",2:"E lB mB"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"B C O R VB U",2:"A"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"Web Storage - name/value pairs"}},2397:function(B){B.exports={A:{A:{1:"E A B",2:"iB",8:"I D F"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB",8:"sB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U",2:"E"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{1:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"getElementsByClassName"}},2414:function(B){B.exports={A:{A:{1:"E A B",2:"I D F iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB",260:"G W I D F E A B C N H P J K L X pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A cB dB eB fB XB",2:"0B YB",513:"B C N H R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T nB oB R VB qB U",2:"E lB mB"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB",513:"1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"KB G Q DC EC IB FC GC",132:"BC CC"},J:{1:"D A"},K:{1:"B C O R VB U",2:"A"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"Video element"}},2416:function(B){B.exports={A:{A:{2:"I D F E A iB",33:"B"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A"},E:{1:"D F E A B C N H dB eB fB XB R U jB kB",2:"G W I 0B YB cB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U"},G:{1:"F vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB uB"},H:{2:"AC"},I:{1:"Q FC GC",2:"KB G BC CC DC EC IB"},J:{1:"A",2:"D"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A",33:"B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:2,C:"crypto.getRandomValues()"}},2417:function(B){B.exports={A:{A:{2:"I D F iB",132:"E",260:"A B"},B:{1:"J K L y BB Q WB S",260:"C N H P"},C:{1:"0 1 2 3 4 5 6 7 8 9 X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X",260:"Y Z a b c d"},E:{1:"D F E A B C N H dB eB fB XB R U jB kB",2:"G W 0B YB cB",260:"I"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U"},G:{1:"F wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB",516:"vB",772:"uB"},H:{2:"AC"},I:{1:"Q FC GC",2:"KB G BC CC DC EC IB"},J:{1:"A",2:"D"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{260:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"Viewport units: vw, vh, vmin, vmax"}},2425:function(B,e){"use strict";e.__esModule=true;e.default=stripComments;function stripComments(B){var e="";var r=B.indexOf("/*");var t=0;while(r>=0){e=e+B.slice(t,r);var n=B.indexOf("*/",r+2);if(n<0){return e}t=n+2;r=B.indexOf("/*",t)}e=e+B.slice(t);return e}B.exports=e.default},2430:function(B){B.exports={A:{A:{1:"E A B",2:"I D F iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",16:"sB KB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",16:"G W I D F E A B C N H",132:"P J K L X Y Z a b c d e f g h"},E:{1:"A B C N H XB R U jB kB",16:"G W I 0B YB",132:"D F E dB eB fB",260:"cB"},F:{1:"0 1 2 3 4 5 6 7 8 9 C K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T qB U",16:"E B lB mB nB oB R VB",132:"P J"},G:{1:"zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB",132:"F rB IB tB uB vB wB xB yB"},H:{1:"AC"},I:{1:"Q FC GC",16:"BC CC",132:"KB G DC EC IB"},J:{132:"D A"},K:{1:"C O U",16:"A B R VB"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"Node.compareDocumentPosition()"}},2453:function(B,e){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.VALUE=e.SELECTOR=e.PROPERTY=e.MEDIA_QUERY=void 0;const r="media query";e.MEDIA_QUERY=r;const t="property";e.PROPERTY=t;const n="selector";e.SELECTOR=n;const i="value";e.VALUE=i},2470:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L",33:"y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"G W I D F E A B C N H P J K L X Y",33:"0 1 2 3 4 5 6 7 8 9 Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W 0B YB cB",33:"I D F E dB eB fB",129:"A B C N H XB R U jB kB"},F:{2:"E B C lB mB nB oB R VB qB U",33:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{2:"YB rB IB tB",33:"F uB vB wB xB yB",129:"zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G BC CC DC EC IB",33:"Q FC GC"},J:{2:"D",33:"A"},K:{2:"A B C R VB U",33:"O"},L:{33:"S"},M:{2:"M"},N:{2:"A B"},O:{33:"HC"},P:{33:"G IC JC KC LC MC XB NC OC"},Q:{33:"PC"},R:{33:"QC"},S:{2:"RC"}},B:5,C:"CSS image-set"}},2474:function(B,e,r){"use strict";e.__esModule=true;e.default=void 0;var t=_interopRequireDefault(r(2644));var n=r(8019);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _inheritsLoose(B,e){B.prototype=Object.create(e.prototype);B.prototype.constructor=B;B.__proto__=e}var i=function(B){_inheritsLoose(Tag,B);function Tag(e){var r;r=B.call(this,e)||this;r.type=n.TAG;return r}return Tag}(t.default);e.default=i;B.exports=e.default},2519:function(B,e,r){"use strict";e.__esModule=true;e.default=void 0;var t=_interopRequireDefault(r(3583));var n=r(8019);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _inheritsLoose(B,e){B.prototype=Object.create(e.prototype);B.prototype.constructor=B;B.__proto__=e}var i=function(B){_inheritsLoose(Combinator,B);function Combinator(e){var r;r=B.call(this,e)||this;r.type=n.COMBINATOR;return r}return Combinator}(t.default);e.default=i;B.exports=e.default},2520:function(B){B.exports={A:{A:{1:"B",2:"I D F E A iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T qB U",2:"E B lB mB nB oB R VB"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{1:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"C O U",2:"A B R VB"},L:{1:"S"},M:{1:"M"},N:{1:"B",2:"A"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:5,C:"Window.devicePixelRatio"}},2543:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=r(2043);var n=_interopRequireDefault(r(5359));var i=_interopRequireDefault(r(2646));var C=_interopRequireDefault(r(9714));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function parseSelectors(B,e){return(0,C.default)(e).processSync(B)}function unique(B){B.selector=(0,n.default)((0,i.default)(B.selectors),{insensitive:true}).join()}var o=(0,t.plugin)("postcss-unique-selectors",()=>{return B=>B.walkRules(B=>{let e=[];B.selector=parseSelectors(B.selector,B=>{B.walk(B=>{if(B.type==="comment"){e.push(B.value);B.remove();return}else{return B}})});unique(B);B.selectors=B.selectors.concat(e)})});e.default=o;B.exports=e.default},2544:function(B,e,r){"use strict";e.__esModule=true;e.default=void 0;var t=_interopRequireDefault(r(7837));var n=_interopRequireDefault(r(7950));var i=_interopRequireDefault(r(9873));var C=_interopRequireDefault(r(8620));var o=_interopRequireDefault(r(9688));var a=_interopRequireDefault(r(6762));var s=_interopRequireDefault(r(5220));var u=_interopRequireDefault(r(8511));var f=_interopRequireDefault(r(2916));var l=_interopRequireDefault(r(3562));var c=_interopRequireWildcard(r(9430));var p=_interopRequireDefault(r(7383));var A=_interopRequireDefault(r(8915));var d=_interopRequireDefault(r(3035));var h=_interopRequireDefault(r(9877));var E=_interopRequireWildcard(r(1679));var D=_interopRequireWildcard(r(2017));var v=_interopRequireWildcard(r(699));var F=r(8273);var G,O;function _interopRequireWildcard(B){if(B&&B.__esModule){return B}else{var e={};if(B!=null){for(var r in B){if(Object.prototype.hasOwnProperty.call(B,r)){var t=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor(B,r):{};if(t.get||t.set){Object.defineProperty(e,r,t)}else{e[r]=B[r]}}}}e.default=B;return e}}function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _defineProperties(B,e){for(var r=0;r<e.length;r++){var t=e[r];t.enumerable=t.enumerable||false;t.configurable=true;if("value"in t)t.writable=true;Object.defineProperty(B,t.key,t)}}function _createClass(B,e,r){if(e)_defineProperties(B.prototype,e);if(r)_defineProperties(B,r);return B}var M=(G={},G[D.space]=true,G[D.cr]=true,G[D.feed]=true,G[D.newline]=true,G[D.tab]=true,G);var g=Object.assign({},M,(O={},O[D.comment]=true,O));function tokenStart(B){return{line:B[E.FIELDS.START_LINE],column:B[E.FIELDS.START_COL]}}function tokenEnd(B){return{line:B[E.FIELDS.END_LINE],column:B[E.FIELDS.END_COL]}}function getSource(B,e,r,t){return{start:{line:B,column:e},end:{line:r,column:t}}}function getTokenSource(B){return getSource(B[E.FIELDS.START_LINE],B[E.FIELDS.START_COL],B[E.FIELDS.END_LINE],B[E.FIELDS.END_COL])}function getTokenSourceSpan(B,e){if(!B){return undefined}return getSource(B[E.FIELDS.START_LINE],B[E.FIELDS.START_COL],e[E.FIELDS.END_LINE],e[E.FIELDS.END_COL])}function unescapeProp(B,e){var r=B[e];if(typeof r!=="string"){return}if(r.indexOf("\\")!==-1){(0,F.ensureObject)(B,"raws");B[e]=(0,F.unesc)(r);if(B.raws[e]===undefined){B.raws[e]=r}}return B}var I=function(){function Parser(B,e){if(e===void 0){e={}}this.rule=B;this.options=Object.assign({lossy:false,safe:false},e);this.position=0;this.css=typeof this.rule==="string"?this.rule:this.rule.selector;this.tokens=(0,E.default)({css:this.css,error:this._errorGenerator(),safe:this.options.safe});var r=getTokenSourceSpan(this.tokens[0],this.tokens[this.tokens.length-1]);this.root=new i.default({source:r});this.root.errorGenerator=this._errorGenerator();var t=new C.default({source:{start:{line:1,column:1}}});this.root.append(t);this.current=t;this.loop()}var B=Parser.prototype;B._errorGenerator=function _errorGenerator(){var B=this;return function(e,r){if(typeof B.rule==="string"){return new Error(e)}return B.rule.error(e,r)}};B.attribute=function attribute(){var B=[];var e=this.currToken;this.position++;while(this.position<this.tokens.length&&this.currToken[E.FIELDS.TYPE]!==D.closeSquare){B.push(this.currToken);this.position++}if(this.currToken[E.FIELDS.TYPE]!==D.closeSquare){return this.expected("closing square bracket",this.currToken[E.FIELDS.START_POS])}var r=B.length;var t={source:getSource(e[1],e[2],this.currToken[3],this.currToken[4]),sourceIndex:e[E.FIELDS.START_POS]};if(r===1&&!~[D.word].indexOf(B[0][E.FIELDS.TYPE])){return this.expected("attribute",B[0][E.FIELDS.START_POS])}var n=0;var i="";var C="";var o=null;var a=false;while(n<r){var s=B[n];var u=this.content(s);var f=B[n+1];switch(s[E.FIELDS.TYPE]){case D.space:a=true;if(this.options.lossy){break}if(o){(0,F.ensureObject)(t,"spaces",o);var l=t.spaces[o].after||"";t.spaces[o].after=l+u;var p=(0,F.getProp)(t,"raws","spaces",o,"after")||null;if(p){t.raws.spaces[o].after=p+u}}else{i=i+u;C=C+u}break;case D.asterisk:if(f[E.FIELDS.TYPE]===D.equals){t.operator=u;o="operator"}else if((!t.namespace||o==="namespace"&&!a)&&f){if(i){(0,F.ensureObject)(t,"spaces","attribute");t.spaces.attribute.before=i;i=""}if(C){(0,F.ensureObject)(t,"raws","spaces","attribute");t.raws.spaces.attribute.before=i;C=""}t.namespace=(t.namespace||"")+u;var A=(0,F.getProp)(t,"raws","namespace")||null;if(A){t.raws.namespace+=u}o="namespace"}a=false;break;case D.dollar:if(o==="value"){var d=(0,F.getProp)(t,"raws","value");t.value+="$";if(d){t.raws.value=d+"$"}break}case D.caret:if(f[E.FIELDS.TYPE]===D.equals){t.operator=u;o="operator"}a=false;break;case D.combinator:if(u==="~"&&f[E.FIELDS.TYPE]===D.equals){t.operator=u;o="operator"}if(u!=="|"){a=false;break}if(f[E.FIELDS.TYPE]===D.equals){t.operator=u;o="operator"}else if(!t.namespace&&!t.attribute){t.namespace=true}a=false;break;case D.word:if(f&&this.content(f)==="|"&&B[n+2]&&B[n+2][E.FIELDS.TYPE]!==D.equals&&!t.operator&&!t.namespace){t.namespace=u;o="namespace"}else if(!t.attribute||o==="attribute"&&!a){if(i){(0,F.ensureObject)(t,"spaces","attribute");t.spaces.attribute.before=i;i=""}if(C){(0,F.ensureObject)(t,"raws","spaces","attribute");t.raws.spaces.attribute.before=C;C=""}t.attribute=(t.attribute||"")+u;var h=(0,F.getProp)(t,"raws","attribute")||null;if(h){t.raws.attribute+=u}o="attribute"}else if(!t.value&&t.value!==""||o==="value"&&!a){var v=(0,F.unesc)(u);var G=(0,F.getProp)(t,"raws","value")||"";var O=t.value||"";t.value=O+v;t.quoteMark=null;if(v!==u||G){(0,F.ensureObject)(t,"raws");t.raws.value=(G||O)+u}o="value"}else{var M=u==="i"||u==="I";if((t.value||t.value==="")&&(t.quoteMark||a)){t.insensitive=M;if(!M||u==="I"){(0,F.ensureObject)(t,"raws");t.raws.insensitiveFlag=u}o="insensitive";if(i){(0,F.ensureObject)(t,"spaces","insensitive");t.spaces.insensitive.before=i;i=""}if(C){(0,F.ensureObject)(t,"raws","spaces","insensitive");t.raws.spaces.insensitive.before=C;C=""}}else if(t.value||t.value===""){o="value";t.value+=u;if(t.raws.value){t.raws.value+=u}}}a=false;break;case D.str:if(!t.attribute||!t.operator){return this.error("Expected an attribute followed by an operator preceding the string.",{index:s[E.FIELDS.START_POS]})}var g=(0,c.unescapeValue)(u),I=g.unescaped,H=g.quoteMark;t.value=I;t.quoteMark=H;o="value";(0,F.ensureObject)(t,"raws");t.raws.value=u;a=false;break;case D.equals:if(!t.attribute){return this.expected("attribute",s[E.FIELDS.START_POS],u)}if(t.value){return this.error('Unexpected "=" found; an operator was already defined.',{index:s[E.FIELDS.START_POS]})}t.operator=t.operator?t.operator+u:u;o="operator";a=false;break;case D.comment:if(o){if(a||f&&f[E.FIELDS.TYPE]===D.space||o==="insensitive"){var L=(0,F.getProp)(t,"spaces",o,"after")||"";var m=(0,F.getProp)(t,"raws","spaces",o,"after")||L;(0,F.ensureObject)(t,"raws","spaces",o);t.raws.spaces[o].after=m+u}else{var y=t[o]||"";var N=(0,F.getProp)(t,"raws",o)||y;(0,F.ensureObject)(t,"raws");t.raws[o]=N+u}}else{C=C+u}break;default:return this.error('Unexpected "'+u+'" found.',{index:s[E.FIELDS.START_POS]})}n++}unescapeProp(t,"attribute");unescapeProp(t,"namespace");this.newNode(new c.default(t));this.position++};B.parseWhitespaceEquivalentTokens=function parseWhitespaceEquivalentTokens(B){if(B<0){B=this.tokens.length}var e=this.position;var r=[];var t="";var n=undefined;do{if(M[this.currToken[E.FIELDS.TYPE]]){if(!this.options.lossy){t+=this.content()}}else if(this.currToken[E.FIELDS.TYPE]===D.comment){var i={};if(t){i.before=t;t=""}n=new a.default({value:this.content(),source:getTokenSource(this.currToken),sourceIndex:this.currToken[E.FIELDS.START_POS],spaces:i});r.push(n)}}while(++this.position<B);if(t){if(n){n.spaces.after=t}else if(!this.options.lossy){var C=this.tokens[e];var o=this.tokens[this.position-1];r.push(new f.default({value:"",source:getSource(C[E.FIELDS.START_LINE],C[E.FIELDS.START_COL],o[E.FIELDS.END_LINE],o[E.FIELDS.END_COL]),sourceIndex:C[E.FIELDS.START_POS],spaces:{before:t,after:""}}))}}return r};B.convertWhitespaceNodesToSpace=function convertWhitespaceNodesToSpace(B,e){var r=this;if(e===void 0){e=false}var t="";var n="";B.forEach(function(B){var i=r.lossySpace(B.spaces.before,e);var C=r.lossySpace(B.rawSpaceBefore,e);t+=i+r.lossySpace(B.spaces.after,e&&i.length===0);n+=i+B.value+r.lossySpace(B.rawSpaceAfter,e&&C.length===0)});if(n===t){n=undefined}var i={space:t,rawSpace:n};return i};B.isNamedCombinator=function isNamedCombinator(B){if(B===void 0){B=this.position}return this.tokens[B+0]&&this.tokens[B+0][E.FIELDS.TYPE]===D.slash&&this.tokens[B+1]&&this.tokens[B+1][E.FIELDS.TYPE]===D.word&&this.tokens[B+2]&&this.tokens[B+2][E.FIELDS.TYPE]===D.slash};B.namedCombinator=function namedCombinator(){if(this.isNamedCombinator()){var B=this.content(this.tokens[this.position+1]);var e=(0,F.unesc)(B).toLowerCase();var r={};if(e!==B){r.value="/"+B+"/"}var t=new A.default({value:"/"+e+"/",source:getSource(this.currToken[E.FIELDS.START_LINE],this.currToken[E.FIELDS.START_COL],this.tokens[this.position+2][E.FIELDS.END_LINE],this.tokens[this.position+2][E.FIELDS.END_COL]),sourceIndex:this.currToken[E.FIELDS.START_POS],raws:r});this.position=this.position+3;return t}else{this.unexpected()}};B.combinator=function combinator(){var B=this;if(this.content()==="|"){return this.namespace()}var e=this.locateNextMeaningfulToken(this.position);if(e<0||this.tokens[e][E.FIELDS.TYPE]===D.comma){var r=this.parseWhitespaceEquivalentTokens(e);if(r.length>0){var t=this.current.last;if(t){var n=this.convertWhitespaceNodesToSpace(r),i=n.space,C=n.rawSpace;if(C!==undefined){t.rawSpaceAfter+=C}t.spaces.after+=i}else{r.forEach(function(e){return B.newNode(e)})}}return}var o=this.currToken;var a=undefined;if(e>this.position){a=this.parseWhitespaceEquivalentTokens(e)}var s;if(this.isNamedCombinator()){s=this.namedCombinator()}else if(this.currToken[E.FIELDS.TYPE]===D.combinator){s=new A.default({value:this.content(),source:getTokenSource(this.currToken),sourceIndex:this.currToken[E.FIELDS.START_POS]});this.position++}else if(M[this.currToken[E.FIELDS.TYPE]]){}else if(!a){this.unexpected()}if(s){if(a){var u=this.convertWhitespaceNodesToSpace(a),f=u.space,l=u.rawSpace;s.spaces.before=f;s.rawSpaceBefore=l}}else{var c=this.convertWhitespaceNodesToSpace(a,true),p=c.space,d=c.rawSpace;if(!d){d=p}var h={};var v={spaces:{}};if(p.endsWith(" ")&&d.endsWith(" ")){h.before=p.slice(0,p.length-1);v.spaces.before=d.slice(0,d.length-1)}else if(p.startsWith(" ")&&d.startsWith(" ")){h.after=p.slice(1);v.spaces.after=d.slice(1)}else{v.value=d}s=new A.default({value:" ",source:getTokenSourceSpan(o,this.tokens[this.position-1]),sourceIndex:o[E.FIELDS.START_POS],spaces:h,raws:v})}if(this.currToken&&this.currToken[E.FIELDS.TYPE]===D.space){s.spaces.after=this.optionalSpace(this.content());this.position++}return this.newNode(s)};B.comma=function comma(){if(this.position===this.tokens.length-1){this.root.trailingComma=true;this.position++;return}this.current._inferEndPosition();var B=new C.default({source:{start:tokenStart(this.tokens[this.position+1])}});this.current.parent.append(B);this.current=B;this.position++};B.comment=function comment(){var B=this.currToken;this.newNode(new a.default({value:this.content(),source:getTokenSource(B),sourceIndex:B[E.FIELDS.START_POS]}));this.position++};B.error=function error(B,e){throw this.root.error(B,e)};B.missingBackslash=function missingBackslash(){return this.error("Expected a backslash preceding the semicolon.",{index:this.currToken[E.FIELDS.START_POS]})};B.missingParenthesis=function missingParenthesis(){return this.expected("opening parenthesis",this.currToken[E.FIELDS.START_POS])};B.missingSquareBracket=function missingSquareBracket(){return this.expected("opening square bracket",this.currToken[E.FIELDS.START_POS])};B.unexpected=function unexpected(){return this.error("Unexpected '"+this.content()+"'. Escaping special characters with \\ may help.",this.currToken[E.FIELDS.START_POS])};B.namespace=function namespace(){var B=this.prevToken&&this.content(this.prevToken)||true;if(this.nextToken[E.FIELDS.TYPE]===D.word){this.position++;return this.word(B)}else if(this.nextToken[E.FIELDS.TYPE]===D.asterisk){this.position++;return this.universal(B)}};B.nesting=function nesting(){if(this.nextToken){var B=this.content(this.nextToken);if(B==="|"){this.position++;return}}var e=this.currToken;this.newNode(new d.default({value:this.content(),source:getTokenSource(e),sourceIndex:e[E.FIELDS.START_POS]}));this.position++};B.parentheses=function parentheses(){var B=this.current.last;var e=1;this.position++;if(B&&B.type===v.PSEUDO){var r=new C.default({source:{start:tokenStart(this.tokens[this.position-1])}});var t=this.current;B.append(r);this.current=r;while(this.position<this.tokens.length&&e){if(this.currToken[E.FIELDS.TYPE]===D.openParenthesis){e++}if(this.currToken[E.FIELDS.TYPE]===D.closeParenthesis){e--}if(e){this.parse()}else{this.current.source.end=tokenEnd(this.currToken);this.current.parent.source.end=tokenEnd(this.currToken);this.position++}}this.current=t}else{var n=this.currToken;var i="(";var o;while(this.position<this.tokens.length&&e){if(this.currToken[E.FIELDS.TYPE]===D.openParenthesis){e++}if(this.currToken[E.FIELDS.TYPE]===D.closeParenthesis){e--}o=this.currToken;i+=this.parseParenthesisToken(this.currToken);this.position++}if(B){B.appendToPropertyAndEscape("value",i,i)}else{this.newNode(new f.default({value:i,source:getSource(n[E.FIELDS.START_LINE],n[E.FIELDS.START_COL],o[E.FIELDS.END_LINE],o[E.FIELDS.END_COL]),sourceIndex:n[E.FIELDS.START_POS]}))}}if(e){return this.expected("closing parenthesis",this.currToken[E.FIELDS.START_POS])}};B.pseudo=function pseudo(){var B=this;var e="";var r=this.currToken;while(this.currToken&&this.currToken[E.FIELDS.TYPE]===D.colon){e+=this.content();this.position++}if(!this.currToken){return this.expected(["pseudo-class","pseudo-element"],this.position-1)}if(this.currToken[E.FIELDS.TYPE]===D.word){this.splitWord(false,function(t,n){e+=t;B.newNode(new l.default({value:e,source:getTokenSourceSpan(r,B.currToken),sourceIndex:r[E.FIELDS.START_POS]}));if(n>1&&B.nextToken&&B.nextToken[E.FIELDS.TYPE]===D.openParenthesis){B.error("Misplaced parenthesis.",{index:B.nextToken[E.FIELDS.START_POS]})}})}else{return this.expected(["pseudo-class","pseudo-element"],this.currToken[E.FIELDS.START_POS])}};B.space=function space(){var B=this.content();if(this.position===0||this.prevToken[E.FIELDS.TYPE]===D.comma||this.prevToken[E.FIELDS.TYPE]===D.openParenthesis){this.spaces=this.optionalSpace(B);this.position++}else if(this.position===this.tokens.length-1||this.nextToken[E.FIELDS.TYPE]===D.comma||this.nextToken[E.FIELDS.TYPE]===D.closeParenthesis){this.current.last.spaces.after=this.optionalSpace(B);this.position++}else{this.combinator()}};B.string=function string(){var B=this.currToken;this.newNode(new f.default({value:this.content(),source:getTokenSource(B),sourceIndex:B[E.FIELDS.START_POS]}));this.position++};B.universal=function universal(B){var e=this.nextToken;if(e&&this.content(e)==="|"){this.position++;return this.namespace()}var r=this.currToken;this.newNode(new p.default({value:this.content(),source:getTokenSource(r),sourceIndex:r[E.FIELDS.START_POS]}),B);this.position++};B.splitWord=function splitWord(B,e){var r=this;var i=this.nextToken;var C=this.content();while(i&&~[D.dollar,D.caret,D.equals,D.word].indexOf(i[E.FIELDS.TYPE])){this.position++;var a=this.content();C+=a;if(a.lastIndexOf("\\")===a.length-1){var f=this.nextToken;if(f&&f[E.FIELDS.TYPE]===D.space){C+=this.requiredSpace(this.content(f));this.position++}}i=this.nextToken}var l=(0,t.default)(C,".").filter(function(B){return C[B-1]!=="\\"});var c=(0,t.default)(C,"#").filter(function(B){return C[B-1]!=="\\"});var p=(0,t.default)(C,"#{");if(p.length){c=c.filter(function(B){return!~p.indexOf(B)})}var A=(0,h.default)((0,n.default)([0].concat(l,c)));A.forEach(function(t,n){var i=A[n+1]||C.length;var a=C.slice(t,i);if(n===0&&e){return e.call(r,a,A.length)}var f;var p=r.currToken;var d=p[E.FIELDS.START_POS]+A[n];var h=getSource(p[1],p[2]+t,p[3],p[2]+(i-1));if(~l.indexOf(t)){var D={value:a.slice(1),source:h,sourceIndex:d};f=new o.default(unescapeProp(D,"value"))}else if(~c.indexOf(t)){var v={value:a.slice(1),source:h,sourceIndex:d};f=new s.default(unescapeProp(v,"value"))}else{var F={value:a,source:h,sourceIndex:d};unescapeProp(F,"value");f=new u.default(F)}r.newNode(f,B);B=null});this.position++};B.word=function word(B){var e=this.nextToken;if(e&&this.content(e)==="|"){this.position++;return this.namespace()}return this.splitWord(B)};B.loop=function loop(){while(this.position<this.tokens.length){this.parse(true)}this.current._inferEndPosition();return this.root};B.parse=function parse(B){switch(this.currToken[E.FIELDS.TYPE]){case D.space:this.space();break;case D.comment:this.comment();break;case D.openParenthesis:this.parentheses();break;case D.closeParenthesis:if(B){this.missingParenthesis()}break;case D.openSquare:this.attribute();break;case D.dollar:case D.caret:case D.equals:case D.word:this.word();break;case D.colon:this.pseudo();break;case D.comma:this.comma();break;case D.asterisk:this.universal();break;case D.ampersand:this.nesting();break;case D.slash:case D.combinator:this.combinator();break;case D.str:this.string();break;case D.closeSquare:this.missingSquareBracket();case D.semicolon:this.missingBackslash();default:this.unexpected()}};B.expected=function expected(B,e,r){if(Array.isArray(B)){var t=B.pop();B=B.join(", ")+" or "+t}var n=/^[aeiou]/.test(B[0])?"an":"a";if(!r){return this.error("Expected "+n+" "+B+".",{index:e})}return this.error("Expected "+n+" "+B+', found "'+r+'" instead.',{index:e})};B.requiredSpace=function requiredSpace(B){return this.options.lossy?" ":B};B.optionalSpace=function optionalSpace(B){return this.options.lossy?"":B};B.lossySpace=function lossySpace(B,e){if(this.options.lossy){return e?" ":""}else{return B}};B.parseParenthesisToken=function parseParenthesisToken(B){var e=this.content(B);if(B[E.FIELDS.TYPE]===D.space){return this.requiredSpace(e)}else{return e}};B.newNode=function newNode(B,e){if(e){if(/^ +$/.test(e)){if(!this.options.lossy){this.spaces=(this.spaces||"")+e}e=true}B.namespace=e;unescapeProp(B,"namespace")}if(this.spaces){B.spaces.before=this.spaces;this.spaces=""}return this.current.append(B)};B.content=function content(B){if(B===void 0){B=this.currToken}return this.css.slice(B[E.FIELDS.START_POS],B[E.FIELDS.END_POS])};B.locateNextMeaningfulToken=function locateNextMeaningfulToken(B){if(B===void 0){B=this.position+1}var e=B;while(e<this.tokens.length){if(g[this.tokens[e][E.FIELDS.TYPE]]){e++;continue}else{return e}}return-1};_createClass(Parser,[{key:"currToken",get:function get(){return this.tokens[this.position]}},{key:"nextToken",get:function get(){return this.tokens[this.position+1]}},{key:"prevToken",get:function get(){return this.tokens[this.position-1]}}]);return Parser}();e.default=I;B.exports=e.default},2550:function(B){B.exports={A:{A:{1:"B",2:"I D F E A iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H cB dB eB fB XB R U jB kB",2:"0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T R VB qB U",2:"E lB mB nB oB",16:"B"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{1:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"O",16:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"B",2:"A"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"console.time and console.timeEnd"}},2559:function(B){B.exports={A:{A:{1:"A B",2:"I D F E iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB",2:"sB"},D:{1:"0 1 2 3 4 5 6 7 8 9 F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G",4:"W I D"},E:{1:"I D F E A B C N H dB eB fB XB R U jB kB",2:"G W 0B YB cB"},F:{1:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"F uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB"},H:{1:"AC"},I:{1:"Q FC GC",2:"KB G BC CC DC EC IB"},J:{1:"A",2:"D"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:2,C:"SVG filters"}},2567:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L",132:"y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB pB hB",322:"TB UB y BB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB",66:"HB DB V M T MB NB OB PB QB RB SB TB UB",132:"y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z lB mB nB oB R VB qB U",66:"4 5 6 7 8 9 AB CB EB FB GB HB",132:"DB V M T"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{132:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC",132:"OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:5,C:"WebXR Device API"}},2597:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L",33:"y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"G W I D F E A B C N H P J",33:"0 1 2 3 4 5 6 7 8 9 K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"A B C N H XB R U jB kB",2:"G W 0B YB",33:"I D F E cB dB eB fB"},F:{2:"E B C lB mB nB oB R VB qB U",33:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{1:"zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB",33:"F tB uB vB wB xB yB"},H:{2:"AC"},I:{2:"KB G BC CC DC EC IB",33:"Q FC GC"},J:{2:"D A"},K:{2:"A B C R VB U",33:"O"},L:{33:"S"},M:{2:"M"},N:{2:"A B"},O:{33:"HC"},P:{33:"G IC JC KC LC MC XB NC OC"},Q:{33:"PC"},R:{33:"QC"},S:{2:"RC"}},B:4,C:"CSS Cross-Fade Function"}},2603:function(B){B.exports={A:{A:{1:"A B",2:"I D F E iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c"},E:{1:"B C N H R U jB kB",2:"G W I D F E A 0B YB cB dB eB fB XB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U"},G:{1:"1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB"},H:{2:"AC"},I:{1:"Q FC GC",2:"KB G BC CC DC EC IB"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:2,C:"User Timing API"}},2606:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t",194:"u v w x O z"},E:{1:"B C N H XB R U jB kB",2:"G W I D F E A 0B YB cB dB eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g lB mB nB oB R VB qB U",194:"h i j k l m"},G:{1:"ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C R VB U",194:"O"},L:{194:"S"},M:{1:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G",194:"IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{194:"QC"},S:{1:"RC"}},B:5,C:"KeyboardEvent.code"}},2612:function(B,e){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=getMatchFactory;function getMatchFactory(B){return function getMatch(e){const r=e.reduce((B,e,r)=>{return B.filter(B=>B[1][r]===e)},B);if(r.length){return r[0][0]}return false}}B.exports=e.default},2629:function(B){B.exports={A:{A:{2:"I D F iB",8:"E",292:"A B"},B:{1:"J K L y BB Q WB S",292:"C N H P"},C:{1:"6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L pB hB",8:"X Y Z a b c d e f g h i j k l m n o p q r",584:"0 1 2 3 s t u v w x O z",1025:"4 5"},D:{1:"AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c",8:"d e f g",200:"0 1 2 3 4 5 6 7 8 h i j k l m n o p q r s t u v w x O z",1025:"9"},E:{1:"B C N H XB R U jB kB",2:"G W 0B YB cB",8:"I D F E A dB eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f lB mB nB oB R VB qB U",200:"g h i j k l m n o p q r s t u v"},G:{1:"ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB",8:"F uB vB wB xB yB zB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC",8:"IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{292:"A B"},O:{1:"HC"},P:{1:"JC KC LC MC XB NC OC",2:"IC",8:"G"},Q:{1:"PC"},R:{2:"QC"},S:{1:"RC"}},B:4,C:"CSS Grid Layout (level 1)"}},2644:function(B,e,r){"use strict";e.__esModule=true;e.default=void 0;var t=_interopRequireDefault(r(9925));var n=r(7744);var i=_interopRequireDefault(r(3583));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _defineProperties(B,e){for(var r=0;r<e.length;r++){var t=e[r];t.enumerable=t.enumerable||false;t.configurable=true;if("value"in t)t.writable=true;Object.defineProperty(B,t.key,t)}}function _createClass(B,e,r){if(e)_defineProperties(B.prototype,e);if(r)_defineProperties(B,r);return B}function _inheritsLoose(B,e){B.prototype=Object.create(e.prototype);B.prototype.constructor=B;B.__proto__=e}var C=function(B){_inheritsLoose(Namespace,B);function Namespace(){return B.apply(this,arguments)||this}var e=Namespace.prototype;e.qualifiedName=function qualifiedName(B){if(this.namespace){return this.namespaceString+"|"+B}else{return B}};e.toString=function toString(){return[this.rawSpaceBefore,this.qualifiedName(this.stringifyProperty("value")),this.rawSpaceAfter].join("")};_createClass(Namespace,[{key:"namespace",get:function get(){return this._namespace},set:function set(B){if(B===true||B==="*"||B==="&"){this._namespace=B;if(this.raws){delete this.raws.namespace}return}var e=(0,t.default)(B,{isIdentifier:true});this._namespace=B;if(e!==B){(0,n.ensureObject)(this,"raws");this.raws.namespace=e}else if(this.raws){delete this.raws.namespace}}},{key:"ns",get:function get(){return this._namespace},set:function set(B){this.namespace=B}},{key:"namespaceString",get:function get(){if(this.namespace){var B=this.stringifyProperty("namespace");if(B===true){return""}else{return B}}else{return""}}}]);return Namespace}(i.default);e.default=C;B.exports=e.default},2646:function(B){B.exports=function uniqs(){var B=Array.prototype.concat.apply([],arguments);return B.filter(function(e,r){return r==B.indexOf(e)})}},2682:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(2998));var n=_interopRequireDefault(r(2806));var i=_interopRequireDefault(r(9896));var C=_interopRequireDefault(r(8791));var o=r(1106);var a=r(2453);var s=r(9920);var u=r(5435);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function analyse(B,e){return r=>{r.each(r=>{if((0,n.default)(r,0,u.HTML)&&((0,n.default)(r,1,">")||(0,n.default)(r,1,"~"))&&r.at(2)&&r.at(2).type==="comment"&&(0,n.default)(r,3," ")&&(0,n.default)(r,4,u.BODY)&&(0,n.default)(r,5," ")&&r.at(6)){B.push(e,{identifier:a.SELECTOR,hack:r.toString()})}})}}var f=(0,C.default)([o.IE_5_5,o.IE_6,o.IE_7],[s.RULE],function(B){if((0,i.default)(B)){return}if(B.raws.selector&&B.raws.selector.raw){(0,t.default)(analyse(this,B)).processSync(B.raws.selector.raw)}});e.default=f;B.exports=e.default},2690:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"W I cB",2:"G D F E A B C N H 0B YB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T oB R VB qB U",2:"E lB mB nB"},G:{1:"tB uB",2:"F YB rB IB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"B C R VB U",2:"O",16:"A"},L:{2:"S"},M:{1:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"G",2:"IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{1:"RC"}},B:1,C:"Shared Web Workers"}},2727:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",16:"G W I D F E A B C N H P J K L X Y Z a b c d"},E:{1:"I D F E A B C N H cB dB eB fB XB R U jB kB",2:"G 0B YB",16:"W"},F:{1:"0 1 2 3 4 5 6 7 8 9 C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T qB U",16:"E B lB mB nB oB R VB"},G:{1:"F vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB rB IB tB uB"},H:{16:"AC"},I:{1:"G Q EC IB FC GC",16:"KB BC CC DC"},J:{16:"D A"},K:{16:"A B C O R VB U"},L:{1:"S"},M:{2:"M"},N:{16:"A B"},O:{16:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{2:"RC"}},B:5,C:"DOMFocusIn & DOMFocusOut events"}},2768:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=_default;var t=r(6486);var n=_interopRequireDefault(r(542));var i=_interopRequireDefault(r(8322));var C=_interopRequireDefault(r(6707));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _default(B,e){let r,o,a,s,u;let f=false;for(r=0,o=B.length;r<o;r+=1){a=B[r];if(a.type==="word"){if(f){continue}const B=a.value.toLowerCase();if(B==="normal"||B==="inherit"||B==="initial"||B==="unset"){s=r}else if(~n.default.style.indexOf(B)||(0,t.unit)(B)){s=r}else if(~n.default.variant.indexOf(B)){s=r}else if(~n.default.weight.indexOf(B)){a.value=(0,C.default)(B);s=r}else if(~n.default.stretch.indexOf(B)){s=r}else if(~n.default.size.indexOf(B)||(0,t.unit)(B)){s=r;f=true}}else if(a.type==="function"&&B[r+1]&&B[r+1].type==="space"){s=r}else if(a.type==="div"&&a.value==="/"){s=r+1;break}}s+=2;u=(0,i.default)(B.slice(s),e);return B.slice(0,s).concat(u)}B.exports=e.default},2786:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=listStyleNormalizer;var t=_interopRequireDefault(r(6486));var n=_interopRequireDefault(r(8501));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}const i=n.default["list-style-type"];const C=["inside","outside"];function listStyleNormalizer(B){const e={type:"",position:"",image:""};B.walk(B=>{if(B.type==="word"){if(i.includes(B.value)){e.type=`${e.type} ${B.value}`}else if(C.includes(B.value)){e.position=`${e.position} ${B.value}`}else if(B.value==="none"){if(e.type.split(" ").filter(B=>B!==""&&B!==" ").includes("none")){e.image=`${e.image} ${B.value}`}else{e.type=`${e.type} ${B.value}`}}else{e.type=`${e.type} ${B.value}`}}if(B.type==="function"){e.image=`${e.image} ${t.default.stringify(B)}`}});return`${e.type.trim()} ${e.position.trim()} ${e.image.trim()}`.trim()}B.exports=e.default},2790:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u pB hB",260:"0 1 2 3 4 5 6 7 8 9 v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{1:"EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",324:"3 4 5 6 7 8 9 AB LB CB JB"},E:{2:"G W I D F E A 0B YB cB dB eB fB XB",132:"B C N H R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n lB mB nB oB R VB qB U",324:"o p q r s t u v w x O z"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{260:"M"},N:{2:"A B"},O:{132:"HC"},P:{1:"LC MC XB NC OC",2:"G",132:"IC JC KC"},Q:{1:"PC"},R:{2:"QC"},S:{260:"RC"}},B:5,C:"Media Capture from DOM Elements API"}},2806:function(B,e){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=exists;function exists(B,e,r){const t=B.at(e);return t&&t.value&&t.value.toLowerCase()===r}B.exports=e.default},2818:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(2043));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}const n=["keyframes","counter-style"];const i=["media","supports"];function isOverridable(B){return~n.indexOf(t.default.vendor.unprefixed(B.toLowerCase()))}function isScope(B){return~i.indexOf(t.default.vendor.unprefixed(B.toLowerCase()))}function getScope(B){let e=B.parent;const r=[B.name.toLowerCase(),B.params];do{if(e.type==="atrule"&&isScope(e.name)){r.unshift(e.name+" "+e.params)}e=e.parent}while(e);return r.join("|")}var C=t.default.plugin("postcss-discard-overridden",()=>{return B=>{const e={};const r=[];B.walkAtRules(B=>{if(isOverridable(B.name)){const t=getScope(B);e[t]=B;r.push({node:B,scope:t})}});r.forEach(B=>{if(e[B.scope]!==B.node){B.node.remove()}})}});e.default=C;B.exports=e.default},2822:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n pB hB"},D:{1:"JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB"},E:{2:"G W I D F E 0B YB cB dB eB fB",132:"A B C N H XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB",132:"zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"LC MC XB NC OC",2:"G IC JC KC"},Q:{1:"PC"},R:{2:"QC"},S:{1:"RC"}},B:5,C:"Scroll methods on elements (scroll, scrollTo, scrollBy)"}},2831:function(B){B.exports={A:{A:{8:"I D F E A B iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",4:"f g",8:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",4:"k",8:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j"},E:{1:"F E A B C N H eB fB XB R U jB kB",8:"G W I D 0B YB cB dB"},F:{1:"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",4:"X",8:"E B C P J K L lB mB nB oB R VB qB U"},G:{1:"F wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",8:"YB rB IB tB uB vB"},H:{8:"AC"},I:{1:"Q GC",8:"KB G BC CC DC EC IB FC"},J:{8:"D A"},K:{1:"O",8:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{8:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:6,C:"Promises"}},2845:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB",2:"sB KB"},D:{1:"0 1 2 3 4 5 6 7 8 9 F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D"},E:{1:"G W I D F E A B C N H cB dB eB fB XB R U jB kB",2:"0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T nB oB R VB qB U",2:"E lB mB"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"KB G Q DC EC IB FC GC",16:"BC CC"},J:{1:"D A"},K:{1:"B C O R VB U",16:"A"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:6,C:"Wav audio format"}},2874:function(B){B.exports={A:{A:{1:"A B",132:"I D F E iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB",257:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D"},E:{1:"W I D F E A B C N H cB dB eB fB XB R U jB kB",2:"G 0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U"},G:{1:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB"},H:{2:"AC"},I:{1:"KB G Q EC IB FC GC",2:"BC CC DC"},J:{1:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"defer attribute for external scripts"}},2876:function(B){B.exports={A:{A:{2:"I D F iB",520:"E A B"},B:{1:"y BB Q WB S",8:"C N",388:"H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB hB",132:"G W I D F E A B C N H P J K L X Y Z a b c d e f"},D:{1:"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W",132:"I D F E A B C N H P J K L X Y Z a b c"},E:{2:"0B",8:"G W YB cB",520:"I D F E A B C dB eB fB XB R",1028:"N U jB",2052:"H kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E lB mB nB",132:"B C P oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B",1028:"4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"BC CC",132:"KB G DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C R VB U",132:"O"},L:{1:"S"},M:{1:"M"},N:{8:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",132:"G"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:6,C:"WebM video format"}},2880:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB",132:"NB OB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"GB HB DB V M T",2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{2:"M"},N:{2:"A B"},O:{16:"HC"},P:{2:"G IC JC KC LC MC XB",16:"NC OC"},Q:{16:"PC"},R:{16:"QC"},S:{2:"RC"}},B:6,C:"Signed HTTP Exchanges (SXG)"}},2896:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 1 2 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB",132:"CB JB EB",450:"3 4 5 6 7 8 9 AB LB"},D:{1:"MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",706:"6 7 8 9 AB LB CB JB EB FB GB HB DB V M T"},E:{1:"H kB",2:"G W I D F E A B C 0B YB cB dB eB fB XB R",1028:"N U jB"},F:{1:"9 AB CB EB FB GB HB DB V M T",2:"0 1 2 3 4 5 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z lB mB nB oB R VB qB U",706:"6 7 8"},G:{1:"4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"XB NC OC",2:"G IC JC KC LC MC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:6,C:"TLS 1.3"}},2902:function(B){"use strict";B.exports=function hexColorRegex(B){B=B&&typeof B==="object"?B:{};return B.strict?/^#([a-f0-9]{3,4}|[a-f0-9]{4}(?:[a-f0-9]{2}){1,2})\b$/i:/#([a-f0-9]{3}|[a-f0-9]{4}(?:[a-f0-9]{2}){0,2})\b/gi}},2916:function(B,e,r){"use strict";e.__esModule=true;e.default=void 0;var t=_interopRequireDefault(r(8092));var n=r(699);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _inheritsLoose(B,e){B.prototype=Object.create(e.prototype);B.prototype.constructor=B;B.__proto__=e}var i=function(B){_inheritsLoose(String,B);function String(e){var r;r=B.call(this,e)||this;r.type=n.STRING;return r}return String}(t.default);e.default=i;B.exports=e.default},2933:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"L y BB Q WB S",2:"C N H P J",132:"K"},C:{1:"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h pB hB"},D:{1:"HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",132:"2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB"},E:{1:"E A B C N H fB XB R U jB kB",2:"G W I D F 0B YB cB dB eB"},F:{1:"4 5 6 7 8 9 AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o lB mB nB oB R VB qB U",132:"0 1 2 3 p q r s t u v w x O z"},G:{1:"xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{132:"HC"},P:{1:"MC XB NC OC",2:"G",132:"IC JC KC LC"},Q:{1:"PC"},R:{2:"QC"},S:{1:"RC"}},B:1,C:"relList (DOMTokenList)"}},2939:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(9854));var n=_interopRequireDefault(r(2043));var i=_interopRequireWildcard(r(6486));var C=_interopRequireDefault(r(1218));function _getRequireWildcardCache(){if(typeof WeakMap!=="function")return null;var B=new WeakMap;_getRequireWildcardCache=function(){return B};return B}function _interopRequireWildcard(B){if(B&&B.__esModule){return B}if(B===null||typeof B!=="object"&&typeof B!=="function"){return{default:B}}var e=_getRequireWildcardCache();if(e&&e.has(B)){return e.get(B)}var r={};var t=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var n in B){if(Object.prototype.hasOwnProperty.call(B,n)){var i=t?Object.getOwnPropertyDescriptor(B,n):null;if(i&&(i.get||i.set)){Object.defineProperty(r,n,i)}else{r[n]=B[n]}}}r.default=B;if(e){e.set(B,r)}return r}function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function walk(B,e){B.nodes.forEach((r,t)=>{const n=e(r,t,B);if(r.nodes&&n!==false){walk(r,e)}})}function hasTransparentBug(B){return~["ie 8","ie 9"].indexOf(B)}function isMathFunctionNode(B){if(B.type!=="function"){return false}return["calc","min","max","clamp"].includes(B.value.toLowerCase())}function transform(B,e,r){const t=(0,i.default)(B);walk(t,(B,t,n)=>{if(B.type==="function"){if(/^(rgb|hsl)a?$/i.test(B.value)){const{value:o}=B;B.value=(0,C.default)((0,i.stringify)(B),e,r);B.type="word";const a=n.nodes[t+1];if(B.value!==o&&a&&(a.type==="word"||a.type==="function")){n.nodes.splice(t+1,0,{type:"space",value:" "})}}else if(isMathFunctionNode(B)){return false}}else if(B.type==="word"){B.value=(0,C.default)(B.value,e,r)}});return t.toString()}var o=n.default.plugin("postcss-colormin",()=>{return(B,e)=>{const r=e.opts||{};const n=(0,t.default)(null,{stats:r.stats,path:__dirname,env:r.env});const i=n.some(hasTransparentBug);const C={};const o={};B.walkDecls(B=>{if(/^(composes|font|filter|-webkit-tap-highlight-color)/i.test(B.prop)){return}const e=B.value;if(!e){return}const r=`${B.prop}|${B.value}`;if(o[r]){B.value=o[r];return}const t=transform(e,i,C);B.value=t;o[r]=t})}});e.default=o;B.exports=e.default},2953:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB pB hB",578:"RB SB TB UB y BB"},D:{1:"T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB",194:"LB CB JB EB FB GB HB DB V M"},E:{1:"N H U jB kB",2:"G W I D F E A B C 0B YB cB dB eB fB XB R"},F:{1:"GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x lB mB nB oB R VB qB U",194:"0 1 2 3 4 5 6 7 8 9 O z AB CB EB FB"},G:{1:"4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"XB NC OC",2:"G IC JC KC LC MC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:5,C:"CSS Conical Gradients"}},2955:function(B,e,r){"use strict";e.__esModule=true;var t=r(5812);var n=_interopRequireDefault(t);var i=r(5544);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _classCallCheck(B,e){if(!(B instanceof e)){throw new TypeError("Cannot call a class as a function")}}function _possibleConstructorReturn(B,e){if(!B){throw new ReferenceError("this hasn't been initialised - super() hasn't been called")}return e&&(typeof e==="object"||typeof e==="function")?e:B}function _inherits(B,e){if(typeof e!=="function"&&e!==null){throw new TypeError("Super expression must either be null or a function, not "+typeof e)}B.prototype=Object.create(e&&e.prototype,{constructor:{value:B,enumerable:false,writable:true,configurable:true}});if(e)Object.setPrototypeOf?Object.setPrototypeOf(B,e):B.__proto__=e}var C=function(B){_inherits(Comment,B);function Comment(e){_classCallCheck(this,Comment);var r=_possibleConstructorReturn(this,B.call(this,e));r.type=i.COMMENT;return r}return Comment}(n.default);e.default=C;B.exports=e["default"]},2957:function(B){B.exports={A:{A:{1:"F E A B",2:"I D iB"},B:{2:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"E B C lB mB nB oB R VB qB U",16:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{16:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{16:"D A"},K:{16:"A B C O R VB U"},L:{16:"S"},M:{16:"M"},N:{16:"A B"},O:{16:"HC"},P:{16:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{16:"QC"},S:{1:"RC"}},B:1,C:"Alternate stylesheet"}},2986:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A 0B YB cB dB eB fB XB",130:"B C N H R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB",130:"1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:6,C:"HEIF/ISO Base Media File Format"}},2998:function(B,e,r){"use strict";e.__esModule=true;var t=r(3817);var n=_interopRequireDefault(t);var i=r(1566);var C=_interopRequireWildcard(i);function _interopRequireWildcard(B){if(B&&B.__esModule){return B}else{var e={};if(B!=null){for(var r in B){if(Object.prototype.hasOwnProperty.call(B,r))e[r]=B[r]}}e.default=B;return e}}function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}var o=function parser(B){return new n.default(B)};Object.assign(o,C);delete o.__esModule;e.default=o;B.exports=e["default"]},3035:function(B,e,r){"use strict";e.__esModule=true;e.default=void 0;var t=_interopRequireDefault(r(8092));var n=r(699);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _inheritsLoose(B,e){B.prototype=Object.create(e.prototype);B.prototype.constructor=B;B.__proto__=e}var i=function(B){_inheritsLoose(Nesting,B);function Nesting(e){var r;r=B.call(this,e)||this;r.type=n.NESTING;r.value="&";return r}return Nesting}(t.default);e.default=i;B.exports=e.default},3049:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"P J K L y BB Q WB S",2:"C N H"},C:{1:"0 1 2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB"},D:{1:"9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},E:{1:"A B C N H XB R U jB kB",2:"G W I D F E 0B YB cB dB eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v lB mB nB oB R VB qB U"},G:{1:"zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"KC LC MC XB NC OC",2:"G IC JC"},Q:{1:"PC"},R:{2:"QC"},S:{1:"RC"}},B:6,C:"String.prototype.padStart(), String.prototype.padEnd()"}},3050:function(B){B.exports={A:{A:{1:"A B",2:"I D F iB",132:"E"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"1 2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j"},E:{1:"D F E A B C N H eB fB XB R U jB kB",2:"G W I 0B YB cB dB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T nB oB R VB qB U",2:"E P J K L lB mB"},G:{1:"F vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB uB"},H:{1:"AC"},I:{1:"Q FC GC",2:"KB G BC CC DC EC IB"},J:{1:"A",2:"D"},K:{1:"B C O R VB U",2:"A"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{2:"RC"}},B:4,C:"CSS background-repeat round and space"}},3051:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(8791));var n=r(1106);var i=r(9920);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}var C=(0,t.default)([n.IE_5_5,n.IE_6,n.IE_7],[i.DECL],function(B){const e=B.value.match(/!\w/);if(e){const r=B.value.substr(e.index,B.value.length-1);this.push(B,{identifier:"!important",hack:r})}});e.default=C;B.exports=e.default},3055:function(B,e){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=normalizeFlexFlow;const r=["row","row-reverse","column","column-reverse"];const t=["nowrap","wrap","wrap-reverse"];function normalizeFlexFlow(B){let e={direction:"",wrap:""};B.walk(({value:B})=>{if(~r.indexOf(B.toLowerCase())){e.direction=B;return}if(~t.indexOf(B.toLowerCase())){e.wrap=B;return}});return`${e.direction} ${e.wrap}`.trim()}B.exports=e.default},3068:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:7,C:"Public class fields"}},3071:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"H P J K L y BB Q WB S",2:"C N"},C:{1:"0 1 2 3 4 5 6 7 8 9 s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l pB hB",1025:"r",1218:"m n o p q"},D:{1:"0 1 2 3 4 5 6 7 8 9 u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r",260:"s",772:"t"},E:{1:"B C N H XB R U jB kB",2:"G W I D F E A 0B YB cB dB eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e lB mB nB oB R VB qB U",260:"f",772:"g"},G:{1:"ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"Fetch"}},3076:function(B){B.exports={A:{A:{2:"I D F E A iB",132:"B"},B:{1:"P J K L y BB Q WB S",16:"C N H"},C:{1:"0 1 2 3 4 5 6 7 8 9 X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",16:"G W I D F E A B C N H"},E:{1:"G W I D F E A B C N H cB dB eB fB XB R U jB kB",16:"0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T U",2:"E B lB mB nB oB R VB qB"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{16:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{16:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{2:"QC"},S:{2:"RC"}},B:6,C:"Built-in PDF viewer"}},3082:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L",322:"y BB Q WB S"},C:{2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m pB hB",194:"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{2:"0 1 2 3 4 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",322:"5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r lB mB nB oB R VB qB U",322:"0 1 2 3 4 5 6 7 8 9 s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{322:"PC"},R:{1:"QC"},S:{194:"RC"}},B:5,C:"ImageCapture API"}},3092:function(B){"use strict";B.exports={animation:["animation-name","animation-duration","animation-timing-function","animation-delay","animation-iteration-count","animation-direction","animation-fill-mode","animation-play-state"],background:["background-image","background-size","background-position","background-repeat","background-origin","background-clip","background-attachment","background-color"],border:["border-top-width","border-right-width","border-bottom-width","border-left-width","border-top-style","border-right-style","border-bottom-style","border-left-style","border-top-color","border-right-color","border-bottom-color","border-left-color"],"border-top":["border-top-width","border-top-style","border-top-color"],"border-right":["border-right-width","border-right-style","border-right-color"],"border-bottom":["border-bottom-width","border-bottom-style","border-bottom-color"],"border-left":["border-left-width","border-left-style","border-left-color"],"border-color":["border-top-color","border-bottom-color","border-left-color","border-right-color"],"border-width":["border-top-width","border-bottom-width","border-left-width","border-right-width"],"border-style":["border-top-style","border-bottom-style","border-left-style","border-right-style"],"border-radius":["border-top-right-radius","border-top-left-radius","border-bottom-right-radius","border-bottom-left-radius"],"border-block-start":["border-block-start-width","border-block-start-style","border-block-start-color"],"border-block-end":["border-block-end-width","border-block-end-style","border-block-end-color"],"border-image":["border-image-source","border-image-slice","border-image-width","border-image-outset","border-image-repeat"],"border-inline-start":["border-inline-start-width","border-inline-start-style","border-inline-start-color"],"border-inline-end":["border-inline-end-width","border-inline-end-style","border-inline-end-color"],columns:["column-width","column-count"],"column-rule":["column-rule-width","column-rule-style","column-rule-color"],flex:["flex-grow","flex-shrink","flex-basis"],"flex-flow":["flex-direction","flex-wrap"],font:["font-style","font-variant","font-weight","font-stretch","font-size","font-family","line-height"],grid:["grid-template-rows","grid-template-columns","grid-template-areas","grid-auto-rows","grid-auto-columns","grid-auto-flow","grid-column-gap","grid-row-gap"],"grid-area":["grid-row-start","grid-column-start","grid-row-end","grid-column-end"],"grid-column":["grid-column-start","grid-column-end"],"grid-gap":["grid-row-gap","grid-column-gap"],"grid-row":["grid-row-start","grid-row-end"],"grid-template":["grid-template-columns","grid-template-rows","grid-template-areas"],"list-style":["list-style-type","list-style-position","list-style-image"],margin:["margin-top","margin-right","margin-bottom","margin-left"],mask:["mask-image","mask-mode","mask-position","mask-size","mask-repeat","mask-origin","mask-clip","mask-composite"],outline:["outline-color","outline-style","outline-width"],overflow:["overflow-x","overflow-y"],padding:["padding-top","padding-right","padding-bottom","padding-left"],"place-content":["align-content","justify-content"],"place-items":["align-items","justify-items"],"place-self":["align-self","justify-self"],"text-decoration":["text-decoration-color","text-decoration-style","text-decoration-line"],transition:["transition-delay","transition-duration","transition-property","transition-timing-function"],"text-emphasis":["text-emphasis-style","text-emphasis-color"]}},3108:function(B,e,r){"use strict";e.__esModule=true;e.default=void 0;var t=_interopRequireDefault(r(4685));var n=r(8019);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _inheritsLoose(B,e){B.prototype=Object.create(e.prototype);B.prototype.constructor=B;B.__proto__=e}var i=function(B){_inheritsLoose(Pseudo,B);function Pseudo(e){var r;r=B.call(this,e)||this;r.type=n.PSEUDO;return r}var e=Pseudo.prototype;e.toString=function toString(){var B=this.length?"("+this.map(String).join(",")+")":"";return[this.rawSpaceBefore,this.stringifyProperty("value"),B,this.rawSpaceAfter].join("")};return Pseudo}(t.default);e.default=i;B.exports=e.default},3119:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=mergeRules;var t=_interopRequireDefault(r(8263));var n=_interopRequireDefault(r(7727));var i=_interopRequireDefault(r(7726));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function isConflictingProp(B,e){if(!e.prop||e.important!==B.important){return}const r=B.prop.split("-");return r.some(()=>{r.pop();return r.join("-")===e.prop})}function hasConflicts(B,e){const r=Math.min.apply(null,B.map(B=>e.indexOf(B)));const t=Math.max.apply(null,B.map(B=>e.indexOf(B)));const n=e.slice(r+1,t);return B.some(B=>n.some(e=>isConflictingProp(B,e)))}function mergeRules(B,e,r){let C=(0,n.default)(B,e);while(C.length){const n=C[C.length-1];const o=C.filter(B=>B.important===n.important);const a=(0,i.default)(o,e);if((0,t.default)(a,...e)&&!hasConflicts(a,B.nodes)){if(r(a,n,o)){C=C.filter(B=>!~a.indexOf(B))}}C=C.filter(B=>B!==n)}}B.exports=e.default},3153:function(B){B.exports={A:{A:{1:"E A B",2:"I D iB",129:"F"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB",2:"sB KB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H cB dB eB fB XB R U jB kB",2:"0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T nB oB R VB qB U",2:"E lB mB"},G:{1:"F rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB"},H:{1:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:6,C:"JSON parsing"}},3157:function(B){B.exports={A:{A:{2:"I D F E iB",1028:"B",1316:"A"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",164:"sB KB G W I D F E A B C N H P J K L X Y Z pB hB",516:"a b c d e f"},D:{1:"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",33:"Z a b c d e f g",164:"G W I D F E A B C N H P J K L X Y"},E:{1:"E A B C N H fB XB R U jB kB",33:"D F dB eB",164:"G W I 0B YB cB"},F:{1:"0 1 2 3 4 5 6 7 8 9 K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T U",2:"E B C lB mB nB oB R VB qB",33:"P J"},G:{1:"xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",33:"F vB wB",164:"YB rB IB tB uB"},H:{1:"AC"},I:{1:"Q FC GC",164:"KB G BC CC DC EC IB"},J:{1:"A",164:"D"},K:{1:"O U",2:"A B C R VB"},L:{1:"S"},M:{1:"M"},N:{1:"B",292:"A"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"CSS Flexible Box Layout Module"}},3161:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=r(2043);var n=(0,t.plugin)("cssnano-util-raw-cache",()=>{return(B,e)=>{e.root.rawCache={colon:":",indent:"",beforeDecl:"",beforeRule:"",beforeOpen:"",beforeClose:"",beforeComment:"",after:"",emptyBody:"",commentLeft:"",commentRight:""}}});e.default=n;B.exports=e.default},3167:function(B,e){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=sameParent;function checkMatch(B,e){if(B.type==="atrule"&&e.type==="atrule"){return B.params===e.params&&B.name.toLowerCase()===e.name.toLowerCase()}return B.type===e.type}function sameParent(B,e){if(!B.parent){return!e.parent}if(!e.parent){return false}if(!checkMatch(B.parent,e.parent)){return false}return sameParent(B.parent,e.parent)}B.exports=e.default},3179:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E",33:"A B C N H P J K L X Y Z a b c d e f g h i j k l"},E:{2:"G W 0B YB cB",33:"I D F E A B C N H dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U",33:"P J K L X Y Z"},G:{2:"YB rB IB tB",33:"F uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:5,C:"Web Audio API"}},3183:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"H P J K L y BB Q WB S",2:"C N"},C:{1:"0 1 2 3 4 5 6 7 8 9 v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O"},E:{1:"E A B C N H fB XB R U jB kB",2:"G W I D F 0B YB cB dB eB"},F:{1:"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l lB mB nB oB R VB qB U"},G:{1:"xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:6,C:"Array.prototype.includes"}},3210:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L y BB Q WB S"},C:{2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k pB hB",132:"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{132:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{132:"RC"}},B:4,C:"CSS Counter Styles"}},3233:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P",194:"J K L"},C:{2:"0 1 2 3 4 5 6 7 8 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB",194:"9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB",450:"QB RB SB TB UB",513:"y BB"},D:{1:"M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB",194:"CB JB EB FB GB HB DB V"},E:{2:"G W I D F E A 0B YB cB dB eB fB",194:"B C N H XB R U jB kB"},F:{1:"GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O lB mB nB oB R VB qB U",194:"0 1 2 3 4 5 6 7 8 9 z AB CB EB FB"},G:{2:"F YB rB IB tB uB vB wB xB yB zB",194:"ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{194:"S"},M:{194:"M"},N:{2:"A B"},O:{1:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:6,C:"Shared Array Buffer"}},3248:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b pB hB",132:"c d e f g h i j k l"},D:{1:"FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"2 3 4 5 6 7 8 9 AB CB EB FB GB HB DB V M T",2:"0 1 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z lB mB nB oB R VB qB U"},G:{2:"F rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{132:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{1:"RC"}},B:4,C:"CSS font-variant-east-asian "}},3285:function(B){B.exports={A:{A:{2:"I D F A B iB",16:"E"},B:{2:"C N H P J K L y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB",16:"G W"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",16:"B C"},E:{2:"G I 0B YB cB",16:"W D F E A B C N H dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB VB qB U",16:"R"},G:{2:"YB rB IB tB uB",16:"F vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC EC IB FC GC",16:"DC"},J:{2:"A",16:"D"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:7,C:"Test feature - updated"}},3291:function(B){B.exports={A:{A:{1:"B",2:"I D iB",66:"F E A"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b pB hB",66:"c d e"},D:{1:"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g"},E:{1:"D F E A B C N H eB fB XB R U jB kB",2:"G W I 0B YB cB dB"},F:{1:"0 1 2 3 4 5 6 7 8 9 J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E P lB",66:"B C mB nB oB R VB qB U"},G:{1:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB"},H:{1:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{1:"A",2:"D"},K:{1:"O U",2:"A B C R VB"},L:{1:"S"},M:{1:"M"},N:{1:"B",66:"A"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:6,C:"TLS 1.2"}},3313:function(B,e,r){"use strict";e.__esModule=true;var t=r(5812);var n=_interopRequireDefault(t);var i=r(5544);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _classCallCheck(B,e){if(!(B instanceof e)){throw new TypeError("Cannot call a class as a function")}}function _possibleConstructorReturn(B,e){if(!B){throw new ReferenceError("this hasn't been initialised - super() hasn't been called")}return e&&(typeof e==="object"||typeof e==="function")?e:B}function _inherits(B,e){if(typeof e!=="function"&&e!==null){throw new TypeError("Super expression must either be null or a function, not "+typeof e)}B.prototype=Object.create(e&&e.prototype,{constructor:{value:B,enumerable:false,writable:true,configurable:true}});if(e)Object.setPrototypeOf?Object.setPrototypeOf(B,e):B.__proto__=e}var C=function(B){_inherits(String,B);function String(e){_classCallCheck(this,String);var r=_possibleConstructorReturn(this,B.call(this,e));r.type=i.STRING;return r}return String}(n.default);e.default=C;B.exports=e["default"]},3334:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(2043));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}const n="postcss-discard-empty";function discardAndReport(B,e){function discardEmpty(B){const{type:r,nodes:t,params:i}=B;if(t){B.each(discardEmpty)}if(r==="decl"&&!B.value||r==="rule"&&!B.selector||t&&!t.length||r==="atrule"&&(!t&&!i||!i&&!t.length)){B.remove();e.messages.push({type:"removal",plugin:n,node:B})}}B.each(discardEmpty)}var i=t.default.plugin(n,()=>discardAndReport);e.default=i;B.exports=e.default},3352:function(B){B.exports={A:{A:{1:"E A B",2:"iB",8:"I D F"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{1:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"Document Object Model Range"}},3361:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB",322:"AB",578:"LB CB JB EB"},D:{1:"5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},E:{1:"A B C N H XB R U jB kB",2:"G W I D F E 0B YB cB dB eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB",132:"zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"JC KC LC MC XB NC OC",2:"G",4:"IC"},Q:{1:"PC"},R:{2:"QC"},S:{2:"RC"}},B:5,C:"Shadow DOM (V1)"}},3377:function(B){var e="0".charCodeAt(0);var r="+".charCodeAt(0);var t="-".charCodeAt(0);function isWhitespace(B){return B<=32}function isDigit(B){return 48<=B&&B<=57}function isSign(B){return B===t||B===r}B.exports=function(B,r,n){var i=B.sign;var C=0;var o=0;var a=r.length;var s=n.length;var u,f;var l,c;var p,A;var d,h;var E,D;var v;while(C<a&&o<s){u=r.charCodeAt(C);f=n.charCodeAt(o);l=c=0;p=A=0;d=h=true;v=0;while(isWhitespace(u)){C+=1;u=r.charCodeAt(C)}while(isWhitespace(f)){o+=1;f=n.charCodeAt(o)}if(i){E=r.charCodeAt(C+1);if(isSign(u)&&isDigit(E)){if(u===t){d=false}C+=1;u=E}D=n.charCodeAt(o+1);if(isSign(f)&&isDigit(D)){if(f===t){h=false}o+=1;f=D}}if(isDigit(u)&&!isDigit(f)){return-1}if(!isDigit(u)&&isDigit(f)){return 1}if(!d&&h){return-1}if(d&&!h){return 1}while(u===e){l+=1;C+=1;u=r.charCodeAt(C)}while(f===e){c+=1;o+=1;f=n.charCodeAt(o)}while(isDigit(u)||isDigit(f)){if(isDigit(u)&&isDigit(f)&&v===0){if(d){if(u<f){v=-1}else if(u>f){v=1}}else{if(u>f){v=-1}else if(u<f){v=1}}}if(isDigit(u)){C+=1;p+=1;u=r.charCodeAt(C)}if(isDigit(f)){o+=1;A+=1;f=n.charCodeAt(o)}}if(d){if(p<A){return-1}if(p>A){return 1}}else{if(p>A){return-1}if(p<A){return 1}}if(v){return v}if(d){if(l>c){return-1}if(l<c){return 1}}else{if(l<c){return-1}if(l>c){return 1}}if(u<f){return-1}if(u>f){return 1}C+=1;o+=1}if(a<s){return-1}if(a>s){return 1}}},3393:function(B,e){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;function CommentRemover(B){this.options=B}CommentRemover.prototype.canRemove=function(B){const e=this.options.remove;if(e){return e(B)}else{const e=B.indexOf("!")===0;if(!e){return true}if(this.options.removeAll||this._hasFirst){return true}else if(this.options.removeAllButFirst&&!this._hasFirst){this._hasFirst=true;return false}}};var r=CommentRemover;e.default=r;B.exports=e.default},3398:function(B,e,r){"use strict";e.__esModule=true;e.default=void 0;var t=_interopRequireDefault(r(9925));var n=r(8273);var i=_interopRequireDefault(r(8092));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _defineProperties(B,e){for(var r=0;r<e.length;r++){var t=e[r];t.enumerable=t.enumerable||false;t.configurable=true;if("value"in t)t.writable=true;Object.defineProperty(B,t.key,t)}}function _createClass(B,e,r){if(e)_defineProperties(B.prototype,e);if(r)_defineProperties(B,r);return B}function _inheritsLoose(B,e){B.prototype=Object.create(e.prototype);B.prototype.constructor=B;B.__proto__=e}var C=function(B){_inheritsLoose(Namespace,B);function Namespace(){return B.apply(this,arguments)||this}var e=Namespace.prototype;e.qualifiedName=function qualifiedName(B){if(this.namespace){return this.namespaceString+"|"+B}else{return B}};e.toString=function toString(){return[this.rawSpaceBefore,this.qualifiedName(this.stringifyProperty("value")),this.rawSpaceAfter].join("")};_createClass(Namespace,[{key:"namespace",get:function get(){return this._namespace},set:function set(B){if(B===true||B==="*"||B==="&"){this._namespace=B;if(this.raws){delete this.raws.namespace}return}var e=(0,t.default)(B,{isIdentifier:true});this._namespace=B;if(e!==B){(0,n.ensureObject)(this,"raws");this.raws.namespace=e}else if(this.raws){delete this.raws.namespace}}},{key:"ns",get:function get(){return this._namespace},set:function set(B){this.namespace=B}},{key:"namespaceString",get:function get(){if(this.namespace){var B=this.stringifyProperty("namespace");if(B===true){return""}else{return B}}else{return""}}}]);return Namespace}(i.default);e.default=C;B.exports=e.default},3431:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",66:"0 1 2",129:"3 4 5 6 7 8"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{2:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"KC LC MC XB NC OC",2:"G IC JC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:5,C:"Credential Management API"}},3447:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"B C N H XB R U jB kB",2:"G W I D F E A 0B YB cB dB eB fB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:5,C:"CSS color function"}},3457:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L",129:"y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB",2:"sB"},D:{2:"G W I D F E A B C",129:"0 1 2 3 4 5 6 7 8 9 N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"E B lB mB nB oB R VB",129:"0 1 2 3 4 5 6 7 8 9 C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D",129:"A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:1,C:"Custom protocol handling"}},3458:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F 0B YB cB dB eB",4:"E",164:"A B C N H fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB",164:"xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:5,C:"CSS Initial Letter"}},3462:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L y BB Q WB S"},C:{33:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",164:"sB KB pB hB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{33:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{33:"RC"}},B:5,C:"CSS element() function"}},3464:function(B,e,r){"use strict";e.__esModule=true;var t=r(4956);var n=_interopRequireDefault(t);var i=r(5544);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _classCallCheck(B,e){if(!(B instanceof e)){throw new TypeError("Cannot call a class as a function")}}function _possibleConstructorReturn(B,e){if(!B){throw new ReferenceError("this hasn't been initialised - super() hasn't been called")}return e&&(typeof e==="object"||typeof e==="function")?e:B}function _inherits(B,e){if(typeof e!=="function"&&e!==null){throw new TypeError("Super expression must either be null or a function, not "+typeof e)}B.prototype=Object.create(e&&e.prototype,{constructor:{value:B,enumerable:false,writable:true,configurable:true}});if(e)Object.setPrototypeOf?Object.setPrototypeOf(B,e):B.__proto__=e}var C=function(B){_inherits(Universal,B);function Universal(e){_classCallCheck(this,Universal);var r=_possibleConstructorReturn(this,B.call(this,e));r.type=i.UNIVERSAL;r.value="*";return r}return Universal}(n.default);e.default=C;B.exports=e["default"]},3476:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",258:"L X Y Z a b c"},E:{1:"N H U jB kB",2:"G W I D F E A B C 0B YB cB eB fB XB R",16:"dB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B"},H:{2:"AC"},I:{2:"KB G BC CC DC EC IB FC",514:"Q GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{514:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"LC MC XB NC OC",2:"G",514:"IC JC KC"},Q:{2:"PC"},R:{16:"QC"},S:{2:"RC"}},B:7,C:"Web Share API"}},3477:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L y BB Q WB S"},C:{1:"MB NB OB PB QB RB SB TB UB y BB",2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M pB hB",130:"T"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"N H U jB kB",2:"G W I D F E A B C 0B YB cB dB eB fB XB R"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:5,C:"text-underline-offset"}},3525:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H BB Q WB S",66:"y",257:"P J K L"},C:{2:"0 1 2 3 4 5 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB",129:"7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",194:"6"},D:{2:"0 1 2 3 4 5 6 7 8 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z BB Q WB S gB bB aB",66:"9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v V M T lB mB nB oB R VB qB U",66:"0 1 2 3 4 5 6 7 8 9 w x O z AB CB EB FB GB HB DB"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{513:"G",516:"IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{66:"QC"},S:{2:"RC"}},B:7,C:"WebVR API"}},3537:function(B){B.exports={A:{A:{1:"E A B",2:"I D F iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB",16:"sB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H cB dB eB fB XB R U jB kB",16:"0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T U",2:"E B lB mB nB oB R VB qB",16:"C"},G:{1:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB rB IB"},H:{2:"AC"},I:{1:"KB G Q DC EC IB FC GC",16:"BC CC"},J:{1:"D A"},K:{1:"U",2:"A B R VB",16:"C",130:"O"},L:{1:"S"},M:{130:"M"},N:{130:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:7,C:"KeyboardEvent.charCode"}},3541:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(7059));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}const n=B=>B.important;const i=B=>!B.important;const C=B=>B.value.toLowerCase()==="inherit";const o=B=>B.value.toLowerCase()==="initial";const a=B=>B.value.toLowerCase()==="unset";var s=(B,e=true)=>{if(B.some(C)&&!B.every(C)){return false}if(B.some(o)&&!B.every(o)){return false}if(B.some(a)&&!B.every(a)){return false}if(e&&B.some(t.default)&&!B.every(t.default)){return false}return B.every(i)||B.every(n)};e.default=s;B.exports=e.default},3546:function(B){B.exports={A:{A:{1:"B",16:"iB",129:"E A",130:"I D F"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H YB cB dB eB fB XB R U jB kB",16:"0B"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U",16:"E"},G:{1:"F rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB"},H:{1:"AC"},I:{1:"KB G Q DC EC IB FC GC",16:"BC CC"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"B",129:"A"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"EventTarget.dispatchEvent"}},3560:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L y",450:"BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y",450:"BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB lB mB nB oB R VB qB U",450:"V M T"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{450:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:7,C:"Web NFC"}},3562:function(B,e,r){"use strict";e.__esModule=true;e.default=void 0;var t=_interopRequireDefault(r(9069));var n=r(699);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _inheritsLoose(B,e){B.prototype=Object.create(e.prototype);B.prototype.constructor=B;B.__proto__=e}var i=function(B){_inheritsLoose(Pseudo,B);function Pseudo(e){var r;r=B.call(this,e)||this;r.type=n.PSEUDO;return r}var e=Pseudo.prototype;e.toString=function toString(){var B=this.length?"("+this.map(String).join(",")+")":"";return[this.rawSpaceBefore,this.stringifyProperty("value"),B,this.rawSpaceAfter].join("")};return Pseudo}(t.default);e.default=i;B.exports=e.default},3565:function(B,e,r){"use strict";e.__esModule=true;var t=function(){function defineProperties(B,e){for(var r=0;r<e.length;r++){var t=e[r];t.enumerable=t.enumerable||false;t.configurable=true;if("value"in t)t.writable=true;Object.defineProperty(B,t.key,t)}}return function(B,e,r){if(e)defineProperties(B.prototype,e);if(r)defineProperties(B,r);return B}}();var n=r(7925);var i=_interopRequireDefault(n);var C=r(7837);var o=_interopRequireDefault(C);var a=r(7950);var s=_interopRequireDefault(a);var u=r(5058);var f=_interopRequireDefault(u);var l=r(4256);var c=_interopRequireDefault(l);var p=r(7010);var A=_interopRequireDefault(p);var d=r(2955);var h=_interopRequireDefault(d);var E=r(6812);var D=_interopRequireDefault(E);var v=r(1030);var F=_interopRequireDefault(v);var G=r(3313);var O=_interopRequireDefault(G);var M=r(4222);var g=_interopRequireDefault(M);var I=r(6039);var H=_interopRequireDefault(I);var L=r(3464);var m=_interopRequireDefault(L);var y=r(7129);var N=_interopRequireDefault(y);var R=r(9633);var S=_interopRequireDefault(R);var b=r(7896);var P=_interopRequireDefault(b);var J=r(1016);var K=_interopRequireDefault(J);var Q=r(6877);var T=_interopRequireWildcard(Q);var w=r(5544);var x=_interopRequireWildcard(w);function _interopRequireWildcard(B){if(B&&B.__esModule){return B}else{var e={};if(B!=null){for(var r in B){if(Object.prototype.hasOwnProperty.call(B,r))e[r]=B[r]}}e.default=B;return e}}function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _classCallCheck(B,e){if(!(B instanceof e)){throw new TypeError("Cannot call a class as a function")}}function getSource(B,e,r,t){return{start:{line:B,column:e},end:{line:r,column:t}}}var q=function(){function Parser(B){var e=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};_classCallCheck(this,Parser);this.rule=B;this.options=Object.assign({lossy:false,safe:false},e);this.position=0;this.root=new f.default;this.root.errorGenerator=this._errorGenerator();var r=new c.default;this.root.append(r);this.current=r;this.css=typeof this.rule==="string"?this.rule:this.rule.selector;if(this.options.lossy){this.css=this.css.trim()}this.tokens=(0,K.default)({css:this.css,error:this._errorGenerator(),safe:this.options.safe});this.loop()}Parser.prototype._errorGenerator=function _errorGenerator(){var B=this;return function(e,r){if(typeof B.rule==="string"){return new Error(e)}return B.rule.error(e,r)}};Parser.prototype.attribute=function attribute(){var B=[];var e=this.currToken;this.position++;while(this.position<this.tokens.length&&this.currToken[0]!==T.closeSquare){B.push(this.currToken);this.position++}if(this.currToken[0]!==T.closeSquare){return this.expected("closing square bracket",this.currToken[5])}var r=B.length;var t={source:getSource(e[1],e[2],this.currToken[3],this.currToken[4]),sourceIndex:e[5]};if(r===1&&!~[T.word].indexOf(B[0][0])){return this.expected("attribute",B[0][5])}var n=0;var C="";var o="";var a=null;var s=false;while(n<r){var u=B[n];var f=this.content(u);var l=B[n+1];switch(u[0]){case T.space:if(r===1||n===0&&this.content(l)==="|"){return this.expected("attribute",u[5],f)}s=true;if(this.options.lossy){break}if(a){var c="spaces."+a+".after";i.default.set(t,c,i.default.get(t,c,"")+f);var p="raws.spaces."+a+".after";var A=i.default.get(t,p);if(A){i.default.set(t,p,A+f)}}else{C=C+f;o=o+f}break;case T.asterisk:if(l[0]===T.equals){t.operator=f;a="operator"}else if((!t.namespace||a==="namespace"&&!s)&&l){if(C){i.default.set(t,"spaces.attribute.before",C);C=""}if(o){i.default.set(t,"raws.spaces.attribute.before",C);o=""}t.namespace=(t.namespace||"")+f;var d=i.default.get(t,"raws.namespace");if(d){t.raws.namespace+=f}a="namespace"}s=false;break;case T.dollar:case T.caret:if(l[0]===T.equals){t.operator=f;a="operator"}s=false;break;case T.combinator:if(f==="~"&&l[0]===T.equals){t.operator=f;a="operator"}if(f!=="|"){s=false;break}if(l[0]===T.equals){t.operator=f;a="operator"}else if(!t.namespace&&!t.attribute){t.namespace=true}s=false;break;case T.word:if(l&&this.content(l)==="|"&&B[n+2]&&B[n+2][0]!==T.equals&&!t.operator&&!t.namespace){t.namespace=f;a="namespace"}else if(!t.attribute||a==="attribute"&&!s){if(C){i.default.set(t,"spaces.attribute.before",C);C=""}if(o){i.default.set(t,"raws.spaces.attribute.before",o);o=""}t.attribute=(t.attribute||"")+f;var h=i.default.get(t,"raws.attribute");if(h){t.raws.attribute+=f}a="attribute"}else if(!t.value||a==="value"&&!s){t.value=(t.value||"")+f;var E=i.default.get(t,"raws.value");if(E){t.raws.value+=f}a="value";i.default.set(t,"raws.unquoted",i.default.get(t,"raws.unquoted","")+f)}else if(f==="i"){if(t.value&&(t.quoted||s)){t.insensitive=true;a="insensitive";if(C){i.default.set(t,"spaces.insensitive.before",C);C=""}if(o){i.default.set(t,"raws.spaces.insensitive.before",o);o=""}}else if(t.value){a="value";t.value+="i";if(t.raws.value){t.raws.value+="i"}}}s=false;break;case T.str:if(!t.attribute||!t.operator){return this.error("Expected an attribute followed by an operator preceding the string.",{index:u[5]})}t.value=f;t.quoted=true;a="value";i.default.set(t,"raws.unquoted",f.slice(1,-1));s=false;break;case T.equals:if(!t.attribute){return this.expected("attribute",u[5],f)}if(t.value){return this.error('Unexpected "=" found; an operator was already defined.',{index:u[5]})}t.operator=t.operator?t.operator+f:f;a="operator";s=false;break;case T.comment:if(a){if(s||l&&l[0]===T.space){var D=i.default.get(t,"raws.spaces."+a+".after",i.default.get(t,"spaces."+a+".after",""));i.default.set(t,"raws.spaces."+a+".after",D+f)}else{var v=i.default.get(t,"raws."+a,i.default.get(t,a,""));i.default.set(t,"raws."+a,v+f)}}else{o=o+f}break;default:return this.error('Unexpected "'+f+'" found.',{index:u[5]})}n++}this.newNode(new H.default(t));this.position++};Parser.prototype.combinator=function combinator(){var B=this.currToken;if(this.content()==="|"){return this.namespace()}var e=new N.default({value:"",source:getSource(B[1],B[2],B[3],B[4]),sourceIndex:B[5]});while(this.position<this.tokens.length&&this.currToken&&(this.currToken[0]===T.space||this.currToken[0]===T.combinator)){var r=this.content();if(this.nextToken&&this.nextToken[0]===T.combinator){e.spaces.before=this.parseSpace(r);e.source=getSource(this.nextToken[1],this.nextToken[2],this.nextToken[3],this.nextToken[4]);e.sourceIndex=this.nextToken[5]}else if(this.prevToken&&this.prevToken[0]===T.combinator){e.spaces.after=this.parseSpace(r)}else if(this.currToken[0]===T.combinator){e.value=r}else if(this.currToken[0]===T.space){e.value=this.parseSpace(r," ")}this.position++}return this.newNode(e)};Parser.prototype.comma=function comma(){if(this.position===this.tokens.length-1){this.root.trailingComma=true;this.position++;return}var B=new c.default;this.current.parent.append(B);this.current=B;this.position++};Parser.prototype.comment=function comment(){var B=this.currToken;this.newNode(new h.default({value:this.content(),source:getSource(B[1],B[2],B[3],B[4]),sourceIndex:B[5]}));this.position++};Parser.prototype.error=function error(B,e){throw this.root.error(B,e)};Parser.prototype.missingBackslash=function missingBackslash(){return this.error("Expected a backslash preceding the semicolon.",{index:this.currToken[5]})};Parser.prototype.missingParenthesis=function missingParenthesis(){return this.expected("opening parenthesis",this.currToken[5])};Parser.prototype.missingSquareBracket=function missingSquareBracket(){return this.expected("opening square bracket",this.currToken[5])};Parser.prototype.namespace=function namespace(){var B=this.prevToken&&this.content(this.prevToken)||true;if(this.nextToken[0]===T.word){this.position++;return this.word(B)}else if(this.nextToken[0]===T.asterisk){this.position++;return this.universal(B)}};Parser.prototype.nesting=function nesting(){var B=this.currToken;this.newNode(new S.default({value:this.content(),source:getSource(B[1],B[2],B[3],B[4]),sourceIndex:B[5]}));this.position++};Parser.prototype.parentheses=function parentheses(){var B=this.current.last;var e=1;this.position++;if(B&&B.type===x.PSEUDO){var r=new c.default;var t=this.current;B.append(r);this.current=r;while(this.position<this.tokens.length&&e){if(this.currToken[0]===T.openParenthesis){e++}if(this.currToken[0]===T.closeParenthesis){e--}if(e){this.parse()}else{r.parent.source.end.line=this.currToken[3];r.parent.source.end.column=this.currToken[4];this.position++}}this.current=t}else{B.value+="(";while(this.position<this.tokens.length&&e){if(this.currToken[0]===T.openParenthesis){e++}if(this.currToken[0]===T.closeParenthesis){e--}B.value+=this.parseParenthesisToken(this.currToken);this.position++}}if(e){return this.expected("closing parenthesis",this.currToken[5])}};Parser.prototype.pseudo=function pseudo(){var B=this;var e="";var r=this.currToken;while(this.currToken&&this.currToken[0]===T.colon){e+=this.content();this.position++}if(!this.currToken){return this.expected(["pseudo-class","pseudo-element"],this.position-1)}if(this.currToken[0]===T.word){this.splitWord(false,function(t,n){e+=t;B.newNode(new g.default({value:e,source:getSource(r[1],r[2],B.currToken[3],B.currToken[4]),sourceIndex:r[5]}));if(n>1&&B.nextToken&&B.nextToken[0]===T.openParenthesis){B.error("Misplaced parenthesis.",{index:B.nextToken[5]})}})}else{return this.expected(["pseudo-class","pseudo-element"],this.currToken[5])}};Parser.prototype.space=function space(){var B=this.content();if(this.position===0||this.prevToken[0]===T.comma||this.prevToken[0]===T.openParenthesis){this.spaces=this.parseSpace(B);this.position++}else if(this.position===this.tokens.length-1||this.nextToken[0]===T.comma||this.nextToken[0]===T.closeParenthesis){this.current.last.spaces.after=this.parseSpace(B);this.position++}else{this.combinator()}};Parser.prototype.string=function string(){var B=this.currToken;this.newNode(new O.default({value:this.content(),source:getSource(B[1],B[2],B[3],B[4]),sourceIndex:B[5]}));this.position++};Parser.prototype.universal=function universal(B){var e=this.nextToken;if(e&&this.content(e)==="|"){this.position++;return this.namespace()}var r=this.currToken;this.newNode(new m.default({value:this.content(),source:getSource(r[1],r[2],r[3],r[4]),sourceIndex:r[5]}),B);this.position++};Parser.prototype.splitWord=function splitWord(B,e){var r=this;var t=this.nextToken;var n=this.content();while(t&&~[T.dollar,T.caret,T.equals,T.word].indexOf(t[0])){this.position++;var i=this.content();n+=i;if(i.lastIndexOf("\\")===i.length-1){var C=this.nextToken;if(C&&C[0]===T.space){n+=this.parseSpace(this.content(C)," ");this.position++}}t=this.nextToken}var a=(0,o.default)(n,".");var u=(0,o.default)(n,"#");var f=(0,o.default)(n,"#{");if(f.length){u=u.filter(function(B){return!~f.indexOf(B)})}var l=(0,P.default)((0,s.default)([0].concat(a,u)));l.forEach(function(t,i){var C=l[i+1]||n.length;var o=n.slice(t,C);if(i===0&&e){return e.call(r,o,l.length)}var s=void 0;var f=r.currToken;var c=f[5]+l[i];var p=getSource(f[1],f[2]+t,f[3],f[2]+(C-1));if(~a.indexOf(t)){s=new A.default({value:o.slice(1),source:p,sourceIndex:c})}else if(~u.indexOf(t)){s=new D.default({value:o.slice(1),source:p,sourceIndex:c})}else{s=new F.default({value:o,source:p,sourceIndex:c})}r.newNode(s,B);B=null});this.position++};Parser.prototype.word=function word(B){var e=this.nextToken;if(e&&this.content(e)==="|"){this.position++;return this.namespace()}return this.splitWord(B)};Parser.prototype.loop=function loop(){while(this.position<this.tokens.length){this.parse(true)}return this.root};Parser.prototype.parse=function parse(B){switch(this.currToken[0]){case T.space:this.space();break;case T.comment:this.comment();break;case T.openParenthesis:this.parentheses();break;case T.closeParenthesis:if(B){this.missingParenthesis()}break;case T.openSquare:this.attribute();break;case T.dollar:case T.caret:case T.equals:case T.word:this.word();break;case T.colon:this.pseudo();break;case T.comma:this.comma();break;case T.asterisk:this.universal();break;case T.ampersand:this.nesting();break;case T.combinator:this.combinator();break;case T.str:this.string();break;case T.closeSquare:this.missingSquareBracket();case T.semicolon:this.missingBackslash()}};Parser.prototype.expected=function expected(B,e,r){if(Array.isArray(B)){var t=B.pop();B=B.join(", ")+" or "+t}var n=/^[aeiou]/.test(B[0])?"an":"a";if(!r){return this.error("Expected "+n+" "+B+".",{index:e})}return this.error("Expected "+n+" "+B+', found "'+r+'" instead.',{index:e})};Parser.prototype.parseNamespace=function parseNamespace(B){if(this.options.lossy&&typeof B==="string"){var e=B.trim();if(!e.length){return true}return e}return B};Parser.prototype.parseSpace=function parseSpace(B){var e=arguments.length>1&&arguments[1]!==undefined?arguments[1]:"";return this.options.lossy?e:B};Parser.prototype.parseValue=function parseValue(B){if(!this.options.lossy||!B||typeof B!=="string"){return B}return B.trim()};Parser.prototype.parseParenthesisToken=function parseParenthesisToken(B){var e=this.content(B);if(!this.options.lossy){return e}if(B[0]===T.space){return this.parseSpace(e," ")}return this.parseValue(e)};Parser.prototype.newNode=function newNode(B,e){if(e){B.namespace=this.parseNamespace(e)}if(this.spaces){B.spaces.before=this.spaces;this.spaces=""}return this.current.append(B)};Parser.prototype.content=function content(){var B=arguments.length>0&&arguments[0]!==undefined?arguments[0]:this.currToken;return this.css.slice(B[5],B[6])};t(Parser,[{key:"currToken",get:function get(){return this.tokens[this.position]}},{key:"nextToken",get:function get(){return this.tokens[this.position+1]}},{key:"prevToken",get:function get(){return this.tokens[this.position-1]}}]);return Parser}();e.default=q;B.exports=e["default"]},3572:function(B){B.exports={A:{A:{1:"E A B",2:"I D F iB"},B:{1:"J K L y BB Q WB S",516:"C N H P"},C:{1:"0 1 2 3 4 5 6 7 8 9 c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB hB",260:"G W I D F E A B C N H P J K L X Y Z a b"},D:{1:"0 1 2 3 4 5 6 7 8 9 W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",4:"G"},E:{1:"W I D F E A B C N H cB dB eB fB XB R U jB kB",2:"0B",132:"G YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U",2:"E"},G:{1:"F IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",132:"YB rB"},H:{260:"AC"},I:{1:"KB G Q EC IB FC GC",2:"BC CC DC"},J:{1:"D A"},K:{1:"O",260:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"SVG in CSS backgrounds"}},3583:function(B,e,r){"use strict";e.__esModule=true;e.default=void 0;var t=r(7744);function _defineProperties(B,e){for(var r=0;r<e.length;r++){var t=e[r];t.enumerable=t.enumerable||false;t.configurable=true;if("value"in t)t.writable=true;Object.defineProperty(B,t.key,t)}}function _createClass(B,e,r){if(e)_defineProperties(B.prototype,e);if(r)_defineProperties(B,r);return B}var n=function cloneNode(B,e){if(typeof B!=="object"||B===null){return B}var r=new B.constructor;for(var t in B){if(!B.hasOwnProperty(t)){continue}var n=B[t];var i=typeof n;if(t==="parent"&&i==="object"){if(e){r[t]=e}}else if(n instanceof Array){r[t]=n.map(function(B){return cloneNode(B,r)})}else{r[t]=cloneNode(n,r)}}return r};var i=function(){function Node(B){if(B===void 0){B={}}Object.assign(this,B);this.spaces=this.spaces||{};this.spaces.before=this.spaces.before||"";this.spaces.after=this.spaces.after||""}var B=Node.prototype;B.remove=function remove(){if(this.parent){this.parent.removeChild(this)}this.parent=undefined;return this};B.replaceWith=function replaceWith(){if(this.parent){for(var B in arguments){this.parent.insertBefore(this,arguments[B])}this.remove()}return this};B.next=function next(){return this.parent.at(this.parent.index(this)+1)};B.prev=function prev(){return this.parent.at(this.parent.index(this)-1)};B.clone=function clone(B){if(B===void 0){B={}}var e=n(this);for(var r in B){e[r]=B[r]}return e};B.appendToPropertyAndEscape=function appendToPropertyAndEscape(B,e,r){if(!this.raws){this.raws={}}var t=this[B];var n=this.raws[B];this[B]=t+e;if(n||r!==e){this.raws[B]=(n||t)+r}else{delete this.raws[B]}};B.setPropertyAndEscape=function setPropertyAndEscape(B,e,r){if(!this.raws){this.raws={}}this[B]=e;this.raws[B]=r};B.setPropertyWithoutEscape=function setPropertyWithoutEscape(B,e){this[B]=e;if(this.raws){delete this.raws[B]}};B.isAtPosition=function isAtPosition(B,e){if(this.source&&this.source.start&&this.source.end){if(this.source.start.line>B){return false}if(this.source.end.line<B){return false}if(this.source.start.line===B&&this.source.start.column>e){return false}if(this.source.end.line===B&&this.source.end.column<e){return false}return true}return undefined};B.stringifyProperty=function stringifyProperty(B){return this.raws&&this.raws[B]||this[B]};B.toString=function toString(){return[this.rawSpaceBefore,String(this.stringifyProperty("value")),this.rawSpaceAfter].join("")};_createClass(Node,[{key:"rawSpaceBefore",get:function get(){var B=this.raws&&this.raws.spaces&&this.raws.spaces.before;if(B===undefined){B=this.spaces&&this.spaces.before}return B||""},set:function set(B){(0,t.ensureObject)(this,"raws","spaces");this.raws.spaces.before=B}},{key:"rawSpaceAfter",get:function get(){var B=this.raws&&this.raws.spaces&&this.raws.spaces.after;if(B===undefined){B=this.spaces.after}return B||""},set:function set(B){(0,t.ensureObject)(this,"raws","spaces");this.raws.spaces.after=B}}]);return Node}();e.default=i;B.exports=e.default},3585:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.columnsRule=e.column=void 0;var t=r(6486);var n=_interopRequireDefault(r(6208));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}const i=["auto","inherit","unset","initial"];const C=B=>{let e={front:"",back:""};let r=false;B.walk(B=>{const{type:n,value:C}=B;if(n==="word"&&i.indexOf(C.toLowerCase())){const B=(0,t.unit)(C);if(B.unit!==""){e.front=`${e.front} ${C}`;r=true}}else if(n==="word"){e.back=`${e.back} ${C}`}});if(r){return`${e.front.trimStart()} ${e.back.trimStart()}`}return B};e.column=C;const o=n.default;e.columnsRule=o},3594:function(B,e,r){"use strict";const t=r(7246);const n=r(7488);const i=r(6227);const C=r(8426);const o=r(5713);const a=r(7329);const s=r(6173);const u=r(4228);const f=r(3886);function isColor(B){const e=t(B)||n(B)||i(B)||C(B)||o(B)||a(B)||s(B);return e}B.exports=function isColorStop(B,e){return isColor(B)&&f(e)};B.exports.isColor=isColor;B.exports.isRGB=t;B.exports.isRGBA=n;B.exports.isHSL=i;B.exports.isHSLA=C;B.exports.isHex=o;B.exports.isCSSColorName=a;B.exports.isTransparent=s;B.exports.isCSSLengthUnit=u},3596:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x pB hB",322:"0 1 2 3 4 5 6 7 8 9 O z"},D:{1:"CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",194:"1 2 3 4 5 6 7 8 9 AB LB"},E:{1:"C N H R U jB kB",2:"G W I D F E A B 0B YB cB dB eB fB XB"},F:{1:"0 1 2 3 4 5 6 7 8 9 z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n lB mB nB oB R VB qB U",194:"o p q r s t u v w x O"},G:{1:"2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C R VB U",194:"O"},L:{1:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"LC MC XB NC OC",2:"G",194:"IC JC KC"},Q:{1:"PC"},R:{2:"QC"},S:{322:"RC"}},B:5,C:"CSS font-rendering controls"}},3612:function(B){B.exports={A:{A:{1:"E A B",16:"iB",260:"I D F"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",132:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u pB hB",2180:"0 1 2 3 v w x O z"},D:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",16:"G W I D F E A B C N H"},E:{1:"I D F E A B C N H cB dB eB fB XB R U jB kB",16:"G W 0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",132:"E B C lB mB nB oB R VB qB U"},G:{16:"IB",132:"YB rB",516:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q FC GC",16:"KB G BC CC DC EC",1025:"IB"},J:{1:"A",16:"D"},K:{1:"O",16:"A B C R VB",132:"U"},L:{1:"S"},M:{1:"M"},N:{1:"B",16:"A"},O:{1025:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{2180:"RC"}},B:5,C:"Selection API"}},3614:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"5 6 7 8 9 AB CB EB FB GB HB DB V M T",2:"0 1 2 3 4 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"MC XB NC OC",2:"G IC JC KC LC"},Q:{16:"PC"},R:{16:"QC"},S:{2:"RC"}},B:1,C:"Resource Hints: modulepreload"}},3639:function(B,e,r){B.exports=r(6484)},3640:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});var t=r(4488);Object.defineProperty(e,"agents",{enumerable:true,get:function get(){return t.agents}});var n=r(6605);Object.defineProperty(e,"feature",{enumerable:true,get:function get(){return _interopRequireDefault(n).default}});var i=r(7130);Object.defineProperty(e,"features",{enumerable:true,get:function get(){return i.features}});var C=r(1941);Object.defineProperty(e,"region",{enumerable:true,get:function get(){return _interopRequireDefault(C).default}});function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}},3669:function(B){B.exports={A:{A:{2:"iB",8:"I D F E A",129:"B"},B:{1:"y BB Q WB S",129:"C N H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB hB",129:"G W I D F E A B C N H P J K L X Y Z a b"},D:{1:"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D",129:"F E A B C N H P J K L X Y Z a b c d e f g h i j k"},E:{1:"F E A B C N H fB XB R U jB kB",2:"G W 0B YB",129:"I D cB dB eB"},F:{1:"0 1 2 3 4 5 6 7 8 9 X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B lB mB nB oB R VB qB",129:"C P J K L U"},G:{1:"F wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB uB vB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{1:"A",2:"D"},K:{1:"C O U",2:"A B R VB"},L:{1:"S"},M:{1:"M"},N:{8:"A",129:"B"},O:{129:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{129:"RC"}},B:6,C:"WebGL - 3D Canvas graphics"}},3673:function(B){"use strict";B.exports={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]}},3680:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(7059));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}const n=B=>B&&B.value&&["inherit","initial","unset","revert"].includes(B.value.toLowerCase());var i=(B,e=true)=>{if(!B.value||e&&(0,t.default)(B)||n(B)){return false}return true};e.default=i;B.exports=e.default},3694:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L",194:"y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB",194:"NB OB PB QB RB SB TB UB y BB Q WB S"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z lB mB nB oB R VB qB U",194:"AB CB EB FB GB HB DB V M T"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{194:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:4,C:"Screen Wake Lock API"}},3706:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=r(2043);var n=_interopRequireDefault(r(5359));var i=_interopRequireDefault(r(454));var C=_interopRequireDefault(r(2998));var o=_interopRequireDefault(r(5483));var a=_interopRequireDefault(r(9700));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}const s=["::before","::after","::first-letter","::first-line"];function getParsed(B,e){return(0,C.default)(e).processSync(B)}function attribute(B){if(B.value){B.value=B.value.replace(/\\\n/g,"").trim();if((0,a.default)(B.value)){B.value=(0,o.default)(B.value)}if(B.operator){B.operator=B.operator.trim()}}if(!B.raws){B.raws={}}if(!B.raws.spaces){B.raws.spaces={}}B.raws.spaces.attribute={before:"",after:""};B.raws.spaces.operator={before:"",after:""};B.raws.spaces.value={before:"",after:B.insensitive?" ":""};if(B.insensitive){B.raws.spaces.insensitive={before:"",after:""}}B.attribute=B.attribute.trim()}function combinator(B){const e=B.value.trim();B.value=e.length?e:" "}const u={":nth-child":":first-child",":nth-of-type":":first-of-type",":nth-last-child":":last-child",":nth-last-of-type":":last-of-type"};function pseudo(B){const e=B.value.toLowerCase();if(B.nodes.length===1&&u[e]){const r=B.at(0);const t=r.at(0);if(r.length===1){if(t.value==="1"){B.replaceWith(C.default.pseudo({value:u[e]}))}if(t.value.toLowerCase()==="even"){t.value="2n"}}if(r.length===3){const B=r.at(1);const e=r.at(2);if(t.value.toLowerCase()==="2n"&&B.value==="+"&&e.value==="1"){t.value="odd";B.remove();e.remove()}}return}const r=[];B.walk(B=>{if(B.type==="selector"){const e=String(B);if(!~r.indexOf(e)){r.push(e)}else{B.remove()}}});if(~s.indexOf(e)){B.value=B.value.slice(1)}}const f={from:"0%","100%":"to"};function tag(B){const e=B.value.toLowerCase();if((0,i.default)(f,e)){B.value=f[e]}}function universal(B){const e=B.next();if(e&&e.type!=="combinator"){B.remove()}}const l={attribute:attribute,combinator:combinator,pseudo:pseudo,tag:tag,universal:universal};var c=(0,t.plugin)("postcss-minify-selectors",()=>{return B=>{const e={};B.walkRules(B=>{const r=B.raws.selector&&B.raws.selector.value===B.selector?B.raws.selector.raw:B.selector;if(r[r.length-1]===":"){return}if(e[r]){B.selector=e[r];return}const t=getParsed(r,B=>{B.nodes=(0,n.default)(B.nodes,{insensitive:true});const e=[];B.walk(B=>{const{type:r}=B;B.spaces.before=B.spaces.after="";if((0,i.default)(l,r)){l[r](B);return}const t=String(B);if(r==="selector"&&B.parent.type!=="pseudo"){if(!~e.indexOf(t)){e.push(t)}else{B.remove()}}})});B.selector=t;e[r]=t})}});e.default=c;B.exports=e.default},3738:function(B){B.exports={A:{A:{1:"A B",2:"I D F E iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F"},E:{1:"I D F E A B C N H cB dB eB fB XB R U jB kB",2:"G W 0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T nB oB R VB qB U",2:"E lB mB"},G:{4:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{4:"AC"},I:{4:"KB G Q BC CC DC EC IB FC GC"},J:{1:"A",4:"D"},K:{4:"A B C O R VB U"},L:{4:"S"},M:{4:"M"},N:{4:"A B"},O:{4:"HC"},P:{4:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{4:"QC"},S:{2:"RC"}},B:1,C:"Spellcheck attribute"}},3767:function(B){B.exports={A:{A:{2:"I D F E A iB",132:"B"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c pB hB",66:"d e f g h i j k l m n o p q r s t"},D:{1:"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J",33:"b c d e f g h i",66:"K L X Y Z a"},E:{1:"F E A B C N H fB XB R U jB kB",2:"G W I D 0B YB cB dB eB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B",260:"5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q GC",2:"KB G BC CC DC EC IB FC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"B",2:"A"},O:{1:"HC"},P:{1:"MC XB NC OC",2:"G IC JC KC LC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:2,C:"Media Source Extensions"}},3773:function(B){B.exports={A:{A:{1:"A B",2:"I D F E iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C"},E:{1:"I D F E A B C N H dB eB fB XB R U jB kB",2:"G 0B YB",132:"W cB"},F:{1:"0 1 2 3 4 5 6 7 8 9 C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T qB U",2:"E B lB mB nB oB R VB"},G:{1:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB"},H:{1:"AC"},I:{1:"KB G Q EC IB FC GC",2:"BC CC DC"},J:{1:"D A"},K:{1:"C O VB U",2:"A B R"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:6,C:"ECMAScript 5 Strict Mode"}},3776:function(B){B.exports={A:{A:{132:"I D F E A B iB"},B:{2:"C N H P J K L",292:"y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB pB hB",3074:"FB",4100:"GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{292:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{16:"G W 0B YB",292:"I D F E A B C N H cB dB eB fB XB R U jB kB"},F:{2:"E B C lB mB nB oB R VB qB U",292:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{16:"YB rB IB tB uB",292:"vB",804:"F wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{16:"BC CC",292:"KB G Q DC EC IB FC GC"},J:{292:"D A"},K:{2:"A B C R VB U",292:"O"},L:{292:"S"},M:{2:"M"},N:{2:"A B"},O:{292:"HC"},P:{292:"G IC JC KC LC MC XB NC OC"},Q:{292:"PC"},R:{292:"QC"},S:{2:"RC"}},B:7,C:"CSS scrollbar styling"}},3777:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L",1537:"y BB Q WB S"},C:{2:"sB",932:"0 1 2 3 4 5 6 7 8 9 KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB pB hB",2308:"DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{2:"G W I D F E A B C N H P J K L X Y Z",545:"a b c d e f g h i j k l m n o p q r s t u v w x",1537:"0 1 2 3 4 5 6 7 8 9 O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I 0B YB cB",516:"B C N H R U jB kB",548:"E A fB XB",676:"D F dB eB"},F:{2:"E B C lB mB nB oB R VB qB U",513:"m",545:"P J K L X Y Z a b c d e f g h i j k",1537:"0 1 2 3 4 5 6 7 8 9 l n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{2:"YB rB IB tB uB",548:"xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",676:"F vB wB"},H:{2:"AC"},I:{2:"KB G BC CC DC EC IB",545:"FC GC",1537:"Q"},J:{2:"D",545:"A"},K:{2:"A B C R VB U",1537:"O"},L:{1537:"S"},M:{2340:"M"},N:{2:"A B"},O:{1:"HC"},P:{545:"G",1537:"IC JC KC LC MC XB NC OC"},Q:{545:"PC"},R:{1537:"QC"},S:{932:"RC"}},B:5,C:"Intrinsic & Extrinsic Sizing"}},3779:function(B){B.exports={A:{A:{2:"I D F iB",132:"E A B"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB",260:"G W I D F E A B C N H P pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",548:"G W I D F E A B C N H P J K L X Y Z a b c d e f g"},E:{2:"0B YB",548:"G W I D F E A B C N H cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T U",2:"E",548:"B C lB mB nB oB R VB qB"},G:{16:"YB",548:"F rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{132:"AC"},I:{1:"Q FC GC",16:"BC CC",548:"KB G DC EC IB"},J:{548:"D A"},K:{1:"O U",548:"A B C R VB"},L:{1:"S"},M:{1:"M"},N:{132:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:2,C:"Media Queries: resolution feature"}},3790:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W"},E:{1:"W I D F E A B C N H cB dB eB fB XB R U jB kB",2:"G 0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T R VB qB U",4:"E lB mB nB oB"},G:{1:"F rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB"},H:{2:"AC"},I:{1:"Q FC GC",2:"KB G BC CC DC EC IB"},J:{1:"D A"},K:{1:"C O R VB U",4:"A B"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"Server-sent events"}},3791:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"J K L y BB Q WB S",260:"C",514:"N H P"},C:{1:"0 1 2 3 4 5 6 7 8 9 q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j pB hB",194:"k l m n o p"},D:{1:"0 1 2 3 4 5 6 7 8 9 q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l",260:"m n o p"},E:{1:"E A B C N H fB XB R U jB kB",2:"G W I D 0B YB cB dB",260:"F eB"},F:{1:"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y lB mB nB oB R VB qB U",260:"Z a b c"},G:{1:"xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB uB vB",260:"F wB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"Srcset and sizes attributes"}},3807:function(B,e){"use strict";e.__esModule=true;e.default=ensureObject;function ensureObject(B){for(var e=arguments.length,r=new Array(e>1?e-1:0),t=1;t<e;t++){r[t-1]=arguments[t]}while(r.length>0){var n=r.shift();if(!B[n]){B[n]={}}B=B[n]}}B.exports=e.default},3817:function(B,e,r){"use strict";e.__esModule=true;var t=r(3565);var n=_interopRequireDefault(t);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _classCallCheck(B,e){if(!(B instanceof e)){throw new TypeError("Cannot call a class as a function")}}var i=function(){function Processor(B,e){_classCallCheck(this,Processor);this.func=B||function noop(){};this.funcRes=null;this.options=e}Processor.prototype._shouldUpdateSelector=function _shouldUpdateSelector(B){var e=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};var r=Object.assign({},this.options,e);if(r.updateSelector===false){return false}else{return typeof B!=="string"}};Processor.prototype._isLossy=function _isLossy(){var B=arguments.length>0&&arguments[0]!==undefined?arguments[0]:{};var e=Object.assign({},this.options,B);if(e.lossless===false){return true}else{return false}};Processor.prototype._root=function _root(B){var e=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};var r=new n.default(B,this._parseOptions(e));return r.root};Processor.prototype._parseOptions=function _parseOptions(B){return{lossy:this._isLossy(B)}};Processor.prototype._run=function _run(B){var e=this;var r=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};return new Promise(function(t,n){try{var i=e._root(B,r);Promise.resolve(e.func(i)).then(function(t){var n=undefined;if(e._shouldUpdateSelector(B,r)){n=i.toString();B.selector=n}return{transform:t,root:i,string:n}}).then(t,n)}catch(B){n(B);return}})};Processor.prototype._runSync=function _runSync(B){var e=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};var r=this._root(B,e);var t=this.func(r);if(t&&typeof t.then==="function"){throw new Error("Selector processor returned a promise to a synchronous call.")}var n=undefined;if(e.updateSelector&&typeof B!=="string"){n=r.toString();B.selector=n}return{transform:t,root:r,string:n}};Processor.prototype.ast=function ast(B,e){return this._run(B,e).then(function(B){return B.root})};Processor.prototype.astSync=function astSync(B,e){return this._runSync(B,e).root};Processor.prototype.transform=function transform(B,e){return this._run(B,e).then(function(B){return B.transform})};Processor.prototype.transformSync=function transformSync(B,e){return this._runSync(B,e).transform};Processor.prototype.process=function process(B,e){return this._run(B,e).then(function(B){return B.string||B.root.toString()})};Processor.prototype.processSync=function processSync(B,e){var r=this._runSync(B,e);return r.string||r.root.toString()};return Processor}();e.default=i;B.exports=e["default"]},3821:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(9854));var n=_interopRequireDefault(r(2043));var i=_interopRequireDefault(r(6486));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}const C=/^u(?=\+)/;function unicode(B){const e=B.slice(2).split("-");if(e.length<2){return B}const r=e[0].split("");const t=e[1].split("");if(r.length!==t.length){return B}let n=0;const i=r.reduce((B,e,r)=>{if(B===false){return false}if(e===t[r]&&!n){return B+e}if(e==="0"&&t[r]==="f"){n++;return B+"?"}return false},"u+");if(i&&n<6){return i}return B}function hasLowerCaseUPrefixBug(B){return~(0,t.default)("ie <=11, edge <= 15").indexOf(B)}function transform(B,e=false){return(0,i.default)(B).walk(B=>{if(B.type==="word"){const r=unicode(B.value.toLowerCase());B.value=e?r.replace(C,"U"):r}return false}).toString()}var o=n.default.plugin("postcss-normalize-unicode",()=>{return(B,e)=>{const r=e.opts||{};const n=(0,t.default)(null,{stats:r.stats,path:__dirname,env:r.env});const i=n.some(hasLowerCaseUPrefixBug);const C={};B.walkDecls(/^unicode-range$/i,B=>{const e=B.value;if(C[e]){B.value=C[e];return}const r=transform(e,i);B.value=r;C[e]=r})}});e.default=o;B.exports=e.default},3847:function(B,e){"use strict";e.__esModule=true;e.default=getProp;function getProp(B){for(var e=arguments.length,r=new Array(e>1?e-1:0),t=1;t<e;t++){r[t-1]=arguments[t]}while(r.length>0){var n=r.shift();if(!B[n]){return undefined}B=B[n]}return B}B.exports=e.default},3853:function(B){B.exports={A:{A:{16:"iB",132:"F E",388:"I D A B"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P",16:"J K L X"},E:{1:"I D F E A B C N H dB eB fB XB R U jB kB",2:"G W 0B YB cB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T mB nB oB R VB qB U",16:"E lB"},G:{1:"F uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB"},H:{388:"AC"},I:{1:"Q FC GC",2:"KB G BC CC DC EC IB"},J:{1:"A",2:"D"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A",260:"B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"disabled attribute of the fieldset element"}},3854:function(B,e){"use strict";e.__esModule=true;e.combinator=e.word=e.comment=e.str=e.tab=e.newline=e.feed=e.cr=e.backslash=e.bang=e.slash=e.doubleQuote=e.singleQuote=e.space=e.greaterThan=e.pipe=e.equals=e.plus=e.caret=e.tilde=e.dollar=e.closeSquare=e.openSquare=e.closeParenthesis=e.openParenthesis=e.semicolon=e.colon=e.comma=e.at=e.asterisk=e.ampersand=void 0;var r=38;e.ampersand=r;var t=42;e.asterisk=t;var n=64;e.at=n;var i=44;e.comma=i;var C=58;e.colon=C;var o=59;e.semicolon=o;var a=40;e.openParenthesis=a;var s=41;e.closeParenthesis=s;var u=91;e.openSquare=u;var f=93;e.closeSquare=f;var l=36;e.dollar=l;var c=126;e.tilde=c;var p=94;e.caret=p;var A=43;e.plus=A;var d=61;e.equals=d;var h=124;e.pipe=h;var E=62;e.greaterThan=E;var D=32;e.space=D;var v=39;e.singleQuote=v;var F=34;e.doubleQuote=F;var G=47;e.slash=G;var O=33;e.bang=O;var M=92;e.backslash=M;var g=13;e.cr=g;var I=12;e.feed=I;var H=10;e.newline=H;var L=9;e.tab=L;var m=v;e.str=m;var y=-1;e.comment=y;var N=-2;e.word=N;var R=-3;e.combinator=R},3878:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t pB hB",3076:"0 1 2 3 4 5 6 7 8 9 u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{1:"LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",132:"2 3",260:"4 5",516:"6 7 8 9 AB"},E:{2:"G W I D F E A B C N 0B YB cB dB eB fB XB R U",16:"H jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o lB mB nB oB R VB qB U",132:"p q",260:"r s",516:"t u v w x"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{3076:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"JC KC LC MC XB NC OC",16:"G IC"},Q:{1:"PC"},R:{2:"QC"},S:{3076:"RC"}},B:1,C:"createImageBitmap"}},3880:function(B){B.exports={A:{A:{1:"F E A B",8:"I D iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",33:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",33:"G W I D F E"},E:{1:"I D F E A B C N H cB dB eB fB XB R U jB kB",33:"G W 0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U",2:"E"},G:{1:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",33:"YB rB IB"},H:{1:"AC"},I:{1:"G Q EC IB FC GC",33:"KB BC CC DC"},J:{1:"A",33:"D"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:5,C:"CSS3 Box-sizing"}},3886:function(B,e,r){"use strict";const t=r(4228);const n=r(7470);function isStop(B){let e=!B;if(!e){const r=n(B);if(r){if(r.number===0||!isNaN(r.number)&&t(r.unit)){e=true}}else{e=/^calc\(\S+\)$/g.test(B)}}return e}B.exports=isStop},3887:function(B){B.exports={A:{A:{2:"I D iB",132:"F E A B"},B:{1:"y BB Q WB S",132:"C N H P J K L"},C:{2:"sB KB G W I D F E A B C N H P J K L pB hB",132:"0 1 2 3 4 5 6 7 8 9 X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",16:"G W I D F E A B C N H"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",132:"E B C lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{16:"AC"},I:{16:"KB G Q BC CC DC EC IB FC GC"},J:{16:"D A"},K:{16:"A B C R VB U",258:"O"},L:{1:"S"},M:{132:"M"},N:{258:"A B"},O:{258:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{132:"RC"}},B:5,C:"CSS Paged Media (@page)"}},3896:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L y BB Q WB S"},C:{1:"M T MB NB OB PB QB RB SB TB UB y BB",2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V pB hB"},D:{1:"bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB"},E:{2:"G W I D F E A B 0B YB cB dB eB fB XB",129:"C N H R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:5,C:"CSS ::marker pseudo-element"}},3900:function(B){B.exports={A:{A:{1:"E A B",2:"I D F iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",33:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U",2:"E"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q FC GC",2:"KB G BC CC DC EC IB"},J:{1:"A",2:"D"},K:{1:"C O VB U",16:"A B R"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{33:"RC"}},B:5,C:"::selection CSS pseudo-element"}},3909:function(B){B.exports={A:{A:{1:"A B",2:"I D iB",129:"F E"},B:{1:"C N H P J K L y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c"},E:{1:"D F E A B C N H eB fB XB R U jB kB",2:"G W I 0B YB cB dB"},F:{1:"0 1 2 3 4 5 6 7 8 9 C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T U",129:"E B lB mB nB oB R VB qB"},G:{1:"F vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB uB"},H:{1:"AC"},I:{1:"Q FC GC",2:"KB G BC CC DC EC IB"},J:{2:"D A"},K:{1:"O U",2:"A B C R VB"},L:{1:"S"},M:{2:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{2:"RC"}},B:2,C:"CSS widows & orphans"}},3915:function(B){B.exports={A:{A:{1:"A B",2:"I D F E iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",16:"G W I D F E A B C N H"},E:{1:"I D F E A B C N H dB eB fB XB R U jB kB",2:"G W 0B YB cB"},F:{1:"0 1 2 3 4 5 6 7 8 9 C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T qB U",2:"E lB mB",16:"B nB oB R VB"},G:{1:"F uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB"},H:{2:"AC"},I:{1:"Q FC GC",2:"KB G BC CC DC EC IB"},J:{1:"A",2:"D"},K:{1:"C O VB U",2:"A",16:"B R"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:5,C:"FileReaderSync"}},3938:function(B){B.exports={A:{A:{2:"I D iB",4:"F E A B"},B:{4:"C N H P J K L y BB Q WB S"},C:{4:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{4:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"0B YB",4:"G W I D F E A B C N H cB dB eB fB XB R U jB kB"},F:{2:"E",4:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{4:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{4:"AC"},I:{2:"KB G BC CC DC EC IB",4:"Q FC GC"},J:{2:"D A"},K:{4:"A B C O R VB U"},L:{4:"S"},M:{4:"M"},N:{4:"A B"},O:{2:"HC"},P:{4:"G IC JC KC LC MC XB NC OC"},Q:{4:"PC"},R:{4:"QC"},S:{4:"RC"}},B:2,C:"WAI-ARIA Accessibility features"}},3963:function(B){B.exports={A:{A:{1:"A B",2:"I D F E iB"},B:{1:"C N H P J K L",322:"y BB Q WB S"},C:{2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k pB hB",194:"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w",322:"0 1 2 3 4 5 6 7 8 9 x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"D F E A B C N H dB eB fB XB R U jB kB",2:"G W I 0B YB cB"},F:{2:"E B C P J K L X Y Z a b c d e f g h i j lB mB nB oB R VB qB U",322:"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{1:"F vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB uB"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C R VB U",322:"O"},L:{322:"S"},M:{2:"M"},N:{1:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{194:"RC"}},B:1,C:"Audio Tracks"}},3993:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:5,C:":has() CSS relational pseudo-class"}},3996:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"N H P J K L y BB Q WB S",2:"C"},C:{1:"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h"},E:{1:"D F E A B C N H dB eB fB XB R U jB kB",2:"G W I 0B YB cB"},F:{1:"0 1 2 3 4 5 6 7 8 9 K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J lB mB nB oB R VB qB U"},G:{1:"F vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB uB"},H:{2:"AC"},I:{1:"Q FC GC",2:"KB G BC CC DC EC IB"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"Canvas blend modes"}},4002:function(B){B.exports={A:{A:{2:"I D F E iB",129:"A B"},B:{1:"P J K L y BB Q WB S",129:"C N H"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D",33:"F E A B C N H P J K L X Y Z a"},E:{1:"D F E A B C N H dB eB fB XB R U jB kB",2:"G W 0B YB cB",33:"I"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U"},G:{1:"F vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB",33:"uB"},H:{2:"AC"},I:{1:"Q FC GC",2:"KB BC CC DC",33:"G EC IB"},J:{1:"A",2:"D"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"B",2:"A"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:5,C:"Blob URLs"}},4015:function(B){B.exports={A:{A:{388:"I D F E A B iB"},B:{260:"y BB Q WB S",388:"C N H P J K L"},C:{260:"JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",388:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB pB hB"},D:{260:"M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",388:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V"},E:{260:"H jB kB",388:"G W I D F E A B C N 0B YB cB dB eB fB XB R U"},F:{260:"7 8 9 AB CB EB FB GB HB DB V M T",388:"0 1 2 3 4 5 6 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z lB mB nB oB R VB qB U"},G:{260:"8B 9B",388:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B"},H:{388:"AC"},I:{388:"KB G Q BC CC DC EC IB FC GC"},J:{388:"D A"},K:{388:"A B C O R VB U"},L:{260:"S"},M:{260:"M"},N:{388:"A B"},O:{388:"HC"},P:{388:"G IC JC KC LC MC XB NC OC"},Q:{388:"PC"},R:{388:"QC"},S:{388:"RC"}},B:5,C:"CSS overflow property"}},4029:function(B){B.exports={A:{A:{2:"I D F iB",260:"E A B"},B:{1:"y BB Q WB S",260:"C N H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a pB hB",132:"b c d e f g"},D:{1:"3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},E:{1:"B C N H XB R U jB kB",2:"G W I D F E A 0B YB cB dB eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 q r s t u v w x O z AB CB EB FB GB HB DB V M T U",2:"E B P J K L X Y Z a b c d e f g h i j k l m n o p lB mB nB oB R VB qB",16:"C"},G:{1:"ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB"},H:{1:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"U",2:"A B R VB",16:"C O"},L:{1:"S"},M:{1:"M"},N:{260:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{2:"PC"},R:{2:"QC"},S:{1:"RC"}},B:5,C:"KeyboardEvent.key"}},4053:function(B,e,r){"use strict";const t=typeof URL==="undefined"?r(8835).URL:URL;const n=(B,e)=>{return e.some(e=>e instanceof RegExp?e.test(B):e===B)};B.exports=((B,e)=>{e=Object.assign({defaultProtocol:"http:",normalizeProtocol:true,forceHttp:false,forceHttps:false,stripHash:true,stripWWW:true,removeQueryParameters:[/^utm_\w+/i],removeTrailingSlash:true,removeDirectoryIndex:false,sortQueryParameters:true},e);if(Reflect.has(e,"normalizeHttps")){e.forceHttp=e.normalizeHttps}if(Reflect.has(e,"normalizeHttp")){e.forceHttps=e.normalizeHttp}if(Reflect.has(e,"stripFragment")){e.stripHash=e.stripFragment}B=B.trim();const r=B.startsWith("//");const i=!r&&/^\.*\//.test(B);if(!i){B=B.replace(/^(?!(?:\w+:)?\/\/)|^\/\//,e.defaultProtocol)}const C=new t(B);if(e.forceHttp&&e.forceHttps){throw new Error("The `forceHttp` and `forceHttps` options cannot be used together")}if(e.forceHttp&&C.protocol==="https:"){C.protocol="http:"}if(e.forceHttps&&C.protocol==="http:"){C.protocol="https:"}if(e.stripHash){C.hash=""}if(C.pathname){C.pathname=C.pathname.replace(/((?![https?:]).)\/{2,}/g,(B,e)=>{if(/^(?!\/)/g.test(e)){return`${e}/`}return"/"})}if(C.pathname){C.pathname=decodeURI(C.pathname)}if(e.removeDirectoryIndex===true){e.removeDirectoryIndex=[/^index\.[a-z]+$/]}if(Array.isArray(e.removeDirectoryIndex)&&e.removeDirectoryIndex.length>0){let B=C.pathname.split("/");const r=B[B.length-1];if(n(r,e.removeDirectoryIndex)){B=B.slice(0,B.length-1);C.pathname=B.slice(1).join("/")+"/"}}if(C.hostname){C.hostname=C.hostname.replace(/\.$/,"");if(e.stripWWW&&/^www\.([a-z\-\d]{2,63})\.([a-z\.]{2,5})$/.test(C.hostname)){C.hostname=C.hostname.replace(/^www\./,"")}}if(Array.isArray(e.removeQueryParameters)){for(const B of[...C.searchParams.keys()]){if(n(B,e.removeQueryParameters)){C.searchParams.delete(B)}}}if(e.sortQueryParameters){C.searchParams.sort()}B=C.toString();if(e.removeTrailingSlash||C.pathname==="/"){B=B.replace(/\/$/,"")}if(r&&!e.normalizeProtocol){B=B.replace(/^http:\/\//,"//")}return B})},4057:function(B){B.exports={A:{A:{1:"A B",2:"I D F E iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G"},E:{1:"W I D F E A B C N H cB dB eB fB XB R U jB kB",2:"G 0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U",2:"E"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"KB G Q EC IB FC GC",132:"BC CC DC"},J:{1:"A",132:"D"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"Email, telephone & URL input types"}},4061:function(B){"use strict";B.exports=function hslaRegex(B){B=B||{};return B.exact?/^hsla\((\d+),\s*([\d.]+)%,\s*([\d.]+)%,\s*(\d*(?:\.\d+)?)\)$/:/hsla\((\d+),\s*([\d.]+)%,\s*([\d.]+)%,\s*(\d*(?:\.\d+)?)\)/gi}},4076:function(B,e,r){"use strict";e.__esModule=true;var t=r(699);Object.keys(t).forEach(function(B){if(B==="default"||B==="__esModule")return;e[B]=t[B]});var n=r(4226);Object.keys(n).forEach(function(B){if(B==="default"||B==="__esModule")return;e[B]=n[B]});var i=r(4586);Object.keys(i).forEach(function(B){if(B==="default"||B==="__esModule")return;e[B]=i[B]})},4114:function(B){B.exports={A:{A:{2:"I D F iB",8:"E A B"},B:{1:"K L y BB Q WB S",8:"C N H P J"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB",2:"sB KB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T nB oB R VB qB U",2:"E lB mB"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{1:"M"},N:{8:"A B"},O:{1:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{2:"QC"},S:{1:"RC"}},B:6,C:"Ogg/Theora video format"}},4127:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"K L",2:"C N H P J",257:"y BB Q WB S"},C:{2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v pB hB",257:"0 1 2 3 5 6 7 8 9 w O z AB LB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",1281:"4 x CB"},D:{2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v",257:"2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",388:"0 1 w x O z"},E:{2:"G W I D F E 0B YB cB dB eB",514:"A B C N H fB XB R U jB kB"},F:{2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o lB mB nB oB R VB qB U",16:"p q r s t",257:"0 1 2 3 4 5 6 7 8 9 u v w x O z AB CB EB FB GB HB DB V M T"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{2:"QC"},S:{257:"RC"}},B:5,C:"Push API"}},4137:function(B){B.exports={A:{A:{1:"B",2:"I D F E A iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"W I D F E A B C N H cB dB eB fB XB R U jB kB",2:"G 0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U"},G:{1:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB rB IB"},H:{2:"AC"},I:{1:"KB G Q DC EC IB FC GC",16:"BC CC"},J:{1:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"B",2:"A"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"PageTransitionEvent"}},4150:function(B){B.exports={A:{A:{2:"I D F E A iB",132:"B"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p"},E:{1:"D F E A B C N H eB fB XB R U jB kB",2:"G W I 0B YB cB",16:"dB"},F:{1:"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c lB mB nB oB R VB qB U"},G:{1:"F wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB uB vB"},H:{2:"AC"},I:{1:"Q FC GC",2:"KB G BC CC DC EC IB"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:5,C:"Rebeccapurple color"}},4154:function(B){B.exports={A:{A:{2:"I D F E A iB",164:"B"},B:{1:"y BB Q WB S",36:"C N H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K pB hB",36:"L X Y Z a b c d e f g h i j k l m n o p q r s t u v"},D:{1:"0 1 2 3 4 5 6 7 8 9 q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A",36:"B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",16:"G"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:5,C:"Screen Orientation"}},4174:function(B){B.exports={A:{A:{2:"E A B iB",8:"I D F"},B:{2:"C N H P J K L",8:"y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",129:"sB KB pB hB"},D:{1:"c",8:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"A B C N H XB R U jB kB",260:"G W I D F E 0B YB cB dB eB fB"},F:{2:"E",4:"B C lB mB nB oB R VB qB U",8:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{1:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",8:"YB rB IB"},H:{8:"AC"},I:{8:"KB G Q BC CC DC EC IB FC GC"},J:{1:"A",8:"D"},K:{8:"A B C O R VB U"},L:{8:"S"},M:{1:"M"},N:{2:"A B"},O:{4:"HC"},P:{8:"G IC JC KC LC MC XB NC OC"},Q:{8:"PC"},R:{8:"QC"},S:{1:"RC"}},B:2,C:"MathML"}},4208:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(2998));var n=_interopRequireDefault(r(2806));var i=_interopRequireDefault(r(9896));var C=_interopRequireDefault(r(8791));var o=r(1106);var a=r(2453);var s=r(9920);var u=r(5435);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function analyse(B,e){return r=>{r.each(r=>{if((0,n.default)(r,0,"*")&&(0,n.default)(r,1," ")&&(0,n.default)(r,2,u.HTML)&&(0,n.default)(r,3," ")&&r.at(4)){B.push(e,{identifier:a.SELECTOR,hack:r.toString()})}})}}var f=(0,C.default)([o.IE_5_5,o.IE_6],[s.RULE],function(B){if((0,i.default)(B)){return}(0,t.default)(analyse(this,B)).processSync(B.selector)});e.default=f;B.exports=e.default},4217:function(B,e){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var r=[["repeat-x",["repeat","no-repeat"]],["repeat-y",["no-repeat","repeat"]],["repeat",["repeat","repeat"]],["space",["space","space"]],["round",["round","round"]],["no-repeat",["no-repeat","no-repeat"]]];e.default=r;B.exports=e.default},4222:function(B,e,r){"use strict";e.__esModule=true;var t=r(5980);var n=_interopRequireDefault(t);var i=r(5544);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _classCallCheck(B,e){if(!(B instanceof e)){throw new TypeError("Cannot call a class as a function")}}function _possibleConstructorReturn(B,e){if(!B){throw new ReferenceError("this hasn't been initialised - super() hasn't been called")}return e&&(typeof e==="object"||typeof e==="function")?e:B}function _inherits(B,e){if(typeof e!=="function"&&e!==null){throw new TypeError("Super expression must either be null or a function, not "+typeof e)}B.prototype=Object.create(e&&e.prototype,{constructor:{value:B,enumerable:false,writable:true,configurable:true}});if(e)Object.setPrototypeOf?Object.setPrototypeOf(B,e):B.__proto__=e}var C=function(B){_inherits(Pseudo,B);function Pseudo(e){_classCallCheck(this,Pseudo);var r=_possibleConstructorReturn(this,B.call(this,e));r.type=i.PSEUDO;return r}Pseudo.prototype.toString=function toString(){var B=this.length?"("+this.map(String).join(",")+")":"";return[this.spaces.before,String(this.value),B,this.spaces.after].join("")};return Pseudo}(n.default);e.default=C;B.exports=e["default"]},4226:function(B,e,r){"use strict";e.__esModule=true;e.universal=e.tag=e.string=e.selector=e.root=e.pseudo=e.nesting=e.id=e.comment=e.combinator=e.className=e.attribute=void 0;var t=_interopRequireDefault(r(9430));var n=_interopRequireDefault(r(9688));var i=_interopRequireDefault(r(8915));var C=_interopRequireDefault(r(6762));var o=_interopRequireDefault(r(5220));var a=_interopRequireDefault(r(3035));var s=_interopRequireDefault(r(3562));var u=_interopRequireDefault(r(9873));var f=_interopRequireDefault(r(8620));var l=_interopRequireDefault(r(2916));var c=_interopRequireDefault(r(8511));var p=_interopRequireDefault(r(7383));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}var A=function attribute(B){return new t.default(B)};e.attribute=A;var d=function className(B){return new n.default(B)};e.className=d;var h=function combinator(B){return new i.default(B)};e.combinator=h;var E=function comment(B){return new C.default(B)};e.comment=E;var D=function id(B){return new o.default(B)};e.id=D;var v=function nesting(B){return new a.default(B)};e.nesting=v;var F=function pseudo(B){return new s.default(B)};e.pseudo=F;var G=function root(B){return new u.default(B)};e.root=G;var O=function selector(B){return new f.default(B)};e.selector=O;var M=function string(B){return new l.default(B)};e.string=M;var g=function tag(B){return new c.default(B)};e.tag=g;var I=function universal(B){return new p.default(B)};e.universal=I},4228:function(B){"use strict";const e=["PX","IN","CM","MM","EM","REM","POINTS","PC","EX","CH","VW","VH","VMIN","VMAX","%"];function isCSSLengthUnit(B){return e.indexOf(B.toUpperCase())>=0}B.exports=isCSSLengthUnit},4249:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"A B C N H fB XB R U jB kB",2:"G W I D F 0B YB cB dB eB",33:"E"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB",33:"xB yB"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:5,C:"CSS filter() function"}},4256:function(B,e,r){"use strict";e.__esModule=true;var t=r(5980);var n=_interopRequireDefault(t);var i=r(5544);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _classCallCheck(B,e){if(!(B instanceof e)){throw new TypeError("Cannot call a class as a function")}}function _possibleConstructorReturn(B,e){if(!B){throw new ReferenceError("this hasn't been initialised - super() hasn't been called")}return e&&(typeof e==="object"||typeof e==="function")?e:B}function _inherits(B,e){if(typeof e!=="function"&&e!==null){throw new TypeError("Super expression must either be null or a function, not "+typeof e)}B.prototype=Object.create(e&&e.prototype,{constructor:{value:B,enumerable:false,writable:true,configurable:true}});if(e)Object.setPrototypeOf?Object.setPrototypeOf(B,e):B.__proto__=e}var C=function(B){_inherits(Selector,B);function Selector(e){_classCallCheck(this,Selector);var r=_possibleConstructorReturn(this,B.call(this,e));r.type=i.SELECTOR;return r}return Selector}(n.default);e.default=C;B.exports=e["default"]},4288:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"K L y BB Q WB S",2:"C N H P J"},C:{1:"3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 1 2 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r"},E:{1:"B C N H XB R U jB kB",2:"G W I D F E A 0B YB cB dB eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e lB mB nB oB R VB qB U"},G:{1:"ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{1:"PC"},R:{1:"QC"},S:{2:"RC"}},B:1,C:"Minimum length attribute for input fields"}},4316:function(B){B.exports={A:{A:{1:"F E A B",2:"I D iB"},B:{2:"C N H P J K L y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j",2:"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"W I cB",2:"D F E A B C N H eB fB XB R U jB kB",16:"dB",129:"G 0B YB"},F:{1:"E B C P J K L lB mB nB oB R VB qB U",2:"0 1 2 3 4 5 6 7 8 9 X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{1:"rB IB tB uB vB",2:"F wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",129:"YB"},H:{1:"AC"},I:{1:"KB G BC CC DC EC IB FC",2:"Q GC"},J:{1:"D A"},K:{1:"A B C R VB U",2:"O"},L:{2:"S"},M:{2:"M"},N:{1:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:5,C:"display: run-in"}},4333:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(8762));var n=_interopRequireDefault(r(8347));var i=r(4642);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}const C=["medium","none","currentcolor"];var o=B=>{const e=(0,t.default)(B);if(!(0,i.isValidWsc)(e)){return(0,n.default)(B)}const r=[...e,""].reduceRight((B,e,r,t)=>{if(e===undefined||e.toLowerCase()===C[r]&&(!r||(t[r-1]||"").toLowerCase()!==e.toLowerCase())){return B}return e+" "+B}).trim();return(0,n.default)(r||"none")};e.default=o;B.exports=e.default},4351:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"H P J K L y BB Q WB S",2:"C N"},C:{1:"2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 1 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h"},E:{1:"C N H R U jB kB",2:"G W I D F E A B 0B YB cB dB eB fB XB"},F:{1:"0 1 2 3 4 5 6 7 8 9 K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{2:"QC"},S:{2:"RC"}},B:7,C:"Directory selection from file input"}},4364:function(B){B.exports={A:{A:{1:"F E A B",2:"I D iB"},B:{1:"C N H P J K L",4:"y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T",4:"G W I D F E A B C N H P J K MB NB OB PB QB RB SB TB UB y BB",16:"sB KB pB hB"},D:{4:"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",16:"G W I D F E A B C N H P J K L X Y Z a b c d"},E:{4:"I D F E A B C N H cB dB eB fB XB R U jB kB",16:"G W 0B YB"},F:{4:"0 1 2 3 4 5 6 7 8 9 C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T qB U",16:"E B lB mB nB oB R VB"},G:{4:"F vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB rB IB tB uB"},H:{2:"AC"},I:{4:"G Q EC IB FC GC",16:"KB BC CC DC"},J:{4:"D A"},K:{4:"O U",16:"A B C R VB"},L:{4:"S"},M:{1:"M"},N:{1:"A B"},O:{4:"HC"},P:{4:"G IC JC KC LC MC XB NC OC"},Q:{4:"PC"},R:{4:"QC"},S:{1:"RC"}},B:6,C:"X-Frame-Options HTTP header"}},4382:function(B,e,r){"use strict";e.__esModule=true;e.unescapeValue=unescapeValue;e.default=void 0;var t=_interopRequireDefault(r(9925));var n=_interopRequireDefault(r(7085));var i=_interopRequireDefault(r(2644));var C=r(8019);var o;function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _defineProperties(B,e){for(var r=0;r<e.length;r++){var t=e[r];t.enumerable=t.enumerable||false;t.configurable=true;if("value"in t)t.writable=true;Object.defineProperty(B,t.key,t)}}function _createClass(B,e,r){if(e)_defineProperties(B.prototype,e);if(r)_defineProperties(B,r);return B}function _inheritsLoose(B,e){B.prototype=Object.create(e.prototype);B.prototype.constructor=B;B.__proto__=e}var a=r(1669),s=a.deprecate;var u=/^('|")(.*)\1$/;var f=s(function(){},"Assigning an attribute a value containing characters that might need to be escaped is deprecated. "+"Call attribute.setValue() instead.");var l=s(function(){},"Assigning attr.quoted is deprecated and has no effect. Assign to attr.quoteMark instead.");var c=s(function(){},"Constructing an Attribute selector with a value without specifying quoteMark is deprecated. Note: The value should be unescaped now.");function unescapeValue(B){var e=false;var r=null;var t=B;var i=t.match(u);if(i){r=i[1];t=i[2]}t=(0,n.default)(t);if(t!==B){e=true}return{deprecatedUsage:e,unescaped:t,quoteMark:r}}function handleDeprecatedContructorOpts(B){if(B.quoteMark!==undefined){return B}if(B.value===undefined){return B}c();var e=unescapeValue(B.value),r=e.quoteMark,t=e.unescaped;if(!B.raws){B.raws={}}if(B.raws.value===undefined){B.raws.value=B.value}B.value=t;B.quoteMark=r;return B}var p=function(B){_inheritsLoose(Attribute,B);function Attribute(e){var r;if(e===void 0){e={}}r=B.call(this,handleDeprecatedContructorOpts(e))||this;r.type=C.ATTRIBUTE;r.raws=r.raws||{};Object.defineProperty(r.raws,"unquoted",{get:s(function(){return r.value},"attr.raws.unquoted is deprecated. Call attr.value instead."),set:s(function(){return r.value},"Setting attr.raws.unquoted is deprecated and has no effect. attr.value is unescaped by default now.")});r._constructed=true;return r}var e=Attribute.prototype;e.getQuotedValue=function getQuotedValue(B){if(B===void 0){B={}}var e=this._determineQuoteMark(B);var r=A[e];var n=(0,t.default)(this._value,r);return n};e._determineQuoteMark=function _determineQuoteMark(B){return B.smart?this.smartQuoteMark(B):this.preferredQuoteMark(B)};e.setValue=function setValue(B,e){if(e===void 0){e={}}this._value=B;this._quoteMark=this._determineQuoteMark(e);this._syncRawValue()};e.smartQuoteMark=function smartQuoteMark(B){var e=this.value;var r=e.replace(/[^']/g,"").length;var n=e.replace(/[^"]/g,"").length;if(r+n===0){var i=(0,t.default)(e,{isIdentifier:true});if(i===e){return Attribute.NO_QUOTE}else{var C=this.preferredQuoteMark(B);if(C===Attribute.NO_QUOTE){var o=this.quoteMark||B.quoteMark||Attribute.DOUBLE_QUOTE;var a=A[o];var s=(0,t.default)(e,a);if(s.length<i.length){return o}}return C}}else if(n===r){return this.preferredQuoteMark(B)}else if(n<r){return Attribute.DOUBLE_QUOTE}else{return Attribute.SINGLE_QUOTE}};e.preferredQuoteMark=function preferredQuoteMark(B){var e=B.preferCurrentQuoteMark?this.quoteMark:B.quoteMark;if(e===undefined){e=B.preferCurrentQuoteMark?B.quoteMark:this.quoteMark}if(e===undefined){e=Attribute.DOUBLE_QUOTE}return e};e._syncRawValue=function _syncRawValue(){var B=(0,t.default)(this._value,A[this.quoteMark]);if(B===this._value){if(this.raws){delete this.raws.value}}else{this.raws.value=B}};e._handleEscapes=function _handleEscapes(B,e){if(this._constructed){var r=(0,t.default)(e,{isIdentifier:true});if(r!==e){this.raws[B]=r}else{delete this.raws[B]}}};e._spacesFor=function _spacesFor(B){var e={before:"",after:""};var r=this.spaces[B]||{};var t=this.raws.spaces&&this.raws.spaces[B]||{};return Object.assign(e,r,t)};e._stringFor=function _stringFor(B,e,r){if(e===void 0){e=B}if(r===void 0){r=defaultAttrConcat}var t=this._spacesFor(e);return r(this.stringifyProperty(B),t)};e.offsetOf=function offsetOf(B){var e=1;var r=this._spacesFor("attribute");e+=r.before.length;if(B==="namespace"||B==="ns"){return this.namespace?e:-1}if(B==="attributeNS"){return e}e+=this.namespaceString.length;if(this.namespace){e+=1}if(B==="attribute"){return e}e+=this.stringifyProperty("attribute").length;e+=r.after.length;var t=this._spacesFor("operator");e+=t.before.length;var n=this.stringifyProperty("operator");if(B==="operator"){return n?e:-1}e+=n.length;e+=t.after.length;var i=this._spacesFor("value");e+=i.before.length;var C=this.stringifyProperty("value");if(B==="value"){return C?e:-1}e+=C.length;e+=i.after.length;var o=this._spacesFor("insensitive");e+=o.before.length;if(B==="insensitive"){return this.insensitive?e:-1}return-1};e.toString=function toString(){var B=this;var e=[this.rawSpaceBefore,"["];e.push(this._stringFor("qualifiedAttribute","attribute"));if(this.operator&&(this.value||this.value==="")){e.push(this._stringFor("operator"));e.push(this._stringFor("value"));e.push(this._stringFor("insensitiveFlag","insensitive",function(e,r){if(e.length>0&&!B.quoted&&r.before.length===0&&!(B.spaces.value&&B.spaces.value.after)){r.before=" "}return defaultAttrConcat(e,r)}))}e.push("]");e.push(this.rawSpaceAfter);return e.join("")};_createClass(Attribute,[{key:"quoted",get:function get(){var B=this.quoteMark;return B==="'"||B==='"'},set:function set(B){l()}},{key:"quoteMark",get:function get(){return this._quoteMark},set:function set(B){if(!this._constructed){this._quoteMark=B;return}if(this._quoteMark!==B){this._quoteMark=B;this._syncRawValue()}}},{key:"qualifiedAttribute",get:function get(){return this.qualifiedName(this.raws.attribute||this.attribute)}},{key:"insensitiveFlag",get:function get(){return this.insensitive?"i":""}},{key:"value",get:function get(){return this._value},set:function set(B){if(this._constructed){var e=unescapeValue(B),r=e.deprecatedUsage,t=e.unescaped,n=e.quoteMark;if(r){f()}if(t===this._value&&n===this._quoteMark){return}this._value=t;this._quoteMark=n;this._syncRawValue()}else{this._value=B}}},{key:"attribute",get:function get(){return this._attribute},set:function set(B){this._handleEscapes("attribute",B);this._attribute=B}}]);return Attribute}(i.default);e.default=p;p.NO_QUOTE=null;p.SINGLE_QUOTE="'";p.DOUBLE_QUOTE='"';var A=(o={"'":{quotes:"single",wrap:true},'"':{quotes:"double",wrap:true}},o[null]={isIdentifier:true},o);function defaultAttrConcat(B,e){return""+e.before+B+e.after}},4417:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(8791));var n=r(1106);var i=r(2453);var C=r(9920);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}var o=(0,t.default)([n.IE_8],[C.ATRULE],function(B){const e=B.params.trim();if(e.toLowerCase()==="\\0screen"){this.push(B,{identifier:i.MEDIA_QUERY,hack:e})}});e.default=o;B.exports=e.default},4419:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 Z a b c d e f g h i j k l m n o p q r s t u v w x O z",2:"sB KB G W I D F E A B C N H P J K L X Y JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB",322:"7 8 9 AB LB CB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",194:"Y Z a b c d e f g h i j k l m n o"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{322:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{1:"RC"}},B:7,C:"Scoped CSS"}},4427:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"H P J K L y BB Q WB S",2:"C N"},C:{1:"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q"},E:{1:"C N H R U jB kB",2:"G W I D F E A B 0B YB cB dB eB fB XB"},F:{1:"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d lB mB nB oB R VB qB U"},G:{1:"2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:5,C:"Beacon API"}},4488:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.agents=undefined;var t=r(6918);var n=r(9755);var i=r(4846);function unpackBrowserVersions(B){return Object.keys(B).reduce(function(e,r){e[n.browserVersions[r]]=B[r];return e},{})}var C=e.agents=Object.keys(i).reduce(function(B,e){var r=i[e];B[t.browsers[e]]=Object.keys(r).reduce(function(B,e){if(e==="A"){B.usage_global=unpackBrowserVersions(r[e])}else if(e==="C"){B.versions=r[e].reduce(function(B,e){if(e===""){B.push(null)}else{B.push(n.browserVersions[e])}return B},[])}else if(e==="D"){B.prefix_exceptions=unpackBrowserVersions(r[e])}else if(e==="E"){B.browser=r[e]}else if(e==="F"){B.release_date=Object.keys(r[e]).reduce(function(B,t){B[n.browserVersions[t]]=r[e][t];return B},{})}else{B.prefix=r[e]}return B},{});return B},{})},4492:function(B){B.exports={A:{A:{2:"I iB",2340:"D F E A B"},B:{2:"C N H P J K L",1025:"y BB Q WB S"},C:{2:"sB KB pB",513:"HB DB V M T MB NB OB PB QB RB SB TB UB y BB",545:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB hB"},D:{2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s",1025:"0 1 2 3 4 5 6 7 8 9 t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"A B C N H XB R U jB kB",2:"G W 0B YB cB",164:"I",4644:"D F E dB eB fB"},F:{2:"E B P J K L X Y Z a b c d e f lB mB nB oB R VB",545:"C qB U",1025:"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{1:"zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB",4260:"tB uB",4644:"F vB wB xB yB"},H:{2:"AC"},I:{2:"KB G BC CC DC EC IB FC GC",1025:"Q"},J:{2:"D",4260:"A"},K:{2:"A B R VB",545:"C U",1025:"O"},L:{1025:"S"},M:{545:"M"},N:{2340:"A B"},O:{1:"HC"},P:{1025:"G IC JC KC LC MC XB NC OC"},Q:{1025:"PC"},R:{1025:"QC"},S:{4097:"RC"}},B:7,C:"Crisp edges/pixelated images"}},4502:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"L y BB Q WB S",2:"C N H P J K"},C:{1:"HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB hB",8:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB"},D:{1:"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W",8:"I D F",132:"E A B C N H P J K L X Y Z a",260:"b c d e f g h i j"},E:{1:"H kB",2:"G W I D F E A B C N 0B YB cB dB eB fB XB R U jB"},F:{1:"0 1 2 3 4 5 6 7 8 9 X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E lB mB nB",8:"B oB",132:"R VB qB",260:"C P J K L U"},G:{1:"9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B"},H:{1:"AC"},I:{1:"Q IB FC GC",2:"KB BC CC DC",132:"G EC"},J:{2:"D A"},K:{1:"C O R VB U",2:"A",132:"B"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{8:"RC"}},B:7,C:"WebP image format"}},4528:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"EB FB GB HB DB V M T",2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"NC OC",2:"G IC JC KC LC MC XB"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:7,C:"IntersectionObserver V2"}},4533:function(B){B.exports=[{name:"nodejs",version:"0.2.0",date:"2011-08-26",lts:false,security:false},{name:"nodejs",version:"0.3.0",date:"2011-08-26",lts:false,security:false},{name:"nodejs",version:"0.4.0",date:"2011-08-26",lts:false,security:false},{name:"nodejs",version:"0.5.0",date:"2011-08-26",lts:false,security:false},{name:"nodejs",version:"0.6.0",date:"2011-11-04",lts:false,security:false},{name:"nodejs",version:"0.7.0",date:"2012-01-17",lts:false,security:false},{name:"nodejs",version:"0.8.0",date:"2012-06-22",lts:false,security:false},{name:"nodejs",version:"0.9.0",date:"2012-07-20",lts:false,security:false},{name:"nodejs",version:"0.10.0",date:"2013-03-11",lts:false,security:false},{name:"nodejs",version:"0.11.0",date:"2013-03-28",lts:false,security:false},{name:"nodejs",version:"0.12.0",date:"2015-02-06",lts:false,security:false},{name:"iojs",version:"1.0.0",date:"2015-01-14"},{name:"iojs",version:"1.1.0",date:"2015-02-03"},{name:"iojs",version:"1.2.0",date:"2015-02-11"},{name:"iojs",version:"1.3.0",date:"2015-02-20"},{name:"iojs",version:"1.5.0",date:"2015-03-06"},{name:"iojs",version:"1.6.0",date:"2015-03-20"},{name:"iojs",version:"2.0.0",date:"2015-05-04"},{name:"iojs",version:"2.1.0",date:"2015-05-24"},{name:"iojs",version:"2.2.0",date:"2015-06-01"},{name:"iojs",version:"2.3.0",date:"2015-06-13"},{name:"iojs",version:"2.4.0",date:"2015-07-17"},{name:"iojs",version:"2.5.0",date:"2015-07-28"},{name:"iojs",version:"3.0.0",date:"2015-08-04"},{name:"iojs",version:"3.1.0",date:"2015-08-19"},{name:"iojs",version:"3.2.0",date:"2015-08-25"},{name:"iojs",version:"3.3.0",date:"2015-09-02"},{name:"nodejs",version:"4.0.0",date:"2015-09-08",lts:false,security:false},{name:"nodejs",version:"4.1.0",date:"2015-09-17",lts:false,security:false},{name:"nodejs",version:"4.2.0",date:"2015-10-12",lts:"Argon",security:false},{name:"nodejs",version:"4.3.0",date:"2016-02-09",lts:"Argon",security:false},{name:"nodejs",version:"4.4.0",date:"2016-03-08",lts:"Argon",security:false},{name:"nodejs",version:"4.5.0",date:"2016-08-16",lts:"Argon",security:false},{name:"nodejs",version:"4.6.0",date:"2016-09-27",lts:"Argon",security:true},{name:"nodejs",version:"4.7.0",date:"2016-12-06",lts:"Argon",security:false},{name:"nodejs",version:"4.8.0",date:"2017-02-21",lts:"Argon",security:false},{name:"nodejs",version:"4.9.0",date:"2018-03-28",lts:"Argon",security:true},{name:"nodejs",version:"5.0.0",date:"2015-10-29",lts:false,security:false},{name:"nodejs",version:"5.1.0",date:"2015-11-17",lts:false,security:false},{name:"nodejs",version:"5.2.0",date:"2015-12-09",lts:false,security:false},{name:"nodejs",version:"5.3.0",date:"2015-12-15",lts:false,security:false},{name:"nodejs",version:"5.4.0",date:"2016-01-06",lts:false,security:false},{name:"nodejs",version:"5.5.0",date:"2016-01-21",lts:false,security:false},{name:"nodejs",version:"5.6.0",date:"2016-02-09",lts:false,security:false},{name:"nodejs",version:"5.7.0",date:"2016-02-23",lts:false,security:false},{name:"nodejs",version:"5.8.0",date:"2016-03-09",lts:false,security:false},{name:"nodejs",version:"5.9.0",date:"2016-03-16",lts:false,security:false},{name:"nodejs",version:"5.10.0",date:"2016-04-01",lts:false,security:false},{name:"nodejs",version:"5.11.0",date:"2016-04-21",lts:false,security:false},{name:"nodejs",version:"5.12.0",date:"2016-06-23",lts:false,security:false},{name:"nodejs",version:"6.0.0",date:"2016-04-26",lts:false,security:false},{name:"nodejs",version:"6.1.0",date:"2016-05-05",lts:false,security:false},{name:"nodejs",version:"6.2.0",date:"2016-05-17",lts:false,security:false},{name:"nodejs",version:"6.3.0",date:"2016-07-06",lts:false,security:false},{name:"nodejs",version:"6.4.0",date:"2016-08-12",lts:false,security:false},{name:"nodejs",version:"6.5.0",date:"2016-08-26",lts:false,security:false},{name:"nodejs",version:"6.6.0",date:"2016-09-14",lts:false,security:false},{name:"nodejs",version:"6.7.0",date:"2016-09-27",lts:false,security:true},{name:"nodejs",version:"6.8.0",date:"2016-10-12",lts:false,security:false},{name:"nodejs",version:"6.9.0",date:"2016-10-18",lts:"Boron",security:false},{name:"nodejs",version:"6.10.0",date:"2017-02-21",lts:"Boron",security:false},{name:"nodejs",version:"6.11.0",date:"2017-06-06",lts:"Boron",security:false},{name:"nodejs",version:"6.12.0",date:"2017-11-06",lts:"Boron",security:false},{name:"nodejs",version:"6.13.0",date:"2018-02-10",lts:"Boron",security:false},{name:"nodejs",version:"6.14.0",date:"2018-03-28",lts:"Boron",security:true},{name:"nodejs",version:"6.15.0",date:"2018-11-27",lts:"Boron",security:true},{name:"nodejs",version:"6.16.0",date:"2018-12-26",lts:"Boron",security:false},{name:"nodejs",version:"6.17.0",date:"2019-02-28",lts:"Boron",security:true},{name:"nodejs",version:"7.0.0",date:"2016-10-25",lts:false,security:false},{name:"nodejs",version:"7.1.0",date:"2016-11-08",lts:false,security:false},{name:"nodejs",version:"7.2.0",date:"2016-11-22",lts:false,security:false},{name:"nodejs",version:"7.3.0",date:"2016-12-20",lts:false,security:false},{name:"nodejs",version:"7.4.0",date:"2017-01-04",lts:false,security:false},{name:"nodejs",version:"7.5.0",date:"2017-01-31",lts:false,security:false},{name:"nodejs",version:"7.6.0",date:"2017-02-21",lts:false,security:false},{name:"nodejs",version:"7.7.0",date:"2017-02-28",lts:false,security:false},{name:"nodejs",version:"7.8.0",date:"2017-03-29",lts:false,security:false},{name:"nodejs",version:"7.9.0",date:"2017-04-11",lts:false,security:false},{name:"nodejs",version:"7.10.0",date:"2017-05-02",lts:false,security:false},{name:"nodejs",version:"8.0.0",date:"2017-05-30",lts:false,security:false},{name:"nodejs",version:"8.1.0",date:"2017-06-08",lts:false,security:false},{name:"nodejs",version:"8.2.0",date:"2017-07-19",lts:false,security:false},{name:"nodejs",version:"8.3.0",date:"2017-08-08",lts:false,security:false},{name:"nodejs",version:"8.4.0",date:"2017-08-15",lts:false,security:false},{name:"nodejs",version:"8.5.0",date:"2017-09-12",lts:false,security:false},{name:"nodejs",version:"8.6.0",date:"2017-09-26",lts:false,security:false},{name:"nodejs",version:"8.7.0",date:"2017-10-11",lts:false,security:false},{name:"nodejs",version:"8.8.0",date:"2017-10-24",lts:false,security:false},{name:"nodejs",version:"8.9.0",date:"2017-10-31",lts:"Carbon",security:false},{name:"nodejs",version:"8.10.0",date:"2018-03-06",lts:"Carbon",security:false},{name:"nodejs",version:"8.11.0",date:"2018-03-28",lts:"Carbon",security:true},{name:"nodejs",version:"8.12.0",date:"2018-09-10",lts:"Carbon",security:false},{name:"nodejs",version:"8.13.0",date:"2018-11-20",lts:"Carbon",security:false},{name:"nodejs",version:"8.14.0",date:"2018-11-27",lts:"Carbon",security:true},{name:"nodejs",version:"8.15.0",date:"2018-12-26",lts:"Carbon",security:false},{name:"nodejs",version:"8.16.0",date:"2019-04-16",lts:"Carbon",security:false},{name:"nodejs",version:"8.17.0",date:"2019-12-17",lts:"Carbon",security:true},{name:"nodejs",version:"9.0.0",date:"2017-10-31",lts:false,security:false},{name:"nodejs",version:"9.1.0",date:"2017-11-07",lts:false,security:false},{name:"nodejs",version:"9.2.0",date:"2017-11-14",lts:false,security:false},{name:"nodejs",version:"9.3.0",date:"2017-12-12",lts:false,security:false},{name:"nodejs",version:"9.4.0",date:"2018-01-10",lts:false,security:false},{name:"nodejs",version:"9.5.0",date:"2018-01-31",lts:false,security:false},{name:"nodejs",version:"9.6.0",date:"2018-02-21",lts:false,security:false},{name:"nodejs",version:"9.7.0",date:"2018-03-01",lts:false,security:false},{name:"nodejs",version:"9.8.0",date:"2018-03-07",lts:false,security:false},{name:"nodejs",version:"9.9.0",date:"2018-03-21",lts:false,security:false},{name:"nodejs",version:"9.10.0",date:"2018-03-28",lts:false,security:true},{name:"nodejs",version:"9.11.0",date:"2018-04-04",lts:false,security:false},{name:"nodejs",version:"10.0.0",date:"2018-04-24",lts:false,security:false},{name:"nodejs",version:"10.1.0",date:"2018-05-08",lts:false,security:false},{name:"nodejs",version:"10.2.0",date:"2018-05-23",lts:false,security:false},{name:"nodejs",version:"10.3.0",date:"2018-05-29",lts:false,security:false},{name:"nodejs",version:"10.4.0",date:"2018-06-06",lts:false,security:false},{name:"nodejs",version:"10.5.0",date:"2018-06-20",lts:false,security:false},{name:"nodejs",version:"10.6.0",date:"2018-07-04",lts:false,security:false},{name:"nodejs",version:"10.7.0",date:"2018-07-18",lts:false,security:false},{name:"nodejs",version:"10.8.0",date:"2018-08-01",lts:false,security:false},{name:"nodejs",version:"10.9.0",date:"2018-08-15",lts:false,security:false},{name:"nodejs",version:"10.10.0",date:"2018-09-06",lts:false,security:false},{name:"nodejs",version:"10.11.0",date:"2018-09-19",lts:false,security:false},{name:"nodejs",version:"10.12.0",date:"2018-10-10",lts:false,security:false},{name:"nodejs",version:"10.13.0",date:"2018-10-30",lts:"Dubnium",security:false},{name:"nodejs",version:"10.14.0",date:"2018-11-27",lts:"Dubnium",security:true},{name:"nodejs",version:"10.15.0",date:"2018-12-26",lts:"Dubnium",security:false},{name:"nodejs",version:"10.16.0",date:"2019-05-28",lts:"Dubnium",security:false},{name:"nodejs",version:"10.17.0",date:"2019-10-21",lts:"Dubnium",security:false},{name:"nodejs",version:"10.18.0",date:"2019-12-16",lts:"Dubnium",security:true},{name:"nodejs",version:"10.19.0",date:"2020-02-05",lts:"Dubnium",security:true},{name:"nodejs",version:"10.20.0",date:"2020-03-24",lts:"Dubnium",security:false},{name:"nodejs",version:"10.21.0",date:"2020-06-02",lts:"Dubnium",security:true},{name:"nodejs",version:"10.22.0",date:"2020-07-21",lts:"Dubnium",security:false},{name:"nodejs",version:"11.0.0",date:"2018-10-23",lts:false,security:false},{name:"nodejs",version:"11.1.0",date:"2018-10-30",lts:false,security:false},{name:"nodejs",version:"11.2.0",date:"2018-11-15",lts:false,security:false},{name:"nodejs",version:"11.3.0",date:"2018-11-27",lts:false,security:true},{name:"nodejs",version:"11.4.0",date:"2018-12-07",lts:false,security:false},{name:"nodejs",version:"11.5.0",date:"2018-12-18",lts:false,security:false},{name:"nodejs",version:"11.6.0",date:"2018-12-26",lts:false,security:false},{name:"nodejs",version:"11.7.0",date:"2019-01-17",lts:false,security:false},{name:"nodejs",version:"11.8.0",date:"2019-01-24",lts:false,security:false},{name:"nodejs",version:"11.9.0",date:"2019-01-30",lts:false,security:false},{name:"nodejs",version:"11.10.0",date:"2019-02-14",lts:false,security:false},{name:"nodejs",version:"11.11.0",date:"2019-03-05",lts:false,security:false},{name:"nodejs",version:"11.12.0",date:"2019-03-14",lts:false,security:false},{name:"nodejs",version:"11.13.0",date:"2019-03-28",lts:false,security:false},{name:"nodejs",version:"11.14.0",date:"2019-04-10",lts:false,security:false},{name:"nodejs",version:"11.15.0",date:"2019-04-30",lts:false,security:false},{name:"nodejs",version:"12.0.0",date:"2019-04-23",lts:false,security:false},{name:"nodejs",version:"12.1.0",date:"2019-04-29",lts:false,security:false},{name:"nodejs",version:"12.2.0",date:"2019-05-07",lts:false,security:false},{name:"nodejs",version:"12.3.0",date:"2019-05-21",lts:false,security:false},{name:"nodejs",version:"12.4.0",date:"2019-06-04",lts:false,security:false},{name:"nodejs",version:"12.5.0",date:"2019-06-26",lts:false,security:false},{name:"nodejs",version:"12.6.0",date:"2019-07-03",lts:false,security:false},{name:"nodejs",version:"12.7.0",date:"2019-07-23",lts:false,security:false},{name:"nodejs",version:"12.8.0",date:"2019-08-06",lts:false,security:false},{name:"nodejs",version:"12.9.0",date:"2019-08-20",lts:false,security:false},{name:"nodejs",version:"12.10.0",date:"2019-09-04",lts:false,security:false},{name:"nodejs",version:"12.11.0",date:"2019-09-25",lts:false,security:false},{name:"nodejs",version:"12.12.0",date:"2019-10-11",lts:false,security:false},{name:"nodejs",version:"12.13.0",date:"2019-10-21",lts:"Erbium",security:false},{name:"nodejs",version:"12.14.0",date:"2019-12-16",lts:"Erbium",security:true},{name:"nodejs",version:"12.15.0",date:"2020-02-05",lts:"Erbium",security:true},{name:"nodejs",version:"12.16.0",date:"2020-02-11",lts:"Erbium",security:false},{name:"nodejs",version:"12.17.0",date:"2020-05-26",lts:"Erbium",security:false},{name:"nodejs",version:"12.18.0",date:"2020-06-02",lts:"Erbium",security:true},{name:"nodejs",version:"13.0.0",date:"2019-10-10",lts:false,security:false},{name:"nodejs",version:"13.1.0",date:"2019-11-05",lts:false,security:false},{name:"nodejs",version:"13.2.0",date:"2019-11-21",lts:false,security:false},{name:"nodejs",version:"13.3.0",date:"2019-12-03",lts:false,security:false},{name:"nodejs",version:"13.4.0",date:"2019-12-17",lts:false,security:true},{name:"nodejs",version:"13.5.0",date:"2019-12-18",lts:false,security:false},{name:"nodejs",version:"13.6.0",date:"2020-01-07",lts:false,security:false},{name:"nodejs",version:"13.7.0",date:"2020-01-21",lts:false,security:false},{name:"nodejs",version:"13.8.0",date:"2020-02-05",lts:false,security:true},{name:"nodejs",version:"13.9.0",date:"2020-02-18",lts:false,security:false},{name:"nodejs",version:"13.10.0",date:"2020-03-03",lts:false,security:false},{name:"nodejs",version:"13.11.0",date:"2020-03-12",lts:false,security:false},{name:"nodejs",version:"13.12.0",date:"2020-03-26",lts:false,security:false},{name:"nodejs",version:"13.13.0",date:"2020-04-14",lts:false,security:false},{name:"nodejs",version:"13.14.0",date:"2020-04-28",lts:false,security:false},{name:"nodejs",version:"14.0.0",date:"2020-04-21",lts:false,security:false},{name:"nodejs",version:"14.1.0",date:"2020-04-29",lts:false,security:false},{name:"nodejs",version:"14.2.0",date:"2020-05-05",lts:false,security:false},{name:"nodejs",version:"14.3.0",date:"2020-05-19",lts:false,security:false},{name:"nodejs",version:"14.4.0",date:"2020-06-02",lts:false,security:true},{name:"nodejs",version:"14.5.0",date:"2020-06-30",lts:false,security:false},{name:"nodejs",version:"14.6.0",date:"2020-07-15",lts:false,security:false}]},4536:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(423));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}var n=(...B)=>B.map(t.default).join(" ");e.default=n;B.exports=e.default},4537:function(B,e){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=getArguments;function getArguments(B){return B.nodes.reduce((B,e)=>{if(e.type!=="div"){B[B.length-1].push(e)}else{B.push([])}return B},[[]])}B.exports=e.default},4549:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"RB SB TB UB y BB",2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB pB hB"},D:{1:"y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB"},E:{1:"H jB kB",2:"G W I D F E A B 0B YB cB dB eB fB XB",132:"C N R U"},F:{1:"DB V M T",2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB lB mB nB oB R VB qB U"},G:{1:"8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B",132:"2B 3B 4B 5B 6B 7B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"OC",2:"G IC JC KC LC MC XB NC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:5,C:"CSS math functions min(), max() and clamp()"}},4553:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"M T MB NB OB PB QB RB SB TB UB y BB",2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB pB hB",194:"HB DB V"},D:{1:"V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB"},E:{1:"H kB",2:"G W I D F E A B C N 0B YB cB dB eB fB XB R U jB"},F:{1:"6 7 8 9 AB CB EB FB GB HB DB V M T",2:"0 1 2 3 4 5 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z lB mB nB oB R VB qB U"},G:{1:"9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"MC XB NC OC",2:"G IC JC KC LC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:6,C:"BigInt"}},4562:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"N H P J K L",132:"y BB Q WB S",322:"C"},C:{1:"0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z pB hB"},D:{2:"G W I D F E A B C N H P J K L X Y Z a b c d e f",132:"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"E B C lB mB nB oB R VB qB U",132:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G BC CC DC EC IB FC GC",132:"Q"},J:{2:"D A"},K:{2:"A B C R VB U",132:"O"},L:{132:"S"},M:{1:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G",132:"IC JC KC LC MC XB NC OC"},Q:{132:"PC"},R:{132:"QC"},S:{1:"RC"}},B:6,C:"asm.js"}},4566:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=r(2043);var n=_interopRequireDefault(r(6486));var i=r(5433);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}const C=B=>parseFloat(B.value);function reduce(B){if(B.type!=="function"){return false}if(!B.value){return}const e=B.value.toLowerCase();if(e==="steps"){if(B.nodes[0].type==="word"&&C(B.nodes[0])===1&&B.nodes[2]&&B.nodes[2].type==="word"&&(B.nodes[2].value.toLowerCase()==="start"||B.nodes[2].value.toLowerCase()==="jump-start")){B.type="word";B.value="step-start";delete B.nodes;return}if(B.nodes[0].type==="word"&&C(B.nodes[0])===1&&B.nodes[2]&&B.nodes[2].type==="word"&&(B.nodes[2].value.toLowerCase()==="end"||B.nodes[2].value.toLowerCase()==="jump-end")){B.type="word";B.value="step-end";delete B.nodes;return}if(B.nodes[2]&&B.nodes[2].type==="word"&&(B.nodes[2].value.toLowerCase()==="end"||B.nodes[2].value.toLowerCase()==="jump-end")){B.nodes=[B.nodes[0]];return}return false}if(e==="cubic-bezier"){const e=B.nodes.filter((B,e)=>{return e%2===0}).map(C);if(e.length!==4){return}const r=(0,i.getMatch)([["ease",[.25,.1,.25,1]],["linear",[0,0,1,1]],["ease-in",[.42,0,1,1]],["ease-out",[0,0,.58,1]],["ease-in-out",[.42,0,.58,1]]])(e);if(r){B.type="word";B.value=r;delete B.nodes;return}}}function transform(B){return(0,n.default)(B).walk(reduce).toString()}var o=(0,t.plugin)("postcss-normalize-timing-functions",()=>{return B=>{const e={};B.walkDecls(/^(-\w+-)?(animation|transition)(-timing-function)?$/i,B=>{const r=B.value;if(e[r]){B.value=e[r];return}const t=transform(r);B.value=t;e[r]=t})}});e.default=o;B.exports=e.default},4571:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J",1028:"K L"},C:{2:"0 1 2 3 4 5 6 7 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB",132:"8",578:"9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{1:"2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},E:{1:"C N H R U jB kB",2:"G W I D F E A 0B YB cB dB eB fB XB",322:"B"},F:{1:"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o lB mB nB oB R VB qB U"},G:{1:"2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB",322:"1B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{578:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:4,C:"Resource Hints: preload"}},4586:function(B,e,r){"use strict";e.__esModule=true;e.isNode=isNode;e.isPseudoElement=isPseudoElement;e.isPseudoClass=isPseudoClass;e.isContainer=isContainer;e.isNamespace=isNamespace;e.isUniversal=e.isTag=e.isString=e.isSelector=e.isRoot=e.isPseudo=e.isNesting=e.isIdentifier=e.isComment=e.isCombinator=e.isClassName=e.isAttribute=void 0;var t=r(699);var n;var i=(n={},n[t.ATTRIBUTE]=true,n[t.CLASS]=true,n[t.COMBINATOR]=true,n[t.COMMENT]=true,n[t.ID]=true,n[t.NESTING]=true,n[t.PSEUDO]=true,n[t.ROOT]=true,n[t.SELECTOR]=true,n[t.STRING]=true,n[t.TAG]=true,n[t.UNIVERSAL]=true,n);function isNode(B){return typeof B==="object"&&i[B.type]}function isNodeType(B,e){return isNode(e)&&e.type===B}var C=isNodeType.bind(null,t.ATTRIBUTE);e.isAttribute=C;var o=isNodeType.bind(null,t.CLASS);e.isClassName=o;var a=isNodeType.bind(null,t.COMBINATOR);e.isCombinator=a;var s=isNodeType.bind(null,t.COMMENT);e.isComment=s;var u=isNodeType.bind(null,t.ID);e.isIdentifier=u;var f=isNodeType.bind(null,t.NESTING);e.isNesting=f;var l=isNodeType.bind(null,t.PSEUDO);e.isPseudo=l;var c=isNodeType.bind(null,t.ROOT);e.isRoot=c;var p=isNodeType.bind(null,t.SELECTOR);e.isSelector=p;var A=isNodeType.bind(null,t.STRING);e.isString=A;var d=isNodeType.bind(null,t.TAG);e.isTag=d;var h=isNodeType.bind(null,t.UNIVERSAL);e.isUniversal=h;function isPseudoElement(B){return l(B)&&B.value&&(B.value.startsWith("::")||B.value===":before"||B.value===":after")}function isPseudoClass(B){return l(B)&&!isPseudoElement(B)}function isContainer(B){return!!(isNode(B)&&B.walk)}function isNamespace(B){return C(B)||d(B)}},4587:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(2998));var n=_interopRequireDefault(r(2806));var i=_interopRequireDefault(r(9896));var C=_interopRequireDefault(r(8791));var o=r(1106);var a=r(2453);var s=r(9920);var u=r(5435);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function analyse(B,e){return r=>{r.each(r=>{if((0,n.default)(r,0,u.HTML)&&(0,n.default)(r,1,":first-child")&&(0,n.default)(r,2," ")&&r.at(3)){B.push(e,{identifier:a.SELECTOR,hack:r.toString()})}})}}var f=(0,C.default)([o.OP_9],[s.RULE],function(B){if((0,i.default)(B)){return}(0,t.default)(analyse(this,B)).processSync(B.selector)});e.default=f;B.exports=e.default},4631:function(B,e,r){"use strict";e.__esModule=true;e.default=void 0;var t=_interopRequireDefault(r(4685));var n=r(8019);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _defineProperties(B,e){for(var r=0;r<e.length;r++){var t=e[r];t.enumerable=t.enumerable||false;t.configurable=true;if("value"in t)t.writable=true;Object.defineProperty(B,t.key,t)}}function _createClass(B,e,r){if(e)_defineProperties(B.prototype,e);if(r)_defineProperties(B,r);return B}function _inheritsLoose(B,e){B.prototype=Object.create(e.prototype);B.prototype.constructor=B;B.__proto__=e}var i=function(B){_inheritsLoose(Root,B);function Root(e){var r;r=B.call(this,e)||this;r.type=n.ROOT;return r}var e=Root.prototype;e.toString=function toString(){var B=this.reduce(function(B,e){B.push(String(e));return B},[]).join(",");return this.trailingComma?B+",":B};e.error=function error(B,e){if(this._error){return this._error(B,e)}else{return new Error(B)}};_createClass(Root,[{key:"errorGenerator",set:function set(B){this._error=B}}]);return Root}(t.default);e.default=i;B.exports=e.default},4642:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.isStyle=isStyle;e.isWidth=isWidth;e.isColor=isColor;e.isValidWsc=isValidWsc;var t=_interopRequireDefault(r(9956));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}const n=["thin","medium","thick"];const i=["none","hidden","dotted","dashed","solid","double","groove","ridge","inset","outset"];const C=Object.keys(t.default);function isStyle(B){return B&&!!~i.indexOf(B.toLowerCase())}function isWidth(B){return B&&!!~n.indexOf(B.toLowerCase())||/^(\d+(\.\d+)?|\.\d+)(\w+)?$/.test(B)}function isColor(B){if(!B){return false}B=B.toLowerCase();if(/rgba?\(/.test(B)){return true}if(/hsla?\(/.test(B)){return true}if(/#([0-9a-z]{6}|[0-9a-z]{3})/.test(B)){return true}if(B==="transparent"){return true}if(B==="currentcolor"){return true}return!!~C.indexOf(B)}function isValidWsc(B){const e=isWidth(B[0]);const r=isStyle(B[1]);const t=isColor(B[2]);return e&&r||e&&t||r&&t}},4643:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w"},E:{1:"F E A B C N H eB fB XB R U jB kB",2:"G W I D 0B YB cB dB"},F:{1:"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j lB mB nB oB R VB qB U"},G:{1:"F wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB uB vB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D",16:"A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:6,C:"Array.prototype.findIndex"}},4651:function(B){var e="-".charCodeAt(0);var r="+".charCodeAt(0);var t=".".charCodeAt(0);var n="e".charCodeAt(0);var i="E".charCodeAt(0);function likeNumber(B){var n=B.charCodeAt(0);var i;if(n===r||n===e){i=B.charCodeAt(1);if(i>=48&&i<=57){return true}var C=B.charCodeAt(2);if(i===t&&C>=48&&C<=57){return true}return false}if(n===t){i=B.charCodeAt(1);if(i>=48&&i<=57){return true}return false}if(n>=48&&n<=57){return true}return false}B.exports=function(B){var C=0;var o=B.length;var a;var s;var u;if(o===0||!likeNumber(B)){return false}a=B.charCodeAt(C);if(a===r||a===e){C++}while(C<o){a=B.charCodeAt(C);if(a<48||a>57){break}C+=1}a=B.charCodeAt(C);s=B.charCodeAt(C+1);if(a===t&&s>=48&&s<=57){C+=2;while(C<o){a=B.charCodeAt(C);if(a<48||a>57){break}C+=1}}a=B.charCodeAt(C);s=B.charCodeAt(C+1);u=B.charCodeAt(C+2);if((a===n||a===i)&&(s>=48&&s<=57||(s===r||s===e)&&u>=48&&u<=57)){C+=s===r||s===e?3:2;while(C<o){a=B.charCodeAt(C);if(a<48||a>57){break}C+=1}}return{number:B.slice(0,C),unit:B.slice(C)}}},4652:function(B){B.exports={A:{A:{1:"E A B",2:"I D F iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c"},E:{1:"D F E A B C N H eB fB XB R U jB kB",2:"G W I 0B YB cB dB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T nB oB R VB qB U",2:"E lB mB"},G:{1:"F vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB uB"},H:{1:"AC"},I:{1:"Q FC GC",2:"KB G BC CC DC EC IB"},J:{1:"A",2:"D"},K:{1:"B C O R VB U",2:"A"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"CSS background-position edge offsets"}},4666:function(B){B.exports={A:{A:{2:"I D iB",132:"F E",260:"A B"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB",2:"sB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H cB dB eB fB XB R U jB kB",2:"0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U",2:"E"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{1:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{4:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"Cross-document messaging"}},4673:function(B){B.exports={A:{A:{1:"A B",2:"I D F E iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",16:"G W I D F E A B C N H"},E:{1:"W I D F E A B C N H cB dB eB fB XB R U jB kB",2:"G 0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",16:"E lB",132:"B C mB nB oB R VB qB U"},G:{1:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB"},H:{132:"AC"},I:{1:"KB G Q DC EC IB FC GC",16:"BC CC"},J:{1:"D A"},K:{1:"O",132:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:7,C:":optional CSS pseudo-class"}},4676:function(B){B.exports={A:{A:{1:"E A B",4:"I D F iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{1:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:2,C:"CSS3 Opacity"}},4682:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(2043));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}let n="charset";var i=t.default.plugin("postcss-normalize-"+n,(B={})=>{return e=>{let r;let i;let C=/[^\x00-\x7F]/;e.walk(B=>{if(B.type==="atrule"&&B.name===n){if(!r){r=B}B.remove()}else if(!i&&B.parent===e&&C.test(B)){i=B}});if(i){if(!r&&B.add!==false){r=t.default.atRule({name:n,params:'"utf-8"'})}if(r){r.source=i.source;e.prepend(r)}}}});e.default=i;B.exports=e.default},4684:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"N H P J K L y BB Q WB S",16:"C"},C:{1:"0 1 2 3 4 5 6 7 8 9 b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b"},E:{1:"D F E A B C N H dB eB fB XB R U jB kB",2:"G W 0B YB cB",16:"I"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U"},G:{1:"F vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB uB"},H:{2:"AC"},I:{1:"Q FC GC",2:"KB G BC CC DC EC IB"},J:{1:"A",2:"D"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"ChildNode.remove()"}},4685:function(B,e,r){"use strict";e.__esModule=true;e.default=void 0;var t=_interopRequireDefault(r(3583));var n=_interopRequireWildcard(r(8019));function _interopRequireWildcard(B){if(B&&B.__esModule){return B}else{var e={};if(B!=null){for(var r in B){if(Object.prototype.hasOwnProperty.call(B,r)){var t=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor(B,r):{};if(t.get||t.set){Object.defineProperty(e,r,t)}else{e[r]=B[r]}}}}e.default=B;return e}}function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _defineProperties(B,e){for(var r=0;r<e.length;r++){var t=e[r];t.enumerable=t.enumerable||false;t.configurable=true;if("value"in t)t.writable=true;Object.defineProperty(B,t.key,t)}}function _createClass(B,e,r){if(e)_defineProperties(B.prototype,e);if(r)_defineProperties(B,r);return B}function _inheritsLoose(B,e){B.prototype=Object.create(e.prototype);B.prototype.constructor=B;B.__proto__=e}var i=function(B){_inheritsLoose(Container,B);function Container(e){var r;r=B.call(this,e)||this;if(!r.nodes){r.nodes=[]}return r}var e=Container.prototype;e.append=function append(B){B.parent=this;this.nodes.push(B);return this};e.prepend=function prepend(B){B.parent=this;this.nodes.unshift(B);return this};e.at=function at(B){return this.nodes[B]};e.index=function index(B){if(typeof B==="number"){return B}return this.nodes.indexOf(B)};e.removeChild=function removeChild(B){B=this.index(B);this.at(B).parent=undefined;this.nodes.splice(B,1);var e;for(var r in this.indexes){e=this.indexes[r];if(e>=B){this.indexes[r]=e-1}}return this};e.removeAll=function removeAll(){for(var B=this.nodes,e=Array.isArray(B),r=0,B=e?B:B[Symbol.iterator]();;){var t;if(e){if(r>=B.length)break;t=B[r++]}else{r=B.next();if(r.done)break;t=r.value}var n=t;n.parent=undefined}this.nodes=[];return this};e.empty=function empty(){return this.removeAll()};e.insertAfter=function insertAfter(B,e){e.parent=this;var r=this.index(B);this.nodes.splice(r+1,0,e);e.parent=this;var t;for(var n in this.indexes){t=this.indexes[n];if(r<=t){this.indexes[n]=t+1}}return this};e.insertBefore=function insertBefore(B,e){e.parent=this;var r=this.index(B);this.nodes.splice(r,0,e);e.parent=this;var t;for(var n in this.indexes){t=this.indexes[n];if(t<=r){this.indexes[n]=t+1}}return this};e._findChildAtPosition=function _findChildAtPosition(B,e){var r=undefined;this.each(function(t){if(t.atPosition){var n=t.atPosition(B,e);if(n){r=n;return false}}else if(t.isAtPosition(B,e)){r=t;return false}});return r};e.atPosition=function atPosition(B,e){if(this.isAtPosition(B,e)){return this._findChildAtPosition(B,e)||this}else{return undefined}};e._inferEndPosition=function _inferEndPosition(){if(this.last&&this.last.source&&this.last.source.end){this.source=this.source||{};this.source.end=this.source.end||{};Object.assign(this.source.end,this.last.source.end)}};e.each=function each(B){if(!this.lastEach){this.lastEach=0}if(!this.indexes){this.indexes={}}this.lastEach++;var e=this.lastEach;this.indexes[e]=0;if(!this.length){return undefined}var r,t;while(this.indexes[e]<this.length){r=this.indexes[e];t=B(this.at(r),r);if(t===false){break}this.indexes[e]+=1}delete this.indexes[e];if(t===false){return false}};e.walk=function walk(B){return this.each(function(e,r){var t=B(e,r);if(t!==false&&e.length){t=e.walk(B)}if(t===false){return false}})};e.walkAttributes=function walkAttributes(B){var e=this;return this.walk(function(r){if(r.type===n.ATTRIBUTE){return B.call(e,r)}})};e.walkClasses=function walkClasses(B){var e=this;return this.walk(function(r){if(r.type===n.CLASS){return B.call(e,r)}})};e.walkCombinators=function walkCombinators(B){var e=this;return this.walk(function(r){if(r.type===n.COMBINATOR){return B.call(e,r)}})};e.walkComments=function walkComments(B){var e=this;return this.walk(function(r){if(r.type===n.COMMENT){return B.call(e,r)}})};e.walkIds=function walkIds(B){var e=this;return this.walk(function(r){if(r.type===n.ID){return B.call(e,r)}})};e.walkNesting=function walkNesting(B){var e=this;return this.walk(function(r){if(r.type===n.NESTING){return B.call(e,r)}})};e.walkPseudos=function walkPseudos(B){var e=this;return this.walk(function(r){if(r.type===n.PSEUDO){return B.call(e,r)}})};e.walkTags=function walkTags(B){var e=this;return this.walk(function(r){if(r.type===n.TAG){return B.call(e,r)}})};e.walkUniversals=function walkUniversals(B){var e=this;return this.walk(function(r){if(r.type===n.UNIVERSAL){return B.call(e,r)}})};e.split=function split(B){var e=this;var r=[];return this.reduce(function(t,n,i){var C=B.call(e,n);r.push(n);if(C){t.push(r);r=[]}else if(i===e.length-1){t.push(r)}return t},[])};e.map=function map(B){return this.nodes.map(B)};e.reduce=function reduce(B,e){return this.nodes.reduce(B,e)};e.every=function every(B){return this.nodes.every(B)};e.some=function some(B){return this.nodes.some(B)};e.filter=function filter(B){return this.nodes.filter(B)};e.sort=function sort(B){return this.nodes.sort(B)};e.toString=function toString(){return this.map(String).join("")};_createClass(Container,[{key:"first",get:function get(){return this.at(0)}},{key:"last",get:function get(){return this.at(this.length-1)}},{key:"length",get:function get(){return this.nodes.length}}]);return Container}(t.default);e.default=i;B.exports=e.default},4695:function(B){B.exports={A:{A:{2:"I D F E iB",132:"A B"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB hB",2:"sB KB pB"},D:{1:"0 1 2 3 4 5 6 7 8 9 I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W"},E:{1:"I D F E A B C N H dB eB fB XB R U jB kB",2:"G W 0B YB cB"},F:{1:"0 1 2 3 4 5 6 7 8 9 C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T R VB qB U",2:"E B lB mB nB oB"},G:{1:"F uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB"},H:{2:"AC"},I:{1:"KB G Q EC IB FC GC",2:"BC CC DC"},J:{1:"A",2:"D"},K:{1:"C O R VB U",2:"A B"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:5,C:"FileReader API"}},4699:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",260:"C N H P J K L"},C:{1:"7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X pB hB",66:"Y Z",260:"0 1 2 3 4 5 6 a b c d e f g h i j k l m n o p q r s t u v w x O z"},D:{1:"JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f",260:"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x O z AB LB CB"},E:{1:"E A B C N H fB XB R U jB kB",2:"G W I D F 0B YB cB dB eB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB",132:"U"},G:{1:"xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB"},H:{132:"AC"},I:{1:"Q FC GC",2:"KB G BC CC DC EC IB"},J:{2:"D A"},K:{1:"O",2:"A B C R VB",132:"U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"CSS.supports() API"}},4758:function(B){B.exports={A:{A:{2:"I D F E A iB",2052:"B"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",194:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v pB hB"},D:{1:"1 2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L",322:"X Y Z a b c d e f g h i j k l m n o p q r s",516:"0 t u v w x O z"},E:{1:"B C N H R U jB kB",2:"G W I D F E 0B YB cB dB eB fB",1028:"A XB"},F:{1:"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U",322:"P J K L X Y Z a b c d e f",516:"g h i j k l m n"},G:{1:"1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB",1028:"zB ZB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"B",2:"A"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",516:"G"},Q:{1:"PC"},R:{516:"QC"},S:{1:"RC"}},B:6,C:"let"}},4805:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K pB hB"},D:{1:"1 2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 G W I D F E A B C N H P J K L q r s t u v w x O z",66:"X Y Z a b c d e f g h i j k l m n o p"},E:{1:"A B C N H XB R U jB kB",2:"G W I D F E 0B YB cB dB eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C d e f g h i j k l m n lB mB nB oB R VB qB U",66:"P J K L X Y Z a b c"},G:{1:"zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{1:"PC"},R:{2:"QC"},S:{1:"RC"}},B:6,C:"Proxy object"}},4825:function(B,e,r){"use strict";e.__esModule=true;e.default=void 0;var t=_interopRequireDefault(r(6901));var n=_interopRequireWildcard(r(4076));function _interopRequireWildcard(B){if(B&&B.__esModule){return B}else{var e={};if(B!=null){for(var r in B){if(Object.prototype.hasOwnProperty.call(B,r)){var t=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor(B,r):{};if(t.get||t.set){Object.defineProperty(e,r,t)}else{e[r]=B[r]}}}}e.default=B;return e}}function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}var i=function parser(B){return new t.default(B)};Object.assign(i,n);delete i.__esModule;var C=i;e.default=C;B.exports=e.default},4846:function(B){B.exports={A:{A:{I:.00597493,D:.00597493,F:.0657242,E:.238997,A:.0179248,B:1.38021,iB:.009298},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","iB","I","D","F","E","A","B","","",""],E:"IE",F:{iB:962323200,I:998870400,D:1161129600,F:1237420800,E:1300060800,A:1346716800,B:1381968e3}},B:{A:{C:.009422,N:.009422,H:.014133,P:.009422,J:.028266,K:.089509,L:1.48868,y:0,BB:.004711,Q:.051821,WB:1.04113,S:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","C","N","H","P","J","K","L","y","BB","Q","WB","S","","",""],E:"Edge",F:{C:1438128e3,N:1447286400,H:1470096e3,P:1491868800,J:1508198400,K:1525046400,L:1542067200,y:1579046400,BB:1581033600,Q:1586736e3,WB:1590019200,S:1594857600},D:{C:"ms",N:"ms",H:"ms",P:"ms",J:"ms",K:"ms",L:"ms"}},C:{A:{0:.018844,1:.004538,2:.004711,3:.004711,4:.108353,5:.004335,6:.004711,7:.004711,8:.018844,9:.009422,sB:.004827,KB:.004538,G:.014133,W:.004879,I:.020136,D:.005725,F:.004525,E:.00533,A:.004283,B:.004711,C:.004471,N:.004486,H:.00453,P:.004465,J:.004417,K:.008922,L:.004393,X:.004443,Y:.004283,Z:.013596,a:.013698,b:.013614,c:.008786,d:.004403,e:.004317,f:.004393,g:.004418,h:.008834,i:.004403,j:.008928,k:.004471,l:.009422,m:.004707,n:.009076,o:.004465,p:.004783,q:.004711,r:.004783,s:.00487,t:.005029,u:.0047,v:.037688,w:.004711,x:.009422,O:.004525,z:.009422,AB:.004711,LB:.004711,CB:.018844,JB:.004711,EB:.004711,FB:.028266,GB:.018844,HB:.023555,DB:.023555,V:.009422,M:.136619,T:.009422,MB:.009422,NB:.009422,OB:.032977,PB:.014133,QB:.037688,RB:.04711,SB:.678384,TB:2.4827,UB:.051821,y:0,BB:0,pB:.008786,hB:.00487},B:"moz",C:["","sB","KB","pB","hB","G","W","I","D","F","E","A","B","C","N","H","P","J","K","L","X","Y","Z","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","O","z","0","1","2","3","4","5","6","7","8","9","AB","LB","CB","JB","EB","FB","GB","HB","DB","V","M","T","MB","NB","OB","PB","QB","RB","SB","TB","UB","y","BB",""],E:"Firefox",F:{0:1470096e3,1:1474329600,2:1479168e3,3:1485216e3,4:1488844800,5:149256e4,6:1497312e3,7:1502150400,8:1506556800,9:1510617600,sB:1161648e3,KB:1213660800,pB:124632e4,hB:1264032e3,G:1300752e3,W:1308614400,I:1313452800,D:1317081600,F:1317081600,E:1320710400,A:1324339200,B:1327968e3,C:1331596800,N:1335225600,H:1338854400,P:1342483200,J:1346112e3,K:1349740800,L:1353628800,X:1357603200,Y:1361232e3,Z:1364860800,a:1368489600,b:1372118400,c:1375747200,d:1379376e3,e:1386633600,f:1391472e3,g:1395100800,h:1398729600,i:1402358400,j:1405987200,k:1409616e3,l:1413244800,m:1417392e3,n:1421107200,o:1424736e3,p:1428278400,q:1431475200,r:1435881600,s:1439251200,t:144288e4,u:1446508800,v:1450137600,w:1453852800,x:1457395200,O:1461628800,z:1465257600,AB:1516665600,LB:1520985600,CB:1525824e3,JB:1529971200,EB:1536105600,FB:1540252800,GB:1544486400,HB:154872e4,DB:1552953600,V:1558396800,M:1562630400,T:1567468800,MB:1571788800,NB:1575331200,OB:1578355200,PB:1581379200,QB:1583798400,RB:1586304e3,SB:1588636800,TB:1591056e3,UB:1593475200,y:null,BB:null}},D:{A:{0:.023555,1:.325059,2:.004711,3:.009422,4:.004711,5:.042399,6:.018844,7:.018844,8:.023555,9:.023555,G:.004706,W:.004879,I:.004879,D:.005591,F:.005591,E:.005591,A:.004534,B:.004464,C:.010424,N:.009422,H:.004706,P:.015087,J:.004393,K:.004393,L:.008652,X:.004418,Y:.004393,Z:.004317,a:.014133,b:.008786,c:.004538,d:.004461,e:.004711,f:.004326,g:.0047,h:.004538,i:.004335,j:.009422,k:.004566,l:.009422,m:.009422,n:.004335,o:.004335,p:.004464,q:.028266,r:.004464,s:.014133,t:.04711,u:.004403,v:.014133,w:.004465,x:.004711,O:.004538,z:.009422,AB:.028266,LB:.009422,CB:.009422,JB:.037688,EB:.018844,FB:.051821,GB:.018844,HB:.042399,DB:.028266,V:.056532,M:.023555,T:.084798,MB:.146041,NB:.169596,OB:.169596,PB:.108353,QB:.127197,RB:.098931,SB:.117775,TB:.09422,UB:.146041,y:.249683,BB:.51821,Q:1.36148,WB:27.3379,S:.056532,gB:.032977,bB:0,aB:0},B:"webkit",C:["G","W","I","D","F","E","A","B","C","N","H","P","J","K","L","X","Y","Z","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","O","z","0","1","2","3","4","5","6","7","8","9","AB","LB","CB","JB","EB","FB","GB","HB","DB","V","M","T","MB","NB","OB","PB","QB","RB","SB","TB","UB","y","BB","Q","WB","S","gB","bB","aB"],E:"Chrome",F:{0:1453248e3,1:1456963200,2:1460592e3,3:1464134400,4:1469059200,5:1472601600,6:1476230400,7:1480550400,8:1485302400,9:1489017600,G:1264377600,W:1274745600,I:1283385600,D:1287619200,F:1291248e3,E:1296777600,A:1299542400,B:1303862400,C:1307404800,N:1312243200,H:1316131200,P:1316131200,J:1319500800,K:1323734400,L:1328659200,X:1332892800,Y:133704e4,Z:1340668800,a:1343692800,b:1348531200,c:1352246400,d:1357862400,e:1361404800,f:1364428800,g:1369094400,h:1374105600,i:1376956800,j:1384214400,k:1389657600,l:1392940800,m:1397001600,n:1400544e3,o:1405468800,p:1409011200,q:141264e4,r:1416268800,s:1421798400,t:1425513600,u:1429401600,v:143208e4,w:1437523200,x:1441152e3,O:1444780800,z:1449014400,AB:149256e4,LB:1496707200,CB:1500940800,JB:1504569600,EB:1508198400,FB:1512518400,GB:1516752e3,HB:1520294400,DB:1523923200,V:1527552e3,M:1532390400,T:1536019200,MB:1539648e3,NB:1543968e3,OB:154872e4,PB:1552348800,QB:1555977600,RB:1559606400,SB:1564444800,TB:1568073600,UB:1571702400,y:1575936e3,BB:1580860800,Q:1586304e3,WB:1589846400,S:1594684800,gB:null,bB:null,aB:null}},E:{A:{G:0,W:.004566,I:.004656,D:.004465,F:.014133,E:.004711,A:.009422,B:.023555,C:.065954,N:.537054,H:0,"0B":0,YB:.008692,cB:.160174,dB:.00456,eB:.004283,fB:.037688,XB:.056532,R:.131908,U:.244972,jB:2.79362,kB:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0B","YB","G","W","cB","I","dB","D","eB","F","E","fB","A","XB","B","R","C","U","N","jB","H","kB",""],E:"Safari",F:{"0B":1205798400,YB:1226534400,G:1244419200,W:1275868800,cB:131112e4,I:1343174400,dB:13824e5,D:13824e5,eB:1410998400,F:1413417600,E:1443657600,fB:1458518400,A:1474329600,XB:1490572800,B:1505779200,R:1522281600,C:1537142400,U:1553472e3,N:1568851200,jB:1585008e3,H:null,kB:null}},F:{A:{0:.004707,1:.004827,2:.004707,3:.004707,4:.004326,5:.008922,6:.014349,7:.004725,8:.004711,9:.009422,E:.0082,B:.016581,C:.004317,P:.00685,J:.00685,K:.00685,L:.005014,X:.006015,Y:.004879,Z:.006597,a:.006597,b:.013434,c:.006702,d:.006015,e:.005595,f:.004393,g:.008652,h:.004879,i:.004879,j:.004711,k:.005152,l:.005014,m:.009758,n:.004879,o:.009422,p:.004283,q:.004367,r:.004534,s:.004367,t:.004227,u:.004418,v:.009042,w:.004227,x:.004725,O:.004417,z:.008942,AB:.009422,CB:.004403,EB:.004532,FB:.004566,GB:.02283,HB:.00867,DB:.004656,V:.009422,M:.984599,T:.014133,lB:.00685,mB:0,nB:.008392,oB:.004706,R:.006229,VB:.004879,qB:.008786,U:.004711},B:"webkit",C:["","","","","","","","","","","","","","","","","E","lB","mB","nB","oB","B","R","VB","qB","C","U","P","J","K","L","X","Y","Z","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","O","z","0","1","2","3","4","5","6","7","8","9","AB","CB","EB","FB","GB","HB","DB","V","M","T","","",""],E:"Opera",F:{0:1506470400,1:1510099200,2:1515024e3,3:1517961600,4:1521676800,5:1525910400,6:1530144e3,7:1534982400,8:1537833600,9:1543363200,E:1150761600,lB:1223424e3,mB:1251763200,nB:1267488e3,oB:1277942400,B:1292457600,R:1302566400,VB:1309219200,qB:1323129600,C:1323129600,U:1352073600,P:1372723200,J:1377561600,K:1381104e3,L:1386288e3,X:1390867200,Y:1393891200,Z:1399334400,a:1401753600,b:1405987200,c:1409616e3,d:1413331200,e:1417132800,f:1422316800,g:1425945600,h:1430179200,i:1433808e3,j:1438646400,k:1442448e3,l:1445904e3,m:1449100800,n:1454371200,o:1457308800,p:146232e4,q:1465344e3,r:1470096e3,s:1474329600,t:1477267200,u:1481587200,v:1486425600,w:1490054400,x:1494374400,O:1498003200,z:1502236800,AB:1548201600,CB:1554768e3,EB:1561593600,FB:1566259200,GB:1570406400,HB:1573689600,DB:1578441600,V:1583971200,M:1587513600,T:1592956800},D:{E:"o",B:"o",C:"o",lB:"o",mB:"o",nB:"o",oB:"o",R:"o",VB:"o",qB:"o",U:"o"}},G:{A:{F:0,YB:.00359111,rB:.00179556,IB:0,tB:.00897778,uB:.00179556,vB:.0125689,wB:.01616,xB:.01616,yB:.166987,zB:.0466845,ZB:.175965,"1B":.114916,"2B":.188533,"3B":.265742,"4B":1.5765,"5B":.332178,"6B":.159805,"7B":2.30549,"8B":6.76027,"9B":0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","YB","rB","IB","tB","uB","vB","F","wB","xB","yB","zB","ZB","1B","2B","3B","4B","5B","6B","7B","8B","9B","",""],E:"iOS Safari",F:{YB:1270252800,rB:1283904e3,IB:1299628800,tB:1331078400,uB:1359331200,vB:1394409600,F:1410912e3,wB:1413763200,xB:1442361600,yB:1458518400,zB:1473724800,ZB:1490572800,"1B":1505779200,"2B":1522281600,"3B":1537142400,"4B":1553472e3,"5B":1568851200,"6B":1572220800,"7B":1580169600,"8B":1585008e3,"9B":null}},H:{A:{AC:.801165},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","AC","","",""],E:"Opera Mini",F:{AC:1426464e3}},I:{A:{KB:0,G:.00721227,Q:0,BC:0,CC:0,DC:601023e-9,EC:.0144245,IB:.0246419,FC:0,GC:.138235},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","BC","CC","DC","KB","G","EC","IB","FC","GC","Q","","",""],E:"Android Browser",F:{BC:1256515200,CC:1274313600,DC:1291593600,KB:1298332800,G:1318896e3,EC:1341792e3,IB:1374624e3,FC:1386547200,GC:1401667200,Q:1587427200}},J:{A:{D:0,A:.005289},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","D","A","","",""],E:"Blackberry Browser",F:{D:1325376e3,A:1359504e3}},K:{A:{A:0,B:0,C:0,O:.0111391,R:0,VB:0,U:0},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","R","VB","C","U","O","","",""],E:"Opera Mobile",F:{A:1287100800,B:1300752e3,R:1314835200,VB:1318291200,C:1330300800,U:1349740800,O:1474588800},D:{O:"webkit"}},L:{A:{S:34.3249},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","S","","",""],E:"Chrome for Android",F:{S:1594684800}},M:{A:{M:.248583},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","M","","",""],E:"Firefox for Android",F:{M:1567468800}},N:{A:{A:.0115934,B:.022664},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","","",""],E:"IE Mobile",F:{A:1340150400,B:1353456e3}},O:{A:{HC:1.79826},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","HC","","",""],E:"UC Browser for Android",F:{HC:1471392e3},D:{HC:"webkit"}},P:{A:{G:.279212,IC:.0206824,JC:.0103412,KC:.0930706,LC:.0206824,MC:.1758,XB:.186141,NC:2.43018,OC:.248188},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","G","IC","JC","KC","LC","MC","XB","NC","OC","","",""],E:"Samsung Internet",F:{G:1461024e3,IC:1481846400,JC:1509408e3,KC:1528329600,LC:1546128e3,MC:1554163200,XB:1567900800,NC:1582588800,OC:1593475200}},Q:{A:{PC:.21156},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","PC","","",""],E:"QQ Browser",F:{PC:1589846400}},R:{A:{QC:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","QC","","",""],E:"Baidu Browser",F:{QC:1491004800}},S:{A:{RC:.068757},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","RC","","",""],E:"KaiOS Browser",F:{RC:1527811200}}}},4866:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"I D F E A B C N H dB eB fB XB R U jB kB",2:"G 0B YB",129:"W cB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:6,C:"JPEG 2000 image format"}},4882:function(B){B.exports={A:{A:{1:"E A B",2:"I D F iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H cB dB eB fB XB R U jB kB",2:"0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U",2:"E"},G:{1:"F rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB"},H:{1:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:2,C:"CSS currentColor value"}},4907:function(B,e){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=remove;function remove(B){return B.remove()}B.exports=e.default},4912:function(B){B.exports={A:{A:{1:"B",2:"I D F E A iB"},B:{2:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",2:"3 4 5 6 7 8 9 sB KB G W I D F E A B C AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",2:"3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"F E A B C fB XB R",2:"G W I D 0B YB cB dB eB",129:"N H U jB kB"},F:{1:"P J K L X Y Z a b c d e f g h i j k l m n o p q r u w U",2:"0 1 2 3 4 5 6 7 8 9 E B C s t v x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB"},G:{1:"F wB xB yB zB ZB 1B 2B 3B",2:"YB rB IB tB uB vB",257:"4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"KB G EC IB FC GC",2:"Q BC CC DC"},J:{2:"D A"},K:{1:"U",2:"A B C O R VB"},L:{2:"S"},M:{2:"M"},N:{1:"B",2:"A"},O:{2:"HC"},P:{1:"G",2:"IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{16:"QC"},S:{1:"RC"}},B:7,C:"SPDY protocol"}},4923:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"RB SB TB UB y BB",2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB pB hB"},D:{1:"SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB",194:"RB"},E:{2:"G W I D F E A B C N 0B YB cB dB eB fB XB R U",322:"H jB kB"},F:{1:"GB HB DB V M T",2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B",322:"8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"OC",2:"G IC JC KC LC MC XB NC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:1,C:"Lazy loading via attribute for images & iframes"}},4929:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"H P J K L y BB Q WB S",2:"C N"},C:{1:"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X"},E:{1:"N H U jB kB",2:"G W I D F E A B C 0B YB cB dB eB fB XB R"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T R VB qB U",2:"E P J lB mB nB oB"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B",129:"4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q FC GC",2:"KB G BC CC DC EC IB"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{2:"RC"}},B:1,C:"Color input type"}},4937:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",66:"6 7 8 9 AB LB CB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s lB mB nB oB R VB qB U",66:"t u v w x O z"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"LC MC XB NC OC",2:"G IC JC KC"},Q:{1:"PC"},R:{2:"QC"},S:{2:"RC"}},B:7,C:"WebUSB"}},4948:function(B){B.exports={A:{A:{2:"I D F E iB",129:"A B"},B:{1:"y BB Q WB S",129:"C N H P J K L"},C:{2:"sB KB pB hB",129:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{1:"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",16:"G W I D F E A B C N H Z a b c d",129:"P J K L X Y"},E:{1:"I D F E A B C N H cB dB eB fB XB R U jB kB",16:"G W 0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T qB U",2:"E lB mB nB oB",16:"B R VB"},G:{1:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB rB IB"},H:{129:"AC"},I:{1:"Q FC GC",16:"BC CC",129:"KB G DC EC IB"},J:{1:"D",129:"A"},K:{1:"C",2:"A",16:"B R VB",129:"O U"},L:{1:"S"},M:{129:"M"},N:{129:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{129:"RC"}},B:1,C:"Search input type"}},4956:function(B,e,r){"use strict";e.__esModule=true;var t=function(){function defineProperties(B,e){for(var r=0;r<e.length;r++){var t=e[r];t.enumerable=t.enumerable||false;t.configurable=true;if("value"in t)t.writable=true;Object.defineProperty(B,t.key,t)}}return function(B,e,r){if(e)defineProperties(B.prototype,e);if(r)defineProperties(B,r);return B}}();var n=r(5812);var i=_interopRequireDefault(n);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _classCallCheck(B,e){if(!(B instanceof e)){throw new TypeError("Cannot call a class as a function")}}function _possibleConstructorReturn(B,e){if(!B){throw new ReferenceError("this hasn't been initialised - super() hasn't been called")}return e&&(typeof e==="object"||typeof e==="function")?e:B}function _inherits(B,e){if(typeof e!=="function"&&e!==null){throw new TypeError("Super expression must either be null or a function, not "+typeof e)}B.prototype=Object.create(e&&e.prototype,{constructor:{value:B,enumerable:false,writable:true,configurable:true}});if(e)Object.setPrototypeOf?Object.setPrototypeOf(B,e):B.__proto__=e}var C=function(B){_inherits(Namespace,B);function Namespace(){_classCallCheck(this,Namespace);return _possibleConstructorReturn(this,B.apply(this,arguments))}Namespace.prototype.qualifiedName=function qualifiedName(B){if(this.namespace){return this.namespaceString+"|"+B}else{return B}};Namespace.prototype.toString=function toString(){return[this.spaces.before,this.qualifiedName(this.value),this.spaces.after].join("")};t(Namespace,[{key:"namespace",get:function get(){return this._namespace},set:function set(B){this._namespace=B;if(this.raws){delete this.raws.namespace}}},{key:"ns",get:function get(){return this._namespace},set:function set(B){this._namespace=B;if(this.raws){delete this.raws.namespace}}},{key:"namespaceString",get:function get(){if(this.namespace){var B=this.raws&&this.raws.namespace||this.namespace;if(B===true){return""}else{return B}}else{return""}}}]);return Namespace}(i.default);e.default=C;B.exports=e["default"]},4968:function(B){B.exports={A:{A:{2:"iB",8:"I D F E A B"},B:{1:"y BB Q WB S",8:"C N H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB",8:"KB G W I D F E A B C N H P J K L X Y Z a b c pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N",8:"H P J K L X"},E:{1:"I D F E A B C N H dB eB fB XB R U jB kB",2:"0B YB",8:"G W cB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B lB mB nB oB",8:"C R VB qB U"},G:{1:"F uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB",8:"rB IB tB"},H:{2:"AC"},I:{1:"Q FC GC",8:"KB G BC CC DC EC IB"},J:{1:"A",8:"D"},K:{1:"O",2:"A B",8:"C R VB U"},L:{1:"S"},M:{1:"M"},N:{8:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"srcdoc attribute for iframes"}},4970:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C",260:"N H P J K L"},C:{1:"2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g pB hB",516:"0 1 h i j k l m n o p q r s t u v w x O z"},D:{1:"5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G",16:"W I D F E A B C N H",260:"4",772:"0 1 2 3 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},E:{1:"B C N H XB R U jB kB",2:"G 0B YB",16:"W",772:"I D F E A cB dB eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 s t u v w x O z AB CB EB FB GB HB DB V M T",16:"E lB",260:"B C r mB nB oB R VB qB U",772:"P J K L X Y Z a b c d e f g h i j k l m n o p q"},G:{1:"ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB",772:"F tB uB vB wB xB yB zB"},H:{132:"AC"},I:{1:"Q",2:"KB BC CC DC",260:"G EC IB FC GC"},J:{2:"D",260:"A"},K:{1:"O",260:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",260:"G"},Q:{1:"PC"},R:{1:"QC"},S:{516:"RC"}},B:5,C:":in-range and :out-of-range CSS pseudo-classes"}},4979:function(B){B.exports={A:{A:{2:"I D F E A iB",388:"B"},B:{1:"L y BB Q WB S",2:"C N H P",129:"J K"},C:{1:"CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB pB hB"},D:{1:"3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y",2:"0 1 2 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",513:"BB Q WB S gB bB aB"},E:{2:"G W I D F E A B 0B YB cB dB eB fB XB R",2052:"H jB kB",3076:"C N U"},F:{1:"0 1 2 3 4 5 6 7 8 9 r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q lB mB nB oB R VB qB U"},G:{1:"5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B",2052:"3B 4B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{513:"S"},M:{1:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{16:"PC"},R:{1:"QC"},S:{2:"RC"}},B:6,C:"'SameSite' cookie attribute"}},5007:function(B,e){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=_default;var r={"*":0,"/":0,"+":1,"-":1};function round(B,e){if(e!==false){var r=Math.pow(10,e);return Math.round(B*r)/r}return B}function stringify(B,e){switch(B.type){case"MathExpression":{var t=B.left,n=B.right,i=B.operator;var C="";if(t.type==="MathExpression"&&r[i]<r[t.operator]){C+=`(${stringify(t,e)})`}else{C+=stringify(t,e)}C+=r[i]?` ${B.operator} `:B.operator;if(n.type==="MathExpression"&&r[i]<r[n.operator]){C+=`(${stringify(n,e)})`}else{C+=stringify(n,e)}return C}case"Number":return round(B.value,e);case"Function":return B.value;default:return round(B.value,e)+B.unit}}function _default(B,e,r,t,n,i){var C=stringify(e,t.precision);var o=e.type==="MathExpression"||e.type==="Function";if(o){C=`${B}(${C})`;if(t.warnWhenCannotResolve){n.warn("Could not reduce expression: "+r,{plugin:"postcss-calc",node:i})}}return C}B.exports=e.default},5027:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(2998));var n=_interopRequireDefault(r(2806));var i=_interopRequireDefault(r(9896));var C=_interopRequireDefault(r(8791));var o=r(1106);var a=r(2453);var s=r(9920);var u=r(5435);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function analyse(B,e){return r=>{r.each(r=>{if((0,n.default)(r,0,u.BODY)&&(0,n.default)(r,1,":empty")&&(0,n.default)(r,2," ")&&r.at(3)){B.push(e,{identifier:a.SELECTOR,hack:r.toString()})}})}}var f=(0,C.default)([o.FF_2],[s.RULE],function(B){if((0,i.default)(B)){return}(0,t.default)(analyse(this,B)).processSync(B.selector)});e.default=f;B.exports=e.default},5031:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(161));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function isEqual(B,e){return B.type===e.type&&B.value===e.value}function isValueType(B){switch(B){case"LengthValue":case"AngleValue":case"TimeValue":case"FrequencyValue":case"ResolutionValue":case"EmValue":case"ExValue":case"ChValue":case"RemValue":case"VhValue":case"VwValue":case"VminValue":case"VmaxValue":case"PercentageValue":case"Number":return true}return false}function flip(B){return B==="+"?"-":"+"}function flipValue(B){if(isValueType(B.type)){B.value=-B.value}else if(B.type==="MathExpression"){if(B.operator==="*"||B.operator==="/"){B.left=flipValue(B.left)}else{B.left=flipValue(B.left);B.right=flipValue(B.right)}}return B}function reduceAddSubExpression(B,e){if(isValueType(B.right.type)&&B.right.value===0){return B.left}if(isValueType(B.left.type)&&B.left.value===0&&B.operator==="+"){return B.right}if(isValueType(B.left.type)&&B.left.value===0&&B.operator==="-"&&B.right.type!=="Function"){return flipValue(B.right)}if(isValueType(B.left.type)&&B.left.type===B.right.type){var r=B.operator;var t=covertNodesUnits(B.left,B.right,e),n=t.left,i=t.right;if(r==="+"){n.value+=i.value}else{n.value-=i.value}return n}if(B.right.type==="MathExpression"&&(B.right.operator==="+"||B.right.operator==="-")){if((B.right.operator==="+"||B.right.operator==="-")&&B.operator==="-"){B.right.operator=flip(B.right.operator)}if(isValueType(B.left.type)){if(B.left.type===B.right.left.type){var C=B.left,o=B.operator,a=B.right;B.left=reduce({type:"MathExpression",operator:o,left:C,right:a.left});B.operator=a.operator;B.right=a.right;return reduce(B,e)}if(B.left.type===B.right.right.type){var s=B.left,u=B.right;B.left=reduce({type:"MathExpression",operator:u.operator,left:s,right:u.right});B.right=u.left;return reduce(B,e)}}}if(B.left.type==="MathExpression"&&(B.left.operator==="+"||B.left.operator==="-")&&isValueType(B.right.type)){if(B.right.type===B.left.left.type){var f=B.left,l=B.operator,c=B.right;f.left=reduce({type:"MathExpression",operator:l,left:f.left,right:c},e);return reduce(f,e)}if(B.right.type===B.left.right.type){var p=B.left,A=B.operator,d=B.right;if(p.operator==="-"){p.operator=A==="-"?"-":"+";p.right=reduce({type:"MathExpression",operator:A==="-"?"+":"-",left:d,right:p.right},e)}else{p.right=reduce({type:"MathExpression",operator:A,left:p.right,right:d},e)}if(p.right.value<0){p.right.value*=-1;p.operator=p.operator==="-"?"+":"-"}p.parenthesized=B.parenthesized;return reduce(p,e)}}if(B.right.type==="MathExpression"&&B.left.type==="MathExpression"){if(isEqual(B.left.right,B.right.right)){var h=covertNodesUnits(B.left.left,B.right.left,e);B.left=h.left;B.right=h.right;return reduce(B)}if(isEqual(B.left.right,B.right.left)){var E=covertNodesUnits(B.left.left,B.right.right,e);B.left=E.left;B.right=E.right;return reduce(B)}}return B}function reduceDivisionExpression(B){if(!isValueType(B.right.type)){return B}if(B.right.type!=="Number"){throw new Error(`Cannot divide by "${B.right.unit}", number expected`)}if(B.right.value===0){throw new Error("Cannot divide by zero")}if(isValueType(B.left.type)){B.left.value/=B.right.value;return B.left}return B}function reduceMultiplicationExpression(B){if(B.left.type==="MathExpression"&&B.right.type==="Number"){if(isValueType(B.left.left.type)&&isValueType(B.left.right.type)){B.left.left.value*=B.right.value;B.left.right.value*=B.right.value;return B.left}}if(isValueType(B.left.type)&&B.right.type==="Number"){B.left.value*=B.right.value;return B.left}if(B.left.type==="Number"&&B.right.type==="MathExpression"){if(isValueType(B.right.left.type)&&isValueType(B.right.right.type)){B.right.left.value*=B.left.value;B.right.right.value*=B.left.value;return B.right}}if(B.left.type==="Number"&&isValueType(B.right.type)){B.right.value*=B.left.value;return B.right}return B}function covertNodesUnits(B,e,r){switch(B.type){case"LengthValue":case"AngleValue":case"TimeValue":case"FrequencyValue":case"ResolutionValue":if(e.type===B.type&&e.unit&&B.unit){var n=(0,t.default)(e.value,e.unit,B.unit,r);e={type:B.type,value:n,unit:B.unit}}return{left:B,right:e};default:return{left:B,right:e}}}function reduce(B,e){if(B.type==="MathExpression"){B.left=reduce(B.left,e);B.right=reduce(B.right,e);switch(B.operator){case"+":case"-":return reduceAddSubExpression(B,e);case"/":return reduceDivisionExpression(B,e);case"*":return reduceMultiplicationExpression(B,e)}return B}return B}var n=reduce;e.default=n;B.exports=e.default},5037:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c pB hB",194:"u v w",450:"d e f g h i j k l m n o p q r s t",2242:"0 1 2 x O z"},D:{1:"8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u",578:"0 1 2 3 4 5 6 7 v w x O z"},E:{2:"G W I D F E A 0B YB cB dB eB fB",1090:"B C N H XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B",1090:"3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"KC LC MC XB NC OC",2:"G IC JC"},Q:{578:"PC"},R:{2:"QC"},S:{2242:"RC"}},B:6,C:"WebGL 2.0"}},5058:function(B,e,r){"use strict";e.__esModule=true;var t=function(){function defineProperties(B,e){for(var r=0;r<e.length;r++){var t=e[r];t.enumerable=t.enumerable||false;t.configurable=true;if("value"in t)t.writable=true;Object.defineProperty(B,t.key,t)}}return function(B,e,r){if(e)defineProperties(B.prototype,e);if(r)defineProperties(B,r);return B}}();var n=r(5980);var i=_interopRequireDefault(n);var C=r(5544);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _classCallCheck(B,e){if(!(B instanceof e)){throw new TypeError("Cannot call a class as a function")}}function _possibleConstructorReturn(B,e){if(!B){throw new ReferenceError("this hasn't been initialised - super() hasn't been called")}return e&&(typeof e==="object"||typeof e==="function")?e:B}function _inherits(B,e){if(typeof e!=="function"&&e!==null){throw new TypeError("Super expression must either be null or a function, not "+typeof e)}B.prototype=Object.create(e&&e.prototype,{constructor:{value:B,enumerable:false,writable:true,configurable:true}});if(e)Object.setPrototypeOf?Object.setPrototypeOf(B,e):B.__proto__=e}var o=function(B){_inherits(Root,B);function Root(e){_classCallCheck(this,Root);var r=_possibleConstructorReturn(this,B.call(this,e));r.type=C.ROOT;return r}Root.prototype.toString=function toString(){var B=this.reduce(function(B,e){var r=String(e);return r?B+r+",":""},"").slice(0,-1);return this.trailingComma?B+",":B};Root.prototype.error=function error(B,e){if(this._error){return this._error(B,e)}else{return new Error(B)}};t(Root,[{key:"errorGenerator",set:function set(B){this._error=B}}]);return Root}(i.default);e.default=o;B.exports=e["default"]},5067:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L y",3073:"BB Q WB S"},C:{2:"sB KB pB hB",260:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s",1025:"0 1 2 3 4 5 6 7 8 9 t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y",3073:"BB Q WB S gB bB aB"},E:{2:"G W I D F 0B YB cB dB eB",516:"E A B C N H fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 w x O z",2:"6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v AB CB EB FB GB HB DB lB mB nB oB R VB qB U",3073:"V M T"},G:{130:"F YB rB IB tB uB vB wB",516:"xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{130:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D",130:"A"},K:{130:"A B C O R VB U"},L:{3073:"S"},M:{2:"M"},N:{130:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{1025:"RC"}},B:1,C:"SVG favicons"}},5068:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"N H P J K L y BB Q WB S",2:"C"},C:{1:"0 1 2 3 4 5 6 7 8 9 J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D"},E:{1:"I D F E A B C N H dB eB fB XB R U jB kB",2:"G W 0B YB cB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T R VB qB U",2:"E lB mB nB oB"},G:{1:"ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB"},H:{1:"AC"},I:{1:"Q FC GC",2:"KB G BC CC DC EC IB"},J:{1:"D A"},K:{1:"B C O R VB U",2:"A"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"meter element"}},5069:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"P J K L y BB Q WB S",2:"C N H"},C:{1:"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s"},E:{1:"E A B C N H fB XB R U jB kB",2:"G W I D F 0B YB cB dB eB"},F:{1:"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f lB mB nB oB R VB qB U"},G:{1:"xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{2:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"Element.closest()"}},5071:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(454));var n=_interopRequireDefault(r(2043));var i=_interopRequireWildcard(r(6486));var C=r(5433);function _getRequireWildcardCache(){if(typeof WeakMap!=="function")return null;var B=new WeakMap;_getRequireWildcardCache=function(){return B};return B}function _interopRequireWildcard(B){if(B&&B.__esModule){return B}if(B===null||typeof B!=="object"&&typeof B!=="function"){return{default:B}}var e=_getRequireWildcardCache();if(e&&e.has(B)){return e.get(B)}var r={};var t=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var n in B){if(Object.prototype.hasOwnProperty.call(B,n)){var i=t?Object.getOwnPropertyDescriptor(B,n):null;if(i&&(i.get||i.set)){Object.defineProperty(r,n,i)}else{r[n]=B[n]}}}r.default=B;if(e){e.set(B,r)}return r}function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function getValues(B,e,r){if(r%2===0){let r=NaN;if(e.type==="function"&&(e.value==="var"||e.value==="env")&&e.nodes.length===1){r=(0,i.stringify)(e.nodes)}else if(e.type==="word"){r=parseFloat(e.value)}return[...B,r]}return B}function matrix3d(B,e){if(e.length!==16){return}if(e[15]&&e[2]===0&&e[3]===0&&e[6]===0&&e[7]===0&&e[8]===0&&e[9]===0&&e[10]===1&&e[11]===0&&e[14]===0&&e[15]===1){const{nodes:e}=B;B.value="matrix";B.nodes=[e[0],e[1],e[2],e[3],e[8],e[9],e[10],e[11],e[24],e[25],e[26]]}}const o=[["rotateX",[1,0,0]],["rotateY",[0,1,0]],["rotate",[0,0,1]]];const a=(0,C.getMatch)(o);function rotate3d(B,e){if(e.length!==4){return}const{nodes:r}=B;const t=a(e.slice(0,3));if(t.length){B.value=t;B.nodes=[r[6]]}}function rotateZ(B,e){if(e.length!==1){return}B.value="rotate"}function scale(B,e){if(e.length!==2){return}const{nodes:r}=B;const[t,n]=e;if(t===n){B.nodes=[r[0]];return}if(n===1){B.value="scaleX";B.nodes=[r[0]];return}if(t===1){B.value="scaleY";B.nodes=[r[2]];return}}function scale3d(B,e){if(e.length!==3){return}const{nodes:r}=B;const[t,n,i]=e;if(n===1&&i===1){B.value="scaleX";B.nodes=[r[0]];return}if(t===1&&i===1){B.value="scaleY";B.nodes=[r[2]];return}if(t===1&&n===1){B.value="scaleZ";B.nodes=[r[4]];return}}function translate(B,e){if(e.length!==2){return}const{nodes:r}=B;if(e[1]===0){B.nodes=[r[0]];return}if(e[0]===0){B.value="translateY";B.nodes=[r[2]];return}}function translate3d(B,e){if(e.length!==3){return}const{nodes:r}=B;if(e[0]===0&&e[1]===0){B.value="translateZ";B.nodes=[r[4]]}}const s={matrix3d:matrix3d,rotate3d:rotate3d,rotateZ:rotateZ,scale:scale,scale3d:scale3d,translate:translate,translate3d:translate3d};function normalizeReducerName(B){const e=B.toLowerCase();if(e==="rotatez"){return"rotateZ"}return e}function reduce(B){const{nodes:e,type:r,value:n}=B;const i=normalizeReducerName(n);if(r==="function"&&(0,t.default)(s,i)){s[i](B,e.reduce(getValues,[]))}return false}var u=n.default.plugin("postcss-reduce-transforms",()=>{return B=>{const e={};B.walkDecls(/transform$/i,B=>{const r=B.value;if(!r){return}if(e[r]){B.value=e[r];return}const t=(0,i.default)(r).walk(reduce).toString();B.value=t;e[r]=t})}});e.default=u;B.exports=e.default},5086:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L y BB Q WB S"},C:{1:"1 2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J pB hB",33:"0 K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{1:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{33:"RC"}},B:5,C:":dir() CSS pseudo-class"}},5096:function(B){B.exports={A:{A:{2:"I D F E iB",292:"A B"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB hB",164:"0 1 2 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},D:{1:"0 1 2 3 4 5 6 7 8 9 z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O"},E:{1:"E A B C N H fB XB R U jB kB",2:"G W I D F 0B YB cB dB eB"},F:{1:"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l lB mB nB oB R VB qB U"},G:{1:"xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{1:"PC"},R:{1:"QC"},S:{164:"RC"}},B:5,C:":placeholder-shown CSS pseudo-class"}},5103:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB pB hB"},D:{1:"T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M"},E:{1:"C N H R U jB kB",2:"G W I D F E A 0B YB cB dB eB fB XB",132:"B"},F:{1:"8 9 AB CB EB FB GB HB DB V M T",2:"0 1 2 3 4 5 6 7 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z lB mB nB oB R VB qB U"},G:{1:"2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB",132:"1B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"XB NC OC",2:"G IC JC KC LC MC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:7,C:"CSS Environment Variables env()"}},5106:function(B){B.exports={A:{A:{1:"E A B",8:"I iB",129:"D",257:"F"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{1:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:2,C:"CSS min/max-width/height"}},5113:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"C N H P J K L",2:"y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB",132:"xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D",132:"A"},K:{2:"A B C O R VB",132:"U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{132:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:6,C:"AC-3 (Dolby Digital) and EC-3 (Dolby Digital Plus) codecs"}},5126:function(B){B.exports={A:{A:{1:"I D F E A B",16:"iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U",16:"E"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{1:"AC"},I:{1:"KB G Q DC EC IB FC GC",16:"BC CC"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"Element.insertAdjacentElement() & Element.insertAdjacentText()"}},5131:function(B){B.exports={A:{A:{1:"I D F E A B",2:"iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",8:"sB KB G W I pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T R VB qB U",33:"E lB mB nB oB"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{1:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"O U",33:"A B C R VB"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"CSS3 Text-overflow"}},5133:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",194:"AB LB CB JB EB FB GB HB DB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"6 7 8 9 AB CB EB FB GB HB DB V M T",2:"0 1 2 3 4 5 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:4,C:"Gyroscope"}},5138:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 1 2 3 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB"},D:{1:"CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB",194:"LB"},E:{1:"B C N H XB R U jB kB",2:"G W I D F E A 0B YB cB dB eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x lB mB nB oB R VB qB U",194:"O"},G:{1:"ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"LC MC XB NC OC",2:"G IC JC KC"},Q:{1:"PC"},R:{16:"QC"},S:{2:"RC"}},B:7,C:":focus-within CSS pseudo-class"}},5162:function(B){B.exports={A:{A:{1:"A B",2:"I D F E iB"},B:{1:"C N H P J K L",2:"y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{1:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:7,C:"Efficient Script Yielding: setImmediate()"}},5184:function(B){B.exports={A:{A:{1:"A B",2:"I D F E iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB hB",2:"sB KB pB"},D:{1:"0 1 2 3 4 5 6 7 8 9 W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G"},E:{1:"G W I D F E A B C N H cB dB eB fB XB R U jB kB",2:"0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T oB R VB qB U",2:"E lB mB nB"},G:{1:"F uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB"},H:{130:"AC"},I:{130:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{130:"A B C O R VB U"},L:{132:"S"},M:{130:"M"},N:{2:"A B"},O:{130:"HC"},P:{130:"G",132:"IC JC KC LC MC XB NC OC"},Q:{132:"PC"},R:{132:"QC"},S:{2:"RC"}},B:1,C:"Multiple file selection"}},5202:function(B){B.exports={A:{A:{1:"E A B",2:"iB",8:"I D F"},B:{1:"C N H P J K L",129:"y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB",8:"sB KB",129:"7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{1:"0 1 W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",4:"G",129:"2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"W I D F E B C N H cB dB eB fB XB R U jB kB",8:"G 0B YB",129:"A"},F:{1:"B C J K L X Y Z a b c d e f g h i j k l m n o p q oB R VB qB U",2:"E P lB",8:"mB nB",129:"0 1 2 3 4 5 6 7 8 9 r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{1:"F YB rB IB tB uB vB wB xB yB",129:"zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"KB G BC CC DC EC IB FC GC",129:"Q"},J:{1:"D A"},K:{1:"B C O R VB U",8:"A"},L:{129:"S"},M:{129:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G",129:"IC JC KC LC MC XB NC OC"},Q:{129:"PC"},R:{129:"QC"},S:{1:"RC"}},B:2,C:"Geolocation"}},5217:function(B){B.exports={A:{A:{2:"iB",4:"A B",8:"I D F E"},B:{1:"J K L y BB Q WB S",4:"C N H P"},C:{4:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",8:"sB KB pB hB"},D:{1:"JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",4:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB"},E:{4:"G W I D F E A B C N H cB dB eB fB XB R U jB kB",8:"0B YB"},F:{1:"4 5 6 7 8 9 E B C AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U",4:"0 1 2 3 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},G:{2:"YB",4:"F rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB",4:"FC GC"},J:{2:"D",4:"A"},K:{1:"A B C R VB U",4:"O"},L:{1:"S"},M:{4:"M"},N:{4:"A B"},O:{1:"HC"},P:{1:"LC MC XB NC OC",4:"G IC JC KC"},Q:{1:"PC"},R:{4:"QC"},S:{4:"RC"}},B:1,C:"HTML5 form features"}},5220:function(B,e,r){"use strict";e.__esModule=true;e.default=void 0;var t=_interopRequireDefault(r(8092));var n=r(699);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _inheritsLoose(B,e){B.prototype=Object.create(e.prototype);B.prototype.constructor=B;B.__proto__=e}var i=function(B){_inheritsLoose(ID,B);function ID(e){var r;r=B.call(this,e)||this;r.type=n.ID;return r}var e=ID.prototype;e.toString=function toString(){return[this.rawSpaceBefore,String("#"+this.stringifyProperty("value")),this.rawSpaceAfter].join("")};return ID}(t.default);e.default=i;B.exports=e.default},5239:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB pB hB",194:"OB PB QB RB SB TB UB y BB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB",322:"y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N 0B YB cB dB eB fB XB R U jB",66:"H kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B",66:"9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:6,C:"HTTP/3 protocol"}},5251:function(module,__unusedexports,__webpack_require__){var feature=__webpack_require__(6605).default;var region=__webpack_require__(1941).default;var path=__webpack_require__(5622);var fs=__webpack_require__(5747);var BrowserslistError=__webpack_require__(8093);var IS_SECTION=/^\s*\[(.+)]\s*$/;var CONFIG_PATTERN=/^browserslist-config-/;var SCOPED_CONFIG__PATTERN=/@[^\/]+\/browserslist-config(-|$|\/)/;var TIME_TO_UPDATE_CANIUSE=6*30*24*60*60*1e3;var FORMAT="Browserslist config should be a string or an array "+"of strings with browser queries";var dataTimeChecked=false;var filenessCache={};var configCache={};function checkExtend(B){var e=" Use `dangerousExtend` option to disable.";if(!CONFIG_PATTERN.test(B)&&!SCOPED_CONFIG__PATTERN.test(B)){throw new BrowserslistError("Browserslist config needs `browserslist-config-` prefix. "+e)}if(B.replace(/^@[^\/]+\//,"").indexOf(".")!==-1){throw new BrowserslistError("`.` not allowed in Browserslist config name. "+e)}if(B.indexOf("node_modules")!==-1){throw new BrowserslistError("`node_modules` not allowed in Browserslist config."+e)}}function isFile(B){if(B in filenessCache){return filenessCache[B]}var e=fs.existsSync(B)&&fs.statSync(B).isFile();if(!process.env.BROWSERSLIST_DISABLE_CACHE){filenessCache[B]=e}return e}function eachParent(B,e){var r=isFile(B)?path.dirname(B):B;var t=path.resolve(r);do{var n=e(t);if(typeof n!=="undefined")return n}while(t!==(t=path.dirname(t)));return undefined}function check(B){if(Array.isArray(B)){for(var e=0;e<B.length;e++){if(typeof B[e]!=="string"){throw new BrowserslistError(FORMAT)}}}else if(typeof B!=="string"){throw new BrowserslistError(FORMAT)}}function pickEnv(B,e){if(typeof B!=="object")return B;var r;if(typeof e.env==="string"){r=e.env}else if(process.env.BROWSERSLIST_ENV){r=process.env.BROWSERSLIST_ENV}else if(process.env.NODE_ENV){r=process.env.NODE_ENV}else{r="production"}return B[r]||B.defaults}function parsePackage(B){var e=JSON.parse(fs.readFileSync(B));if(e.browserlist&&!e.browserslist){throw new BrowserslistError("`browserlist` key instead of `browserslist` in "+B)}var r=e.browserslist;if(Array.isArray(r)||typeof r==="string"){r={defaults:r}}for(var t in r){check(r[t])}return r}function latestReleaseTime(B){var e=0;for(var r in B){var t=B[r].releaseDate||{};for(var n in t){if(e<t[n]){e=t[n]}}}return e*1e3}function normalizeStats(B,e){if(e&&"dataByBrowser"in e){e=e.dataByBrowser}if(typeof e!=="object")return undefined;var r={};for(var t in e){var n=Object.keys(e[t]);if(n.length===1&&B[t]&&B[t].versions.length===1){var i=Object.keys(B[t].versions)[0];r[t]={};r[t][i]=e[t][n[0]]}else{r[t]=e[t]}}return r}function normalizeUsageData(B,e){for(var r in B){var t=B[r];if("0"in t){var n=e[r].versions;t[n[n.length-1]]=t[0];delete t[0]}}}module.exports={loadQueries:function loadQueries(context,name){if(!context.dangerousExtend)checkExtend(name);var queries=eval("require")(require.resolve(name,{paths:["."]}));if(queries){if(Array.isArray(queries)){return queries}else if(typeof queries==="object"){if(!queries.defaults)queries.defaults=[];return pickEnv(queries,context,name)}}throw new BrowserslistError("`"+name+"` config exports not an array of queries"+" or an object of envs")},loadStat:function loadStat(B,e,r){if(!B.dangerousExtend)checkExtend(e);var t=require(__webpack_require__(8440).resolve(path.join(e,"browserslist-stats.json"),{paths:["."]}));return normalizeStats(r,t)},getStat:function getStat(B,e){var r;if(B.stats){r=B.stats}else if(process.env.BROWSERSLIST_STATS){r=process.env.BROWSERSLIST_STATS}else if(B.path&&path.resolve&&fs.existsSync){r=eachParent(B.path,function(B){var e=path.join(B,"browserslist-stats.json");return isFile(e)?e:undefined})}if(typeof r==="string"){try{r=JSON.parse(fs.readFileSync(r))}catch(B){throw new BrowserslistError("Can't read "+r)}}return normalizeStats(e,r)},loadConfig:function loadConfig(B){if(process.env.BROWSERSLIST){return process.env.BROWSERSLIST}else if(B.config||process.env.BROWSERSLIST_CONFIG){var e=B.config||process.env.BROWSERSLIST_CONFIG;if(path.basename(e)==="package.json"){return pickEnv(parsePackage(e),B)}else{return pickEnv(module.exports.readConfig(e),B)}}else if(B.path){return pickEnv(module.exports.findConfig(B.path),B)}else{return undefined}},loadCountry:function loadCountry(B,e,r){var t=e.replace(/[^\w-]/g,"");if(!B[t]){var n=require("caniuse-lite/data/regions/"+t+".js");var i=region(n);normalizeUsageData(i,r);B[e]={};for(var C in i){for(var o in i[C]){B[e][C+" "+o]=i[C][o]}}}},loadFeature:function loadFeature(B,e){e=e.replace(/[^\w-]/g,"");if(B[e])return;var r=require("caniuse-lite/data/features/"+e+".js");var t=feature(r).stats;B[e]={};for(var n in t){for(var i in t[n]){B[e][n+" "+i]=t[n][i]}}},parseConfig:function parseConfig(B){var e={defaults:[]};var r=["defaults"];B.toString().replace(/#[^\n]*/g,"").split(/\n|,/).map(function(B){return B.trim()}).filter(function(B){return B!==""}).forEach(function(B){if(IS_SECTION.test(B)){r=B.match(IS_SECTION)[1].trim().split(" ");r.forEach(function(B){if(e[B]){throw new BrowserslistError("Duplicate section "+B+" in Browserslist config")}e[B]=[]})}else{r.forEach(function(r){e[r].push(B)})}});return e},readConfig:function readConfig(B){if(!isFile(B)){throw new BrowserslistError("Can't read "+B+" config")}return module.exports.parseConfig(fs.readFileSync(B))},findConfig:function findConfig(B){B=path.resolve(B);var e=[];var r=eachParent(B,function(B){if(B in configCache){return configCache[B]}e.push(B);var r=path.join(B,"browserslist");var t=path.join(B,"package.json");var n=path.join(B,".browserslistrc");var i;if(isFile(t)){try{i=parsePackage(t)}catch(B){if(B.name==="BrowserslistError")throw B;console.warn("[Browserslist] Could not parse "+t+". Ignoring it.")}}if(isFile(r)&&i){throw new BrowserslistError(B+" contains both browserslist and package.json with browsers")}else if(isFile(n)&&i){throw new BrowserslistError(B+" contains both .browserslistrc and package.json with browsers")}else if(isFile(r)&&isFile(n)){throw new BrowserslistError(B+" contains both .browserslistrc and browserslist")}else if(isFile(r)){return module.exports.readConfig(r)}else if(isFile(n)){return module.exports.readConfig(n)}else{return i}});if(!process.env.BROWSERSLIST_DISABLE_CACHE){e.forEach(function(B){configCache[B]=r})}return r},clearCaches:function clearCaches(){dataTimeChecked=false;filenessCache={};configCache={};this.cache={}},oldDataWarning:function oldDataWarning(B){if(dataTimeChecked)return;dataTimeChecked=true;if(process.env.BROWSERSLIST_IGNORE_OLD_DATA)return;var e=latestReleaseTime(B);var r=Date.now()-TIME_TO_UPDATE_CANIUSE;if(e!==0&&e<r){console.warn("Browserslist: caniuse-lite is outdated. Please run:\n"+"npx browserslist@latest --update-db")}},currentNode:function currentNode(){return"node "+process.versions.node}}},5260:function(B){B.exports={A:{A:{1:"A B",16:"iB",900:"I D F E"},B:{1:"y BB Q WB S",1025:"C N H P J K L"},C:{1:"3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",900:"sB KB pB hB",1025:"0 1 2 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"I D F E A B C N H cB dB eB fB XB R U jB kB",16:"W 0B",900:"G YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",16:"E",132:"B C lB mB nB oB R VB qB U"},G:{1:"rB IB tB uB vB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB",2052:"F wB"},H:{132:"AC"},I:{1:"KB G DC EC IB FC GC",16:"BC CC",4097:"Q"},J:{1:"D A"},K:{132:"A B C R VB U",4100:"O"},L:{4097:"S"},M:{4097:"M"},N:{1:"A B"},O:{1:"HC"},P:{4097:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1025:"RC"}},B:1,C:"maxlength attribute for input and textarea elements"}},5272:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v pB hB",194:"0 1 2 3 4 5 6 7 8 9 w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{1:"T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",322:"AB LB CB JB EB FB GB HB DB V M"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w lB mB nB oB R VB qB U",322:"0 1 2 3 4 5 6 7 8 9 x O z AB CB EB FB"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{194:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"XB NC OC",2:"G IC JC KC LC MC"},Q:{2:"PC"},R:{2:"QC"},S:{194:"RC"}},B:1,C:"OffscreenCanvas"}},5274:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"YB rB IB tB",129:"F uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"KB G Q EC IB FC GC",2:"BC",257:"CC DC"},J:{1:"A",16:"D"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{2:"M"},N:{2:"A B"},O:{516:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{16:"PC"},R:{1:"QC"},S:{2:"RC"}},B:4,C:"HTML Media Capture"}},5281:function(B){B.exports={A:{A:{1:"E A B",2:"I D F iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB hB",2:"sB KB pB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T nB oB R VB qB U",2:"E lB mB"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{1:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"CSS3 Multiple backgrounds"}},5297:function(B){B.exports={A:{A:{132:"I D F E A B iB"},B:{132:"C N H P J K L",388:"y BB Q WB S"},C:{132:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{132:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p",388:"0 1 2 3 4 5 6 7 8 9 q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{132:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{132:"E B C P J K L X Y Z a b c lB mB nB oB R VB qB U",388:"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{132:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{132:"AC"},I:{132:"KB G Q BC CC DC EC IB FC GC"},J:{132:"D A"},K:{132:"A B C R VB U",388:"O"},L:{388:"S"},M:{132:"M"},N:{132:"A B"},O:{132:"HC"},P:{132:"G",388:"IC JC KC LC MC XB NC OC"},Q:{388:"PC"},R:{388:"QC"},S:{132:"RC"}},B:5,C:"CSS text-indent"}},5301:function(B,e,r){"use strict";e.__esModule=true;e.default=void 0;var t=_interopRequireDefault(r(2644));var n=r(8019);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _inheritsLoose(B,e){B.prototype=Object.create(e.prototype);B.prototype.constructor=B;B.__proto__=e}var i=function(B){_inheritsLoose(Universal,B);function Universal(e){var r;r=B.call(this,e)||this;r.type=n.UNIVERSAL;r.value="*";return r}return Universal}(t.default);e.default=i;B.exports=e.default},5304:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v pB hB",132:"w x O",260:"0 1 2 z"},D:{1:"AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",132:"0 1 2 3",260:"4 5 6 7 8 9"},E:{1:"B C N H XB R U jB kB",2:"G W I D F E A 0B YB cB dB eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m lB mB nB oB R VB qB U",132:"n o p q",260:"r s t u v w"},G:{1:"ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB",16:"zB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"KC LC MC XB NC OC",2:"G",260:"IC JC"},Q:{1:"PC"},R:{2:"QC"},S:{260:"RC"}},B:4,C:"IndexedDB 2.0"}},5321:function(B){B.exports={A:{A:{2:"I D F E iB",132:"A B"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E pB hB",33:"A B C N H P"},D:{1:"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B",33:"C N H P J K L X Y Z a b c d e f g h i j k l m n"},E:{2:"0B YB",33:"G W I D F cB dB eB",257:"E A B C N H fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U",33:"P J K L X Y Z a"},G:{33:"F YB rB IB tB uB vB wB",257:"xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"BC CC DC",33:"KB G EC IB FC GC"},J:{33:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{132:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:5,C:"CSS3 3D Transforms"}},5332:function(B){"use strict";B.exports=function rgbaRegex(B){B=B||{};return B.exact?/^rgba\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3}),\s*(\d*(?:\.\d+)?)\)$/:/rgba\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3}),\s*(\d*(?:\.\d+)?)\)/gi}},5347:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(8791));var n=r(1106);var i=r(2453);var C=r(9920);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}var o=(0,t.default)([n.IE_6,n.IE_7,n.IE_8],[C.DECL],function(B){let e=B.value;if(e&&e.length>2&&e.indexOf("\\9")===e.length-2){this.push(B,{identifier:i.VALUE,hack:e})}});e.default=o;B.exports=e.default},5359:function(B,e,r){var t=r(3377);function mediator(B,e){return t(this,B.converted,e.converted)}B.exports=function(B,e){if(!Array.isArray(B)||B.length<2){return B}if(typeof e!=="object"){e={}}e.sign=!!e.sign;var r=!!e.insensitive;var t=Array(B.length);var n,i,C;for(n=0,i=B.length;n<i;n+=1){C=String(B[n]);t[n]={value:B[n],converted:r?C.toLowerCase():C}}t.sort(mediator.bind(e));for(n=t.length-1;~n;n-=1){t[n]=t[n].value}return t}},5404:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"H P J K L y BB Q WB S",2:"C N"},C:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k"},E:{2:"G W I D F E A 0B YB cB dB eB fB XB",132:"B C N H R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB",132:"1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:6,C:"Opus"}},5411:function(B){B.exports={A:{A:{1:"E A B",2:"I D F iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{1:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{2:"QC"},S:{1:"RC"}},B:1,C:"XHTML served as application/xhtml+xml"}},5419:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l pB hB"},D:{1:"4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},E:{1:"A B C N H fB XB R U jB kB",2:"G W I D F E 0B YB cB dB eB"},F:{1:"0 1 2 3 4 5 6 7 8 9 r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q lB mB nB oB R VB qB U"},G:{1:"yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D",16:"A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"JC KC LC MC XB NC OC",2:"G IC"},Q:{1:"PC"},R:{2:"QC"},S:{1:"RC"}},B:2,C:"CSS font-variant-numeric"}},5433:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});Object.defineProperty(e,"rawCache",{enumerable:true,get:function(){return t.default}});Object.defineProperty(e,"getMatch",{enumerable:true,get:function(){return n.default}});Object.defineProperty(e,"getArguments",{enumerable:true,get:function(){return i.default}});Object.defineProperty(e,"sameParent",{enumerable:true,get:function(){return C.default}});var t=_interopRequireDefault(r(3161));var n=_interopRequireDefault(r(2612));var i=_interopRequireDefault(r(4537));var C=_interopRequireDefault(r(3167));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}},5435:function(B,e){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.HTML=e.BODY=void 0;const r="body";e.BODY=r;const t="html";e.HTML=t},5441:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB pB hB"},D:{1:"T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M"},E:{1:"C N H U jB kB",2:"G W I D F E A B 0B YB cB dB eB fB XB R"},F:{1:"8 9 AB CB EB FB GB HB DB V M T",2:"0 1 2 3 4 5 6 7 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z lB mB nB oB R VB qB U"},G:{1:"3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"XB NC OC",2:"G IC JC KC LC MC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:6,C:"flat & flatMap array methods"}},5460:function(B){B.exports={A:{A:{1:"A B",2:"I D iB",132:"F E"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T R VB qB U",2:"E lB mB nB oB"},G:{1:"YB rB IB tB",513:"F uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{4097:"AC"},I:{1025:"KB G Q BC CC DC EC IB FC GC"},J:{258:"D A"},K:{2:"A",258:"B C O R VB U"},L:{1025:"S"},M:{2049:"M"},N:{258:"A B"},O:{258:"HC"},P:{1025:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1025:"QC"},S:{1:"RC"}},B:1,C:"Basic console logging functions"}},5479:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.getBrowserScope=e.setBrowserScope=e.getLatestStableBrowsers=e.find=e.isSupported=e.getSupport=e.features=undefined;var t=r(7911);var n=_interopRequireDefault(t);var i=r(9854);var C=_interopRequireDefault(i);var o=r(3640);var a=r(7236);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}var s=Object.keys(o.features);var u=void 0;function setBrowserScope(B){u=(0,a.cleanBrowsersList)(B)}function getBrowserScope(){return u}var f=(0,n.default)(a.parseCaniuseData,function(B,e){return B.title+e});function getSupport(B){var e=void 0;try{e=(0,o.feature)(o.features[B])}catch(e){var r=find(B);if(r.length===1)return getSupport(r[0]);throw new ReferenceError("Please provide a proper feature name. Cannot find "+B)}return f(e,u)}function isSupported(B,e){var r=void 0;try{r=(0,o.feature)(o.features[B])}catch(e){var t=find(B);if(t.length===1){r=o.features[t[0]]}else{throw new ReferenceError("Please provide a proper feature name. Cannot find "+B)}}return(0,C.default)(e,{ignoreUnknownVersions:true}).map(function(B){return B.split(" ")}).every(function(B){return r.stats[B[0]]&&r.stats[B[0]][B[1]]==="y"})}function find(B){if(typeof B!=="string"){throw new TypeError("The `query` parameter should be a string.")}if(~s.indexOf(B)){return B}return s.filter(function(e){return(0,a.contains)(e,B)})}function getLatestStableBrowsers(){return(0,C.default)("last 1 version")}setBrowserScope();e.features=s;e.getSupport=getSupport;e.isSupported=isSupported;e.find=find;e.getLatestStableBrowsers=getLatestStableBrowsers;e.setBrowserScope=setBrowserScope;e.getBrowserScope=getBrowserScope},5483:function(B,e){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var r=B=>B.replace(/["']/g,"");e.default=r;B.exports=e.default},5487:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"1 2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB"},D:{1:"EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",194:"4 5 6 7 8 9 AB LB CB JB"},E:{1:"A B C N H XB R U jB kB",2:"G W I D F E 0B YB cB dB eB fB"},F:{1:"4 5 6 7 8 9 AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q lB mB nB oB R VB qB U",194:"0 1 2 3 r s t u v w x O z"},G:{1:"zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"LC MC XB NC OC",2:"G",194:"IC JC KC"},Q:{2:"PC"},R:{194:"QC"},S:{2:"RC"}},B:7,C:"#rrggbbaa hex color notation"}},5493:function(B,e){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=uniqueExcept;function uniqueExcept(B){return function unique(){const e=Array.prototype.concat.apply([],arguments);return e.filter((r,t)=>{if(r.toLowerCase()===B){return true}return t===e.indexOf(r)})}}B.exports=e.default},5500:function(B){var e="-".charCodeAt(0);var r="+".charCodeAt(0);var t=".".charCodeAt(0);var n="e".charCodeAt(0);var i="E".charCodeAt(0);B.exports=function(B){var C=0;var o=B.length;var a=false;var s=-1;var u=false;var f;while(C<o){f=B.charCodeAt(C);if(f>=48&&f<=57){u=true}else if(f===n||f===i){if(s>-1){break}s=C}else if(f===t){if(a){break}a=true}else if(f===r||f===e){if(C!==0){break}}else{break}C+=1}if(s+1===C)C--;return u?{number:B.slice(0,C),unit:B.slice(C)}:false}},5538:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=r(2043);var n=_interopRequireDefault(r(6486));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}const i="atrule";const C="decl";const o="rule";function reduceCalcWhitespaces(B){if(B.type==="space"){B.value=" "}else if(B.type==="function"){if(!["var","env","constant"].includes(B.value.toLowerCase())){B.before=B.after=""}}}function reduceWhitespaces(B){if(B.type==="space"){B.value=" "}else if(B.type==="div"){B.before=B.after=""}else if(B.type==="function"){if(!["var","env","constant"].includes(B.value.toLowerCase())){B.before=B.after=""}if(B.value.toLowerCase()==="calc"){n.default.walk(B.nodes,reduceCalcWhitespaces);return false}}}var a=(0,t.plugin)("postcss-normalize-whitespace",()=>{return B=>{const e={};B.walk(B=>{const{type:r}=B;if(~[C,o,i].indexOf(r)&&B.raws.before){B.raws.before=B.raws.before.replace(/\s/g,"")}if(r===C){if(B.important){B.raws.important="!important"}B.value=B.value.replace(/\s*(\\9)\s*/,"$1");const r=B.value;if(e[r]){B.value=e[r]}else{const t=(0,n.default)(B.value);const i=t.walk(reduceWhitespaces).toString();B.value=i;e[r]=i}if(B.raws.before){const e=B.prev();if(e&&e.type!==o){B.raws.before=B.raws.before.replace(/;/g,"")}}B.raws.between=":";B.raws.semicolon=false}else if(r===o||r===i){B.raws.between=B.raws.after="";B.raws.semicolon=false}});B.raws.after=""}});e.default=a;B.exports=e.default},5544:function(B,e){"use strict";e.__esModule=true;var r=e.TAG="tag";var t=e.STRING="string";var n=e.SELECTOR="selector";var i=e.ROOT="root";var C=e.PSEUDO="pseudo";var o=e.NESTING="nesting";var a=e.ID="id";var s=e.COMMENT="comment";var u=e.COMBINATOR="combinator";var f=e.CLASS="class";var l=e.ATTRIBUTE="attribute";var c=e.UNIVERSAL="universal"},5569:function(B){B.exports={A:{A:{1:"I D F E A B iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"1 2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{2:"RC"}},B:7,C:"background-position-x & background-position-y"}},5570:function(B){var e="(".charCodeAt(0);var r=")".charCodeAt(0);var t="'".charCodeAt(0);var n='"'.charCodeAt(0);var i="\\".charCodeAt(0);var C="/".charCodeAt(0);var o=",".charCodeAt(0);var a=":".charCodeAt(0);var s="*".charCodeAt(0);var u="u".charCodeAt(0);var f="U".charCodeAt(0);var l="+".charCodeAt(0);var c=/^[a-f0-9?-]+$/i;B.exports=function(B){var p=[];var A=B;var d,h,E,D,v,F,G,O;var M=0;var g=A.charCodeAt(M);var I=A.length;var H=[{nodes:p}];var L=0;var m;var y="";var N="";var R="";while(M<I){if(g<=32){d=M;do{d+=1;g=A.charCodeAt(d)}while(g<=32);D=A.slice(M,d);E=p[p.length-1];if(g===r&&L){R=D}else if(E&&E.type==="div"){E.after=D}else if(g===o||g===a||g===C&&A.charCodeAt(d+1)!==s&&(!m||m&&m.type==="function"&&m.value!=="calc")){N=D}else{p.push({type:"space",sourceIndex:M,value:D})}M=d}else if(g===t||g===n){d=M;h=g===t?"'":'"';D={type:"string",sourceIndex:M,quote:h};do{v=false;d=A.indexOf(h,d+1);if(~d){F=d;while(A.charCodeAt(F-1)===i){F-=1;v=!v}}else{A+=h;d=A.length-1;D.unclosed=true}}while(v);D.value=A.slice(M+1,d);p.push(D);M=d+1;g=A.charCodeAt(M)}else if(g===C&&A.charCodeAt(M+1)===s){D={type:"comment",sourceIndex:M};d=A.indexOf("*/",M);if(d===-1){D.unclosed=true;d=A.length}D.value=A.slice(M+2,d);p.push(D);M=d+2;g=A.charCodeAt(M)}else if((g===C||g===s)&&m&&m.type==="function"&&m.value==="calc"){D=A[M];p.push({type:"word",sourceIndex:M-N.length,value:D});M+=1;g=A.charCodeAt(M)}else if(g===C||g===o||g===a){D=A[M];p.push({type:"div",sourceIndex:M-N.length,value:D,before:N,after:""});N="";M+=1;g=A.charCodeAt(M)}else if(e===g){d=M;do{d+=1;g=A.charCodeAt(d)}while(g<=32);O=M;D={type:"function",sourceIndex:M-y.length,value:y,before:A.slice(O+1,d)};M=d;if(y==="url"&&g!==t&&g!==n){d-=1;do{v=false;d=A.indexOf(")",d+1);if(~d){F=d;while(A.charCodeAt(F-1)===i){F-=1;v=!v}}else{A+=")";d=A.length-1;D.unclosed=true}}while(v);G=d;do{G-=1;g=A.charCodeAt(G)}while(g<=32);if(O<G){if(M!==G+1){D.nodes=[{type:"word",sourceIndex:M,value:A.slice(M,G+1)}]}else{D.nodes=[]}if(D.unclosed&&G+1!==d){D.after="";D.nodes.push({type:"space",sourceIndex:G+1,value:A.slice(G+1,d)})}else{D.after=A.slice(G+1,d)}}else{D.after="";D.nodes=[]}M=d+1;g=A.charCodeAt(M);p.push(D)}else{L+=1;D.after="";p.push(D);H.push(D);p=D.nodes=[];m=D}y=""}else if(r===g&&L){M+=1;g=A.charCodeAt(M);m.after=R;R="";L-=1;H.pop();m=H[L];p=m.nodes}else{d=M;do{if(g===i){d+=1}d+=1;g=A.charCodeAt(d)}while(d<I&&!(g<=32||g===t||g===n||g===o||g===a||g===C||g===e||g===s&&m&&m.type==="function"&&m.value==="calc"||g===C&&m.type==="function"&&m.value==="calc"||g===r&&L));D=A.slice(M,d);if(e===g){y=D}else if((u===D.charCodeAt(0)||f===D.charCodeAt(0))&&l===D.charCodeAt(1)&&c.test(D.slice(2))){p.push({type:"unicode-range",sourceIndex:M,value:D})}else{p.push({type:"word",sourceIndex:M,value:D})}M=d}}for(M=H.length-1;M;M-=1){H[M].unclosed=true}return H[0].nodes}},5579:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"K L y BB Q WB S",2:"C N H P J"},C:{1:"0 1 2 3 4 5 6 7 8 9 v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w"},E:{1:"B C N H R U jB kB",2:"G W I D F E A 0B YB cB dB eB fB XB"},F:{1:"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j lB mB nB oB R VB qB U"},G:{1:"2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB",194:"1B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:2,C:"Subresource Integrity"}},5592:function(B,e,r){var t=r(8600);var n=r(40);var i={};var C=Object.keys(t);function wrapRaw(B){var e=function(e){if(e===undefined||e===null){return e}if(arguments.length>1){e=Array.prototype.slice.call(arguments)}return B(e)};if("conversion"in B){e.conversion=B.conversion}return e}function wrapRounded(B){var e=function(e){if(e===undefined||e===null){return e}if(arguments.length>1){e=Array.prototype.slice.call(arguments)}var r=B(e);if(typeof r==="object"){for(var t=r.length,n=0;n<t;n++){r[n]=Math.round(r[n])}}return r};if("conversion"in B){e.conversion=B.conversion}return e}C.forEach(function(B){i[B]={};Object.defineProperty(i[B],"channels",{value:t[B].channels});Object.defineProperty(i[B],"labels",{value:t[B].labels});var e=n(B);var r=Object.keys(e);r.forEach(function(r){var t=e[r];i[B][r]=wrapRounded(t);i[B][r].raw=wrapRaw(t)})});B.exports=i},5607:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L",16:"y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB pB hB",16:"y BB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S",16:"gB bB aB"},E:{1:"C N U",2:"G W I D F E A B 0B YB cB dB eB fB XB R",16:"H jB kB"},F:{2:"0 1 2 3 4 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z lB mB nB oB R VB qB U",16:"5 6 7 8 9 AB CB EB FB GB HB DB V M T"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{16:"AC"},I:{2:"KB G BC CC DC EC IB FC GC",16:"Q"},J:{2:"D",16:"A"},K:{2:"A B C R VB U",16:"O"},L:{16:"S"},M:{16:"M"},N:{2:"A",16:"B"},O:{16:"HC"},P:{2:"G IC JC",16:"KC LC MC XB NC OC"},Q:{16:"PC"},R:{16:"QC"},S:{2:"RC"}},B:1,C:"Password Rules"}},5614:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L",33:"y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{33:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"0B YB",33:"G W I D F E A B C N H cB dB eB fB XB R U jB kB"},F:{2:"E B C lB mB nB oB R VB qB U",33:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{33:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{33:"KB G Q BC CC DC EC IB FC GC"},J:{33:"D A"},K:{2:"A B C R VB U",33:"O"},L:{33:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{33:"G IC JC KC LC MC XB NC OC"},Q:{33:"PC"},R:{33:"QC"},S:{2:"RC"}},B:7,C:"CSS Reflections"}},5621:function(B){B.exports={A:{A:{1:"E A B",2:"I D F iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{2:"sB KB G W I D F E A B C N H P J K L X Y Z pB hB",132:"0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{1:"0 1 2 3 4 5 6 7 8 9 C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E",16:"A B"},E:{1:"G W I D F E A B C N H cB dB eB fB XB R U jB kB",2:"0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U"},G:{1:"F rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB"},H:{2:"AC"},I:{1:"KB G Q EC IB FC GC",2:"BC CC DC"},J:{1:"A",2:"D"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{132:"M"},N:{1:"A",2:"B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{132:"RC"}},B:6,C:"AAC audio file format"}},5622:function(B){B.exports=require("path")},5632:function(B){B.exports={A:{A:{1:"E A B",130:"I D F iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",257:"sB KB G W I pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{1:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"EventTarget.addEventListener()"}},5649:function(B){B.exports={A:{A:{1:"B",2:"I D F E A iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b"},E:{1:"A B C N H XB R U jB kB",2:"G W I D F E 0B YB cB dB eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U"},G:{1:"zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB"},H:{2:"AC"},I:{1:"Q FC GC",2:"KB G BC CC DC EC IB"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"B",2:"A"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{1:"QC"},S:{2:"RC"}},B:6,C:"Internationalization API"}},5712:function(B){B.exports={A:{A:{2:"I D F E A iB",129:"B"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"D F E A B C N H eB fB XB R U jB kB",2:"G W I 0B YB cB dB"},F:{1:"0 1 2 3 4 5 6 7 8 9 C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T U",2:"E B lB mB nB oB R VB qB"},G:{1:"F vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB uB"},H:{2:"AC"},I:{1:"Q FC GC",2:"KB G BC CC DC EC IB"},J:{1:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:6,C:"Strict Transport Security"}},5713:function(B,e,r){"use strict";const t=r(2902);function isHex(B){return t({exact:true}).test(B)}B.exports=isHex},5730:function(B){B.exports={A:{A:{1:"E A B",2:"I D F iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB",4:"sB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T mB nB oB R VB qB U",2:"E",4:"lB"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{1:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:2,C:"CSS3 Colors"}},5731:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{2:"0 1 2 3 4 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB",129:"5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{1:"7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C R VB U",16:"O"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{1:"PC"},R:{1:"QC"},S:{2:"RC"}},B:5,C:"Auxclick"}},5739:function(B,e,r){"use strict";var t=r(9353);B.exports=Function.prototype.bind||t},5747:function(B){B.exports=require("fs")},5756:function(B){B.exports={A:{A:{1:"A B",2:"I D F E iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB hB",33:"B C N H P J K L X Y Z a",164:"G W I D F E A"},D:{1:"0 1 2 3 4 5 6 7 8 9 c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E",33:"a b",164:"L X Y Z",420:"A B C N H P J K"},E:{1:"D F E A B C N H dB eB fB XB R U jB kB",2:"G W 0B YB cB",33:"I"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U"},G:{1:"F vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB",33:"uB"},H:{2:"AC"},I:{1:"Q FC GC",2:"KB G BC CC DC EC IB"},J:{1:"A",2:"D"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"requestAnimationFrame"}},5759:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB pB hB",194:"TB UB y BB"},D:{1:"gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:6,C:"AVIF image format"}},5782:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=normalizeTransition;var t=r(6486);var n=r(5433);var i=_interopRequireDefault(r(1231));var C=_interopRequireDefault(r(7138));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}const o=["ease","linear","ease-in","ease-out","ease-in-out","step-start","step-end"];function normalizeTransition(B){let e=(0,n.getArguments)(B);let r=e.reduce((B,e)=>{let r={timingFunction:[],property:[],time1:[],time2:[]};e.forEach(B=>{const{type:e,value:n}=B;if(e==="space"){return}if(e==="function"&&~["steps","cubic-bezier"].indexOf(n.toLowerCase())){r.timingFunction=[...r.timingFunction,B,(0,i.default)()]}else if((0,t.unit)(n)){if(!r.time1.length){r.time1=[...r.time1,B,(0,i.default)()]}else{r.time2=[...r.time2,B,(0,i.default)()]}}else if(~o.indexOf(n.toLowerCase())){r.timingFunction=[...r.timingFunction,B,(0,i.default)()]}else{r.property=[...r.property,B,(0,i.default)()]}});return[...B,[...r.property,...r.time1,...r.timingFunction,...r.time2]]},[]);return(0,C.default)(r)}B.exports=e.default},5785:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"J K L",2:"C N H",516:"P",1025:"y BB Q WB S"},C:{1:"7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 1 2 3 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB",194:"4 5 6"},D:{1:"AB LB CB JB EB FB GB",2:"0 1 2 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",516:"3 4 5 6 7 8 9",1025:"HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"N H U jB kB",2:"G W I D F E A B C 0B YB cB dB eB fB XB R"},F:{1:"0 1 2 3 4 5 6 7 8 9 x O z AB CB EB FB",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p lB mB nB oB R VB qB U",516:"q r s t u v w",1025:"GB HB DB V M T"},G:{1:"4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B"},H:{2:"AC"},I:{2:"KB G BC CC DC EC IB FC GC",1025:"Q"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{516:"HC"},P:{1:"KC LC MC XB NC OC",2:"G",516:"IC JC"},Q:{1025:"PC"},R:{2:"QC"},S:{2:"RC"}},B:5,C:"IntersectionObserver"}},5804:function(B,e){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=commentParser;function commentParser(B){const e=[];const r=B.length;let t=0;let n;while(t<r){n=B.indexOf("/*",t);if(~n){e.push([0,t,n]);t=n;n=B.indexOf("*/",t+2);e.push([1,t+2,n]);t=n+2}else{e.push([0,t,r]);t=r}}return e}B.exports=e.default},5810:function(B){B.exports={A:{A:{2:"I D F E iB",420:"A B"},B:{2:"y BB Q WB S",420:"C N H P J K L"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",36:"P J K L",66:"X Y Z a b c d e f g h i j k l m"},E:{2:"G W I C N H 0B YB cB R U jB kB",33:"D F E A B dB eB fB XB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"YB rB IB tB uB 2B 3B 4B 5B 6B 7B 8B 9B",33:"F vB wB xB yB zB ZB 1B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{420:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:5,C:"CSS Regions"}},5812:function(B,e){"use strict";e.__esModule=true;var r=typeof Symbol==="function"&&typeof Symbol.iterator==="symbol"?function(B){return typeof B}:function(B){return B&&typeof Symbol==="function"&&B.constructor===Symbol&&B!==Symbol.prototype?"symbol":typeof B};function _classCallCheck(B,e){if(!(B instanceof e)){throw new TypeError("Cannot call a class as a function")}}var t=function cloneNode(B,e){if((typeof B==="undefined"?"undefined":r(B))!=="object"){return B}var t=new B.constructor;for(var n in B){if(!B.hasOwnProperty(n)){continue}var i=B[n];var C=typeof i==="undefined"?"undefined":r(i);if(n==="parent"&&C==="object"){if(e){t[n]=e}}else if(i instanceof Array){t[n]=i.map(function(B){return cloneNode(B,t)})}else{t[n]=cloneNode(i,t)}}return t};var n=function(){function _class(){var B=arguments.length>0&&arguments[0]!==undefined?arguments[0]:{};_classCallCheck(this,_class);Object.assign(this,B);this.spaces=this.spaces||{};this.spaces.before=this.spaces.before||"";this.spaces.after=this.spaces.after||""}_class.prototype.remove=function remove(){if(this.parent){this.parent.removeChild(this)}this.parent=undefined;return this};_class.prototype.replaceWith=function replaceWith(){if(this.parent){for(var B in arguments){this.parent.insertBefore(this,arguments[B])}this.remove()}return this};_class.prototype.next=function next(){return this.parent.at(this.parent.index(this)+1)};_class.prototype.prev=function prev(){return this.parent.at(this.parent.index(this)-1)};_class.prototype.clone=function clone(){var B=arguments.length>0&&arguments[0]!==undefined?arguments[0]:{};var e=t(this);for(var r in B){e[r]=B[r]}return e};_class.prototype.toString=function toString(){return[this.spaces.before,String(this.value),this.spaces.after].join("")};return _class}();e.default=n;B.exports=e["default"]},5813:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=r(2043);var n=r(6486);var i=r(9649);var C=_interopRequireDefault(r(3541));var o=_interopRequireDefault(r(7727));var a=_interopRequireDefault(r(423));var s=_interopRequireDefault(r(3119));var u=_interopRequireDefault(r(1245));var f=_interopRequireDefault(r(4907));var l=_interopRequireDefault(r(7059));var c=_interopRequireDefault(r(3680));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}const p=["column-width","column-count"];const A="auto";const d="inherit";function normalize(B){if(B[0].toLowerCase()===A){return B[1]}if(B[1].toLowerCase()===A){return B[0]}if(B[0].toLowerCase()===d&&B[1].toLowerCase()===d){return d}return B.join(" ")}function explode(B){B.walkDecls(/^columns$/i,B=>{if(!(0,c.default)(B)){return}if((0,i.detect)(B)){return}let e=t.list.space(B.value);if(e.length===1){e.push(A)}e.forEach((e,r)=>{let t=p[1];if(e.toLowerCase()===A){t=p[r]}else if((0,n.unit)(e).unit){t=p[0]}(0,u.default)(B.parent,B,{prop:t,value:e})});B.remove()})}function cleanup(B){let e=(0,o.default)(B,["columns"].concat(p));while(e.length){const B=e[e.length-1];const r=e.filter(e=>!(0,i.detect)(B)&&!(0,i.detect)(e)&&e!==B&&e.important===B.important&&B.prop==="columns"&&e.prop!==B.prop);r.forEach(f.default);e=e.filter(B=>!~r.indexOf(B));let t=e.filter(e=>!(0,i.detect)(B)&&!(0,i.detect)(e)&&e!==B&&e.important===B.important&&e.prop===B.prop&&!(!(0,l.default)(e)&&(0,l.default)(B)));t.forEach(f.default);e=e.filter(e=>e!==B&&!~t.indexOf(e))}}function merge(B){(0,s.default)(B,p,(B,e)=>{if((0,C.default)(B)&&!B.some(i.detect)){(0,u.default)(e.parent,e,{prop:"columns",value:normalize(B.map(a.default))});B.forEach(f.default);return true}});cleanup(B)}var h={explode:explode,merge:merge};e.default=h;B.exports=e.default},5817:function(B){B.exports={A:"ie",B:"edge",C:"firefox",D:"chrome",E:"safari",F:"opera",G:"ios_saf",H:"op_mini",I:"android",J:"bb",K:"op_mob",L:"and_chr",M:"and_ff",N:"ie_mob",O:"and_uc",P:"samsung",Q:"and_qq",R:"baidu",S:"kaios"}},5826:function(B){B.exports={A:{A:{2:"I D F E A iB",132:"B"},B:{1:"C N H P J K L",4:"y BB Q WB S"},C:{2:"sB KB pB",4:"0 1 2 3 4 5 6 7 8 9 I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",8:"G W hB"},D:{2:"G W I",4:"0 1 2 3 4 5 6 7 8 9 D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"E B C lB mB nB oB R VB qB U",4:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{2:"YB rB",4:"F IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"BC CC DC",4:"KB G Q EC IB FC GC"},J:{2:"D",4:"A"},K:{1:"C U",2:"A B R VB",4:"O"},L:{4:"S"},M:{4:"M"},N:{1:"B",2:"A"},O:{4:"HC"},P:{4:"G IC JC KC LC MC XB NC OC"},Q:{4:"PC"},R:{4:"QC"},S:{4:"RC"}},B:4,C:"DeviceOrientation & DeviceMotion events"}},5831:function(B){B.exports={A:{A:{1:"E A B",16:"iB",516:"F",1540:"I D"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB",132:"KB",260:"sB"},D:{1:"0 1 2 3 4 5 6 7 8 9 E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",16:"W I D F",132:"G"},E:{1:"I D F E A B C N H cB dB eB fB XB R U jB kB",16:"W 0B",132:"G YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T qB U",16:"E lB",260:"B mB nB oB R VB"},G:{1:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB rB IB"},H:{1:"AC"},I:{1:"KB G Q EC IB FC GC",16:"BC CC",132:"DC"},J:{1:"D A"},K:{1:"C O U",260:"A B R VB"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:2,C:"::first-letter CSS pseudo-element selector"}},5841:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"J K L y BB Q WB S",2:"C N H P"},C:{1:"3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 1 2 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB"},D:{1:"8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v",16:"w x O",388:"0 1 2 3 4 5 6 7 z"},E:{1:"N H jB kB",2:"G W I D F E A 0B YB cB dB eB fB XB",516:"B C R U"},F:{1:"0 1 2 3 4 5 6 7 8 9 u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t lB mB nB oB R VB qB U"},G:{1:"1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB"},H:{2:"AC"},I:{1:"Q",2:"BC CC DC",16:"KB G EC IB FC GC"},J:{1:"A",2:"D"},K:{1:"U",16:"A B C R VB",129:"O"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",129:"G"},Q:{1:"PC"},R:{1:"QC"},S:{2:"RC"}},B:6,C:"FLAC audio format"}},5865:function(B){B.exports={A:{A:{2:"I D F E iB",260:"A B"},B:{1:"y BB Q WB S",260:"C N H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB",260:"G W I D F E A B C N H P J K L X Y Z a b c d e f hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W",260:"N H P J K L X Y Z a b c d e f g h i j k l m n o p",388:"I D F E A B C"},E:{1:"A B C N H XB R U jB kB",2:"G W 0B YB",260:"I D F E dB eB fB",388:"cB"},F:{1:"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B lB mB nB oB",260:"C P J K L X Y Z a b c R VB qB U"},G:{1:"zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB",260:"F uB vB wB xB yB"},H:{2:"AC"},I:{1:"Q GC",2:"BC CC DC",260:"FC",388:"KB G EC IB"},J:{260:"A",388:"D"},K:{1:"O",2:"A B",260:"C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A",260:"B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:5,C:"File API"}},5871:function(B){B.exports={A:{A:{1:"I D iB",129:"F E A B"},B:{1:"C N H P J K L y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H cB dB eB fB XB R U jB kB",2:"0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U"},G:{1:"F rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB"},H:{2:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{2:"M"},N:{129:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{2:"RC"}},B:7,C:"CSS zoom"}},5878:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"N H P J K L y BB Q WB S",16:"C"},C:{1:"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s"},E:{1:"A B N H fB XB R U jB kB",2:"G W I D F E 0B YB cB dB eB",129:"C"},F:{1:"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g lB mB nB oB R VB qB U"},G:{1:"xB yB zB ZB 1B 2B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB",129:"3B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:6,C:"ES6 Template Literals (Template Strings)"}},5888:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB pB hB",132:"OB PB QB RB SB TB UB y BB",1090:"V",1412:"NB",1668:"M T MB"},D:{1:"MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M",2114:"T"},E:{1:"H jB kB",2:"G W I D F E 0B YB cB dB eB fB",4100:"A B C N XB R U"},F:{2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o lB mB nB oB R VB qB U",8196:"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{1:"9B",2:"F YB rB IB tB uB vB wB",4100:"xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{16388:"S"},M:{16388:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:7,C:"Picture-in-Picture"}},5893:function(B){B.exports={A:{A:{1:"A B",2:"I D F E iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G"},E:{1:"W I D F E A B C N H cB dB eB fB XB R U jB kB",2:"G 0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U",2:"E"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"KB G Q EC IB FC GC",2:"BC CC DC"},J:{1:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{2:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{2:"RC"}},B:1,C:"Autofocus attribute"}},5895:function(B){B.exports={A:{A:{16:"iB",132:"E A B",260:"I D F"},B:{1:"N H P J K L y BB Q WB S",16:"C"},C:{1:"0 1 2 3 4 5 6 7 8 9 E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",16:"G W I D F E A B C N H P J K L X Y Z a b c d"},E:{1:"I D F E A B C N H cB dB eB fB XB R U jB kB",16:"G W 0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",16:"E B lB mB nB oB R VB",132:"C qB U"},G:{1:"F uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB rB IB tB"},H:{16:"AC"},I:{1:"G Q EC IB FC GC",16:"KB BC CC DC"},J:{16:"D A"},K:{16:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{16:"A B"},O:{16:"HC"},P:{1:"IC JC KC LC MC XB NC OC",16:"G"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"Node.parentElement"}},5904:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"P J K L y BB Q WB S",2:"C N H"},C:{1:"0 1 2 3 4 5 6 7 8 9 w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v pB hB"},D:{1:"3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",194:"1",257:"2"},E:{1:"N H jB kB",2:"G W I D F E A 0B YB cB dB eB fB XB",513:"B C R U"},F:{1:"0 1 2 3 4 5 6 7 8 9 q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n lB mB nB oB R VB qB U",194:"o p"},G:{1:"1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{1:"PC"},R:{2:"QC"},S:{1:"RC"}},B:6,C:"Brotli Accept-Encoding/Content-Encoding"}},5912:function(B){B.exports={A:{A:{1:"E A B",132:"I D F iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{1:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:2,C:"CSS first-line pseudo-element"}},5917:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p pB hB"},D:{1:"6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"KC LC MC XB NC OC",2:"G IC JC"},Q:{1:"PC"},R:{2:"QC"},S:{1:"RC"}},B:1,C:"BroadcastChannel"}},5929:function(B){B.exports={A:{A:{1:"D F E A B",2:"iB",8:"I"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{1:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:2,C:"PNG alpha transparency"}},5931:function(B,e,r){var t=r(885);var n=r(8901);var i={};for(var C in t){if(t.hasOwnProperty(C)){i[t[C]]=C}}var o=B.exports={to:{},get:{}};o.get=function(B){var e=B.substring(0,3).toLowerCase();var r;var t;switch(e){case"hsl":r=o.get.hsl(B);t="hsl";break;case"hwb":r=o.get.hwb(B);t="hwb";break;default:r=o.get.rgb(B);t="rgb";break}if(!r){return null}return{model:t,value:r}};o.get.rgb=function(B){if(!B){return null}var e=/^#([a-f0-9]{3,4})$/i;var r=/^#([a-f0-9]{6})([a-f0-9]{2})?$/i;var n=/^rgba?\(\s*([+-]?\d+)\s*,\s*([+-]?\d+)\s*,\s*([+-]?\d+)\s*(?:,\s*([+-]?[\d\.]+)\s*)?\)$/;var i=/^rgba?\(\s*([+-]?[\d\.]+)\%\s*,\s*([+-]?[\d\.]+)\%\s*,\s*([+-]?[\d\.]+)\%\s*(?:,\s*([+-]?[\d\.]+)\s*)?\)$/;var C=/(\D+)/;var o=[0,0,0,1];var a;var s;var u;if(a=B.match(r)){u=a[2];a=a[1];for(s=0;s<3;s++){var f=s*2;o[s]=parseInt(a.slice(f,f+2),16)}if(u){o[3]=Math.round(parseInt(u,16)/255*100)/100}}else if(a=B.match(e)){a=a[1];u=a[3];for(s=0;s<3;s++){o[s]=parseInt(a[s]+a[s],16)}if(u){o[3]=Math.round(parseInt(u+u,16)/255*100)/100}}else if(a=B.match(n)){for(s=0;s<3;s++){o[s]=parseInt(a[s+1],0)}if(a[4]){o[3]=parseFloat(a[4])}}else if(a=B.match(i)){for(s=0;s<3;s++){o[s]=Math.round(parseFloat(a[s+1])*2.55)}if(a[4]){o[3]=parseFloat(a[4])}}else if(a=B.match(C)){if(a[1]==="transparent"){return[0,0,0,0]}o=t[a[1]];if(!o){return null}o[3]=1;return o}else{return null}for(s=0;s<3;s++){o[s]=clamp(o[s],0,255)}o[3]=clamp(o[3],0,1);return o};o.get.hsl=function(B){if(!B){return null}var e=/^hsla?\(\s*([+-]?(?:\d*\.)?\d+)(?:deg)?\s*,\s*([+-]?[\d\.]+)%\s*,\s*([+-]?[\d\.]+)%\s*(?:,\s*([+-]?[\d\.]+)\s*)?\)$/;var r=B.match(e);if(r){var t=parseFloat(r[4]);var n=(parseFloat(r[1])+360)%360;var i=clamp(parseFloat(r[2]),0,100);var C=clamp(parseFloat(r[3]),0,100);var o=clamp(isNaN(t)?1:t,0,1);return[n,i,C,o]}return null};o.get.hwb=function(B){if(!B){return null}var e=/^hwb\(\s*([+-]?\d*[\.]?\d+)(?:deg)?\s*,\s*([+-]?[\d\.]+)%\s*,\s*([+-]?[\d\.]+)%\s*(?:,\s*([+-]?[\d\.]+)\s*)?\)$/;var r=B.match(e);if(r){var t=parseFloat(r[4]);var n=(parseFloat(r[1])%360+360)%360;var i=clamp(parseFloat(r[2]),0,100);var C=clamp(parseFloat(r[3]),0,100);var o=clamp(isNaN(t)?1:t,0,1);return[n,i,C,o]}return null};o.to.hex=function(){var B=n(arguments);return"#"+hexDouble(B[0])+hexDouble(B[1])+hexDouble(B[2])+(B[3]<1?hexDouble(Math.round(B[3]*255)):"")};o.to.rgb=function(){var B=n(arguments);return B.length<4||B[3]===1?"rgb("+Math.round(B[0])+", "+Math.round(B[1])+", "+Math.round(B[2])+")":"rgba("+Math.round(B[0])+", "+Math.round(B[1])+", "+Math.round(B[2])+", "+B[3]+")"};o.to.rgb.percent=function(){var B=n(arguments);var e=Math.round(B[0]/255*100);var r=Math.round(B[1]/255*100);var t=Math.round(B[2]/255*100);return B.length<4||B[3]===1?"rgb("+e+"%, "+r+"%, "+t+"%)":"rgba("+e+"%, "+r+"%, "+t+"%, "+B[3]+")"};o.to.hsl=function(){var B=n(arguments);return B.length<4||B[3]===1?"hsl("+B[0]+", "+B[1]+"%, "+B[2]+"%)":"hsla("+B[0]+", "+B[1]+"%, "+B[2]+"%, "+B[3]+")"};o.to.hwb=function(){var B=n(arguments);var e="";if(B.length>=4&&B[3]!==1){e=", "+B[3]}return"hwb("+B[0]+", "+B[1]+"%, "+B[2]+"%"+e+")"};o.to.keyword=function(B){return i[B.slice(0,3)]};function clamp(B,e,r){return Math.min(Math.max(e,B),r)}function hexDouble(B){var e=B.toString(16).toUpperCase();return e.length<2?"0"+e:e}},5942:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",1028:"N H P J K L",1346:"C"},C:{1:"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB",196:"m",516:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l hB"},D:{1:"5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K",33:"0 1 2 3 4 L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},E:{1:"A B C N H fB XB R U jB kB",2:"G W 0B YB cB",33:"I D F E dB eB"},F:{1:"0 1 2 3 4 5 6 7 8 9 s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U",33:"P J K L X Y Z a b c d e f g h i j k l m n o p q r"},G:{1:"yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB",33:"F uB vB wB xB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB",33:"FC GC"},J:{2:"D",33:"A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"KC LC MC XB NC OC",33:"G IC JC"},Q:{1:"PC"},R:{33:"QC"},S:{1:"RC"}},B:5,C:"CSS Filter Effects"}},5957:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J",164:"y BB Q WB S",3138:"K",12292:"L"},C:{1:"5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB",260:"0 1 2 3 4 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB"},D:{164:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"0B YB",164:"G W I D F E A B C N H cB dB eB fB XB R U jB kB"},F:{2:"E B C lB mB nB oB R VB qB U",164:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{164:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{164:"Q FC GC",676:"KB G BC CC DC EC IB"},J:{164:"D A"},K:{2:"A B C R VB U",164:"O"},L:{164:"S"},M:{1:"M"},N:{2:"A B"},O:{164:"HC"},P:{164:"G IC JC KC LC MC XB NC OC"},Q:{164:"PC"},R:{164:"QC"},S:{260:"RC"}},B:4,C:"CSS Masks"}},5967:function(B){B.exports={A:{A:{2:"I D F iB",132:"E A B"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W pB hB",132:"I D F E A"},D:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G",16:"W I D F N H",388:"E A B C"},E:{1:"D F E A B C N H dB eB fB XB R U jB kB",2:"G 0B YB",16:"W I",388:"cB"},F:{1:"0 1 2 3 4 5 6 7 8 9 C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T qB U",2:"E lB mB nB oB",132:"B R VB"},G:{1:"F uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"rB",16:"YB IB",388:"tB"},H:{1:"AC"},I:{1:"Q FC GC",2:"BC CC DC",388:"KB G EC IB"},J:{1:"A",388:"D"},K:{1:"C O U",2:"A",132:"B R VB"},L:{1:"S"},M:{1:"M"},N:{132:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"CustomEvent"}},5971:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"H jB kB",2:"G W I D F E A B C N 0B YB cB dB eB fB XB R U"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:5,C:"ui-serif, ui-sans-serif, ui-monospace and ui-rounded values for font-family"}},5980:function(B,e,r){"use strict";e.__esModule=true;var t=function(){function defineProperties(B,e){for(var r=0;r<e.length;r++){var t=e[r];t.enumerable=t.enumerable||false;t.configurable=true;if("value"in t)t.writable=true;Object.defineProperty(B,t.key,t)}}return function(B,e,r){if(e)defineProperties(B.prototype,e);if(r)defineProperties(B,r);return B}}();var n=r(5812);var i=_interopRequireDefault(n);var C=r(5544);var o=_interopRequireWildcard(C);function _interopRequireWildcard(B){if(B&&B.__esModule){return B}else{var e={};if(B!=null){for(var r in B){if(Object.prototype.hasOwnProperty.call(B,r))e[r]=B[r]}}e.default=B;return e}}function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _classCallCheck(B,e){if(!(B instanceof e)){throw new TypeError("Cannot call a class as a function")}}function _possibleConstructorReturn(B,e){if(!B){throw new ReferenceError("this hasn't been initialised - super() hasn't been called")}return e&&(typeof e==="object"||typeof e==="function")?e:B}function _inherits(B,e){if(typeof e!=="function"&&e!==null){throw new TypeError("Super expression must either be null or a function, not "+typeof e)}B.prototype=Object.create(e&&e.prototype,{constructor:{value:B,enumerable:false,writable:true,configurable:true}});if(e)Object.setPrototypeOf?Object.setPrototypeOf(B,e):B.__proto__=e}var a=function(B){_inherits(Container,B);function Container(e){_classCallCheck(this,Container);var r=_possibleConstructorReturn(this,B.call(this,e));if(!r.nodes){r.nodes=[]}return r}Container.prototype.append=function append(B){B.parent=this;this.nodes.push(B);return this};Container.prototype.prepend=function prepend(B){B.parent=this;this.nodes.unshift(B);return this};Container.prototype.at=function at(B){return this.nodes[B]};Container.prototype.index=function index(B){if(typeof B==="number"){return B}return this.nodes.indexOf(B)};Container.prototype.removeChild=function removeChild(B){B=this.index(B);this.at(B).parent=undefined;this.nodes.splice(B,1);var e=void 0;for(var r in this.indexes){e=this.indexes[r];if(e>=B){this.indexes[r]=e-1}}return this};Container.prototype.removeAll=function removeAll(){for(var B=this.nodes,e=Array.isArray(B),r=0,B=e?B:B[Symbol.iterator]();;){var t;if(e){if(r>=B.length)break;t=B[r++]}else{r=B.next();if(r.done)break;t=r.value}var n=t;n.parent=undefined}this.nodes=[];return this};Container.prototype.empty=function empty(){return this.removeAll()};Container.prototype.insertAfter=function insertAfter(B,e){e.parent=this;var r=this.index(B);this.nodes.splice(r+1,0,e);e.parent=this;var t=void 0;for(var n in this.indexes){t=this.indexes[n];if(r<=t){this.indexes[n]=t+1}}return this};Container.prototype.insertBefore=function insertBefore(B,e){e.parent=this;var r=this.index(B);this.nodes.splice(r,0,e);e.parent=this;var t=void 0;for(var n in this.indexes){t=this.indexes[n];if(t<=r){this.indexes[n]=t+1}}return this};Container.prototype.each=function each(B){if(!this.lastEach){this.lastEach=0}if(!this.indexes){this.indexes={}}this.lastEach++;var e=this.lastEach;this.indexes[e]=0;if(!this.length){return undefined}var r=void 0,t=void 0;while(this.indexes[e]<this.length){r=this.indexes[e];t=B(this.at(r),r);if(t===false){break}this.indexes[e]+=1}delete this.indexes[e];if(t===false){return false}};Container.prototype.walk=function walk(B){return this.each(function(e,r){var t=B(e,r);if(t!==false&&e.length){t=e.walk(B)}if(t===false){return false}})};Container.prototype.walkAttributes=function walkAttributes(B){var e=this;return this.walk(function(r){if(r.type===o.ATTRIBUTE){return B.call(e,r)}})};Container.prototype.walkClasses=function walkClasses(B){var e=this;return this.walk(function(r){if(r.type===o.CLASS){return B.call(e,r)}})};Container.prototype.walkCombinators=function walkCombinators(B){var e=this;return this.walk(function(r){if(r.type===o.COMBINATOR){return B.call(e,r)}})};Container.prototype.walkComments=function walkComments(B){var e=this;return this.walk(function(r){if(r.type===o.COMMENT){return B.call(e,r)}})};Container.prototype.walkIds=function walkIds(B){var e=this;return this.walk(function(r){if(r.type===o.ID){return B.call(e,r)}})};Container.prototype.walkNesting=function walkNesting(B){var e=this;return this.walk(function(r){if(r.type===o.NESTING){return B.call(e,r)}})};Container.prototype.walkPseudos=function walkPseudos(B){var e=this;return this.walk(function(r){if(r.type===o.PSEUDO){return B.call(e,r)}})};Container.prototype.walkTags=function walkTags(B){var e=this;return this.walk(function(r){if(r.type===o.TAG){return B.call(e,r)}})};Container.prototype.walkUniversals=function walkUniversals(B){var e=this;return this.walk(function(r){if(r.type===o.UNIVERSAL){return B.call(e,r)}})};Container.prototype.split=function split(B){var e=this;var r=[];return this.reduce(function(t,n,i){var C=B.call(e,n);r.push(n);if(C){t.push(r);r=[]}else if(i===e.length-1){t.push(r)}return t},[])};Container.prototype.map=function map(B){return this.nodes.map(B)};Container.prototype.reduce=function reduce(B,e){return this.nodes.reduce(B,e)};Container.prototype.every=function every(B){return this.nodes.every(B)};Container.prototype.some=function some(B){return this.nodes.some(B)};Container.prototype.filter=function filter(B){return this.nodes.filter(B)};Container.prototype.sort=function sort(B){return this.nodes.sort(B)};Container.prototype.toString=function toString(){return this.map(String).join("")};t(Container,[{key:"first",get:function get(){return this.at(0)}},{key:"last",get:function get(){return this.at(this.length-1)}},{key:"length",get:function get(){return this.nodes.length}}]);return Container}(i.default);e.default=a;B.exports=e["default"]},5982:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"K L y BB Q WB S",2:"C N H",322:"P J"},C:{1:"0 1 2 3 5 6 7 8 9 w O z AB LB JB EB FB GB HB DB V T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k pB hB",194:"l m n o p q r s t u v",513:"4 x CB M"},D:{1:"0 1 2 3 4 5 6 7 8 9 x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r",4:"s t u v w"},E:{1:"C N H R U jB kB",2:"G W I D F E A B 0B YB cB dB eB fB XB"},F:{1:"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e lB mB nB oB R VB qB U",4:"f g h i j"},G:{1:"2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B"},H:{2:"AC"},I:{2:"KB G BC CC DC EC IB FC GC",4:"Q"},J:{2:"D A"},K:{2:"A B C R VB U",4:"O"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{4:"QC"},S:{2:"RC"}},B:4,C:"Service Workers"}},5984:function(B){"use strict";B.exports=(B=>{const e=typeof B;return B!==null&&(e==="object"||e==="function")})},6005:function(B){B.exports={A:{A:{8:"I D F E iB",1924:"A B"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",8:"sB KB pB",516:"c d",772:"G W I D F E A B C N H P J K L X Y Z a b hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",8:"G W I D",516:"c d e f",772:"b",900:"F E A B C N H P J K L X Y Z a"},E:{1:"D F E A B C N H eB fB XB R U jB kB",8:"G W 0B YB",900:"I cB dB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",8:"E B lB mB nB oB R",900:"C VB qB U"},G:{1:"F vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",8:"YB rB IB",900:"tB uB"},H:{900:"AC"},I:{1:"Q FC GC",8:"BC CC DC",900:"KB G EC IB"},J:{1:"A",900:"D"},K:{1:"O",8:"A B",900:"C R VB U"},L:{1:"S"},M:{1:"M"},N:{900:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"classList (DOMTokenList)"}},6016:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y",33:"Z a b c"},E:{1:"B C N H XB R U jB kB",2:"G W I D F E A 0B YB cB dB eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b lB mB nB oB R VB qB U"},G:{1:"ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{2:"RC"}},B:5,C:"Gamepad API"}},6030:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s"},E:{1:"E A B C N H fB XB R U jB kB",2:"G W I D F 0B YB cB dB eB"},F:{1:"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f lB mB nB oB R VB qB U"},G:{1:"xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:6,C:"String.prototype.includes"}},6034:function(B){B.exports={A:{A:{1:"B",2:"I D F iB",8:"E A"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K",33:"L X Y Z a b c d e"},E:{1:"D F E A B C N H dB eB fB XB R U jB kB",2:"G W 0B YB cB",33:"I"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U"},G:{1:"F vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB",33:"uB"},H:{2:"AC"},I:{1:"Q FC GC",2:"KB BC CC DC",8:"G EC IB"},J:{1:"A",2:"D"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"B",8:"A"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"Mutation Observer"}},6039:function(B,e,r){"use strict";e.__esModule=true;var t=function(){function defineProperties(B,e){for(var r=0;r<e.length;r++){var t=e[r];t.enumerable=t.enumerable||false;t.configurable=true;if("value"in t)t.writable=true;Object.defineProperty(B,t.key,t)}}return function(B,e,r){if(e)defineProperties(B.prototype,e);if(r)defineProperties(B,r);return B}}();var n=r(4956);var i=_interopRequireDefault(n);var C=r(5544);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _classCallCheck(B,e){if(!(B instanceof e)){throw new TypeError("Cannot call a class as a function")}}function _possibleConstructorReturn(B,e){if(!B){throw new ReferenceError("this hasn't been initialised - super() hasn't been called")}return e&&(typeof e==="object"||typeof e==="function")?e:B}function _inherits(B,e){if(typeof e!=="function"&&e!==null){throw new TypeError("Super expression must either be null or a function, not "+typeof e)}B.prototype=Object.create(e&&e.prototype,{constructor:{value:B,enumerable:false,writable:true,configurable:true}});if(e)Object.setPrototypeOf?Object.setPrototypeOf(B,e):B.__proto__=e}var o=function(B){_inherits(Attribute,B);function Attribute(){var e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:{};_classCallCheck(this,Attribute);var r=_possibleConstructorReturn(this,B.call(this,e));r.type=C.ATTRIBUTE;r.raws=r.raws||{};r._constructed=true;return r}Attribute.prototype._spacesFor=function _spacesFor(B){var e={before:"",after:""};var r=this.spaces[B]||{};var t=this.raws.spaces&&this.raws.spaces[B]||{};return Object.assign(e,r,t)};Attribute.prototype._valueFor=function _valueFor(B){return this.raws[B]||this[B]};Attribute.prototype._stringFor=function _stringFor(B){var e=arguments.length>1&&arguments[1]!==undefined?arguments[1]:B;var r=arguments.length>2&&arguments[2]!==undefined?arguments[2]:defaultAttrConcat;var t=this._spacesFor(e);return r(this._valueFor(B),t)};Attribute.prototype.offsetOf=function offsetOf(B){var e=1;var r=this._spacesFor("attribute");e+=r.before.length;if(B==="namespace"||B==="ns"){return this.namespace?e:-1}if(B==="attributeNS"){return e}e+=this.namespaceString.length;if(this.namespace){e+=1}if(B==="attribute"){return e}e+=this._valueFor("attribute").length;e+=r.after.length;var t=this._spacesFor("operator");e+=t.before.length;var n=this._valueFor("operator");if(B==="operator"){return n?e:-1}e+=n.length;e+=t.after.length;var i=this._spacesFor("value");e+=i.before.length;var C=this._valueFor("value");if(B==="value"){return C?e:-1}e+=C.length;e+=i.after.length;var o=this._spacesFor("insensitive");e+=o.before.length;if(B==="insensitive"){return this.insensitive?e:-1}return-1};Attribute.prototype.toString=function toString(){var B=this;var e=[this.spaces.before,"["];e.push(this._stringFor("qualifiedAttribute","attribute"));if(this.operator&&this.value){e.push(this._stringFor("operator"));e.push(this._stringFor("value"));e.push(this._stringFor("insensitiveFlag","insensitive",function(e,r){if(e.length>0&&!B.quoted&&r.before.length===0&&!(B.spaces.value&&B.spaces.value.after)){r.before=" "}return defaultAttrConcat(e,r)}))}e.push("]");e.push(this.spaces.after);return e.join("")};t(Attribute,[{key:"qualifiedAttribute",get:function get(){return this.qualifiedName(this.raws.attribute||this.attribute)}},{key:"insensitiveFlag",get:function get(){return this.insensitive?"i":""}},{key:"value",get:function get(){return this._value},set:function set(B){this._value=B;if(this._constructed){delete this.raws.value}}},{key:"namespace",get:function get(){return this._namespace},set:function set(B){this._namespace=B;if(this._constructed){delete this.raws.namespace}}},{key:"attribute",get:function get(){return this._attribute},set:function set(B){this._attribute=B;if(this._constructed){delete this.raws.attibute}}}]);return Attribute}(i.default);e.default=o;function defaultAttrConcat(B,e){return""+e.before+B+e.after}B.exports=e["default"]},6045:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J",514:"K L"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q",129:"0 1 2 3 4 5 6 7 8 9 r s t u v w x O z AB LB CB JB EB FB GB HB DB",257:"V M T MB NB OB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B",1156:"2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C R VB U",129:"O"},L:{1:"S"},M:{129:"M"},N:{2:"A B"},O:{129:"HC"},P:{1:"NC OC",129:"G IC JC KC LC MC XB"},Q:{129:"PC"},R:{129:"QC"},S:{2:"RC"}},B:5,C:"Add to home screen (A2HS)"}},6049:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(2043));var n=_interopRequireDefault(r(6486));var i=r(5433);var C=_interopRequireDefault(r(8337));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function transform(B){const{nodes:e}=(0,n.default)(B);if(e.length===1){return B}const r=e.filter((B,e)=>e%2===0).filter(B=>B.type==="word").map(B=>B.value.toLowerCase());if(r.length===0){return B}const t=(0,i.getMatch)(C.default)(r);if(!t){return B}return t}var o=t.default.plugin("postcss-normalize-display-values",()=>{return B=>{const e={};B.walkDecls(/^display$/i,B=>{const r=B.value;if(!r){return}if(e[r]){B.value=e[r];return}const t=transform(r);B.value=t;e[r]=t})}});e.default=o;B.exports=e.default},6074:function(B){B.exports={A:{A:{1:"E A B",2:"I D F iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y pB hB",4:"Z a b c d e f g h i j k l m"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H YB cB dB eB fB XB R U jB kB",2:"0B"},F:{1:"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c lB mB nB oB R VB qB U"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q FC GC",4:"KB G BC CC EC IB",132:"DC"},J:{1:"D A"},K:{1:"B C O R VB U",2:"A"},L:{1:"S"},M:{260:"M"},N:{1:"A B"},O:{4:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:6,C:"MPEG-4/H.264 video format"}},6090:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(8791));var n=r(1106);var i=r(2453);var C=r(9920);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}var o=(0,t.default)([n.IE_5_5,n.IE_6,n.IE_7,n.IE_8],[C.ATRULE],function(B){const e=B.params.trim();if(e.toLowerCase()==="\\0screen\\,screen\\9"){this.push(B,{identifier:i.MEDIA_QUERY,hack:e})}});e.default=o;B.exports=e.default},6119:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L",676:"y BB Q WB S"},C:{2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c pB hB",804:"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{2:"G",676:"0 1 2 3 4 5 6 7 8 9 W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"0B YB",676:"G W I D F E A B C N H cB dB eB fB XB R U jB kB"},F:{2:"E B C lB mB nB oB R VB qB U",676:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{804:"RC"}},B:7,C:"CSS font-smooth"}},6144:function(B){B.exports={A:{A:{2:"iB",8:"I D F",129:"A B",161:"E"},B:{1:"K L y BB Q WB S",129:"C N H P J"},C:{1:"0 1 2 3 4 5 6 7 8 9 J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB",33:"G W I D F E A B C N H P pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",33:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n"},E:{1:"E A B C N H fB XB R U jB kB",33:"G W I D F 0B YB cB dB eB"},F:{1:"0 1 2 3 4 5 6 7 8 9 b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T U",2:"E lB mB",33:"B C P J K L X Y Z a nB oB R VB qB"},G:{1:"xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",33:"F YB rB IB tB uB vB wB"},H:{2:"AC"},I:{1:"Q",33:"KB G BC CC DC EC IB FC GC"},J:{33:"D A"},K:{1:"B C O R VB U",2:"A"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:5,C:"CSS3 2D Transforms"}},6147:function(B){B.exports={A:{A:{1:"F E A B",4:"iB",132:"I D"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB",36:"sB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{1:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:2,C:"CSS inline-block"}},6151:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 1 2 3 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB"},D:{1:"1 2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},E:{1:"B C N H XB R U jB kB",2:"G W I D F E A 0B YB cB dB eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n lB mB nB oB R VB qB U"},G:{1:"ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{1:"PC"},R:{1:"QC"},S:{2:"RC"}},B:1,C:"rel=noopener"}},6173:function(B){"use strict";function isTransparent(B){return B==="transparent"}B.exports=isTransparent},6186:function(B){B.exports={A:{A:{1:"A B",2:"I D F E iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB hB",2:"sB KB pB"},D:{1:"0 1 2 3 4 5 6 7 8 9 F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D"},E:{1:"I D F E A B C N H cB dB eB fB XB R U jB kB",2:"G 0B YB",132:"W"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U"},G:{1:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB"},H:{2:"AC"},I:{1:"KB G Q EC IB FC GC",2:"BC CC DC"},J:{1:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"async attribute for external scripts"}},6205:function(B,e,r){"use strict";e.__esModule=true;e.universal=e.tag=e.string=e.selector=e.root=e.pseudo=e.nesting=e.id=e.comment=e.combinator=e.className=e.attribute=void 0;var t=_interopRequireDefault(r(4382));var n=_interopRequireDefault(r(7901));var i=_interopRequireDefault(r(2519));var C=_interopRequireDefault(r(7048));var o=_interopRequireDefault(r(7463));var a=_interopRequireDefault(r(6499));var s=_interopRequireDefault(r(3108));var u=_interopRequireDefault(r(4631));var f=_interopRequireDefault(r(686));var l=_interopRequireDefault(r(1222));var c=_interopRequireDefault(r(2474));var p=_interopRequireDefault(r(5301));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}var A=function attribute(B){return new t.default(B)};e.attribute=A;var d=function className(B){return new n.default(B)};e.className=d;var h=function combinator(B){return new i.default(B)};e.combinator=h;var E=function comment(B){return new C.default(B)};e.comment=E;var D=function id(B){return new o.default(B)};e.id=D;var v=function nesting(B){return new a.default(B)};e.nesting=v;var F=function pseudo(B){return new s.default(B)};e.pseudo=F;var G=function root(B){return new u.default(B)};e.root=G;var O=function selector(B){return new f.default(B)};e.selector=O;var M=function string(B){return new l.default(B)};e.string=M;var g=function tag(B){return new c.default(B)};e.tag=g;var I=function universal(B){return new p.default(B)};e.universal=I},6208:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=normalizeBorder;var t=r(6486);const n=["thin","medium","thick"];const i=["none","auto","hidden","dotted","dashed","solid","double","groove","ridge","inset","outset"];function normalizeBorder(B){const e={width:"",style:"",color:""};B.walk(B=>{const{type:r,value:C}=B;if(r==="word"){if(~i.indexOf(C.toLowerCase())){e.style=C;return false}if(~n.indexOf(C.toLowerCase())||(0,t.unit)(C.toLowerCase())){if(e.width!==""){e.width=`${e.width} ${C}`;return false}e.width=C;return false}e.color=C;return false}if(r==="function"){if(C.toLowerCase()==="calc"){e.width=(0,t.stringify)(B)}else{e.color=(0,t.stringify)(B)}return false}});return`${e.width} ${e.style} ${e.color}`.trim()}B.exports=e.default},6227:function(B,e,r){"use strict";const t=r(433);function isHSL(B){return t({exact:true}).test(B)}B.exports=isHSL},6235:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=ensureCompatibility;e.pseudoElements=void 0;var t=r(5479);var n=_interopRequireDefault(r(2998));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}const i=/^#?[-._a-z0-9 ]+$/i;const C="css-sel2";const o="css-sel3";const a="css-gencontent";const s="css-first-letter";const u="css-first-line";const f="css-in-out-of-range";const l={":active":C,":after":a,":before":a,":checked":o,":default":"css-default-pseudo",":dir":"css-dir-pseudo",":disabled":o,":empty":o,":enabled":o,":first-child":C,":first-letter":s,":first-line":u,":first-of-type":o,":focus":C,":focus-within":"css-focus-within",":focus-visible":"css-focus-visible",":has":"css-has",":hover":C,":in-range":f,":indeterminate":"css-indeterminate-pseudo",":lang":C,":last-child":o,":last-of-type":o,":matches":"css-matches-pseudo",":not":o,":nth-child":o,":nth-last-child":o,":nth-last-of-type":o,":nth-of-type":o,":only-child":o,":only-of-type":o,":optional":"css-optional-pseudo",":out-of-range":f,":placeholder-shown":"css-placeholder-shown",":root":o,":target":o,"::after":a,"::backdrop":"dialog","::before":a,"::first-letter":s,"::first-line":u,"::marker":"css-marker-pseudo","::placeholder":"css-placeholder","::selection":"css-selection"};e.pseudoElements=l;function isCssMixin(B){return B[B.length-1]===":"}const c={};function isSupportedCached(B,e){const r=JSON.stringify({feature:B,browsers:e});let n=c[r];if(!n){n=(0,t.isSupported)(B,e);c[r]=n}return n}function ensureCompatibility(B,e,r){if(B.some(isCssMixin)){return false}return B.every(B=>{if(i.test(B)){return true}if(r&&B in r){return r[B]}let t=true;(0,n.default)(B=>{B.walk(B=>{const{type:r,value:n}=B;if(r==="pseudo"){const B=l[n];if(B&&t){t=isSupportedCached(B,e)}}if(r==="combinator"){if(~n.indexOf("~")){t=isSupportedCached(o,e)}if(~n.indexOf(">")||~n.indexOf("+")){t=isSupportedCached(C,e)}}if(r==="attribute"&&B.attribute){if(!B.operator){t=isSupportedCached(C,e)}if(n){if(~["=","~=","|="].indexOf(B.operator)){t=isSupportedCached(C,e)}if(~["^=","$=","*="].indexOf(B.operator)){t=isSupportedCached(o,e)}}if(B.insensitive){t=isSupportedCached("css-case-insensitive",e)}}if(!t){return false}})}).processSync(B);if(r){r[B]=t}return t})}},6238:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(8791));var n=r(1106);var i=r(2453);var C=r(9920);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}const o="!_$_&_*_)_=_%_+_,_._/_`_]_#_~_?_:_|".split("_");var a=(0,t.default)([n.IE_5_5,n.IE_6,n.IE_7],[C.ATRULE,C.DECL],function(B){if(B.type===C.DECL){o.some(e=>{if(!B.prop.indexOf(e)){this.push(B,{identifier:i.PROPERTY,hack:B.prop});return true}});let{before:e}=B.raws;if(!e){return}o.some(r=>{if(~e.indexOf(r)){this.push(B,{identifier:i.PROPERTY,hack:`${e.trim()}${B.prop}`});return true}})}else{let{name:e}=B;let r=e.length-1;if(e.lastIndexOf(":")===r){this.push(B,{identifier:i.PROPERTY,hack:`@${e.substr(0,r)}`})}}});e.default=a;B.exports=e.default},6241:function(B){B.exports={A:{A:{2:"iB",8:"I D F",129:"E A B"},B:{1:"K L y BB Q WB S",129:"C N H P J"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",8:"sB KB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",8:"G W I"},E:{1:"E A B C N H fB XB R U jB kB",8:"G W 0B YB",129:"I D F cB dB eB"},F:{1:"0 1 2 3 4 5 6 7 8 9 C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T qB U",2:"B oB R VB",8:"E lB mB nB"},G:{1:"xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",8:"YB rB IB",129:"F tB uB vB wB"},H:{1:"AC"},I:{1:"Q FC GC",2:"BC CC DC",129:"KB G EC IB"},J:{1:"A",129:"D"},K:{1:"C O U",8:"A B R VB"},L:{1:"S"},M:{1:"M"},N:{129:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"Inline SVG in HTML5"}},6286:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N",322:"H",8196:"P J K L"},C:{2:"0 1 2 3 4 5 6 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB",4162:"7 8 9 AB LB CB JB EB FB GB HB",16452:"DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{1:"UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",194:"5 6 7 8 9 AB",1090:"LB CB",8196:"JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB"},E:{1:"N H U jB kB",2:"G W I D F E 0B YB cB dB eB fB",514:"A B XB",8196:"C R"},F:{1:"DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r lB mB nB oB R VB qB U",194:"s t u v w x O z",8196:"0 1 2 3 4 5 6 7 8 9 AB CB EB FB GB HB"},G:{1:"4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB",514:"zB ZB 1B",8196:"2B 3B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2052:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"OC",2:"G",8196:"IC JC KC LC MC XB NC"},Q:{8196:"PC"},R:{2:"QC"},S:{2:"RC"}},B:4,C:"Payment Request API"}},6293:function(B){"use strict";B.exports=function rgbRegex(B){B=B||{};return B.exact?/^rgb\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3})\)$/:/rgb\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3})\)/gi}},6313:function(B){B.exports={A:{A:{2:"I D F iB",132:"E A B"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e"},E:{1:"D F E A B C N H eB fB XB R U jB kB",2:"G W I 0B YB cB dB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U"},G:{1:"F vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB uB"},H:{2:"AC"},I:{1:"Q FC GC",2:"KB G BC CC DC EC IB"},J:{1:"A",2:"D"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"ch (character) unit"}},6317:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g pB hB",194:"h i j k l m n"},D:{1:"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n"},E:{1:"A B C N H fB XB R U jB kB",2:"G W I D F E 0B YB cB dB eB"},F:{1:"0 1 2 3 4 5 6 7 8 9 c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b lB mB nB oB R VB qB U"},G:{1:"yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:5,C:"CSS will-change property"}},6318:function(B){B.exports={A:{A:{2:"iB",8:"I D F E A B"},B:{1:"y BB Q WB S",8:"C N H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",8:"sB KB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",4:"G"},E:{1:"I D F E A B C N H dB eB fB XB R U jB kB",8:"0B YB",132:"G W cB"},F:{1:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"F uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",132:"YB rB IB tB"},H:{2:"AC"},I:{1:"KB G Q EC IB FC GC",2:"BC CC DC"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{8:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:2,C:"SVG SMIL animation"}},6329:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB",194:"RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB lB mB nB oB R VB qB U",194:"EB FB GB HB DB V M T"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{194:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:7,C:"Portals"}},6336:function(B,e){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default={1:"ls",2:"rec",3:"pr",4:"cr",5:"wd",6:"other",7:"unoff"}},6352:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(4825));var n=_interopRequireDefault(r(447));var i=r(86);var C=_interopRequireDefault(r(5031));var o=_interopRequireDefault(r(5007));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}var a=/((?:-(moz|webkit)-)?calc)/i;function transformValue(B,e,r,t){return(0,n.default)(B).walk(function(s){if(s.type!=="function"||!a.test(s.value)){return s}var u=n.default.stringify(s.nodes);var f=i.parser.parse(u);var l=(0,C.default)(f,e.precision);s.type="word";s.value=(0,o.default)(s.value,l,B,e,r,t);return false}).toString()}function transformSelector(B,e,r,n){return(0,t.default)(function(B){B.walk(function(B){if(B.type==="attribute"&&B.value){B.setValue(transformValue(B.value,e,r,n))}if(B.type==="tag"){B.value=transformValue(B.value,e,r,n)}return})}).processSync(B)}var s=function _default(B,e,r,t){var n=e==="selector"?transformSelector(B[e],r,t,B):transformValue(B[e],r,t,B);if(r.preserve&&B[e]!==n){var i=B.clone();i[e]=n;B.parent.insertBefore(B,i)}else{B[e]=n}};e.default=s;B.exports=e.default},6366:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N",132:"H P J K L",322:"y BB Q WB S"},C:{2:"sB KB G W I D F E A B C N H P J K L X Y Z pB hB",132:"0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB",194:"CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",322:"AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{1:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{132:"RC"}},B:4,C:"Ambient Light Sensor"}},6423:function(B){B.exports={A:{A:{1:"I D F E A B",2:"iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 1 2 3 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",16:"G W I D F E A B C N H"},E:{1:"I D F E A B C N H cB dB eB fB XB R U jB kB",16:"G W 0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T qB U",2:"E lB mB nB oB",16:"B R VB"},G:{1:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB"},H:{2:"AC"},I:{1:"G Q EC IB FC GC",2:"BC CC DC",16:"KB"},J:{1:"D A"},K:{1:"C O U",2:"A",16:"B R VB"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{2:"RC"}},B:5,C:"focusin & focusout events"}},6442:function(B){B.exports={A:{A:{1:"A B",2:"I D F E iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB",33:"G W I D F E A B C N H P hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E",33:"A B C N H P J K L X Y Z a b c d"},E:{1:"D F E A B C N H dB eB fB XB R U jB kB",2:"G W 0B YB",33:"I cB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T U",2:"E B lB mB nB oB",33:"C qB",36:"R VB"},G:{1:"F vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB",33:"tB uB"},H:{2:"AC"},I:{1:"Q FC GC",2:"KB BC CC DC",33:"G EC IB"},J:{1:"A",2:"D"},K:{1:"O U",2:"A B",33:"C",36:"R VB"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"CSS Repeating Gradients"}},6466:function(B,e,r){"use strict";const{readFile:t}=r(5747);const n=r(5622);const{promisify:i}=r(1669);const C=r(2043);const o=r(3639).sort;const a=["alphabetical","concentric-css","smacss"];B.exports=C.plugin("css-declaration-sorter",({order:B="alphabetical",keepOverrides:e=false}={})=>n=>{let C=B=>B;if(e){const B=r(3092);C=withOverridesComparator(B)}if(typeof B==="function"){return processCss({css:n,comparator:C(B)})}if(!a.includes(B))return Promise.reject(Error([`Invalid built-in order '${B}' provided.`,`Available built-in orders are: ${a}`].join("\n")));return i(t)(r.ab+"orders/"+B+".json").then(B=>processCss({css:n,comparator:C(orderComparator(JSON.parse(B)))}))});function processCss({css:B,comparator:e}){const r=[];const t=[];B.walk(B=>{const e=B.nodes;const n=B.type;if(n==="comment"){const e=B.raws.before&&~B.raws.before.indexOf("\n");const t=e&&!B.next();const n=!B.prev()&&!B.next();if(t||n||B.parent.type==="root"){return}if(e){const e=B.next()?B.next():B.prev().prev();if(e){r.unshift({comment:B,pairedNode:e,insertPosition:B.next()?"Before":"After"});B.remove()}}else{const e=B.prev()?B.prev():B.next().next();if(e){r.push({comment:B,pairedNode:e,insertPosition:"After"});B.remove()}}return}const i=n==="rule"||n==="atrule";if(i&&e&&e.length>1){t.push(e)}});t.forEach(B=>{sortCssDeclarations({nodes:B,comparator:e})});r.forEach(B=>{const e=B.pairedNode;B.comment.remove();e.parent["insert"+B.insertPosition](e,B.comment)})}function sortCssDeclarations({nodes:B,comparator:e}){o(B,(B,r)=>{if(B.type==="decl"&&r.type==="decl"){return e(B.prop,r.prop)}else{return compareDifferentType(B,r)}})}function withOverridesComparator(B){return function(e){return function(r,t){r=C.vendor.unprefixed(r);t=C.vendor.unprefixed(t);if(B[r]&&B[r].includes(t))return 0;if(B[t]&&B[t].includes(r))return 0;return e(r,t)}}}function orderComparator(B){return function(e,r){const t=B.indexOf(e);const n=B.indexOf(r);return defaultComparator(t,n)}}function defaultComparator(B,e){return B===e?0:B<e?-1:1}function compareDifferentType(B,e){if(e.type==="atrule"){return 0}return B.type==="decl"?-1:e.type==="decl"?1:0}},6481:function(B){B.exports={A:{A:{1:"A B",2:"I D F E iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F"},E:{1:"I D F E A B C N H cB dB eB fB XB R U jB kB",2:"G W 0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T U",2:"E B C lB mB nB oB R VB qB"},G:{1:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB"},H:{1:"AC"},I:{1:"KB G Q EC IB FC GC",2:"BC CC DC"},J:{1:"A",2:"D"},K:{1:"O U",2:"A B C R VB"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:5,C:"matchMedia"}},6484:function(B,e){(function(B,r){if(typeof define==="function"&&define.amd){define("timsort",["exports"],r)}else if(true){r(e)}else{var t}})(this,function(B){"use strict";B.__esModule=true;B.sort=sort;function _classCallCheck(B,e){if(!(B instanceof e)){throw new TypeError("Cannot call a class as a function")}}var e=32;var r=7;var t=256;var n=[1,10,100,1e3,1e4,1e5,1e6,1e7,1e8,1e9];function log10(B){if(B<1e5){if(B<100){return B<10?0:1}if(B<1e4){return B<1e3?2:3}return 4}if(B<1e7){return B<1e6?5:6}if(B<1e9){return B<1e8?7:8}return 9}function alphabeticalCompare(B,e){if(B===e){return 0}if(~~B===B&&~~e===e){if(B===0||e===0){return B<e?-1:1}if(B<0||e<0){if(e>=0){return-1}if(B>=0){return 1}B=-B;e=-e}var r=log10(B);var t=log10(e);var i=0;if(r<t){B*=n[t-r-1];e/=10;i=-1}else if(r>t){e*=n[r-t-1];B/=10;i=1}if(B===e){return i}return B<e?-1:1}var C=String(B);var o=String(e);if(C===o){return 0}return C<o?-1:1}function minRunLength(B){var r=0;while(B>=e){r|=B&1;B>>=1}return B+r}function makeAscendingRun(B,e,r,t){var n=e+1;if(n===r){return 1}if(t(B[n++],B[e])<0){while(n<r&&t(B[n],B[n-1])<0){n++}reverseRun(B,e,n)}else{while(n<r&&t(B[n],B[n-1])>=0){n++}}return n-e}function reverseRun(B,e,r){r--;while(e<r){var t=B[e];B[e++]=B[r];B[r--]=t}}function binaryInsertionSort(B,e,r,t,n){if(t===e){t++}for(;t<r;t++){var i=B[t];var C=e;var o=t;while(C<o){var a=C+o>>>1;if(n(i,B[a])<0){o=a}else{C=a+1}}var s=t-C;switch(s){case 3:B[C+3]=B[C+2];case 2:B[C+2]=B[C+1];case 1:B[C+1]=B[C];break;default:while(s>0){B[C+s]=B[C+s-1];s--}}B[C]=i}}function gallopLeft(B,e,r,t,n,i){var C=0;var o=0;var a=1;if(i(B,e[r+n])>0){o=t-n;while(a<o&&i(B,e[r+n+a])>0){C=a;a=(a<<1)+1;if(a<=0){a=o}}if(a>o){a=o}C+=n;a+=n}else{o=n+1;while(a<o&&i(B,e[r+n-a])<=0){C=a;a=(a<<1)+1;if(a<=0){a=o}}if(a>o){a=o}var s=C;C=n-a;a=n-s}C++;while(C<a){var u=C+(a-C>>>1);if(i(B,e[r+u])>0){C=u+1}else{a=u}}return a}function gallopRight(B,e,r,t,n,i){var C=0;var o=0;var a=1;if(i(B,e[r+n])<0){o=n+1;while(a<o&&i(B,e[r+n-a])<0){C=a;a=(a<<1)+1;if(a<=0){a=o}}if(a>o){a=o}var s=C;C=n-a;a=n-s}else{o=t-n;while(a<o&&i(B,e[r+n+a])>=0){C=a;a=(a<<1)+1;if(a<=0){a=o}}if(a>o){a=o}C+=n;a+=n}C++;while(C<a){var u=C+(a-C>>>1);if(i(B,e[r+u])<0){a=u}else{C=u+1}}return a}var i=function(){function TimSort(B,e){_classCallCheck(this,TimSort);this.array=null;this.compare=null;this.minGallop=r;this.length=0;this.tmpStorageLength=t;this.stackLength=0;this.runStart=null;this.runLength=null;this.stackSize=0;this.array=B;this.compare=e;this.length=B.length;if(this.length<2*t){this.tmpStorageLength=this.length>>>1}this.tmp=new Array(this.tmpStorageLength);this.stackLength=this.length<120?5:this.length<1542?10:this.length<119151?19:40;this.runStart=new Array(this.stackLength);this.runLength=new Array(this.stackLength)}TimSort.prototype.pushRun=function pushRun(B,e){this.runStart[this.stackSize]=B;this.runLength[this.stackSize]=e;this.stackSize+=1};TimSort.prototype.mergeRuns=function mergeRuns(){while(this.stackSize>1){var B=this.stackSize-2;if(B>=1&&this.runLength[B-1]<=this.runLength[B]+this.runLength[B+1]||B>=2&&this.runLength[B-2]<=this.runLength[B]+this.runLength[B-1]){if(this.runLength[B-1]<this.runLength[B+1]){B--}}else if(this.runLength[B]>this.runLength[B+1]){break}this.mergeAt(B)}};TimSort.prototype.forceMergeRuns=function forceMergeRuns(){while(this.stackSize>1){var B=this.stackSize-2;if(B>0&&this.runLength[B-1]<this.runLength[B+1]){B--}this.mergeAt(B)}};TimSort.prototype.mergeAt=function mergeAt(B){var e=this.compare;var r=this.array;var t=this.runStart[B];var n=this.runLength[B];var i=this.runStart[B+1];var C=this.runLength[B+1];this.runLength[B]=n+C;if(B===this.stackSize-3){this.runStart[B+1]=this.runStart[B+2];this.runLength[B+1]=this.runLength[B+2]}this.stackSize--;var o=gallopRight(r[i],r,t,n,0,e);t+=o;n-=o;if(n===0){return}C=gallopLeft(r[t+n-1],r,i,C,C-1,e);if(C===0){return}if(n<=C){this.mergeLow(t,n,i,C)}else{this.mergeHigh(t,n,i,C)}};TimSort.prototype.mergeLow=function mergeLow(B,e,t,n){var i=this.compare;var C=this.array;var o=this.tmp;var a=0;for(a=0;a<e;a++){o[a]=C[B+a]}var s=0;var u=t;var f=B;C[f++]=C[u++];if(--n===0){for(a=0;a<e;a++){C[f+a]=o[s+a]}return}if(e===1){for(a=0;a<n;a++){C[f+a]=C[u+a]}C[f+n]=o[s];return}var l=this.minGallop;while(true){var c=0;var p=0;var A=false;do{if(i(C[u],o[s])<0){C[f++]=C[u++];p++;c=0;if(--n===0){A=true;break}}else{C[f++]=o[s++];c++;p=0;if(--e===1){A=true;break}}}while((c|p)<l);if(A){break}do{c=gallopRight(C[u],o,s,e,0,i);if(c!==0){for(a=0;a<c;a++){C[f+a]=o[s+a]}f+=c;s+=c;e-=c;if(e<=1){A=true;break}}C[f++]=C[u++];if(--n===0){A=true;break}p=gallopLeft(o[s],C,u,n,0,i);if(p!==0){for(a=0;a<p;a++){C[f+a]=C[u+a]}f+=p;u+=p;n-=p;if(n===0){A=true;break}}C[f++]=o[s++];if(--e===1){A=true;break}l--}while(c>=r||p>=r);if(A){break}if(l<0){l=0}l+=2}this.minGallop=l;if(l<1){this.minGallop=1}if(e===1){for(a=0;a<n;a++){C[f+a]=C[u+a]}C[f+n]=o[s]}else if(e===0){throw new Error("mergeLow preconditions were not respected")}else{for(a=0;a<e;a++){C[f+a]=o[s+a]}}};TimSort.prototype.mergeHigh=function mergeHigh(B,e,t,n){var i=this.compare;var C=this.array;var o=this.tmp;var a=0;for(a=0;a<n;a++){o[a]=C[t+a]}var s=B+e-1;var u=n-1;var f=t+n-1;var l=0;var c=0;C[f--]=C[s--];if(--e===0){l=f-(n-1);for(a=0;a<n;a++){C[l+a]=o[a]}return}if(n===1){f-=e;s-=e;c=f+1;l=s+1;for(a=e-1;a>=0;a--){C[c+a]=C[l+a]}C[f]=o[u];return}var p=this.minGallop;while(true){var A=0;var d=0;var h=false;do{if(i(o[u],C[s])<0){C[f--]=C[s--];A++;d=0;if(--e===0){h=true;break}}else{C[f--]=o[u--];d++;A=0;if(--n===1){h=true;break}}}while((A|d)<p);if(h){break}do{A=e-gallopRight(o[u],C,B,e,e-1,i);if(A!==0){f-=A;s-=A;e-=A;c=f+1;l=s+1;for(a=A-1;a>=0;a--){C[c+a]=C[l+a]}if(e===0){h=true;break}}C[f--]=o[u--];if(--n===1){h=true;break}d=n-gallopLeft(C[s],o,0,n,n-1,i);if(d!==0){f-=d;u-=d;n-=d;c=f+1;l=u+1;for(a=0;a<d;a++){C[c+a]=o[l+a]}if(n<=1){h=true;break}}C[f--]=C[s--];if(--e===0){h=true;break}p--}while(A>=r||d>=r);if(h){break}if(p<0){p=0}p+=2}this.minGallop=p;if(p<1){this.minGallop=1}if(n===1){f-=e;s-=e;c=f+1;l=s+1;for(a=e-1;a>=0;a--){C[c+a]=C[l+a]}C[f]=o[u]}else if(n===0){throw new Error("mergeHigh preconditions were not respected")}else{l=f-(n-1);for(a=0;a<n;a++){C[l+a]=o[a]}}};return TimSort}();function sort(B,r,t,n){if(!Array.isArray(B)){throw new TypeError("Can only sort arrays")}if(!r){r=alphabeticalCompare}else if(typeof r!=="function"){n=t;t=r;r=alphabeticalCompare}if(!t){t=0}if(!n){n=B.length}var C=n-t;if(C<2){return}var o=0;if(C<e){o=makeAscendingRun(B,t,n,r);binaryInsertionSort(B,t,n,t+o,r);return}var a=new i(B,r);var s=minRunLength(C);do{o=makeAscendingRun(B,t,n,r);if(o<s){var u=C;if(u>s){u=s}binaryInsertionSort(B,t,t+u,t+o,r);o=u}a.pushRun(t,o);a.mergeRuns();C-=o;t+=o}while(C!==0);a.forceMergeRuns()}})},6486:function(B,e,r){var t=r(9422);var n=r(1581);var i=r(9650);function ValueParser(B){if(this instanceof ValueParser){this.nodes=t(B);return this}return new ValueParser(B)}ValueParser.prototype.toString=function(){return Array.isArray(this.nodes)?i(this.nodes):""};ValueParser.prototype.walk=function(B,e){n(this.nodes,B,e);return this};ValueParser.unit=r(5500);ValueParser.walk=n;ValueParser.stringify=i;B.exports=ValueParser},6496:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"N H P J K L y BB Q WB S",2:"C"},C:{1:"0 1 2 3 4 5 6 7 8 9 f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s"},E:{1:"A B C N H fB XB R U jB kB",2:"G W I D F E 0B YB cB dB eB"},F:{1:"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f lB mB nB oB R VB qB U"},G:{1:"yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"CSS unset value"}},6499:function(B,e,r){"use strict";e.__esModule=true;e.default=void 0;var t=_interopRequireDefault(r(3583));var n=r(8019);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _inheritsLoose(B,e){B.prototype=Object.create(e.prototype);B.prototype.constructor=B;B.__proto__=e}var i=function(B){_inheritsLoose(Nesting,B);function Nesting(e){var r;r=B.call(this,e)||this;r.type=n.NESTING;r.value="&";return r}return Nesting}(t.default);e.default=i;B.exports=e.default},6505:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"S",2:"C N H P J K L y BB Q WB"},C:{1:"V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB pB hB"},D:{1:"S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB"},E:{1:"A B C N H fB XB R U jB kB",2:"G W I D F E 0B YB cB dB eB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:5,C:"CSS revert value"}},6509:function(B){B.exports={A:{A:{2:"I D F iB",260:"E",516:"A B"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB hB",33:"G W I D F E A B C N H P"},D:{1:"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L",33:"X Y Z a b c d"},E:{1:"D F E A B C N H dB eB fB XB R U jB kB",2:"G W 0B YB cB",33:"I"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U"},G:{1:"F vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB",33:"uB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB",132:"FC GC"},J:{1:"A",2:"D"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"calc() as CSS unit value"}},6566:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=normalizeBoxShadow;var t=r(6486);var n=r(5433);var i=_interopRequireDefault(r(1231));var C=_interopRequireDefault(r(7138));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function normalizeBoxShadow(B){let e=(0,n.getArguments)(B);let r=false;let o=e.reduce((B,e)=>{let n=[];let C={inset:[],color:[]};e.forEach(B=>{const{type:e,value:o}=B;if(e==="function"&&~o.toLowerCase().indexOf("calc")){r=true;return}if(e==="space"){return}if((0,t.unit)(o)){n=[...n,B,(0,i.default)()]}else if(o.toLowerCase()==="inset"){C.inset=[...C.inset,B,(0,i.default)()]}else{C.color=[...C.color,B,(0,i.default)()]}});return[...B,[...C.inset,...n,...C.color]]},[]);if(r){return B.toString()}return(0,C.default)(o)}B.exports=e.default},6568:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{2:"sB KB pB hB",33:"5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",164:"0 1 2 3 4 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},D:{1:"0 1 2 3 4 5 6 7 8 9 u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y",132:"Z a b c d e f g h i j k l m n o p q r s t"},E:{1:"H jB kB",2:"G W I 0B YB cB",132:"D F E A B C N dB eB fB XB R U"},F:{1:"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E lB mB nB",132:"P J K L X Y Z a b c d e f g",164:"B C oB R VB qB U"},G:{1:"8B 9B",2:"YB rB IB tB uB",132:"F vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B"},H:{164:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB",132:"FC GC"},J:{132:"D A"},K:{1:"O",2:"A",164:"B C R VB U"},L:{1:"S"},M:{33:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{164:"RC"}},B:5,C:"CSS3 tab-size"}},6572:function(B){B.exports={A:{A:{2:"I D F iB",36:"E A B"},B:{1:"P J K L y BB Q WB S",36:"C N H"},C:{1:"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB",36:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",36:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l"},E:{1:"F E A B C N H eB fB XB R U jB kB",2:"G 0B YB",36:"W I D cB dB"},F:{1:"0 1 2 3 4 5 6 7 8 9 Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B lB mB nB oB R",36:"C P J K L X Y VB qB U"},G:{1:"F wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB",36:"rB IB tB uB vB"},H:{2:"AC"},I:{1:"Q",2:"BC",36:"KB G CC DC EC IB FC GC"},J:{36:"D A"},K:{1:"O",2:"A B",36:"C R VB U"},L:{1:"S"},M:{1:"M"},N:{36:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",36:"G"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"matches() DOM method"}},6590:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p pB hB",194:"q r s"},D:{1:"0 1 2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},E:{2:"G W I D F E 0B YB cB dB eB fB",16:"A",33:"B C N H XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m lB mB nB oB R VB qB U"},G:{1:"zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"CSS text-orientation"}},6591:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g"},E:{1:"F E A B C N H fB XB R U jB kB",2:"G W I D 0B YB cB dB eB"},F:{1:"0 1 2 3 4 5 6 7 8 9 J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P lB mB nB oB R VB qB U"},G:{1:"F wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB uB vB"},H:{2:"AC"},I:{1:"Q FC GC",2:"KB G BC CC DC EC IB"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"document.currentScript"}},6601:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L",33:"y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB"},D:{16:"G W I D F E A B C N H P J K L",33:"0 1 2 3 4 5 6 7 8 9 X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W 0B YB cB",33:"I D F E A B C N H dB eB fB XB R U jB kB"},F:{2:"E B C lB mB nB oB R VB qB U",33:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{16:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{16:"KB G Q BC CC DC EC IB FC GC"},J:{16:"D A"},K:{2:"A B C O R VB U"},L:{16:"S"},M:{1:"M"},N:{16:"A B"},O:{16:"HC"},P:{16:"G IC JC KC LC MC XB NC OC"},Q:{33:"PC"},R:{16:"QC"},S:{1:"RC"}},B:5,C:"CSS color-adjust"}},6605:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=unpackFeature;var t=r(6336);var n=_interopRequireDefault(t);var i=r(7733);var C=_interopRequireDefault(i);var o=r(6918);var a=r(9755);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}var s=Math.log(2);function unpackSupport(B){var e=Object.keys(C.default).reduce(function(e,r){if(B&C.default[r])e.push(r);return e},[]);var r=B>>7;var t=[];while(r){var n=Math.floor(Math.log(r)/s)+1;t.unshift("#"+n);r-=Math.pow(2,n-1)}return e.concat(t).join(" ")}function unpackFeature(B){var e={status:n.default[B.B],title:B.C};e.stats=Object.keys(B.A).reduce(function(e,r){var t=B.A[r];e[o.browsers[r]]=Object.keys(t).reduce(function(B,e){var r=t[e].split(" ");var n=unpackSupport(e);r.forEach(function(e){return B[a.browserVersions[e]]=n});return B},{});return e},{});return e}},6609:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{36:"y BB Q WB S",257:"P J K L",548:"C N H"},C:{1:"1 2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",16:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB",130:"0"},D:{36:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{16:"0B YB",36:"G W I D F E A B C N H cB dB eB fB XB R U jB kB"},F:{16:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{16:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{16:"AC"},I:{16:"KB G Q BC CC DC EC IB FC GC"},J:{16:"D A"},K:{16:"A B C O R VB U"},L:{16:"S"},M:{16:"M"},N:{16:"A B"},O:{16:"HC"},P:{16:"G IC JC KC LC MC XB NC OC"},Q:{16:"PC"},R:{16:"QC"},S:{130:"RC"}},B:1,C:"CSS3 Background-clip: text"}},6622:function(B){B.exports={"v0.10":{start:"2013-03-11",end:"2016-10-31"},"v0.12":{start:"2015-02-06",end:"2016-12-31"},v4:{start:"2015-09-08",lts:"2015-10-12",maintenance:"2017-04-01",end:"2018-04-30",codename:"Argon"},v5:{start:"2015-10-29",maintenance:"2016-04-30",end:"2016-06-30"},v6:{start:"2016-04-26",lts:"2016-10-18",maintenance:"2018-04-30",end:"2019-04-30",codename:"Boron"},v7:{start:"2016-10-25",maintenance:"2017-04-30",end:"2017-06-30"},v8:{start:"2017-05-30",lts:"2017-10-31",maintenance:"2019-01-01",end:"2019-12-31",codename:"Carbon"},v9:{start:"2017-10-01",maintenance:"2018-04-01",end:"2018-06-30"},v10:{start:"2018-04-24",lts:"2018-10-30",maintenance:"2020-05-19",end:"2021-04-30",codename:"Dubnium"},v11:{start:"2018-10-23",maintenance:"2019-04-22",end:"2019-06-01"},v12:{start:"2019-04-23",lts:"2019-10-21",maintenance:"2020-10-20",end:"2022-04-30",codename:"Erbium"},v13:{start:"2019-10-22",maintenance:"2020-04-01",end:"2020-06-01"},v14:{start:"2020-04-21",lts:"2020-10-20",maintenance:"2021-10-19",end:"2023-04-30",codename:""},v15:{start:"2020-10-21",maintenance:"2021-04-01",end:"2021-06-01"}}},6630:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=r(2043);function noop(){}function trimValue(B){return B?B.trim():B}function empty(B){return!B.nodes.filter(B=>B.type!=="comment").length}function equals(B,e){if(B.type!==e.type){return false}if(B.important!==e.important){return false}if(B.raws&&!e.raws||!B.raws&&e.raws){return false}switch(B.type){case"rule":if(B.selector!==e.selector){return false}break;case"atrule":if(B.name!==e.name||B.params!==e.params){return false}if(B.raws&&trimValue(B.raws.before)!==trimValue(e.raws.before)){return false}if(B.raws&&trimValue(B.raws.afterName)!==trimValue(e.raws.afterName)){return false}break;case"decl":if(B.prop!==e.prop||B.value!==e.value){return false}if(B.raws&&trimValue(B.raws.before)!==trimValue(e.raws.before)){return false}break}if(B.nodes){if(B.nodes.length!==e.nodes.length){return false}for(let r=0;r<B.nodes.length;r++){if(!equals(B.nodes[r],e.nodes[r])){return false}}}return true}function dedupeRule(B,e){let r=e.indexOf(B)-1;while(r>=0){const t=e[r--];if(t&&t.type==="rule"&&t.selector===B.selector){B.each(B=>{if(B.type==="decl"){dedupeNode(B,t.nodes)}});if(empty(t)){t.remove()}}}}function dedupeNode(B,e){let r=~e.indexOf(B)?e.indexOf(B)-1:e.length-1;while(r>=0){const t=e[r--];if(t&&equals(t,B)){t.remove()}}}const n={rule:dedupeRule,atrule:dedupeNode,decl:dedupeNode,comment:noop};function dedupe(B){const{nodes:e}=B;if(!e){return}let r=e.length-1;while(r>=0){let B=e[r--];if(!B||!B.parent){continue}dedupe(B);n[B.type](B,e)}}var i=(0,t.plugin)("postcss-discard-duplicates",()=>dedupe);e.default=i;B.exports=e.default},6650:function(B){B.exports={A:{A:{1:"I D F E A B",16:"iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB hB",2:"sB KB",16:"pB"},D:{1:"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f"},E:{1:"I D F E A B C N H dB eB fB XB R U jB kB",2:"G W 0B YB cB"},F:{1:"0 1 2 3 4 5 6 7 8 9 C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T qB U",2:"E B lB mB nB oB R VB"},G:{1:"4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B"},H:{2:"AC"},I:{1:"Q FC GC",2:"KB G BC CC DC EC IB"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{2:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"indeterminate checkbox"}},6664:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",194:"AB LB CB JB EB FB GB HB DB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"6 7 8 9 AB CB EB FB GB HB DB V M T",2:"0 1 2 3 4 5 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:4,C:"Orientation Sensor"}},6674:function(B){B.exports={A:{A:{2:"I D F iB",164:"E A",260:"B"},B:{1:"K L y BB Q WB S",260:"C N H P J"},C:{1:"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F pB hB",516:"E A B C N H P J K L X Y Z a b c d e f g h i j"},D:{1:"0 1 2 3 4 5 6 7 8 9 b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a"},E:{1:"I A B C cB fB XB R",2:"G W N H 0B YB U jB kB",1028:"D F E dB eB"},F:{1:"0 1 2 3 4 5 6 7 8 9 C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T U",2:"E B lB mB nB oB R VB qB"},G:{1:"xB yB zB ZB 1B 2B 3B",2:"YB rB IB tB uB 4B 5B 6B 7B 8B 9B",1028:"F vB wB"},H:{1:"AC"},I:{1:"Q FC GC",2:"KB G BC CC DC EC IB"},J:{16:"D",1028:"A"},K:{1:"O U",16:"A B C R VB"},L:{1:"S"},M:{1:"M"},N:{164:"A",260:"B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"Do Not Track API"}},6690:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N",132:"H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i pB hB",132:"j k l m n o p q r s t u v w x O z"},D:{1:"M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n",132:"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V"},E:{1:"A B C N H fB XB R U jB kB",2:"G W I D 0B YB cB dB",132:"F E eB"},F:{1:"7 8 9 AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a lB mB nB oB R VB qB U",132:"0 1 2 3 4 5 6 b c d e f g h i j k l m n o p q r s t u v w x O z"},G:{1:"xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB uB vB",16:"F",132:"wB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{1:"A",2:"D"},K:{2:"A B C R VB U",132:"O"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{132:"HC"},P:{1:"XB NC OC",132:"G IC JC KC LC MC"},Q:{132:"PC"},R:{132:"QC"},S:{1:"RC"}},B:1,C:"Path2D"}},6706:function(B){B.exports={A:{A:{2:"E A B iB",4:"I D F"},B:{2:"C N H P J K L",8:"y BB Q WB S"},C:{8:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{8:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{8:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{8:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{8:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{8:"AC"},I:{8:"KB G Q BC CC DC EC IB FC GC"},J:{8:"D A"},K:{8:"A B C O R VB U"},L:{8:"S"},M:{8:"M"},N:{2:"A B"},O:{8:"HC"},P:{8:"G IC JC KC LC MC XB NC OC"},Q:{8:"PC"},R:{8:"QC"},S:{8:"RC"}},B:7,C:"XHTML+SMIL animation"}},6707:function(B,e){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=_default;function _default(B){const e=B.toLowerCase();return e==="normal"?"400":e==="bold"?"700":B}B.exports=e.default},6708:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"OB PB QB RB SB TB UB y BB",2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u",194:"v w x"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h lB mB nB oB R VB qB U",194:"i j k"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{2:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{1:"PC"},R:{1:"QC"},S:{2:"RC"}},B:5,C:"CSS Motion Path"}},6710:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"P J K L y BB Q WB S",2:"C N H"},C:{1:"0 1 2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o"},E:{2:"G W I D 0B YB cB dB eB",129:"B C N H XB R U jB kB",194:"F E A fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b lB mB nB oB R VB qB U"},G:{2:"YB rB IB tB uB vB",129:"ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",194:"F wB xB yB zB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"navigator.hardwareConcurrency"}},6716:function(B){B.exports={A:{A:{1:"E A B",2:"I D F iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB",132:"G W I D F E A B C N H P J K L X pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H cB dB eB fB XB R U jB kB",2:"0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T nB oB R VB qB U",2:"E",4:"lB mB"},G:{1:"F rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB"},H:{2:"AC"},I:{1:"KB G Q DC EC IB FC GC",2:"BC CC"},J:{1:"D A"},K:{1:"B C O R VB U",2:"A"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"Audio element"}},6721:function(B){B.exports={A:{A:{2:"I D iB",132:"F",260:"E A B"},B:{1:"y BB Q WB S",260:"C N P J K L",772:"H"},C:{1:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{1:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{260:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:6,C:"Data URIs"}},6729:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(9854));var n=_interopRequireDefault(r(2043));var i=_interopRequireWildcard(r(6486));var C=_interopRequireDefault(r(5359));var o=_interopRequireDefault(r(2646));var a=r(5433);function _getRequireWildcardCache(){if(typeof WeakMap!=="function")return null;var B=new WeakMap;_getRequireWildcardCache=function(){return B};return B}function _interopRequireWildcard(B){if(B&&B.__esModule){return B}if(B===null||typeof B!=="object"&&typeof B!=="function"){return{default:B}}var e=_getRequireWildcardCache();if(e&&e.has(B)){return e.get(B)}var r={};var t=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var n in B){if(Object.prototype.hasOwnProperty.call(B,n)){var i=t?Object.getOwnPropertyDescriptor(B,n):null;if(i&&(i.get||i.set)){Object.defineProperty(r,n,i)}else{r[n]=B[n]}}}r.default=B;if(e){e.set(B,r)}return r}function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function gcd(B,e){return e?gcd(e,B%e):B}function aspectRatio(B,e){const r=gcd(B,e);return[B/r,e/r]}function split(B){return B.map(B=>(0,i.stringify)(B)).join("")}function removeNode(B){B.value="";B.type="word"}function transform(B,e){const r=e.name.toLowerCase();if(!e.params||!["media","supports"].includes(r)){return}const t=(0,i.default)(e.params);t.walk((r,n)=>{if(r.type==="div"||r.type==="function"){r.before=r.after="";if(r.type==="function"&&r.nodes[4]&&r.nodes[0].value.toLowerCase().indexOf("-aspect-ratio")===3){const[B,e]=aspectRatio(r.nodes[2].value,r.nodes[4].value);r.nodes[2].value=B;r.nodes[4].value=e}}else if(r.type==="space"){r.value=" "}else{const i=t.nodes[n-2];if(r.value.toLowerCase()==="all"&&e.name.toLowerCase()==="media"&&!i){const e=t.nodes[n+2];if(!B||e){removeNode(r)}if(e&&e.value.toLowerCase()==="and"){const B=t.nodes[n+1];const r=t.nodes[n+3];removeNode(e);removeNode(B);removeNode(r)}}}},true);e.params=(0,C.default)((0,o.default)((0,a.getArguments)(t).map(split)),{insensitive:true}).join();if(!e.params.length){e.raws.afterName=""}}function hasAllBug(B){return~["ie 10","ie 11"].indexOf(B)}var s=n.default.plugin("postcss-minify-params",()=>{return(B,e)=>{const r=e.opts||{};const n=(0,t.default)(null,{stats:r.stats,path:__dirname,env:r.env});return B.walkAtRules(transform.bind(null,n.some(hasAllBug)))}});e.default=s;B.exports=e.default},6732:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",66:"AB LB CB JB"},E:{1:"H jB kB",2:"G W I D F E A B C N 0B YB cB dB eB fB XB R U"},F:{2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z lB mB nB oB R VB qB U",16:"0 1 2 3 4 5 6 7 8 9 AB CB EB FB GB HB DB V M T"},G:{1:"8B 9B",2:"F rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B",16:"YB"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:5,C:"Asynchronous Clipboard API"}},6742:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m pB hB",194:"n o p q r s"},D:{1:"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m"},E:{1:"A B C N H XB R U jB kB",2:"G W I D F E 0B YB cB dB eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z lB mB nB oB R VB qB U"},G:{1:"zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:5,C:"CSS Font Loading"}},6743:function(B){B.exports={A:{A:{2:"I D F E iB",132:"A B"},B:{132:"C N H P J K L",1028:"y BB Q WB S"},C:{2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k pB hB",2564:"0 l m n o p q r s t u v w x O z",3076:"1 2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{16:"G W I D",132:"0 1 2 3 4 5 6 7 8 9 E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB",388:"F",1028:"JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{16:"G 0B YB",132:"W I D F E A cB dB eB fB XB",1028:"B C N H R U jB kB"},F:{2:"E B C lB mB nB oB R VB qB U",132:"P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",1028:"0 1 2 3 4 5 6 7 8 9 AB CB EB FB GB HB DB V M T"},G:{16:"YB rB IB",132:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",132:"G EC IB FC GC",292:"KB BC CC DC"},J:{16:"D",132:"A"},K:{2:"A B C R VB U",132:"O"},L:{1028:"S"},M:{1:"M"},N:{132:"A B"},O:{132:"HC"},P:{132:"G IC JC KC LC MC XB NC OC"},Q:{132:"PC"},R:{132:"QC"},S:{2564:"RC"}},B:4,C:"DOMMatrix"}},6762:function(B,e,r){"use strict";e.__esModule=true;e.default=void 0;var t=_interopRequireDefault(r(8092));var n=r(699);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _inheritsLoose(B,e){B.prototype=Object.create(e.prototype);B.prototype.constructor=B;B.__proto__=e}var i=function(B){_inheritsLoose(Comment,B);function Comment(e){var r;r=B.call(this,e)||this;r.type=n.COMMENT;return r}return Comment}(t.default);e.default=i;B.exports=e.default},6774:function(B){B.exports={A:{A:{2:"I D F iB",260:"E A B"},B:{132:"y BB Q WB S",260:"C N H P J K L"},C:{2:"sB KB G W pB hB",260:"0 1 2 3 4 5 6 7 8 9 I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{16:"G W I D F E A B C N H",132:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{16:"0B YB",132:"G W I D F E A B C N H cB dB eB fB XB R U jB kB"},F:{1:"C qB U",2:"E lB mB nB oB",16:"B R VB",132:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{16:"YB rB",132:"F IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{16:"BC CC",132:"KB G Q DC EC IB FC GC"},J:{132:"D A"},K:{1:"C U",2:"A",16:"B R VB",132:"O"},L:{132:"S"},M:{260:"M"},N:{260:"A B"},O:{132:"HC"},P:{132:"G IC JC KC LC MC XB NC OC"},Q:{132:"PC"},R:{132:"QC"},S:{260:"RC"}},B:5,C:"Mutation events"}},6776:function(B){B.exports={A:{A:{2:"I D F iB",132:"A B",388:"E"},B:{1:"y BB Q WB S",132:"C N H P J K L"},C:{1:"3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",16:"sB KB pB hB",132:"0 1 2 I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",388:"G W"},D:{1:"0 1 2 3 4 5 6 7 8 9 r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",16:"G W I D F E A B C N H",132:"P J K L X Y Z a b c d e f g h i j k l m n o p q"},E:{1:"B C N H XB R U jB kB",16:"G W I 0B YB",132:"D F E A dB eB fB",388:"cB"},F:{1:"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",16:"E B lB mB nB oB R VB",132:"P J K L X Y Z a b c d",516:"C qB U"},G:{1:"ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB rB IB tB uB",132:"F vB wB xB yB zB"},H:{516:"AC"},I:{1:"Q",16:"KB BC CC DC GC",132:"FC",388:"G EC IB"},J:{16:"D",132:"A"},K:{1:"O",16:"A B C R VB",516:"U"},L:{1:"S"},M:{132:"M"},N:{132:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{132:"RC"}},B:7,C:":indeterminate CSS pseudo-class"}},6811:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"H P J K L y BB Q WB S",2:"C N"},C:{1:"0 1 2 3 4 5 6 7 8 9 r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n"},E:{1:"C N H U jB kB",2:"G W I D F E 0B YB cB dB eB fB",132:"A B XB R"},F:{1:"0 1 2 3 4 5 6 7 8 9 b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a lB mB nB oB R VB qB U"},G:{1:"zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"WOFF 2.0 - Web Open Font Format"}},6812:function(B,e,r){"use strict";e.__esModule=true;var t=r(4956);var n=_interopRequireDefault(t);var i=r(5544);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _classCallCheck(B,e){if(!(B instanceof e)){throw new TypeError("Cannot call a class as a function")}}function _possibleConstructorReturn(B,e){if(!B){throw new ReferenceError("this hasn't been initialised - super() hasn't been called")}return e&&(typeof e==="object"||typeof e==="function")?e:B}function _inherits(B,e){if(typeof e!=="function"&&e!==null){throw new TypeError("Super expression must either be null or a function, not "+typeof e)}B.prototype=Object.create(e&&e.prototype,{constructor:{value:B,enumerable:false,writable:true,configurable:true}});if(e)Object.setPrototypeOf?Object.setPrototypeOf(B,e):B.__proto__=e}var C=function(B){_inherits(ID,B);function ID(e){_classCallCheck(this,ID);var r=_possibleConstructorReturn(this,B.call(this,e));r.type=i.ID;return r}ID.prototype.toString=function toString(){return[this.spaces.before,this.ns,String("#"+this.value),this.spaces.after].join("")};return ID}(n.default);e.default=C;B.exports=e["default"]},6826:function(B,e,r){B.exports={aac:r(5621),abortcontroller:r(2142),"ac3-ec3":r(5113),accelerometer:r(1885),addeventlistener:r(5632),"alternate-stylesheet":r(2957),"ambient-light":r(6366),apng:r(7530),"array-find-index":r(4643),"array-find":r(7219),"array-flat":r(5441),"array-includes":r(3183),"arrow-functions":r(1251),asmjs:r(4562),"async-clipboard":r(6732),"async-functions":r(7293),"async-iterations-and-generators":r(1049),"atob-btoa":r(273),"audio-api":r(3179),audio:r(6716),audiotracks:r(3963),autofocus:r(5893),auxclick:r(5731),av1:r(8285),avif:r(5759),"background-attachment":r(9084),"background-clip-text":r(6609),"background-img-opts":r(8818),"background-position-x-y":r(5569),"background-repeat-round-space":r(3050),"background-sync":r(2290),"battery-status":r(810),beacon:r(4427),beforeafterprint:r(2072),bigint:r(4553),blobbuilder:r(944),bloburls:r(4002),"border-image":r(1421),"border-radius":r(6832),broadcastchannel:r(5917),brotli:r(5904),calc:r(6509),"canvas-blending":r(3996),"canvas-text":r(9836),canvas:r(650),"ch-unit":r(6313),"chacha20-poly1305":r(6979),"channel-messaging":r(727),"childnode-remove":r(4684),classlist:r(6005),"clear-site-data-header":r(260),"client-hints-dpr-width-viewport":r(9035),clipboard:r(8123),comparedocumentposition:r(2430),"console-basic":r(5460),"console-time":r(2550),const:r(703),"constraint-validation":r(7190),contenteditable:r(1238),contentsecuritypolicy:r(1616),contentsecuritypolicy2:r(342),cors:r(578),createimagebitmap:r(3878),"credential-management":r(3431),cryptography:r(2312),"css-all":r(1240),"css-animation":r(9787),"css-any-link":r(562),"css-appearance":r(877),"css-apply-rule":r(146),"css-at-counter-style":r(3210),"css-backdrop-filter":r(8121),"css-background-offsets":r(4652),"css-backgroundblendmode":r(345),"css-boxdecorationbreak":r(8945),"css-boxshadow":r(1798),"css-canvas":r(8808),"css-caret-color":r(1971),"css-case-insensitive":r(8741),"css-clip-path":r(8842),"css-color-adjust":r(6601),"css-color-function":r(3447),"css-conic-gradients":r(2953),"css-containment":r(8169),"css-counters":r(655),"css-crisp-edges":r(4492),"css-cross-fade":r(2597),"css-default-pseudo":r(9051),"css-descendant-gtgt":r(476),"css-deviceadaptation":r(7910),"css-dir-pseudo":r(5086),"css-display-contents":r(1397),"css-element-function":r(3462),"css-env-function":r(5103),"css-exclusions":r(1412),"css-featurequeries":r(1630),"css-filter-function":r(4249),"css-filters":r(5942),"css-first-letter":r(5831),"css-first-line":r(5912),"css-fixed":r(9481),"css-focus-visible":r(8159),"css-focus-within":r(5138),"css-font-rendering-controls":r(3596),"css-font-stretch":r(9992),"css-gencontent":r(343),"css-gradients":r(8598),"css-grid":r(2629),"css-hanging-punctuation":r(416),"css-has":r(3993),"css-hyphenate":r(1491),"css-hyphens":r(1022),"css-image-orientation":r(8009),"css-image-set":r(2470),"css-in-out-of-range":r(4970),"css-indeterminate-pseudo":r(6776),"css-initial-letter":r(3458),"css-initial-value":r(8357),"css-letter-spacing":r(2251),"css-line-clamp":r(8069),"css-logical-props":r(1203),"css-marker-pseudo":r(3896),"css-masks":r(5957),"css-matches-pseudo":r(9683),"css-math-functions":r(4549),"css-media-interaction":r(7056),"css-media-resolution":r(3779),"css-media-scripting":r(661),"css-mediaqueries":r(7696),"css-mixblendmode":r(127),"css-motion-paths":r(6708),"css-namespaces":r(7341),"css-not-sel-list":r(935),"css-nth-child-of":r(2123),"css-opacity":r(4676),"css-optional-pseudo":r(4673),"css-overflow-anchor":r(7458),"css-overflow":r(4015),"css-overscroll-behavior":r(8283),"css-page-break":r(8452),"css-paged-media":r(3887),"css-paint-api":r(111),"css-placeholder-shown":r(5096),"css-placeholder":r(158),"css-read-only-write":r(7286),"css-rebeccapurple":r(4150),"css-reflections":r(5614),"css-regions":r(5810),"css-repeating-gradients":r(6442),"css-resize":r(7053),"css-revert-value":r(6505),"css-rrggbbaa":r(5487),"css-scroll-behavior":r(9942),"css-scrollbar":r(3776),"css-sel2":r(2026),"css-sel3":r(8150),"css-selection":r(3900),"css-shapes":r(2376),"css-snappoints":r(8363),"css-sticky":r(9954),"css-subgrid":r(8577),"css-supports-api":r(4699),"css-table":r(1518),"css-text-align-last":r(9702),"css-text-indent":r(5297),"css-text-justify":r(2186),"css-text-orientation":r(6590),"css-text-spacing":r(7711),"css-textshadow":r(2325),"css-touch-action-2":r(2339),"css-touch-action":r(1529),"css-transitions":r(9982),"css-unicode-bidi":r(7987),"css-unset-value":r(6496),"css-variables":r(8651),"css-widows-orphans":r(3909),"css-writing-mode":r(9327),"css-zoom":r(5871),"css3-attr":r(9738),"css3-boxsizing":r(3880),"css3-colors":r(5730),"css3-cursors-grab":r(477),"css3-cursors-newer":r(8233),"css3-cursors":r(9627),"css3-tabsize":r(6568),currentcolor:r(4882),"custom-elements":r(7994),"custom-elementsv1":r(8300),customevent:r(5967),datalist:r(9919),dataset:r(8867),datauri:r(6721),"date-tolocaledatestring":r(84),details:r(9699),deviceorientation:r(5826),devicepixelratio:r(2520),dialog:r(11),dispatchevent:r(3546),dnssec:r(70),"do-not-track":r(6674),"document-currentscript":r(6591),"document-evaluate-xpath":r(1636),"document-execcommand":r(7687),"document-policy":r(1714),"document-scrollingelement":r(8603),documenthead:r(9282),"dom-manip-convenience":r(665),"dom-range":r(3352),domcontentloaded:r(7300),"domfocusin-domfocusout-events":r(2727),dommatrix:r(6743),download:r(1804),dragndrop:r(7644),"element-closest":r(5069),"element-from-point":r(7054),"element-scroll-methods":r(2822),eme:r(7781),eot:r(8861),es5:r(1480),"es6-class":r(2002),"es6-generators":r(1488),"es6-module-dynamic-import":r(7451),"es6-module":r(7088),"es6-number":r(7252),"es6-string-includes":r(6030),es6:r(7821),eventsource:r(3790),"extended-system-fonts":r(5971),"feature-policy":r(1196),fetch:r(3071),"fieldset-disabled":r(3853),fileapi:r(5865),filereader:r(4695),filereadersync:r(3915),filesystem:r(660),flac:r(5841),"flexbox-gap":r(7980),flexbox:r(3157),"flow-root":r(83),"focusin-focusout-events":r(6423),"focusoptions-preventscroll":r(6951),"font-family-system-ui":r(723),"font-feature":r(8616),"font-kerning":r(614),"font-loading":r(6742),"font-size-adjust":r(9812),"font-smooth":r(6119),"font-unicode-range":r(7460),"font-variant-alternates":r(1099),"font-variant-east-asian":r(3248),"font-variant-numeric":r(5419),fontface:r(438),"form-attribute":r(1695),"form-submit-attributes":r(8578),"form-validation":r(9995),forms:r(5217),fullscreen:r(8682),gamepad:r(6016),geolocation:r(5202),getboundingclientrect:r(1871),getcomputedstyle:r(1381),getelementsbyclassname:r(2397),getrandomvalues:r(2416),gyroscope:r(5133),hardwareconcurrency:r(6710),hashchange:r(744),heif:r(2986),hevc:r(325),hidden:r(9078),"high-resolution-time":r(100),history:r(7104),"html-media-capture":r(5274),html5semantic:r(7556),"http-live-streaming":r(2278),http2:r(9978),http3:r(5239),"iframe-sandbox":r(7551),"iframe-seamless":r(8519),"iframe-srcdoc":r(4968),imagecapture:r(3082),ime:r(2207),"img-naturalwidth-naturalheight":r(6875),imports:r(7189),"indeterminate-checkbox":r(6650),indexeddb:r(8676),indexeddb2:r(5304),"inline-block":r(6147),innertext:r(9842),"input-autocomplete-onoff":r(1689),"input-color":r(4929),"input-datetime":r(8192),"input-email-tel-url":r(4057),"input-event":r(1458),"input-file-accept":r(9888),"input-file-directory":r(4351),"input-file-multiple":r(5184),"input-inputmode":r(8778),"input-minlength":r(4288),"input-number":r(9491),"input-pattern":r(9372),"input-placeholder":r(9042),"input-range":r(9182),"input-search":r(4948),"input-selection":r(74),"insert-adjacent":r(5126),insertadjacenthtml:r(9304),internationalization:r(5649),"intersectionobserver-v2":r(4528),intersectionobserver:r(5785),"intl-pluralrules":r(589),"intrinsic-width":r(3777),jpeg2000:r(4866),jpegxr:r(1797),"js-regexp-lookbehind":r(1904),json:r(3153),"justify-content-space-evenly":r(1169),"kerning-pairs-ligatures":r(9291),"keyboardevent-charcode":r(3537),"keyboardevent-code":r(2606),"keyboardevent-getmodifierstate":r(210),"keyboardevent-key":r(4029),"keyboardevent-location":r(9402),"keyboardevent-which":r(9072),lazyload:r(6872),let:r(4758),"link-icon-png":r(9170),"link-icon-svg":r(5067),"link-rel-dns-prefetch":r(9362),"link-rel-modulepreload":r(3614),"link-rel-preconnect":r(1735),"link-rel-prefetch":r(7597),"link-rel-preload":r(4571),"link-rel-prerender":r(954),"loading-lazy-attr":r(4923),localecompare:r(1510),magnetometer:r(6925),matchesselector:r(6572),matchmedia:r(6481),mathml:r(4174),maxlength:r(5260),"media-attribute":r(2088),"media-fragments":r(9663),"media-session-api":r(163),"mediacapture-fromelement":r(2790),mediarecorder:r(516),mediasource:r(3767),menu:r(341),"meta-theme-color":r(8770),meter:r(5068),midi:r(370),minmaxwh:r(5106),mp3:r(1569),"mpeg-dash":r(9118),mpeg4:r(6074),multibackgrounds:r(5281),multicolumn:r(8774),"mutation-events":r(6774),mutationobserver:r(6034),"namevalue-storage":r(2387),"native-filesystem-api":r(9335),"nav-timing":r(1185),"navigator-language":r(7550),netinfo:r(9392),"node-contains":r(1682),"node-parentelement":r(5895),notifications:r(1642),"object-entries":r(2174),"object-fit":r(8935),"object-observe":r(1288),"object-values":r(7173),objectrtc:r(1870),"offline-apps":r(7795),offscreencanvas:r(5272),"ogg-vorbis":r(8040),ogv:r(4114),"ol-reversed":r(2338),"once-event-listener":r(2035),"online-status":r(7361),opus:r(5404),"orientation-sensor":r(6664),outline:r(165),"pad-start-end":r(3049),"page-transition-events":r(4137),pagevisibility:r(1711),"passive-event-listener":r(7832),passwordrules:r(5607),path2d:r(6690),"payment-request":r(6286),"pdf-viewer":r(3076),"permissions-api":r(9149),"permissions-policy":r(8659),"picture-in-picture":r(5888),picture:r(271),ping:r(8900),"png-alpha":r(5929),"pointer-events":r(9082),pointer:r(933),pointerlock:r(2101),portals:r(6329),"prefers-color-scheme":r(7490),"prefers-reduced-motion":r(836),"private-class-fields":r(340),"private-methods-and-accessors":r(7996),progress:r(2286),"promise-finally":r(8589),promises:r(2831),proximity:r(1311),proxy:r(4805),"public-class-fields":r(3068),publickeypinning:r(9636),"push-api":r(4127),queryselector:r(899),"readonly-attr":r(7495),"referrer-policy":r(206),registerprotocolhandler:r(3457),"rel-noopener":r(6151),"rel-noreferrer":r(7593),rellist:r(2933),rem:r(7887),"replace-all":r(6843),requestanimationframe:r(5756),requestidlecallback:r(7200),resizeobserver:r(219),"resource-timing":r(571),"rest-parameters":r(6861),rtcpeerconnection:r(8782),ruby:r(7027),"run-in":r(4316),"same-site-cookie-attribute":r(4979),"screen-orientation":r(4154),"script-async":r(6186),"script-defer":r(2874),scrollintoview:r(1838),scrollintoviewifneeded:r(9364),sdch:r(7157),"selection-api":r(3612),"server-timing":r(8188),serviceworkers:r(5982),setimmediate:r(5162),"sha-2":r(781),shadowdom:r(385),shadowdomv1:r(3361),sharedarraybuffer:r(3233),sharedworkers:r(2690),sni:r(2357),spdy:r(4912),"speech-recognition":r(1141),"speech-synthesis":r(9056),"spellcheck-attribute":r(3738),"sql-storage":r(1502),srcset:r(3791),stopimmediatepropagation:r(780),stream:r(902),streams:r(7139),stricttransportsecurity:r(5712),"style-scoped":r(4419),"subresource-integrity":r(5579),"svg-css":r(3572),"svg-filters":r(2559),"svg-fonts":r(9235),"svg-fragment":r(484),"svg-html":r(7314),"svg-html5":r(6241),"svg-img":r(8887),"svg-smil":r(6318),svg:r(8348),sxg:r(2880),symbols:r(8380),"tabindex-attr":r(8760),"template-literals":r(5878),template:r(796),testfeat:r(3285),"text-decoration":r(8097),"text-emphasis":r(1911),"text-overflow":r(5131),"text-size-adjust":r(9515),"text-stroke":r(1154),"text-underline-offset":r(3477),textcontent:r(9407),textencoder:r(2150),"tls1-1":r(1704),"tls1-2":r(3291),"tls1-3":r(2896),"token-binding":r(1725),touch:r(7062),transforms2d:r(6144),transforms3d:r(5321),"trusted-types":r(7179),ttf:r(7626),typedarrays:r(7869),u2f:r(9946),unhandledrejection:r(7216),upgradeinsecurerequests:r(9766),"url-scroll-to-text-fragment":r(2234),url:r(8240),urlsearchparams:r(200),"use-strict":r(3773),"user-select-none":r(8904),"user-timing":r(2603),"variable-fonts":r(1326),vibration:r(8232),video:r(2414),videotracks:r(854),"viewport-units":r(2417),"wai-aria":r(3938),"wake-lock":r(3694),wasm:r(6862),wav:r(2845),"wbr-element":r(755),"web-animation":r(1071),"web-app-manifest":r(6045),"web-bluetooth":r(1109),"web-share":r(3476),webauthn:r(9912),webgl:r(3669),webgl2:r(5037),webgpu:r(9438),webhid:r(9765),webm:r(2876),webnfc:r(3560),webp:r(4502),websockets:r(7703),webusb:r(4937),webvr:r(3525),webvtt:r(8110),webworkers:r(7333),webxr:r(2567),"will-change":r(6317),woff:r(1570),woff2:r(6811),"word-break":r(870),wordwrap:r(782),"x-doc-messaging":r(4666),"x-frame-options":r(4364),xhr2:r(8386),xhtml:r(5411),xhtmlsmil:r(6706),"xml-serializer":r(826)}},6832:function(B){B.exports={A:{A:{1:"E A B",2:"I D F iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",257:"0 1 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",289:"KB pB hB",292:"sB"},D:{1:"0 1 2 3 4 5 6 7 8 9 W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",33:"G"},E:{1:"W D F E A B C N H eB fB XB R U jB kB",33:"G 0B YB",129:"I cB dB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T nB oB R VB qB U",2:"E lB mB"},G:{1:"F rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",33:"YB"},H:{2:"AC"},I:{1:"KB G Q CC DC EC IB FC GC",33:"BC"},J:{1:"D A"},K:{1:"B C O R VB U",2:"A"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{257:"RC"}},B:4,C:"CSS3 Border-radius (rounded corners)"}},6843:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L y BB Q WB S"},C:{1:"OB PB QB RB SB TB UB y BB",2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB pB hB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"H jB kB",2:"G W I D F E A B C N 0B YB cB dB eB fB XB R U"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{16:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{16:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{16:"QC"},S:{16:"RC"}},B:7,C:"String.prototype.replaceAll()"}},6861:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v",194:"w x O"},E:{1:"A B C N H XB R U jB kB",2:"G W I D F E 0B YB cB dB eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i lB mB nB oB R VB qB U",194:"j k l"},G:{1:"zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:6,C:"Rest parameters"}},6862:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"J K L y BB Q WB S",2:"C N H",578:"P"},C:{1:"5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O pB hB",194:"0 1 2 3 z",1025:"4"},D:{1:"9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",322:"3 4 5 6 7 8"},E:{1:"B C N H R U jB kB",2:"G W I D F E A 0B YB cB dB eB fB XB"},F:{1:"0 1 2 3 4 5 6 7 8 9 w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p lB mB nB oB R VB qB U",322:"q r s t u v"},G:{1:"1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"KC LC MC XB NC OC",2:"G IC JC"},Q:{1:"PC"},R:{2:"QC"},S:{194:"RC"}},B:6,C:"WebAssembly"}},6872:function(B){B.exports={A:{A:{1:"B",2:"I D F E A iB"},B:{1:"C N H P J K L",2:"y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{1:"B",2:"A"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:7,C:"Resource Hints: Lazyload"}},6875:function(B){B.exports={A:{A:{1:"E A B",2:"I D F iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{1:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"naturalWidth & naturalHeight image properties"}},6877:function(B,e){"use strict";e.__esModule=true;var r=e.ampersand=38;var t=e.asterisk=42;var n=e.at=64;var i=e.comma=44;var C=e.colon=58;var o=e.semicolon=59;var a=e.openParenthesis=40;var s=e.closeParenthesis=41;var u=e.openSquare=91;var f=e.closeSquare=93;var l=e.dollar=36;var c=e.tilde=126;var p=e.caret=94;var A=e.plus=43;var d=e.equals=61;var h=e.pipe=124;var E=e.greaterThan=62;var D=e.space=32;var v=e.singleQuote=39;var F=e.doubleQuote=34;var G=e.slash=47;var O=e.backslash=92;var M=e.cr=13;var g=e.feed=12;var I=e.newline=10;var H=e.tab=9;var L=e.str=v;var m=e.comment=-1;var y=e.word=-2;var N=e.combinator=-3},6901:function(B,e,r){"use strict";e.__esModule=true;e.default=void 0;var t=_interopRequireDefault(r(2544));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}var n=function(){function Processor(B,e){this.func=B||function noop(){};this.funcRes=null;this.options=e}var B=Processor.prototype;B._shouldUpdateSelector=function _shouldUpdateSelector(B,e){if(e===void 0){e={}}var r=Object.assign({},this.options,e);if(r.updateSelector===false){return false}else{return typeof B!=="string"}};B._isLossy=function _isLossy(B){if(B===void 0){B={}}var e=Object.assign({},this.options,B);if(e.lossless===false){return true}else{return false}};B._root=function _root(B,e){if(e===void 0){e={}}var r=new t.default(B,this._parseOptions(e));return r.root};B._parseOptions=function _parseOptions(B){return{lossy:this._isLossy(B)}};B._run=function _run(B,e){var r=this;if(e===void 0){e={}}return new Promise(function(t,n){try{var i=r._root(B,e);Promise.resolve(r.func(i)).then(function(t){var n=undefined;if(r._shouldUpdateSelector(B,e)){n=i.toString();B.selector=n}return{transform:t,root:i,string:n}}).then(t,n)}catch(B){n(B);return}})};B._runSync=function _runSync(B,e){if(e===void 0){e={}}var r=this._root(B,e);var t=this.func(r);if(t&&typeof t.then==="function"){throw new Error("Selector processor returned a promise to a synchronous call.")}var n=undefined;if(e.updateSelector&&typeof B!=="string"){n=r.toString();B.selector=n}return{transform:t,root:r,string:n}};B.ast=function ast(B,e){return this._run(B,e).then(function(B){return B.root})};B.astSync=function astSync(B,e){return this._runSync(B,e).root};B.transform=function transform(B,e){return this._run(B,e).then(function(B){return B.transform})};B.transformSync=function transformSync(B,e){return this._runSync(B,e).transform};B.process=function process(B,e){return this._run(B,e).then(function(B){return B.string||B.root.toString()})};B.processSync=function processSync(B,e){var r=this._runSync(B,e);return r.string||r.root.toString()};return Processor}();e.default=n;B.exports=e.default},6918:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});var t=e.browsers=r(5817)},6925:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",194:"AB LB CB JB EB FB GB HB DB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"6 7 8 9 AB CB EB FB GB HB DB V M T",2:"0 1 2 3 4 5 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{194:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:4,C:"Magnetometer"}},6951:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"3 4 5 6 7 8 9 AB CB EB FB GB HB DB V M T",2:"0 1 2 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:1,C:"preventScroll support in focus"}},6979:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O pB hB"},D:{1:"1 2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k",129:"0 l m n o p q r s t u v w x O z"},E:{1:"C N H R U jB kB",2:"G W I D F E A B 0B YB cB dB eB fB XB"},F:{1:"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n lB mB nB oB R VB qB U"},G:{1:"1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC",16:"GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:6,C:"ChaCha20-Poly1305 cipher suites for TLS"}},6986:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(2043));var n=_interopRequireDefault(r(444));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}var i=t.default.plugin("postcss-merge-longhand",()=>{return B=>{B.walkRules(B=>{n.default.forEach(e=>{e.explode(B);e.merge(B)})})}});e.default=i;B.exports=e.default},7010:function(B,e,r){"use strict";e.__esModule=true;var t=r(4956);var n=_interopRequireDefault(t);var i=r(5544);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _classCallCheck(B,e){if(!(B instanceof e)){throw new TypeError("Cannot call a class as a function")}}function _possibleConstructorReturn(B,e){if(!B){throw new ReferenceError("this hasn't been initialised - super() hasn't been called")}return e&&(typeof e==="object"||typeof e==="function")?e:B}function _inherits(B,e){if(typeof e!=="function"&&e!==null){throw new TypeError("Super expression must either be null or a function, not "+typeof e)}B.prototype=Object.create(e&&e.prototype,{constructor:{value:B,enumerable:false,writable:true,configurable:true}});if(e)Object.setPrototypeOf?Object.setPrototypeOf(B,e):B.__proto__=e}var C=function(B){_inherits(ClassName,B);function ClassName(e){_classCallCheck(this,ClassName);var r=_possibleConstructorReturn(this,B.call(this,e));r.type=i.CLASS;return r}ClassName.prototype.toString=function toString(){return[this.spaces.before,this.ns,String("."+this.value),this.spaces.after].join("")};return ClassName}(n.default);e.default=C;B.exports=e["default"]},7027:function(B){B.exports={A:{A:{4:"I D F E A B iB"},B:{4:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",8:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p pB hB"},D:{4:"0 1 2 3 4 5 6 7 8 9 W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",8:"G"},E:{4:"W I D F E A B C N H cB dB eB fB XB R U jB kB",8:"G 0B YB"},F:{4:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",8:"E B C lB mB nB oB R VB qB U"},G:{4:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",8:"YB rB IB"},H:{8:"AC"},I:{4:"KB G Q EC IB FC GC",8:"BC CC DC"},J:{4:"A",8:"D"},K:{4:"O",8:"A B C R VB U"},L:{4:"S"},M:{1:"M"},N:{4:"A B"},O:{4:"HC"},P:{4:"G IC JC KC LC MC XB NC OC"},Q:{4:"PC"},R:{4:"QC"},S:{1:"RC"}},B:1,C:"Ruby annotation"}},7045:function(B,e,r){"use strict";e.__esModule=true;e.isUniversal=e.isTag=e.isString=e.isSelector=e.isRoot=e.isPseudo=e.isNesting=e.isIdentifier=e.isComment=e.isCombinator=e.isClassName=e.isAttribute=undefined;var t=typeof Symbol==="function"&&typeof Symbol.iterator==="symbol"?function(B){return typeof B}:function(B){return B&&typeof Symbol==="function"&&B.constructor===Symbol&&B!==Symbol.prototype?"symbol":typeof B};var n;e.isNode=isNode;e.isPseudoElement=isPseudoElement;e.isPseudoClass=isPseudoClass;e.isContainer=isContainer;e.isNamespace=isNamespace;var i=r(5544);var C=(n={},n[i.ATTRIBUTE]=true,n[i.CLASS]=true,n[i.COMBINATOR]=true,n[i.COMMENT]=true,n[i.ID]=true,n[i.NESTING]=true,n[i.PSEUDO]=true,n[i.ROOT]=true,n[i.SELECTOR]=true,n[i.STRING]=true,n[i.TAG]=true,n[i.UNIVERSAL]=true,n);function isNode(B){return(typeof B==="undefined"?"undefined":t(B))==="object"&&C[B.type]}function isNodeType(B,e){return isNode(e)&&e.type===B}var o=e.isAttribute=isNodeType.bind(null,i.ATTRIBUTE);var a=e.isClassName=isNodeType.bind(null,i.CLASS);var s=e.isCombinator=isNodeType.bind(null,i.COMBINATOR);var u=e.isComment=isNodeType.bind(null,i.COMMENT);var f=e.isIdentifier=isNodeType.bind(null,i.ID);var l=e.isNesting=isNodeType.bind(null,i.NESTING);var c=e.isPseudo=isNodeType.bind(null,i.PSEUDO);var p=e.isRoot=isNodeType.bind(null,i.ROOT);var A=e.isSelector=isNodeType.bind(null,i.SELECTOR);var d=e.isString=isNodeType.bind(null,i.STRING);var h=e.isTag=isNodeType.bind(null,i.TAG);var E=e.isUniversal=isNodeType.bind(null,i.UNIVERSAL);function isPseudoElement(B){return c(B)&&B.value&&(B.value.startsWith("::")||B.value===":before"||B.value===":after")}function isPseudoClass(B){return c(B)&&!isPseudoElement(B)}function isContainer(B){return!!(isNode(B)&&B.walk)}function isNamespace(B){return a(B)||o(B)||h(B)}},7048:function(B,e,r){"use strict";e.__esModule=true;e.default=void 0;var t=_interopRequireDefault(r(3583));var n=r(8019);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _inheritsLoose(B,e){B.prototype=Object.create(e.prototype);B.prototype.constructor=B;B.__proto__=e}var i=function(B){_inheritsLoose(Comment,B);function Comment(e){var r;r=B.call(this,e)||this;r.type=n.COMMENT;return r}return Comment}(t.default);e.default=i;B.exports=e.default},7053:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB hB",33:"G"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H cB dB eB fB XB R U jB kB",2:"0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB",132:"U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{1:"PC"},R:{1:"QC"},S:{2:"RC"}},B:4,C:"CSS resize property"}},7054:function(B){B.exports={A:{A:{1:"I D F E A B",16:"iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB",16:"sB"},D:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",16:"G W I D F E A B C N H"},E:{1:"W I D F E A B C N H cB dB eB fB XB R U jB kB",16:"G 0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T R VB qB U",16:"E lB mB nB oB"},G:{1:"F rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB"},H:{1:"AC"},I:{1:"KB G Q DC EC IB FC GC",16:"BC CC"},J:{1:"D A"},K:{1:"C O U",16:"A B R VB"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:5,C:"document.elementFromPoint()"}},7056:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s"},E:{1:"E A B C N H fB XB R U jB kB",2:"G W I D F 0B YB cB dB eB"},F:{1:"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f lB mB nB oB R VB qB U"},G:{1:"xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{1:"PC"},R:{1:"QC"},S:{2:"RC"}},B:5,C:"Media Queries: interaction media features"}},7059:function(B,e){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var r=B=>~B.value.search(/var\s*\(\s*--/i);e.default=r;B.exports=e.default},7062:function(B){B.exports={A:{A:{2:"I D F E iB",8:"A B"},B:{1:"y BB Q WB S",578:"C N H P J K L"},C:{1:"4 5 6 7 8 9 L X Y Z a b c AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB hB",4:"G W I D F E A B C N H P J K",194:"0 1 2 3 d e f g h i j k l m n o p q r s t u v w x O z"},D:{1:"0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"B C O R VB U",2:"A"},L:{1:"S"},M:{1:"M"},N:{8:"A",260:"B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{2:"RC"}},B:2,C:"Touch events"}},7085:function(B,e){"use strict";e.__esModule=true;e.default=unesc;var r="[\\x20\\t\\r\\n\\f]";var t=new RegExp("\\\\([\\da-f]{1,6}"+r+"?|("+r+")|.)","ig");function unesc(B){return B.replace(t,function(B,e,r){var t="0x"+e-65536;return t!==t||r?e:t<0?String.fromCharCode(t+65536):String.fromCharCode(t>>10|55296,t&1023|56320)})}B.exports=e.default},7088:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H",4097:"J K L",4290:"P"},C:{1:"CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 1 2 3 4 5 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB",322:"6 7 8 9 AB LB"},D:{1:"JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB",194:"CB"},E:{1:"B C N H R U jB kB",2:"G W I D F E A 0B YB cB dB eB fB",3076:"XB"},F:{1:"0 1 2 3 4 5 6 7 8 9 AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O lB mB nB oB R VB qB U",194:"z"},G:{1:"1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB",3076:"ZB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"LC MC XB NC OC",2:"G IC JC KC"},Q:{1:"PC"},R:{2:"QC"},S:{2:"RC"}},B:1,C:"JavaScript modules via script tag"}},7104:function(B){B.exports={A:{A:{1:"A B",2:"I D F E iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G"},E:{1:"I D F E A B C N H dB eB fB XB R U jB kB",2:"G 0B YB",4:"W cB"},F:{1:"0 1 2 3 4 5 6 7 8 9 C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T VB qB U",2:"E B lB mB nB oB R"},G:{1:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB",4:"IB"},H:{2:"AC"},I:{1:"Q CC DC IB FC GC",2:"KB G BC EC"},J:{1:"D A"},K:{1:"C O R VB U",2:"A B"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"Session history management"}},7129:function(B,e,r){"use strict";e.__esModule=true;var t=r(5812);var n=_interopRequireDefault(t);var i=r(5544);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _classCallCheck(B,e){if(!(B instanceof e)){throw new TypeError("Cannot call a class as a function")}}function _possibleConstructorReturn(B,e){if(!B){throw new ReferenceError("this hasn't been initialised - super() hasn't been called")}return e&&(typeof e==="object"||typeof e==="function")?e:B}function _inherits(B,e){if(typeof e!=="function"&&e!==null){throw new TypeError("Super expression must either be null or a function, not "+typeof e)}B.prototype=Object.create(e&&e.prototype,{constructor:{value:B,enumerable:false,writable:true,configurable:true}});if(e)Object.setPrototypeOf?Object.setPrototypeOf(B,e):B.__proto__=e}var C=function(B){_inherits(Combinator,B);function Combinator(e){_classCallCheck(this,Combinator);var r=_possibleConstructorReturn(this,B.call(this,e));r.type=i.COMBINATOR;return r}return Combinator}(n.default);e.default=C;B.exports=e["default"]},7130:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});var t=e.features=r(6826)},7138:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=getValue;var t=r(6486);function getValue(B){return(0,t.stringify)({nodes:B.reduce((e,r,t)=>{r.forEach((n,i)=>{if(i===r.length-1&&t===B.length-1&&n.type==="space"){return}e.push(n)});if(t!==B.length-1){e[e.length-1].type="div";e[e.length-1].value=","}return e},[])})}B.exports=e.default},7139:function(B){B.exports={A:{A:{2:"I D F E A iB",130:"B"},B:{16:"C N",260:"H P",1028:"y BB Q WB S",5124:"J K L"},C:{2:"0 1 2 3 4 5 6 7 8 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB",6148:"HB DB V M T MB NB OB PB QB RB SB TB UB y BB",6722:"9 AB LB CB JB EB FB GB"},D:{2:"0 1 2 3 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",260:"4 5 6 7 8 9 AB",1028:"LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E 0B YB cB dB eB fB",3076:"A B C N H XB R U jB kB"},F:{2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q lB mB nB oB R VB qB U",260:"r s t u v w x",1028:"0 1 2 3 4 5 6 7 8 9 O z AB CB EB FB GB HB DB V M T"},G:{2:"F YB rB IB tB uB vB wB xB yB",16:"zB",1028:"ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G BC CC DC EC IB FC GC",260:"Q"},J:{2:"D A"},K:{2:"A B C R VB U",1028:"O"},L:{1028:"S"},M:{2626:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC",1028:"KC LC MC XB NC OC"},Q:{1028:"PC"},R:{2:"QC"},S:{2:"RC"}},B:1,C:"Streams"}},7157:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB",2:"LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:6,C:"SDCH Accept-Encoding/Content-Encoding"}},7173:function(B){B.exports={A:{A:{8:"I D F E A B iB"},B:{1:"H P J K L y BB Q WB S",2:"C N"},C:{1:"0 1 2 3 4 5 6 7 8 9 z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",8:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O pB hB"},D:{1:"6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",8:"0 1 2 3 4 5 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},E:{1:"B C N H XB R U jB kB",8:"G W I D F E A 0B YB cB dB eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 t u v w x O z AB CB EB FB GB HB DB V M T",8:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s lB mB nB oB R VB qB U"},G:{1:"ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",8:"F YB rB IB tB uB vB wB xB yB zB"},H:{8:"AC"},I:{1:"Q",8:"KB G BC CC DC EC IB FC GC"},J:{8:"D A"},K:{1:"O",8:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{8:"A B"},O:{1:"HC"},P:{1:"JC KC LC MC XB NC OC",8:"G IC"},Q:{1:"PC"},R:{8:"QC"},S:{1:"RC"}},B:6,C:"Object.values method"}},7179:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:7,C:"Trusted Types for DOM manipulation"}},7189:function(B){B.exports={A:{A:{2:"I D F E iB",8:"A B"},B:{1:"y",2:"BB Q WB S",8:"C N H P J K L"},C:{2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h pB hB",8:"8 9 i j AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",72:"0 1 2 3 4 5 6 7 k l m n o p q r s t u v w x O z"},D:{1:"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h BB Q WB S gB bB aB",66:"i j k l m",72:"n"},E:{2:"G W 0B YB cB",8:"I D F E A B C N H dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB",2:"E B C P J V M T lB mB nB oB R VB qB U",66:"K L X Y Z",72:"a"},G:{2:"YB rB IB tB uB",8:"F vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{2:"S"},M:{8:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:5,C:"HTML Imports"}},7190:function(B){B.exports={A:{A:{2:"I D F E iB",900:"A B"},B:{1:"K L y BB Q WB S",388:"H P J",900:"C N"},C:{1:"3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB hB",260:"1 2",388:"0 h i j k l m n o p q r s t u v w x O z",900:"G W I D F E A B C N H P J K L X Y Z a b c d e f g"},D:{1:"0 1 2 3 4 5 6 7 8 9 s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",16:"G W I D F E A B C N H",388:"d e f g h i j k l m n o p q r",900:"P J K L X Y Z a b c"},E:{1:"A B C N H XB R U jB kB",16:"G W 0B YB",388:"F E eB fB",900:"I D cB dB"},F:{1:"0 1 2 3 4 5 6 7 8 9 f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",16:"E B lB mB nB oB R VB",388:"P J K L X Y Z a b c d e",900:"C qB U"},G:{1:"zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB rB IB",388:"F vB wB xB yB",900:"tB uB"},H:{2:"AC"},I:{1:"Q",16:"KB BC CC DC",388:"FC GC",900:"G EC IB"},J:{16:"D",388:"A"},K:{1:"O",16:"A B R VB",900:"C U"},L:{1:"S"},M:{1:"M"},N:{900:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{388:"RC"}},B:1,C:"Constraint Validation API"}},7200:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 1 2 3 4 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB",194:"5 6"},D:{1:"0 1 2 3 4 5 6 7 8 9 z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{1:"PC"},R:{1:"QC"},S:{2:"RC"}},B:5,C:"requestIdleCallback"}},7216:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"T MB NB OB PB QB RB SB TB UB y BB",2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M pB hB"},D:{1:"1 2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},E:{1:"B C N H R U jB kB",2:"G W I D F E A 0B YB cB dB eB fB XB"},F:{1:"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n lB mB nB oB R VB qB U"},G:{1:"2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB",16:"1B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{2:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{1:"PC"},R:{2:"QC"},S:{2:"RC"}},B:1,C:"unhandledrejection/rejectionhandled events"}},7219:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"P J K L y BB Q WB S",16:"C N H"},C:{1:"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w"},E:{1:"F E A B C N H eB fB XB R U jB kB",2:"G W I D 0B YB cB dB"},F:{1:"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j lB mB nB oB R VB qB U"},G:{1:"F wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB uB vB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D",16:"A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:6,C:"Array.prototype.find"}},7236:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.contains=contains;e.parseCaniuseData=parseCaniuseData;e.cleanBrowsersList=cleanBrowsersList;var t=r(126);var n=_interopRequireDefault(t);var i=r(9854);var C=_interopRequireDefault(i);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function contains(B,e){return!!~B.indexOf(e)}function parseCaniuseData(B,e){var r={};var t;var n;e.forEach(function(e){r[e]={};for(var i in B.stats[e]){t=B.stats[e][i].replace(/#\d+/,"").trim().split(" ");i=parseFloat(i.split("-")[0]);if(isNaN(i))continue;for(var C=0;C<t.length;C++){n=t[C];if(n==="d"){continue}else if(n==="y"){if(typeof r[e][n]==="undefined"||i<r[e][n]){r[e][n]=i}}else{if(typeof r[e][n]==="undefined"||i>r[e][n]){r[e][n]=i}}}}});return r}function cleanBrowsersList(B){return(0,n.default)((0,C.default)(B).map(function(B){return B.split(" ")[0]}))}},7246:function(B,e,r){"use strict";const t=r(6293);function isRGB(B){return t({exact:true}).test(B)}B.exports=isRGB},7250:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(2043));var n=_interopRequireDefault(r(8791));var i=r(1106);var C=r(2453);var o=r(9920);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}var a=(0,n.default)([i.IE_6],[o.DECL],function(B){const{before:e}=B.raws;if(e&&~e.indexOf("_")){this.push(B,{identifier:C.PROPERTY,hack:`${e.trim()}${B.prop}`})}if(B.prop[0]==="-"&&B.prop[1]!=="-"&&t.default.vendor.prefix(B.prop)===""){this.push(B,{identifier:C.PROPERTY,hack:B.prop})}});e.default=a;B.exports=e.default},7252:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P pB hB",132:"J K L X Y Z a b c",260:"d e f g h i",516:"j"},D:{1:"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L",1028:"X Y Z a b c d e f g h i j k l"},E:{1:"E A B C N H fB XB R U jB kB",2:"G W I D F 0B YB cB dB eB"},F:{1:"0 1 2 3 4 5 6 7 8 9 Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U",1028:"P J K L X Y"},G:{1:"xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC",1028:"EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:6,C:"ES6 Number"}},7286:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"N H P J K L y BB Q WB S",2:"C"},C:{1:"UB y BB",16:"sB",33:"0 1 2 3 4 5 6 7 8 9 KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",16:"G W I D F E A B C N H",132:"P J K L X Y Z a b c d e f g h i j k l m n"},E:{1:"E A B C N H fB XB R U jB kB",16:"0B YB",132:"G W I D F cB dB eB"},F:{1:"0 1 2 3 4 5 6 7 8 9 b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",16:"E B lB mB nB oB R",132:"C P J K L X Y Z a VB qB U"},G:{1:"xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB rB",132:"F IB tB uB vB wB"},H:{2:"AC"},I:{1:"Q",16:"BC CC",132:"KB G DC EC IB FC GC"},J:{1:"A",132:"D"},K:{1:"O",2:"A B R",132:"C VB U"},L:{1:"S"},M:{33:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{33:"RC"}},B:1,C:"CSS :read-only and :read-write selectors"}},7293:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"P J K L y BB Q WB S",2:"C N",194:"H"},C:{1:"4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 1 2 3 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB"},D:{1:"7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},E:{1:"B C N H R U jB kB",2:"G W I D F E A 0B YB cB dB eB fB",514:"XB"},F:{1:"0 1 2 3 4 5 6 7 8 9 u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t lB mB nB oB R VB qB U"},G:{1:"1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB",514:"ZB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"JC KC LC MC XB NC OC",2:"G IC"},Q:{1:"PC"},R:{2:"QC"},S:{2:"RC"}},B:6,C:"Async functions"}},7300:function(B){B.exports={A:{A:{1:"E A B",2:"I D F iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{1:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"DOMContentLoaded"}},7314:function(B){B.exports={A:{A:{2:"I D F iB",388:"E A B"},B:{4:"y BB Q WB S",260:"C N H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB",2:"sB",4:"KB"},D:{4:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"0B YB",4:"G W I D F E A B C N H cB dB eB fB XB R U jB kB"},F:{4:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{4:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G BC CC DC EC IB",4:"Q FC GC"},J:{1:"A",2:"D"},K:{4:"A B C O R VB U"},L:{4:"S"},M:{1:"M"},N:{2:"A B"},O:{2:"HC"},P:{4:"G IC JC KC LC MC XB NC OC"},Q:{4:"PC"},R:{4:"QC"},S:{1:"RC"}},B:2,C:"SVG effects for HTML"}},7329:function(B,e,r){"use strict";const t=r(335);function isCSSColorName(B){return!!t[B]}B.exports=isCSSColorName},7333:function(B){B.exports={A:{A:{1:"A B",2:"iB",8:"I D F E"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB",8:"sB KB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H cB dB eB fB XB R U jB kB",8:"0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T oB R VB qB U",2:"E lB",8:"mB nB"},G:{1:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB"},H:{2:"AC"},I:{1:"Q BC FC GC",2:"KB G CC DC EC IB"},J:{1:"D A"},K:{1:"B C O R VB U",8:"A"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"Web Workers"}},7341:function(B){B.exports={A:{A:{1:"E A B",2:"I D F iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H cB dB eB fB XB R U jB kB",16:"0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"F IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB rB"},H:{1:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:2,C:"CSS namespaces"}},7351:function(B,e){"use strict";e.__esModule=true;e.default=stripComments;function stripComments(B){var e="";var r=B.indexOf("/*");var t=0;while(r>=0){e=e+B.slice(t,r);var n=B.indexOf("*/",r+2);if(n<0){return e}t=n+2;r=B.indexOf("/*",t)}e=e+B.slice(t);return e}B.exports=e.default},7361:function(B){B.exports={A:{A:{1:"E A B",2:"I D iB",260:"F"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB",2:"sB KB",516:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s"},D:{1:"0 1 2 3 4 5 6 7 8 9 H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N"},E:{1:"W I D F E A B C N H cB dB eB fB XB R U jB kB",2:"G 0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB",4:"U"},G:{1:"F IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB rB"},H:{2:"AC"},I:{1:"KB G Q DC EC IB FC GC",16:"BC CC"},J:{1:"A",132:"D"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"Online/offline status"}},7383:function(B,e,r){"use strict";e.__esModule=true;e.default=void 0;var t=_interopRequireDefault(r(3398));var n=r(699);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _inheritsLoose(B,e){B.prototype=Object.create(e.prototype);B.prototype.constructor=B;B.__proto__=e}var i=function(B){_inheritsLoose(Universal,B);function Universal(e){var r;r=B.call(this,e)||this;r.type=n.UNIVERSAL;r.value="*";return r}return Universal}(t.default);e.default=i;B.exports=e.default},7444:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=r(2043);var n=_interopRequireDefault(r(3393));var i=_interopRequireDefault(r(5804));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}const{space:C}=t.list;var o=(0,t.plugin)("postcss-discard-comments",(B={})=>{const e=new n.default(B);const r={};const t={};function matchesComments(B){if(r[B]){return r[B]}const e=(0,i.default)(B).filter(([B])=>B);r[B]=e;return e}function replaceComments(B,r=" "){const n=B+"@|@"+r;if(t[n]){return t[n]}const o=(0,i.default)(B).reduce((t,[n,i,C])=>{const o=B.slice(i,C);if(!n){return t+o}if(e.canRemove(o)){return t+r}return`${t}/*${o}*/`},"");const a=C(o).join(" ");t[n]=a;return a}return B=>{B.walk(B=>{if(B.type==="comment"&&e.canRemove(B.text)){B.remove();return}if(B.raws.between){B.raws.between=replaceComments(B.raws.between)}if(B.type==="decl"){if(B.raws.value&&B.raws.value.raw){if(B.raws.value.value===B.value){B.value=replaceComments(B.raws.value.raw)}else{B.value=replaceComments(B.value)}B.raws.value=null}if(B.raws.important){B.raws.important=replaceComments(B.raws.important);const e=matchesComments(B.raws.important);B.raws.important=e.length?B.raws.important:"!important"}return}if(B.type==="rule"&&B.raws.selector&&B.raws.selector.raw){B.raws.selector.raw=replaceComments(B.raws.selector.raw,"");return}if(B.type==="atrule"){if(B.raws.afterName){const e=replaceComments(B.raws.afterName);if(!e.length){B.raws.afterName=e+" "}else{B.raws.afterName=" "+e+" "}}if(B.raws.params&&B.raws.params.raw){B.raws.params.raw=replaceComments(B.raws.params.raw)}}})}});e.default=o;B.exports=e.default},7451:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB pB hB",194:"DB"},D:{1:"FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB"},E:{1:"C N H R U jB kB",2:"G W I D F E A B 0B YB cB dB eB fB XB"},F:{1:"2 3 4 5 6 7 8 9 AB CB EB FB GB HB DB V M T",2:"0 1 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z lB mB nB oB R VB qB U"},G:{1:"1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"LC MC XB NC OC",2:"G IC JC KC"},Q:{1:"PC"},R:{2:"QC"},S:{2:"RC"}},B:6,C:"JavaScript modules: dynamic import()"}},7458:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB pB hB"},D:{1:"8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{2:"PC"},R:{1:"QC"},S:{2:"RC"}},B:5,C:"CSS overflow-anchor (Scroll Anchoring)"}},7460:function(B){B.exports={A:{A:{2:"I D F iB",4:"E A B"},B:{1:"K L y BB Q WB S",4:"C N H P J"},C:{1:"0 1 2 3 4 5 6 7 8 9 w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n pB hB",194:"o p q r s t u v"},D:{1:"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",4:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n"},E:{1:"A B C N H XB R U jB kB",4:"G W I D F E 0B YB cB dB eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U",4:"P J K L X Y Z a"},G:{1:"zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",4:"F YB rB IB tB uB vB wB xB yB"},H:{2:"AC"},I:{1:"Q",4:"KB G BC CC DC EC IB FC GC"},J:{2:"D",4:"A"},K:{2:"A B C R VB U",4:"O"},L:{1:"S"},M:{1:"M"},N:{4:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",4:"G"},Q:{1:"PC"},R:{2:"QC"},S:{1:"RC"}},B:4,C:"Font unicode-range subsetting"}},7463:function(B,e,r){"use strict";e.__esModule=true;e.default=void 0;var t=_interopRequireDefault(r(3583));var n=r(8019);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _inheritsLoose(B,e){B.prototype=Object.create(e.prototype);B.prototype.constructor=B;B.__proto__=e}var i=function(B){_inheritsLoose(ID,B);function ID(e){var r;r=B.call(this,e)||this;r.type=n.ID;return r}var e=ID.prototype;e.toString=function toString(){return[this.rawSpaceBefore,String("#"+this.stringifyProperty("value")),this.rawSpaceAfter].join("")};return ID}(t.default);e.default=i;B.exports=e.default},7470:function(B){"use strict";const e="-".charCodeAt(0);const r="+".charCodeAt(0);const t=".".charCodeAt(0);B.exports=function unit(B){let n=0;const i=B.length;let C=false;let o=false;let a;let s="";while(n<i){a=B.charCodeAt(n);if(a>=48&&a<=57){s+=B[n];o=true}else if(a===t){if(C){break}C=true;s+=B[n]}else if(a===r||a===e){if(n!==0){break}s+=B[n]}else{break}n+=1}return o?{number:s,unit:B.slice(n)}:false}},7488:function(B,e,r){"use strict";const t=r(5332);function isRgba(B){return t({exact:true}).test(B)}B.exports=isRgba},7490:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB pB hB"},D:{1:"SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB"},E:{1:"N H U jB kB",2:"G W I D F E A B C 0B YB cB dB eB fB XB R"},F:{1:"EB FB GB HB DB V M T",2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB lB mB nB oB R VB qB U"},G:{1:"5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"OC",2:"G IC JC KC LC MC XB NC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:5,C:"prefers-color-scheme media query"}},7495:function(B){B.exports={A:{A:{1:"I D F E A B",16:"iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",16:"sB KB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",16:"G W I D F E A B C N H P J K L X Y Z a b c d"},E:{1:"I D F E A B C N H cB dB eB fB XB R U jB kB",16:"G W 0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",16:"E lB",132:"B C mB nB oB R VB qB U"},G:{1:"F vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB rB IB tB uB"},H:{1:"AC"},I:{1:"KB G Q DC EC IB FC GC",16:"BC CC"},J:{1:"D A"},K:{1:"O",132:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{257:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"readonly attribute of input and textarea elements"}},7530:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB",2:"sB"},D:{1:"LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB"},E:{1:"F E A B C N H fB XB R U jB kB",2:"G W I D 0B YB cB dB eB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U",2:"E P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x"},G:{1:"F wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB uB vB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"KC LC MC XB NC OC",2:"G IC JC"},Q:{2:"PC"},R:{2:"QC"},S:{1:"RC"}},B:7,C:"Animated PNG (APNG)"}},7550:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"J K L y BB Q WB S",2:"C N H P"},C:{1:"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o"},E:{1:"A B C N H XB R U jB kB",2:"G W I D F E 0B YB cB dB eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b lB mB nB oB R VB qB U"},G:{1:"ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB"},H:{16:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{16:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{16:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{16:"PC"},R:{16:"QC"},S:{1:"RC"}},B:2,C:"Navigator Language API"}},7551:function(B){B.exports={A:{A:{1:"A B",2:"I D F E iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J pB hB",4:"K L X Y Z a b c d e f"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"W I D F E A B C N H cB dB eB fB XB R U jB kB",2:"G 0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U"},G:{1:"F IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB"},H:{2:"AC"},I:{1:"KB G Q CC DC EC IB FC GC",2:"BC"},J:{1:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"sandbox attribute for iframes"}},7556:function(B){B.exports={A:{A:{2:"iB",8:"I D F",260:"E A B"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB",132:"KB pB hB",260:"G W I D F E A B C N H P J K L X Y"},D:{1:"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",132:"G W",260:"I D F E A B C N H P J K L X Y Z a b c d"},E:{1:"D F E A B C N H dB eB fB XB R U jB kB",132:"G 0B YB",260:"W I cB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",132:"E B lB mB nB oB",260:"C R VB qB U"},G:{1:"F vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",132:"YB",260:"rB IB tB uB"},H:{132:"AC"},I:{1:"Q FC GC",132:"BC",260:"KB G CC DC EC IB"},J:{260:"D A"},K:{1:"O",132:"A",260:"B C R VB U"},L:{1:"S"},M:{1:"M"},N:{260:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"HTML5 semantic elements"}},7593:function(B){B.exports={A:{A:{2:"I D F E A iB",132:"B"},B:{1:"N H P J K L y BB Q WB S",16:"C"},C:{1:"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",16:"G W I D F E A B C N H P"},E:{1:"W I D F E A B C N H cB dB eB fB XB R U jB kB",2:"G 0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U"},G:{1:"F rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB"},H:{2:"AC"},I:{1:"KB G Q DC EC IB FC GC",16:"BC CC"},J:{1:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:'Link type "noreferrer"'}},7597:function(B){B.exports={A:{A:{1:"B",2:"I D F E A iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D"},E:{2:"G W I D F E A B C N 0B YB cB dB eB fB XB R U",194:"H jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B",194:"8B 9B"},H:{2:"AC"},I:{1:"G Q FC GC",2:"KB BC CC DC EC IB"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"B",2:"A"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:5,C:"Resource Hints: prefetch"}},7598:function(B,e,r){"use strict";e.__esModule=true;e.default=tokenize;e.FIELDS=void 0;var t=_interopRequireWildcard(r(3854));var n,i;function _interopRequireWildcard(B){if(B&&B.__esModule){return B}else{var e={};if(B!=null){for(var r in B){if(Object.prototype.hasOwnProperty.call(B,r)){var t=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor(B,r):{};if(t.get||t.set){Object.defineProperty(e,r,t)}else{e[r]=B[r]}}}}e.default=B;return e}}var C=(n={},n[t.tab]=true,n[t.newline]=true,n[t.cr]=true,n[t.feed]=true,n);var o=(i={},i[t.space]=true,i[t.tab]=true,i[t.newline]=true,i[t.cr]=true,i[t.feed]=true,i[t.ampersand]=true,i[t.asterisk]=true,i[t.bang]=true,i[t.comma]=true,i[t.colon]=true,i[t.semicolon]=true,i[t.openParenthesis]=true,i[t.closeParenthesis]=true,i[t.openSquare]=true,i[t.closeSquare]=true,i[t.singleQuote]=true,i[t.doubleQuote]=true,i[t.plus]=true,i[t.pipe]=true,i[t.tilde]=true,i[t.greaterThan]=true,i[t.equals]=true,i[t.dollar]=true,i[t.caret]=true,i[t.slash]=true,i);var a={};var s="0123456789abcdefABCDEF";for(var u=0;u<s.length;u++){a[s.charCodeAt(u)]=true}function consumeWord(B,e){var r=e;var n;do{n=B.charCodeAt(r);if(o[n]){return r-1}else if(n===t.backslash){r=consumeEscape(B,r)+1}else{r++}}while(r<B.length);return r-1}function consumeEscape(B,e){var r=e;var n=B.charCodeAt(r+1);if(C[n]){}else if(a[n]){var i=0;do{r++;i++;n=B.charCodeAt(r+1)}while(a[n]&&i<6);if(i<6&&n===t.space){r++}}else{r++}return r}var f={TYPE:0,START_LINE:1,START_COL:2,END_LINE:3,END_COL:4,START_POS:5,END_POS:6};e.FIELDS=f;function tokenize(B){var e=[];var r=B.css.valueOf();var n=r,i=n.length;var C=-1;var o=1;var a=0;var s=0;var u,f,l,c,p,A,d,h,E,D,v,F,G;function unclosed(e,t){if(B.safe){r+=t;E=r.length-1}else{throw B.error("Unclosed "+e,o,a-C,a)}}while(a<i){u=r.charCodeAt(a);if(u===t.newline){C=a;o+=1}switch(u){case t.space:case t.tab:case t.newline:case t.cr:case t.feed:E=a;do{E+=1;u=r.charCodeAt(E);if(u===t.newline){C=E;o+=1}}while(u===t.space||u===t.newline||u===t.tab||u===t.cr||u===t.feed);G=t.space;c=o;l=E-C-1;s=E;break;case t.plus:case t.greaterThan:case t.tilde:case t.pipe:E=a;do{E+=1;u=r.charCodeAt(E)}while(u===t.plus||u===t.greaterThan||u===t.tilde||u===t.pipe);G=t.combinator;c=o;l=a-C;s=E;break;case t.asterisk:case t.ampersand:case t.bang:case t.comma:case t.equals:case t.dollar:case t.caret:case t.openSquare:case t.closeSquare:case t.colon:case t.semicolon:case t.openParenthesis:case t.closeParenthesis:E=a;G=u;c=o;l=a-C;s=E+1;break;case t.singleQuote:case t.doubleQuote:F=u===t.singleQuote?"'":'"';E=a;do{p=false;E=r.indexOf(F,E+1);if(E===-1){unclosed("quote",F)}A=E;while(r.charCodeAt(A-1)===t.backslash){A-=1;p=!p}}while(p);G=t.str;c=o;l=a-C;s=E+1;break;default:if(u===t.slash&&r.charCodeAt(a+1)===t.asterisk){E=r.indexOf("*/",a+2)+1;if(E===0){unclosed("comment","*/")}f=r.slice(a,E+1);h=f.split("\n");d=h.length-1;if(d>0){D=o+d;v=E-h[d].length}else{D=o;v=C}G=t.comment;o=D;c=D;l=E-v}else if(u===t.slash){E=a;G=u;c=o;l=a-C;s=E+1}else{E=consumeWord(r,a);G=t.word;c=o;l=E-C}s=E+1;break}e.push([G,o,a-C,c,l,a,s]);if(v){C=v;v=null}a=s}return e}},7626:function(B){B.exports={A:{A:{2:"I D F iB",132:"E A B"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB",2:"sB KB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T mB nB oB R VB qB U",2:"E lB"},G:{1:"F IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB"},H:{2:"AC"},I:{1:"KB G Q CC DC EC IB FC GC",2:"BC"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{132:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:6,C:"TTF/OTF - TrueType and OpenType font support"}},7644:function(B){B.exports={A:{A:{644:"I D F E iB",772:"A B"},B:{1:"L y BB Q WB S",260:"C N H P J K"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB",8:"sB KB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T U",8:"E B lB mB nB oB R VB qB"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G BC CC DC EC IB FC GC",1025:"Q"},J:{2:"D A"},K:{1:"U",8:"A B C R VB",1025:"O"},L:{1025:"S"},M:{2:"M"},N:{1:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{2:"QC"},S:{2:"RC"}},B:1,C:"Drag and Drop"}},7649:function(B){"use strict";B.exports=function(B){if(typeof B!=="string"){throw new TypeError("Expected a string")}return/^[a-z][a-z0-9+.-]*:/.test(B)}},7687:function(B){B.exports={A:{A:{1:"I D F E A B iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"I D F E A B C N H dB eB fB XB R U jB kB",16:"G W 0B YB cB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T mB nB oB R VB qB U",16:"E lB"},G:{1:"F vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB",16:"IB tB uB"},H:{2:"AC"},I:{1:"Q EC IB FC GC",2:"KB G BC CC DC"},J:{1:"A",2:"D"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"B",2:"A"},O:{2:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:7,C:"Document.execCommand()"}},7696:function(B){B.exports={A:{A:{8:"I D F iB",129:"E A B"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB",2:"sB KB"},D:{1:"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",129:"G W I D F E A B C N H P J K L X Y Z a b c d"},E:{1:"D F E A B C N H dB eB fB XB R U jB kB",129:"G W I cB",388:"0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U",2:"E"},G:{1:"F vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",129:"YB rB IB tB uB"},H:{1:"AC"},I:{1:"Q FC GC",129:"KB G BC CC DC EC IB"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{129:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:2,C:"CSS3 Media Queries"}},7703:function(B){B.exports={A:{A:{1:"A B",2:"I D F E iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB hB",132:"G W",292:"I D F E A"},D:{1:"0 1 2 3 4 5 6 7 8 9 J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",132:"G W I D F E A B C N H",260:"P"},E:{1:"D F E A B C N H eB fB XB R U jB kB",2:"G 0B YB",132:"W cB",260:"I dB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T U",2:"E lB mB nB oB",132:"B C R VB qB"},G:{1:"F uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB",132:"IB tB"},H:{2:"AC"},I:{1:"Q FC GC",2:"KB G BC CC DC EC IB"},J:{1:"A",129:"D"},K:{1:"O U",2:"A",132:"B C R VB"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"Web Sockets"}},7711:function(B){B.exports={A:{A:{2:"I D iB",161:"F E A B"},B:{2:"y BB Q WB S",161:"C N H P J K L"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{16:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:5,C:"CSS Text 4 text-spacing"}},7726:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=getRules;var t=_interopRequireDefault(r(2201));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function getRules(B,e){return e.map(e=>{return(0,t.default)(B,e)}).filter(Boolean)}B.exports=e.default},7727:function(B,e){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=getDecls;function getDecls(B,e){return B.nodes.filter(({prop:B})=>B&&~e.indexOf(B.toLowerCase()))}B.exports=e.default},7733:function(B,e){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default={y:1<<0,n:1<<1,a:1<<2,p:1<<3,u:1<<4,x:1<<5,d:1<<6}},7744:function(B,e,r){"use strict";e.__esModule=true;e.stripComments=e.ensureObject=e.getProp=e.unesc=void 0;var t=_interopRequireDefault(r(7085));e.unesc=t.default;var n=_interopRequireDefault(r(8034));e.getProp=n.default;var i=_interopRequireDefault(r(3807));e.ensureObject=i.default;var C=_interopRequireDefault(r(7351));e.stripComments=C.default;function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}},7767:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=r(2043);var n=_interopRequireDefault(r(454));var i=_interopRequireDefault(r(9854));var C=r(5479);var o=_interopRequireDefault(r(9521));var a=_interopRequireDefault(r(1934));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}const s="initial";var u=(0,t.plugin)("postcss-reduce-initial",()=>{return(B,e)=>{const r=e.opts||{};const t=(0,i.default)(null,{stats:r.stats,path:__dirname,env:r.env});const u=(0,C.isSupported)("css-initial-value",t);B.walkDecls(B=>{const e=B.prop.toLowerCase();if(u&&(0,n.default)(a.default,e)&&B.value.toLowerCase()===a.default[e]){B.value=s;return}if(B.value.toLowerCase()!==s||!o.default[e]){return}B.value=o.default[e]})}});e.default=u;B.exports=e.default},7781:function(B){B.exports={A:{A:{2:"I D F E A iB",164:"B"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m",132:"n o p q r s t"},E:{1:"C N H U jB kB",2:"G W I 0B YB cB dB",164:"D F E A B eB fB XB R"},F:{1:"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z lB mB nB oB R VB qB U",132:"a b c d e f g"},G:{1:"2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{16:"PC"},R:{2:"QC"},S:{1:"RC"}},B:2,C:"Encrypted Media Extensions"}},7795:function(B){B.exports={A:{A:{1:"A B",2:"E iB",8:"I D F"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB",4:"KB",8:"sB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S",2:"gB bB aB"},E:{1:"G W I D F E A B C N H cB dB eB fB XB R U jB kB",8:"0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T oB R VB qB U",2:"E lB",8:"mB nB"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"B C O R VB U",2:"A"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:7,C:"Offline web applications"}},7821:function(B){B.exports={A:{A:{2:"I D F E A iB",388:"B"},B:{257:"y BB Q WB S",260:"C N H",769:"P J K L"},C:{2:"sB KB G W pB hB",4:"0 1 2 3 4 5 I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",257:"6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{2:"G W I D F E A B C N H P J K L X Y",4:"0 1 2 Z a b c d e f g h i j k l m n o p q r s t u v w x O z",257:"3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"A B C N H XB R U jB kB",2:"G W I D 0B YB cB dB",4:"F E eB fB"},F:{2:"E B C lB mB nB oB R VB qB U",4:"P J K L X Y Z a b c d e f g h i j k l m n o p",257:"0 1 2 3 4 5 6 7 8 9 q r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{1:"zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB uB",4:"F vB wB xB yB"},H:{2:"AC"},I:{2:"KB G BC CC DC EC IB",4:"FC GC",257:"Q"},J:{2:"D",4:"A"},K:{2:"A B C R VB U",257:"O"},L:{257:"S"},M:{257:"M"},N:{2:"A",388:"B"},O:{257:"HC"},P:{4:"G",257:"IC JC KC LC MC XB NC OC"},Q:{257:"PC"},R:{4:"QC"},S:{4:"RC"}},B:6,C:"ECMAScript 2015 (ES6)"}},7832:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"J K L y BB Q WB S",2:"C N H P"},C:{1:"1 2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB"},D:{1:"3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},E:{1:"A B C N H XB R U jB kB",2:"G W I D F E 0B YB cB dB eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p lB mB nB oB R VB qB U"},G:{1:"zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:1,C:"Passive event listeners"}},7837:function(B){B.exports=function(B,e){var r=-1,t=[];while((r=B.indexOf(e,r+1))!==-1)t.push(r);return t}},7843:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=defaultPreset;var t=_interopRequireDefault(r(6466));var n=_interopRequireDefault(r(7444));var i=_interopRequireDefault(r(7767));var C=_interopRequireDefault(r(8027));var o=_interopRequireDefault(r(504));var a=_interopRequireDefault(r(5071));var s=_interopRequireDefault(r(9087));var u=_interopRequireDefault(r(8507));var f=_interopRequireDefault(r(2939));var l=_interopRequireDefault(r(552));var c=_interopRequireDefault(r(3706));var p=_interopRequireDefault(r(6729));var A=_interopRequireDefault(r(4682));var d=_interopRequireDefault(r(8406));var h=_interopRequireDefault(r(8636));var E=_interopRequireDefault(r(6986));var D=_interopRequireDefault(r(6630));var v=_interopRequireDefault(r(2818));var F=_interopRequireDefault(r(7932));var G=_interopRequireDefault(r(1930));var O=_interopRequireDefault(r(3334));var M=_interopRequireDefault(r(2543));var g=_interopRequireDefault(r(1565));var I=_interopRequireDefault(r(2188));var H=_interopRequireDefault(r(5538));var L=_interopRequireDefault(r(3821));var m=_interopRequireDefault(r(6049));var y=_interopRequireDefault(r(4566));var N=r(5433);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}const R={convertValues:{length:false},normalizeCharset:{add:false},cssDeclarationSorter:{keepOverrides:true}};function defaultPreset(B={}){const e=Object.assign({},R,B);const r=[[n.default,e.discardComments],[C.default,e.minifyGradients],[i.default,e.reduceInitial],[o.default,e.svgo],[m.default,e.normalizeDisplayValues],[a.default,e.reduceTransforms],[f.default,e.colormin],[y.default,e.normalizeTimingFunctions],[u.default,e.calc],[s.default,e.convertValues],[l.default,e.orderedValues],[c.default,e.minifySelectors],[p.default,e.minifyParams],[A.default,e.normalizeCharset],[v.default,e.discardOverridden],[g.default,e.normalizeString],[L.default,e.normalizeUnicode],[d.default,e.minifyFontValues],[h.default,e.normalizeUrl],[F.default,e.normalizeRepeatStyle],[I.default,e.normalizePositions],[H.default,e.normalizeWhitespace],[E.default,e.mergeLonghand],[D.default,e.discardDuplicates],[G.default,e.mergeRules],[O.default,e.discardEmpty],[M.default,e.uniqueSelectors],[t.default,e.cssDeclarationSorter],[N.rawCache,e.rawCache]];return{plugins:r}}B.exports=e.default},7869:function(B){B.exports={A:{A:{1:"B",2:"I D F E iB",132:"A"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I"},E:{1:"I D F E A B C N H dB eB fB XB R U jB kB",2:"G W 0B YB",260:"cB"},F:{1:"0 1 2 3 4 5 6 7 8 9 C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T qB U",2:"E B lB mB nB oB R VB"},G:{1:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB",260:"IB"},H:{1:"AC"},I:{1:"G Q EC IB FC GC",2:"KB BC CC DC"},J:{1:"A",2:"D"},K:{1:"C O U",2:"A B R VB"},L:{1:"S"},M:{1:"M"},N:{132:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:6,C:"Typed Arrays"}},7887:function(B){B.exports={A:{A:{1:"B",2:"I D F iB",132:"E A"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB hB",2:"sB KB pB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"W I D F E A B C N H cB dB eB fB XB R U jB kB",2:"G 0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T qB U",2:"E B lB mB nB oB R VB"},G:{1:"F rB IB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB",260:"tB"},H:{1:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"C O U",2:"A B R VB"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"rem (root em) units"}},7896:function(B,e){"use strict";e.__esModule=true;e.default=sortAscending;function sortAscending(B){return B.sort(function(B,e){return B-e})}B.exports=e["default"]},7901:function(B,e,r){"use strict";e.__esModule=true;e.default=void 0;var t=_interopRequireDefault(r(9925));var n=r(7744);var i=_interopRequireDefault(r(3583));var C=r(8019);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _defineProperties(B,e){for(var r=0;r<e.length;r++){var t=e[r];t.enumerable=t.enumerable||false;t.configurable=true;if("value"in t)t.writable=true;Object.defineProperty(B,t.key,t)}}function _createClass(B,e,r){if(e)_defineProperties(B.prototype,e);if(r)_defineProperties(B,r);return B}function _inheritsLoose(B,e){B.prototype=Object.create(e.prototype);B.prototype.constructor=B;B.__proto__=e}var o=function(B){_inheritsLoose(ClassName,B);function ClassName(e){var r;r=B.call(this,e)||this;r.type=C.CLASS;r._constructed=true;return r}var e=ClassName.prototype;e.toString=function toString(){return[this.rawSpaceBefore,String("."+this.stringifyProperty("value")),this.rawSpaceAfter].join("")};_createClass(ClassName,[{key:"value",set:function set(B){if(this._constructed){var e=(0,t.default)(B,{isIdentifier:true});if(e!==B){(0,n.ensureObject)(this,"raws");this.raws.value=e}else if(this.raws){delete this.raws.value}}this._value=B},get:function get(){return this._value}}]);return ClassName}(i.default);e.default=o;B.exports=e.default},7910:function(B){B.exports={A:{A:{2:"I D F E iB",164:"A B"},B:{66:"y BB Q WB S",164:"C N H P J K L"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g",66:"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r lB mB nB oB R VB qB U",66:"0 1 2 3 4 5 6 7 8 9 s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{292:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A O",292:"B C R VB U"},L:{2:"S"},M:{2:"M"},N:{164:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{66:"PC"},R:{2:"QC"},S:{2:"RC"}},B:5,C:"CSS Device Adaptation"}},7911:function(B){var e="Expected a function";var r="__lodash_hash_undefined__";var t="[object Function]",n="[object GeneratorFunction]";var i=/[\\^$.*+?()[\]{}|]/g;var C=/^\[object .+?Constructor\]$/;var o=typeof global=="object"&&global&&global.Object===Object&&global;var a=typeof self=="object"&&self&&self.Object===Object&&self;var s=o||a||Function("return this")();function getValue(B,e){return B==null?undefined:B[e]}function isHostObject(B){var e=false;if(B!=null&&typeof B.toString!="function"){try{e=!!(B+"")}catch(B){}}return e}var u=Array.prototype,f=Function.prototype,l=Object.prototype;var c=s["__core-js_shared__"];var p=function(){var B=/[^.]+$/.exec(c&&c.keys&&c.keys.IE_PROTO||"");return B?"Symbol(src)_1."+B:""}();var A=f.toString;var d=l.hasOwnProperty;var h=l.toString;var E=RegExp("^"+A.call(d).replace(i,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");var D=u.splice;var v=getNative(s,"Map"),F=getNative(Object,"create");function Hash(B){var e=-1,r=B?B.length:0;this.clear();while(++e<r){var t=B[e];this.set(t[0],t[1])}}function hashClear(){this.__data__=F?F(null):{}}function hashDelete(B){return this.has(B)&&delete this.__data__[B]}function hashGet(B){var e=this.__data__;if(F){var t=e[B];return t===r?undefined:t}return d.call(e,B)?e[B]:undefined}function hashHas(B){var e=this.__data__;return F?e[B]!==undefined:d.call(e,B)}function hashSet(B,e){var t=this.__data__;t[B]=F&&e===undefined?r:e;return this}Hash.prototype.clear=hashClear;Hash.prototype["delete"]=hashDelete;Hash.prototype.get=hashGet;Hash.prototype.has=hashHas;Hash.prototype.set=hashSet;function ListCache(B){var e=-1,r=B?B.length:0;this.clear();while(++e<r){var t=B[e];this.set(t[0],t[1])}}function listCacheClear(){this.__data__=[]}function listCacheDelete(B){var e=this.__data__,r=assocIndexOf(e,B);if(r<0){return false}var t=e.length-1;if(r==t){e.pop()}else{D.call(e,r,1)}return true}function listCacheGet(B){var e=this.__data__,r=assocIndexOf(e,B);return r<0?undefined:e[r][1]}function listCacheHas(B){return assocIndexOf(this.__data__,B)>-1}function listCacheSet(B,e){var r=this.__data__,t=assocIndexOf(r,B);if(t<0){r.push([B,e])}else{r[t][1]=e}return this}ListCache.prototype.clear=listCacheClear;ListCache.prototype["delete"]=listCacheDelete;ListCache.prototype.get=listCacheGet;ListCache.prototype.has=listCacheHas;ListCache.prototype.set=listCacheSet;function MapCache(B){var e=-1,r=B?B.length:0;this.clear();while(++e<r){var t=B[e];this.set(t[0],t[1])}}function mapCacheClear(){this.__data__={hash:new Hash,map:new(v||ListCache),string:new Hash}}function mapCacheDelete(B){return getMapData(this,B)["delete"](B)}function mapCacheGet(B){return getMapData(this,B).get(B)}function mapCacheHas(B){return getMapData(this,B).has(B)}function mapCacheSet(B,e){getMapData(this,B).set(B,e);return this}MapCache.prototype.clear=mapCacheClear;MapCache.prototype["delete"]=mapCacheDelete;MapCache.prototype.get=mapCacheGet;MapCache.prototype.has=mapCacheHas;MapCache.prototype.set=mapCacheSet;function assocIndexOf(B,e){var r=B.length;while(r--){if(eq(B[r][0],e)){return r}}return-1}function baseIsNative(B){if(!isObject(B)||isMasked(B)){return false}var e=isFunction(B)||isHostObject(B)?E:C;return e.test(toSource(B))}function getMapData(B,e){var r=B.__data__;return isKeyable(e)?r[typeof e=="string"?"string":"hash"]:r.map}function getNative(B,e){var r=getValue(B,e);return baseIsNative(r)?r:undefined}function isKeyable(B){var e=typeof B;return e=="string"||e=="number"||e=="symbol"||e=="boolean"?B!=="__proto__":B===null}function isMasked(B){return!!p&&p in B}function toSource(B){if(B!=null){try{return A.call(B)}catch(B){}try{return B+""}catch(B){}}return""}function memoize(B,r){if(typeof B!="function"||r&&typeof r!="function"){throw new TypeError(e)}var t=function(){var e=arguments,n=r?r.apply(this,e):e[0],i=t.cache;if(i.has(n)){return i.get(n)}var C=B.apply(this,e);t.cache=i.set(n,C);return C};t.cache=new(memoize.Cache||MapCache);return t}memoize.Cache=MapCache;function eq(B,e){return B===e||B!==B&&e!==e}function isFunction(B){var e=isObject(B)?h.call(B):"";return e==t||e==n}function isObject(B){var e=typeof B;return!!B&&(e=="object"||e=="function")}B.exports=memoize},7925:function(B,e,r){"use strict";const t=r(5984);const n=["__proto__","prototype","constructor"];const i=B=>!B.some(B=>n.includes(B));function getPathSegments(B){const e=B.split(".");const r=[];for(let B=0;B<e.length;B++){let t=e[B];while(t[t.length-1]==="\\"&&e[B+1]!==undefined){t=t.slice(0,-1)+".";t+=e[++B]}r.push(t)}if(!i(r)){return[]}return r}B.exports={get(B,e,r){if(!t(B)||typeof e!=="string"){return r===undefined?B:r}const n=getPathSegments(e);if(n.length===0){return}for(let e=0;e<n.length;e++){if(!Object.prototype.propertyIsEnumerable.call(B,n[e])){return r}B=B[n[e]];if(B===undefined||B===null){if(e!==n.length-1){return r}break}}return B},set(B,e,r){if(!t(B)||typeof e!=="string"){return B}const n=B;const i=getPathSegments(e);for(let e=0;e<i.length;e++){const n=i[e];if(!t(B[n])){B[n]={}}if(e===i.length-1){B[n]=r}B=B[n]}return n},delete(B,e){if(!t(B)||typeof e!=="string"){return}const r=getPathSegments(e);for(let e=0;e<r.length;e++){const n=r[e];if(e===r.length-1){delete B[n];return}B=B[n];if(!t(B)){return}}},has(B,e){if(!t(B)||typeof e!=="string"){return false}const r=getPathSegments(e);if(r.length===0){return false}for(let e=0;e<r.length;e++){if(t(B)){if(!(r[e]in B)){return false}B=B[r[e]]}else{return false}}return true}}},7932:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(2043));var n=_interopRequireDefault(r(6486));var i=r(5433);var C=_interopRequireDefault(r(4217));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function evenValues(B,e){return e%2===0}const o=C.default.map(B=>B[0]);const a=(0,i.getMatch)(C.default);function isCommaNode(B){return B.type==="div"&&B.value===","}function isVariableFunctionNode(B){if(B.type!=="function"){return false}return["var","env"].includes(B.value.toLowerCase())}function transform(B){const e=(0,n.default)(B);if(e.nodes.length===1){return B}const r=[];let t=0;let i=true;e.nodes.forEach((B,e)=>{if(isCommaNode(B)){t+=1;i=true;return}if(!i){return}if(B.type==="div"&&B.value==="/"){i=false;return}if(!r[t]){r[t]={start:null,end:null}}if(isVariableFunctionNode(B)){i=false;r[t].start=null;r[t].end=null;return}const n=B.type==="word"&&o.includes(B.value.toLowerCase());if(r[t].start===null&&n){r[t].start=e;r[t].end=e;return}if(r[t].start!==null){if(B.type==="space"){return}else if(n){r[t].end=e;return}return}});r.forEach(B=>{if(B.start===null){return}const r=e.nodes.slice(B.start,B.end+1);if(r.length!==3){return}const t=a(r.filter(evenValues).map(B=>B.value.toLowerCase()));if(t){r[0].value=t;r[1].value=r[2].value=""}});return e.toString()}var s=t.default.plugin("postcss-normalize-repeat-style",()=>{return B=>{const e={};B.walkDecls(/^(background(-repeat)?|(-\w+-)?mask-repeat)$/i,B=>{const r=B.value;if(!r){return}if(e[r]){B.value=e[r];return}const t=transform(r);B.value=t;e[r]=t})}});e.default=s;B.exports=e.default},7950:function(B){"use strict";function unique_pred(B,e){var r=1,t=B.length,n=B[0],i=B[0];for(var C=1;C<t;++C){i=n;n=B[C];if(e(n,i)){if(C===r){r++;continue}B[r++]=n}}B.length=r;return B}function unique_eq(B){var e=1,r=B.length,t=B[0],n=B[0];for(var i=1;i<r;++i,n=t){n=t;t=B[i];if(t!==n){if(i===e){e++;continue}B[e++]=t}}B.length=e;return B}function unique(B,e,r){if(B.length===0){return B}if(e){if(!r){B.sort(e)}return unique_pred(B,e)}if(!r){B.sort()}return unique_eq(B)}B.exports=unique},7980:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"S",2:"C N H P J K L y BB Q WB"},C:{1:"FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB pB hB"},D:{1:"S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:5,C:"gap property for Flexbox"}},7987:function(B){B.exports={A:{A:{132:"I D F E A B iB"},B:{1:"y BB Q WB S",132:"C N H P J K L"},C:{1:"2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",33:"0 1 K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",132:"sB KB G W I D F E pB hB",292:"A B C N H P J"},D:{1:"0 1 2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",132:"G W I D F E A B C N H P J",548:"K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},E:{132:"G W I D F 0B YB cB dB eB",548:"E A B C N H fB XB R U jB kB"},F:{132:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{132:"F YB rB IB tB uB vB wB",548:"xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{16:"AC"},I:{1:"Q",16:"KB G BC CC DC EC IB FC GC"},J:{16:"D A"},K:{16:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{132:"A B"},O:{16:"HC"},P:{1:"IC JC KC LC MC XB NC OC",16:"G"},Q:{16:"PC"},R:{16:"QC"},S:{33:"RC"}},B:4,C:"CSS unicode-bidi property"}},7994:function(B){B.exports={A:{A:{2:"I D F E iB",8:"A B"},B:{1:"y",2:"BB Q WB S",8:"C N H P J K L"},C:{2:"sB KB G W I D F E A B C N H P J K L X Y Z a LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB",66:"b c d e f g h",72:"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x O z AB"},D:{1:"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y",2:"G W I D F E A B C N H P J K L X Y Z a b c d e BB Q WB S gB bB aB",66:"f g h i j k"},E:{2:"G W 0B YB cB",8:"I D F E A B C N H dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB",2:"E B C V M T lB mB nB oB R VB qB U",66:"P J K L X"},G:{2:"YB rB IB tB uB",8:"F vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"GC",2:"KB G Q BC CC DC EC IB FC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{72:"RC"}},B:7,C:"Custom Elements (deprecated V0 spec)"}},7996:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:7,C:"Public class fields"}},8009:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L y BB",257:"Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d pB hB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",257:"Q WB S gB bB aB"},E:{1:"H kB",2:"G W I D F E A B C N 0B YB cB dB eB fB XB R U jB"},F:{1:"M T",2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V lB mB nB oB R VB qB U"},G:{1:"9B",132:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{1:"RC"}},B:4,C:"CSS3 image-orientation"}},8019:function(B,e){"use strict";e.__esModule=true;e.UNIVERSAL=e.ATTRIBUTE=e.CLASS=e.COMBINATOR=e.COMMENT=e.ID=e.NESTING=e.PSEUDO=e.ROOT=e.SELECTOR=e.STRING=e.TAG=void 0;var r="tag";e.TAG=r;var t="string";e.STRING=t;var n="selector";e.SELECTOR=n;var i="root";e.ROOT=i;var C="pseudo";e.PSEUDO=C;var o="nesting";e.NESTING=o;var a="id";e.ID=a;var s="comment";e.COMMENT=s;var u="combinator";e.COMBINATOR=u;var f="class";e.CLASS=f;var l="attribute";e.ATTRIBUTE=l;var c="universal";e.UNIVERSAL=c},8027:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(2043));var n=_interopRequireWildcard(r(6486));var i=r(5433);var C=_interopRequireDefault(r(3594));function _getRequireWildcardCache(){if(typeof WeakMap!=="function")return null;var B=new WeakMap;_getRequireWildcardCache=function(){return B};return B}function _interopRequireWildcard(B){if(B&&B.__esModule){return B}if(B===null||typeof B!=="object"&&typeof B!=="function"){return{default:B}}var e=_getRequireWildcardCache();if(e&&e.has(B)){return e.get(B)}var r={};var t=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var n in B){if(Object.prototype.hasOwnProperty.call(B,n)){var i=t?Object.getOwnPropertyDescriptor(B,n):null;if(i&&(i.get||i.set)){Object.defineProperty(r,n,i)}else{r[n]=B[n]}}}r.default=B;if(e){e.set(B,r)}return r}function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}const o={top:"0deg",right:"90deg",bottom:"180deg",left:"270deg"};function isLessThan(B,e){return B.unit.toLowerCase()===e.unit.toLowerCase()&&parseFloat(B.number)>=parseFloat(e.number)}function optimise(B){const e=B.value;if(!e){return}const r=e.toLowerCase();if(r.includes("var(")||r.includes("env(")){return}if(!r.includes("gradient")){return}B.value=(0,n.default)(e).walk(B=>{if(B.type!=="function"||!B.nodes.length){return false}const e=B.value.toLowerCase();if(e==="linear-gradient"||e==="repeating-linear-gradient"||e==="-webkit-linear-gradient"||e==="-webkit-repeating-linear-gradient"){let e=(0,i.getArguments)(B);if(B.nodes[0].value.toLowerCase()==="to"&&e[0].length===3){B.nodes=B.nodes.slice(2);B.nodes[0].value=o[B.nodes[0].value.toLowerCase()]}let r=null;e.forEach((B,t)=>{if(!B[2]){return}let i=t===e.length-1;let C=(0,n.unit)(B[2].value);if(r===null){r=C;if(!i&&r&&r.number==="0"&&r.unit.toLowerCase()!=="deg"){B[1].value=B[2].value=""}return}if(r&&C&&isLessThan(r,C)){B[2].value=0}r=C;if(i&&B[2].value==="100%"){B[1].value=B[2].value=""}});return false}if(e==="radial-gradient"||e==="repeating-radial-gradient"){let e=(0,i.getArguments)(B);let r;const t=e[0].find(B=>B.value.toLowerCase()==="at");e.forEach((B,e)=>{if(!B[2]||!e&&t){return}let i=(0,n.unit)(B[2].value);if(!r){r=i;return}if(r&&i&&isLessThan(r,i)){B[2].value=0}r=i});return false}if(e==="-webkit-radial-gradient"||e==="-webkit-repeating-radial-gradient"){let e=(0,i.getArguments)(B);let r;e.forEach(B=>{let e;let t;if(B[2]!==undefined){if(B[0].type==="function"){e=`${B[0].value}(${(0,n.stringify)(B[0].nodes)})`}else{e=B[0].value}if(B[2].type==="function"){t=`${B[2].value}(${(0,n.stringify)(B[2].nodes)})`}else{t=B[2].value}}else{if(B[0].type==="function"){e=`${B[0].value}(${(0,n.stringify)(B[0].nodes)})`}e=B[0].value}e=e.toLowerCase();const i=t||t===0?(0,C.default)(e,t.toLowerCase()):(0,C.default)(e);if(!i||!B[2]){return}let o=(0,n.unit)(B[2].value);if(!r){r=o;return}if(r&&o&&isLessThan(r,o)){B[2].value=0}r=o});return false}}).toString()}var a=t.default.plugin("postcss-minify-gradients",()=>{return B=>B.walkDecls(optimise)});e.default=a;B.exports=e.default},8034:function(B,e){"use strict";e.__esModule=true;e.default=getProp;function getProp(B){for(var e=arguments.length,r=new Array(e>1?e-1:0),t=1;t<e;t++){r[t-1]=arguments[t]}while(r.length>0){var n=r.shift();if(!B[n]){return undefined}B=B[n]}return B}B.exports=e.default},8040:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"K L y BB Q WB S",2:"C N H P J"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB",2:"sB KB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T nB oB R VB qB U",2:"E lB mB"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"KB G Q DC EC IB FC GC",16:"BC CC"},J:{1:"A",2:"D"},K:{1:"B C O R VB U",2:"A"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:6,C:"Ogg Vorbis audio format"}},8069:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J",33:"y BB Q WB S",129:"K L"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V pB hB",33:"M T MB NB OB PB QB RB SB TB UB y BB"},D:{16:"G W I D F E A B C N",33:"0 1 2 3 4 5 6 7 8 9 H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G 0B YB",33:"W I D F E A B C N H cB dB eB fB XB R U jB kB"},F:{2:"E B C lB mB nB oB R VB qB U",33:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{2:"YB rB IB",33:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{16:"BC CC",33:"KB G Q DC EC IB FC GC"},J:{33:"D A"},K:{2:"A B C R VB U",33:"O"},L:{33:"S"},M:{33:"M"},N:{2:"A B"},O:{33:"HC"},P:{33:"G IC JC KC LC MC XB NC OC"},Q:{33:"PC"},R:{33:"QC"},S:{2:"RC"}},B:7,C:"CSS line-clamp"}},8092:function(B,e,r){"use strict";e.__esModule=true;e.default=void 0;var t=r(8273);function _defineProperties(B,e){for(var r=0;r<e.length;r++){var t=e[r];t.enumerable=t.enumerable||false;t.configurable=true;if("value"in t)t.writable=true;Object.defineProperty(B,t.key,t)}}function _createClass(B,e,r){if(e)_defineProperties(B.prototype,e);if(r)_defineProperties(B,r);return B}var n=function cloneNode(B,e){if(typeof B!=="object"||B===null){return B}var r=new B.constructor;for(var t in B){if(!B.hasOwnProperty(t)){continue}var n=B[t];var i=typeof n;if(t==="parent"&&i==="object"){if(e){r[t]=e}}else if(n instanceof Array){r[t]=n.map(function(B){return cloneNode(B,r)})}else{r[t]=cloneNode(n,r)}}return r};var i=function(){function Node(B){if(B===void 0){B={}}Object.assign(this,B);this.spaces=this.spaces||{};this.spaces.before=this.spaces.before||"";this.spaces.after=this.spaces.after||""}var B=Node.prototype;B.remove=function remove(){if(this.parent){this.parent.removeChild(this)}this.parent=undefined;return this};B.replaceWith=function replaceWith(){if(this.parent){for(var B in arguments){this.parent.insertBefore(this,arguments[B])}this.remove()}return this};B.next=function next(){return this.parent.at(this.parent.index(this)+1)};B.prev=function prev(){return this.parent.at(this.parent.index(this)-1)};B.clone=function clone(B){if(B===void 0){B={}}var e=n(this);for(var r in B){e[r]=B[r]}return e};B.appendToPropertyAndEscape=function appendToPropertyAndEscape(B,e,r){if(!this.raws){this.raws={}}var t=this[B];var n=this.raws[B];this[B]=t+e;if(n||r!==e){this.raws[B]=(n||t)+r}else{delete this.raws[B]}};B.setPropertyAndEscape=function setPropertyAndEscape(B,e,r){if(!this.raws){this.raws={}}this[B]=e;this.raws[B]=r};B.setPropertyWithoutEscape=function setPropertyWithoutEscape(B,e){this[B]=e;if(this.raws){delete this.raws[B]}};B.isAtPosition=function isAtPosition(B,e){if(this.source&&this.source.start&&this.source.end){if(this.source.start.line>B){return false}if(this.source.end.line<B){return false}if(this.source.start.line===B&&this.source.start.column>e){return false}if(this.source.end.line===B&&this.source.end.column<e){return false}return true}return undefined};B.stringifyProperty=function stringifyProperty(B){return this.raws&&this.raws[B]||this[B]};B.toString=function toString(){return[this.rawSpaceBefore,String(this.stringifyProperty("value")),this.rawSpaceAfter].join("")};_createClass(Node,[{key:"rawSpaceBefore",get:function get(){var B=this.raws&&this.raws.spaces&&this.raws.spaces.before;if(B===undefined){B=this.spaces&&this.spaces.before}return B||""},set:function set(B){(0,t.ensureObject)(this,"raws","spaces");this.raws.spaces.before=B}},{key:"rawSpaceAfter",get:function get(){var B=this.raws&&this.raws.spaces&&this.raws.spaces.after;if(B===undefined){B=this.spaces.after}return B||""},set:function set(B){(0,t.ensureObject)(this,"raws","spaces");this.raws.spaces.after=B}}]);return Node}();e.default=i;B.exports=e.default},8093:function(B){function BrowserslistError(B){this.name="BrowserslistError";this.message=B;this.browserslist=true;if(Error.captureStackTrace){Error.captureStackTrace(this,BrowserslistError)}}BrowserslistError.prototype=Error.prototype;B.exports=BrowserslistError},8097:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L",2052:"y BB Q WB S"},C:{2:"sB KB G W pB hB",1028:"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",1060:"I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n"},D:{2:"G W I D F E A B C N H P J K L X Y Z a b c d",226:"0 1 2 3 4 5 6 7 8 e f g h i j k l m n o p q r s t u v w x O z",2052:"9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D 0B YB cB dB",772:"N H U jB kB",804:"F E A B C fB XB R",1316:"eB"},F:{2:"E B C P J K L X Y Z a b c d e f g h i j k l m lB mB nB oB R VB qB U",226:"n o p q r s t u v",2052:"0 1 2 3 4 5 6 7 8 9 w x O z AB CB EB FB GB HB DB V M T"},G:{2:"YB rB IB tB uB vB",292:"F wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C R VB U",2052:"O"},L:{2052:"S"},M:{1:"M"},N:{2:"A B"},O:{2052:"HC"},P:{2:"G IC JC",2052:"KC LC MC XB NC OC"},Q:{2:"PC"},R:{1:"QC"},S:{1028:"RC"}},B:4,C:"text-decoration styling"}},8110:function(B){B.exports={A:{A:{1:"A B",2:"I D F E iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{2:"sB KB G W I D F E A B C N H P J K L X Y Z a b pB hB",66:"c d e f g h i",129:"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{1:"0 1 2 3 4 5 6 7 8 9 L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K"},E:{1:"I D F E A B C N H dB eB fB XB R U jB kB",2:"G W 0B YB cB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U"},G:{1:"F vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB uB"},H:{2:"AC"},I:{1:"Q FC GC",2:"KB G BC CC DC EC IB"},J:{1:"A",2:"D"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"B",2:"A"},O:{2:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{129:"RC"}},B:5,C:"WebVTT - Web Video Text Tracks"}},8121:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J",257:"K L"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T pB hB",578:"MB NB OB PB QB RB SB TB UB y BB"},D:{1:"SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O",194:"0 1 2 3 4 5 6 7 8 9 z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB"},E:{2:"G W I D F 0B YB cB dB eB",33:"E A B C N H fB XB R U jB kB"},F:{1:"GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l lB mB nB oB R VB qB U",194:"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x O z AB CB EB FB"},G:{2:"F YB rB IB tB uB vB wB",33:"xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C R VB U",194:"O"},L:{1:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"OC",2:"G",194:"IC JC KC LC MC XB NC"},Q:{194:"PC"},R:{194:"QC"},S:{2:"RC"}},B:7,C:"CSS Backdrop Filter"}},8123:function(B){B.exports={A:{A:{2436:"I D F E A B iB"},B:{260:"K L",2436:"C N H P J",10244:"y BB Q WB S"},C:{2:"sB KB G W I D F E A B C N H P J K L X Y Z pB hB",772:"a b c d e f g h i j k l m n o p q r s",4100:"0 1 2 3 4 5 6 7 8 9 t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{2:"G W I D F E A B C",2564:"N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u",10244:"0 1 2 3 4 5 6 7 8 9 v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"C N H U jB kB",16:"0B YB",2308:"A B XB R",2820:"G W I D F E cB dB eB fB"},F:{2:"E B lB mB nB oB R VB qB",16:"C",516:"U",2564:"P J K L X Y Z a b c d e f g h",10244:"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{1:"3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB",2820:"F tB uB vB wB xB yB zB ZB 1B 2B"},H:{2:"AC"},I:{2:"KB G BC CC DC EC IB",2308:"Q FC GC"},J:{2:"D",2308:"A"},K:{2:"A B C R VB",16:"U",3076:"O"},L:{2052:"S"},M:{1028:"M"},N:{2:"A B"},O:{2:"HC"},P:{2052:"IC JC KC LC MC XB NC OC",2308:"G"},Q:{10244:"PC"},R:{2052:"QC"},S:{4100:"RC"}},B:5,C:"Synchronous Clipboard API"}},8150:function(B){B.exports={A:{A:{1:"E A B",2:"iB",8:"I",132:"D F"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB",2:"sB KB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H YB cB dB eB fB XB R U jB kB",2:"0B"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U",2:"E"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{1:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:2,C:"CSS3 selectors"}},8159:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L",328:"y BB Q WB S"},C:{2:"sB KB pB hB",161:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB",328:"V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB lB mB nB oB R VB qB U",328:"DB V M T"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{328:"S"},M:{161:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{161:"RC"}},B:7,C:":focus-visible CSS pseudo-class"}},8169:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s pB hB",322:"0 1 2 3 t u v w x O z",336:"4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M"},D:{1:"4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",194:"3"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p lB mB nB oB R VB qB U",194:"q r"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{322:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"JC KC LC MC XB NC OC",2:"G IC"},Q:{1:"PC"},R:{2:"QC"},S:{322:"RC"}},B:4,C:"CSS Containment"}},8185:function(B,e){"use strict";e.__esModule=true;e.default=unesc;var r="[\\x20\\t\\r\\n\\f]";var t=new RegExp("\\\\([\\da-f]{1,6}"+r+"?|("+r+")|.)","ig");function unesc(B){return B.replace(t,function(B,e,r){var t="0x"+e-65536;return t!==t||r?e:t<0?String.fromCharCode(t+65536):String.fromCharCode(t>>10|55296,t&1023|56320)})}B.exports=e.default},8188:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB pB hB"},D:{1:"HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB",196:"CB JB EB FB",324:"GB"},E:{2:"G W I D F E A B C 0B YB cB dB eB fB XB R",516:"N H U jB kB"},F:{1:"4 5 6 7 8 9 AB CB EB FB GB HB DB V M T",2:"0 1 2 3 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{2:"QC"},S:{2:"RC"}},B:5,C:"Server Timing"}},8192:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"N H P J K L y BB Q WB S",132:"C"},C:{2:"0 1 2 3 4 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB",1090:"5 6 7 8",2052:"9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{1:"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X",2052:"Y Z a b c"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"YB rB IB",260:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q FC GC",2:"KB BC CC DC",514:"G EC IB"},J:{1:"A",2:"D"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{2052:"RC"}},B:1,C:"Date and time input types"}},8232:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A pB hB",33:"B C N H P"},D:{1:"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q FC GC",2:"KB G BC CC DC EC IB"},J:{1:"A",2:"D"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:2,C:"Vibration API"}},8233:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",33:"sB KB G W I D F E A B C N H P J K L X Y Z a b pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",33:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o"},E:{1:"E A B C N H fB XB R U jB kB",33:"G W I D F 0B YB cB dB eB"},F:{1:"0 1 2 3 4 5 6 7 8 9 C c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T qB U",2:"E B lB mB nB oB R VB",33:"P J K L X Y Z a b"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{33:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:4,C:"CSS3 Cursors: zoom-in & zoom-out"}},8240:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a",130:"b c d e f g h i j"},E:{1:"F E A B C N H eB fB XB R U jB kB",2:"G W I 0B YB cB dB",130:"D"},F:{1:"0 1 2 3 4 5 6 7 8 9 X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U",130:"P J K L"},G:{1:"F wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB uB",130:"vB"},H:{2:"AC"},I:{1:"Q GC",2:"KB G BC CC DC EC IB",130:"FC"},J:{2:"D",130:"A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"URL API"}},8263:function(B,e){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var r=(B,...e)=>{return e.every(e=>B.some(({prop:B})=>B&&~B.toLowerCase().indexOf(e)))};e.default=r;B.exports=e.default},8273:function(B,e,r){"use strict";e.__esModule=true;e.stripComments=e.ensureObject=e.getProp=e.unesc=void 0;var t=_interopRequireDefault(r(8185));e.unesc=t.default;var n=_interopRequireDefault(r(3847));e.getProp=n.default;var i=_interopRequireDefault(r(9215));e.ensureObject=i.default;var C=_interopRequireDefault(r(2425));e.stripComments=C.default;function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}},8283:function(B){B.exports={A:{A:{2:"I D F E iB",132:"A B"},B:{1:"y BB Q WB S",132:"C N H P J K",516:"L"},C:{1:"LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB pB hB"},D:{1:"HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB",260:"FB GB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"4 5 6 7 8 9 AB CB EB FB GB HB DB V M T",2:"0 1 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z lB mB nB oB R VB qB U",260:"2 3"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{2:"M"},N:{132:"A B"},O:{2:"HC"},P:{1:"LC MC XB NC OC",2:"G IC JC KC"},Q:{1:"PC"},R:{2:"QC"},S:{2:"RC"}},B:7,C:"CSS overscroll-behavior"}},8285:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K",194:"L"},C:{1:"V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 1 2 3 4 5 6 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB",66:"7 8 9 AB LB CB",1090:"JB EB FB GB",1284:"HB",1540:"DB"},D:{1:"MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB",66:"V M T"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"9 AB CB EB FB GB HB DB V M T",2:"0 1 2 3 4 5 6 7 8 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{1090:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:6,C:"AV1 video format"}},8300:function(B){B.exports={A:{A:{2:"I D F E iB",8:"A B"},B:{1:"y BB Q WB S",8:"C N H P J K L"},C:{1:"FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h pB hB",8:"0 1 i j k l m n o p q r s t u v w x O z",456:"2 3 4 5 6 7 8 9 AB",712:"LB CB JB EB"},D:{1:"V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",8:"4 5",132:"6 7 8 9 AB LB CB JB EB FB GB HB DB"},E:{2:"G W I D 0B YB cB dB eB",8:"F E A fB",132:"B C N H XB R U jB kB"},F:{1:"GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s lB mB nB oB R VB qB U",132:"0 1 2 3 4 5 6 7 8 9 t u v w x O z AB CB EB FB"},G:{2:"F YB rB IB tB uB vB wB xB yB zB",132:"ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C R VB U",132:"O"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"JC KC LC MC XB NC OC",2:"G",132:"IC"},Q:{132:"PC"},R:{132:"QC"},S:{8:"RC"}},B:1,C:"Custom Elements (V1)"}},8322:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=_default;var t=r(6486);var n=_interopRequireDefault(r(5493));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}const i=(0,n.default)("monospace");const C=["inherit","initial","unset"];const o=["sans-serif","serif","fantasy","cursive","monospace","system-ui"];function makeArray(B,e){let r=[];while(e--){r[e]=B}return r}const a=/[ !"#$%&'()*+,.\/;<=>?@\[\\\]^`{|}~]/;function escape(B,e){let r=0;let t=null;let n=null;let i=null;let C="";while(r<B.length){t=B.charAt(r++);n=t.charCodeAt();if(!e&&/[\t\n\v\f:]/.test(t)){i="\\"+n.toString(16)+" "}else if(!e&&a.test(t)){i="\\"+t}else{i=t}C+=i}if(!e){if(/^-[-\d]/.test(C)){C="\\-"+C.slice(1)}const e=B.charAt(0);if(/\d/.test(e)){C="\\3"+e+" "+C.slice(1)}}return C}const s=new RegExp(o.concat(C).join("|"),"i");const u=/^(-?\d|--)/;const f=/^\x20/;const l=/[\t\n\f\r\x20]/g;const c=/^[a-zA-Z\d\xa0-\uffff_-]+$/;const p=/(\\(?:[a-fA-F0-9]{1,6}\x20|\x20))?(\x20{2,})/g;const A=/\\[a-fA-F0-9]{0,6}\x20$/;const d=/\x20$/;function escapeIdentifierSequence(B){let e=B.split(l);let r=0;let t=[];let n;while(r<e.length){let B=e[r++];if(B===""){t.push(B);continue}n=escape(B,false);if(c.test(B)){if(u.test(B)){if(r===1){t.push(n)}else{t[r-2]+="\\";t.push(escape(B,true))}}else{t.push(n)}}else{t.push(n)}}t=t.join(" ").replace(p,(B,e,r)=>{const t=r.length;const n=Math.floor(t/2);const i=makeArray("\\ ",n);if(t%2){i[n-1]+="\\ "}return(e||"")+" "+i.join(" ")});if(d.test(t)&&!A.test(t)){t=t.replace(d,"\\ ")}if(f.test(t)){t="\\ "+t.slice(1)}return t}function _default(B,e){let r=[];let n=null;let C,a;B.forEach((B,e,t)=>{if(B.type==="string"||B.type==="function"){r.push(B)}else if(B.type==="word"){if(!n){n={type:"word",value:""};r.push(n)}n.value+=B.value}else if(B.type==="space"){if(n&&e!==t.length-1){n.value+=" "}}else{n=null}});r=r.map(B=>{if(B.type==="string"){const r=s.test(B.value);if(!e.removeQuotes||r||/[0-9]/.test(B.value.slice(0,1))){return(0,t.stringify)(B)}let n=escapeIdentifierSequence(B.value);if(n.length<B.value.length+2){return n}}return(0,t.stringify)(B)});if(e.removeAfterKeyword){for(C=0,a=r.length;C<a;C+=1){if(~o.indexOf(r[C].toLowerCase())){r=r.slice(0,C+1);break}}}if(e.removeDuplicates){r=i(r)}return[{type:"word",value:r.join()}]}B.exports=e.default},8337:function(B,e){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;const r="block";const t="flex";const n="flow";const i="flow-root";const C="grid";const o="inline";const a="inline-block";const s="inline-flex";const u="inline-grid";const f="inline-table";const l="list-item";const c="ruby";const p="ruby-base";const A="ruby-text";const d="run-in";const h="table";const E="table-cell";const D="table-caption";var v=[[r,[r,n]],[i,[r,i]],[o,[o,n]],[a,[o,i]],[d,[d,n]],[l,[l,r,n]],[o+" "+l,[o,n,l]],[t,[r,t]],[s,[o,t]],[C,[r,C]],[u,[o,C]],[c,[o,c]],[h,[r,h]],[f,[o,h]],[E,[E,n]],[D,[D,n]],[p,[p,n]],[A,[A,n]]];e.default=v;B.exports=e.default},8347:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(733));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}var n=B=>{const e=(0,t.default)(B);if(e[3]===e[1]){e.pop();if(e[2]===e[0]){e.pop();if(e[0]===e[1]){e.pop()}}}return e.join(" ")};e.default=n;B.exports=e.default},8348:function(B){B.exports={A:{A:{2:"iB",8:"I D F",772:"E A B"},B:{1:"y BB Q WB S",513:"C N H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB",4:"sB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H YB cB dB eB fB XB R U jB kB",4:"0B"},F:{1:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{1:"AC"},I:{1:"Q FC GC",2:"BC CC DC",132:"KB G EC IB"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{257:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"SVG (basic support)"}},8357:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",33:"G W I D F E A B C N H P J K L pB hB",164:"sB KB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H YB cB dB eB fB XB R U jB kB",16:"0B"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U"},G:{1:"F rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB"},H:{2:"AC"},I:{1:"KB G Q DC EC IB FC GC",16:"BC CC"},J:{1:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"CSS initial value"}},8363:function(B){B.exports={A:{A:{2:"I D F E iB",6308:"A",6436:"B"},B:{1:"y BB Q WB S",6436:"C N H P J K L"},C:{1:"M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q pB hB",2052:"0 1 2 3 4 5 6 7 8 9 r s t u v w x O z AB LB CB JB EB FB GB HB DB V"},D:{1:"T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB",8258:"DB V M"},E:{1:"B C N H R U jB kB",2:"G W I D F 0B YB cB dB eB",3108:"E A fB XB"},F:{1:"GB HB DB V M T",2:"0 1 2 3 4 5 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z lB mB nB oB R VB qB U",8258:"6 7 8 9 AB CB EB FB"},G:{1:"1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB",3108:"xB yB zB ZB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{2052:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"XB NC OC",2:"G IC JC KC LC MC"},Q:{2:"PC"},R:{2:"QC"},S:{2052:"RC"}},B:4,C:"CSS Scroll Snap"}},8380:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p"},E:{1:"E A B C N H 0B YB cB dB eB fB XB R U jB kB",2:"G W I D F"},F:{1:"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c lB mB nB oB R VB qB U"},G:{1:"xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB"},H:{2:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{16:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{16:"HC"},P:{16:"G IC JC KC LC MC XB NC OC"},Q:{16:"PC"},R:{16:"QC"},S:{1:"RC"}},B:6,C:"Symbols"}},8386:function(B){B.exports={A:{A:{2:"I D F E iB",132:"A B"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB",260:"A B",388:"I D F E",900:"G W pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",16:"G W I",132:"h i",388:"D F E A B C N H P J K L X Y Z a b c d e f g"},E:{1:"F E A B C N H eB fB XB R U jB kB",2:"G 0B YB",132:"D dB",388:"W I cB"},F:{1:"0 1 2 3 4 5 6 7 8 9 C L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T U",2:"E B lB mB nB oB R VB qB",132:"P J K"},G:{1:"F wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB",132:"vB",388:"tB uB"},H:{2:"AC"},I:{1:"Q GC",2:"BC CC DC",388:"FC",900:"KB G EC IB"},J:{132:"A",388:"D"},K:{1:"C O U",2:"A B R VB"},L:{1:"S"},M:{1:"M"},N:{132:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"XMLHttpRequest advanced features"}},8406:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(2043));var n=_interopRequireDefault(r(6486));var i=_interopRequireDefault(r(6707));var C=_interopRequireDefault(r(8322));var o=_interopRequireDefault(r(2768));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function hasVariableFunction(B){const e=B.toLowerCase();return e.includes("var(")||e.includes("env(")}function transform(B,e,r){let t=B.toLowerCase();if(t==="font-weight"&&!hasVariableFunction(e)){return(0,i.default)(e)}else if(t==="font-family"&&!hasVariableFunction(e)){const B=(0,n.default)(e);B.nodes=(0,C.default)(B.nodes,r);return B.toString()}else if(t==="font"){const B=(0,n.default)(e);B.nodes=(0,o.default)(B.nodes,r);return B.toString()}return e}var a=t.default.plugin("postcss-minify-font-values",B=>{B=Object.assign({},{removeAfterKeyword:false,removeDuplicates:true,removeQuotes:true},B);return e=>{const r={};e.walkDecls(/font/i,e=>{const t=e.value;if(!t){return}const n=e.prop;const i=`${n}|${t}`;if(r[i]){e.value=r[i];return}const C=transform(n,t,B);e.value=C;r[i]=C})}});e.default=a;B.exports=e.default},8426:function(B,e,r){"use strict";const t=r(4061);function isHSLA(B){return t({exact:true}).test(B)}B.exports=isHSLA},8440:function(B){function webpackEmptyContext(B){if(typeof B==="number"&&__webpack_require__.m[B])return __webpack_require__(B);try{return require(B)}catch(e){if(e.code!=="MODULE_NOT_FOUND")throw e}var e=new Error("Cannot find module '"+B+"'");e.code="MODULE_NOT_FOUND";throw e}webpackEmptyContext.keys=function(){return[]};webpackEmptyContext.resolve=webpackEmptyContext;B.exports=webpackEmptyContext;webpackEmptyContext.id=8440},8441:function(B,e,r){"use strict";var t=r(5931);var n=r(5592);var i=[].slice;var C=["keyword","gray","hex"];var o={};Object.keys(n).forEach(function(B){o[i.call(n[B].labels).sort().join("")]=B});var a={};function Color(B,e){if(!(this instanceof Color)){return new Color(B,e)}if(e&&e in C){e=null}if(e&&!(e in n)){throw new Error("Unknown model: "+e)}var r;var s;if(B==null){this.model="rgb";this.color=[0,0,0];this.valpha=1}else if(B instanceof Color){this.model=B.model;this.color=B.color.slice();this.valpha=B.valpha}else if(typeof B==="string"){var u=t.get(B);if(u===null){throw new Error("Unable to parse color from string: "+B)}this.model=u.model;s=n[this.model].channels;this.color=u.value.slice(0,s);this.valpha=typeof u.value[s]==="number"?u.value[s]:1}else if(B.length){this.model=e||"rgb";s=n[this.model].channels;var f=i.call(B,0,s);this.color=zeroArray(f,s);this.valpha=typeof B[s]==="number"?B[s]:1}else if(typeof B==="number"){B&=16777215;this.model="rgb";this.color=[B>>16&255,B>>8&255,B&255];this.valpha=1}else{this.valpha=1;var l=Object.keys(B);if("alpha"in B){l.splice(l.indexOf("alpha"),1);this.valpha=typeof B.alpha==="number"?B.alpha:0}var c=l.sort().join("");if(!(c in o)){throw new Error("Unable to parse color from object: "+JSON.stringify(B))}this.model=o[c];var p=n[this.model].labels;var A=[];for(r=0;r<p.length;r++){A.push(B[p[r]])}this.color=zeroArray(A)}if(a[this.model]){s=n[this.model].channels;for(r=0;r<s;r++){var d=a[this.model][r];if(d){this.color[r]=d(this.color[r])}}}this.valpha=Math.max(0,Math.min(1,this.valpha));if(Object.freeze){Object.freeze(this)}}Color.prototype={toString:function(){return this.string()},toJSON:function(){return this[this.model]()},string:function(B){var e=this.model in t.to?this:this.rgb();e=e.round(typeof B==="number"?B:1);var r=e.valpha===1?e.color:e.color.concat(this.valpha);return t.to[e.model](r)},percentString:function(B){var e=this.rgb().round(typeof B==="number"?B:1);var r=e.valpha===1?e.color:e.color.concat(this.valpha);return t.to.rgb.percent(r)},array:function(){return this.valpha===1?this.color.slice():this.color.concat(this.valpha)},object:function(){var B={};var e=n[this.model].channels;var r=n[this.model].labels;for(var t=0;t<e;t++){B[r[t]]=this.color[t]}if(this.valpha!==1){B.alpha=this.valpha}return B},unitArray:function(){var B=this.rgb().color;B[0]/=255;B[1]/=255;B[2]/=255;if(this.valpha!==1){B.push(this.valpha)}return B},unitObject:function(){var B=this.rgb().object();B.r/=255;B.g/=255;B.b/=255;if(this.valpha!==1){B.alpha=this.valpha}return B},round:function(B){B=Math.max(B||0,0);return new Color(this.color.map(roundToPlace(B)).concat(this.valpha),this.model)},alpha:function(B){if(arguments.length){return new Color(this.color.concat(Math.max(0,Math.min(1,B))),this.model)}return this.valpha},red:getset("rgb",0,maxfn(255)),green:getset("rgb",1,maxfn(255)),blue:getset("rgb",2,maxfn(255)),hue:getset(["hsl","hsv","hsl","hwb","hcg"],0,function(B){return(B%360+360)%360}),saturationl:getset("hsl",1,maxfn(100)),lightness:getset("hsl",2,maxfn(100)),saturationv:getset("hsv",1,maxfn(100)),value:getset("hsv",2,maxfn(100)),chroma:getset("hcg",1,maxfn(100)),gray:getset("hcg",2,maxfn(100)),white:getset("hwb",1,maxfn(100)),wblack:getset("hwb",2,maxfn(100)),cyan:getset("cmyk",0,maxfn(100)),magenta:getset("cmyk",1,maxfn(100)),yellow:getset("cmyk",2,maxfn(100)),black:getset("cmyk",3,maxfn(100)),x:getset("xyz",0,maxfn(100)),y:getset("xyz",1,maxfn(100)),z:getset("xyz",2,maxfn(100)),l:getset("lab",0,maxfn(100)),a:getset("lab",1),b:getset("lab",2),keyword:function(B){if(arguments.length){return new Color(B)}return n[this.model].keyword(this.color)},hex:function(B){if(arguments.length){return new Color(B)}return t.to.hex(this.rgb().round().color)},rgbNumber:function(){var B=this.rgb().color;return(B[0]&255)<<16|(B[1]&255)<<8|B[2]&255},luminosity:function(){var B=this.rgb().color;var e=[];for(var r=0;r<B.length;r++){var t=B[r]/255;e[r]=t<=.03928?t/12.92:Math.pow((t+.055)/1.055,2.4)}return.2126*e[0]+.7152*e[1]+.0722*e[2]},contrast:function(B){var e=this.luminosity();var r=B.luminosity();if(e>r){return(e+.05)/(r+.05)}return(r+.05)/(e+.05)},level:function(B){var e=this.contrast(B);if(e>=7.1){return"AAA"}return e>=4.5?"AA":""},isDark:function(){var B=this.rgb().color;var e=(B[0]*299+B[1]*587+B[2]*114)/1e3;return e<128},isLight:function(){return!this.isDark()},negate:function(){var B=this.rgb();for(var e=0;e<3;e++){B.color[e]=255-B.color[e]}return B},lighten:function(B){var e=this.hsl();e.color[2]+=e.color[2]*B;return e},darken:function(B){var e=this.hsl();e.color[2]-=e.color[2]*B;return e},saturate:function(B){var e=this.hsl();e.color[1]+=e.color[1]*B;return e},desaturate:function(B){var e=this.hsl();e.color[1]-=e.color[1]*B;return e},whiten:function(B){var e=this.hwb();e.color[1]+=e.color[1]*B;return e},blacken:function(B){var e=this.hwb();e.color[2]+=e.color[2]*B;return e},grayscale:function(){var B=this.rgb().color;var e=B[0]*.3+B[1]*.59+B[2]*.11;return Color.rgb(e,e,e)},fade:function(B){return this.alpha(this.valpha-this.valpha*B)},opaquer:function(B){return this.alpha(this.valpha+this.valpha*B)},rotate:function(B){var e=this.hsl();var r=e.color[0];r=(r+B)%360;r=r<0?360+r:r;e.color[0]=r;return e},mix:function(B,e){if(!B||!B.rgb){throw new Error('Argument to "mix" was not a Color instance, but rather an instance of '+typeof B)}var r=B.rgb();var t=this.rgb();var n=e===undefined?.5:e;var i=2*n-1;var C=r.alpha()-t.alpha();var o=((i*C===-1?i:(i+C)/(1+i*C))+1)/2;var a=1-o;return Color.rgb(o*r.red()+a*t.red(),o*r.green()+a*t.green(),o*r.blue()+a*t.blue(),r.alpha()*n+t.alpha()*(1-n))}};Object.keys(n).forEach(function(B){if(C.indexOf(B)!==-1){return}var e=n[B].channels;Color.prototype[B]=function(){if(this.model===B){return new Color(this)}if(arguments.length){return new Color(arguments,B)}var r=typeof arguments[e]==="number"?e:this.valpha;return new Color(assertArray(n[this.model][B].raw(this.color)).concat(r),B)};Color[B]=function(r){if(typeof r==="number"){r=zeroArray(i.call(arguments),e)}return new Color(r,B)}});function roundTo(B,e){return Number(B.toFixed(e))}function roundToPlace(B){return function(e){return roundTo(e,B)}}function getset(B,e,r){B=Array.isArray(B)?B:[B];B.forEach(function(B){(a[B]||(a[B]=[]))[e]=r});B=B[0];return function(t){var n;if(arguments.length){if(r){t=r(t)}n=this[B]();n.color[e]=t;return n}n=this[B]().color[e];if(r){n=r(n)}return n}}function maxfn(B){return function(e){return Math.max(0,Math.min(B,e))}}function assertArray(B){return Array.isArray(B)?B:[B]}function zeroArray(B,e){for(var r=0;r<e;r++){if(typeof B[r]!=="number"){B[r]=0}}return B}B.exports=Color},8445:function(B,e,r){"use strict";e.__esModule=true;var t=r(8019);Object.keys(t).forEach(function(B){if(B==="default"||B==="__esModule")return;e[B]=t[B]});var n=r(6205);Object.keys(n).forEach(function(B){if(B==="default"||B==="__esModule")return;e[B]=n[B]});var i=r(8642);Object.keys(i).forEach(function(B){if(B==="default"||B==="__esModule")return;e[B]=i[B]})},8452:function(B){B.exports={A:{A:{388:"A B",900:"I D F E iB"},B:{388:"C N H P J K L",900:"y BB Q WB S"},C:{772:"HB DB V M T MB NB OB PB QB RB SB TB UB y BB",900:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB pB hB"},D:{900:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{772:"A",900:"G W I D F E B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{16:"E lB",129:"B C mB nB oB R VB qB U",900:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{900:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{129:"AC"},I:{900:"KB G Q BC CC DC EC IB FC GC"},J:{900:"D A"},K:{129:"A B C R VB U",900:"O"},L:{900:"S"},M:{900:"M"},N:{388:"A B"},O:{900:"HC"},P:{900:"G IC JC KC LC MC XB NC OC"},Q:{900:"PC"},R:{900:"QC"},S:{900:"RC"}},B:2,C:"CSS page-break properties"}},8501:function(B){B.exports={"list-style-type":["afar","amharic","amharic-abegede","arabic-indic","armenian","asterisks","bengali","binary","cambodian","circle","cjk-decimal","cjk-earthly-branch","cjk-heavenly-stem","cjk-ideographic","decimal","decimal-leading-zero","devanagari","disc","disclosure-closed","disclosure-open","ethiopic","ethiopic-abegede","ethiopic-abegede-am-et","ethiopic-abegede-gez","ethiopic-abegede-ti-er","ethiopic-abegede-ti-et","ethiopic-halehame","ethiopic-halehame-aa-er","ethiopic-halehame-aa-et","ethiopic-halehame-am","ethiopic-halehame-am-et","ethiopic-halehame-gez","ethiopic-halehame-om-et","ethiopic-halehame-sid-et","ethiopic-halehame-so-et","ethiopic-halehame-ti-er","ethiopic-halehame-ti-et","ethiopic-halehame-tig","ethiopic-numeric","footnotes","georgian","gujarati","gurmukhi","hangul","hangul-consonant","hebrew","hiragana","hiragana-iroha","japanese-formal","japanese-informal","kannada","katakana","katakana-iroha","khmer","korean-hangul-formal","korean-hanja-formal","korean-hanja-informal","lao","lower-alpha","lower-armenian","lower-greek","lower-hexadecimal","lower-latin","lower-norwegian","lower-roman","malayalam","mongolian","myanmar","octal","oriya","oromo","persian","sidama","simp-chinese-formal","simp-chinese-informal","somali","square","string","symbols","tamil","telugu","thai","tibetan","tigre","tigrinya-er","tigrinya-er-abegede","tigrinya-et","tigrinya-et-abegede","trad-chinese-formal","trad-chinese-informal","upper-alpha","upper-armenian","upper-greek","upper-hexadecimal","upper-latin","upper-norwegian","upper-roman","urdu"]}},8507:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=r(2043);var n=_interopRequireDefault(r(6352));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}var i=(0,t.plugin)("postcss-calc",function(B){var e=Object.assign({precision:5,preserve:false,warnWhenCannotResolve:false,mediaQueries:false,selectors:false},B);return function(B,r){B.walk(function(B){var t=B.type;if(t==="decl"){(0,n.default)(B,"value",e,r)}if(t==="atrule"&&e.mediaQueries){(0,n.default)(B,"params",e,r)}if(t==="rule"&&e.selectors){(0,n.default)(B,"selector",e,r)}})}});e.default=i;B.exports=e.default},8511:function(B,e,r){"use strict";e.__esModule=true;e.default=void 0;var t=_interopRequireDefault(r(3398));var n=r(699);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _inheritsLoose(B,e){B.prototype=Object.create(e.prototype);B.prototype.constructor=B;B.__proto__=e}var i=function(B){_inheritsLoose(Tag,B);function Tag(e){var r;r=B.call(this,e)||this;r.type=n.TAG;return r}return Tag}(t.default);e.default=i;B.exports=e.default},8519:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",66:"Y Z a b c d e"},E:{2:"G W I F E A B C N H 0B YB cB dB fB XB R U jB kB",130:"D eB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",130:"vB"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:7,C:"seamless attribute for iframes"}},8522:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.normalizeGridColumnRow=e.normalizeGridColumnRowGap=e.normalizeGridAutoFlow=void 0;var t=_interopRequireDefault(r(9283));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}const n=B=>{let e={front:"",back:""};let r=false;B.walk(B=>{if(B.value==="dense"){r=true;e.back=B.value}else if(["row","column"].includes(B.value.trim().toLowerCase())){r=true;e.front=B.value}else{r=false}});if(r){return`${e.front.trim()} ${e.back.trim()}`}return B};e.normalizeGridAutoFlow=n;const i=B=>{let e={front:"",back:""};let r=false;B.walk(B=>{if(B.value==="normal"){r=true;e.front=B.value}else{e.back=`${e.back} ${B.value}`}});if(r){return`${e.front.trim()} ${e.back.trim()}`}return B};e.normalizeGridColumnRowGap=i;const C=B=>{let e=B.toString().split("/");if(e.length>1){return(0,t.default)(e.map(B=>{let e={front:"",back:""};B=B.trim();B.split(" ").forEach(B=>{if(B==="span"){e.front=B}else{e.back=`${e.back} ${B}`}});return`${e.front.trim()} ${e.back.trim()}`}))}return e.map(B=>{let e={front:"",back:""};B=B.trim();B.split(" ").forEach(B=>{if(B==="span"){e.front=B}else{e.back=`${e.back} ${B}`}});return`${e.front.trim()} ${e.back.trim()}`})};e.normalizeGridColumnRow=C},8577:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L y BB Q WB S"},C:{1:"NB OB PB QB RB SB TB UB y BB",2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB pB hB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:5,C:"CSS Subgrid"}},8578:function(B){B.exports={A:{A:{1:"A B",2:"I D F E iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",16:"G W I D F E A B C N H"},E:{1:"I D F E A B C N H cB dB eB fB XB R U jB kB",2:"G W 0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T oB R VB qB U",2:"E lB",16:"mB nB"},G:{1:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB"},H:{1:"AC"},I:{1:"G Q EC IB FC GC",2:"BC CC DC",16:"KB"},J:{1:"A",2:"D"},K:{1:"B C O R VB U",16:"A"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"Attributes for form submission"}},8589:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"L y BB Q WB S",2:"C N H P J K"},C:{1:"AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB"},D:{1:"FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB"},E:{1:"C N H R U jB kB",2:"G W I D F E A B 0B YB cB dB eB fB XB"},F:{1:"2 3 4 5 6 7 8 9 AB CB EB FB GB HB DB V M T",2:"0 1 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z lB mB nB oB R VB qB U"},G:{1:"2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"LC MC XB NC OC",2:"G IC JC KC"},Q:{1:"PC"},R:{2:"QC"},S:{2:"RC"}},B:6,C:"Promise.prototype.finally"}},8598:function(B){B.exports={A:{A:{1:"A B",2:"I D F E iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB",260:"J K L X Y Z a b c d e f g h i j k l m n",292:"G W I D F E A B C N H P hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",33:"A B C N H P J K L X Y Z a b c d",548:"G W I D F E"},E:{2:"0B YB",260:"D F E A B C N H dB eB fB XB R U jB kB",292:"I cB",804:"G W"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T U",2:"E B lB mB nB oB",33:"C qB",164:"R VB"},G:{260:"F vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",292:"tB uB",804:"YB rB IB"},H:{2:"AC"},I:{1:"Q FC GC",33:"G EC IB",548:"KB BC CC DC"},J:{1:"A",548:"D"},K:{1:"O U",2:"A B",33:"C",164:"R VB"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"CSS Gradients"}},8600:function(B,e,r){var t=r(3673);var n={};for(var i in t){if(t.hasOwnProperty(i)){n[t[i]]=i}}var C=B.exports={rgb:{channels:3,labels:"rgb"},hsl:{channels:3,labels:"hsl"},hsv:{channels:3,labels:"hsv"},hwb:{channels:3,labels:"hwb"},cmyk:{channels:4,labels:"cmyk"},xyz:{channels:3,labels:"xyz"},lab:{channels:3,labels:"lab"},lch:{channels:3,labels:"lch"},hex:{channels:1,labels:["hex"]},keyword:{channels:1,labels:["keyword"]},ansi16:{channels:1,labels:["ansi16"]},ansi256:{channels:1,labels:["ansi256"]},hcg:{channels:3,labels:["h","c","g"]},apple:{channels:3,labels:["r16","g16","b16"]},gray:{channels:1,labels:["gray"]}};for(var o in C){if(C.hasOwnProperty(o)){if(!("channels"in C[o])){throw new Error("missing channels property: "+o)}if(!("labels"in C[o])){throw new Error("missing channel labels property: "+o)}if(C[o].labels.length!==C[o].channels){throw new Error("channel and label counts mismatch: "+o)}var a=C[o].channels;var s=C[o].labels;delete C[o].channels;delete C[o].labels;Object.defineProperty(C[o],"channels",{value:a});Object.defineProperty(C[o],"labels",{value:s})}}C.rgb.hsl=function(B){var e=B[0]/255;var r=B[1]/255;var t=B[2]/255;var n=Math.min(e,r,t);var i=Math.max(e,r,t);var C=i-n;var o;var a;var s;if(i===n){o=0}else if(e===i){o=(r-t)/C}else if(r===i){o=2+(t-e)/C}else if(t===i){o=4+(e-r)/C}o=Math.min(o*60,360);if(o<0){o+=360}s=(n+i)/2;if(i===n){a=0}else if(s<=.5){a=C/(i+n)}else{a=C/(2-i-n)}return[o,a*100,s*100]};C.rgb.hsv=function(B){var e;var r;var t;var n;var i;var C=B[0]/255;var o=B[1]/255;var a=B[2]/255;var s=Math.max(C,o,a);var u=s-Math.min(C,o,a);var f=function(B){return(s-B)/6/u+1/2};if(u===0){n=i=0}else{i=u/s;e=f(C);r=f(o);t=f(a);if(C===s){n=t-r}else if(o===s){n=1/3+e-t}else if(a===s){n=2/3+r-e}if(n<0){n+=1}else if(n>1){n-=1}}return[n*360,i*100,s*100]};C.rgb.hwb=function(B){var e=B[0];var r=B[1];var t=B[2];var n=C.rgb.hsl(B)[0];var i=1/255*Math.min(e,Math.min(r,t));t=1-1/255*Math.max(e,Math.max(r,t));return[n,i*100,t*100]};C.rgb.cmyk=function(B){var e=B[0]/255;var r=B[1]/255;var t=B[2]/255;var n;var i;var C;var o;o=Math.min(1-e,1-r,1-t);n=(1-e-o)/(1-o)||0;i=(1-r-o)/(1-o)||0;C=(1-t-o)/(1-o)||0;return[n*100,i*100,C*100,o*100]};function comparativeDistance(B,e){return Math.pow(B[0]-e[0],2)+Math.pow(B[1]-e[1],2)+Math.pow(B[2]-e[2],2)}C.rgb.keyword=function(B){var e=n[B];if(e){return e}var r=Infinity;var i;for(var C in t){if(t.hasOwnProperty(C)){var o=t[C];var a=comparativeDistance(B,o);if(a<r){r=a;i=C}}}return i};C.keyword.rgb=function(B){return t[B]};C.rgb.xyz=function(B){var e=B[0]/255;var r=B[1]/255;var t=B[2]/255;e=e>.04045?Math.pow((e+.055)/1.055,2.4):e/12.92;r=r>.04045?Math.pow((r+.055)/1.055,2.4):r/12.92;t=t>.04045?Math.pow((t+.055)/1.055,2.4):t/12.92;var n=e*.4124+r*.3576+t*.1805;var i=e*.2126+r*.7152+t*.0722;var C=e*.0193+r*.1192+t*.9505;return[n*100,i*100,C*100]};C.rgb.lab=function(B){var e=C.rgb.xyz(B);var r=e[0];var t=e[1];var n=e[2];var i;var o;var a;r/=95.047;t/=100;n/=108.883;r=r>.008856?Math.pow(r,1/3):7.787*r+16/116;t=t>.008856?Math.pow(t,1/3):7.787*t+16/116;n=n>.008856?Math.pow(n,1/3):7.787*n+16/116;i=116*t-16;o=500*(r-t);a=200*(t-n);return[i,o,a]};C.hsl.rgb=function(B){var e=B[0]/360;var r=B[1]/100;var t=B[2]/100;var n;var i;var C;var o;var a;if(r===0){a=t*255;return[a,a,a]}if(t<.5){i=t*(1+r)}else{i=t+r-t*r}n=2*t-i;o=[0,0,0];for(var s=0;s<3;s++){C=e+1/3*-(s-1);if(C<0){C++}if(C>1){C--}if(6*C<1){a=n+(i-n)*6*C}else if(2*C<1){a=i}else if(3*C<2){a=n+(i-n)*(2/3-C)*6}else{a=n}o[s]=a*255}return o};C.hsl.hsv=function(B){var e=B[0];var r=B[1]/100;var t=B[2]/100;var n=r;var i=Math.max(t,.01);var C;var o;t*=2;r*=t<=1?t:2-t;n*=i<=1?i:2-i;o=(t+r)/2;C=t===0?2*n/(i+n):2*r/(t+r);return[e,C*100,o*100]};C.hsv.rgb=function(B){var e=B[0]/60;var r=B[1]/100;var t=B[2]/100;var n=Math.floor(e)%6;var i=e-Math.floor(e);var C=255*t*(1-r);var o=255*t*(1-r*i);var a=255*t*(1-r*(1-i));t*=255;switch(n){case 0:return[t,a,C];case 1:return[o,t,C];case 2:return[C,t,a];case 3:return[C,o,t];case 4:return[a,C,t];case 5:return[t,C,o]}};C.hsv.hsl=function(B){var e=B[0];var r=B[1]/100;var t=B[2]/100;var n=Math.max(t,.01);var i;var C;var o;o=(2-r)*t;i=(2-r)*n;C=r*n;C/=i<=1?i:2-i;C=C||0;o/=2;return[e,C*100,o*100]};C.hwb.rgb=function(B){var e=B[0]/360;var r=B[1]/100;var t=B[2]/100;var n=r+t;var i;var C;var o;var a;if(n>1){r/=n;t/=n}i=Math.floor(6*e);C=1-t;o=6*e-i;if((i&1)!==0){o=1-o}a=r+o*(C-r);var s;var u;var f;switch(i){default:case 6:case 0:s=C;u=a;f=r;break;case 1:s=a;u=C;f=r;break;case 2:s=r;u=C;f=a;break;case 3:s=r;u=a;f=C;break;case 4:s=a;u=r;f=C;break;case 5:s=C;u=r;f=a;break}return[s*255,u*255,f*255]};C.cmyk.rgb=function(B){var e=B[0]/100;var r=B[1]/100;var t=B[2]/100;var n=B[3]/100;var i;var C;var o;i=1-Math.min(1,e*(1-n)+n);C=1-Math.min(1,r*(1-n)+n);o=1-Math.min(1,t*(1-n)+n);return[i*255,C*255,o*255]};C.xyz.rgb=function(B){var e=B[0]/100;var r=B[1]/100;var t=B[2]/100;var n;var i;var C;n=e*3.2406+r*-1.5372+t*-.4986;i=e*-.9689+r*1.8758+t*.0415;C=e*.0557+r*-.204+t*1.057;n=n>.0031308?1.055*Math.pow(n,1/2.4)-.055:n*12.92;i=i>.0031308?1.055*Math.pow(i,1/2.4)-.055:i*12.92;C=C>.0031308?1.055*Math.pow(C,1/2.4)-.055:C*12.92;n=Math.min(Math.max(0,n),1);i=Math.min(Math.max(0,i),1);C=Math.min(Math.max(0,C),1);return[n*255,i*255,C*255]};C.xyz.lab=function(B){var e=B[0];var r=B[1];var t=B[2];var n;var i;var C;e/=95.047;r/=100;t/=108.883;e=e>.008856?Math.pow(e,1/3):7.787*e+16/116;r=r>.008856?Math.pow(r,1/3):7.787*r+16/116;t=t>.008856?Math.pow(t,1/3):7.787*t+16/116;n=116*r-16;i=500*(e-r);C=200*(r-t);return[n,i,C]};C.lab.xyz=function(B){var e=B[0];var r=B[1];var t=B[2];var n;var i;var C;i=(e+16)/116;n=r/500+i;C=i-t/200;var o=Math.pow(i,3);var a=Math.pow(n,3);var s=Math.pow(C,3);i=o>.008856?o:(i-16/116)/7.787;n=a>.008856?a:(n-16/116)/7.787;C=s>.008856?s:(C-16/116)/7.787;n*=95.047;i*=100;C*=108.883;return[n,i,C]};C.lab.lch=function(B){var e=B[0];var r=B[1];var t=B[2];var n;var i;var C;n=Math.atan2(t,r);i=n*360/2/Math.PI;if(i<0){i+=360}C=Math.sqrt(r*r+t*t);return[e,C,i]};C.lch.lab=function(B){var e=B[0];var r=B[1];var t=B[2];var n;var i;var C;C=t/360*2*Math.PI;n=r*Math.cos(C);i=r*Math.sin(C);return[e,n,i]};C.rgb.ansi16=function(B){var e=B[0];var r=B[1];var t=B[2];var n=1 in arguments?arguments[1]:C.rgb.hsv(B)[2];n=Math.round(n/50);if(n===0){return 30}var i=30+(Math.round(t/255)<<2|Math.round(r/255)<<1|Math.round(e/255));if(n===2){i+=60}return i};C.hsv.ansi16=function(B){return C.rgb.ansi16(C.hsv.rgb(B),B[2])};C.rgb.ansi256=function(B){var e=B[0];var r=B[1];var t=B[2];if(e===r&&r===t){if(e<8){return 16}if(e>248){return 231}return Math.round((e-8)/247*24)+232}var n=16+36*Math.round(e/255*5)+6*Math.round(r/255*5)+Math.round(t/255*5);return n};C.ansi16.rgb=function(B){var e=B%10;if(e===0||e===7){if(B>50){e+=3.5}e=e/10.5*255;return[e,e,e]}var r=(~~(B>50)+1)*.5;var t=(e&1)*r*255;var n=(e>>1&1)*r*255;var i=(e>>2&1)*r*255;return[t,n,i]};C.ansi256.rgb=function(B){if(B>=232){var e=(B-232)*10+8;return[e,e,e]}B-=16;var r;var t=Math.floor(B/36)/5*255;var n=Math.floor((r=B%36)/6)/5*255;var i=r%6/5*255;return[t,n,i]};C.rgb.hex=function(B){var e=((Math.round(B[0])&255)<<16)+((Math.round(B[1])&255)<<8)+(Math.round(B[2])&255);var r=e.toString(16).toUpperCase();return"000000".substring(r.length)+r};C.hex.rgb=function(B){var e=B.toString(16).match(/[a-f0-9]{6}|[a-f0-9]{3}/i);if(!e){return[0,0,0]}var r=e[0];if(e[0].length===3){r=r.split("").map(function(B){return B+B}).join("")}var t=parseInt(r,16);var n=t>>16&255;var i=t>>8&255;var C=t&255;return[n,i,C]};C.rgb.hcg=function(B){var e=B[0]/255;var r=B[1]/255;var t=B[2]/255;var n=Math.max(Math.max(e,r),t);var i=Math.min(Math.min(e,r),t);var C=n-i;var o;var a;if(C<1){o=i/(1-C)}else{o=0}if(C<=0){a=0}else if(n===e){a=(r-t)/C%6}else if(n===r){a=2+(t-e)/C}else{a=4+(e-r)/C+4}a/=6;a%=1;return[a*360,C*100,o*100]};C.hsl.hcg=function(B){var e=B[1]/100;var r=B[2]/100;var t=1;var n=0;if(r<.5){t=2*e*r}else{t=2*e*(1-r)}if(t<1){n=(r-.5*t)/(1-t)}return[B[0],t*100,n*100]};C.hsv.hcg=function(B){var e=B[1]/100;var r=B[2]/100;var t=e*r;var n=0;if(t<1){n=(r-t)/(1-t)}return[B[0],t*100,n*100]};C.hcg.rgb=function(B){var e=B[0]/360;var r=B[1]/100;var t=B[2]/100;if(r===0){return[t*255,t*255,t*255]}var n=[0,0,0];var i=e%1*6;var C=i%1;var o=1-C;var a=0;switch(Math.floor(i)){case 0:n[0]=1;n[1]=C;n[2]=0;break;case 1:n[0]=o;n[1]=1;n[2]=0;break;case 2:n[0]=0;n[1]=1;n[2]=C;break;case 3:n[0]=0;n[1]=o;n[2]=1;break;case 4:n[0]=C;n[1]=0;n[2]=1;break;default:n[0]=1;n[1]=0;n[2]=o}a=(1-r)*t;return[(r*n[0]+a)*255,(r*n[1]+a)*255,(r*n[2]+a)*255]};C.hcg.hsv=function(B){var e=B[1]/100;var r=B[2]/100;var t=e+r*(1-e);var n=0;if(t>0){n=e/t}return[B[0],n*100,t*100]};C.hcg.hsl=function(B){var e=B[1]/100;var r=B[2]/100;var t=r*(1-e)+.5*e;var n=0;if(t>0&&t<.5){n=e/(2*t)}else if(t>=.5&&t<1){n=e/(2*(1-t))}return[B[0],n*100,t*100]};C.hcg.hwb=function(B){var e=B[1]/100;var r=B[2]/100;var t=e+r*(1-e);return[B[0],(t-e)*100,(1-t)*100]};C.hwb.hcg=function(B){var e=B[1]/100;var r=B[2]/100;var t=1-r;var n=t-e;var i=0;if(n<1){i=(t-n)/(1-n)}return[B[0],n*100,i*100]};C.apple.rgb=function(B){return[B[0]/65535*255,B[1]/65535*255,B[2]/65535*255]};C.rgb.apple=function(B){return[B[0]/255*65535,B[1]/255*65535,B[2]/255*65535]};C.gray.rgb=function(B){return[B[0]/100*255,B[0]/100*255,B[0]/100*255]};C.gray.hsl=C.gray.hsv=function(B){return[0,0,B[0]]};C.gray.hwb=function(B){return[0,100,B[0]]};C.gray.cmyk=function(B){return[0,0,0,B[0]]};C.gray.lab=function(B){return[B[0],0,0]};C.gray.hex=function(B){var e=Math.round(B[0]/100*255)&255;var r=(e<<16)+(e<<8)+e;var t=r.toString(16).toUpperCase();return"000000".substring(t.length)+t};C.rgb.gray=function(B){var e=(B[0]+B[1]+B[2])/3;return[e/255*100]}},8603:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"H P J K L y BB Q WB S",16:"C N"},C:{1:"0 1 2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v"},E:{1:"E A B C N H fB XB R U jB kB",2:"G W I D F 0B YB cB dB eB"},F:{1:"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i lB mB nB oB R VB qB U"},G:{1:"xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:5,C:"document.scrollingElement"}},8616:function(B){B.exports={A:{A:{1:"A B",2:"I D F E iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB hB",33:"P J K L X Y Z a b c d e f g h i j k l",164:"G W I D F E A B C N H"},D:{1:"0 1 2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P",33:"Z a b c d e f g h i j k l m n o p q r s t u v w x O z",292:"J K L X Y"},E:{1:"A B C N H fB XB R U jB kB",2:"D F E 0B YB dB eB",4:"G W I cB"},F:{1:"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U",33:"P J K L X Y Z a b c d e f g h i j k l m"},G:{1:"yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F vB wB xB",4:"YB rB IB tB uB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB",33:"FC GC"},J:{2:"D",33:"A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",33:"G"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"CSS font-feature-settings"}},8620:function(B,e,r){"use strict";e.__esModule=true;e.default=void 0;var t=_interopRequireDefault(r(9069));var n=r(699);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _inheritsLoose(B,e){B.prototype=Object.create(e.prototype);B.prototype.constructor=B;B.__proto__=e}var i=function(B){_inheritsLoose(Selector,B);function Selector(e){var r;r=B.call(this,e)||this;r.type=n.SELECTOR;return r}return Selector}(t.default);e.default=i;B.exports=e.default},8636:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(5622));var n=_interopRequireDefault(r(2043));var i=_interopRequireDefault(r(6486));var C=_interopRequireDefault(r(4053));var o=_interopRequireDefault(r(7649));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}const a=/\\[\r\n]/;const s=/([\s\(\)"'])/g;function convert(B,e){if((0,o.default)(B)||B.startsWith("//")){let r=null;try{r=(0,C.default)(B,e)}catch(e){r=B}return r}return t.default.normalize(B).replace(new RegExp("\\"+t.default.sep,"g"),"/")}function transformNamespace(B){B.params=(0,i.default)(B.params).walk(B=>{if(B.type==="function"&&B.value.toLowerCase()==="url"&&B.nodes.length){B.type="string";B.quote=B.nodes[0].quote||'"';B.value=B.nodes[0].value}if(B.type==="string"){B.value=B.value.trim()}return false}).toString()}function transformDecl(B,e){B.value=(0,i.default)(B.value).walk(B=>{if(B.type!=="function"||B.value.toLowerCase()!=="url"||!B.nodes.length){return false}let r=B.nodes[0];let t;B.before=B.after="";r.value=r.value.trim().replace(a,"");if(r.value.length===0){r.quote="";return false}if(/^data:(.*)?,/i.test(r.value)){return false}if(!/^.+-extension:\//i.test(r.value)){r.value=convert(r.value,e)}if(s.test(r.value)&&r.type==="string"){t=r.value.replace(s,"\\$1");if(t.length<r.value.length+2){r.value=t;r.type="word"}}else{r.type="word"}return false}).toString()}var u=n.default.plugin("postcss-normalize-url",B=>{B=Object.assign({},{normalizeProtocol:false,stripFragment:false,stripWWW:false},B);return e=>{e.walk(e=>{if(e.type==="decl"){return transformDecl(e,B)}else if(e.type==="atrule"&&e.name.toLowerCase()==="namespace"){return transformNamespace(e)}})}});e.default=u;B.exports=e.default},8642:function(B,e,r){"use strict";e.__esModule=true;e.isNode=isNode;e.isPseudoElement=isPseudoElement;e.isPseudoClass=isPseudoClass;e.isContainer=isContainer;e.isNamespace=isNamespace;e.isUniversal=e.isTag=e.isString=e.isSelector=e.isRoot=e.isPseudo=e.isNesting=e.isIdentifier=e.isComment=e.isCombinator=e.isClassName=e.isAttribute=void 0;var t=r(8019);var n;var i=(n={},n[t.ATTRIBUTE]=true,n[t.CLASS]=true,n[t.COMBINATOR]=true,n[t.COMMENT]=true,n[t.ID]=true,n[t.NESTING]=true,n[t.PSEUDO]=true,n[t.ROOT]=true,n[t.SELECTOR]=true,n[t.STRING]=true,n[t.TAG]=true,n[t.UNIVERSAL]=true,n);function isNode(B){return typeof B==="object"&&i[B.type]}function isNodeType(B,e){return isNode(e)&&e.type===B}var C=isNodeType.bind(null,t.ATTRIBUTE);e.isAttribute=C;var o=isNodeType.bind(null,t.CLASS);e.isClassName=o;var a=isNodeType.bind(null,t.COMBINATOR);e.isCombinator=a;var s=isNodeType.bind(null,t.COMMENT);e.isComment=s;var u=isNodeType.bind(null,t.ID);e.isIdentifier=u;var f=isNodeType.bind(null,t.NESTING);e.isNesting=f;var l=isNodeType.bind(null,t.PSEUDO);e.isPseudo=l;var c=isNodeType.bind(null,t.ROOT);e.isRoot=c;var p=isNodeType.bind(null,t.SELECTOR);e.isSelector=p;var A=isNodeType.bind(null,t.STRING);e.isString=A;var d=isNodeType.bind(null,t.TAG);e.isTag=d;var h=isNodeType.bind(null,t.UNIVERSAL);e.isUniversal=h;function isPseudoElement(B){return l(B)&&B.value&&(B.value.startsWith("::")||B.value===":before"||B.value===":after")}function isPseudoClass(B){return l(B)&&!isPseudoElement(B)}function isContainer(B){return!!(isNode(B)&&B.walk)}function isNamespace(B){return C(B)||d(B)}},8651:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"J K L y BB Q WB S",2:"C N H",260:"P"},C:{1:"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i pB hB"},D:{1:"1 2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",194:"0"},E:{1:"A B C N H fB XB R U jB kB",2:"G W I D F E 0B YB cB dB eB"},F:{1:"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m lB mB nB oB R VB qB U",194:"n"},G:{1:"yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{2:"PC"},R:{2:"QC"},S:{1:"RC"}},B:4,C:"CSS Variables (Custom Properties)"}},8659:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L",258:"y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB pB hB",258:"QB RB SB TB UB y BB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB",258:"CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB",450:"bB aB"},E:{2:"G W I D F E A B 0B YB cB dB eB fB XB",258:"C N H R U jB kB"},F:{2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O lB mB nB oB R VB qB U",258:"0 1 2 3 4 5 6 7 8 9 z AB CB EB FB GB HB DB V M T"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B",258:"2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G BC CC DC EC IB FC GC",258:"Q"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{258:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC",258:"LC MC XB NC OC"},Q:{258:"PC"},R:{2:"QC"},S:{2:"RC"}},B:5,C:"Permissions Policy"}},8676:function(B){B.exports={A:{A:{2:"I D F E iB",132:"A B"},B:{1:"y BB Q WB S",132:"C N H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB hB",33:"A B C N H P",36:"G W I D F E"},D:{1:"0 1 2 3 4 5 6 7 8 9 c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"A",8:"G W I D F E",33:"b",36:"B C N H P J K L X Y Z a"},E:{1:"A B C N H XB R U jB kB",8:"G W I D 0B YB cB dB",260:"F E eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E lB mB",8:"B C nB oB R VB qB U"},G:{1:"zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",8:"YB rB IB tB uB vB",260:"F wB xB yB"},H:{2:"AC"},I:{1:"Q FC GC",8:"KB G BC CC DC EC IB"},J:{1:"A",8:"D"},K:{1:"O",2:"A",8:"B C R VB U"},L:{1:"S"},M:{1:"M"},N:{132:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:2,C:"IndexedDB"}},8682:function(B){B.exports={A:{A:{2:"I D F E A iB",548:"B"},B:{1:"y BB Q WB S",516:"C N H P J K L"},C:{1:"GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E pB hB",676:"A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O",1700:"0 1 2 3 4 5 6 7 8 9 z AB LB CB JB EB FB"},D:{1:"NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H",676:"P J K L X",804:"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB"},E:{2:"G W 0B YB",676:"cB",804:"I D F E A B C N H dB eB fB XB R U jB kB"},F:{1:"GB HB DB V M T U",2:"E B C lB mB nB oB R VB qB",804:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B",2052:"3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D",292:"A"},K:{2:"A B C R VB U",804:"O"},L:{804:"S"},M:{1:"M"},N:{2:"A",548:"B"},O:{804:"HC"},P:{1:"XB NC OC",804:"G IC JC KC LC MC"},Q:{804:"PC"},R:{804:"QC"},S:{1:"RC"}},B:1,C:"Full Screen API"}},8722:function(B,e){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var r=B=>{if(B[1]===B[2]&&B[3]===B[4]&&B[5]===B[6]){return"#"+B[2]+B[4]+B[6]}return B};e.default=r;B.exports=e.default},8741:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O pB hB"},D:{1:"1 2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},E:{1:"E A B C N H fB XB R U jB kB",2:"G W I D F 0B YB cB dB eB"},F:{1:"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n lB mB nB oB R VB qB U"},G:{1:"xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{1:"PC"},R:{2:"QC"},S:{1:"RC"}},B:5,C:"Case-insensitive CSS attribute selectors"}},8760:function(B){B.exports={A:{A:{1:"D F E A B",16:"I iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{16:"sB KB pB hB",129:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",16:"G W I D F E A B C N H"},E:{16:"G W 0B YB",257:"I D F E A B C N H cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U",16:"E"},G:{769:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{16:"AC"},I:{16:"KB G Q BC CC DC EC IB FC GC"},J:{16:"D A"},K:{16:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{16:"A B"},O:{16:"HC"},P:{16:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{16:"QC"},S:{129:"RC"}},B:1,C:"tabindex global attribute"}},8762:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=parseWsc;var t=r(2043);var n=r(4642);const i=/^\s*(none|medium)(\s+none(\s+(none|currentcolor))?)?\s*$/i;const C=/(^.*var)(.*\(.*--.*\))(.*)/i;const o=B=>`${B[1].toLowerCase()}${B[2]}${B[3].toLowerCase()}`;const a=B=>{const e=C.exec(B);return e?o(e):B.toLowerCase()};function parseWsc(B){if(i.test(B)){return["medium","none","currentcolor"]}let e,r,C;const o=t.list.space(B);if(o.length>1&&(0,n.isStyle)(o[1])&&o[0].toLowerCase()==="none"){o.unshift();e="0"}const s=[];o.forEach(B=>{if((0,n.isStyle)(B)){r=a(B)}else if((0,n.isWidth)(B)){e=a(B)}else if((0,n.isColor)(B)){C=a(B)}else{s.push(B)}});if(s.length){if(!e&&r&&C){e=s.pop()}if(e&&!r&&C){r=s.pop()}if(e&&r&&!C){C=s.pop()}}return[e,r,C]}B.exports=e.default},8770:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q",132:"PB QB RB SB TB UB y BB Q WB S gB bB aB",258:"0 1 2 3 4 5 6 7 8 9 r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{513:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"JC KC LC MC XB NC OC",2:"G",16:"IC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:1,C:"theme-color Meta Tag"}},8774:function(B){B.exports={A:{A:{1:"A B",2:"I D F E iB"},B:{1:"C N H P J K L",516:"y BB Q WB S"},C:{132:"4 5 6 7 8 9 AB LB CB JB EB FB GB",164:"0 1 2 3 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB",516:"HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{420:"0 1 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",516:"2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"A B C N H XB R U jB kB",132:"E fB",164:"D F eB",420:"G W I 0B YB cB dB"},F:{1:"C R VB qB U",2:"E B lB mB nB oB",420:"P J K L X Y Z a b c d e f g h i j k l m n o",516:"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{1:"zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",132:"xB yB",164:"F vB wB",420:"YB rB IB tB uB"},H:{1:"AC"},I:{420:"KB G BC CC DC EC IB FC GC",516:"Q"},J:{420:"D A"},K:{1:"C R VB U",2:"A B",132:"O"},L:{516:"S"},M:{132:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",420:"G"},Q:{132:"PC"},R:{132:"QC"},S:{164:"RC"}},B:4,C:"CSS3 Multiple column layout"}},8778:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{2:"sB KB G W I D F E A B C N H P J pB hB",4:"K L X Y",194:"0 1 2 3 4 5 6 7 8 9 Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{1:"DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",66:"8 9 AB LB CB JB EB FB GB HB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"5 6 7 8 9 AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u lB mB nB oB R VB qB U",66:"0 1 2 3 4 v w x O z"},G:{1:"4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{194:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"MC XB NC OC",2:"G IC JC KC LC"},Q:{1:"PC"},R:{2:"QC"},S:{194:"RC"}},B:1,C:"inputmode attribute"}},8782:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H",516:"P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z pB hB",33:"a b c d e f g h i j k l m n o p q r s t u v"},D:{1:"8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a",33:"0 1 2 3 4 5 6 7 b c d e f g h i j k l m n o p q r s t u v w x O z"},E:{1:"B C N H R U jB kB",2:"G W I D F E A 0B YB cB dB eB fB XB"},F:{1:"0 1 2 3 4 5 6 7 8 9 v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K lB mB nB oB R VB qB U",33:"L X Y Z a b c d e f g h i j k l m n o p q r s t u"},G:{1:"1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D",130:"A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{2:"HC"},P:{33:"G IC JC KC LC MC XB NC OC"},Q:{33:"PC"},R:{33:"QC"},S:{1:"RC"}},B:5,C:"WebRTC Peer-to-peer connections"}},8791:function(B,e){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=plugin;function plugin(B,e,r){class Plugin{constructor(r){this.nodes=[];this.result=r;this.targets=B;this.nodeTypes=e}push(B,e){B._stylehacks=Object.assign({},e,{message:`Bad ${e.identifier}: ${e.hack}`,browsers:this.targets});this.nodes.push(B)}any(B){if(~this.nodeTypes.indexOf(B.type)){r.apply(this,arguments);return!!B._stylehacks}return false}detectAndResolve(...B){this.nodes=[];r.apply(this,B);return this.resolve()}detectAndWarn(...B){this.nodes=[];r.apply(this,B);return this.warn()}resolve(){return this.nodes.forEach(B=>B.remove())}warn(){return this.nodes.forEach(B=>{const{message:e,browsers:r,identifier:t,hack:n}=B._stylehacks;return B.warn(this.result,e,{browsers:r,identifier:t,hack:n})})}}return Plugin}B.exports=e.default},8808:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L y BB Q WB S"},C:{2:"0 1 2 3 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z pB hB",16:"4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{2:"0 1 2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",33:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},E:{2:"0B YB",33:"G W I D F E A B C N H cB dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U",33:"P J K L X Y Z a b c d e f g h i j k l m"},G:{33:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"Q",33:"KB G BC CC DC EC IB FC GC"},J:{33:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"IC JC KC LC MC XB NC OC",33:"G"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:7,C:"CSS Canvas Drawings"}},8818:function(B){B.exports={A:{A:{1:"E A B",2:"I D F iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB",36:"hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",516:"G W I D F E A B C N H"},E:{1:"D F E A B C N H eB fB XB R U jB kB",772:"G W I 0B YB cB dB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T nB oB R VB qB U",2:"E lB",36:"mB"},G:{1:"F vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",4:"YB rB IB uB",516:"tB"},H:{132:"AC"},I:{1:"Q FC GC",36:"BC",516:"KB G EC IB",548:"CC DC"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"CSS3 Background-image options"}},8835:function(B){B.exports=require("url")},8842:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K",260:"y BB Q WB S",3138:"L"},C:{1:"6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB",132:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O pB hB",644:"0 1 2 3 4 5 z"},D:{2:"G W I D F E A B C N H P J K L X Y Z a b",260:"7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",292:"0 1 2 3 4 5 6 c d e f g h i j k l m n o p q r s t u v w x O z"},E:{2:"G W I 0B YB cB dB",292:"D F E A B C N H eB fB XB R U jB kB"},F:{2:"E B C lB mB nB oB R VB qB U",260:"0 1 2 3 4 5 6 7 8 9 u v w x O z AB CB EB FB GB HB DB V M T",292:"P J K L X Y Z a b c d e f g h i j k l m n o p q r s t"},G:{2:"YB rB IB tB uB",292:"F vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G BC CC DC EC IB",260:"Q",292:"FC GC"},J:{2:"D A"},K:{2:"A B C R VB U",292:"O"},L:{260:"S"},M:{1:"M"},N:{2:"A B"},O:{292:"HC"},P:{292:"G IC JC KC LC MC XB NC OC"},Q:{292:"PC"},R:{260:"QC"},S:{644:"RC"}},B:4,C:"CSS clip-path property (for HTML)"}},8861:function(B){B.exports={A:{A:{1:"I D F E A B",2:"iB"},B:{2:"C N H P J K L y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:7,C:"EOT - Embedded OpenType fonts"}},8867:function(B){B.exports={A:{A:{1:"B",4:"I D F E A iB"},B:{1:"C N H P J",129:"K L y BB Q WB S"},C:{1:"0 1 2 I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",4:"sB KB G W pB hB",129:"3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{1:"0 1 2 3 4 5 6 x O z",4:"G W I",129:"7 8 9 D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{4:"G W 0B YB",129:"I D F E A B C N H cB dB eB fB XB R U jB kB"},F:{1:"C k l m n o p q r s t R VB qB U",4:"E B lB mB nB oB",129:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j u v w x O z AB CB EB FB GB HB DB V M T"},G:{4:"YB rB IB",129:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{4:"AC"},I:{4:"BC CC DC",129:"KB G Q EC IB FC GC"},J:{129:"D A"},K:{1:"C R VB U",4:"A B",129:"O"},L:{129:"S"},M:{129:"M"},N:{1:"B",4:"A"},O:{129:"HC"},P:{129:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{129:"QC"},S:{1:"RC"}},B:1,C:"dataset & data-* attributes"}},8887:function(B){B.exports={A:{A:{1:"E A B",2:"I D F iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",132:"G W I D F E A B C N H P J K L X Y Z a b c d e f"},E:{1:"E A B C N H fB XB R U jB kB",2:"0B",4:"YB",132:"G W I D F cB dB eB"},F:{1:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",132:"F YB rB IB tB uB vB wB"},H:{1:"AC"},I:{1:"Q FC GC",2:"BC CC DC",132:"KB G EC IB"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"SVG in HTML img element"}},8889:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(9554));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}var n=(0,t.default)("padding");e.default=n;B.exports=e.default},8900:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"K L y BB Q WB S",2:"C N H P J"},C:{2:"sB",194:"0 1 2 3 4 5 6 7 8 9 KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",16:"G W I D F E A B C N H"},E:{1:"I D F E A B C N H dB eB fB XB R U jB kB",2:"G W 0B YB cB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U"},G:{1:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB"},H:{2:"AC"},I:{1:"Q FC GC",2:"KB G BC CC DC EC IB"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{194:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{194:"RC"}},B:1,C:"Ping attribute"}},8901:function(B,e,r){"use strict";var t=r(9e3);var n=Array.prototype.concat;var i=Array.prototype.slice;var C=B.exports=function swizzle(B){var e=[];for(var r=0,C=B.length;r<C;r++){var o=B[r];if(t(o)){e=n.call(e,i.call(o))}else{e.push(o)}}return e};C.wrap=function(B){return function(){return B(C(arguments))}}},8904:function(B){B.exports={A:{A:{2:"I D F E iB",33:"A B"},B:{1:"y BB Q WB S",33:"C N H P J K L"},C:{1:"T MB NB OB PB QB RB SB TB UB y BB",33:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M pB hB"},D:{1:"6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",33:"0 1 2 3 4 5 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},E:{33:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U",33:"P J K L X Y Z a b c d e f g h i j k l m n o p q r s"},G:{33:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",33:"KB G BC CC DC EC IB FC GC"},J:{33:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{33:"M"},N:{33:"A B"},O:{2:"HC"},P:{33:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{2:"QC"},S:{33:"RC"}},B:5,C:"CSS user-select: none"}},8915:function(B,e,r){"use strict";e.__esModule=true;e.default=void 0;var t=_interopRequireDefault(r(8092));var n=r(699);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _inheritsLoose(B,e){B.prototype=Object.create(e.prototype);B.prototype.constructor=B;B.__proto__=e}var i=function(B){_inheritsLoose(Combinator,B);function Combinator(e){var r;r=B.call(this,e)||this;r.type=n.COMBINATOR;return r}return Combinator}(t.default);e.default=i;B.exports=e.default},8935:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P",260:"J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i"},E:{1:"A B C N H XB R U jB kB",2:"G W I D 0B YB cB dB",132:"F E eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E P J K L lB mB nB",33:"B C oB R VB qB U"},G:{1:"zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB uB vB",132:"F wB xB yB"},H:{33:"AC"},I:{1:"Q GC",2:"KB G BC CC DC EC IB FC"},J:{2:"D A"},K:{1:"O",2:"A",33:"B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"CSS3 object-fit/object-position"}},8945:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L",164:"y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j pB hB"},D:{2:"G W I D F E A B C N H P J K L X Y Z",164:"0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I 0B YB cB",164:"D F E A B C N H dB eB fB XB R U jB kB"},F:{2:"E lB mB nB oB",129:"B C R VB qB U",164:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{2:"YB rB IB tB uB",164:"F vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{132:"AC"},I:{2:"KB G BC CC DC EC IB",164:"Q FC GC"},J:{2:"D",164:"A"},K:{2:"A",129:"B C R VB U",164:"O"},L:{164:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{164:"G IC JC KC LC MC XB NC OC"},Q:{164:"PC"},R:{164:"QC"},S:{1:"RC"}},B:5,C:"CSS box-decoration-break"}},9000:function(B){B.exports=function isArrayish(B){if(!B||typeof B==="string"){return false}return B instanceof Array||Array.isArray(B)||B.length>=0&&(B.splice instanceof Function||Object.getOwnPropertyDescriptor(B,B.length-1)&&B.constructor.name!=="String")}},9035:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{2:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{2:"PC"},R:{1:"QC"},S:{2:"RC"}},B:6,C:"Client Hints: DPR, Width, Viewport-Width"}},9042:function(B){B.exports={A:{A:{1:"A B",2:"I D F E iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"W I D F E A B C N H cB dB eB fB XB R U jB kB",132:"G 0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T VB qB U",2:"E lB mB nB oB",132:"B R"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{1:"AC"},I:{1:"KB Q BC CC DC IB FC GC",4:"G EC"},J:{1:"D A"},K:{1:"B C O R VB U",2:"A"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"input placeholder attribute"}},9051:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",16:"sB KB pB hB"},D:{1:"3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",16:"G W I D F E A B C N H",132:"0 1 2 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},E:{1:"B C N H XB R U jB kB",16:"G W 0B YB",132:"I D F E A cB dB eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 q r s t u v w x O z AB CB EB FB GB HB DB V M T",16:"E B lB mB nB oB R VB",132:"P J K L X Y Z a b c d e f g h i j k l m n o p",260:"C qB U"},G:{1:"ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB rB IB tB uB",132:"F vB wB xB yB zB"},H:{260:"AC"},I:{1:"Q",16:"KB BC CC DC",132:"G EC IB FC GC"},J:{16:"D",132:"A"},K:{1:"O",16:"A B C R VB",260:"U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{132:"HC"},P:{1:"IC JC KC LC MC XB NC OC",132:"G"},Q:{1:"PC"},R:{2:"QC"},S:{1:"RC"}},B:7,C:":default CSS pseudo-class"}},9056:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"H P J K L",2:"C N",257:"y BB Q WB S"},C:{1:"1 2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i pB hB",194:"0 j k l m n o p q r s t u v w x O z"},D:{1:"0 1 2 3 4 5 6 l m n o p q r s t u v w x O z",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k",257:"7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"D F E A B C N H eB fB XB R U jB kB",2:"G W I 0B YB cB dB"},F:{1:"0 1 2 3 4 5 6 7 8 9 f g h i j k l m n o p q r s t u v w x O z AB CB EB FB",2:"E B C P J K L X Y Z a b c d e lB mB nB oB R VB qB U",257:"GB HB DB V M T"},G:{1:"F vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB tB uB"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{1:"PC"},R:{2:"QC"},S:{1:"RC"}},B:7,C:"Speech Synthesis API"}},9069:function(B,e,r){"use strict";e.__esModule=true;e.default=void 0;var t=_interopRequireDefault(r(8092));var n=_interopRequireWildcard(r(699));function _interopRequireWildcard(B){if(B&&B.__esModule){return B}else{var e={};if(B!=null){for(var r in B){if(Object.prototype.hasOwnProperty.call(B,r)){var t=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor(B,r):{};if(t.get||t.set){Object.defineProperty(e,r,t)}else{e[r]=B[r]}}}}e.default=B;return e}}function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _defineProperties(B,e){for(var r=0;r<e.length;r++){var t=e[r];t.enumerable=t.enumerable||false;t.configurable=true;if("value"in t)t.writable=true;Object.defineProperty(B,t.key,t)}}function _createClass(B,e,r){if(e)_defineProperties(B.prototype,e);if(r)_defineProperties(B,r);return B}function _inheritsLoose(B,e){B.prototype=Object.create(e.prototype);B.prototype.constructor=B;B.__proto__=e}var i=function(B){_inheritsLoose(Container,B);function Container(e){var r;r=B.call(this,e)||this;if(!r.nodes){r.nodes=[]}return r}var e=Container.prototype;e.append=function append(B){B.parent=this;this.nodes.push(B);return this};e.prepend=function prepend(B){B.parent=this;this.nodes.unshift(B);return this};e.at=function at(B){return this.nodes[B]};e.index=function index(B){if(typeof B==="number"){return B}return this.nodes.indexOf(B)};e.removeChild=function removeChild(B){B=this.index(B);this.at(B).parent=undefined;this.nodes.splice(B,1);var e;for(var r in this.indexes){e=this.indexes[r];if(e>=B){this.indexes[r]=e-1}}return this};e.removeAll=function removeAll(){for(var B=this.nodes,e=Array.isArray(B),r=0,B=e?B:B[Symbol.iterator]();;){var t;if(e){if(r>=B.length)break;t=B[r++]}else{r=B.next();if(r.done)break;t=r.value}var n=t;n.parent=undefined}this.nodes=[];return this};e.empty=function empty(){return this.removeAll()};e.insertAfter=function insertAfter(B,e){e.parent=this;var r=this.index(B);this.nodes.splice(r+1,0,e);e.parent=this;var t;for(var n in this.indexes){t=this.indexes[n];if(r<=t){this.indexes[n]=t+1}}return this};e.insertBefore=function insertBefore(B,e){e.parent=this;var r=this.index(B);this.nodes.splice(r,0,e);e.parent=this;var t;for(var n in this.indexes){t=this.indexes[n];if(t<=r){this.indexes[n]=t+1}}return this};e._findChildAtPosition=function _findChildAtPosition(B,e){var r=undefined;this.each(function(t){if(t.atPosition){var n=t.atPosition(B,e);if(n){r=n;return false}}else if(t.isAtPosition(B,e)){r=t;return false}});return r};e.atPosition=function atPosition(B,e){if(this.isAtPosition(B,e)){return this._findChildAtPosition(B,e)||this}else{return undefined}};e._inferEndPosition=function _inferEndPosition(){if(this.last&&this.last.source&&this.last.source.end){this.source=this.source||{};this.source.end=this.source.end||{};Object.assign(this.source.end,this.last.source.end)}};e.each=function each(B){if(!this.lastEach){this.lastEach=0}if(!this.indexes){this.indexes={}}this.lastEach++;var e=this.lastEach;this.indexes[e]=0;if(!this.length){return undefined}var r,t;while(this.indexes[e]<this.length){r=this.indexes[e];t=B(this.at(r),r);if(t===false){break}this.indexes[e]+=1}delete this.indexes[e];if(t===false){return false}};e.walk=function walk(B){return this.each(function(e,r){var t=B(e,r);if(t!==false&&e.length){t=e.walk(B)}if(t===false){return false}})};e.walkAttributes=function walkAttributes(B){var e=this;return this.walk(function(r){if(r.type===n.ATTRIBUTE){return B.call(e,r)}})};e.walkClasses=function walkClasses(B){var e=this;return this.walk(function(r){if(r.type===n.CLASS){return B.call(e,r)}})};e.walkCombinators=function walkCombinators(B){var e=this;return this.walk(function(r){if(r.type===n.COMBINATOR){return B.call(e,r)}})};e.walkComments=function walkComments(B){var e=this;return this.walk(function(r){if(r.type===n.COMMENT){return B.call(e,r)}})};e.walkIds=function walkIds(B){var e=this;return this.walk(function(r){if(r.type===n.ID){return B.call(e,r)}})};e.walkNesting=function walkNesting(B){var e=this;return this.walk(function(r){if(r.type===n.NESTING){return B.call(e,r)}})};e.walkPseudos=function walkPseudos(B){var e=this;return this.walk(function(r){if(r.type===n.PSEUDO){return B.call(e,r)}})};e.walkTags=function walkTags(B){var e=this;return this.walk(function(r){if(r.type===n.TAG){return B.call(e,r)}})};e.walkUniversals=function walkUniversals(B){var e=this;return this.walk(function(r){if(r.type===n.UNIVERSAL){return B.call(e,r)}})};e.split=function split(B){var e=this;var r=[];return this.reduce(function(t,n,i){var C=B.call(e,n);r.push(n);if(C){t.push(r);r=[]}else if(i===e.length-1){t.push(r)}return t},[])};e.map=function map(B){return this.nodes.map(B)};e.reduce=function reduce(B,e){return this.nodes.reduce(B,e)};e.every=function every(B){return this.nodes.every(B)};e.some=function some(B){return this.nodes.some(B)};e.filter=function filter(B){return this.nodes.filter(B)};e.sort=function sort(B){return this.nodes.sort(B)};e.toString=function toString(){return this.map(String).join("")};_createClass(Container,[{key:"first",get:function get(){return this.at(0)}},{key:"last",get:function get(){return this.at(this.length-1)}},{key:"length",get:function get(){return this.nodes.length}}]);return Container}(t.default);e.default=i;B.exports=e.default},9072:function(B){B.exports={A:{A:{1:"E A B",2:"I D F iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"I D F E A B C N H cB dB eB fB XB R U jB kB",2:"G 0B YB",16:"W"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T mB nB oB R VB qB U",16:"E lB"},G:{1:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB rB IB"},H:{2:"AC"},I:{1:"KB G Q DC EC IB",16:"BC CC",132:"FC GC"},J:{1:"D A"},K:{1:"A B C R VB U",132:"O"},L:{132:"S"},M:{132:"M"},N:{1:"A B"},O:{1:"HC"},P:{2:"G",132:"IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{132:"QC"},S:{1:"RC"}},B:7,C:"KeyboardEvent.which"}},9078:function(B){B.exports={A:{A:{1:"B",2:"I D F E A iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W"},E:{1:"I D F E A B C N H cB dB eB fB XB R U jB kB",2:"G W 0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T R VB qB U",2:"E B lB mB nB oB"},G:{1:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB"},H:{1:"AC"},I:{1:"G Q EC IB FC GC",2:"KB BC CC DC"},J:{1:"A",2:"D"},K:{1:"C O R VB U",2:"A B"},L:{1:"S"},M:{1:"M"},N:{1:"B",2:"A"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"hidden attribute"}},9082:function(B){B.exports={A:{A:{1:"B",2:"I D F E A iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB hB",2:"sB KB pB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H cB dB eB fB XB R U jB kB",2:"0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"B",2:"A"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:7,C:"CSS pointer-events (for HTML)"}},9084:function(B){B.exports={A:{A:{1:"E A B",132:"I D F iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",132:"sB KB G W I D F E A B C N H P J K L X Y Z a b c pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"W I D F E A B C N H cB dB eB fB XB R U jB kB",132:"G 0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T nB oB R VB qB U",132:"E lB mB"},G:{2:"YB rB IB",772:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC FC GC",132:"EC IB"},J:{260:"D A"},K:{1:"B C O R VB U",132:"A"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{2:"G",1028:"IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1028:"QC"},S:{1:"RC"}},B:4,C:"CSS background-attachment"}},9087:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(2043));var n=_interopRequireWildcard(r(6486));var i=_interopRequireDefault(r(1940));function _getRequireWildcardCache(){if(typeof WeakMap!=="function")return null;var B=new WeakMap;_getRequireWildcardCache=function(){return B};return B}function _interopRequireWildcard(B){if(B&&B.__esModule){return B}if(B===null||typeof B!=="object"&&typeof B!=="function"){return{default:B}}var e=_getRequireWildcardCache();if(e&&e.has(B)){return e.get(B)}var r={};var t=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var n in B){if(Object.prototype.hasOwnProperty.call(B,n)){var i=t?Object.getOwnPropertyDescriptor(B,n):null;if(i&&(i.get||i.set)){Object.defineProperty(r,n,i)}else{r[n]=B[n]}}}r.default=B;if(e){e.set(B,r)}return r}function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}const C=["em","ex","ch","rem","vw","vh","vmin","vmax","cm","mm","q","in","pt","pc","px"];function parseWord(B,e,r){const t=(0,n.unit)(B.value);if(t){const n=Number(t.number);const o=t.unit;if(n===0){B.value=r||!~C.indexOf(o.toLowerCase())&&o!=="%"?0+o:0}else{B.value=(0,i.default)(n,o,e);if(typeof e.precision==="number"&&o.toLowerCase()==="px"&&~t.number.indexOf(".")){const r=Math.pow(10,e.precision);B.value=Math.round(parseFloat(B.value)*r)/r+o}}}}function clampOpacity(B){const e=(0,n.unit)(B.value);if(!e){return}let r=Number(e.number);if(r>1){B.value=e.unit==="%"?r+e.unit:1+e.unit}else if(r<0){B.value=0+e.unit}}function shouldKeepUnit(B){const{parent:e}=B;const r=B.prop.toLowerCase();return~B.value.indexOf("%")&&(r==="max-height"||r==="height")||e.parent&&e.parent.name&&e.parent.name.toLowerCase()==="keyframes"&&r==="stroke-dasharray"||r==="stroke-dashoffset"||r==="stroke-width"||r==="line-height"}function transform(B,e){const r=e.prop.toLowerCase();if(~r.indexOf("flex")||r.indexOf("--")===0){return}e.value=(0,n.default)(e.value).walk(t=>{const i=t.value.toLowerCase();if(t.type==="word"){parseWord(t,B,shouldKeepUnit(e));if(r==="opacity"||r==="shape-image-threshold"){clampOpacity(t)}}else if(t.type==="function"){if(i==="calc"||i==="min"||i==="max"||i==="clamp"||i==="hsl"||i==="hsla"){(0,n.walk)(t.nodes,e=>{if(e.type==="word"){parseWord(e,B,true)}});return false}if(i==="url"){return false}}}).toString()}const o="postcss-convert-values";var a=t.default.plugin(o,(B={precision:false})=>{return e=>e.walkDecls(transform.bind(null,B))});e.default=a;B.exports=e.default},9118:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"C N H P J K L",2:"y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB",386:"Z a"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:6,C:"Dynamic Adaptive Streaming over HTTP (MPEG-DASH)"}},9149:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{1:"RC"}},B:7,C:"Permissions API"}},9170:function(B){B.exports={A:{A:{1:"B",2:"I D F E A iB"},B:{1:"C N H P J K L",129:"y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{129:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{257:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{129:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",513:"E B C lB mB nB oB R VB qB U"},G:{1026:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{1026:"AC"},I:{1:"KB G BC CC DC EC IB",513:"Q FC GC"},J:{1:"D",1026:"A"},K:{1026:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1026:"A B"},O:{257:"HC"},P:{1:"IC JC KC LC MC XB NC OC",513:"G"},Q:{129:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"PNG favicons"}},9182:function(B){B.exports={A:{A:{1:"A B",2:"I D F E iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB"},H:{2:"AC"},I:{1:"Q IB FC GC",4:"KB G BC CC DC EC"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"Range input type"}},9215:function(B,e){"use strict";e.__esModule=true;e.default=ensureObject;function ensureObject(B){for(var e=arguments.length,r=new Array(e>1?e-1:0),t=1;t<e;t++){r[t-1]=arguments[t]}while(r.length>0){var n=r.shift();if(!B[n]){B[n]={}}B=B[n]}}B.exports=e.default},9235:function(B){B.exports={A:{A:{2:"E A B iB",8:"I D F"},B:{2:"C N H P J K L y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p",2:"3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",130:"0 1 2 q r s t u v w x O z"},E:{1:"G W I D F E A B C N H YB cB dB eB fB XB R U jB kB",2:"0B"},F:{1:"E B C P J K L X Y Z a b c lB mB nB oB R VB qB U",2:"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x O z AB CB EB FB GB HB DB V M T",130:"d e f g h i j k l m n o"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{258:"AC"},I:{1:"KB G EC IB FC GC",2:"Q BC CC DC"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{130:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"G",130:"IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{130:"QC"},S:{2:"RC"}},B:2,C:"SVG fonts"}},9282:function(B){B.exports={A:{A:{1:"E A B",2:"I D F iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"I D F E A B C N H cB dB eB fB XB R U jB kB",2:"G 0B YB",16:"W"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T R VB qB U",2:"E lB mB nB oB"},G:{1:"F rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB"},H:{1:"AC"},I:{1:"KB G Q DC EC IB FC GC",16:"BC CC"},J:{1:"D A"},K:{1:"B C O R VB U",2:"A"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"document.head"}},9283:function(B,e){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=joinGridVal;function joinGridVal(B){return B.join(" / ").trim()}B.exports=e.default},9291:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"L y BB Q WB S",2:"C N H P J K"},C:{1:"0 1 2 3 4 5 6 7 8 9 KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB",2:"sB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"W I D F E A B C N H cB dB eB fB XB R U jB kB",2:"G 0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U"},G:{1:"F IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB rB"},H:{2:"AC"},I:{1:"Q FC GC",2:"BC CC DC",132:"KB G EC IB"},J:{1:"A",2:"D"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:7,C:"High-quality kerning pairs & ligatures"}},9304:function(B){B.exports={A:{A:{1:"A B",16:"iB",132:"I D F E"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H cB dB eB fB XB R U jB kB",2:"0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T mB nB oB R VB qB U",16:"E lB"},G:{1:"F rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB"},H:{1:"AC"},I:{1:"KB G Q DC EC IB FC GC",16:"BC CC"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"Element.insertAdjacentHTML()"}},9327:function(B){B.exports={A:{A:{132:"I D F E A B iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n pB hB",322:"o p q r s"},D:{1:"0 1 2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I",16:"D",33:"F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},E:{1:"B C N H R U jB kB",2:"G 0B YB",16:"W",33:"I D F E A cB dB eB fB XB"},F:{1:"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U",33:"P J K L X Y Z a b c d e f g h i j k l m"},G:{1:"1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB rB IB",33:"F tB uB vB wB xB yB zB ZB"},H:{2:"AC"},I:{1:"Q",2:"BC CC DC",33:"KB G EC IB FC GC"},J:{33:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{36:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",33:"G"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"CSS writing-mode property"}},9335:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L",194:"y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB",194:"QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB lB mB nB oB R VB qB U",194:"EB FB GB HB DB V M T"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:7,C:"Native Filesystem API"}},9353:function(B){"use strict";var e="Function.prototype.bind called on incompatible ";var r=Array.prototype.slice;var t=Object.prototype.toString;var n="[object Function]";B.exports=function bind(B){var i=this;if(typeof i!=="function"||t.call(i)!==n){throw new TypeError(e+i)}var C=r.call(arguments,1);var o;var a=function(){if(this instanceof o){var e=i.apply(this,C.concat(r.call(arguments)));if(Object(e)===e){return e}return this}else{return i.apply(B,C.concat(r.call(arguments)))}};var s=Math.max(0,i.length-C.length);var u=[];for(var f=0;f<s;f++){u.push("$"+f)}o=Function("binder","return function ("+u.join(",")+"){ return binder.apply(this,arguments); }")(a);if(i.prototype){var l=function Empty(){};l.prototype=i.prototype;o.prototype=new l;l.prototype=null}return o}},9362:function(B){B.exports={A:{A:{1:"A B",2:"I D F iB",132:"E"},B:{1:"C N H P J K L y BB Q WB S"},C:{2:"sB KB",260:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"W I D F E A B C N H cB dB eB fB XB R U jB kB",2:"G 0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U"},G:{16:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{16:"KB G Q BC CC DC EC IB FC GC"},J:{16:"D A"},K:{16:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"B",2:"A"},O:{16:"HC"},P:{1:"IC JC KC LC MC XB NC OC",16:"G"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:5,C:"Resource Hints: dns-prefetch"}},9364:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",16:"G W I D F E A B C N H"},E:{1:"I D F E A B C N H cB dB eB fB XB R U jB kB",16:"G W 0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U"},G:{1:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB rB IB"},H:{2:"AC"},I:{1:"KB G Q DC EC IB FC GC",16:"BC CC"},J:{1:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{2:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{2:"RC"}},B:7,C:"Element.scrollIntoViewIfNeeded()"}},9372:function(B){B.exports={A:{A:{1:"A B",2:"I D F E iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E"},E:{1:"B C N H XB R U jB kB",2:"G 0B YB",16:"W",388:"I D F E A cB dB eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U",2:"E"},G:{1:"ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB rB IB",388:"F tB uB vB wB xB yB zB"},H:{2:"AC"},I:{1:"Q GC",2:"KB G BC CC DC EC IB FC"},J:{1:"A",2:"D"},K:{1:"A B C R VB U",132:"O"},L:{1:"S"},M:{1:"M"},N:{132:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"Pattern attribute for input fields"}},9392:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L",1028:"y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB",1028:"JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z lB mB nB oB R VB qB U",1028:"0 1 2 3 4 5 6 7 8 9 AB CB EB FB GB HB DB V M T"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"BC FC GC",132:"KB G CC DC EC IB"},J:{2:"D A"},K:{2:"A B C R VB U",516:"O"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"LC MC XB NC OC",132:"G",516:"IC JC KC"},Q:{1:"PC"},R:{516:"QC"},S:{260:"RC"}},B:7,C:"Network Information API"}},9402:function(B){B.exports={A:{A:{1:"E A B",2:"I D F iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",132:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h"},E:{1:"D F E A B C N H dB eB fB XB R U jB kB",16:"I 0B YB",132:"G W cB"},F:{1:"0 1 2 3 4 5 6 7 8 9 K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T U",2:"E B lB mB nB oB R VB qB",16:"C",132:"P J"},G:{1:"F wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB rB IB",132:"tB uB vB"},H:{2:"AC"},I:{1:"Q FC GC",16:"BC CC",132:"KB G DC EC IB"},J:{132:"D A"},K:{1:"O U",2:"A B R VB",16:"C"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:5,C:"KeyboardEvent.location"}},9407:function(B){B.exports={A:{A:{1:"E A B",2:"I D F iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H YB cB dB eB fB XB R U jB kB",16:"0B"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U",16:"E"},G:{1:"F rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB"},H:{1:"AC"},I:{1:"KB G Q DC EC IB FC GC",16:"BC CC"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"Node.textContent"}},9422:function(B){var e="(".charCodeAt(0);var r=")".charCodeAt(0);var t="'".charCodeAt(0);var n='"'.charCodeAt(0);var i="\\".charCodeAt(0);var C="/".charCodeAt(0);var o=",".charCodeAt(0);var a=":".charCodeAt(0);var s="*".charCodeAt(0);B.exports=function(B){var u=[];var f=B;var l,c,p,A,d,h,E;var D=0;var v=f.charCodeAt(D);var F=f.length;var G=[{nodes:u}];var O=0;var M;var g="";var I="";var H="";while(D<F){if(v<=32){l=D;do{l+=1;v=f.charCodeAt(l)}while(v<=32);A=f.slice(D,l);p=u[u.length-1];if(v===r&&O){H=A}else if(p&&p.type==="div"){p.after=A}else if(v===o||v===a||v===C&&f.charCodeAt(l+1)!==s){I=A}else{u.push({type:"space",sourceIndex:D,value:A})}D=l}else if(v===t||v===n){l=D;c=v===t?"'":'"';A={type:"string",sourceIndex:D,quote:c};do{d=false;l=f.indexOf(c,l+1);if(~l){h=l;while(f.charCodeAt(h-1)===i){h-=1;d=!d}}else{f+=c;l=f.length-1;A.unclosed=true}}while(d);A.value=f.slice(D+1,l);u.push(A);D=l+1;v=f.charCodeAt(D)}else if(v===C&&f.charCodeAt(D+1)===s){A={type:"comment",sourceIndex:D};l=f.indexOf("*/",D);if(l===-1){A.unclosed=true;l=f.length}A.value=f.slice(D+2,l);u.push(A);D=l+2;v=f.charCodeAt(D)}else if(v===C||v===o||v===a){A=f[D];u.push({type:"div",sourceIndex:D-I.length,value:A,before:I,after:""});I="";D+=1;v=f.charCodeAt(D)}else if(e===v){l=D;do{l+=1;v=f.charCodeAt(l)}while(v<=32);A={type:"function",sourceIndex:D-g.length,value:g,before:f.slice(D+1,l)};D=l;if(g==="url"&&v!==t&&v!==n){l-=1;do{d=false;l=f.indexOf(")",l+1);if(~l){h=l;while(f.charCodeAt(h-1)===i){h-=1;d=!d}}else{f+=")";l=f.length-1;A.unclosed=true}}while(d);E=l;do{E-=1;v=f.charCodeAt(E)}while(v<=32);if(D!==E+1){A.nodes=[{type:"word",sourceIndex:D,value:f.slice(D,E+1)}]}else{A.nodes=[]}if(A.unclosed&&E+1!==l){A.after="";A.nodes.push({type:"space",sourceIndex:E+1,value:f.slice(E+1,l)})}else{A.after=f.slice(E+1,l)}D=l+1;v=f.charCodeAt(D);u.push(A)}else{O+=1;A.after="";u.push(A);G.push(A);u=A.nodes=[];M=A}g=""}else if(r===v&&O){D+=1;v=f.charCodeAt(D);M.after=H;H="";O-=1;G.pop();M=G[O];u=M.nodes}else{l=D;do{if(v===i){l+=1}l+=1;v=f.charCodeAt(l)}while(l<F&&!(v<=32||v===t||v===n||v===o||v===a||v===C||v===e||v===r&&O));A=f.slice(D,l);if(e===v){g=A}else{u.push({type:"word",sourceIndex:D,value:A})}D=l}}for(D=G.length-1;D;D-=1){G[D].unclosed=true}return G[0].nodes}},9430:function(B,e,r){"use strict";e.__esModule=true;e.unescapeValue=unescapeValue;e.default=void 0;var t=_interopRequireDefault(r(9925));var n=_interopRequireDefault(r(8185));var i=_interopRequireDefault(r(3398));var C=r(699);var o;function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _defineProperties(B,e){for(var r=0;r<e.length;r++){var t=e[r];t.enumerable=t.enumerable||false;t.configurable=true;if("value"in t)t.writable=true;Object.defineProperty(B,t.key,t)}}function _createClass(B,e,r){if(e)_defineProperties(B.prototype,e);if(r)_defineProperties(B,r);return B}function _inheritsLoose(B,e){B.prototype=Object.create(e.prototype);B.prototype.constructor=B;B.__proto__=e}var a=r(1669),s=a.deprecate;var u=/^('|")(.*)\1$/;var f=s(function(){},"Assigning an attribute a value containing characters that might need to be escaped is deprecated. "+"Call attribute.setValue() instead.");var l=s(function(){},"Assigning attr.quoted is deprecated and has no effect. Assign to attr.quoteMark instead.");var c=s(function(){},"Constructing an Attribute selector with a value without specifying quoteMark is deprecated. Note: The value should be unescaped now.");function unescapeValue(B){var e=false;var r=null;var t=B;var i=t.match(u);if(i){r=i[1];t=i[2]}t=(0,n.default)(t);if(t!==B){e=true}return{deprecatedUsage:e,unescaped:t,quoteMark:r}}function handleDeprecatedContructorOpts(B){if(B.quoteMark!==undefined){return B}if(B.value===undefined){return B}c();var e=unescapeValue(B.value),r=e.quoteMark,t=e.unescaped;if(!B.raws){B.raws={}}if(B.raws.value===undefined){B.raws.value=B.value}B.value=t;B.quoteMark=r;return B}var p=function(B){_inheritsLoose(Attribute,B);function Attribute(e){var r;if(e===void 0){e={}}r=B.call(this,handleDeprecatedContructorOpts(e))||this;r.type=C.ATTRIBUTE;r.raws=r.raws||{};Object.defineProperty(r.raws,"unquoted",{get:s(function(){return r.value},"attr.raws.unquoted is deprecated. Call attr.value instead."),set:s(function(){return r.value},"Setting attr.raws.unquoted is deprecated and has no effect. attr.value is unescaped by default now.")});r._constructed=true;return r}var e=Attribute.prototype;e.getQuotedValue=function getQuotedValue(B){if(B===void 0){B={}}var e=this._determineQuoteMark(B);var r=A[e];var n=(0,t.default)(this._value,r);return n};e._determineQuoteMark=function _determineQuoteMark(B){return B.smart?this.smartQuoteMark(B):this.preferredQuoteMark(B)};e.setValue=function setValue(B,e){if(e===void 0){e={}}this._value=B;this._quoteMark=this._determineQuoteMark(e);this._syncRawValue()};e.smartQuoteMark=function smartQuoteMark(B){var e=this.value;var r=e.replace(/[^']/g,"").length;var n=e.replace(/[^"]/g,"").length;if(r+n===0){var i=(0,t.default)(e,{isIdentifier:true});if(i===e){return Attribute.NO_QUOTE}else{var C=this.preferredQuoteMark(B);if(C===Attribute.NO_QUOTE){var o=this.quoteMark||B.quoteMark||Attribute.DOUBLE_QUOTE;var a=A[o];var s=(0,t.default)(e,a);if(s.length<i.length){return o}}return C}}else if(n===r){return this.preferredQuoteMark(B)}else if(n<r){return Attribute.DOUBLE_QUOTE}else{return Attribute.SINGLE_QUOTE}};e.preferredQuoteMark=function preferredQuoteMark(B){var e=B.preferCurrentQuoteMark?this.quoteMark:B.quoteMark;if(e===undefined){e=B.preferCurrentQuoteMark?B.quoteMark:this.quoteMark}if(e===undefined){e=Attribute.DOUBLE_QUOTE}return e};e._syncRawValue=function _syncRawValue(){var B=(0,t.default)(this._value,A[this.quoteMark]);if(B===this._value){if(this.raws){delete this.raws.value}}else{this.raws.value=B}};e._handleEscapes=function _handleEscapes(B,e){if(this._constructed){var r=(0,t.default)(e,{isIdentifier:true});if(r!==e){this.raws[B]=r}else{delete this.raws[B]}}};e._spacesFor=function _spacesFor(B){var e={before:"",after:""};var r=this.spaces[B]||{};var t=this.raws.spaces&&this.raws.spaces[B]||{};return Object.assign(e,r,t)};e._stringFor=function _stringFor(B,e,r){if(e===void 0){e=B}if(r===void 0){r=defaultAttrConcat}var t=this._spacesFor(e);return r(this.stringifyProperty(B),t)};e.offsetOf=function offsetOf(B){var e=1;var r=this._spacesFor("attribute");e+=r.before.length;if(B==="namespace"||B==="ns"){return this.namespace?e:-1}if(B==="attributeNS"){return e}e+=this.namespaceString.length;if(this.namespace){e+=1}if(B==="attribute"){return e}e+=this.stringifyProperty("attribute").length;e+=r.after.length;var t=this._spacesFor("operator");e+=t.before.length;var n=this.stringifyProperty("operator");if(B==="operator"){return n?e:-1}e+=n.length;e+=t.after.length;var i=this._spacesFor("value");e+=i.before.length;var C=this.stringifyProperty("value");if(B==="value"){return C?e:-1}e+=C.length;e+=i.after.length;var o=this._spacesFor("insensitive");e+=o.before.length;if(B==="insensitive"){return this.insensitive?e:-1}return-1};e.toString=function toString(){var B=this;var e=[this.rawSpaceBefore,"["];e.push(this._stringFor("qualifiedAttribute","attribute"));if(this.operator&&(this.value||this.value==="")){e.push(this._stringFor("operator"));e.push(this._stringFor("value"));e.push(this._stringFor("insensitiveFlag","insensitive",function(e,r){if(e.length>0&&!B.quoted&&r.before.length===0&&!(B.spaces.value&&B.spaces.value.after)){r.before=" "}return defaultAttrConcat(e,r)}))}e.push("]");e.push(this.rawSpaceAfter);return e.join("")};_createClass(Attribute,[{key:"quoted",get:function get(){var B=this.quoteMark;return B==="'"||B==='"'},set:function set(B){l()}},{key:"quoteMark",get:function get(){return this._quoteMark},set:function set(B){if(!this._constructed){this._quoteMark=B;return}if(this._quoteMark!==B){this._quoteMark=B;this._syncRawValue()}}},{key:"qualifiedAttribute",get:function get(){return this.qualifiedName(this.raws.attribute||this.attribute)}},{key:"insensitiveFlag",get:function get(){return this.insensitive?"i":""}},{key:"value",get:function get(){return this._value},set:function set(B){if(this._constructed){var e=unescapeValue(B),r=e.deprecatedUsage,t=e.unescaped,n=e.quoteMark;if(r){f()}if(t===this._value&&n===this._quoteMark){return}this._value=t;this._quoteMark=n;this._syncRawValue()}else{this._value=B}}},{key:"attribute",get:function get(){return this._attribute},set:function set(B){this._handleEscapes("attribute",B);this._attribute=B}}]);return Attribute}(i.default);e.default=p;p.NO_QUOTE=null;p.SINGLE_QUOTE="'";p.DOUBLE_QUOTE='"';var A=(o={"'":{quotes:"single",wrap:true},'"':{quotes:"double",wrap:true}},o[null]={isIdentifier:true},o);function defaultAttrConcat(B,e){return""+e.before+B+e.after}},9438:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L y",578:"BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB pB hB",194:"FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y",578:"BB Q WB S gB bB aB"},E:{2:"G W I D F E A B 0B YB cB dB eB fB XB",322:"C N H R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{194:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:7,C:"WebGPU"}},9481:function(B){B.exports={A:{A:{1:"D F E A B",2:"iB",8:"I"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H 0B YB cB dB eB XB R U jB kB",1025:"fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{1:"F wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB rB IB",132:"tB uB vB"},H:{2:"AC"},I:{1:"KB Q FC GC",260:"BC CC DC",513:"G EC IB"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:2,C:"CSS position:fixed"}},9491:function(B){B.exports={A:{A:{2:"I D F E iB",129:"A B"},B:{1:"y BB Q WB S",129:"C N",1025:"H P J K L"},C:{2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g pB hB",513:"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{1:"0 1 2 3 4 5 6 7 8 9 I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W"},E:{1:"W I D F E A B C N H cB dB eB fB XB R U jB kB",2:"G 0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{388:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB BC CC DC",388:"G Q EC IB FC GC"},J:{2:"D",388:"A"},K:{1:"A B C R VB U",388:"O"},L:{388:"S"},M:{641:"M"},N:{388:"A B"},O:{388:"HC"},P:{388:"G IC JC KC LC MC XB NC OC"},Q:{388:"PC"},R:{388:"QC"},S:{513:"RC"}},B:1,C:"Number input type"}},9515:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"y BB Q WB S",33:"C N H P J K L"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{1:"6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 G W I D F E A B C N H P J K L X Y Z a b c d f g h i j k l m n o p q r s t u v w x O z",258:"e"},E:{2:"G W I D F E A B C N H 0B YB dB eB fB XB R U jB kB",258:"cB"},F:{1:"0 1 2 3 4 5 6 7 8 9 v x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u w lB mB nB oB R VB qB U"},G:{2:"YB rB IB",33:"F tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{33:"M"},N:{161:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:7,C:"CSS text-size-adjust"}},9521:function(B){B.exports={"align-content":"normal","align-items":"normal","align-self":"auto","animation-delay":"0s","animation-direction":"normal","animation-duration":"0s","animation-fill-mode":"none","animation-iteration-count":"1","animation-name":"none","animation-timing-function":"ease",appearance:"auto",azimuth:"center","backdrop-filter":"none","background-attachment":"scroll","background-blend-mode":"normal","background-image":"none","background-position":"0% 0%","background-position-x":"left","background-position-y":"top","background-repeat":"repeat","block-overflow":"clip","block-size":"auto","border-block-style":"none","border-block-width":"medium","border-block-end-style":"none","border-block-end-width":"medium","border-block-start-style":"none","border-block-start-width":"medium","border-bottom-left-radius":"0","border-bottom-right-radius":"0","border-bottom-style":"none","border-bottom-width":"medium","border-end-end-radius":"0","border-end-start-radius":"0","border-image-outset":"0","border-image-slice":"100%","border-image-source":"none","border-image-width":"1","border-inline-style":"none","border-inline-width":"medium","border-inline-end-style":"none","border-inline-end-width":"medium","border-inline-start-style":"none","border-inline-start-width":"medium","border-left-style":"none","border-left-width":"medium","border-right-style":"none","border-right-width":"medium","border-spacing":"0","border-start-end-radius":"0","border-start-start-radius":"0","border-top-left-radius":"0","border-top-right-radius":"0","border-top-style":"none","border-top-width":"medium",bottom:"auto","box-decoration-break":"slice","box-shadow":"none","break-after":"auto","break-before":"auto","break-inside":"auto","caption-side":"top","caret-color":"auto",clear:"none",clip:"auto","clip-path":"none","column-count":"auto","column-gap":"normal","column-rule-style":"none","column-rule-width":"medium","column-span":"none","column-width":"auto",contain:"none",content:"normal","counter-increment":"none","counter-reset":"none",cursor:"auto",direction:"ltr","empty-cells":"show",filter:"none","flex-basis":"auto","flex-direction":"row","flex-grow":"0","flex-shrink":"1","flex-wrap":"nowrap",float:"none","font-feature-settings":"normal","font-kerning":"auto","font-language-override":"normal","font-optical-sizing":"auto","font-variation-settings":"normal","font-size":"medium","font-size-adjust":"none","font-stretch":"normal","font-style":"normal","font-variant":"normal","font-variant-alternates":"normal","font-variant-caps":"normal","font-variant-east-asian":"normal","font-variant-ligatures":"normal","font-variant-numeric":"normal","font-variant-position":"normal","font-weight":"normal","grid-auto-columns":"auto","grid-auto-flow":"row","grid-auto-rows":"auto","grid-column-end":"auto","grid-column-gap":"0","grid-column-start":"auto","grid-row-end":"auto","grid-row-gap":"0","grid-row-start":"auto","grid-template-areas":"none","grid-template-columns":"none","grid-template-rows":"none","hanging-punctuation":"none",height:"auto",hyphens:"manual","image-orientation":"0deg","image-rendering":"auto","image-resolution":"1dppx","ime-mode":"auto","initial-letter":"normal","initial-letter-align":"auto","inline-size":"auto",inset:"auto","inset-block":"auto","inset-block-end":"auto","inset-block-start":"auto","inset-inline":"auto","inset-inline-end":"auto","inset-inline-start":"auto",isolation:"auto","justify-content":"normal","justify-items":"legacy","justify-self":"auto",left:"auto","letter-spacing":"normal","line-break":"auto","line-clamp":"none","line-height":"normal","list-style-image":"none","list-style-type":"disc","margin-block":"0","margin-block-end":"0","margin-block-start":"0","margin-bottom":"0","margin-inline":"0","margin-inline-end":"0","margin-inline-start":"0","margin-left":"0","margin-right":"0","margin-top":"0","mask-border-mode":"alpha","mask-border-outset":"0","mask-border-slice":"0","mask-border-source":"none","mask-border-width":"auto","mask-composite":"add","mask-image":"none","mask-position":"center","mask-size":"auto","max-block-size":"0","max-height":"none","max-inline-size":"0","max-lines":"none","max-width":"none","min-block-size":"0","min-height":"auto","min-inline-size":"0","min-width":"auto","mix-blend-mode":"normal","object-fit":"fill","offset-anchor":"auto","offset-distance":"0","offset-path":"none","offset-position":"auto","offset-rotate":"auto",opacity:"1.0",order:"0",orphans:"2","outline-offset":"0","outline-style":"none","outline-width":"medium","overflow-anchor":"auto","overflow-block":"auto","overflow-inline":"auto","overflow-wrap":"normal","padding-block":"0","padding-block-end":"0","padding-block-start":"0","padding-bottom":"0","padding-inline":"0","padding-inline-end":"0","padding-inline-start":"0","padding-left":"0","padding-right":"0","padding-top":"0","page-break-after":"auto","page-break-before":"auto","page-break-inside":"auto","paint-order":"normal",perspective:"none","place-content":"normal","pointer-events":"auto",position:"static",resize:"none",right:"auto",rotate:"none","row-gap":"normal","ruby-position":"over",scale:"none","scrollbar-color":"auto","scrollbar-width":"auto","scroll-behavior":"auto","scroll-margin":"0","scroll-margin-block":"0","scroll-margin-block-start":"0","scroll-margin-block-end":"0","scroll-margin-bottom":"0","scroll-margin-inline":"0","scroll-margin-inline-start":"0","scroll-margin-inline-end":"0","scroll-margin-left":"0","scroll-margin-right":"0","scroll-margin-top":"0","scroll-padding":"auto","scroll-padding-block":"auto","scroll-padding-block-start":"auto","scroll-padding-block-end":"auto","scroll-padding-bottom":"auto","scroll-padding-inline":"auto","scroll-padding-inline-start":"auto","scroll-padding-inline-end":"auto","scroll-padding-left":"auto","scroll-padding-right":"auto","scroll-padding-top":"auto","scroll-snap-align":"none","scroll-snap-coordinate":"none","scroll-snap-points-x":"none","scroll-snap-points-y":"none","scroll-snap-stop":"normal","scroll-snap-type":"none","shape-image-threshold":"0.0","shape-margin":"0","shape-outside":"none","tab-size":"8","table-layout":"auto","text-align-last":"auto","text-combine-upright":"none","text-decoration-line":"none","text-decoration-skip-ink":"auto","text-decoration-style":"solid","text-emphasis-style":"none","text-indent":"0","text-justify":"auto","text-orientation":"mixed","text-overflow":"clip","text-rendering":"auto","text-shadow":"none","text-transform":"none","text-underline-position":"auto",top:"auto","touch-action":"auto",transform:"none","transform-style":"flat","transition-delay":"0s","transition-duration":"0s","transition-property":"all","transition-timing-function":"ease",translate:"none","unicode-bidi":"normal","white-space":"normal",widows:"2",width:"auto","will-change":"auto","word-break":"normal","word-spacing":"normal","word-wrap":"normal","z-index":"auto"}},9554:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=r(9649);var n=_interopRequireDefault(r(3541));var i=_interopRequireDefault(r(7727));var C=_interopRequireDefault(r(8347));var o=_interopRequireDefault(r(733));var a=_interopRequireDefault(r(1245));var s=_interopRequireDefault(r(3119));var u=_interopRequireDefault(r(4536));var f=_interopRequireDefault(r(4907));var l=_interopRequireDefault(r(653));var c=_interopRequireDefault(r(7059));var p=_interopRequireDefault(r(3680));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}var A=B=>{const e=l.default.map(e=>`${B}-${e}`);const r=r=>{let n=(0,i.default)(r,[B].concat(e));while(n.length){const e=n[n.length-1];const r=n.filter(r=>!(0,t.detect)(e)&&!(0,t.detect)(r)&&r!==e&&r.important===e.important&&e.prop===B&&r.prop!==e.prop);r.forEach(f.default);n=n.filter(B=>!~r.indexOf(B));let i=n.filter(B=>!(0,t.detect)(e)&&!(0,t.detect)(B)&&B!==e&&B.important===e.important&&B.prop===e.prop&&!(!(0,c.default)(B)&&(0,c.default)(e)));i.forEach(f.default);n=n.filter(B=>B!==e&&!~i.indexOf(B))}};const A={explode:r=>{r.walkDecls(new RegExp("^"+B+"$","i"),B=>{if(!(0,p.default)(B)){return}if((0,t.detect)(B)){return}const r=(0,o.default)(B.value);l.default.forEach((t,n)=>{(0,a.default)(B.parent,B,{prop:e[n],value:r[n]})});B.remove()})},merge:i=>{(0,s.default)(i,e,(e,r)=>{if((0,n.default)(e)&&!e.some(t.detect)){(0,a.default)(r.parent,r,{prop:B,value:(0,C.default)((0,u.default)(...e))});e.forEach(f.default);return true}});r(i)}};return A};e.default=A;B.exports=e.default},9627:function(B){B.exports={A:{A:{1:"E A B",132:"I D F iB"},B:{1:"H P J K L y BB Q WB S",260:"C N"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",4:"sB KB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",4:"G"},E:{1:"W I D F E A B C N H cB dB eB fB XB R U jB kB",4:"G 0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",260:"E B C lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D",16:"A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:4,C:"CSS3 Cursors (original values)"}},9633:function(B,e,r){"use strict";e.__esModule=true;var t=r(5812);var n=_interopRequireDefault(t);var i=r(5544);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _classCallCheck(B,e){if(!(B instanceof e)){throw new TypeError("Cannot call a class as a function")}}function _possibleConstructorReturn(B,e){if(!B){throw new ReferenceError("this hasn't been initialised - super() hasn't been called")}return e&&(typeof e==="object"||typeof e==="function")?e:B}function _inherits(B,e){if(typeof e!=="function"&&e!==null){throw new TypeError("Super expression must either be null or a function, not "+typeof e)}B.prototype=Object.create(e&&e.prototype,{constructor:{value:B,enumerable:false,writable:true,configurable:true}});if(e)Object.setPrototypeOf?Object.setPrototypeOf(B,e):B.__proto__=e}var C=function(B){_inherits(Nesting,B);function Nesting(e){_classCallCheck(this,Nesting);var r=_possibleConstructorReturn(this,B.call(this,e));r.type=i.NESTING;r.value="&";return r}return Nesting}(n.default);e.default=C;B.exports=e["default"]},9636:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m OB PB QB RB SB TB UB y BB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB",2:"E B C P J K L X DB V M T lB mB nB oB R VB qB U",4:"b",16:"Y Z a c"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{1:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB",2:"NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:6,C:"Public Key Pinning"}},9649:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(2043));var n=_interopRequireDefault(r(9854));var i=_interopRequireDefault(r(1369));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}const C=t.default.plugin("stylehacks",(B={})=>{return(e,r)=>{const t=r.opts||{};const C=(0,n.default)(null,{stats:t.stats,path:__dirname,env:t.env});const o=i.default.reduce((B,e)=>{const t=new e(r);const n=C.some(B=>{return t.targets.some(e=>B===e)});if(n){return B}return[...B,t]},[]);e.walk(e=>{o.forEach(r=>{if(!~r.nodeTypes.indexOf(e.type)){return}if(B.lint){return r.detectAndWarn(e)}return r.detectAndResolve(e)})})}});C.detect=(B=>{return i.default.some(e=>{const r=new e;return r.any(B)})});var o=C;e.default=o;B.exports=e.default},9650:function(B){function stringifyNode(B,e){var r=B.type;var t=B.value;var n;var i;if(e&&(i=e(B))!==undefined){return i}else if(r==="word"||r==="space"){return t}else if(r==="string"){n=B.quote||"";return n+t+(B.unclosed?"":n)}else if(r==="comment"){return"/*"+t+(B.unclosed?"":"*/")}else if(r==="div"){return(B.before||"")+t+(B.after||"")}else if(Array.isArray(B.nodes)){n=stringify(B.nodes);if(r!=="function"){return n}return t+"("+(B.before||"")+n+(B.after||"")+(B.unclosed?"":")")}return t}function stringify(B,e){var r,t;if(Array.isArray(B)){r="";for(t=B.length-1;~t;t-=1){r=stringifyNode(B[t],e)+r}return r}return stringifyNode(B,e)}B.exports=stringify},9663:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L",132:"y BB Q WB S"},C:{2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l pB hB",132:"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{2:"G W I D F E A B C N H P J K",132:"0 1 2 3 4 5 6 7 8 9 L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W 0B YB cB",132:"I D F E A B C N H dB eB fB XB R U jB kB"},F:{2:"E B C lB mB nB oB R VB qB U",132:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{2:"YB rB IB tB uB vB",132:"F wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G BC CC DC EC IB",132:"Q FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{132:"S"},M:{132:"M"},N:{132:"A B"},O:{2:"HC"},P:{2:"G IC",132:"JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{132:"RC"}},B:2,C:"Media Fragments"}},9683:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L",8388:"y BB Q WB S"},C:{16:"sB KB pB hB",548:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB",4097:"UB y BB"},D:{16:"G W I D F E A B C N H",164:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB",196:"HB DB V",8388:"M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G 0B YB",16:"W",164:"I D F cB dB eB",260:"E A B C N fB XB R U jB",3073:"H kB"},F:{2:"E B C lB mB nB oB R VB qB U",164:"0 1 2 3 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z",196:"4 5 6",8388:"7 8 9 AB CB EB FB GB HB DB V M T"},G:{16:"YB rB IB tB uB",164:"F vB wB",260:"xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B",3073:"9B"},H:{2:"AC"},I:{16:"KB BC CC DC",164:"G Q EC IB FC GC"},J:{16:"D",164:"A"},K:{2:"A B C R VB U",164:"O"},L:{8388:"S"},M:{548:"M"},N:{2:"A B"},O:{164:"HC"},P:{164:"G IC JC KC LC MC XB NC OC"},Q:{8388:"PC"},R:{164:"QC"},S:{548:"RC"}},B:5,C:":is() CSS pseudo-class"}},9688:function(B,e,r){"use strict";e.__esModule=true;e.default=void 0;var t=_interopRequireDefault(r(9925));var n=r(8273);var i=_interopRequireDefault(r(8092));var C=r(699);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _defineProperties(B,e){for(var r=0;r<e.length;r++){var t=e[r];t.enumerable=t.enumerable||false;t.configurable=true;if("value"in t)t.writable=true;Object.defineProperty(B,t.key,t)}}function _createClass(B,e,r){if(e)_defineProperties(B.prototype,e);if(r)_defineProperties(B,r);return B}function _inheritsLoose(B,e){B.prototype=Object.create(e.prototype);B.prototype.constructor=B;B.__proto__=e}var o=function(B){_inheritsLoose(ClassName,B);function ClassName(e){var r;r=B.call(this,e)||this;r.type=C.CLASS;r._constructed=true;return r}var e=ClassName.prototype;e.toString=function toString(){return[this.rawSpaceBefore,String("."+this.stringifyProperty("value")),this.rawSpaceAfter].join("")};_createClass(ClassName,[{key:"value",set:function set(B){if(this._constructed){var e=(0,t.default)(B,{isIdentifier:true});if(e!==B){(0,n.ensureObject)(this,"raws");this.raws.value=e}else if(this.raws){delete this.raws.value}}this._value=B},get:function get(){return this._value}}]);return ClassName}(i.default);e.default=o;B.exports=e.default},9699:function(B){B.exports={A:{A:{2:"E A B iB",8:"I D F"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"1 2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB",8:"KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O pB hB",194:"0 z"},D:{1:"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",8:"G W I D F E A B",257:"X Y Z a b c d e f g h i j k l m n",769:"C N H P J K L"},E:{1:"C N H U jB kB",8:"G W 0B YB cB",257:"I D F E A dB eB fB",1025:"B XB R"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"C R VB qB U",8:"E B lB mB nB oB"},G:{1:"F uB vB wB xB yB 2B 3B 4B 5B 6B 7B 8B 9B",8:"YB rB IB tB",1025:"zB ZB 1B"},H:{8:"AC"},I:{1:"G Q EC IB FC GC",8:"KB BC CC DC"},J:{1:"A",8:"D"},K:{1:"O",8:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{769:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"Details & Summary elements"}},9700:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=canUnquote;var t=_interopRequireDefault(r(5483));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}const n=/\\([0-9A-Fa-f]{1,6})[ \t\n\f\r]?/g;const i=/[\u0000-\u002c\u002e\u002f\u003A-\u0040\u005B-\u005E\u0060\u007B-\u009f]/;function canUnquote(B){B=(0,t.default)(B);if(B==="-"||B===""){return false}B=B.replace(n,"a").replace(/\\./g,"a");return!(i.test(B)||/^(?:-?\d|--)/.test(B))}B.exports=e.default},9702:function(B){B.exports={A:{A:{132:"I D F E A B iB"},B:{1:"y BB Q WB S",4:"C N H P J K L"},C:{1:"1 2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B pB hB",33:"0 C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},D:{1:"0 1 2 3 4 5 6 7 8 9 z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m",322:"n o p q r s t u v w x O"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{1:"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z lB mB nB oB R VB qB U",578:"a b c d e f g h i j k l"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{132:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{2:"PC"},R:{1:"QC"},S:{33:"RC"}},B:5,C:"CSS3 text-align-last"}},9714:function(B,e,r){"use strict";e.__esModule=true;e.default=void 0;var t=_interopRequireDefault(r(1868));var n=_interopRequireWildcard(r(8445));function _interopRequireWildcard(B){if(B&&B.__esModule){return B}else{var e={};if(B!=null){for(var r in B){if(Object.prototype.hasOwnProperty.call(B,r)){var t=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor(B,r):{};if(t.get||t.set){Object.defineProperty(e,r,t)}else{e[r]=B[r]}}}}e.default=B;return e}}function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}var i=function parser(B){return new t.default(B)};Object.assign(i,n);delete i.__esModule;var C=i;e.default=C;B.exports=e.default},9738:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:4,C:"CSS3 attr() function for all properties"}},9755:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});var t=e.browserVersions=r(2079)},9765:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L",194:"y BB Q WB S"},C:{2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB"},D:{2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB",194:"UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"0 1 2 3 4 5 6 7 8 9 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB lB mB nB oB R VB qB U",194:"DB V M T"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{2:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:7,C:"WebHID API"}},9766:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"K L y BB Q WB S",2:"C N H P J"},C:{1:"0 1 2 3 4 5 6 7 8 9 u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u"},E:{1:"B C N H XB R U jB kB",2:"G W I D F E A 0B YB cB dB eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h lB mB nB oB R VB qB U"},G:{1:"ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{2:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"Upgrade Insecure Requests"}},9782:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(9554));function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}var n=(0,t.default)("margin");e.default=n;B.exports=e.default},9787:function(B){B.exports={A:{A:{1:"A B",2:"I D F E iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G pB hB",33:"W I D F E A B C N H P"},D:{1:"0 1 2 3 4 5 6 7 8 9 v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",33:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u"},E:{1:"E A B C N H fB XB R U jB kB",2:"0B YB",33:"I D F cB dB eB",292:"G W"},F:{1:"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T U",2:"E B lB mB nB oB R VB qB",33:"C P J K L X Y Z a b c d e f g h"},G:{1:"xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",33:"F uB vB wB",164:"YB rB IB tB"},H:{2:"AC"},I:{1:"Q",33:"G EC IB FC GC",164:"KB BC CC DC"},J:{33:"D A"},K:{1:"O U",2:"A B C R VB"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{33:"PC"},R:{1:"QC"},S:{1:"RC"}},B:5,C:"CSS Animation"}},9804:function(B){B.exports={"0.20":"39",.21:"41",.22:"41",.23:"41",.24:"41",.25:"42",.26:"42",.27:"43",.28:"43",.29:"43","0.30":"44",.31:"45",.32:"45",.33:"45",.34:"45",.35:"45",.36:"47",.37:"49","1.0":"49",1.1:"50",1.2:"51",1.3:"52",1.4:"53",1.5:"54",1.6:"56",1.7:"58",1.8:"59","2.0":"61",2.1:"61","3.0":"66",3.1:"66","4.0":"69",4.1:"69",4.2:"69","5.0":"73","6.0":"76",6.1:"76","7.0":"78",7.1:"78",7.2:"78",7.3:"78","8.0":"80",8.1:"80",8.2:"80",8.3:"80",8.4:"80","9.0":"83",9.1:"83","10.0":"85"}},9812:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L",194:"y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB",2:"sB"},D:{2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u",194:"0 1 2 3 4 5 6 7 8 9 v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"E B C P J K L X Y Z a b c d e f g h lB mB nB oB R VB qB U",194:"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{258:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{194:"PC"},R:{2:"QC"},S:{2:"RC"}},B:4,C:"CSS font-size-adjust"}},9836:function(B){B.exports={A:{A:{1:"E A B",2:"iB",8:"I D F"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB pB hB",8:"sB KB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H cB dB eB fB XB R U jB kB",8:"0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T nB oB R VB qB U",8:"E lB mB"},G:{1:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"KB G Q BC CC DC EC IB FC GC"},J:{1:"D A"},K:{1:"B C O R VB U",8:"A"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"Text API for Canvas"}},9842:function(B){B.exports={A:{A:{1:"I D F E A B",16:"iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"G W I D F E A B C N H YB cB dB eB fB XB R U jB kB",16:"0B"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T lB mB nB oB R VB qB U",16:"E"},G:{1:"F rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",16:"YB"},H:{1:"AC"},I:{1:"KB G Q DC EC IB FC GC",16:"BC CC"},J:{1:"D A"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:1,C:"HTMLElement.innerText"}},9854:function(B,e,r){var t=r(4533);var n=r(4488).agents;var i=r(6622);var C=r(5622);var o=r(9804);var a=r(8093);var s=r(5251);var u=365.259641*24*60*60*1e3;var f=37;var l=1;var c=2;function isVersionsMatch(B,e){return(B+".").indexOf(e+".")===0}function isEolReleased(B){var e=B.slice(1);return t.some(function(B){return isVersionsMatch(B.version,e)})}function normalize(B){return B.filter(function(B){return typeof B==="string"})}function normalizeElectron(B){var e=B;if(B.split(".").length===3){e=B.split(".").slice(0,-1).join(".")}return e}function nameMapper(B){return function mapName(e){return B+" "+e}}function getMajor(B){return parseInt(B.split(".")[0])}function getMajorVersions(B,e){if(B.length===0)return[];var r=uniq(B.map(getMajor));var t=r[r.length-e];if(!t){return B}var n=[];for(var i=B.length-1;i>=0;i--){if(t>getMajor(B[i]))break;n.unshift(B[i])}return n}function uniq(B){var e=[];for(var r=0;r<B.length;r++){if(e.indexOf(B[r])===-1)e.push(B[r])}return e}function fillUsage(B,e,r){for(var t in r){B[e+" "+t]=r[t]}}function generateFilter(B,e){e=parseFloat(e);if(B===">"){return function(B){return parseFloat(B)>e}}else if(B===">="){return function(B){return parseFloat(B)>=e}}else if(B==="<"){return function(B){return parseFloat(B)<e}}else{return function(B){return parseFloat(B)<=e}}}function generateSemverFilter(B,e){e=e.split(".").map(parseSimpleInt);e[1]=e[1]||0;e[2]=e[2]||0;if(B===">"){return function(B){B=B.split(".").map(parseSimpleInt);return compareSemver(B,e)>0}}else if(B===">="){return function(B){B=B.split(".").map(parseSimpleInt);return compareSemver(B,e)>=0}}else if(B==="<"){return function(B){B=B.split(".").map(parseSimpleInt);return compareSemver(e,B)>0}}else{return function(B){B=B.split(".").map(parseSimpleInt);return compareSemver(e,B)>=0}}}function parseSimpleInt(B){return parseInt(B)}function compare(B,e){if(B<e)return-1;if(B>e)return+1;return 0}function compareSemver(B,e){return compare(parseInt(B[0]),parseInt(e[0]))||compare(parseInt(B[1]||"0"),parseInt(e[1]||"0"))||compare(parseInt(B[2]||"0"),parseInt(e[2]||"0"))}function semverFilterLoose(B,e){e=e.split(".").map(parseSimpleInt);if(typeof e[1]==="undefined"){e[1]="x"}switch(B){case"<=":return function(B){B=B.split(".").map(parseSimpleInt);return compareSemverLoose(B,e)<=0};default:case">=":return function(B){B=B.split(".").map(parseSimpleInt);return compareSemverLoose(B,e)>=0}}}function compareSemverLoose(B,e){if(B[0]!==e[0]){return B[0]<e[0]?-1:+1}if(e[1]==="x"){return 0}if(B[1]!==e[1]){return B[1]<e[1]?-1:+1}return 0}function resolveVersion(B,e){if(B.versions.indexOf(e)!==-1){return e}else if(browserslist.versionAliases[B.name][e]){return browserslist.versionAliases[B.name][e]}else{return false}}function normalizeVersion(B,e){var r=resolveVersion(B,e);if(r){return r}else if(B.versions.length===1){return B.versions[0]}else{return false}}function filterByYear(B,e){B=B/1e3;return Object.keys(n).reduce(function(r,t){var n=byName(t,e);if(!n)return r;var i=Object.keys(n.releaseDate).filter(function(e){return n.releaseDate[e]>=B});return r.concat(i.map(nameMapper(n.name)))},[])}function cloneData(B){return{name:B.name,versions:B.versions,released:B.released,releaseDate:B.releaseDate}}function mapVersions(B,e){B.versions=B.versions.map(function(B){return e[B]||B});B.released=B.versions.map(function(B){return e[B]||B});var r={};for(var t in B.releaseDate){r[e[t]||t]=B.releaseDate[t]}B.releaseDate=r;return B}function byName(B,e){B=B.toLowerCase();B=browserslist.aliases[B]||B;if(e.mobileToDesktop&&browserslist.desktopNames[B]){var r=browserslist.data[browserslist.desktopNames[B]];if(B==="android"){return normalizeAndroidData(cloneData(browserslist.data[B]),r)}else{var t=cloneData(r);t.name=B;if(B==="op_mob"){t=mapVersions(t,{"10.0-10.1":"10"})}return t}}return browserslist.data[B]}function normalizeAndroidVersions(B,e){var r=f;var t=e[e.length-1];return B.filter(function(B){return/^(?:[2-4]\.|[34]$)/.test(B)}).concat(e.slice(r-t-1))}function normalizeAndroidData(B,e){B.released=normalizeAndroidVersions(B.released,e.released);B.versions=normalizeAndroidVersions(B.versions,e.versions);return B}function checkName(B,e){var r=byName(B,e);if(!r)throw new a("Unknown browser "+B);return r}function unknownQuery(B){return new a("Unknown browser query `"+B+"`. "+"Maybe you are using old Browserslist or made typo in query.")}function filterAndroid(B,e,r){if(r.mobileToDesktop)return B;var t=browserslist.data.android.released;var n=t[t.length-1];var i=n-f-e;if(i>0){return B.slice(-1)}else{return B.slice(i-1)}}function resolve(B,e){if(Array.isArray(B)){B=flatten(B.map(parse))}else{B=parse(B)}return B.reduce(function(B,r,t){var n=r.queryString;var i=n.indexOf("not ")===0;if(i){if(t===0){throw new a("Write any browsers query (for instance, `defaults`) "+"before `"+n+"`")}n=n.slice(4)}for(var C=0;C<A.length;C++){var o=A[C];var s=n.match(o.regexp);if(s){var u=[e].concat(s.slice(1));var f=o.select.apply(browserslist,u).map(function(B){var r=B.split(" ");if(r[1]==="0"){return r[0]+" "+byName(r[0],e).versions[0]}else{return B}});switch(r.type){case c:if(i){return B.filter(function(B){return f.indexOf(B)===-1})}else{return B.filter(function(B){return f.indexOf(B)!==-1})}case l:default:if(i){var p={};f.forEach(function(B){p[B]=true});return B.filter(function(B){return!p[B]})}return B.concat(f)}}}throw unknownQuery(n)},[])}var p={};function browserslist(B,e){if(typeof e==="undefined")e={};if(typeof e.path==="undefined"){e.path=C.resolve?C.resolve("."):"."}if(typeof B==="undefined"||B===null){var r=browserslist.loadConfig(e);if(r){B=r}else{B=browserslist.defaults}}if(!(typeof B==="string"||Array.isArray(B))){throw new a("Browser queries must be an array or string. Got "+typeof B+".")}var t={ignoreUnknownVersions:e.ignoreUnknownVersions,dangerousExtend:e.dangerousExtend,mobileToDesktop:e.mobileToDesktop,env:e.env};s.oldDataWarning(browserslist.data);var n=s.getStat(e,browserslist.data);if(n){t.customUsage={};for(var i in n){fillUsage(t.customUsage,i,n[i])}}var o=JSON.stringify([B,t]);if(p[o])return p[o];var u=uniq(resolve(B,t)).sort(function(B,e){B=B.split(" ");e=e.split(" ");if(B[0]===e[0]){var r=B[1].split("-")[0];var t=e[1].split("-")[0];return compareSemver(t.split("."),r.split("."))}else{return compare(B[0],e[0])}});if(!process.env.BROWSERSLIST_DISABLE_CACHE){p[o]=u}return u}function parse(B){var e=[];do{B=doMatch(B,e)}while(B);return e}function doMatch(B,e){var r=/^(?:,\s*|\s+or\s+)(.*)/i;var t=/^\s+and\s+(.*)/i;return find(B,function(B,n,i){if(t.test(B)){e.unshift({type:c,queryString:B.match(t)[1]});return true}else if(r.test(B)){e.unshift({type:l,queryString:B.match(r)[1]});return true}else if(n===i){e.unshift({type:l,queryString:B.trim()});return true}return false})}function find(B,e){for(var r=1,t=B.length;r<=t;r++){var n=B.substr(-r,r);if(e(n,r,t)){return B.slice(0,-r)}}return""}function flatten(B){if(!Array.isArray(B))return[B];return B.reduce(function(B,e){return B.concat(flatten(e))},[])}browserslist.cache={};browserslist.data={};browserslist.usage={global:{},custom:null};browserslist.defaults=["> 0.5%","last 2 versions","Firefox ESR","not dead"];browserslist.aliases={fx:"firefox",ff:"firefox",ios:"ios_saf",explorer:"ie",blackberry:"bb",explorermobile:"ie_mob",operamini:"op_mini",operamobile:"op_mob",chromeandroid:"and_chr",firefoxandroid:"and_ff",ucandroid:"and_uc",qqandroid:"and_qq"};browserslist.desktopNames={and_chr:"chrome",and_ff:"firefox",ie_mob:"ie",op_mob:"opera",android:"chrome"};browserslist.versionAliases={};browserslist.clearCaches=s.clearCaches;browserslist.parseConfig=s.parseConfig;browserslist.readConfig=s.readConfig;browserslist.findConfig=s.findConfig;browserslist.loadConfig=s.loadConfig;browserslist.coverage=function(B,e){var r;if(typeof e==="undefined"){r=browserslist.usage.global}else if(e==="my stats"){var t={};t.path=C.resolve?C.resolve("."):".";var n=s.getStat(t);if(!n){throw new a("Custom usage statistics was not provided")}r={};for(var i in n){fillUsage(r,i,n[i])}}else if(typeof e==="string"){if(e.length>2){e=e.toLowerCase()}else{e=e.toUpperCase()}s.loadCountry(browserslist.usage,e,browserslist.data);r=browserslist.usage[e]}else{if("dataByBrowser"in e){e=e.dataByBrowser}r={};for(var o in e){for(var u in e[o]){r[o+" "+u]=e[o][u]}}}return B.reduce(function(B,e){var t=r[e];if(t===undefined){t=r[e.replace(/ \S+$/," 0")]}return B+(t||0)},0)};var A=[{regexp:/^last\s+(\d+)\s+major\s+versions?$/i,select:function(B,e){return Object.keys(n).reduce(function(r,t){var n=byName(t,B);if(!n)return r;var i=getMajorVersions(n.released,e);i=i.map(nameMapper(n.name));if(n.name==="android"){i=filterAndroid(i,e,B)}return r.concat(i)},[])}},{regexp:/^last\s+(\d+)\s+versions?$/i,select:function(B,e){return Object.keys(n).reduce(function(r,t){var n=byName(t,B);if(!n)return r;var i=n.released.slice(-e);i=i.map(nameMapper(n.name));if(n.name==="android"){i=filterAndroid(i,e,B)}return r.concat(i)},[])}},{regexp:/^last\s+(\d+)\s+electron\s+major\s+versions?$/i,select:function(B,e){var r=getMajorVersions(Object.keys(o),e);return r.map(function(B){return"chrome "+o[B]})}},{regexp:/^last\s+(\d+)\s+(\w+)\s+major\s+versions?$/i,select:function(B,e,r){var t=checkName(r,B);var n=getMajorVersions(t.released,e);var i=n.map(nameMapper(t.name));if(t.name==="android"){i=filterAndroid(i,e,B)}return i}},{regexp:/^last\s+(\d+)\s+electron\s+versions?$/i,select:function(B,e){return Object.keys(o).reverse().slice(-e).map(function(B){return"chrome "+o[B]})}},{regexp:/^last\s+(\d+)\s+(\w+)\s+versions?$/i,select:function(B,e,r){var t=checkName(r,B);var n=t.released.slice(-e).map(nameMapper(t.name));if(t.name==="android"){n=filterAndroid(n,e,B)}return n}},{regexp:/^unreleased\s+versions$/i,select:function(B){return Object.keys(n).reduce(function(e,r){var t=byName(r,B);if(!t)return e;var n=t.versions.filter(function(B){return t.released.indexOf(B)===-1});n=n.map(nameMapper(t.name));return e.concat(n)},[])}},{regexp:/^unreleased\s+electron\s+versions?$/i,select:function(){return[]}},{regexp:/^unreleased\s+(\w+)\s+versions?$/i,select:function(B,e){var r=checkName(e,B);return r.versions.filter(function(B){return r.released.indexOf(B)===-1}).map(nameMapper(r.name))}},{regexp:/^last\s+(\d*.?\d+)\s+years?$/i,select:function(B,e){return filterByYear(Date.now()-u*e,B)}},{regexp:/^since (\d+)(?:-(\d+))?(?:-(\d+))?$/i,select:function(B,e,r,t){e=parseInt(e);r=parseInt(r||"01")-1;t=parseInt(t||"01");return filterByYear(Date.UTC(e,r,t,0,0,0),B)}},{regexp:/^(>=?|<=?)\s*(\d*\.?\d+)%$/,select:function(B,e,r){r=parseFloat(r);var t=browserslist.usage.global;return Object.keys(t).reduce(function(B,n){if(e===">"){if(t[n]>r){B.push(n)}}else if(e==="<"){if(t[n]<r){B.push(n)}}else if(e==="<="){if(t[n]<=r){B.push(n)}}else if(t[n]>=r){B.push(n)}return B},[])}},{regexp:/^(>=?|<=?)\s*(\d*\.?\d+)%\s+in\s+my\s+stats$/,select:function(B,e,r){r=parseFloat(r);if(!B.customUsage){throw new a("Custom usage statistics was not provided")}var t=B.customUsage;return Object.keys(t).reduce(function(B,n){if(e===">"){if(t[n]>r){B.push(n)}}else if(e==="<"){if(t[n]<r){B.push(n)}}else if(e==="<="){if(t[n]<=r){B.push(n)}}else if(t[n]>=r){B.push(n)}return B},[])}},{regexp:/^(>=?|<=?)\s*(\d*\.?\d+)%\s+in\s+(\S+)\s+stats$/,select:function(B,e,r,t){r=parseFloat(r);var n=s.loadStat(B,t,browserslist.data);if(n){B.customUsage={};for(var i in n){fillUsage(B.customUsage,i,n[i])}}if(!B.customUsage){throw new a("Custom usage statistics was not provided")}var C=B.customUsage;return Object.keys(C).reduce(function(B,t){if(e===">"){if(C[t]>r){B.push(t)}}else if(e==="<"){if(C[t]<r){B.push(t)}}else if(e==="<="){if(C[t]<=r){B.push(t)}}else if(C[t]>=r){B.push(t)}return B},[])}},{regexp:/^(>=?|<=?)\s*(\d*\.?\d+)%\s+in\s+((alt-)?\w\w)$/,select:function(B,e,r,t){r=parseFloat(r);if(t.length===2){t=t.toUpperCase()}else{t=t.toLowerCase()}s.loadCountry(browserslist.usage,t,browserslist.data);var n=browserslist.usage[t];return Object.keys(n).reduce(function(B,t){if(e===">"){if(n[t]>r){B.push(t)}}else if(e==="<"){if(n[t]<r){B.push(t)}}else if(e==="<="){if(n[t]<=r){B.push(t)}}else if(n[t]>=r){B.push(t)}return B},[])}},{regexp:/^cover\s+(\d*\.?\d+)%(\s+in\s+(my\s+stats|(alt-)?\w\w))?$/,select:function(B,e,r){e=parseFloat(e);var t=browserslist.usage.global;if(r){if(r.match(/^\s+in\s+my\s+stats$/)){if(!B.customUsage){throw new a("Custom usage statistics was not provided")}t=B.customUsage}else{var n=r.match(/\s+in\s+((alt-)?\w\w)/);var i=n[1];if(i.length===2){i=i.toUpperCase()}else{i=i.toLowerCase()}s.loadCountry(browserslist.usage,i,browserslist.data);t=browserslist.usage[i]}}var C=Object.keys(t).sort(function(B,e){return t[e]-t[B]});var o=0;var u=[];var f;for(var l=0;l<=C.length;l++){f=C[l];if(t[f]===0)break;o+=t[f];u.push(f);if(o>=e)break}return u}},{regexp:/^supports\s+([\w-]+)$/,select:function(B,e){s.loadFeature(browserslist.cache,e);var r=browserslist.cache[e];return Object.keys(r).reduce(function(B,e){var t=r[e];if(t.indexOf("y")>=0||t.indexOf("a")>=0){B.push(e)}return B},[])}},{regexp:/^electron\s+([\d.]+)\s*-\s*([\d.]+)$/i,select:function(B,e,r){var t=normalizeElectron(e);var n=normalizeElectron(r);if(!o[t]){throw new a("Unknown version "+e+" of electron")}if(!o[n]){throw new a("Unknown version "+r+" of electron")}e=parseFloat(e);r=parseFloat(r);return Object.keys(o).filter(function(B){var t=parseFloat(B);return t>=e&&t<=r}).map(function(B){return"chrome "+o[B]})}},{regexp:/^node\s+([\d.]+)\s*-\s*([\d.]+)$/i,select:function(B,e,r){var n=t.filter(function(B){return B.name==="nodejs"}).map(function(B){return B.version});var i=/^(0|[1-9]\d*)(\.(0|[1-9]\d*)){0,2}$/;if(!i.test(e)){throw new a("Unknown version "+e+" of Node.js")}if(!i.test(r)){throw new a("Unknown version "+r+" of Node.js")}return n.filter(semverFilterLoose(">=",e)).filter(semverFilterLoose("<=",r)).map(function(B){return"node "+B})}},{regexp:/^(\w+)\s+([\d.]+)\s*-\s*([\d.]+)$/i,select:function(B,e,r,t){var n=checkName(e,B);r=parseFloat(normalizeVersion(n,r)||r);t=parseFloat(normalizeVersion(n,t)||t);function filter(B){var e=parseFloat(B);return e>=r&&e<=t}return n.released.filter(filter).map(nameMapper(n.name))}},{regexp:/^electron\s*(>=?|<=?)\s*([\d.]+)$/i,select:function(B,e,r){var t=normalizeElectron(r);return Object.keys(o).filter(generateFilter(e,t)).map(function(B){return"chrome "+o[B]})}},{regexp:/^node\s*(>=?|<=?)\s*([\d.]+)$/i,select:function(B,e,r){var n=t.filter(function(B){return B.name==="nodejs"}).map(function(B){return B.version});return n.filter(generateSemverFilter(e,r)).map(function(B){return"node "+B})}},{regexp:/^(\w+)\s*(>=?|<=?)\s*([\d.]+)$/,select:function(B,e,r,t){var n=checkName(e,B);var i=browserslist.versionAliases[n.name][t];if(i){t=i}return n.released.filter(generateFilter(r,t)).map(function(B){return n.name+" "+B})}},{regexp:/^(firefox|ff|fx)\s+esr$/i,select:function(){return["firefox 68","firefox 78"]}},{regexp:/(operamini|op_mini)\s+all/i,select:function(){return["op_mini all"]}},{regexp:/^electron\s+([\d.]+)$/i,select:function(B,e){var r=normalizeElectron(e);var t=o[r];if(!t){throw new a("Unknown version "+e+" of electron")}return["chrome "+t]}},{regexp:/^node\s+(\d+(\.\d+)?(\.\d+)?)$/i,select:function(B,e){var r=t.filter(function(B){return B.name==="nodejs"});var n=r.filter(function(B){return isVersionsMatch(B.version,e)});if(n.length===0){if(B.ignoreUnknownVersions){return[]}else{throw new a("Unknown version "+e+" of Node.js")}}return["node "+n[n.length-1].version]}},{regexp:/^current\s+node$/i,select:function(B){return[s.currentNode(resolve,B)]}},{regexp:/^maintained\s+node\s+versions$/i,select:function(B){var e=Date.now();var r=Object.keys(i).filter(function(B){return e<Date.parse(i[B].end)&&e>Date.parse(i[B].start)&&isEolReleased(B)}).map(function(B){return"node "+B.slice(1)});return resolve(r,B)}},{regexp:/^phantomjs\s+1.9$/i,select:function(){return["safari 5"]}},{regexp:/^phantomjs\s+2.1$/i,select:function(){return["safari 6"]}},{regexp:/^(\w+)\s+(tp|[\d.]+)$/i,select:function(B,e,r){if(/^tp$/i.test(r))r="TP";var t=checkName(e,B);var n=normalizeVersion(t,r);if(n){r=n}else{if(r.indexOf(".")===-1){n=r+".0"}else{n=r.replace(/\.0$/,"")}n=normalizeVersion(t,n);if(n){r=n}else if(B.ignoreUnknownVersions){return[]}else{throw new a("Unknown version "+r+" of "+e)}}return[t.name+" "+r]}},{regexp:/^extends (.+)$/i,select:function(B,e){return resolve(s.loadQueries(B,e),B)}},{regexp:/^defaults$/i,select:function(B){return resolve(browserslist.defaults,B)}},{regexp:/^dead$/i,select:function(B){var e=["ie <= 10","ie_mob <= 11","bb <= 10","op_mob <= 12.1","samsung 4"];return resolve(e,B)}},{regexp:/^(\w+)$/i,select:function(B,e){if(byName(e,B)){throw new a("Specify versions in Browserslist query for browser "+e)}else{throw unknownQuery(e)}}}];(function(){for(var B in n){var e=n[B];browserslist.data[B]={name:B,versions:normalize(n[B].versions),released:normalize(n[B].versions.slice(0,-3)),releaseDate:n[B].release_date};fillUsage(browserslist.usage.global,B,e.usage_global);browserslist.versionAliases[B]={};for(var r=0;r<e.versions.length;r++){var t=e.versions[r];if(!t)continue;if(t.indexOf("-")!==-1){var i=t.split("-");for(var C=0;C<i.length;C++){browserslist.versionAliases[B][i[C]]=t}}}}})();B.exports=browserslist},9873:function(B,e,r){"use strict";e.__esModule=true;e.default=void 0;var t=_interopRequireDefault(r(9069));var n=r(699);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}function _defineProperties(B,e){for(var r=0;r<e.length;r++){var t=e[r];t.enumerable=t.enumerable||false;t.configurable=true;if("value"in t)t.writable=true;Object.defineProperty(B,t.key,t)}}function _createClass(B,e,r){if(e)_defineProperties(B.prototype,e);if(r)_defineProperties(B,r);return B}function _inheritsLoose(B,e){B.prototype=Object.create(e.prototype);B.prototype.constructor=B;B.__proto__=e}var i=function(B){_inheritsLoose(Root,B);function Root(e){var r;r=B.call(this,e)||this;r.type=n.ROOT;return r}var e=Root.prototype;e.toString=function toString(){var B=this.reduce(function(B,e){B.push(String(e));return B},[]).join(",");return this.trailingComma?B+",":B};e.error=function error(B,e){if(this._error){return this._error(B,e)}else{return new Error(B)}};_createClass(Root,[{key:"errorGenerator",set:function set(B){this._error=B}}]);return Root}(t.default);e.default=i;B.exports=e.default},9877:function(B,e){"use strict";e.__esModule=true;e.default=sortAscending;function sortAscending(B){return B.sort(function(B,e){return B-e})}B.exports=e.default},9888:function(B){B.exports={A:{A:{1:"A B",2:"I D F E iB"},B:{1:"y BB Q WB S",2:"C N H P J K L"},C:{1:"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB hB",132:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o"},D:{1:"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G",16:"W I D F Z a b c d",132:"E A B C N H P J K L X Y"},E:{1:"C N H R U jB kB",2:"G W 0B YB cB",132:"I D F E A B dB eB fB XB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C lB mB nB oB R VB qB U"},G:{2:"uB vB",132:"F wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",514:"YB rB IB tB"},H:{2:"AC"},I:{2:"BC CC DC",260:"KB G EC IB",514:"Q FC GC"},J:{132:"A",260:"D"},K:{2:"A B C R VB U",260:"O"},L:{260:"S"},M:{2:"M"},N:{514:"A",1028:"B"},O:{2:"HC"},P:{260:"G IC JC KC LC MC XB NC OC"},Q:{260:"PC"},R:{260:"QC"},S:{1:"RC"}},B:1,C:"accept attribute for file input"}},9896:function(B,e){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=isMixin;function isMixin(B){const{selector:e}=B;if(!e||e[e.length-1]===":"){return true}return false}B.exports=e.default},9901:function(B,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.default=void 0;var t=_interopRequireDefault(r(8791));var n=r(1106);var i=r(2453);var C=r(9920);function _interopRequireDefault(B){return B&&B.__esModule?B:{default:B}}var o=(0,t.default)([n.IE_5_5,n.IE_6,n.IE_7],[C.ATRULE],function(B){const e=B.params.trim();if(e.toLowerCase()==="screen\\9"){this.push(B,{identifier:i.MEDIA_QUERY,hack:e})}});e.default=o;B.exports=e.default},9912:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{1:"L y BB Q WB S",2:"C",226:"N H P J K"},C:{1:"CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"0 1 2 3 4 5 6 7 8 9 sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB pB hB"},D:{1:"V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB"},E:{1:"N H jB kB",2:"G W I D F E A B C 0B YB cB dB eB fB XB R",322:"U"},F:{1:"6 7 8 9 AB CB EB FB GB HB DB V M T",2:"0 1 2 3 4 5 E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z lB mB nB oB R VB qB U"},G:{1:"7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B",578:"6B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{2:"RC"}},B:2,C:"Web Authentication API"}},9919:function(B){B.exports={A:{A:{2:"iB",8:"I D F E",260:"A B"},B:{1:"y BB Q WB S",260:"C N H P",1284:"J K L"},C:{8:"sB KB pB hB",4612:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{1:"T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",8:"G W I D F E A B C N H P J K L X",132:"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M"},E:{1:"N H U jB kB",8:"G W I D F E A B C 0B YB cB dB eB fB XB R"},F:{1:"E B C GB HB DB V M T lB mB nB oB R VB qB U",132:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB"},G:{8:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B",2049:"4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"GC",8:"KB G BC CC DC EC IB FC",132:"Q"},J:{1:"A",8:"D"},K:{1:"A B C R VB U",8:"O"},L:{1:"S"},M:{516:"M"},N:{8:"A B"},O:{8:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{132:"PC"},R:{1:"QC"},S:{2:"RC"}},B:1,C:"Datalist element"}},9920:function(B,e){"use strict";Object.defineProperty(e,"__esModule",{value:true});e.RULE=e.DECL=e.ATRULE=void 0;const r="atrule";e.ATRULE=r;const t="decl";e.DECL=t;const n="rule";e.RULE=n},9925:function(B){"use strict";var e={};var r=e.hasOwnProperty;var t=function merge(B,e){if(!B){return e}var t={};for(var n in e){t[n]=r.call(B,n)?B[n]:e[n]}return t};var n=/[ -,\.\/:-@\[-\^`\{-~]/;var i=/[ -,\.\/:-@\[\]\^`\{-~]/;var C=/['"\\]/;var o=/(^|\\+)?(\\[A-F0-9]{1,6})\x20(?![a-fA-F0-9\x20])/g;var a=function cssesc(B,e){e=t(e,cssesc.options);if(e.quotes!="single"&&e.quotes!="double"){e.quotes="single"}var r=e.quotes=="double"?'"':"'";var C=e.isIdentifier;var a=B.charAt(0);var s="";var u=0;var f=B.length;while(u<f){var l=B.charAt(u++);var c=l.charCodeAt();var p=void 0;if(c<32||c>126){if(c>=55296&&c<=56319&&u<f){var A=B.charCodeAt(u++);if((A&64512)==56320){c=((c&1023)<<10)+(A&1023)+65536}else{u--}}p="\\"+c.toString(16).toUpperCase()+" "}else{if(e.escapeEverything){if(n.test(l)){p="\\"+l}else{p="\\"+c.toString(16).toUpperCase()+" "}}else if(/[\t\n\f\r\x0B]/.test(l)){p="\\"+c.toString(16).toUpperCase()+" "}else if(l=="\\"||!C&&(l=='"'&&r==l||l=="'"&&r==l)||C&&i.test(l)){p="\\"+l}else{p=l}}s+=p}if(C){if(/^-[-\d]/.test(s)){s="\\-"+s.slice(1)}else if(/\d/.test(a)){s="\\3"+a+" "+s.slice(1)}}s=s.replace(o,function(B,e,r){if(e&&e.length%2){return B}return(e||"")+r});if(!C&&e.wrap){return r+s+r}return s};a.options={escapeEverything:false,isIdentifier:false,quotes:"single",wrap:false};a.version="3.0.0";B.exports=a},9942:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L",129:"y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n pB hB"},D:{2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s",129:"JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",450:"0 1 2 3 4 5 6 7 8 9 t u v w x O z AB LB CB"},E:{2:"G W I D F E A B C N H 0B YB cB dB eB fB XB R U jB kB"},F:{2:"E B C P J K L X Y Z a b c d e f lB mB nB oB R VB qB U",129:"0 1 2 3 4 5 6 7 8 9 AB CB EB FB GB HB DB V M T",450:"g h i j k l m n o p q r s t u v w x O z"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{2:"A B"},O:{129:"HC"},P:{1:"LC MC XB NC OC",2:"G IC JC KC"},Q:{129:"PC"},R:{2:"QC"},S:{2:"RC"}},B:5,C:"CSSOM Scroll-behavior"}},9946:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P J K L",513:"y BB Q WB S"},C:{1:"V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O pB hB",322:"0 1 2 3 4 5 6 7 8 9 z AB LB CB JB EB FB GB HB DB"},D:{2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p",130:"q r s",513:"0 1 2 3 4 5 6 7 8 9 t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"N H jB kB",2:"G W I D F E A B C 0B YB cB dB eB fB XB R U"},F:{2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q r t lB mB nB oB R VB qB U",513:"0 1 2 3 4 5 6 7 8 9 s u v w x O z AB CB EB FB GB HB DB V M T"},G:{1:"7B 8B 9B",2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B"},H:{2:"AC"},I:{2:"KB G Q BC CC DC EC IB FC GC"},J:{2:"D A"},K:{2:"A B C O R VB U"},L:{2:"S"},M:{1:"M"},N:{2:"A B"},O:{2:"HC"},P:{2:"G IC JC KC LC MC XB NC OC"},Q:{2:"PC"},R:{2:"QC"},S:{322:"RC"}},B:6,C:"FIDO U2F API"}},9954:function(B){B.exports={A:{A:{2:"I D F E A B iB"},B:{2:"C N H P",1028:"y BB Q WB S",4100:"J K L"},C:{1:"LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d pB hB",194:"e f g h i j",516:"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x O z AB"},D:{2:"0 1 2 3 G W I D F E A B C N H P J K L X Y Z a p q r s t u v w x O z",322:"4 5 6 7 b c d e f g h i j k l m n o",1028:"8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"N H jB kB",2:"G W I 0B YB cB",33:"F E A B C eB fB XB R U",2084:"D dB"},F:{2:"E B C P J K L X Y Z a b c d e f g h i j k l m n o p q lB mB nB oB R VB qB U",322:"r s t",1028:"0 1 2 3 4 5 6 7 8 9 u v w x O z AB CB EB FB GB HB DB V M T"},G:{1:"5B 6B 7B 8B 9B",2:"YB rB IB tB",33:"F wB xB yB zB ZB 1B 2B 3B 4B",2084:"uB vB"},H:{2:"AC"},I:{2:"KB G BC CC DC EC IB FC GC",1028:"Q"},J:{2:"D A"},K:{2:"A B C R VB U",1028:"O"},L:{1028:"S"},M:{1:"M"},N:{2:"A B"},O:{1028:"HC"},P:{1:"JC KC LC MC XB NC OC",2:"G IC"},Q:{1028:"PC"},R:{2:"QC"},S:{516:"RC"}},B:5,C:"CSS position:sticky"}},9956:function(B){B.exports={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",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:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",goldenrod:"#daa520",gold:"#ffd700",gray:"#808080",green:"#008000",greenyellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavenderblush:"#fff0f5",lavender:"#e6e6fa",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:"#00ff00",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:"#ff0000",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:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"}},9978:function(B){B.exports={A:{A:{2:"I D F E A iB",132:"B"},B:{1:"C N H P J K L",513:"y BB Q WB S"},C:{1:"0 1 2 3 4 o p q r s t u v w x O z",2:"sB KB G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n pB hB",513:"5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB"},D:{1:"0 1 2 t u v w x O z",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s",513:"3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB"},E:{1:"B C N H R U jB kB",2:"G W I D F 0B YB cB dB eB",260:"E A fB XB"},F:{1:"g h i j k l m n o p",2:"E B C P J K L X Y Z a b c d e f lB mB nB oB R VB qB U",513:"0 1 2 3 4 5 6 7 8 9 q r s t u v w x O z AB CB EB FB GB HB DB V M T"},G:{1:"xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"F YB rB IB tB uB vB wB"},H:{2:"AC"},I:{2:"KB G BC CC DC EC IB FC GC",513:"Q"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{513:"S"},M:{513:"M"},N:{2:"A B"},O:{1:"HC"},P:{1:"G",513:"IC JC KC LC MC XB NC OC"},Q:{513:"PC"},R:{1:"QC"},S:{1:"RC"}},B:6,C:"HTTP/2 protocol"}},9982:function(B){B.exports={A:{A:{1:"A B",2:"I D F E iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB hB",33:"W I D F E A B C N H P",164:"G"},D:{1:"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",33:"G W I D F E A B C N H P J K L X Y Z a b c d"},E:{1:"D F E A B C N H dB eB fB XB R U jB kB",33:"I cB",164:"G W 0B YB"},F:{1:"0 1 2 3 4 5 6 7 8 9 P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T U",2:"E lB mB",33:"C",164:"B nB oB R VB qB"},G:{1:"F vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",33:"uB",164:"YB rB IB tB"},H:{2:"AC"},I:{1:"Q FC GC",33:"KB G BC CC DC EC IB"},J:{1:"A",33:"D"},K:{1:"O U",33:"C",164:"A B R VB"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:5,C:"CSS3 Transitions"}},9992:function(B){B.exports={A:{A:{1:"E A B",2:"I D F iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB G W I D F pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z"},E:{1:"B C N H R U jB kB",2:"G W I D F E A 0B YB cB dB eB fB XB"},F:{1:"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T",2:"E B C P J K L X Y Z a b c d e f g h i j k l m lB mB nB oB R VB qB U"},G:{2:"F YB rB IB tB uB vB wB xB yB zB ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B"},H:{2:"AC"},I:{1:"Q",2:"KB G BC CC DC EC IB FC GC"},J:{2:"D A"},K:{1:"O",2:"A B C R VB U"},L:{1:"S"},M:{1:"M"},N:{1:"A B"},O:{1:"HC"},P:{1:"IC JC KC LC MC XB NC OC",2:"G"},Q:{1:"PC"},R:{1:"QC"},S:{1:"RC"}},B:4,C:"CSS font-stretch"}},9995:function(B){B.exports={A:{A:{1:"A B",2:"I D F E iB"},B:{1:"C N H P J K L y BB Q WB S"},C:{1:"0 1 2 3 4 5 6 7 8 9 G W I D F E A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB",2:"sB KB pB hB"},D:{1:"0 1 2 3 4 5 6 7 8 9 A B C N H P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB LB CB JB EB FB GB HB DB V M T MB NB OB PB QB RB SB TB UB y BB Q WB S gB bB aB",2:"G W I D F E"},E:{1:"B C N H XB R U jB kB",2:"G 0B YB",132:"W I D F E A cB dB eB fB"},F:{1:"0 1 2 3 4 5 6 7 8 9 B C P J K L X Y Z a b c d e f g h i j k l m n o p q r s t u v w x O z AB CB EB FB GB HB DB V M T mB nB oB R VB qB U",2:"E lB"},G:{1:"ZB 1B 2B 3B 4B 5B 6B 7B 8B 9B",2:"YB",132:"F rB IB tB uB vB wB xB yB zB"},H:{516:"AC"},I:{1:"Q GC",2:"KB BC CC DC",132:"G EC IB FC"},J:{1:"A",132:"D"},K:{1:"A B C O R VB U"},L:{1:"S"},M:{1:"M"},N:{260:"A B"},O:{1:"HC"},P:{1:"G IC JC KC LC MC XB NC OC"},Q:{1:"PC"},R:{1:"QC"},S:{132:"RC"}},B:1,C:"Form validation"}}});
import argparse import json import os import shutil import functools import torch from torch.optim import SGD, Adadelta, Adam from src import CONFIG, models, train def parse_flags(): parser = argparse.ArgumentParser() parser.add_argument('--model', default='mnist', choices=['binary', 'mnist'], help='Name of model.') parser.add_argument('--model_dir', default='./saved', help='Directory to save run information in.') parser.add_argument('--seed', default=2, type=int, help='Random seed.') parser.add_argument('--optimizer_model', choices=['sgd', 'adadelta', 'adam'], default='adam', help='Number of steps to run model') parser.add_argument('--optimizer_meta', choices=['sgd', 'adadelta', 'adam'], default='adam', help='Number of steps to run model') parser.add_argument('--optimizer_kwargs_model', help='Comma separated kwargs for model optimizer. Keys and values are separated by a colon. E.g. lr:0.01,alpha:0.2') parser.add_argument('--optimizer_kwargs_meta', help='Comma separated kwargs for meta-model optimizer. Keys and values are separated by a colon. E.g. lr:0.01,alpha:0.2') parser.add_argument('--num_steps_model', default=50, type=int, help='Number of steps to run model.') parser.add_argument('--num_steps_meta', default=300, type=int, help='Number of steps to run meta-model.') parser.add_argument('--reset', action='store_true', help='If set, delete the existing model directory and start training from scratch.') parser.add_argument('--supply_truth', action='store_true', help='Supply optimizer deltas to meta-optimizer.') parser.add_argument('--run_name', default='default', help='Name of run.') parser.add_argument('--test', help='Dir path for trained model/config file. THIS OVERRIDES OTHER OPTIONS.') parser.add_argument('--freq_save', default=1000, type=int, help='Number of meta steps before saving learner.') parser.add_argument('--freq_debug', type=int, help='Number of meta steps before outputtig diagnostic info.') parser.parse_args(namespace=CONFIG) def proc_flags(): if CONFIG.test: if not os.path.isfile(CONFIG.test): raise ValueError(CONFIG.test) with open(CONFIG.test) as f: config = json.load(f) for k, v in config.items(): if k == 'test': continue setattr(CONFIG, k, v) else: run_name_components = [CONFIG.run_name, CONFIG.model, str(CONFIG.optimizer_meta), str(CONFIG.optimizer_model), str(CONFIG.seed)] CONFIG.dpath_model = os.path.join(CONFIG.model_dir, '_'.join(run_name_components)) if CONFIG.reset: shutil.rmtree(CONFIG.dpath_model, ignore_errors=True) CONFIG.fpath_checkpoint = os.path.join(CONFIG.dpath_model, 'checkpoint') CONFIG.fpath_eval_data = os.path.join(CONFIG.dpath_model, 'eval_data.pkl') if not os.path.exists(CONFIG.dpath_model): os.makedirs(CONFIG.dpath_model) with open(os.path.join(CONFIG.dpath_model, 'config.txt'), 'w') as f: json.dump(vars(CONFIG), f, indent=4) torch.manual_seed(CONFIG.seed) CONFIG.optimizer_closure_model = get_optimizer_closure(CONFIG.optimizer_model, CONFIG.optimizer_kwargs_model) CONFIG.optimizer_closure_meta = get_optimizer_closure(CONFIG.optimizer_meta, CONFIG.optimizer_kwargs_meta) if CONFIG.model == 'binary': CONFIG.model_class = models.BinaryClassifier elif CONFIG.model == 'mnist': CONFIG.model_class = models.MNIST def get_optimizer_closure(name, opts): kwargs = dict(kv.split(':') for kv in opts.split(',')) if opts else {} for k, v in kwargs.items(): try: kwargs[k] = float(v) except ValueError: pass c = { 'sgd': SGD, 'adadelta': Adadelta, 'adam': Adam, }.get(name.lower()) if not c: raise ValueError(name) optimizer_closure = functools.partial(c, **kwargs) return optimizer_closure if __name__ == '__main__': parse_flags() proc_flags() if CONFIG.test: from src.test import test, graph CONFIG.num_steps_model = 1 results = test() graph(results) else: meta_learner = train.MetaOptimizer() meta_learner.run()
//generates a solvable maze, given a matrix of barrier blocks function SurvivalMazeGenerator(height, width, block_width, world, paper, story_generator){ this.generate = function(){ this.start = null; this.total_plants = 0; this.fire = 0; this.total_disease = 0; this.total_fertility = 0; this.num_blocks = 0; //starting plant seeding this.percent_plants = Math.random() * 10 + 10; this.story_generator = story_generator; base_world = this.initWorld(height, width, block_width, world, paper); this.world = base_world; return base_world } //makes a world full of random blocks this.initWorld = function(height, width, block_width, world, paper){ //width for(var i = 0; i < height; i+= block_width){ //set this row in the matrix world[i/block_width] = new Array(Math.round(width/block_width)); for(var j = 0; j < width; j+=block_width){ var block = new PlantBlock(j,i,block_width, paper); this.num_blocks += 1; world[i/block_width][j/block_width] = block; //ties into story_world //lets you paint blocks block.earth_sprite.mousemove(function () { if(mouseIsDown){ blockClicked(this.attrs["x"], this.attrs["y"]); } }); //also work if just click block.earth_sprite.mousedown(function () { blockClicked(this.attrs["x"], this.attrs["y"]); }); //random chance of being space or not if(Math.random() * 100 < this.percent_plants){ block.makeBarrier(); }else{ block.makeSpace(); if(this.start == null){ this.start = block; } } }//end for j }//end for i return world; }//end buildWorld this.compare = function(prev_plants,prev_fire, prev_fertility){ //if over half plants if((this.total_plants > (this.num_blocks * 50)) && Math.abs(prev_plants - this.total_plants) > 100){ story_generator.writeStory("Many Plants", Math.round(this.total_plants/this.num_blocks)); }; //less than 10 percent plants if((this.total_plants < (this.num_blocks * 30)) && (Math.abs(prev_plants - this.total_plants) > 300 || (this.total_plants < 300 && this.total_plants > 0))){ story_generator.writeStory("Few Plants", Math.round(this.total_plants/this.num_blocks)); }; if((this.total_fertility > (this.num_blocks * 50)) && Math.abs(prev_fertility - this.total_fertility) > 100){ story_generator.writeStory("Fertile", Math.round(this.total_fertility/this.num_blocks)); }; if((this.total_fertility < (this.num_blocks * 30)) && (Math.abs(prev_fertility - this.total_fertility) > 300 || (this.total_fertility < 300 && this.total_fertility > 0))){ story_generator.writeStory("Not Fertile", Math.round(this.total_fertility/this.num_blocks)); }; if(this.total_disease < (this.total_plants/5) && ((Math.abs(prev_disease - this.total_disease) > 300) && this.total_disease > 0 )){ story_generator.writeStory("Little Disease", Math.round(this.total_disease/this.num_blocks)); }; if(this.total_disease > (this.total_plants) && (Math.abs(prev_disease - this.total_disease) > 600)){ story_generator.writeStory("Much Disease", Math.round(this.total_disease/this.num_blocks)); } if(this.total_disease == 0 && prev_disease != 0){ story_generator.writeStory("No Disease", 0); } if(this.total_plants == 0 && prev_plants != 0){ story_generator.writeStory("No Plants", 0); } if(this.fire > 0 && prev_fire == 0){ story_generator.writeStory("Fire",this.fire); } if(this.fire == 0 && prev_fire > 0){ story_generator.writeStory("No Fire",this.fire); } }//end compare //all blocks spread their plants this.tick = function(){ prev_plants = this.total_plants; prev_fire = this.fire; prev_fertility = this.total_fertility; this.total_plants = 0; this.total_disease = 0; this.total_fertility = 0; this.fire = 0; for(i in this.world){ for(j in this.world[i]){ block = this.world[i][j]; this.total_plants += block.plant; this.total_disease += block.disease; this.total_fertility += block.fertility; if(block.burning == true){ this.fire += 1; } block.tick(world,i,j); }//end inner for } this.compare(prev_plants,prev_fire, prev_fertility); }//end tick }//end function generator
load("201224b0d1c296b45befd2285e95dd42.js"); // Resumption values from uncaughtExceptionHook from onNewGlobalObject // handlers affect the dispatch of the event to other Debugger instances. load("19d7bc83becec11ee32c3a85fbc4d93d.js"); var dbg1 = new Debugger; var dbg2 = new Debugger; var dbg3 = new Debugger; var log; var count; dbg1.onNewGlobalObject = dbg2.onNewGlobalObject = dbg3.onNewGlobalObject = function () { log += 'n'; throw 'party'; }; dbg1.uncaughtExceptionHook = dbg2.uncaughtExceptionHook = dbg3.uncaughtExceptionHook = function (ex) { log += 'u'; assertEq(ex, 'party'); if (++count == 2) return { throw: 'fit' }; return undefined; }; log = ''; count = 0; assertEq(typeof newGlobal(), 'object'); assertEq(log, 'nunu');
const hall = require('../plugins'); const plugins = require('../plugins'); const pomelo = require('pomelo'); const redisClient = require('../../utils/import_db').redisClient; const mysqlClient = require('../../utils/import_db').mysqlClient; const EventEmitter = require('events').EventEmitter; class RankMatch { constructor() { this._event = new EventEmitter(); } get event(){ return this._event; } async start() { let result = await redisClient.start(pomelo.app.get('redis')); if (!result) { process.exit(0); return; } result = await mysqlClient.start(pomelo.app.get('mysql')); if (!result) { process.exit(0); return; } this._instance = new plugins[sysConfig.GAME_TYPE].MatchRankInstance(); this._instance.start(); logger.info('排位赛比赛服启动成功'); } stop() { this._instance.stop(); } remoteRpc(method, data, cb) { this._instance.remoteRpc(method, data, cb); } getLoadInfo() { return this._instance.getLoadStatistics(); } } module.exports = new RankMatch();
module.exports = function toReadable(number) { const ones = new Array( "", " one", " two", " three", " four", " five", " six", " seven", " eight", " nine", " ten", " eleven", " twelve", " thirteen", " fourteen", " fifteen", " sixteen", " seventeen", " eighteen", " nineteen" ); const tens = new Array( "", "", " twenty", " thirty", " forty", " fifty", " sixty", " seventy", " eighty", " ninety" ); const hundred = " hundred"; let output = ""; let num = number; let numString = num.toString(); let numArr = numString.split(""); if (num == 0) { output += "zero"; } else if (numArr.length == 1) { funOnes(num); } else if (numArr.length == 2) { funTens(num); } else if (numArr.length == 3) { funHundred(num); } let finOut = output.trim(); // let finOut = // "Should return '" + output.trim() + "' when " + number + " given"; return finOut; // console.log("finOut :>> ", finOut); function funOnes(num) { output += ones[num]; } function funTens(num) { if (num < 20) { output += ones[num]; } else { output += tens[numArr[0]] + ones[numArr[1]]; } } function funHundred(num) { output += ones[numArr[0]] + hundred; if (num % 100 < 20) { output += ones[num % 100]; } else { output += tens[numArr[1]] + ones[numArr[2]]; } } }; // toReadable(212);
angular.module('services').service( 'HostingStatistics', class HostingStatistics { /** * Constructor * @param $http * @param $q * @param OvhHttp */ constructor($http, $q, OvhHttp) { this.$http = $http; this.$q = $q; this.OvhHttp = OvhHttp; } getLogs(serviceName, attachedDomain) { const fqdn = attachedDomain || serviceName; return this.$http .get(`/hosting/web/${serviceName}/ownLogs`, { params: { fqdn, }, }) .then(({ data }) => data.length > 0 ? this.$http.get(`/hosting/web/${serviceName}/ownLogs/${data[0]}`) : { data: {} }, ) .then(({ data: ownLog }) => ownLog); } getStatisticsConstants() { return this.$q.when({ types: [ 'IN_FTP_COMMANDS', 'IN_HTTP_HITS', 'IN_HTTP_MEAN_RESPONSE_TIME', 'OUT_TCP_CONN', 'SYS_CPU_USAGE', 'SYS_WORKER_SPAWN_OVERLOAD', ], dbTypes: ['STATEMENT', 'STATEMENT_MEAN_TIME'], defaultType: 'IN_HTTP_HITS', periods: ['DAILY', 'WEEKLY', 'MONTHLY', 'YEARLY'], defaultPeriod: 'WEEKLY', aggregateModes: ['ALL', 'HTTP_CODE', 'NONE'], defaultAggregateMode: 'HTTP_CODE', }); } getStatistics(serviceName, period, type, aggregation) { return this.OvhHttp.get(`/sws/hosting/web/${serviceName}/statistics`, { rootPath: '2api', params: { period, type, aggregation, }, }); } }, );
const mongoose = require('mongoose'); const { Extension } = require('../FHIRDataTypesSchemaExport/allTypeSchemaTopDef'); const id = require('../FHIRDataTypesSchema/id'); const unsignedInt = require('../FHIRDataTypesSchema/unsignedInt'); const { Coding } = require('../FHIRDataTypesSchemaExport/allTypeSchemaTopDef'); const string = require('../FHIRDataTypesSchema/string'); const { Reference } = require('../FHIRDataTypesSchemaExport/allTypeSchemaTopDef'); const dateTime = require('../FHIRDataTypesSchema/dateTime'); const { ImagingStudy_Performer } = require('../FHIRDataTypesSchemaExport/allTypeSchemaTopDef'); const { ImagingStudy_Instance } = require('../FHIRDataTypesSchemaExport/allTypeSchemaTopDef'); const { ImagingStudy_Series } = require("../FHIRDataTypesSchemaExport/allTypeSchemaTopDef"); ImagingStudy_Series.add({ extension: { type: [Extension], default: void 0 }, modifierExtension: { type: [Extension], default: void 0 }, uid: id, number: unsignedInt, modality: { type: Coding, required: true, default: void 0 }, description: string, numberOfInstances: unsignedInt, endpoint: { type: [Reference], default: void 0 }, bodySite: { type: Coding, default: void 0 }, laterality: { type: Coding, default: void 0 }, specimen: { type: [Reference], default: void 0 }, started: dateTime, performer: { type: [ImagingStudy_Performer], default: void 0 }, instance: { type: [ImagingStudy_Instance], default: void 0 } }); module.exports.ImagingStudy_Series = ImagingStudy_Series;
function test() { for (var i of array) {} for (let i of array) {} }
import styled from 'styled-components'; export const Container = styled.div` display: flex; justify-content: flex-start; align-items: center; `; export const Content = styled.div` height: 25px; width: 100%; background: ${props => props.background}; display: flex; justify-content: center; align-items: center; padding: 0 6px; border-radius: 12px; svg { margin-right: 6px; } strong { font-size: 14px; color: ${props => props.color}; } `;
game.LabelEntity = me.ObjectEntity.extend({ // constructor init: function(x, y, settings) { // call the constructor this.parent(x + (settings.width / 2), y, settings); this.font = new me.Font("Courier", settings.fontSize || 18, settings.color || "white", "left"); this.formattedId = settings.formattedId; this.nextAlpha = 1; this.isDisplayed = false; }, draw: function(context) { this.nextAlpha -= 0.01; if (this.nextAlpha < 0) { me.game.world.removeChild(this); return; } context.save(); var local_alpha = context.globalAlpha; context.globalAlpha = this.nextAlpha; this.parent(); this.font.draw(context, this.formattedId, this.pos.x, this.pos.y); context.globalAlpha = local_alpha; context.restore(); } });