diff --git a/bundle.js b/bundle.js index 5b452dd96..6df2ab46c 100644 --- a/bundle.js +++ b/bundle.js @@ -1971,7 +1971,7 @@ function numberIsNaN (obj) { } }).call(this)}).call(this,require("buffer").Buffer) -},{"base64-js":2,"buffer":4,"ieee754":81}],5:[function(require,module,exports){ +},{"base64-js":2,"buffer":4,"ieee754":83}],5:[function(require,module,exports){ 'use strict'; var GetIntrinsic = require('get-intrinsic'); @@ -1988,17 +1988,18 @@ module.exports = function callBoundIntrinsic(name, allowMissing) { return intrinsic; }; -},{"./":6,"get-intrinsic":65}],6:[function(require,module,exports){ +},{"./":6,"get-intrinsic":66}],6:[function(require,module,exports){ 'use strict'; var bind = require('function-bind'); var GetIntrinsic = require('get-intrinsic'); +var setFunctionLength = require('set-function-length'); +var $TypeError = GetIntrinsic('%TypeError%'); var $apply = GetIntrinsic('%Function.prototype.apply%'); var $call = GetIntrinsic('%Function.prototype.call%'); var $reflectApply = GetIntrinsic('%Reflect.apply%', true) || bind.call($call, $apply); -var $gOPD = GetIntrinsic('%Object.getOwnPropertyDescriptor%', true); var $defineProperty = GetIntrinsic('%Object.defineProperty%', true); var $max = GetIntrinsic('%Math.max%'); @@ -2012,19 +2013,15 @@ if ($defineProperty) { } module.exports = function callBind(originalFunction) { - var func = $reflectApply(bind, $call, arguments); - if ($gOPD && $defineProperty) { - var desc = $gOPD(func, 'length'); - if (desc.configurable) { - // original length, plus the receiver, minus any additional arguments (after the receiver) - $defineProperty( - func, - 'length', - { value: 1 + $max(0, originalFunction.length - (arguments.length - 1)) } - ); - } + if (typeof originalFunction !== 'function') { + throw new $TypeError('a function is required'); } - return func; + var func = $reflectApply(bind, $call, arguments); + return setFunctionLength( + func, + 1 + $max(0, originalFunction.length - (arguments.length - 1)), + true + ); }; var applyBind = function applyBind() { @@ -2037,7 +2034,7 @@ if ($defineProperty) { module.exports.apply = applyBind; } -},{"function-bind":64,"get-intrinsic":65}],7:[function(require,module,exports){ +},{"function-bind":65,"get-intrinsic":66,"set-function-length":492}],7:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.groupSelectors = exports.getDocumentRoot = void 0; @@ -2379,7 +2376,7 @@ function filterElements(elements, sel, options) { return els.filter(query); } -},{"./helpers":7,"./positionals":9,"css-select":28,"css-what":36,"domutils":55}],9:[function(require,module,exports){ +},{"./helpers":7,"./positionals":9,"css-select":28,"css-what":36,"domutils":56}],9:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getLimit = exports.isFilter = exports.filterNames = void 0; @@ -4053,7 +4050,7 @@ function clone() { } exports.clone = clone; -},{"../parse":19,"../static":22,"../utils":24,"domhandler":51,"htmlparser2":75,"tslib":491}],14:[function(require,module,exports){ +},{"../parse":19,"../static":22,"../utils":24,"domhandler":52,"htmlparser2":77,"tslib":494}],14:[function(require,module,exports){ "use strict"; /** * Methods for traversing the DOM structure. @@ -4921,7 +4918,7 @@ function addBack(selector) { } exports.addBack = addBack; -},{"../static":22,"../utils":24,"cheerio-select":8,"domhandler":51,"htmlparser2":75,"tslib":491}],15:[function(require,module,exports){ +},{"../static":22,"../utils":24,"cheerio-select":8,"domhandler":52,"htmlparser2":77,"tslib":494}],15:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Cheerio = void 0; @@ -5038,7 +5035,7 @@ function isNode(obj) { obj.type === 'comment'); } -},{"./api/attributes":10,"./api/css":11,"./api/forms":12,"./api/manipulation":13,"./api/traversing":14,"./options":18,"./parse":19,"./utils":24,"tslib":491}],16:[function(require,module,exports){ +},{"./api/attributes":10,"./api/css":11,"./api/forms":12,"./api/manipulation":13,"./api/traversing":14,"./options":18,"./parse":19,"./utils":24,"tslib":494}],16:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.root = exports.parseHTML = exports.merge = exports.contains = void 0; @@ -5121,7 +5118,7 @@ exports.parseHTML = staticMethods.parseHTML; */ exports.root = staticMethods.root; -},{"./load":17,"./static":22,"./types":23,"tslib":491}],17:[function(require,module,exports){ +},{"./load":17,"./static":22,"./types":23,"tslib":494}],17:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.load = void 0; @@ -5176,7 +5173,7 @@ function load(content, options, isDocument) { } exports.load = load; -},{"./cheerio":15,"./options":18,"./parse":19,"./static":22,"tslib":491}],18:[function(require,module,exports){ +},{"./cheerio":15,"./options":18,"./parse":19,"./static":22,"tslib":494}],18:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.flatten = void 0; @@ -5200,7 +5197,7 @@ function flatten(options) { } exports.flatten = flatten; -},{"tslib":491}],19:[function(require,module,exports){ +},{"tslib":494}],19:[function(require,module,exports){ (function (Buffer){(function (){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); @@ -5271,7 +5268,7 @@ function update(newChilds, parent) { exports.update = update; }).call(this)}).call(this,require("buffer").Buffer) -},{"./parsers/htmlparser2-adapter":20,"./parsers/parse5-adapter":21,"buffer":4,"domhandler":51,"htmlparser2":75}],20:[function(require,module,exports){ +},{"./parsers/htmlparser2-adapter":20,"./parsers/parse5-adapter":21,"buffer":4,"domhandler":52,"htmlparser2":77}],20:[function(require,module,exports){ "use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; @@ -5283,7 +5280,7 @@ Object.defineProperty(exports, "parse", { enumerable: true, get: function () { r var dom_serializer_1 = require("dom-serializer"); Object.defineProperty(exports, "render", { enumerable: true, get: function () { return __importDefault(dom_serializer_1).default; } }); -},{"dom-serializer":41,"htmlparser2":75}],21:[function(require,module,exports){ +},{"dom-serializer":42,"htmlparser2":77}],21:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.render = exports.parse = void 0; @@ -5326,7 +5323,7 @@ function render(dom) { } exports.render = render; -},{"domhandler":51,"parse5":477,"parse5-htmlparser2-tree-adapter":463,"tslib":491}],22:[function(require,module,exports){ +},{"domhandler":52,"parse5":479,"parse5-htmlparser2-tree-adapter":465,"tslib":494}],22:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.merge = exports.contains = exports.root = exports.parseHTML = exports.text = exports.xml = exports.html = void 0; @@ -5535,7 +5532,7 @@ function isArrayLike(item) { return true; } -},{"./options":18,"./parsers/htmlparser2-adapter":20,"./parsers/parse5-adapter":21,"cheerio-select":8,"htmlparser2":75,"tslib":491}],23:[function(require,module,exports){ +},{"./options":18,"./parsers/htmlparser2-adapter":20,"./parsers/parse5-adapter":21,"cheerio-select":8,"htmlparser2":77,"tslib":494}],23:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); @@ -5652,7 +5649,7 @@ function isHtml(str) { } exports.isHtml = isHtml; -},{"domhandler":51,"htmlparser2":75}],25:[function(require,module,exports){ +},{"domhandler":52,"htmlparser2":77}],25:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.attributeRules = void 0; @@ -6300,7 +6297,7 @@ Object.defineProperty(exports, "filters", { enumerable: true, get: function () { Object.defineProperty(exports, "pseudos", { enumerable: true, get: function () { return pseudo_selectors_1.pseudos; } }); Object.defineProperty(exports, "aliases", { enumerable: true, get: function () { return pseudo_selectors_1.aliases; } }); -},{"./compile":26,"./pseudo-selectors":32,"./pseudo-selectors/subselects":34,"boolbase":3,"domutils":55}],29:[function(require,module,exports){ +},{"./compile":26,"./pseudo-selectors":32,"./pseudo-selectors/subselects":34,"boolbase":3,"domutils":56}],29:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isTraversal = exports.procedure = void 0; @@ -6516,7 +6513,7 @@ function dynamicStatePseudo(name) { }; } -},{"boolbase":3,"nth-check":461}],32:[function(require,module,exports){ +},{"boolbase":3,"nth-check":463}],32:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.compilePseudoSelector = exports.aliases = exports.pseudos = exports.filters = void 0; @@ -7499,6 +7496,76 @@ var AttributeAction; })(AttributeAction = exports.AttributeAction || (exports.AttributeAction = {})); },{}],40:[function(require,module,exports){ +'use strict'; + +var hasPropertyDescriptors = require('has-property-descriptors')(); + +var GetIntrinsic = require('get-intrinsic'); + +var $defineProperty = hasPropertyDescriptors && GetIntrinsic('%Object.defineProperty%', true); +if ($defineProperty) { + try { + $defineProperty({}, 'a', { value: 1 }); + } catch (e) { + // IE 8 has a broken defineProperty + $defineProperty = false; + } +} + +var $SyntaxError = GetIntrinsic('%SyntaxError%'); +var $TypeError = GetIntrinsic('%TypeError%'); + +var gopd = require('gopd'); + +/** @type {(obj: Record, property: PropertyKey, value: unknown, nonEnumerable?: boolean | null, nonWritable?: boolean | null, nonConfigurable?: boolean | null, loose?: boolean) => void} */ +module.exports = function defineDataProperty( + obj, + property, + value +) { + if (!obj || (typeof obj !== 'object' && typeof obj !== 'function')) { + throw new $TypeError('`obj` must be an object or a function`'); + } + if (typeof property !== 'string' && typeof property !== 'symbol') { + throw new $TypeError('`property` must be a string or a symbol`'); + } + if (arguments.length > 3 && typeof arguments[3] !== 'boolean' && arguments[3] !== null) { + throw new $TypeError('`nonEnumerable`, if provided, must be a boolean or null'); + } + if (arguments.length > 4 && typeof arguments[4] !== 'boolean' && arguments[4] !== null) { + throw new $TypeError('`nonWritable`, if provided, must be a boolean or null'); + } + if (arguments.length > 5 && typeof arguments[5] !== 'boolean' && arguments[5] !== null) { + throw new $TypeError('`nonConfigurable`, if provided, must be a boolean or null'); + } + if (arguments.length > 6 && typeof arguments[6] !== 'boolean') { + throw new $TypeError('`loose`, if provided, must be a boolean'); + } + + var nonEnumerable = arguments.length > 3 ? arguments[3] : null; + var nonWritable = arguments.length > 4 ? arguments[4] : null; + var nonConfigurable = arguments.length > 5 ? arguments[5] : null; + var loose = arguments.length > 6 ? arguments[6] : false; + + /* @type {false | TypedPropertyDescriptor} */ + var desc = !!gopd && gopd(obj, property); + + if ($defineProperty) { + $defineProperty(obj, property, { + configurable: nonConfigurable === null && desc ? desc.configurable : !nonConfigurable, + enumerable: nonEnumerable === null && desc ? desc.enumerable : !nonEnumerable, + value: value, + writable: nonWritable === null && desc ? desc.writable : !nonWritable + }); + } else if (loose || (!nonEnumerable && !nonWritable && !nonConfigurable)) { + // must fall back to [[Set]], and was not explicitly asked to make non-enumerable, non-writable, or non-configurable + obj[property] = value; // eslint-disable-line no-param-reassign + } else { + throw new $SyntaxError('This environment does not support defining a property as non-configurable, non-writable, or non-enumerable.'); + } +}; + +},{"get-intrinsic":66,"gopd":67,"has-property-descriptors":68}],41:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.attributeNames = exports.elementNames = void 0; @@ -7603,7 +7670,7 @@ exports.attributeNames = new Map([ ["zoomandpan", "zoomAndPan"], ]); -},{}],41:[function(require,module,exports){ +},{}],42:[function(require,module,exports){ "use strict"; var __assign = (this && this.__assign) || function () { __assign = Object.assign || function(t) { @@ -7816,7 +7883,7 @@ function renderComment(elem) { return ""; } -},{"./foreignNames":40,"domelementtype":50,"entities":45}],42:[function(require,module,exports){ +},{"./foreignNames":41,"domelementtype":51,"entities":46}],43:[function(require,module,exports){ "use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; @@ -7871,7 +7938,7 @@ function getReplacer(map) { }; } -},{"./decode_codepoint":43,"./maps/entities.json":47,"./maps/legacy.json":48,"./maps/xml.json":49}],43:[function(require,module,exports){ +},{"./decode_codepoint":44,"./maps/entities.json":48,"./maps/legacy.json":49,"./maps/xml.json":50}],44:[function(require,module,exports){ "use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; @@ -7903,7 +7970,7 @@ function decodeCodePoint(codePoint) { } exports.default = decodeCodePoint; -},{"./maps/decode.json":46}],44:[function(require,module,exports){ +},{"./maps/decode.json":47}],45:[function(require,module,exports){ "use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; @@ -8041,7 +8108,7 @@ function getASCIIEncoder(obj) { }; } -},{"./maps/entities.json":47,"./maps/xml.json":49}],45:[function(require,module,exports){ +},{"./maps/entities.json":48,"./maps/xml.json":50}],46:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.decodeXMLStrict = exports.decodeHTML5Strict = exports.decodeHTML4Strict = exports.decodeHTML5 = exports.decodeHTML4 = exports.decodeHTMLStrict = exports.decodeHTML = exports.decodeXML = exports.encodeHTML5 = exports.encodeHTML4 = exports.escapeUTF8 = exports.escape = exports.encodeNonAsciiHTML = exports.encodeHTML = exports.encodeXML = exports.encode = exports.decodeStrict = exports.decode = void 0; @@ -8100,19 +8167,19 @@ Object.defineProperty(exports, "decodeHTML4Strict", { enumerable: true, get: fun Object.defineProperty(exports, "decodeHTML5Strict", { enumerable: true, get: function () { return decode_2.decodeHTMLStrict; } }); Object.defineProperty(exports, "decodeXMLStrict", { enumerable: true, get: function () { return decode_2.decodeXML; } }); -},{"./decode":42,"./encode":44}],46:[function(require,module,exports){ +},{"./decode":43,"./encode":45}],47:[function(require,module,exports){ module.exports={"0":65533,"128":8364,"130":8218,"131":402,"132":8222,"133":8230,"134":8224,"135":8225,"136":710,"137":8240,"138":352,"139":8249,"140":338,"142":381,"145":8216,"146":8217,"147":8220,"148":8221,"149":8226,"150":8211,"151":8212,"152":732,"153":8482,"154":353,"155":8250,"156":339,"158":382,"159":376} -},{}],47:[function(require,module,exports){ +},{}],48:[function(require,module,exports){ module.exports={"Aacute":"Á","aacute":"á","Abreve":"Ă","abreve":"ă","ac":"∾","acd":"∿","acE":"∾̳","Acirc":"Â","acirc":"â","acute":"´","Acy":"А","acy":"а","AElig":"Æ","aelig":"æ","af":"⁡","Afr":"𝔄","afr":"𝔞","Agrave":"À","agrave":"à","alefsym":"ℵ","aleph":"ℵ","Alpha":"Α","alpha":"α","Amacr":"Ā","amacr":"ā","amalg":"⨿","amp":"&","AMP":"&","andand":"⩕","And":"⩓","and":"∧","andd":"⩜","andslope":"⩘","andv":"⩚","ang":"∠","ange":"⦤","angle":"∠","angmsdaa":"⦨","angmsdab":"⦩","angmsdac":"⦪","angmsdad":"⦫","angmsdae":"⦬","angmsdaf":"⦭","angmsdag":"⦮","angmsdah":"⦯","angmsd":"∡","angrt":"∟","angrtvb":"⊾","angrtvbd":"⦝","angsph":"∢","angst":"Å","angzarr":"⍼","Aogon":"Ą","aogon":"ą","Aopf":"𝔸","aopf":"𝕒","apacir":"⩯","ap":"≈","apE":"⩰","ape":"≊","apid":"≋","apos":"'","ApplyFunction":"⁡","approx":"≈","approxeq":"≊","Aring":"Å","aring":"å","Ascr":"𝒜","ascr":"𝒶","Assign":"≔","ast":"*","asymp":"≈","asympeq":"≍","Atilde":"Ã","atilde":"ã","Auml":"Ä","auml":"ä","awconint":"∳","awint":"⨑","backcong":"≌","backepsilon":"϶","backprime":"‵","backsim":"∽","backsimeq":"⋍","Backslash":"∖","Barv":"⫧","barvee":"⊽","barwed":"⌅","Barwed":"⌆","barwedge":"⌅","bbrk":"⎵","bbrktbrk":"⎶","bcong":"≌","Bcy":"Б","bcy":"б","bdquo":"„","becaus":"∵","because":"∵","Because":"∵","bemptyv":"⦰","bepsi":"϶","bernou":"ℬ","Bernoullis":"ℬ","Beta":"Β","beta":"β","beth":"ℶ","between":"≬","Bfr":"𝔅","bfr":"𝔟","bigcap":"⋂","bigcirc":"◯","bigcup":"⋃","bigodot":"⨀","bigoplus":"⨁","bigotimes":"⨂","bigsqcup":"⨆","bigstar":"★","bigtriangledown":"▽","bigtriangleup":"△","biguplus":"⨄","bigvee":"⋁","bigwedge":"⋀","bkarow":"⤍","blacklozenge":"⧫","blacksquare":"▪","blacktriangle":"▴","blacktriangledown":"▾","blacktriangleleft":"◂","blacktriangleright":"▸","blank":"␣","blk12":"▒","blk14":"░","blk34":"▓","block":"█","bne":"=⃥","bnequiv":"≡⃥","bNot":"⫭","bnot":"⌐","Bopf":"𝔹","bopf":"𝕓","bot":"⊥","bottom":"⊥","bowtie":"⋈","boxbox":"⧉","boxdl":"┐","boxdL":"╕","boxDl":"╖","boxDL":"╗","boxdr":"┌","boxdR":"╒","boxDr":"╓","boxDR":"╔","boxh":"─","boxH":"═","boxhd":"┬","boxHd":"╤","boxhD":"╥","boxHD":"╦","boxhu":"┴","boxHu":"╧","boxhU":"╨","boxHU":"╩","boxminus":"⊟","boxplus":"⊞","boxtimes":"⊠","boxul":"┘","boxuL":"╛","boxUl":"╜","boxUL":"╝","boxur":"└","boxuR":"╘","boxUr":"╙","boxUR":"╚","boxv":"│","boxV":"║","boxvh":"┼","boxvH":"╪","boxVh":"╫","boxVH":"╬","boxvl":"┤","boxvL":"╡","boxVl":"╢","boxVL":"╣","boxvr":"├","boxvR":"╞","boxVr":"╟","boxVR":"╠","bprime":"‵","breve":"˘","Breve":"˘","brvbar":"¦","bscr":"𝒷","Bscr":"ℬ","bsemi":"⁏","bsim":"∽","bsime":"⋍","bsolb":"⧅","bsol":"\\","bsolhsub":"⟈","bull":"•","bullet":"•","bump":"≎","bumpE":"⪮","bumpe":"≏","Bumpeq":"≎","bumpeq":"≏","Cacute":"Ć","cacute":"ć","capand":"⩄","capbrcup":"⩉","capcap":"⩋","cap":"∩","Cap":"⋒","capcup":"⩇","capdot":"⩀","CapitalDifferentialD":"ⅅ","caps":"∩︀","caret":"⁁","caron":"ˇ","Cayleys":"ℭ","ccaps":"⩍","Ccaron":"Č","ccaron":"č","Ccedil":"Ç","ccedil":"ç","Ccirc":"Ĉ","ccirc":"ĉ","Cconint":"∰","ccups":"⩌","ccupssm":"⩐","Cdot":"Ċ","cdot":"ċ","cedil":"¸","Cedilla":"¸","cemptyv":"⦲","cent":"¢","centerdot":"·","CenterDot":"·","cfr":"𝔠","Cfr":"ℭ","CHcy":"Ч","chcy":"ч","check":"✓","checkmark":"✓","Chi":"Χ","chi":"χ","circ":"ˆ","circeq":"≗","circlearrowleft":"↺","circlearrowright":"↻","circledast":"⊛","circledcirc":"⊚","circleddash":"⊝","CircleDot":"⊙","circledR":"®","circledS":"Ⓢ","CircleMinus":"⊖","CirclePlus":"⊕","CircleTimes":"⊗","cir":"○","cirE":"⧃","cire":"≗","cirfnint":"⨐","cirmid":"⫯","cirscir":"⧂","ClockwiseContourIntegral":"∲","CloseCurlyDoubleQuote":"”","CloseCurlyQuote":"’","clubs":"♣","clubsuit":"♣","colon":":","Colon":"∷","Colone":"⩴","colone":"≔","coloneq":"≔","comma":",","commat":"@","comp":"∁","compfn":"∘","complement":"∁","complexes":"ℂ","cong":"≅","congdot":"⩭","Congruent":"≡","conint":"∮","Conint":"∯","ContourIntegral":"∮","copf":"𝕔","Copf":"ℂ","coprod":"∐","Coproduct":"∐","copy":"©","COPY":"©","copysr":"℗","CounterClockwiseContourIntegral":"∳","crarr":"↵","cross":"✗","Cross":"⨯","Cscr":"𝒞","cscr":"𝒸","csub":"⫏","csube":"⫑","csup":"⫐","csupe":"⫒","ctdot":"⋯","cudarrl":"⤸","cudarrr":"⤵","cuepr":"⋞","cuesc":"⋟","cularr":"↶","cularrp":"⤽","cupbrcap":"⩈","cupcap":"⩆","CupCap":"≍","cup":"∪","Cup":"⋓","cupcup":"⩊","cupdot":"⊍","cupor":"⩅","cups":"∪︀","curarr":"↷","curarrm":"⤼","curlyeqprec":"⋞","curlyeqsucc":"⋟","curlyvee":"⋎","curlywedge":"⋏","curren":"¤","curvearrowleft":"↶","curvearrowright":"↷","cuvee":"⋎","cuwed":"⋏","cwconint":"∲","cwint":"∱","cylcty":"⌭","dagger":"†","Dagger":"‡","daleth":"ℸ","darr":"↓","Darr":"↡","dArr":"⇓","dash":"‐","Dashv":"⫤","dashv":"⊣","dbkarow":"⤏","dblac":"˝","Dcaron":"Ď","dcaron":"ď","Dcy":"Д","dcy":"д","ddagger":"‡","ddarr":"⇊","DD":"ⅅ","dd":"ⅆ","DDotrahd":"⤑","ddotseq":"⩷","deg":"°","Del":"∇","Delta":"Δ","delta":"δ","demptyv":"⦱","dfisht":"⥿","Dfr":"𝔇","dfr":"𝔡","dHar":"⥥","dharl":"⇃","dharr":"⇂","DiacriticalAcute":"´","DiacriticalDot":"˙","DiacriticalDoubleAcute":"˝","DiacriticalGrave":"`","DiacriticalTilde":"˜","diam":"⋄","diamond":"⋄","Diamond":"⋄","diamondsuit":"♦","diams":"♦","die":"¨","DifferentialD":"ⅆ","digamma":"ϝ","disin":"⋲","div":"÷","divide":"÷","divideontimes":"⋇","divonx":"⋇","DJcy":"Ђ","djcy":"ђ","dlcorn":"⌞","dlcrop":"⌍","dollar":"$","Dopf":"𝔻","dopf":"𝕕","Dot":"¨","dot":"˙","DotDot":"⃜","doteq":"≐","doteqdot":"≑","DotEqual":"≐","dotminus":"∸","dotplus":"∔","dotsquare":"⊡","doublebarwedge":"⌆","DoubleContourIntegral":"∯","DoubleDot":"¨","DoubleDownArrow":"⇓","DoubleLeftArrow":"⇐","DoubleLeftRightArrow":"⇔","DoubleLeftTee":"⫤","DoubleLongLeftArrow":"⟸","DoubleLongLeftRightArrow":"⟺","DoubleLongRightArrow":"⟹","DoubleRightArrow":"⇒","DoubleRightTee":"⊨","DoubleUpArrow":"⇑","DoubleUpDownArrow":"⇕","DoubleVerticalBar":"∥","DownArrowBar":"⤓","downarrow":"↓","DownArrow":"↓","Downarrow":"⇓","DownArrowUpArrow":"⇵","DownBreve":"̑","downdownarrows":"⇊","downharpoonleft":"⇃","downharpoonright":"⇂","DownLeftRightVector":"⥐","DownLeftTeeVector":"⥞","DownLeftVectorBar":"⥖","DownLeftVector":"↽","DownRightTeeVector":"⥟","DownRightVectorBar":"⥗","DownRightVector":"⇁","DownTeeArrow":"↧","DownTee":"⊤","drbkarow":"⤐","drcorn":"⌟","drcrop":"⌌","Dscr":"𝒟","dscr":"𝒹","DScy":"Ѕ","dscy":"ѕ","dsol":"⧶","Dstrok":"Đ","dstrok":"đ","dtdot":"⋱","dtri":"▿","dtrif":"▾","duarr":"⇵","duhar":"⥯","dwangle":"⦦","DZcy":"Џ","dzcy":"џ","dzigrarr":"⟿","Eacute":"É","eacute":"é","easter":"⩮","Ecaron":"Ě","ecaron":"ě","Ecirc":"Ê","ecirc":"ê","ecir":"≖","ecolon":"≕","Ecy":"Э","ecy":"э","eDDot":"⩷","Edot":"Ė","edot":"ė","eDot":"≑","ee":"ⅇ","efDot":"≒","Efr":"𝔈","efr":"𝔢","eg":"⪚","Egrave":"È","egrave":"è","egs":"⪖","egsdot":"⪘","el":"⪙","Element":"∈","elinters":"⏧","ell":"ℓ","els":"⪕","elsdot":"⪗","Emacr":"Ē","emacr":"ē","empty":"∅","emptyset":"∅","EmptySmallSquare":"◻","emptyv":"∅","EmptyVerySmallSquare":"▫","emsp13":" ","emsp14":" ","emsp":" ","ENG":"Ŋ","eng":"ŋ","ensp":" ","Eogon":"Ę","eogon":"ę","Eopf":"𝔼","eopf":"𝕖","epar":"⋕","eparsl":"⧣","eplus":"⩱","epsi":"ε","Epsilon":"Ε","epsilon":"ε","epsiv":"ϵ","eqcirc":"≖","eqcolon":"≕","eqsim":"≂","eqslantgtr":"⪖","eqslantless":"⪕","Equal":"⩵","equals":"=","EqualTilde":"≂","equest":"≟","Equilibrium":"⇌","equiv":"≡","equivDD":"⩸","eqvparsl":"⧥","erarr":"⥱","erDot":"≓","escr":"ℯ","Escr":"ℰ","esdot":"≐","Esim":"⩳","esim":"≂","Eta":"Η","eta":"η","ETH":"Ð","eth":"ð","Euml":"Ë","euml":"ë","euro":"€","excl":"!","exist":"∃","Exists":"∃","expectation":"ℰ","exponentiale":"ⅇ","ExponentialE":"ⅇ","fallingdotseq":"≒","Fcy":"Ф","fcy":"ф","female":"♀","ffilig":"ffi","fflig":"ff","ffllig":"ffl","Ffr":"𝔉","ffr":"𝔣","filig":"fi","FilledSmallSquare":"◼","FilledVerySmallSquare":"▪","fjlig":"fj","flat":"♭","fllig":"fl","fltns":"▱","fnof":"ƒ","Fopf":"𝔽","fopf":"𝕗","forall":"∀","ForAll":"∀","fork":"⋔","forkv":"⫙","Fouriertrf":"ℱ","fpartint":"⨍","frac12":"½","frac13":"⅓","frac14":"¼","frac15":"⅕","frac16":"⅙","frac18":"⅛","frac23":"⅔","frac25":"⅖","frac34":"¾","frac35":"⅗","frac38":"⅜","frac45":"⅘","frac56":"⅚","frac58":"⅝","frac78":"⅞","frasl":"⁄","frown":"⌢","fscr":"𝒻","Fscr":"ℱ","gacute":"ǵ","Gamma":"Γ","gamma":"γ","Gammad":"Ϝ","gammad":"ϝ","gap":"⪆","Gbreve":"Ğ","gbreve":"ğ","Gcedil":"Ģ","Gcirc":"Ĝ","gcirc":"ĝ","Gcy":"Г","gcy":"г","Gdot":"Ġ","gdot":"ġ","ge":"≥","gE":"≧","gEl":"⪌","gel":"⋛","geq":"≥","geqq":"≧","geqslant":"⩾","gescc":"⪩","ges":"⩾","gesdot":"⪀","gesdoto":"⪂","gesdotol":"⪄","gesl":"⋛︀","gesles":"⪔","Gfr":"𝔊","gfr":"𝔤","gg":"≫","Gg":"⋙","ggg":"⋙","gimel":"ℷ","GJcy":"Ѓ","gjcy":"ѓ","gla":"⪥","gl":"≷","glE":"⪒","glj":"⪤","gnap":"⪊","gnapprox":"⪊","gne":"⪈","gnE":"≩","gneq":"⪈","gneqq":"≩","gnsim":"⋧","Gopf":"𝔾","gopf":"𝕘","grave":"`","GreaterEqual":"≥","GreaterEqualLess":"⋛","GreaterFullEqual":"≧","GreaterGreater":"⪢","GreaterLess":"≷","GreaterSlantEqual":"⩾","GreaterTilde":"≳","Gscr":"𝒢","gscr":"ℊ","gsim":"≳","gsime":"⪎","gsiml":"⪐","gtcc":"⪧","gtcir":"⩺","gt":">","GT":">","Gt":"≫","gtdot":"⋗","gtlPar":"⦕","gtquest":"⩼","gtrapprox":"⪆","gtrarr":"⥸","gtrdot":"⋗","gtreqless":"⋛","gtreqqless":"⪌","gtrless":"≷","gtrsim":"≳","gvertneqq":"≩︀","gvnE":"≩︀","Hacek":"ˇ","hairsp":" ","half":"½","hamilt":"ℋ","HARDcy":"Ъ","hardcy":"ъ","harrcir":"⥈","harr":"↔","hArr":"⇔","harrw":"↭","Hat":"^","hbar":"ℏ","Hcirc":"Ĥ","hcirc":"ĥ","hearts":"♥","heartsuit":"♥","hellip":"…","hercon":"⊹","hfr":"𝔥","Hfr":"ℌ","HilbertSpace":"ℋ","hksearow":"⤥","hkswarow":"⤦","hoarr":"⇿","homtht":"∻","hookleftarrow":"↩","hookrightarrow":"↪","hopf":"𝕙","Hopf":"ℍ","horbar":"―","HorizontalLine":"─","hscr":"𝒽","Hscr":"ℋ","hslash":"ℏ","Hstrok":"Ħ","hstrok":"ħ","HumpDownHump":"≎","HumpEqual":"≏","hybull":"⁃","hyphen":"‐","Iacute":"Í","iacute":"í","ic":"⁣","Icirc":"Î","icirc":"î","Icy":"И","icy":"и","Idot":"İ","IEcy":"Е","iecy":"е","iexcl":"¡","iff":"⇔","ifr":"𝔦","Ifr":"ℑ","Igrave":"Ì","igrave":"ì","ii":"ⅈ","iiiint":"⨌","iiint":"∭","iinfin":"⧜","iiota":"℩","IJlig":"IJ","ijlig":"ij","Imacr":"Ī","imacr":"ī","image":"ℑ","ImaginaryI":"ⅈ","imagline":"ℐ","imagpart":"ℑ","imath":"ı","Im":"ℑ","imof":"⊷","imped":"Ƶ","Implies":"⇒","incare":"℅","in":"∈","infin":"∞","infintie":"⧝","inodot":"ı","intcal":"⊺","int":"∫","Int":"∬","integers":"ℤ","Integral":"∫","intercal":"⊺","Intersection":"⋂","intlarhk":"⨗","intprod":"⨼","InvisibleComma":"⁣","InvisibleTimes":"⁢","IOcy":"Ё","iocy":"ё","Iogon":"Į","iogon":"į","Iopf":"𝕀","iopf":"𝕚","Iota":"Ι","iota":"ι","iprod":"⨼","iquest":"¿","iscr":"𝒾","Iscr":"ℐ","isin":"∈","isindot":"⋵","isinE":"⋹","isins":"⋴","isinsv":"⋳","isinv":"∈","it":"⁢","Itilde":"Ĩ","itilde":"ĩ","Iukcy":"І","iukcy":"і","Iuml":"Ï","iuml":"ï","Jcirc":"Ĵ","jcirc":"ĵ","Jcy":"Й","jcy":"й","Jfr":"𝔍","jfr":"𝔧","jmath":"ȷ","Jopf":"𝕁","jopf":"𝕛","Jscr":"𝒥","jscr":"𝒿","Jsercy":"Ј","jsercy":"ј","Jukcy":"Є","jukcy":"є","Kappa":"Κ","kappa":"κ","kappav":"ϰ","Kcedil":"Ķ","kcedil":"ķ","Kcy":"К","kcy":"к","Kfr":"𝔎","kfr":"𝔨","kgreen":"ĸ","KHcy":"Х","khcy":"х","KJcy":"Ќ","kjcy":"ќ","Kopf":"𝕂","kopf":"𝕜","Kscr":"𝒦","kscr":"𝓀","lAarr":"⇚","Lacute":"Ĺ","lacute":"ĺ","laemptyv":"⦴","lagran":"ℒ","Lambda":"Λ","lambda":"λ","lang":"⟨","Lang":"⟪","langd":"⦑","langle":"⟨","lap":"⪅","Laplacetrf":"ℒ","laquo":"«","larrb":"⇤","larrbfs":"⤟","larr":"←","Larr":"↞","lArr":"⇐","larrfs":"⤝","larrhk":"↩","larrlp":"↫","larrpl":"⤹","larrsim":"⥳","larrtl":"↢","latail":"⤙","lAtail":"⤛","lat":"⪫","late":"⪭","lates":"⪭︀","lbarr":"⤌","lBarr":"⤎","lbbrk":"❲","lbrace":"{","lbrack":"[","lbrke":"⦋","lbrksld":"⦏","lbrkslu":"⦍","Lcaron":"Ľ","lcaron":"ľ","Lcedil":"Ļ","lcedil":"ļ","lceil":"⌈","lcub":"{","Lcy":"Л","lcy":"л","ldca":"⤶","ldquo":"“","ldquor":"„","ldrdhar":"⥧","ldrushar":"⥋","ldsh":"↲","le":"≤","lE":"≦","LeftAngleBracket":"⟨","LeftArrowBar":"⇤","leftarrow":"←","LeftArrow":"←","Leftarrow":"⇐","LeftArrowRightArrow":"⇆","leftarrowtail":"↢","LeftCeiling":"⌈","LeftDoubleBracket":"⟦","LeftDownTeeVector":"⥡","LeftDownVectorBar":"⥙","LeftDownVector":"⇃","LeftFloor":"⌊","leftharpoondown":"↽","leftharpoonup":"↼","leftleftarrows":"⇇","leftrightarrow":"↔","LeftRightArrow":"↔","Leftrightarrow":"⇔","leftrightarrows":"⇆","leftrightharpoons":"⇋","leftrightsquigarrow":"↭","LeftRightVector":"⥎","LeftTeeArrow":"↤","LeftTee":"⊣","LeftTeeVector":"⥚","leftthreetimes":"⋋","LeftTriangleBar":"⧏","LeftTriangle":"⊲","LeftTriangleEqual":"⊴","LeftUpDownVector":"⥑","LeftUpTeeVector":"⥠","LeftUpVectorBar":"⥘","LeftUpVector":"↿","LeftVectorBar":"⥒","LeftVector":"↼","lEg":"⪋","leg":"⋚","leq":"≤","leqq":"≦","leqslant":"⩽","lescc":"⪨","les":"⩽","lesdot":"⩿","lesdoto":"⪁","lesdotor":"⪃","lesg":"⋚︀","lesges":"⪓","lessapprox":"⪅","lessdot":"⋖","lesseqgtr":"⋚","lesseqqgtr":"⪋","LessEqualGreater":"⋚","LessFullEqual":"≦","LessGreater":"≶","lessgtr":"≶","LessLess":"⪡","lesssim":"≲","LessSlantEqual":"⩽","LessTilde":"≲","lfisht":"⥼","lfloor":"⌊","Lfr":"𝔏","lfr":"𝔩","lg":"≶","lgE":"⪑","lHar":"⥢","lhard":"↽","lharu":"↼","lharul":"⥪","lhblk":"▄","LJcy":"Љ","ljcy":"љ","llarr":"⇇","ll":"≪","Ll":"⋘","llcorner":"⌞","Lleftarrow":"⇚","llhard":"⥫","lltri":"◺","Lmidot":"Ŀ","lmidot":"ŀ","lmoustache":"⎰","lmoust":"⎰","lnap":"⪉","lnapprox":"⪉","lne":"⪇","lnE":"≨","lneq":"⪇","lneqq":"≨","lnsim":"⋦","loang":"⟬","loarr":"⇽","lobrk":"⟦","longleftarrow":"⟵","LongLeftArrow":"⟵","Longleftarrow":"⟸","longleftrightarrow":"⟷","LongLeftRightArrow":"⟷","Longleftrightarrow":"⟺","longmapsto":"⟼","longrightarrow":"⟶","LongRightArrow":"⟶","Longrightarrow":"⟹","looparrowleft":"↫","looparrowright":"↬","lopar":"⦅","Lopf":"𝕃","lopf":"𝕝","loplus":"⨭","lotimes":"⨴","lowast":"∗","lowbar":"_","LowerLeftArrow":"↙","LowerRightArrow":"↘","loz":"◊","lozenge":"◊","lozf":"⧫","lpar":"(","lparlt":"⦓","lrarr":"⇆","lrcorner":"⌟","lrhar":"⇋","lrhard":"⥭","lrm":"‎","lrtri":"⊿","lsaquo":"‹","lscr":"𝓁","Lscr":"ℒ","lsh":"↰","Lsh":"↰","lsim":"≲","lsime":"⪍","lsimg":"⪏","lsqb":"[","lsquo":"‘","lsquor":"‚","Lstrok":"Ł","lstrok":"ł","ltcc":"⪦","ltcir":"⩹","lt":"<","LT":"<","Lt":"≪","ltdot":"⋖","lthree":"⋋","ltimes":"⋉","ltlarr":"⥶","ltquest":"⩻","ltri":"◃","ltrie":"⊴","ltrif":"◂","ltrPar":"⦖","lurdshar":"⥊","luruhar":"⥦","lvertneqq":"≨︀","lvnE":"≨︀","macr":"¯","male":"♂","malt":"✠","maltese":"✠","Map":"⤅","map":"↦","mapsto":"↦","mapstodown":"↧","mapstoleft":"↤","mapstoup":"↥","marker":"▮","mcomma":"⨩","Mcy":"М","mcy":"м","mdash":"—","mDDot":"∺","measuredangle":"∡","MediumSpace":" ","Mellintrf":"ℳ","Mfr":"𝔐","mfr":"𝔪","mho":"℧","micro":"µ","midast":"*","midcir":"⫰","mid":"∣","middot":"·","minusb":"⊟","minus":"−","minusd":"∸","minusdu":"⨪","MinusPlus":"∓","mlcp":"⫛","mldr":"…","mnplus":"∓","models":"⊧","Mopf":"𝕄","mopf":"𝕞","mp":"∓","mscr":"𝓂","Mscr":"ℳ","mstpos":"∾","Mu":"Μ","mu":"μ","multimap":"⊸","mumap":"⊸","nabla":"∇","Nacute":"Ń","nacute":"ń","nang":"∠⃒","nap":"≉","napE":"⩰̸","napid":"≋̸","napos":"ʼn","napprox":"≉","natural":"♮","naturals":"ℕ","natur":"♮","nbsp":" ","nbump":"≎̸","nbumpe":"≏̸","ncap":"⩃","Ncaron":"Ň","ncaron":"ň","Ncedil":"Ņ","ncedil":"ņ","ncong":"≇","ncongdot":"⩭̸","ncup":"⩂","Ncy":"Н","ncy":"н","ndash":"–","nearhk":"⤤","nearr":"↗","neArr":"⇗","nearrow":"↗","ne":"≠","nedot":"≐̸","NegativeMediumSpace":"​","NegativeThickSpace":"​","NegativeThinSpace":"​","NegativeVeryThinSpace":"​","nequiv":"≢","nesear":"⤨","nesim":"≂̸","NestedGreaterGreater":"≫","NestedLessLess":"≪","NewLine":"\n","nexist":"∄","nexists":"∄","Nfr":"𝔑","nfr":"𝔫","ngE":"≧̸","nge":"≱","ngeq":"≱","ngeqq":"≧̸","ngeqslant":"⩾̸","nges":"⩾̸","nGg":"⋙̸","ngsim":"≵","nGt":"≫⃒","ngt":"≯","ngtr":"≯","nGtv":"≫̸","nharr":"↮","nhArr":"⇎","nhpar":"⫲","ni":"∋","nis":"⋼","nisd":"⋺","niv":"∋","NJcy":"Њ","njcy":"њ","nlarr":"↚","nlArr":"⇍","nldr":"‥","nlE":"≦̸","nle":"≰","nleftarrow":"↚","nLeftarrow":"⇍","nleftrightarrow":"↮","nLeftrightarrow":"⇎","nleq":"≰","nleqq":"≦̸","nleqslant":"⩽̸","nles":"⩽̸","nless":"≮","nLl":"⋘̸","nlsim":"≴","nLt":"≪⃒","nlt":"≮","nltri":"⋪","nltrie":"⋬","nLtv":"≪̸","nmid":"∤","NoBreak":"⁠","NonBreakingSpace":" ","nopf":"𝕟","Nopf":"ℕ","Not":"⫬","not":"¬","NotCongruent":"≢","NotCupCap":"≭","NotDoubleVerticalBar":"∦","NotElement":"∉","NotEqual":"≠","NotEqualTilde":"≂̸","NotExists":"∄","NotGreater":"≯","NotGreaterEqual":"≱","NotGreaterFullEqual":"≧̸","NotGreaterGreater":"≫̸","NotGreaterLess":"≹","NotGreaterSlantEqual":"⩾̸","NotGreaterTilde":"≵","NotHumpDownHump":"≎̸","NotHumpEqual":"≏̸","notin":"∉","notindot":"⋵̸","notinE":"⋹̸","notinva":"∉","notinvb":"⋷","notinvc":"⋶","NotLeftTriangleBar":"⧏̸","NotLeftTriangle":"⋪","NotLeftTriangleEqual":"⋬","NotLess":"≮","NotLessEqual":"≰","NotLessGreater":"≸","NotLessLess":"≪̸","NotLessSlantEqual":"⩽̸","NotLessTilde":"≴","NotNestedGreaterGreater":"⪢̸","NotNestedLessLess":"⪡̸","notni":"∌","notniva":"∌","notnivb":"⋾","notnivc":"⋽","NotPrecedes":"⊀","NotPrecedesEqual":"⪯̸","NotPrecedesSlantEqual":"⋠","NotReverseElement":"∌","NotRightTriangleBar":"⧐̸","NotRightTriangle":"⋫","NotRightTriangleEqual":"⋭","NotSquareSubset":"⊏̸","NotSquareSubsetEqual":"⋢","NotSquareSuperset":"⊐̸","NotSquareSupersetEqual":"⋣","NotSubset":"⊂⃒","NotSubsetEqual":"⊈","NotSucceeds":"⊁","NotSucceedsEqual":"⪰̸","NotSucceedsSlantEqual":"⋡","NotSucceedsTilde":"≿̸","NotSuperset":"⊃⃒","NotSupersetEqual":"⊉","NotTilde":"≁","NotTildeEqual":"≄","NotTildeFullEqual":"≇","NotTildeTilde":"≉","NotVerticalBar":"∤","nparallel":"∦","npar":"∦","nparsl":"⫽⃥","npart":"∂̸","npolint":"⨔","npr":"⊀","nprcue":"⋠","nprec":"⊀","npreceq":"⪯̸","npre":"⪯̸","nrarrc":"⤳̸","nrarr":"↛","nrArr":"⇏","nrarrw":"↝̸","nrightarrow":"↛","nRightarrow":"⇏","nrtri":"⋫","nrtrie":"⋭","nsc":"⊁","nsccue":"⋡","nsce":"⪰̸","Nscr":"𝒩","nscr":"𝓃","nshortmid":"∤","nshortparallel":"∦","nsim":"≁","nsime":"≄","nsimeq":"≄","nsmid":"∤","nspar":"∦","nsqsube":"⋢","nsqsupe":"⋣","nsub":"⊄","nsubE":"⫅̸","nsube":"⊈","nsubset":"⊂⃒","nsubseteq":"⊈","nsubseteqq":"⫅̸","nsucc":"⊁","nsucceq":"⪰̸","nsup":"⊅","nsupE":"⫆̸","nsupe":"⊉","nsupset":"⊃⃒","nsupseteq":"⊉","nsupseteqq":"⫆̸","ntgl":"≹","Ntilde":"Ñ","ntilde":"ñ","ntlg":"≸","ntriangleleft":"⋪","ntrianglelefteq":"⋬","ntriangleright":"⋫","ntrianglerighteq":"⋭","Nu":"Ν","nu":"ν","num":"#","numero":"№","numsp":" ","nvap":"≍⃒","nvdash":"⊬","nvDash":"⊭","nVdash":"⊮","nVDash":"⊯","nvge":"≥⃒","nvgt":">⃒","nvHarr":"⤄","nvinfin":"⧞","nvlArr":"⤂","nvle":"≤⃒","nvlt":"<⃒","nvltrie":"⊴⃒","nvrArr":"⤃","nvrtrie":"⊵⃒","nvsim":"∼⃒","nwarhk":"⤣","nwarr":"↖","nwArr":"⇖","nwarrow":"↖","nwnear":"⤧","Oacute":"Ó","oacute":"ó","oast":"⊛","Ocirc":"Ô","ocirc":"ô","ocir":"⊚","Ocy":"О","ocy":"о","odash":"⊝","Odblac":"Ő","odblac":"ő","odiv":"⨸","odot":"⊙","odsold":"⦼","OElig":"Œ","oelig":"œ","ofcir":"⦿","Ofr":"𝔒","ofr":"𝔬","ogon":"˛","Ograve":"Ò","ograve":"ò","ogt":"⧁","ohbar":"⦵","ohm":"Ω","oint":"∮","olarr":"↺","olcir":"⦾","olcross":"⦻","oline":"‾","olt":"⧀","Omacr":"Ō","omacr":"ō","Omega":"Ω","omega":"ω","Omicron":"Ο","omicron":"ο","omid":"⦶","ominus":"⊖","Oopf":"𝕆","oopf":"𝕠","opar":"⦷","OpenCurlyDoubleQuote":"“","OpenCurlyQuote":"‘","operp":"⦹","oplus":"⊕","orarr":"↻","Or":"⩔","or":"∨","ord":"⩝","order":"ℴ","orderof":"ℴ","ordf":"ª","ordm":"º","origof":"⊶","oror":"⩖","orslope":"⩗","orv":"⩛","oS":"Ⓢ","Oscr":"𝒪","oscr":"ℴ","Oslash":"Ø","oslash":"ø","osol":"⊘","Otilde":"Õ","otilde":"õ","otimesas":"⨶","Otimes":"⨷","otimes":"⊗","Ouml":"Ö","ouml":"ö","ovbar":"⌽","OverBar":"‾","OverBrace":"⏞","OverBracket":"⎴","OverParenthesis":"⏜","para":"¶","parallel":"∥","par":"∥","parsim":"⫳","parsl":"⫽","part":"∂","PartialD":"∂","Pcy":"П","pcy":"п","percnt":"%","period":".","permil":"‰","perp":"⊥","pertenk":"‱","Pfr":"𝔓","pfr":"𝔭","Phi":"Φ","phi":"φ","phiv":"ϕ","phmmat":"ℳ","phone":"☎","Pi":"Π","pi":"π","pitchfork":"⋔","piv":"ϖ","planck":"ℏ","planckh":"ℎ","plankv":"ℏ","plusacir":"⨣","plusb":"⊞","pluscir":"⨢","plus":"+","plusdo":"∔","plusdu":"⨥","pluse":"⩲","PlusMinus":"±","plusmn":"±","plussim":"⨦","plustwo":"⨧","pm":"±","Poincareplane":"ℌ","pointint":"⨕","popf":"𝕡","Popf":"ℙ","pound":"£","prap":"⪷","Pr":"⪻","pr":"≺","prcue":"≼","precapprox":"⪷","prec":"≺","preccurlyeq":"≼","Precedes":"≺","PrecedesEqual":"⪯","PrecedesSlantEqual":"≼","PrecedesTilde":"≾","preceq":"⪯","precnapprox":"⪹","precneqq":"⪵","precnsim":"⋨","pre":"⪯","prE":"⪳","precsim":"≾","prime":"′","Prime":"″","primes":"ℙ","prnap":"⪹","prnE":"⪵","prnsim":"⋨","prod":"∏","Product":"∏","profalar":"⌮","profline":"⌒","profsurf":"⌓","prop":"∝","Proportional":"∝","Proportion":"∷","propto":"∝","prsim":"≾","prurel":"⊰","Pscr":"𝒫","pscr":"𝓅","Psi":"Ψ","psi":"ψ","puncsp":" ","Qfr":"𝔔","qfr":"𝔮","qint":"⨌","qopf":"𝕢","Qopf":"ℚ","qprime":"⁗","Qscr":"𝒬","qscr":"𝓆","quaternions":"ℍ","quatint":"⨖","quest":"?","questeq":"≟","quot":"\"","QUOT":"\"","rAarr":"⇛","race":"∽̱","Racute":"Ŕ","racute":"ŕ","radic":"√","raemptyv":"⦳","rang":"⟩","Rang":"⟫","rangd":"⦒","range":"⦥","rangle":"⟩","raquo":"»","rarrap":"⥵","rarrb":"⇥","rarrbfs":"⤠","rarrc":"⤳","rarr":"→","Rarr":"↠","rArr":"⇒","rarrfs":"⤞","rarrhk":"↪","rarrlp":"↬","rarrpl":"⥅","rarrsim":"⥴","Rarrtl":"⤖","rarrtl":"↣","rarrw":"↝","ratail":"⤚","rAtail":"⤜","ratio":"∶","rationals":"ℚ","rbarr":"⤍","rBarr":"⤏","RBarr":"⤐","rbbrk":"❳","rbrace":"}","rbrack":"]","rbrke":"⦌","rbrksld":"⦎","rbrkslu":"⦐","Rcaron":"Ř","rcaron":"ř","Rcedil":"Ŗ","rcedil":"ŗ","rceil":"⌉","rcub":"}","Rcy":"Р","rcy":"р","rdca":"⤷","rdldhar":"⥩","rdquo":"”","rdquor":"”","rdsh":"↳","real":"ℜ","realine":"ℛ","realpart":"ℜ","reals":"ℝ","Re":"ℜ","rect":"▭","reg":"®","REG":"®","ReverseElement":"∋","ReverseEquilibrium":"⇋","ReverseUpEquilibrium":"⥯","rfisht":"⥽","rfloor":"⌋","rfr":"𝔯","Rfr":"ℜ","rHar":"⥤","rhard":"⇁","rharu":"⇀","rharul":"⥬","Rho":"Ρ","rho":"ρ","rhov":"ϱ","RightAngleBracket":"⟩","RightArrowBar":"⇥","rightarrow":"→","RightArrow":"→","Rightarrow":"⇒","RightArrowLeftArrow":"⇄","rightarrowtail":"↣","RightCeiling":"⌉","RightDoubleBracket":"⟧","RightDownTeeVector":"⥝","RightDownVectorBar":"⥕","RightDownVector":"⇂","RightFloor":"⌋","rightharpoondown":"⇁","rightharpoonup":"⇀","rightleftarrows":"⇄","rightleftharpoons":"⇌","rightrightarrows":"⇉","rightsquigarrow":"↝","RightTeeArrow":"↦","RightTee":"⊢","RightTeeVector":"⥛","rightthreetimes":"⋌","RightTriangleBar":"⧐","RightTriangle":"⊳","RightTriangleEqual":"⊵","RightUpDownVector":"⥏","RightUpTeeVector":"⥜","RightUpVectorBar":"⥔","RightUpVector":"↾","RightVectorBar":"⥓","RightVector":"⇀","ring":"˚","risingdotseq":"≓","rlarr":"⇄","rlhar":"⇌","rlm":"‏","rmoustache":"⎱","rmoust":"⎱","rnmid":"⫮","roang":"⟭","roarr":"⇾","robrk":"⟧","ropar":"⦆","ropf":"𝕣","Ropf":"ℝ","roplus":"⨮","rotimes":"⨵","RoundImplies":"⥰","rpar":")","rpargt":"⦔","rppolint":"⨒","rrarr":"⇉","Rrightarrow":"⇛","rsaquo":"›","rscr":"𝓇","Rscr":"ℛ","rsh":"↱","Rsh":"↱","rsqb":"]","rsquo":"’","rsquor":"’","rthree":"⋌","rtimes":"⋊","rtri":"▹","rtrie":"⊵","rtrif":"▸","rtriltri":"⧎","RuleDelayed":"⧴","ruluhar":"⥨","rx":"℞","Sacute":"Ś","sacute":"ś","sbquo":"‚","scap":"⪸","Scaron":"Š","scaron":"š","Sc":"⪼","sc":"≻","sccue":"≽","sce":"⪰","scE":"⪴","Scedil":"Ş","scedil":"ş","Scirc":"Ŝ","scirc":"ŝ","scnap":"⪺","scnE":"⪶","scnsim":"⋩","scpolint":"⨓","scsim":"≿","Scy":"С","scy":"с","sdotb":"⊡","sdot":"⋅","sdote":"⩦","searhk":"⤥","searr":"↘","seArr":"⇘","searrow":"↘","sect":"§","semi":";","seswar":"⤩","setminus":"∖","setmn":"∖","sext":"✶","Sfr":"𝔖","sfr":"𝔰","sfrown":"⌢","sharp":"♯","SHCHcy":"Щ","shchcy":"щ","SHcy":"Ш","shcy":"ш","ShortDownArrow":"↓","ShortLeftArrow":"←","shortmid":"∣","shortparallel":"∥","ShortRightArrow":"→","ShortUpArrow":"↑","shy":"­","Sigma":"Σ","sigma":"σ","sigmaf":"ς","sigmav":"ς","sim":"∼","simdot":"⩪","sime":"≃","simeq":"≃","simg":"⪞","simgE":"⪠","siml":"⪝","simlE":"⪟","simne":"≆","simplus":"⨤","simrarr":"⥲","slarr":"←","SmallCircle":"∘","smallsetminus":"∖","smashp":"⨳","smeparsl":"⧤","smid":"∣","smile":"⌣","smt":"⪪","smte":"⪬","smtes":"⪬︀","SOFTcy":"Ь","softcy":"ь","solbar":"⌿","solb":"⧄","sol":"/","Sopf":"𝕊","sopf":"𝕤","spades":"♠","spadesuit":"♠","spar":"∥","sqcap":"⊓","sqcaps":"⊓︀","sqcup":"⊔","sqcups":"⊔︀","Sqrt":"√","sqsub":"⊏","sqsube":"⊑","sqsubset":"⊏","sqsubseteq":"⊑","sqsup":"⊐","sqsupe":"⊒","sqsupset":"⊐","sqsupseteq":"⊒","square":"□","Square":"□","SquareIntersection":"⊓","SquareSubset":"⊏","SquareSubsetEqual":"⊑","SquareSuperset":"⊐","SquareSupersetEqual":"⊒","SquareUnion":"⊔","squarf":"▪","squ":"□","squf":"▪","srarr":"→","Sscr":"𝒮","sscr":"𝓈","ssetmn":"∖","ssmile":"⌣","sstarf":"⋆","Star":"⋆","star":"☆","starf":"★","straightepsilon":"ϵ","straightphi":"ϕ","strns":"¯","sub":"⊂","Sub":"⋐","subdot":"⪽","subE":"⫅","sube":"⊆","subedot":"⫃","submult":"⫁","subnE":"⫋","subne":"⊊","subplus":"⪿","subrarr":"⥹","subset":"⊂","Subset":"⋐","subseteq":"⊆","subseteqq":"⫅","SubsetEqual":"⊆","subsetneq":"⊊","subsetneqq":"⫋","subsim":"⫇","subsub":"⫕","subsup":"⫓","succapprox":"⪸","succ":"≻","succcurlyeq":"≽","Succeeds":"≻","SucceedsEqual":"⪰","SucceedsSlantEqual":"≽","SucceedsTilde":"≿","succeq":"⪰","succnapprox":"⪺","succneqq":"⪶","succnsim":"⋩","succsim":"≿","SuchThat":"∋","sum":"∑","Sum":"∑","sung":"♪","sup1":"¹","sup2":"²","sup3":"³","sup":"⊃","Sup":"⋑","supdot":"⪾","supdsub":"⫘","supE":"⫆","supe":"⊇","supedot":"⫄","Superset":"⊃","SupersetEqual":"⊇","suphsol":"⟉","suphsub":"⫗","suplarr":"⥻","supmult":"⫂","supnE":"⫌","supne":"⊋","supplus":"⫀","supset":"⊃","Supset":"⋑","supseteq":"⊇","supseteqq":"⫆","supsetneq":"⊋","supsetneqq":"⫌","supsim":"⫈","supsub":"⫔","supsup":"⫖","swarhk":"⤦","swarr":"↙","swArr":"⇙","swarrow":"↙","swnwar":"⤪","szlig":"ß","Tab":"\t","target":"⌖","Tau":"Τ","tau":"τ","tbrk":"⎴","Tcaron":"Ť","tcaron":"ť","Tcedil":"Ţ","tcedil":"ţ","Tcy":"Т","tcy":"т","tdot":"⃛","telrec":"⌕","Tfr":"𝔗","tfr":"𝔱","there4":"∴","therefore":"∴","Therefore":"∴","Theta":"Θ","theta":"θ","thetasym":"ϑ","thetav":"ϑ","thickapprox":"≈","thicksim":"∼","ThickSpace":"  ","ThinSpace":" ","thinsp":" ","thkap":"≈","thksim":"∼","THORN":"Þ","thorn":"þ","tilde":"˜","Tilde":"∼","TildeEqual":"≃","TildeFullEqual":"≅","TildeTilde":"≈","timesbar":"⨱","timesb":"⊠","times":"×","timesd":"⨰","tint":"∭","toea":"⤨","topbot":"⌶","topcir":"⫱","top":"⊤","Topf":"𝕋","topf":"𝕥","topfork":"⫚","tosa":"⤩","tprime":"‴","trade":"™","TRADE":"™","triangle":"▵","triangledown":"▿","triangleleft":"◃","trianglelefteq":"⊴","triangleq":"≜","triangleright":"▹","trianglerighteq":"⊵","tridot":"◬","trie":"≜","triminus":"⨺","TripleDot":"⃛","triplus":"⨹","trisb":"⧍","tritime":"⨻","trpezium":"⏢","Tscr":"𝒯","tscr":"𝓉","TScy":"Ц","tscy":"ц","TSHcy":"Ћ","tshcy":"ћ","Tstrok":"Ŧ","tstrok":"ŧ","twixt":"≬","twoheadleftarrow":"↞","twoheadrightarrow":"↠","Uacute":"Ú","uacute":"ú","uarr":"↑","Uarr":"↟","uArr":"⇑","Uarrocir":"⥉","Ubrcy":"Ў","ubrcy":"ў","Ubreve":"Ŭ","ubreve":"ŭ","Ucirc":"Û","ucirc":"û","Ucy":"У","ucy":"у","udarr":"⇅","Udblac":"Ű","udblac":"ű","udhar":"⥮","ufisht":"⥾","Ufr":"𝔘","ufr":"𝔲","Ugrave":"Ù","ugrave":"ù","uHar":"⥣","uharl":"↿","uharr":"↾","uhblk":"▀","ulcorn":"⌜","ulcorner":"⌜","ulcrop":"⌏","ultri":"◸","Umacr":"Ū","umacr":"ū","uml":"¨","UnderBar":"_","UnderBrace":"⏟","UnderBracket":"⎵","UnderParenthesis":"⏝","Union":"⋃","UnionPlus":"⊎","Uogon":"Ų","uogon":"ų","Uopf":"𝕌","uopf":"𝕦","UpArrowBar":"⤒","uparrow":"↑","UpArrow":"↑","Uparrow":"⇑","UpArrowDownArrow":"⇅","updownarrow":"↕","UpDownArrow":"↕","Updownarrow":"⇕","UpEquilibrium":"⥮","upharpoonleft":"↿","upharpoonright":"↾","uplus":"⊎","UpperLeftArrow":"↖","UpperRightArrow":"↗","upsi":"υ","Upsi":"ϒ","upsih":"ϒ","Upsilon":"Υ","upsilon":"υ","UpTeeArrow":"↥","UpTee":"⊥","upuparrows":"⇈","urcorn":"⌝","urcorner":"⌝","urcrop":"⌎","Uring":"Ů","uring":"ů","urtri":"◹","Uscr":"𝒰","uscr":"𝓊","utdot":"⋰","Utilde":"Ũ","utilde":"ũ","utri":"▵","utrif":"▴","uuarr":"⇈","Uuml":"Ü","uuml":"ü","uwangle":"⦧","vangrt":"⦜","varepsilon":"ϵ","varkappa":"ϰ","varnothing":"∅","varphi":"ϕ","varpi":"ϖ","varpropto":"∝","varr":"↕","vArr":"⇕","varrho":"ϱ","varsigma":"ς","varsubsetneq":"⊊︀","varsubsetneqq":"⫋︀","varsupsetneq":"⊋︀","varsupsetneqq":"⫌︀","vartheta":"ϑ","vartriangleleft":"⊲","vartriangleright":"⊳","vBar":"⫨","Vbar":"⫫","vBarv":"⫩","Vcy":"В","vcy":"в","vdash":"⊢","vDash":"⊨","Vdash":"⊩","VDash":"⊫","Vdashl":"⫦","veebar":"⊻","vee":"∨","Vee":"⋁","veeeq":"≚","vellip":"⋮","verbar":"|","Verbar":"‖","vert":"|","Vert":"‖","VerticalBar":"∣","VerticalLine":"|","VerticalSeparator":"❘","VerticalTilde":"≀","VeryThinSpace":" ","Vfr":"𝔙","vfr":"𝔳","vltri":"⊲","vnsub":"⊂⃒","vnsup":"⊃⃒","Vopf":"𝕍","vopf":"𝕧","vprop":"∝","vrtri":"⊳","Vscr":"𝒱","vscr":"𝓋","vsubnE":"⫋︀","vsubne":"⊊︀","vsupnE":"⫌︀","vsupne":"⊋︀","Vvdash":"⊪","vzigzag":"⦚","Wcirc":"Ŵ","wcirc":"ŵ","wedbar":"⩟","wedge":"∧","Wedge":"⋀","wedgeq":"≙","weierp":"℘","Wfr":"𝔚","wfr":"𝔴","Wopf":"𝕎","wopf":"𝕨","wp":"℘","wr":"≀","wreath":"≀","Wscr":"𝒲","wscr":"𝓌","xcap":"⋂","xcirc":"◯","xcup":"⋃","xdtri":"▽","Xfr":"𝔛","xfr":"𝔵","xharr":"⟷","xhArr":"⟺","Xi":"Ξ","xi":"ξ","xlarr":"⟵","xlArr":"⟸","xmap":"⟼","xnis":"⋻","xodot":"⨀","Xopf":"𝕏","xopf":"𝕩","xoplus":"⨁","xotime":"⨂","xrarr":"⟶","xrArr":"⟹","Xscr":"𝒳","xscr":"𝓍","xsqcup":"⨆","xuplus":"⨄","xutri":"△","xvee":"⋁","xwedge":"⋀","Yacute":"Ý","yacute":"ý","YAcy":"Я","yacy":"я","Ycirc":"Ŷ","ycirc":"ŷ","Ycy":"Ы","ycy":"ы","yen":"¥","Yfr":"𝔜","yfr":"𝔶","YIcy":"Ї","yicy":"ї","Yopf":"𝕐","yopf":"𝕪","Yscr":"𝒴","yscr":"𝓎","YUcy":"Ю","yucy":"ю","yuml":"ÿ","Yuml":"Ÿ","Zacute":"Ź","zacute":"ź","Zcaron":"Ž","zcaron":"ž","Zcy":"З","zcy":"з","Zdot":"Ż","zdot":"ż","zeetrf":"ℨ","ZeroWidthSpace":"​","Zeta":"Ζ","zeta":"ζ","zfr":"𝔷","Zfr":"ℨ","ZHcy":"Ж","zhcy":"ж","zigrarr":"⇝","zopf":"𝕫","Zopf":"ℤ","Zscr":"𝒵","zscr":"𝓏","zwj":"‍","zwnj":"‌"} -},{}],48:[function(require,module,exports){ +},{}],49:[function(require,module,exports){ module.exports={"Aacute":"Á","aacute":"á","Acirc":"Â","acirc":"â","acute":"´","AElig":"Æ","aelig":"æ","Agrave":"À","agrave":"à","amp":"&","AMP":"&","Aring":"Å","aring":"å","Atilde":"Ã","atilde":"ã","Auml":"Ä","auml":"ä","brvbar":"¦","Ccedil":"Ç","ccedil":"ç","cedil":"¸","cent":"¢","copy":"©","COPY":"©","curren":"¤","deg":"°","divide":"÷","Eacute":"É","eacute":"é","Ecirc":"Ê","ecirc":"ê","Egrave":"È","egrave":"è","ETH":"Ð","eth":"ð","Euml":"Ë","euml":"ë","frac12":"½","frac14":"¼","frac34":"¾","gt":">","GT":">","Iacute":"Í","iacute":"í","Icirc":"Î","icirc":"î","iexcl":"¡","Igrave":"Ì","igrave":"ì","iquest":"¿","Iuml":"Ï","iuml":"ï","laquo":"«","lt":"<","LT":"<","macr":"¯","micro":"µ","middot":"·","nbsp":" ","not":"¬","Ntilde":"Ñ","ntilde":"ñ","Oacute":"Ó","oacute":"ó","Ocirc":"Ô","ocirc":"ô","Ograve":"Ò","ograve":"ò","ordf":"ª","ordm":"º","Oslash":"Ø","oslash":"ø","Otilde":"Õ","otilde":"õ","Ouml":"Ö","ouml":"ö","para":"¶","plusmn":"±","pound":"£","quot":"\"","QUOT":"\"","raquo":"»","reg":"®","REG":"®","sect":"§","shy":"­","sup1":"¹","sup2":"²","sup3":"³","szlig":"ß","THORN":"Þ","thorn":"þ","times":"×","Uacute":"Ú","uacute":"ú","Ucirc":"Û","ucirc":"û","Ugrave":"Ù","ugrave":"ù","uml":"¨","Uuml":"Ü","uuml":"ü","Yacute":"Ý","yacute":"ý","yen":"¥","yuml":"ÿ"} -},{}],49:[function(require,module,exports){ +},{}],50:[function(require,module,exports){ module.exports={"amp":"&","apos":"'","gt":">","lt":"<","quot":"\""} -},{}],50:[function(require,module,exports){ +},{}],51:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Doctype = exports.CDATA = exports.Tag = exports.Style = exports.Script = exports.Comment = exports.Directive = exports.Text = exports.Root = exports.isTag = exports.ElementType = void 0; @@ -8169,7 +8236,7 @@ exports.CDATA = ElementType.CDATA; /** Type for */ exports.Doctype = ElementType.Doctype; -},{}],51:[function(require,module,exports){ +},{}],52:[function(require,module,exports){ "use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; @@ -8347,7 +8414,7 @@ var DomHandler = /** @class */ (function () { exports.DomHandler = DomHandler; exports.default = DomHandler; -},{"./node":52,"domelementtype":50}],52:[function(require,module,exports){ +},{"./node":53,"domelementtype":51}],53:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -8793,7 +8860,7 @@ function cloneChildren(childs) { return children; } -},{"domelementtype":50}],53:[function(require,module,exports){ +},{"domelementtype":51}],54:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getFeed = void 0; @@ -8985,7 +9052,7 @@ function isValidFeed(value) { return value === "rss" || value === "feed" || value === "rdf:RDF"; } -},{"./legacy":56,"./stringify":59}],54:[function(require,module,exports){ +},{"./legacy":57,"./stringify":60}],55:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.uniqueSort = exports.compareDocumentPosition = exports.removeSubsets = void 0; @@ -9112,7 +9179,7 @@ function uniqueSort(nodes) { } exports.uniqueSort = uniqueSort; -},{"domhandler":51}],55:[function(require,module,exports){ +},{"domhandler":52}],56:[function(require,module,exports){ "use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; @@ -9142,7 +9209,7 @@ Object.defineProperty(exports, "isComment", { enumerable: true, get: function () Object.defineProperty(exports, "isDocument", { enumerable: true, get: function () { return domhandler_1.isDocument; } }); Object.defineProperty(exports, "hasChildren", { enumerable: true, get: function () { return domhandler_1.hasChildren; } }); -},{"./feeds":53,"./helpers":54,"./legacy":56,"./manipulation":57,"./querying":58,"./stringify":59,"./traversal":60,"domhandler":51}],56:[function(require,module,exports){ +},{"./feeds":54,"./helpers":55,"./legacy":57,"./manipulation":58,"./querying":59,"./stringify":60,"./traversal":61,"domhandler":52}],57:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getElementsByTagType = exports.getElementsByTagName = exports.getElementById = exports.getElements = exports.testElement = void 0; @@ -9268,7 +9335,7 @@ function getElementsByTagType(type, nodes, recurse, limit) { } exports.getElementsByTagType = getElementsByTagType; -},{"./querying":58,"domhandler":51}],57:[function(require,module,exports){ +},{"./querying":59,"domhandler":52}],58:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.prepend = exports.prependChild = exports.append = exports.appendChild = exports.replaceElement = exports.removeElement = void 0; @@ -9399,7 +9466,7 @@ function prepend(elem, prev) { } exports.prepend = prepend; -},{}],58:[function(require,module,exports){ +},{}],59:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.findAll = exports.existsOne = exports.findOne = exports.findOneChild = exports.find = exports.filter = void 0; @@ -9527,7 +9594,7 @@ function findAll(test, nodes) { } exports.findAll = findAll; -},{"domhandler":51}],59:[function(require,module,exports){ +},{"domhandler":52}],60:[function(require,module,exports){ "use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; @@ -9615,7 +9682,7 @@ function innerText(node) { } exports.innerText = innerText; -},{"dom-serializer":41,"domelementtype":50,"domhandler":51}],60:[function(require,module,exports){ +},{"dom-serializer":42,"domelementtype":51,"domhandler":52}],61:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.prevElementSibling = exports.nextElementSibling = exports.getName = exports.hasAttrib = exports.getAttributeValue = exports.getSiblings = exports.getParent = exports.getChildren = void 0; @@ -9734,9 +9801,9 @@ function prevElementSibling(elem) { } exports.prevElementSibling = prevElementSibling; -},{"domhandler":51}],61:[function(require,module,exports){ -arguments[4][47][0].apply(exports,arguments) -},{"dup":47}],62:[function(require,module,exports){ +},{"domhandler":52}],62:[function(require,module,exports){ +arguments[4][48][0].apply(exports,arguments) +},{"dup":48}],63:[function(require,module,exports){ 'use strict'; var isCallable = require('is-callable'); @@ -9800,49 +9867,81 @@ var forEach = function forEach(list, iterator, thisArg) { module.exports = forEach; -},{"is-callable":84}],63:[function(require,module,exports){ +},{"is-callable":86}],64:[function(require,module,exports){ 'use strict'; /* eslint no-invalid-this: 1 */ var ERROR_MESSAGE = 'Function.prototype.bind called on incompatible '; -var slice = Array.prototype.slice; var toStr = Object.prototype.toString; +var max = Math.max; var funcType = '[object Function]'; +var concatty = function concatty(a, b) { + var arr = []; + + for (var i = 0; i < a.length; i += 1) { + arr[i] = a[i]; + } + for (var j = 0; j < b.length; j += 1) { + arr[j + a.length] = b[j]; + } + + return arr; +}; + +var slicy = function slicy(arrLike, offset) { + var arr = []; + for (var i = offset || 0, j = 0; i < arrLike.length; i += 1, j += 1) { + arr[j] = arrLike[i]; + } + return arr; +}; + +var joiny = function (arr, joiner) { + var str = ''; + for (var i = 0; i < arr.length; i += 1) { + str += arr[i]; + if (i + 1 < arr.length) { + str += joiner; + } + } + return str; +}; + module.exports = function bind(that) { var target = this; - if (typeof target !== 'function' || toStr.call(target) !== funcType) { + if (typeof target !== 'function' || toStr.apply(target) !== funcType) { throw new TypeError(ERROR_MESSAGE + target); } - var args = slice.call(arguments, 1); + var args = slicy(arguments, 1); var bound; var binder = function () { if (this instanceof bound) { var result = target.apply( this, - args.concat(slice.call(arguments)) + concatty(args, arguments) ); if (Object(result) === result) { return result; } return this; - } else { - return target.apply( - that, - args.concat(slice.call(arguments)) - ); } + return target.apply( + that, + concatty(args, arguments) + ); + }; - var boundLength = Math.max(0, target.length - args.length); + var boundLength = max(0, target.length - args.length); var boundArgs = []; for (var i = 0; i < boundLength; i++) { - boundArgs.push('$' + i); + boundArgs[i] = '$' + i; } - bound = Function('binder', 'return function (' + boundArgs.join(',') + '){ return binder.apply(this,arguments); }')(binder); + bound = Function('binder', 'return function (' + joiny(boundArgs, ',') + '){ return binder.apply(this,arguments); }')(binder); if (target.prototype) { var Empty = function Empty() {}; @@ -9854,14 +9953,14 @@ module.exports = function bind(that) { return bound; }; -},{}],64:[function(require,module,exports){ +},{}],65:[function(require,module,exports){ 'use strict'; var implementation = require('./implementation'); module.exports = Function.prototype.bind || implementation; -},{"./implementation":63}],65:[function(require,module,exports){ +},{"./implementation":64}],66:[function(require,module,exports){ 'use strict'; var undefined; @@ -10078,7 +10177,7 @@ var LEGACY_ALIASES = { }; var bind = require('function-bind'); -var hasOwn = require('has'); +var hasOwn = require('hasown'); var $concat = bind.call(Function.call, Array.prototype.concat); var $spliceApply = bind.call(Function.apply, Array.prototype.splice); var $replace = bind.call(Function.call, String.prototype.replace); @@ -10214,7 +10313,7 @@ module.exports = function GetIntrinsic(name, allowMissing) { return value; }; -},{"function-bind":64,"has":71,"has-proto":67,"has-symbols":68}],66:[function(require,module,exports){ +},{"function-bind":65,"has-proto":69,"has-symbols":70,"hasown":73}],67:[function(require,module,exports){ 'use strict'; var GetIntrinsic = require('get-intrinsic'); @@ -10232,7 +10331,42 @@ if ($gOPD) { module.exports = $gOPD; -},{"get-intrinsic":65}],67:[function(require,module,exports){ +},{"get-intrinsic":66}],68:[function(require,module,exports){ +'use strict'; + +var GetIntrinsic = require('get-intrinsic'); + +var $defineProperty = GetIntrinsic('%Object.defineProperty%', true); + +var hasPropertyDescriptors = function hasPropertyDescriptors() { + if ($defineProperty) { + try { + $defineProperty({}, 'a', { value: 1 }); + return true; + } catch (e) { + // IE 8 has a broken defineProperty + return false; + } + } + return false; +}; + +hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBug() { + // node v0.6 has a bug where array lengths can be Set but not Defined + if (!hasPropertyDescriptors()) { + return null; + } + try { + return $defineProperty([], 'length', { value: 1 }).length !== 1; + } catch (e) { + // In Firefox 4-22, defining length on an array throws an exception. + return true; + } +}; + +module.exports = hasPropertyDescriptors; + +},{"get-intrinsic":66}],69:[function(require,module,exports){ 'use strict'; var test = { @@ -10245,7 +10379,7 @@ module.exports = function hasProto() { return { __proto__: test }.foo === test.foo && !({ __proto__: null } instanceof $Object); }; -},{}],68:[function(require,module,exports){ +},{}],70:[function(require,module,exports){ 'use strict'; var origSymbol = typeof Symbol !== 'undefined' && Symbol; @@ -10260,7 +10394,7 @@ module.exports = function hasNativeSymbols() { return hasSymbolSham(); }; -},{"./shams":69}],69:[function(require,module,exports){ +},{"./shams":71}],71:[function(require,module,exports){ 'use strict'; /* eslint complexity: [2, 18], max-statements: [2, 33] */ @@ -10304,7 +10438,7 @@ module.exports = function hasSymbols() { return true; }; -},{}],70:[function(require,module,exports){ +},{}],72:[function(require,module,exports){ 'use strict'; var hasSymbols = require('has-symbols/shams'); @@ -10313,14 +10447,17 @@ module.exports = function hasToStringTagShams() { return hasSymbols() && !!Symbol.toStringTag; }; -},{"has-symbols/shams":69}],71:[function(require,module,exports){ +},{"has-symbols/shams":71}],73:[function(require,module,exports){ 'use strict'; +var call = Function.prototype.call; +var $hasOwn = Object.prototype.hasOwnProperty; var bind = require('function-bind'); -module.exports = bind.call(Function.call, Object.prototype.hasOwnProperty); +/** @type {(o: {}, p: PropertyKey) => p is keyof o} */ +module.exports = bind.call(call, $hasOwn); -},{"function-bind":64}],72:[function(require,module,exports){ +},{"function-bind":65}],74:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -10557,7 +10694,7 @@ function parseFeed(feed, options) { } exports.parseFeed = parseFeed; -},{"./Parser":73,"domhandler":51,"domutils":55}],73:[function(require,module,exports){ +},{"./Parser":75,"domhandler":52,"domutils":56}],75:[function(require,module,exports){ "use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; @@ -10940,7 +11077,7 @@ var Parser = /** @class */ (function () { }()); exports.Parser = Parser; -},{"./Tokenizer":74}],74:[function(require,module,exports){ +},{"./Tokenizer":76}],76:[function(require,module,exports){ "use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; @@ -11851,7 +11988,7 @@ var Tokenizer = /** @class */ (function () { }()); exports.default = Tokenizer; -},{"entities/lib/decode_codepoint":76,"entities/lib/maps/entities.json":78,"entities/lib/maps/legacy.json":79,"entities/lib/maps/xml.json":80}],75:[function(require,module,exports){ +},{"entities/lib/decode_codepoint":78,"entities/lib/maps/entities.json":80,"entities/lib/maps/legacy.json":81,"entities/lib/maps/xml.json":82}],77:[function(require,module,exports){ "use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; @@ -11937,17 +12074,17 @@ exports.DomUtils = __importStar(require("domutils")); var FeedHandler_1 = require("./FeedHandler"); Object.defineProperty(exports, "RssHandler", { enumerable: true, get: function () { return FeedHandler_1.FeedHandler; } }); -},{"./FeedHandler":72,"./Parser":73,"./Tokenizer":74,"domelementtype":50,"domhandler":51,"domutils":55}],76:[function(require,module,exports){ -arguments[4][43][0].apply(exports,arguments) -},{"./maps/decode.json":77,"dup":43}],77:[function(require,module,exports){ -arguments[4][46][0].apply(exports,arguments) -},{"dup":46}],78:[function(require,module,exports){ +},{"./FeedHandler":74,"./Parser":75,"./Tokenizer":76,"domelementtype":51,"domhandler":52,"domutils":56}],78:[function(require,module,exports){ +arguments[4][44][0].apply(exports,arguments) +},{"./maps/decode.json":79,"dup":44}],79:[function(require,module,exports){ arguments[4][47][0].apply(exports,arguments) -},{"dup":47}],79:[function(require,module,exports){ +},{"dup":47}],80:[function(require,module,exports){ arguments[4][48][0].apply(exports,arguments) -},{"dup":48}],80:[function(require,module,exports){ +},{"dup":48}],81:[function(require,module,exports){ arguments[4][49][0].apply(exports,arguments) -},{"dup":49}],81:[function(require,module,exports){ +},{"dup":49}],82:[function(require,module,exports){ +arguments[4][50][0].apply(exports,arguments) +},{"dup":50}],83:[function(require,module,exports){ /*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh */ exports.read = function (buffer, offset, isLE, mLen, nBytes) { var e, m @@ -12034,7 +12171,7 @@ exports.write = function (buffer, value, offset, isLE, mLen, nBytes) { buffer[offset + i - d] |= s * 128 } -},{}],82:[function(require,module,exports){ +},{}],84:[function(require,module,exports){ if (typeof Object.create === 'function') { // implementation from standard node.js 'util' module module.exports = function inherits(ctor, superCtor) { @@ -12063,7 +12200,7 @@ if (typeof Object.create === 'function') { } } -},{}],83:[function(require,module,exports){ +},{}],85:[function(require,module,exports){ 'use strict'; var hasToStringTag = require('has-tostringtag/shams')(); @@ -12098,7 +12235,7 @@ isStandardArguments.isLegacyArguments = isLegacyArguments; // for tests module.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments; -},{"call-bind/callBound":5,"has-tostringtag/shams":70}],84:[function(require,module,exports){ +},{"call-bind/callBound":5,"has-tostringtag/shams":72}],86:[function(require,module,exports){ 'use strict'; var fnToStr = Function.prototype.toString; @@ -12201,7 +12338,7 @@ module.exports = reflectApply return tryFunctionObject(value); }; -},{}],85:[function(require,module,exports){ +},{}],87:[function(require,module,exports){ 'use strict'; var toStr = Object.prototype.toString; @@ -12241,7 +12378,7 @@ module.exports = function isGeneratorFunction(fn) { return getProto(fn) === GeneratorFunction; }; -},{"has-tostringtag/shams":70}],86:[function(require,module,exports){ +},{"has-tostringtag/shams":72}],88:[function(require,module,exports){ 'use strict'; var whichTypedArray = require('which-typed-array'); @@ -12250,7 +12387,7 @@ module.exports = function isTypedArray(value) { return !!whichTypedArray(value); }; -},{"which-typed-array":501}],87:[function(require,module,exports){ +},{"which-typed-array":504}],89:[function(require,module,exports){ 'use strict'; var cheerio = require('./lib/cheerio'); @@ -12279,7 +12416,7 @@ juiceClient.inlineContent = function(html, css, options) { module.exports = juiceClient; -},{"./lib/cheerio":88,"./lib/inline":89}],88:[function(require,module,exports){ +},{"./lib/cheerio":90,"./lib/inline":91}],90:[function(require,module,exports){ 'use strict'; /** @@ -12353,7 +12490,7 @@ module.exports.codeBlocks = { HBS: { start: '{{', end: '}}' } }; -},{"./utils":93,"cheerio":16}],89:[function(require,module,exports){ +},{"./utils":95,"cheerio":16}],91:[function(require,module,exports){ 'use strict'; var utils = require('./utils'); @@ -12869,7 +13006,7 @@ return juiceClient; }; -},{"./numbers":90,"./utils":93}],90:[function(require,module,exports){ +},{"./numbers":92,"./utils":95}],92:[function(require,module,exports){ 'use strict'; /** @@ -12910,7 +13047,7 @@ exports.alphanumeric = function(num) { } return s || undefined; } -},{}],91:[function(require,module,exports){ +},{}],93:[function(require,module,exports){ 'use strict'; module.exports = exports = Property; @@ -12977,7 +13114,7 @@ Property.prototype.toString = function() { return this.prop + ': ' + this.value.replace(/['"]+/g, '') + ';'; }; -},{"./utils":93}],92:[function(require,module,exports){ +},{"./utils":95}],94:[function(require,module,exports){ 'use strict'; var parser = require('slick/parser'); @@ -13076,7 +13213,7 @@ function parse(text) { } } -},{"slick/parser":490}],93:[function(require,module,exports){ +},{"slick/parser":493}],95:[function(require,module,exports){ 'use strict'; /** @@ -13245,7 +13382,7 @@ exports.getDefaultOptions = function(options) { return result; }; -},{"./property":91,"./selector":92,"mensch":454}],94:[function(require,module,exports){ +},{"./property":93,"./selector":94,"mensch":456}],96:[function(require,module,exports){ 'use strict'; @@ -13911,7 +14048,7 @@ LinkifyIt.prototype.onCompile = function onCompile() { module.exports = LinkifyIt; -},{"./lib/re":95}],95:[function(require,module,exports){ +},{"./lib/re":97}],97:[function(require,module,exports){ 'use strict'; @@ -14096,7 +14233,7 @@ module.exports = function (opts) { return re; }; -},{"uc.micro/categories/Cc/regex":492,"uc.micro/categories/P/regex":494,"uc.micro/categories/Z/regex":495,"uc.micro/properties/Any/regex":497}],96:[function(require,module,exports){ +},{"uc.micro/categories/Cc/regex":495,"uc.micro/categories/P/regex":497,"uc.micro/categories/Z/regex":498,"uc.micro/properties/Any/regex":500}],98:[function(require,module,exports){ 'use strict'; const patternsConfig = require('./patterns.js'); @@ -14252,7 +14389,7 @@ function last(arr) { return arr.slice(-1)[0] || {}; } -},{"./patterns.js":97}],97:[function(require,module,exports){ +},{"./patterns.js":99}],99:[function(require,module,exports){ 'use strict'; /** * If a pattern matches the token stream, @@ -14595,7 +14732,7 @@ function last(arr) { return arr.slice(-1)[0]; } -},{"./utils.js":98}],98:[function(require,module,exports){ +},{"./utils.js":100}],100:[function(require,module,exports){ /** * parse {.class #id key=val} strings * @param {string} str: string to parse @@ -14875,7 +15012,7 @@ exports.escapeHtml = function (str) { return str; }; -},{}],99:[function(require,module,exports){ +},{}],101:[function(require,module,exports){ // Process block-level custom containers // 'use strict'; @@ -15022,7 +15159,7 @@ module.exports = function container_plugin(md, name, options) { md.renderer.rules['container_' + name + '_close'] = render; }; -},{}],100:[function(require,module,exports){ +},{}],102:[function(require,module,exports){ "use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; @@ -15202,7 +15339,7 @@ function plugin(md, options) { plugin.default = plugin; module.exports = plugin; -},{"juice/client":87,"mathjax-full/js/a11y/assistive-mml.js":160,"mathjax-full/js/adaptors/liteAdaptor.js":162,"mathjax-full/js/handlers/html.js":222,"mathjax-full/js/input/tex.js":228,"mathjax-full/js/input/tex/AllPackages.js":229,"mathjax-full/js/mathjax.js":317,"mathjax-full/js/output/svg.js":375}],101:[function(require,module,exports){ +},{"juice/client":89,"mathjax-full/js/a11y/assistive-mml.js":162,"mathjax-full/js/adaptors/liteAdaptor.js":164,"mathjax-full/js/handlers/html.js":224,"mathjax-full/js/input/tex.js":230,"mathjax-full/js/input/tex/AllPackages.js":231,"mathjax-full/js/mathjax.js":319,"mathjax-full/js/output/svg.js":377}],103:[function(require,module,exports){ 'use strict'; var DFA = require('./lib/dfa.js'); @@ -15594,7 +15731,7 @@ module.exports = function multimd_table_plugin(md, options) { /* vim: set ts=2 sw=2 et: */ -},{"./lib/dfa.js":102}],102:[function(require,module,exports){ +},{"./lib/dfa.js":104}],104:[function(require,module,exports){ 'use strict'; // constructor @@ -15668,10 +15805,10 @@ module.exports = DFA; /* vim: set ts=2 sw=2 et: */ -},{}],103:[function(require,module,exports){ +},{}],105:[function(require,module,exports){ module.exports = require('./lib') -},{"./lib":104}],104:[function(require,module,exports){ +},{"./lib":106}],106:[function(require,module,exports){ /*! * markdown-it-regexp * Copyright (c) 2014 Alex Kocharin @@ -15760,7 +15897,7 @@ Plugin.prototype.render = function (tokens, id, options, env) { } -},{"./utils":105,"util":500}],105:[function(require,module,exports){ +},{"./utils":107,"util":503}],107:[function(require,module,exports){ /*! * markdown-it-regexp * Copyright (c) 2014 Alex Kocharin @@ -15788,13 +15925,13 @@ exports.escape = function(html) { } -},{"util":500}],106:[function(require,module,exports){ +},{"util":503}],108:[function(require,module,exports){ 'use strict'; module.exports = require('./lib/'); -},{"./lib/":115}],107:[function(require,module,exports){ +},{"./lib/":117}],109:[function(require,module,exports){ // HTML5 entities map: { name -> utf16string } // 'use strict'; @@ -15802,7 +15939,7 @@ module.exports = require('./lib/'); /*eslint quotes:0*/ module.exports = require('entities/lib/maps/entities.json'); -},{"entities/lib/maps/entities.json":61}],108:[function(require,module,exports){ +},{"entities/lib/maps/entities.json":62}],110:[function(require,module,exports){ // List of valid html blocks names, accorting to commonmark spec // http://jgm.github.io/CommonMark/spec.html#html-blocks @@ -15874,7 +16011,7 @@ module.exports = [ 'ul' ]; -},{}],109:[function(require,module,exports){ +},{}],111:[function(require,module,exports){ // Regexps to match html elements 'use strict'; @@ -15904,7 +16041,7 @@ var HTML_OPEN_CLOSE_TAG_RE = new RegExp('^(?:' + open_tag + '|' + close_tag + ') module.exports.HTML_TAG_RE = HTML_TAG_RE; module.exports.HTML_OPEN_CLOSE_TAG_RE = HTML_OPEN_CLOSE_TAG_RE; -},{}],110:[function(require,module,exports){ +},{}],112:[function(require,module,exports){ // Utilities // 'use strict'; @@ -15982,12 +16119,12 @@ var UNESCAPE_MD_RE = /\\([!"#$%&'()*+,\-.\/:;<=>?@[\\\]^_`{|}~])/g; var ENTITY_RE = /&([a-z#][a-z0-9]{1,31});/gi; var UNESCAPE_ALL_RE = new RegExp(UNESCAPE_MD_RE.source + '|' + ENTITY_RE.source, 'gi'); -var DIGITAL_ENTITY_TEST_RE = /^#((?:x[a-f0-9]{1,8}|[0-9]{1,8}))/i; +var DIGITAL_ENTITY_TEST_RE = /^#((?:x[a-f0-9]{1,8}|[0-9]{1,8}))$/i; var entities = require('./entities'); function replaceEntityPattern(match, name) { - var code = 0; + var code; if (has(entities, name)) { return entities[name]; @@ -16223,7 +16360,7 @@ exports.isPunctChar = isPunctChar; exports.escapeRE = escapeRE; exports.normalizeReference = normalizeReference; -},{"./entities":107,"mdurl":452,"uc.micro":496,"uc.micro/categories/P/regex":494}],111:[function(require,module,exports){ +},{"./entities":109,"mdurl":454,"uc.micro":499,"uc.micro/categories/P/regex":497}],113:[function(require,module,exports){ // Just a shortcut for bulk export 'use strict'; @@ -16232,7 +16369,7 @@ exports.parseLinkLabel = require('./parse_link_label'); exports.parseLinkDestination = require('./parse_link_destination'); exports.parseLinkTitle = require('./parse_link_title'); -},{"./parse_link_destination":112,"./parse_link_label":113,"./parse_link_title":114}],112:[function(require,module,exports){ +},{"./parse_link_destination":114,"./parse_link_label":115,"./parse_link_title":116}],114:[function(require,module,exports){ // Parse link destination // 'use strict'; @@ -16241,10 +16378,9 @@ exports.parseLinkTitle = require('./parse_link_title'); var unescapeAll = require('../common/utils').unescapeAll; -module.exports = function parseLinkDestination(str, pos, max) { +module.exports = function parseLinkDestination(str, start, max) { var code, level, - lines = 0, - start = pos, + pos = start, result = { ok: false, pos: 0, @@ -16310,13 +16446,12 @@ module.exports = function parseLinkDestination(str, pos, max) { if (level !== 0) { return result; } result.str = unescapeAll(str.slice(start, pos)); - result.lines = lines; result.pos = pos; result.ok = true; return result; }; -},{"../common/utils":110}],113:[function(require,module,exports){ +},{"../common/utils":112}],115:[function(require,module,exports){ // Parse link label // // this function assumes that first character ("[") already matches; @@ -16366,7 +16501,7 @@ module.exports = function parseLinkLabel(state, start, disableNested) { return labelEnd; }; -},{}],114:[function(require,module,exports){ +},{}],116:[function(require,module,exports){ // Parse link title // 'use strict'; @@ -16375,11 +16510,11 @@ module.exports = function parseLinkLabel(state, start, disableNested) { var unescapeAll = require('../common/utils').unescapeAll; -module.exports = function parseLinkTitle(str, pos, max) { +module.exports = function parseLinkTitle(str, start, max) { var code, marker, lines = 0, - start = pos, + pos = start, result = { ok: false, pos: 0, @@ -16423,7 +16558,7 @@ module.exports = function parseLinkTitle(str, pos, max) { return result; }; -},{"../common/utils":110}],115:[function(require,module,exports){ +},{"../common/utils":112}],117:[function(require,module,exports){ // Main parser class 'use strict'; @@ -17007,7 +17142,7 @@ MarkdownIt.prototype.renderInline = function (src, env) { module.exports = MarkdownIt; -},{"./common/utils":110,"./helpers":111,"./parser_block":116,"./parser_core":117,"./parser_inline":118,"./presets/commonmark":119,"./presets/default":120,"./presets/zero":121,"./renderer":122,"linkify-it":94,"mdurl":452,"punycode":489}],116:[function(require,module,exports){ +},{"./common/utils":112,"./helpers":113,"./parser_block":118,"./parser_core":119,"./parser_inline":120,"./presets/commonmark":121,"./presets/default":122,"./presets/zero":123,"./renderer":124,"linkify-it":96,"mdurl":454,"punycode":491}],118:[function(require,module,exports){ /** internal * class ParserBlock * @@ -17056,7 +17191,7 @@ function ParserBlock() { // Generate tokens for input range // ParserBlock.prototype.tokenize = function (state, startLine, endLine) { - var ok, i, + var ok, i, prevLine, rules = this.ruler.getRules(''), len = rules.length, line = startLine, @@ -17084,12 +17219,21 @@ ParserBlock.prototype.tokenize = function (state, startLine, endLine) { // - update `state.line` // - update `state.tokens` // - return true + prevLine = state.line; for (i = 0; i < len; i++) { ok = rules[i](state, line, endLine, false); - if (ok) { break; } + if (ok) { + if (prevLine >= state.line) { + throw new Error("block rule didn't increment state.line"); + } + break; + } } + // this can only happen if user disables paragraph rule + if (!ok) throw new Error('none of the block rules matched'); + // set state.tight if we had an empty line before current tag // i.e. latest empty line should not count state.tight = !hasEmptyLines; @@ -17131,7 +17275,7 @@ ParserBlock.prototype.State = require('./rules_block/state_block'); module.exports = ParserBlock; -},{"./ruler":123,"./rules_block/blockquote":124,"./rules_block/code":125,"./rules_block/fence":126,"./rules_block/heading":127,"./rules_block/hr":128,"./rules_block/html_block":129,"./rules_block/lheading":130,"./rules_block/list":131,"./rules_block/paragraph":132,"./rules_block/reference":133,"./rules_block/state_block":134,"./rules_block/table":135}],117:[function(require,module,exports){ +},{"./ruler":125,"./rules_block/blockquote":126,"./rules_block/code":127,"./rules_block/fence":128,"./rules_block/heading":129,"./rules_block/hr":130,"./rules_block/html_block":131,"./rules_block/lheading":132,"./rules_block/list":133,"./rules_block/paragraph":134,"./rules_block/reference":135,"./rules_block/state_block":136,"./rules_block/table":137}],119:[function(require,module,exports){ /** internal * class Core * @@ -17194,7 +17338,7 @@ Core.prototype.State = require('./rules_core/state_core'); module.exports = Core; -},{"./ruler":123,"./rules_core/block":136,"./rules_core/inline":137,"./rules_core/linkify":138,"./rules_core/normalize":139,"./rules_core/replacements":140,"./rules_core/smartquotes":141,"./rules_core/state_core":142,"./rules_core/text_join":143}],118:[function(require,module,exports){ +},{"./ruler":125,"./rules_core/block":138,"./rules_core/inline":139,"./rules_core/linkify":140,"./rules_core/normalize":141,"./rules_core/replacements":142,"./rules_core/smartquotes":143,"./rules_core/state_core":144,"./rules_core/text_join":145}],120:[function(require,module,exports){ /** internal * class ParserInline * @@ -17296,7 +17440,10 @@ ParserInline.prototype.skipToken = function (state) { ok = rules[i](state, true); state.level--; - if (ok) { break; } + if (ok) { + if (pos >= state.pos) { throw new Error("inline rule didn't increment state.pos"); } + break; + } } } else { // Too much nesting, just skip until the end of the paragraph. @@ -17321,7 +17468,7 @@ ParserInline.prototype.skipToken = function (state) { // Generate tokens for input range // ParserInline.prototype.tokenize = function (state) { - var ok, i, + var ok, i, prevPos, rules = this.ruler.getRules(''), len = rules.length, end = state.posMax, @@ -17334,11 +17481,15 @@ ParserInline.prototype.tokenize = function (state) { // - update `state.pos` // - update `state.tokens` // - return true + prevPos = state.pos; if (state.level < maxNesting) { for (i = 0; i < len; i++) { ok = rules[i](state, false); - if (ok) { break; } + if (ok) { + if (prevPos >= state.pos) { throw new Error("inline rule didn't increment state.pos"); } + break; + } } } @@ -17381,7 +17532,7 @@ ParserInline.prototype.State = require('./rules_inline/state_inline'); module.exports = ParserInline; -},{"./ruler":123,"./rules_inline/autolink":144,"./rules_inline/backticks":145,"./rules_inline/balance_pairs":146,"./rules_inline/emphasis":147,"./rules_inline/entity":148,"./rules_inline/escape":149,"./rules_inline/fragments_join":150,"./rules_inline/html_inline":151,"./rules_inline/image":152,"./rules_inline/link":153,"./rules_inline/linkify":154,"./rules_inline/newline":155,"./rules_inline/state_inline":156,"./rules_inline/strikethrough":157,"./rules_inline/text":158}],119:[function(require,module,exports){ +},{"./ruler":125,"./rules_inline/autolink":146,"./rules_inline/backticks":147,"./rules_inline/balance_pairs":148,"./rules_inline/emphasis":149,"./rules_inline/entity":150,"./rules_inline/escape":151,"./rules_inline/fragments_join":152,"./rules_inline/html_inline":153,"./rules_inline/image":154,"./rules_inline/link":155,"./rules_inline/linkify":156,"./rules_inline/newline":157,"./rules_inline/state_inline":158,"./rules_inline/strikethrough":159,"./rules_inline/text":160}],121:[function(require,module,exports){ // Commonmark default options 'use strict'; @@ -17464,7 +17615,7 @@ module.exports = { } }; -},{}],120:[function(require,module,exports){ +},{}],122:[function(require,module,exports){ // markdown-it default options 'use strict'; @@ -17507,7 +17658,7 @@ module.exports = { } }; -},{}],121:[function(require,module,exports){ +},{}],123:[function(require,module,exports){ // "Zero" preset, with nothing enabled. Useful for manual configuring of simple // modes. For example, to parse bold/italic only. @@ -17572,7 +17723,7 @@ module.exports = { } }; -},{}],122:[function(require,module,exports){ +},{}],124:[function(require,module,exports){ /** * class Renderer * @@ -17597,7 +17748,7 @@ default_rules.code_inline = function (tokens, idx, options, env, slf) { var token = tokens[idx]; return '' + - escapeHtml(tokens[idx].content) + + escapeHtml(token.content) + ''; }; @@ -17904,7 +18055,7 @@ Renderer.prototype.render = function (tokens, options, env) { if (type === 'inline') { result += this.renderInline(tokens[i].children, options, env); } else if (typeof rules[type] !== 'undefined') { - result += rules[tokens[i].type](tokens, i, options, env, this); + result += rules[type](tokens, i, options, env, this); } else { result += this.renderToken(tokens, i, options, env); } @@ -17915,7 +18066,7 @@ Renderer.prototype.render = function (tokens, options, env) { module.exports = Renderer; -},{"./common/utils":110}],123:[function(require,module,exports){ +},{"./common/utils":112}],125:[function(require,module,exports){ /** * class Ruler * @@ -18269,7 +18420,7 @@ Ruler.prototype.getRules = function (chainName) { module.exports = Ruler; -},{}],124:[function(require,module,exports){ +},{}],126:[function(require,module,exports){ // Block quotes 'use strict'; @@ -18306,73 +18457,16 @@ module.exports = function blockquote(state, startLine, endLine, silent) { if (state.sCount[startLine] - state.blkIndent >= 4) { return false; } // check the block quote marker - if (state.src.charCodeAt(pos++) !== 0x3E/* > */) { return false; } + if (state.src.charCodeAt(pos) !== 0x3E/* > */) { return false; } // we know that it's going to be a valid blockquote, // so no point trying to find the end of it in silent mode if (silent) { return true; } - // set offset past spaces and ">" - initial = offset = state.sCount[startLine] + 1; - - // skip one optional space after '>' - if (state.src.charCodeAt(pos) === 0x20 /* space */) { - // ' > test ' - // ^ -- position start of line here: - pos++; - initial++; - offset++; - adjustTab = false; - spaceAfterMarker = true; - } else if (state.src.charCodeAt(pos) === 0x09 /* tab */) { - spaceAfterMarker = true; - - if ((state.bsCount[startLine] + offset) % 4 === 3) { - // ' >\t test ' - // ^ -- position start of line here (tab has width===1) - pos++; - initial++; - offset++; - adjustTab = false; - } else { - // ' >\t test ' - // ^ -- position start of line here + shift bsCount slightly - // to make extra space appear - adjustTab = true; - } - } else { - spaceAfterMarker = false; - } - - oldBMarks = [ state.bMarks[startLine] ]; - state.bMarks[startLine] = pos; - - while (pos < max) { - ch = state.src.charCodeAt(pos); - - if (isSpace(ch)) { - if (ch === 0x09) { - offset += 4 - (offset + state.bsCount[startLine] + (adjustTab ? 1 : 0)) % 4; - } else { - offset++; - } - } else { - break; - } - - pos++; - } - - oldBSCount = [ state.bsCount[startLine] ]; - state.bsCount[startLine] = state.sCount[startLine] + 1 + (spaceAfterMarker ? 1 : 0); - - lastLineEmpty = pos >= max; - - oldSCount = [ state.sCount[startLine] ]; - state.sCount[startLine] = offset - initial; - - oldTShift = [ state.tShift[startLine] ]; - state.tShift[startLine] = pos - state.bMarks[startLine]; + oldBMarks = []; + oldBSCount = []; + oldSCount = []; + oldTShift = []; terminatorRules = state.md.block.ruler.getRules('blockquote'); @@ -18397,7 +18491,7 @@ module.exports = function blockquote(state, startLine, endLine, silent) { // > test // - - - // ``` - for (nextLine = startLine + 1; nextLine < endLine; nextLine++) { + for (nextLine = startLine; nextLine < endLine; nextLine++) { // check if it's outdented, i.e. it's inside list item and indented // less than said list item: // @@ -18420,7 +18514,7 @@ module.exports = function blockquote(state, startLine, endLine, silent) { // This line is inside the blockquote. // set offset past spaces and ">" - initial = offset = state.sCount[nextLine] + 1; + initial = state.sCount[nextLine] + 1; // skip one optional space after '>' if (state.src.charCodeAt(pos) === 0x20 /* space */) { @@ -18428,18 +18522,16 @@ module.exports = function blockquote(state, startLine, endLine, silent) { // ^ -- position start of line here: pos++; initial++; - offset++; adjustTab = false; spaceAfterMarker = true; } else if (state.src.charCodeAt(pos) === 0x09 /* tab */) { spaceAfterMarker = true; - if ((state.bsCount[nextLine] + offset) % 4 === 3) { + if ((state.bsCount[nextLine] + initial) % 4 === 3) { // ' >\t test ' // ^ -- position start of line here (tab has width===1) pos++; initial++; - offset++; adjustTab = false; } else { // ' >\t test ' @@ -18451,6 +18543,7 @@ module.exports = function blockquote(state, startLine, endLine, silent) { spaceAfterMarker = false; } + offset = initial; oldBMarks.push(state.bMarks[nextLine]); state.bMarks[nextLine] = pos; @@ -18555,7 +18648,7 @@ module.exports = function blockquote(state, startLine, endLine, silent) { return true; }; -},{"../common/utils":110}],125:[function(require,module,exports){ +},{"../common/utils":112}],127:[function(require,module,exports){ // Code block (4 spaces padded) 'use strict'; @@ -18591,7 +18684,7 @@ module.exports = function code(state, startLine, endLine/*, silent*/) { return true; }; -},{}],126:[function(require,module,exports){ +},{}],128:[function(require,module,exports){ // fences (``` lang, ~~~ lang) 'use strict'; @@ -18691,7 +18784,7 @@ module.exports = function fence(state, startLine, endLine, silent) { return true; }; -},{}],127:[function(require,module,exports){ +},{}],129:[function(require,module,exports){ // heading (#, ##, ...) 'use strict'; @@ -18748,7 +18841,7 @@ module.exports = function heading(state, startLine, endLine, silent) { return true; }; -},{"../common/utils":110}],128:[function(require,module,exports){ +},{"../common/utils":112}],130:[function(require,module,exports){ // Horizontal rule 'use strict'; @@ -18795,7 +18888,7 @@ module.exports = function hr(state, startLine, endLine, silent) { return true; }; -},{"../common/utils":110}],129:[function(require,module,exports){ +},{"../common/utils":112}],131:[function(require,module,exports){ // HTML block 'use strict'; @@ -18871,7 +18964,7 @@ module.exports = function html_block(state, startLine, endLine, silent) { return true; }; -},{"../common/html_blocks":108,"../common/html_re":109}],130:[function(require,module,exports){ +},{"../common/html_blocks":110,"../common/html_re":111}],132:[function(require,module,exports){ // lheading (---, ===) 'use strict'; @@ -18956,7 +19049,7 @@ module.exports = function lheading(state, startLine, endLine/*, silent*/) { return true; }; -},{}],131:[function(require,module,exports){ +},{}],133:[function(require,module,exports){ // Lists 'use strict'; @@ -19071,7 +19164,6 @@ module.exports = function list(state, startLine, endLine, silent) { markerCharCode, markerValue, max, - nextLine, offset, oldListIndent, oldParentType, @@ -19085,11 +19177,12 @@ module.exports = function list(state, startLine, endLine, silent) { terminate, terminatorRules, token, + nextLine = startLine, isTerminatingParagraph = false, tight = true; // if it's indented more than 3 spaces, it should be a code block - if (state.sCount[startLine] - state.blkIndent >= 4) { return false; } + if (state.sCount[nextLine] - state.blkIndent >= 4) { return false; } // Special case: // - item 1 @@ -19098,8 +19191,8 @@ module.exports = function list(state, startLine, endLine, silent) { // - item 4 // - this one is a paragraph continuation if (state.listIndent >= 0 && - state.sCount[startLine] - state.listIndent >= 4 && - state.sCount[startLine] < state.blkIndent) { + state.sCount[nextLine] - state.listIndent >= 4 && + state.sCount[nextLine] < state.blkIndent) { return false; } @@ -19111,22 +19204,22 @@ module.exports = function list(state, startLine, endLine, silent) { // This code can fail if plugins use blkIndent as well as lists, // but I hope the spec gets fixed long before that happens. // - if (state.sCount[startLine] >= state.blkIndent) { + if (state.sCount[nextLine] >= state.blkIndent) { isTerminatingParagraph = true; } } // Detect list type and position after marker - if ((posAfterMarker = skipOrderedListMarker(state, startLine)) >= 0) { + if ((posAfterMarker = skipOrderedListMarker(state, nextLine)) >= 0) { isOrdered = true; - start = state.bMarks[startLine] + state.tShift[startLine]; + start = state.bMarks[nextLine] + state.tShift[nextLine]; markerValue = Number(state.src.slice(start, posAfterMarker - 1)); // If we're starting a new ordered list right after // a paragraph, it should start with 1. if (isTerminatingParagraph && markerValue !== 1) return false; - } else if ((posAfterMarker = skipBulletListMarker(state, startLine)) >= 0) { + } else if ((posAfterMarker = skipBulletListMarker(state, nextLine)) >= 0) { isOrdered = false; } else { @@ -19136,15 +19229,15 @@ module.exports = function list(state, startLine, endLine, silent) { // If we're starting a new unordered list right after // a paragraph, first line should not be empty. if (isTerminatingParagraph) { - if (state.skipSpaces(posAfterMarker) >= state.eMarks[startLine]) return false; + if (state.skipSpaces(posAfterMarker) >= state.eMarks[nextLine]) return false; } - // We should terminate list on style change. Remember first one to compare. - markerCharCode = state.src.charCodeAt(posAfterMarker - 1); - // For validation mode we can terminate immediately if (silent) { return true; } + // We should terminate list on style change. Remember first one to compare. + markerCharCode = state.src.charCodeAt(posAfterMarker - 1); + // Start list listTokIdx = state.tokens.length; @@ -19158,14 +19251,13 @@ module.exports = function list(state, startLine, endLine, silent) { token = state.push('bullet_list_open', 'ul', 1); } - token.map = listLines = [ startLine, 0 ]; + token.map = listLines = [ nextLine, 0 ]; token.markup = String.fromCharCode(markerCharCode); // // Iterate list items // - nextLine = startLine; prevEmptyEnd = false; terminatorRules = state.md.block.ruler.getRules('list'); @@ -19176,7 +19268,7 @@ module.exports = function list(state, startLine, endLine, silent) { pos = posAfterMarker; max = state.eMarks[nextLine]; - initial = offset = state.sCount[nextLine] + posAfterMarker - (state.bMarks[startLine] + state.tShift[startLine]); + initial = offset = state.sCount[nextLine] + posAfterMarker - (state.bMarks[nextLine] + state.tShift[nextLine]); while (pos < max) { ch = state.src.charCodeAt(pos); @@ -19212,15 +19304,15 @@ module.exports = function list(state, startLine, endLine, silent) { // Run subparser & write tokens token = state.push('list_item_open', 'li', 1); token.markup = String.fromCharCode(markerCharCode); - token.map = itemLines = [ startLine, 0 ]; + token.map = itemLines = [ nextLine, 0 ]; if (isOrdered) { token.info = state.src.slice(start, posAfterMarker - 1); } // change current state, then restore it after parser subcall oldTight = state.tight; - oldTShift = state.tShift[startLine]; - oldSCount = state.sCount[startLine]; + oldTShift = state.tShift[nextLine]; + oldSCount = state.sCount[nextLine]; // - example list // ^ listIndent position will be here @@ -19231,10 +19323,10 @@ module.exports = function list(state, startLine, endLine, silent) { state.blkIndent = indent; state.tight = true; - state.tShift[startLine] = contentStart - state.bMarks[startLine]; - state.sCount[startLine] = offset; + state.tShift[nextLine] = contentStart - state.bMarks[nextLine]; + state.sCount[nextLine] = offset; - if (contentStart >= max && state.isEmpty(startLine + 1)) { + if (contentStart >= max && state.isEmpty(nextLine + 1)) { // workaround for this case // (list item is empty, list terminates before "foo"): // ~~~~~~~~ @@ -19244,7 +19336,7 @@ module.exports = function list(state, startLine, endLine, silent) { // ~~~~~~~~ state.line = Math.min(state.line + 2, endLine); } else { - state.md.block.tokenize(state, startLine, endLine, true); + state.md.block.tokenize(state, nextLine, endLine, true); } // If any of list item is tight, mark list as tight @@ -19253,20 +19345,19 @@ module.exports = function list(state, startLine, endLine, silent) { } // Item become loose if finish with empty line, // but we should filter last element, because it means list finish - prevEmptyEnd = (state.line - startLine) > 1 && state.isEmpty(state.line - 1); + prevEmptyEnd = (state.line - nextLine) > 1 && state.isEmpty(state.line - 1); state.blkIndent = state.listIndent; state.listIndent = oldListIndent; - state.tShift[startLine] = oldTShift; - state.sCount[startLine] = oldSCount; + state.tShift[nextLine] = oldTShift; + state.sCount[nextLine] = oldSCount; state.tight = oldTight; token = state.push('list_item_close', 'li', -1); token.markup = String.fromCharCode(markerCharCode); - nextLine = startLine = state.line; + nextLine = state.line; itemLines[1] = nextLine; - contentStart = state.bMarks[startLine]; if (nextLine >= endLine) { break; } @@ -19276,7 +19367,7 @@ module.exports = function list(state, startLine, endLine, silent) { if (state.sCount[nextLine] < state.blkIndent) { break; } // if it's indented more than 3 spaces, it should be a code block - if (state.sCount[startLine] - state.blkIndent >= 4) { break; } + if (state.sCount[nextLine] - state.blkIndent >= 4) { break; } // fail if terminating block found terminate = false; @@ -19322,17 +19413,16 @@ module.exports = function list(state, startLine, endLine, silent) { return true; }; -},{"../common/utils":110}],132:[function(require,module,exports){ +},{"../common/utils":112}],134:[function(require,module,exports){ // Paragraph 'use strict'; -module.exports = function paragraph(state, startLine/*, endLine*/) { +module.exports = function paragraph(state, startLine, endLine) { var content, terminate, i, l, token, oldParentType, nextLine = startLine + 1, - terminatorRules = state.md.block.ruler.getRules('paragraph'), - endLine = state.lineMax; + terminatorRules = state.md.block.ruler.getRules('paragraph'); oldParentType = state.parentType; state.parentType = 'paragraph'; @@ -19376,7 +19466,7 @@ module.exports = function paragraph(state, startLine/*, endLine*/) { return true; }; -},{}],133:[function(require,module,exports){ +},{}],135:[function(require,module,exports){ 'use strict'; @@ -19576,7 +19666,7 @@ module.exports = function reference(state, startLine, _endLine, silent) { return true; }; -},{"../common/utils":110}],134:[function(require,module,exports){ +},{"../common/utils":112}],136:[function(require,module,exports){ // Parser state class 'use strict'; @@ -19809,7 +19899,7 @@ StateBlock.prototype.Token = Token; module.exports = StateBlock; -},{"../common/utils":110,"../token":159}],135:[function(require,module,exports){ +},{"../common/utils":112,"../token":161}],137:[function(require,module,exports){ // GFM table, https://github.github.com/gfm/#tables-extension- 'use strict'; @@ -20032,7 +20122,7 @@ module.exports = function table(state, startLine, endLine, silent) { return true; }; -},{"../common/utils":110}],136:[function(require,module,exports){ +},{"../common/utils":112}],138:[function(require,module,exports){ 'use strict'; @@ -20050,7 +20140,7 @@ module.exports = function block(state) { } }; -},{}],137:[function(require,module,exports){ +},{}],139:[function(require,module,exports){ 'use strict'; module.exports = function inline(state) { @@ -20065,7 +20155,7 @@ module.exports = function inline(state) { } }; -},{}],138:[function(require,module,exports){ +},{}],140:[function(require,module,exports){ // Replace link-like texts with link nodes. // // Currently restricted by `md.validateLink()` to http/https/ftp @@ -20209,7 +20299,7 @@ module.exports = function linkify(state) { } }; -},{"../common/utils":110}],139:[function(require,module,exports){ +},{"../common/utils":112}],141:[function(require,module,exports){ // Normalize input string 'use strict'; @@ -20232,14 +20322,13 @@ module.exports = function normalize(state) { state.src = str; }; -},{}],140:[function(require,module,exports){ +},{}],142:[function(require,module,exports){ // Simple typographic replacements // // (c) (C) → © // (tm) (TM) → ™ // (r) (R) → ® // +- → ± -// (p) (P) -> § // ... → … (also ?.... → ?.., !.... → !..) // ???????? → ???, !!!!! → !!!, `,,` → `,` // -- → –, --- → — @@ -20340,7 +20429,7 @@ module.exports = function replace(state) { } }; -},{}],141:[function(require,module,exports){ +},{}],143:[function(require,module,exports){ // Convert straight quotation marks to typographic ones // 'use strict'; @@ -20543,7 +20632,7 @@ module.exports = function smartquotes(state) { } }; -},{"../common/utils":110}],142:[function(require,module,exports){ +},{"../common/utils":112}],144:[function(require,module,exports){ // Core state object // 'use strict'; @@ -20565,7 +20654,7 @@ StateCore.prototype.Token = Token; module.exports = StateCore; -},{"../token":159}],143:[function(require,module,exports){ +},{"../token":161}],145:[function(require,module,exports){ // Join raw text tokens with the rest of the text // // This is set as a separate rule to provide an opportunity for plugins @@ -20612,7 +20701,7 @@ module.exports = function text_join(state) { } }; -},{}],144:[function(require,module,exports){ +},{}],146:[function(require,module,exports){ // Process autolinks '' 'use strict'; @@ -20690,7 +20779,7 @@ module.exports = function autolink(state, silent) { return false; }; -},{}],145:[function(require,module,exports){ +},{}],147:[function(require,module,exports){ // Parse backticks 'use strict'; @@ -20719,7 +20808,7 @@ module.exports = function backtick(state, silent) { return true; } - matchStart = matchEnd = pos; + matchEnd = pos; // Nothing found in the cache, scan until the end of the line (or until marker is found) while ((matchStart = state.src.indexOf('`', matchEnd)) !== -1) { @@ -20755,13 +20844,13 @@ module.exports = function backtick(state, silent) { return true; }; -},{}],146:[function(require,module,exports){ +},{}],148:[function(require,module,exports){ // For each opening emphasis-like marker find a matching closing one // 'use strict'; -function processDelimiters(state, delimiters) { +function processDelimiters(delimiters) { var closerIdx, openerIdx, closer, opener, minOpenerIdx, newMinOpenerIdx, isOddMatch, lastJump, openersBottom = {}, @@ -20878,16 +20967,16 @@ module.exports = function link_pairs(state) { tokens_meta = state.tokens_meta, max = state.tokens_meta.length; - processDelimiters(state, state.delimiters); + processDelimiters(state.delimiters); for (curr = 0; curr < max; curr++) { if (tokens_meta[curr] && tokens_meta[curr].delimiters) { - processDelimiters(state, tokens_meta[curr].delimiters); + processDelimiters(tokens_meta[curr].delimiters); } } }; -},{}],147:[function(require,module,exports){ +},{}],149:[function(require,module,exports){ // Process *this* and _that_ // 'use strict'; @@ -21019,7 +21108,7 @@ module.exports.postProcess = function emphasis(state) { } }; -},{}],148:[function(require,module,exports){ +},{}],150:[function(require,module,exports){ // Process html entity - {, ¯, ", ... 'use strict'; @@ -21076,7 +21165,7 @@ module.exports = function entity(state, silent) { return false; }; -},{"../common/entities":107,"../common/utils":110}],149:[function(require,module,exports){ +},{"../common/entities":109,"../common/utils":112}],151:[function(require,module,exports){ // Process escaped chars and hardbreaks 'use strict'; @@ -21149,7 +21238,7 @@ module.exports = function escape(state, silent) { return true; }; -},{"../common/utils":110}],150:[function(require,module,exports){ +},{"../common/utils":112}],152:[function(require,module,exports){ // Clean up tokens after emphasis and strikethrough postprocessing: // merge adjacent text nodes into one and re-calculate all token levels // @@ -21192,7 +21281,7 @@ module.exports = function fragments_join(state) { } }; -},{}],151:[function(require,module,exports){ +},{}],153:[function(require,module,exports){ // Process html tags 'use strict'; @@ -21243,7 +21332,7 @@ module.exports = function html_inline(state, silent) { if (!silent) { token = state.push('html_inline', '', 0); - token.content = state.src.slice(pos, pos + match[0].length); + token.content = match[0]; if (isLinkOpen(token.content)) state.linkLevel++; if (isLinkClose(token.content)) state.linkLevel--; @@ -21252,7 +21341,7 @@ module.exports = function html_inline(state, silent) { return true; }; -},{"../common/html_re":109}],152:[function(require,module,exports){ +},{"../common/html_re":111}],154:[function(require,module,exports){ // Process ![image]( "title") 'use strict'; @@ -21406,7 +21495,7 @@ module.exports = function image(state, silent) { return true; }; -},{"../common/utils":110}],153:[function(require,module,exports){ +},{"../common/utils":112}],155:[function(require,module,exports){ // Process [link]( "stuff") 'use strict'; @@ -21558,7 +21647,7 @@ module.exports = function link(state, silent) { return true; }; -},{"../common/utils":110}],154:[function(require,module,exports){ +},{"../common/utils":112}],156:[function(require,module,exports){ // Process links like https://example.org/ 'use strict'; @@ -21592,6 +21681,10 @@ module.exports = function linkify(state, silent) { url = link.url; + // invalid link, but still detected by linkify somehow; + // need to check to prevent infinite loop below + if (url.length <= proto.length) return false; + // disallow '*' at the end of the link (conflicts with emphasis) url = url.replace(/\*+$/, ''); @@ -21618,7 +21711,7 @@ module.exports = function linkify(state, silent) { return true; }; -},{}],155:[function(require,module,exports){ +},{}],157:[function(require,module,exports){ // Proceess '\n' 'use strict'; @@ -21666,7 +21759,7 @@ module.exports = function newline(state, silent) { return true; }; -},{"../common/utils":110}],156:[function(require,module,exports){ +},{"../common/utils":112}],158:[function(require,module,exports){ // Inline parser state 'use strict'; @@ -21826,7 +21919,7 @@ StateInline.prototype.Token = Token; module.exports = StateInline; -},{"../common/utils":110,"../token":159}],157:[function(require,module,exports){ +},{"../common/utils":112,"../token":161}],159:[function(require,module,exports){ // ~~strike through~~ // 'use strict'; @@ -21958,7 +22051,7 @@ module.exports.postProcess = function strikethrough(state) { } }; -},{}],158:[function(require,module,exports){ +},{}],160:[function(require,module,exports){ // Skip text characters for text token, place those to pending buffer // and increment current pos @@ -22049,7 +22142,7 @@ module.exports = function text(state, silent) { return true; };*/ -},{}],159:[function(require,module,exports){ +},{}],161:[function(require,module,exports){ // Token class 'use strict'; @@ -22252,7 +22345,7 @@ Token.prototype.attrJoin = function attrJoin(name, value) { module.exports = Token; -},{}],160:[function(require,module,exports){ +},{}],162:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -22448,7 +22541,7 @@ function AssistiveMmlHandler(handler) { } exports.AssistiveMmlHandler = AssistiveMmlHandler; -},{"../core/MathItem.js":176,"../core/MmlTree/SerializedMmlVisitor.js":214,"../util/Options.js":441}],161:[function(require,module,exports){ +},{"../core/MathItem.js":178,"../core/MmlTree/SerializedMmlVisitor.js":216,"../util/Options.js":443}],163:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -22555,7 +22648,7 @@ function NodeMixin(Base, options) { } exports.NodeMixin = NodeMixin; -},{"../util/Options.js":441}],162:[function(require,module,exports){ +},{"../util/Options.js":443}],164:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -23001,7 +23094,7 @@ function liteAdaptor(options) { } exports.liteAdaptor = liteAdaptor; -},{"../core/DOMAdaptor.js":170,"../util/Styles.js":445,"./NodeMixin.js":161,"./lite/Document.js":163,"./lite/Element.js":164,"./lite/Parser.js":166,"./lite/Text.js":167,"./lite/Window.js":168}],163:[function(require,module,exports){ +},{"../core/DOMAdaptor.js":172,"../util/Styles.js":447,"./NodeMixin.js":163,"./lite/Document.js":165,"./lite/Element.js":166,"./lite/Parser.js":168,"./lite/Text.js":169,"./lite/Window.js":170}],165:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.LiteDocument = void 0; @@ -23025,7 +23118,7 @@ var LiteDocument = (function () { }()); exports.LiteDocument = LiteDocument; -},{"./Element.js":164}],164:[function(require,module,exports){ +},{"./Element.js":166}],166:[function(require,module,exports){ "use strict"; var __assign = (this && this.__assign) || function () { __assign = Object.assign || function(t) { @@ -23103,7 +23196,7 @@ var LiteElement = (function () { }()); exports.LiteElement = LiteElement; -},{}],165:[function(require,module,exports){ +},{}],167:[function(require,module,exports){ "use strict"; var __read = (this && this.__read) || function (o, n) { var m = typeof Symbol === "function" && o[Symbol.iterator]; @@ -23154,7 +23247,7 @@ var LiteList = (function () { }()); exports.LiteList = LiteList; -},{}],166:[function(require,module,exports){ +},{}],168:[function(require,module,exports){ "use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; @@ -23481,7 +23574,7 @@ var LiteParser = (function () { }()); exports.LiteParser = LiteParser; -},{"../../util/Entities.js":438,"./Element.js":164,"./Text.js":167}],167:[function(require,module,exports){ +},{"../../util/Entities.js":440,"./Element.js":166,"./Text.js":169}],169:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -23531,7 +23624,7 @@ var LiteComment = (function (_super) { }(LiteText)); exports.LiteComment = LiteComment; -},{}],168:[function(require,module,exports){ +},{}],170:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.LiteWindow = void 0; @@ -23553,13 +23646,13 @@ var LiteWindow = (function () { }()); exports.LiteWindow = LiteWindow; -},{"./Document.js":163,"./Element.js":164,"./List.js":165,"./Parser.js":166}],169:[function(require,module,exports){ +},{"./Document.js":165,"./Element.js":166,"./List.js":167,"./Parser.js":168}],171:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.VERSION = void 0; exports.VERSION = '3.2.2'; -},{}],170:[function(require,module,exports){ +},{}],172:[function(require,module,exports){ "use strict"; var __values = (this && this.__values) || function(o) { var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; @@ -23665,7 +23758,7 @@ var AbstractDOMAdaptor = (function () { }()); exports.AbstractDOMAdaptor = AbstractDOMAdaptor; -},{}],171:[function(require,module,exports){ +},{}],173:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AbstractFindMath = void 0; @@ -23680,7 +23773,7 @@ var AbstractFindMath = (function () { }()); exports.AbstractFindMath = AbstractFindMath; -},{"../util/Options.js":441}],172:[function(require,module,exports){ +},{"../util/Options.js":443}],174:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -23732,7 +23825,7 @@ var AbstractHandler = (function () { }()); exports.AbstractHandler = AbstractHandler; -},{"./MathDocument.js":175}],173:[function(require,module,exports){ +},{"./MathDocument.js":177}],175:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -23802,7 +23895,7 @@ var HandlerList = (function (_super) { }(PrioritizedList_js_1.PrioritizedList)); exports.HandlerList = HandlerList; -},{"../util/PrioritizedList.js":442}],174:[function(require,module,exports){ +},{"../util/PrioritizedList.js":444}],176:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AbstractInputJax = void 0; @@ -23860,7 +23953,7 @@ var AbstractInputJax = (function () { }()); exports.AbstractInputJax = AbstractInputJax; -},{"../util/FunctionList.js":439,"../util/Options.js":441}],175:[function(require,module,exports){ +},{"../util/FunctionList.js":441,"../util/Options.js":443}],177:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -24467,7 +24560,7 @@ var AbstractMathDocument = (function () { }()); exports.AbstractMathDocument = AbstractMathDocument; -},{"../core/MmlTree/MmlFactory.js":180,"../util/BitField.js":437,"../util/Options.js":441,"../util/PrioritizedList.js":442,"./InputJax.js":174,"./MathItem.js":176,"./MathList.js":177,"./OutputJax.js":215}],176:[function(require,module,exports){ +},{"../core/MmlTree/MmlFactory.js":182,"../util/BitField.js":439,"../util/Options.js":443,"../util/PrioritizedList.js":444,"./InputJax.js":176,"./MathItem.js":178,"./MathList.js":179,"./OutputJax.js":217}],178:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.newState = exports.STATE = exports.AbstractMathItem = exports.protoItem = void 0; @@ -24588,7 +24681,7 @@ function newState(name, state) { } exports.newState = newState; -},{}],177:[function(require,module,exports){ +},{}],179:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -24620,7 +24713,7 @@ var AbstractMathList = (function (_super) { }(LinkedList_js_1.LinkedList)); exports.AbstractMathList = AbstractMathList; -},{"../util/LinkedList.js":440}],178:[function(require,module,exports){ +},{"../util/LinkedList.js":442}],180:[function(require,module,exports){ "use strict"; var __values = (this && this.__values) || function(o) { var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; @@ -24728,7 +24821,7 @@ var Attributes = (function () { }()); exports.Attributes = Attributes; -},{}],179:[function(require,module,exports){ +},{}],181:[function(require,module,exports){ "use strict"; var _a; Object.defineProperty(exports, "__esModule", { value: true }); @@ -24809,7 +24902,7 @@ exports.MML = (_a = {}, _a[MmlNode_js_1.XMLNode.prototype.kind] = MmlNode_js_1.XMLNode, _a); -},{"./MmlNode.js":181,"./MmlNodes/TeXAtom.js":182,"./MmlNodes/maction.js":183,"./MmlNodes/maligngroup.js":184,"./MmlNodes/malignmark.js":185,"./MmlNodes/math.js":186,"./MmlNodes/mathchoice.js":187,"./MmlNodes/menclose.js":188,"./MmlNodes/merror.js":189,"./MmlNodes/mfenced.js":190,"./MmlNodes/mfrac.js":191,"./MmlNodes/mglyph.js":192,"./MmlNodes/mi.js":193,"./MmlNodes/mmultiscripts.js":194,"./MmlNodes/mn.js":195,"./MmlNodes/mo.js":196,"./MmlNodes/mpadded.js":197,"./MmlNodes/mphantom.js":198,"./MmlNodes/mroot.js":199,"./MmlNodes/mrow.js":200,"./MmlNodes/ms.js":201,"./MmlNodes/mspace.js":202,"./MmlNodes/msqrt.js":203,"./MmlNodes/mstyle.js":204,"./MmlNodes/msubsup.js":205,"./MmlNodes/mtable.js":206,"./MmlNodes/mtd.js":207,"./MmlNodes/mtext.js":208,"./MmlNodes/mtr.js":209,"./MmlNodes/munderover.js":210,"./MmlNodes/semantics.js":211}],180:[function(require,module,exports){ +},{"./MmlNode.js":183,"./MmlNodes/TeXAtom.js":184,"./MmlNodes/maction.js":185,"./MmlNodes/maligngroup.js":186,"./MmlNodes/malignmark.js":187,"./MmlNodes/math.js":188,"./MmlNodes/mathchoice.js":189,"./MmlNodes/menclose.js":190,"./MmlNodes/merror.js":191,"./MmlNodes/mfenced.js":192,"./MmlNodes/mfrac.js":193,"./MmlNodes/mglyph.js":194,"./MmlNodes/mi.js":195,"./MmlNodes/mmultiscripts.js":196,"./MmlNodes/mn.js":197,"./MmlNodes/mo.js":198,"./MmlNodes/mpadded.js":199,"./MmlNodes/mphantom.js":200,"./MmlNodes/mroot.js":201,"./MmlNodes/mrow.js":202,"./MmlNodes/ms.js":203,"./MmlNodes/mspace.js":204,"./MmlNodes/msqrt.js":205,"./MmlNodes/mstyle.js":206,"./MmlNodes/msubsup.js":207,"./MmlNodes/mtable.js":208,"./MmlNodes/mtd.js":209,"./MmlNodes/mtext.js":210,"./MmlNodes/mtr.js":211,"./MmlNodes/munderover.js":212,"./MmlNodes/semantics.js":213}],182:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -24847,7 +24940,7 @@ var MmlFactory = (function (_super) { }(NodeFactory_js_1.AbstractNodeFactory)); exports.MmlFactory = MmlFactory; -},{"../Tree/NodeFactory.js":218,"./MML.js":179}],181:[function(require,module,exports){ +},{"../Tree/NodeFactory.js":220,"./MML.js":181}],183:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -25772,7 +25865,7 @@ var XMLNode = (function (_super) { }(AbstractMmlEmptyNode)); exports.XMLNode = XMLNode; -},{"../Tree/Node.js":217,"./Attributes.js":178}],182:[function(require,module,exports){ +},{"../Tree/Node.js":219,"./Attributes.js":180}],184:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -25846,7 +25939,7 @@ var TeXAtom = (function (_super) { exports.TeXAtom = TeXAtom; TeXAtom.prototype.adjustTeXclass = mo_js_1.MmlMo.prototype.adjustTeXclass; -},{"../MmlNode.js":181,"./mo.js":196}],183:[function(require,module,exports){ +},{"../MmlNode.js":183,"./mo.js":198}],185:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -25954,7 +26047,7 @@ var MmlMaction = (function (_super) { }(MmlNode_js_1.AbstractMmlNode)); exports.MmlMaction = MmlMaction; -},{"../MmlNode.js":181}],184:[function(require,module,exports){ +},{"../MmlNode.js":183}],186:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -26014,7 +26107,7 @@ var MmlMaligngroup = (function (_super) { }(MmlNode_js_1.AbstractMmlLayoutNode)); exports.MmlMaligngroup = MmlMaligngroup; -},{"../Attributes.js":178,"../MmlNode.js":181}],185:[function(require,module,exports){ +},{"../Attributes.js":180,"../MmlNode.js":183}],187:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -26076,7 +26169,7 @@ var MmlMalignmark = (function (_super) { }(MmlNode_js_1.AbstractMmlNode)); exports.MmlMalignmark = MmlMalignmark; -},{"../MmlNode.js":181}],186:[function(require,module,exports){ +},{"../MmlNode.js":183}],188:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -26143,7 +26236,7 @@ var MmlMath = (function (_super) { }(MmlNode_js_1.AbstractMmlLayoutNode)); exports.MmlMath = MmlMath; -},{"../MmlNode.js":181}],187:[function(require,module,exports){ +},{"../MmlNode.js":183}],189:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -26211,7 +26304,7 @@ var MathChoice = (function (_super) { }(MmlNode_js_1.AbstractMmlBaseNode)); exports.MathChoice = MathChoice; -},{"../MmlNode.js":181}],188:[function(require,module,exports){ +},{"../MmlNode.js":183}],190:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -26280,7 +26373,7 @@ var MmlMenclose = (function (_super) { }(MmlNode_js_1.AbstractMmlNode)); exports.MmlMenclose = MmlMenclose; -},{"../MmlNode.js":181}],189:[function(require,module,exports){ +},{"../MmlNode.js":183}],191:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -26344,7 +26437,7 @@ var MmlMerror = (function (_super) { }(MmlNode_js_1.AbstractMmlNode)); exports.MmlMerror = MmlMerror; -},{"../MmlNode.js":181}],190:[function(require,module,exports){ +},{"../MmlNode.js":183}],192:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -26493,7 +26586,7 @@ var MmlMfenced = (function (_super) { }(MmlNode_js_1.AbstractMmlNode)); exports.MmlMfenced = MmlMfenced; -},{"../MmlNode.js":181}],191:[function(require,module,exports){ +},{"../MmlNode.js":183}],193:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -26591,7 +26684,7 @@ var MmlMfrac = (function (_super) { }(MmlNode_js_1.AbstractMmlBaseNode)); exports.MmlMfrac = MmlMfrac; -},{"../MmlNode.js":181}],192:[function(require,module,exports){ +},{"../MmlNode.js":183}],194:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -26650,7 +26743,7 @@ var MmlMglyph = (function (_super) { }(MmlNode_js_1.AbstractMmlTokenNode)); exports.MmlMglyph = MmlMglyph; -},{"../MmlNode.js":181}],193:[function(require,module,exports){ +},{"../MmlNode.js":183}],195:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -26725,7 +26818,7 @@ var MmlMi = (function (_super) { }(MmlNode_js_1.AbstractMmlTokenNode)); exports.MmlMi = MmlMi; -},{"../MmlNode.js":181}],194:[function(require,module,exports){ +},{"../MmlNode.js":183}],196:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -26888,7 +26981,7 @@ var MmlNone = (function (_super) { }(MmlNode_js_1.AbstractMmlNode)); exports.MmlNone = MmlNone; -},{"../MmlNode.js":181,"./msubsup.js":205}],195:[function(require,module,exports){ +},{"../MmlNode.js":183,"./msubsup.js":207}],197:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -26938,7 +27031,7 @@ var MmlMn = (function (_super) { }(MmlNode_js_1.AbstractMmlTokenNode)); exports.MmlMn = MmlMn; -},{"../MmlNode.js":181}],196:[function(require,module,exports){ +},{"../MmlNode.js":183}],198:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -27322,7 +27415,7 @@ var MmlMo = (function (_super) { }(MmlNode_js_1.AbstractMmlTokenNode)); exports.MmlMo = MmlMo; -},{"../../../util/string.js":448,"../MmlNode.js":181,"../OperatorDictionary.js":213}],197:[function(require,module,exports){ +},{"../../../util/string.js":450,"../MmlNode.js":183,"../OperatorDictionary.js":215}],199:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -27370,7 +27463,7 @@ var MmlMpadded = (function (_super) { }(MmlNode_js_1.AbstractMmlLayoutNode)); exports.MmlMpadded = MmlMpadded; -},{"../MmlNode.js":181}],198:[function(require,module,exports){ +},{"../MmlNode.js":183}],200:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -27420,7 +27513,7 @@ var MmlMphantom = (function (_super) { }(MmlNode_js_1.AbstractMmlLayoutNode)); exports.MmlMphantom = MmlMphantom; -},{"../MmlNode.js":181}],199:[function(require,module,exports){ +},{"../MmlNode.js":183}],201:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -27487,7 +27580,7 @@ var MmlMroot = (function (_super) { }(MmlNode_js_1.AbstractMmlNode)); exports.MmlMroot = MmlMroot; -},{"../MmlNode.js":181}],200:[function(require,module,exports){ +},{"../MmlNode.js":183}],202:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -27742,7 +27835,7 @@ var MmlInferredMrow = (function (_super) { }(MmlMrow)); exports.MmlInferredMrow = MmlInferredMrow; -},{"../MmlNode.js":181}],201:[function(require,module,exports){ +},{"../MmlNode.js":183}],203:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -27792,7 +27885,7 @@ var MmlMs = (function (_super) { }(MmlNode_js_1.AbstractMmlTokenNode)); exports.MmlMs = MmlMs; -},{"../MmlNode.js":181}],202:[function(require,module,exports){ +},{"../MmlNode.js":183}],204:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -27868,7 +27961,7 @@ var MmlMspace = (function (_super) { }(MmlNode_js_1.AbstractMmlTokenNode)); exports.MmlMspace = MmlMspace; -},{"../MmlNode.js":181}],203:[function(require,module,exports){ +},{"../MmlNode.js":183}],205:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -27940,7 +28033,7 @@ var MmlMsqrt = (function (_super) { }(MmlNode_js_1.AbstractMmlNode)); exports.MmlMsqrt = MmlMsqrt; -},{"../MmlNode.js":181}],204:[function(require,module,exports){ +},{"../MmlNode.js":183}],206:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -28020,7 +28113,7 @@ var MmlMstyle = (function (_super) { }(MmlNode_js_1.AbstractMmlLayoutNode)); exports.MmlMstyle = MmlMstyle; -},{"../Attributes.js":178,"../MmlNode.js":181}],205:[function(require,module,exports){ +},{"../Attributes.js":180,"../MmlNode.js":183}],207:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -28165,7 +28258,7 @@ var MmlMsup = (function (_super) { }(MmlMsubsup)); exports.MmlMsup = MmlMsup; -},{"../MmlNode.js":181}],206:[function(require,module,exports){ +},{"../MmlNode.js":183}],208:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -28347,7 +28440,7 @@ var MmlMtable = (function (_super) { }(MmlNode_js_1.AbstractMmlNode)); exports.MmlMtable = MmlMtable; -},{"../../../util/string.js":448,"../MmlNode.js":181}],207:[function(require,module,exports){ +},{"../../../util/string.js":450,"../MmlNode.js":183}],209:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -28422,7 +28515,7 @@ var MmlMtd = (function (_super) { }(MmlNode_js_1.AbstractMmlBaseNode)); exports.MmlMtd = MmlMtd; -},{"../Attributes.js":178,"../MmlNode.js":181}],208:[function(require,module,exports){ +},{"../Attributes.js":180,"../MmlNode.js":183}],210:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -28479,7 +28572,7 @@ var MmlMtext = (function (_super) { }(MmlNode_js_1.AbstractMmlTokenNode)); exports.MmlMtext = MmlMtext; -},{"../MmlNode.js":181}],209:[function(require,module,exports){ +},{"../MmlNode.js":183}],211:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -28655,7 +28748,7 @@ var MmlMlabeledtr = (function (_super) { }(MmlMtr)); exports.MmlMlabeledtr = MmlMlabeledtr; -},{"../../../util/string.js":448,"../Attributes.js":178,"../MmlNode.js":181}],210:[function(require,module,exports){ +},{"../../../util/string.js":450,"../Attributes.js":180,"../MmlNode.js":183}],212:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -28829,7 +28922,7 @@ var MmlMover = (function (_super) { }(MmlMunderover)); exports.MmlMover = MmlMover; -},{"../MmlNode.js":181}],211:[function(require,module,exports){ +},{"../MmlNode.js":183}],213:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -28928,7 +29021,7 @@ var MmlAnnotation = (function (_super) { }(MmlAnnotationXML)); exports.MmlAnnotation = MmlAnnotation; -},{"../MmlNode.js":181}],212:[function(require,module,exports){ +},{"../MmlNode.js":183}],214:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -28974,7 +29067,7 @@ var MmlVisitor = (function (_super) { }(Visitor_js_1.AbstractVisitor)); exports.MmlVisitor = MmlVisitor; -},{"../Tree/Visitor.js":219,"./MmlFactory.js":180}],213:[function(require,module,exports){ +},{"../Tree/Visitor.js":221,"./MmlFactory.js":182}],215:[function(require,module,exports){ "use strict"; var __values = (this && this.__values) || function(o) { var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; @@ -30273,7 +30366,7 @@ exports.OPTABLE.infix['^'] = exports.MO.WIDEREL; exports.OPTABLE.infix['_'] = exports.MO.WIDEREL; exports.OPTABLE.infix['\u2ADC'] = exports.MO.REL; -},{"./MmlNode.js":181}],214:[function(require,module,exports){ +},{"./MmlNode.js":183}],216:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -30471,7 +30564,7 @@ var SerializedMmlVisitor = (function (_super) { }(MmlVisitor_js_1.MmlVisitor)); exports.SerializedMmlVisitor = SerializedMmlVisitor; -},{"./MmlNode.js":181,"./MmlNodes/mi.js":193,"./MmlVisitor.js":212}],215:[function(require,module,exports){ +},{"./MmlNode.js":183,"./MmlNodes/mi.js":195,"./MmlVisitor.js":214}],217:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AbstractOutputJax = void 0; @@ -30522,7 +30615,7 @@ var AbstractOutputJax = (function () { }()); exports.AbstractOutputJax = AbstractOutputJax; -},{"../util/FunctionList.js":439,"../util/Options.js":441}],216:[function(require,module,exports){ +},{"../util/FunctionList.js":441,"../util/Options.js":443}],218:[function(require,module,exports){ "use strict"; var __values = (this && this.__values) || function(o) { var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; @@ -30623,7 +30716,7 @@ var AbstractFactory = (function () { }()); exports.AbstractFactory = AbstractFactory; -},{}],217:[function(require,module,exports){ +},{}],219:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -30858,7 +30951,7 @@ var AbstractEmptyNode = (function (_super) { }(AbstractNode)); exports.AbstractEmptyNode = AbstractEmptyNode; -},{}],218:[function(require,module,exports){ +},{}],220:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -30892,7 +30985,7 @@ var AbstractNodeFactory = (function (_super) { }(Factory_js_1.AbstractFactory)); exports.AbstractNodeFactory = AbstractNodeFactory; -},{"./Factory.js":216}],219:[function(require,module,exports){ +},{"./Factory.js":218}],221:[function(require,module,exports){ "use strict"; var __values = (this && this.__values) || function(o) { var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; @@ -31004,7 +31097,7 @@ var AbstractVisitor = (function () { }()); exports.AbstractVisitor = AbstractVisitor; -},{"./Node.js":217}],220:[function(require,module,exports){ +},{"./Node.js":219}],222:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AbstractWrapper = void 0; @@ -31027,7 +31120,7 @@ var AbstractWrapper = (function () { }()); exports.AbstractWrapper = AbstractWrapper; -},{}],221:[function(require,module,exports){ +},{}],223:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -31088,7 +31181,7 @@ var AbstractWrapperFactory = (function (_super) { }(Factory_js_1.AbstractFactory)); exports.AbstractWrapperFactory = AbstractWrapperFactory; -},{"./Factory.js":216}],222:[function(require,module,exports){ +},{"./Factory.js":218}],224:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.RegisterHTMLHandler = void 0; @@ -31101,7 +31194,7 @@ function RegisterHTMLHandler(adaptor) { } exports.RegisterHTMLHandler = RegisterHTMLHandler; -},{"../mathjax.js":317,"./html/HTMLHandler.js":225}],223:[function(require,module,exports){ +},{"../mathjax.js":319,"./html/HTMLHandler.js":227}],225:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -31365,7 +31458,7 @@ var HTMLDocument = (function (_super) { }(MathDocument_js_1.AbstractMathDocument)); exports.HTMLDocument = HTMLDocument; -},{"../../core/MathDocument.js":175,"../../core/MathItem.js":176,"../../util/Options.js":441,"./HTMLDomStrings.js":224,"./HTMLMathItem.js":226,"./HTMLMathList.js":227}],224:[function(require,module,exports){ +},{"../../core/MathDocument.js":177,"../../core/MathItem.js":178,"../../util/Options.js":443,"./HTMLDomStrings.js":226,"./HTMLMathItem.js":228,"./HTMLMathList.js":229}],226:[function(require,module,exports){ "use strict"; var __read = (this && this.__read) || function (o, n) { var m = typeof Symbol === "function" && o[Symbol.iterator]; @@ -31497,7 +31590,7 @@ var HTMLDomStrings = (function () { }()); exports.HTMLDomStrings = HTMLDomStrings; -},{"../../util/Options.js":441}],225:[function(require,module,exports){ +},{"../../util/Options.js":443}],227:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -31557,7 +31650,7 @@ var HTMLHandler = (function (_super) { }(Handler_js_1.AbstractHandler)); exports.HTMLHandler = HTMLHandler; -},{"../../core/Handler.js":172,"./HTMLDocument.js":223}],226:[function(require,module,exports){ +},{"../../core/Handler.js":174,"./HTMLDocument.js":225}],228:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -31659,7 +31752,7 @@ var HTMLMathItem = (function (_super) { }(MathItem_js_1.AbstractMathItem)); exports.HTMLMathItem = HTMLMathItem; -},{"../../core/MathItem.js":176}],227:[function(require,module,exports){ +},{"../../core/MathItem.js":178}],229:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -31688,7 +31781,7 @@ var HTMLMathList = (function (_super) { }(MathList_js_1.AbstractMathList)); exports.HTMLMathList = HTMLMathList; -},{"../../core/MathList.js":177}],228:[function(require,module,exports){ +},{"../../core/MathList.js":179}],230:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -31843,7 +31936,7 @@ var TeX = (function (_super) { }(InputJax_js_1.AbstractInputJax)); exports.TeX = TeX; -},{"../core/InputJax.js":174,"../util/Options.js":441,"./tex/Configuration.js":230,"./tex/FilterUtil.js":231,"./tex/FindTeX.js":232,"./tex/NodeUtil.js":235,"./tex/ParseOptions.js":237,"./tex/Tags.js":244,"./tex/TexError.js":246,"./tex/TexParser.js":247,"./tex/base/BaseConfiguration.js":256}],229:[function(require,module,exports){ +},{"../core/InputJax.js":176,"../util/Options.js":443,"./tex/Configuration.js":232,"./tex/FilterUtil.js":233,"./tex/FindTeX.js":234,"./tex/NodeUtil.js":237,"./tex/ParseOptions.js":239,"./tex/Tags.js":246,"./tex/TexError.js":248,"./tex/TexParser.js":249,"./tex/base/BaseConfiguration.js":258}],231:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AllPackages = void 0; @@ -31916,7 +32009,7 @@ exports.AllPackages = [ 'textmacros' ]; -},{"./action/ActionConfiguration.js":248,"./ams/AmsConfiguration.js":249,"./amscd/AmsCdConfiguration.js":253,"./base/BaseConfiguration.js":256,"./bbox/BboxConfiguration.js":260,"./boldsymbol/BoldsymbolConfiguration.js":261,"./braket/BraketConfiguration.js":262,"./bussproofs/BussproofsConfiguration.js":266,"./cancel/CancelConfiguration.js":271,"./cases/CasesConfiguration.js":272,"./centernot/CenternotConfiguration.js":273,"./color/ColorConfiguration.js":274,"./colortbl/ColortblConfiguration.js":278,"./colorv2/ColorV2Configuration.js":279,"./configmacros/ConfigMacrosConfiguration.js":280,"./empheq/EmpheqConfiguration.js":281,"./enclose/EncloseConfiguration.js":283,"./extpfeil/ExtpfeilConfiguration.js":284,"./gensymb/GensymbConfiguration.js":285,"./html/HtmlConfiguration.js":286,"./mathtools/MathtoolsConfiguration.js":288,"./mhchem/MhchemConfiguration.js":294,"./newcommand/NewcommandConfiguration.js":295,"./noerrors/NoErrorsConfiguration.js":300,"./noundefined/NoUndefinedConfiguration.js":301,"./physics/PhysicsConfiguration.js":302,"./setoptions/SetOptionsConfiguration.js":306,"./tagformat/TagFormatConfiguration.js":307,"./textcomp/TextcompConfiguration.js":308,"./textmacros/TextMacrosConfiguration.js":310,"./unicode/UnicodeConfiguration.js":314,"./upgreek/UpgreekConfiguration.js":315,"./verb/VerbConfiguration.js":316}],230:[function(require,module,exports){ +},{"./action/ActionConfiguration.js":250,"./ams/AmsConfiguration.js":251,"./amscd/AmsCdConfiguration.js":255,"./base/BaseConfiguration.js":258,"./bbox/BboxConfiguration.js":262,"./boldsymbol/BoldsymbolConfiguration.js":263,"./braket/BraketConfiguration.js":264,"./bussproofs/BussproofsConfiguration.js":268,"./cancel/CancelConfiguration.js":273,"./cases/CasesConfiguration.js":274,"./centernot/CenternotConfiguration.js":275,"./color/ColorConfiguration.js":276,"./colortbl/ColortblConfiguration.js":280,"./colorv2/ColorV2Configuration.js":281,"./configmacros/ConfigMacrosConfiguration.js":282,"./empheq/EmpheqConfiguration.js":283,"./enclose/EncloseConfiguration.js":285,"./extpfeil/ExtpfeilConfiguration.js":286,"./gensymb/GensymbConfiguration.js":287,"./html/HtmlConfiguration.js":288,"./mathtools/MathtoolsConfiguration.js":290,"./mhchem/MhchemConfiguration.js":296,"./newcommand/NewcommandConfiguration.js":297,"./noerrors/NoErrorsConfiguration.js":302,"./noundefined/NoUndefinedConfiguration.js":303,"./physics/PhysicsConfiguration.js":304,"./setoptions/SetOptionsConfiguration.js":308,"./tagformat/TagFormatConfiguration.js":309,"./textcomp/TextcompConfiguration.js":310,"./textmacros/TextMacrosConfiguration.js":312,"./unicode/UnicodeConfiguration.js":316,"./upgreek/UpgreekConfiguration.js":317,"./verb/VerbConfiguration.js":318}],232:[function(require,module,exports){ "use strict"; var __values = (this && this.__values) || function(o) { var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; @@ -32183,7 +32276,7 @@ var ParserConfiguration = (function () { }()); exports.ParserConfiguration = ParserConfiguration; -},{"../../util/FunctionList.js":439,"../../util/Options.js":441,"../../util/PrioritizedList.js":442,"./MapHandler.js":233,"./Tags.js":244}],231:[function(require,module,exports){ +},{"../../util/FunctionList.js":441,"../../util/Options.js":443,"../../util/PrioritizedList.js":444,"./MapHandler.js":235,"./Tags.js":246}],233:[function(require,module,exports){ "use strict"; var __values = (this && this.__values) || function(o) { var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; @@ -32453,7 +32546,7 @@ var FilterUtil; })(FilterUtil || (FilterUtil = {})); exports.default = FilterUtil; -},{"../../core/MmlTree/MmlNode.js":181,"./NodeUtil.js":235}],232:[function(require,module,exports){ +},{"../../core/MmlTree/MmlNode.js":183,"./NodeUtil.js":237}],234:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -32609,7 +32702,7 @@ var FindTeX = (function (_super) { }(FindMath_js_1.AbstractFindMath)); exports.FindTeX = FindTeX; -},{"../../core/FindMath.js":171,"../../core/MathItem.js":176,"../../util/string.js":448}],233:[function(require,module,exports){ +},{"../../core/FindMath.js":173,"../../core/MathItem.js":178,"../../util/string.js":450}],235:[function(require,module,exports){ "use strict"; var __values = (this && this.__values) || function(o) { var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; @@ -32832,7 +32925,7 @@ var SubHandlers = (function () { }()); exports.SubHandlers = SubHandlers; -},{"../../util/FunctionList.js":439,"../../util/PrioritizedList.js":442}],234:[function(require,module,exports){ +},{"../../util/FunctionList.js":441,"../../util/PrioritizedList.js":444}],236:[function(require,module,exports){ "use strict"; var __read = (this && this.__read) || function (o, n) { var m = typeof Symbol === "function" && o[Symbol.iterator]; @@ -32933,7 +33026,7 @@ var NodeFactory = (function () { }()); exports.NodeFactory = NodeFactory; -},{"./NodeUtil.js":235}],235:[function(require,module,exports){ +},{"./NodeUtil.js":237}],237:[function(require,module,exports){ "use strict"; var __values = (this && this.__values) || function(o) { var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; @@ -33154,7 +33247,7 @@ var NodeUtil; })(NodeUtil || (NodeUtil = {})); exports.default = NodeUtil; -},{"../../core/MmlTree/MmlNode.js":181,"../../core/MmlTree/MmlNodes/mo.js":196}],236:[function(require,module,exports){ +},{"../../core/MmlTree/MmlNode.js":183,"../../core/MmlTree/MmlNodes/mo.js":198}],238:[function(require,module,exports){ "use strict"; var __read = (this && this.__read) || function (o, n) { var m = typeof Symbol === "function" && o[Symbol.iterator]; @@ -33265,7 +33358,7 @@ var ParseMethods; })(ParseMethods || (ParseMethods = {})); exports.default = ParseMethods; -},{"./NodeUtil.js":235,"./ParseUtil.js":238,"./TexConstants.js":245}],237:[function(require,module,exports){ +},{"./NodeUtil.js":237,"./ParseUtil.js":240,"./TexConstants.js":247}],239:[function(require,module,exports){ "use strict"; var __read = (this && this.__read) || function (o, n) { var m = typeof Symbol === "function" && o[Symbol.iterator]; @@ -33413,7 +33506,7 @@ var ParseOptions = (function () { }()); exports.default = ParseOptions; -},{"../../util/Options.js":441,"./NodeFactory.js":234,"./NodeUtil.js":235,"./StackItemFactory.js":241}],238:[function(require,module,exports){ +},{"../../util/Options.js":443,"./NodeFactory.js":236,"./NodeUtil.js":237,"./StackItemFactory.js":243}],240:[function(require,module,exports){ "use strict"; var __read = (this && this.__read) || function (o, n) { var m = typeof Symbol === "function" && o[Symbol.iterator]; @@ -33927,7 +34020,7 @@ var ParseUtil; })(ParseUtil || (ParseUtil = {})); exports.default = ParseUtil; -},{"../../core/MmlTree/MmlNode.js":181,"../../util/Entities.js":438,"./NodeUtil.js":235,"./TexError.js":246,"./TexParser.js":247}],239:[function(require,module,exports){ +},{"../../core/MmlTree/MmlNode.js":183,"../../util/Entities.js":440,"./NodeUtil.js":237,"./TexError.js":248,"./TexParser.js":249}],241:[function(require,module,exports){ "use strict"; var __values = (this && this.__values) || function(o) { var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; @@ -34060,7 +34153,7 @@ var Stack = (function () { }()); exports.default = Stack; -},{"./NodeUtil.js":235}],240:[function(require,module,exports){ +},{"./NodeUtil.js":237}],242:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -34325,7 +34418,7 @@ var BaseItem = (function (_super) { }(MmlStack)); exports.BaseItem = BaseItem; -},{"./TexError.js":246}],241:[function(require,module,exports){ +},{"./TexError.js":248}],243:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -34368,7 +34461,7 @@ var StackItemFactory = (function (_super) { }(Factory_js_1.AbstractFactory)); exports.default = StackItemFactory; -},{"../../core/Tree/Factory.js":216,"./StackItem.js":240}],242:[function(require,module,exports){ +},{"../../core/Tree/Factory.js":218,"./StackItem.js":242}],244:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Macro = exports.Symbol = void 0; @@ -34434,7 +34527,7 @@ var Macro = (function () { }()); exports.Macro = Macro; -},{}],243:[function(require,module,exports){ +},{}],245:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -34686,7 +34779,7 @@ var EnvironmentMap = (function (_super) { }(MacroMap)); exports.EnvironmentMap = EnvironmentMap; -},{"./MapHandler.js":233,"./Symbol.js":242}],244:[function(require,module,exports){ +},{"./MapHandler.js":235,"./Symbol.js":244}],246:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -35001,7 +35094,7 @@ var TagsFactory; }; })(TagsFactory = exports.TagsFactory || (exports.TagsFactory = {})); -},{"./TexParser.js":247}],245:[function(require,module,exports){ +},{"./TexParser.js":249}],247:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.TexConstant = void 0; @@ -35135,7 +35228,7 @@ var TexConstant; }; })(TexConstant = exports.TexConstant || (exports.TexConstant = {})); -},{}],246:[function(require,module,exports){ +},{}],248:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var TexError = (function () { @@ -35183,7 +35276,7 @@ var TexError = (function () { }()); exports.default = TexError; -},{}],247:[function(require,module,exports){ +},{}],249:[function(require,module,exports){ "use strict"; var __values = (this && this.__values) || function(o) { var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; @@ -35554,7 +35647,7 @@ var TexParser = (function () { }()); exports.default = TexParser; -},{"../../core/MmlTree/MmlNode.js":181,"./ParseUtil.js":238,"./Stack.js":239,"./TexError.js":246}],248:[function(require,module,exports){ +},{"../../core/MmlTree/MmlNode.js":183,"./ParseUtil.js":240,"./Stack.js":241,"./TexError.js":248}],250:[function(require,module,exports){ "use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; @@ -35587,7 +35680,7 @@ new SymbolMap_js_1.CommandMap('action-macros', { }, exports.ActionMethods); exports.ActionConfiguration = Configuration_js_1.Configuration.create('action', { handler: { macro: ['action-macros'] } }); -},{"../Configuration.js":230,"../SymbolMap.js":243,"../TexParser.js":247,"../base/BaseMethods.js":259}],249:[function(require,module,exports){ +},{"../Configuration.js":232,"../SymbolMap.js":245,"../TexParser.js":249,"../base/BaseMethods.js":261}],251:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -35656,7 +35749,7 @@ exports.AmsConfiguration = Configuration_js_1.Configuration.create('ams', { } }); -},{"../Configuration.js":230,"../SymbolMap.js":243,"../Tags.js":244,"./AmsItems.js":250,"./AmsMappings.js":251,"./AmsMethods.js":252}],250:[function(require,module,exports){ +},{"../Configuration.js":232,"../SymbolMap.js":245,"../Tags.js":246,"./AmsItems.js":252,"./AmsMappings.js":253,"./AmsMethods.js":254}],252:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -35828,7 +35921,7 @@ var FlalignItem = (function (_super) { }(BaseItems_js_1.EqnArrayItem)); exports.FlalignItem = FlalignItem; -},{"../NodeUtil.js":235,"../ParseUtil.js":238,"../TexConstants.js":245,"../TexError.js":246,"../base/BaseItems.js":257}],251:[function(require,module,exports){ +},{"../NodeUtil.js":237,"../ParseUtil.js":240,"../TexConstants.js":247,"../TexError.js":248,"../base/BaseItems.js":259}],253:[function(require,module,exports){ "use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; @@ -36196,7 +36289,7 @@ new sm.CommandMap('AMSsymbols-macros', { impliedby: ['Macro', '\\;\\Longleftarrow\\;'] }, AmsMethods_js_1.AmsMethods); -},{"../../../core/MmlTree/MmlNode.js":181,"../../../util/lengths.js":446,"../ParseMethods.js":236,"../ParseUtil.js":238,"../SymbolMap.js":243,"../TexConstants.js":245,"./AmsMethods.js":252}],252:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNode.js":183,"../../../util/lengths.js":448,"../ParseMethods.js":238,"../ParseUtil.js":240,"../SymbolMap.js":245,"../TexConstants.js":247,"./AmsMethods.js":254}],254:[function(require,module,exports){ "use strict"; var __assign = (this && this.__assign) || function () { __assign = Object.assign || function(t) { @@ -36538,7 +36631,7 @@ exports.AmsMethods.NamedOp = BaseMethods_js_1.default.NamedOp; exports.AmsMethods.EqnArray = BaseMethods_js_1.default.EqnArray; exports.AmsMethods.Equation = BaseMethods_js_1.default.Equation; -},{"../../../core/MmlTree/MmlNode.js":181,"../NodeUtil.js":235,"../ParseMethods.js":236,"../ParseUtil.js":238,"../Symbol.js":242,"../TexConstants.js":245,"../TexError.js":246,"../TexParser.js":247,"../base/BaseMethods.js":259}],253:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNode.js":183,"../NodeUtil.js":237,"../ParseMethods.js":238,"../ParseUtil.js":240,"../Symbol.js":244,"../TexConstants.js":247,"../TexError.js":248,"../TexParser.js":249,"../base/BaseMethods.js":261}],255:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AmsCdConfiguration = void 0; @@ -36561,7 +36654,7 @@ exports.AmsCdConfiguration = Configuration_js_1.Configuration.create('amscd', { } }); -},{"../Configuration.js":230,"./AmsCdMappings.js":254}],254:[function(require,module,exports){ +},{"../Configuration.js":232,"./AmsCdMappings.js":256}],256:[function(require,module,exports){ "use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; @@ -36600,7 +36693,7 @@ new sm.CommandMap('amscd_macros', { }, AmsCdMethods_js_1.default); new sm.MacroMap('amscd_special', { '@': 'arrow' }, AmsCdMethods_js_1.default); -},{"../ParseMethods.js":236,"../SymbolMap.js":243,"./AmsCdMethods.js":255}],255:[function(require,module,exports){ +},{"../ParseMethods.js":238,"../SymbolMap.js":245,"./AmsCdMethods.js":257}],257:[function(require,module,exports){ "use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; @@ -36723,7 +36816,7 @@ AmsCdMethods.minCDarrowheight = function (parser, name) { }; exports.default = AmsCdMethods; -},{"../../../core/MmlTree/MmlNode.js":181,"../NodeUtil.js":235,"../TexParser.js":247,"../base/BaseConfiguration.js":256}],256:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNode.js":183,"../NodeUtil.js":237,"../TexParser.js":249,"../base/BaseConfiguration.js":258}],258:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -36903,7 +36996,7 @@ exports.BaseConfiguration = Configuration_js_1.Configuration.create('base', { postprocessors: [[filterNonscript, -4]] }); -},{"../../../core/MmlTree/OperatorDictionary.js":213,"../Configuration.js":230,"../MapHandler.js":233,"../NodeUtil.js":235,"../SymbolMap.js":243,"../Tags.js":244,"../TexError.js":246,"./BaseItems.js":257,"./BaseMappings.js":258}],257:[function(require,module,exports){ +},{"../../../core/MmlTree/OperatorDictionary.js":215,"../Configuration.js":232,"../MapHandler.js":235,"../NodeUtil.js":237,"../SymbolMap.js":245,"../Tags.js":246,"../TexError.js":248,"./BaseItems.js":259,"./BaseMappings.js":260}],259:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -37857,7 +37950,7 @@ var EquationItem = (function (_super) { }(StackItem_js_1.BaseItem)); exports.EquationItem = EquationItem; -},{"../../../core/MmlTree/MmlNode.js":181,"../../../util/Entities.js":438,"../MapHandler.js":233,"../NodeUtil.js":235,"../ParseUtil.js":238,"../StackItem.js":240,"../TexError.js":246}],258:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNode.js":183,"../../../util/Entities.js":440,"../MapHandler.js":235,"../NodeUtil.js":237,"../ParseUtil.js":240,"../StackItem.js":242,"../TexError.js":248}],260:[function(require,module,exports){ "use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; @@ -38510,7 +38603,7 @@ new sm.CharacterMap('not_remap', null, { '\u2203': '\u2204' }); -},{"../../../core/MmlTree/MmlNode.js":181,"../../../util/lengths.js":446,"../ParseMethods.js":236,"../ParseUtil.js":238,"../SymbolMap.js":243,"../TexConstants.js":245,"./BaseMethods.js":259}],259:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNode.js":183,"../../../util/lengths.js":448,"../ParseMethods.js":238,"../ParseUtil.js":240,"../SymbolMap.js":245,"../TexConstants.js":247,"./BaseMethods.js":261}],261:[function(require,module,exports){ "use strict"; var __assign = (this && this.__assign) || function () { __assign = Object.assign || function(t) { @@ -39471,7 +39564,7 @@ BaseMethods.MathChoice = function (parser, name) { }; exports.default = BaseMethods; -},{"../../../core/MmlTree/MmlNode.js":181,"../../../util/Entities.js":438,"../../../util/Options.js":441,"../../../util/lengths.js":446,"../NodeUtil.js":235,"../ParseUtil.js":238,"../Tags.js":244,"../TexConstants.js":245,"../TexError.js":246,"../TexParser.js":247,"./BaseItems.js":257}],260:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNode.js":183,"../../../util/Entities.js":440,"../../../util/Options.js":443,"../../../util/lengths.js":448,"../NodeUtil.js":237,"../ParseUtil.js":240,"../Tags.js":246,"../TexConstants.js":247,"../TexError.js":248,"../TexParser.js":249,"./BaseItems.js":259}],262:[function(require,module,exports){ "use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; @@ -39544,7 +39637,7 @@ var BBoxPadding = function (pad) { new SymbolMap_js_1.CommandMap('bbox', { bbox: 'BBox' }, exports.BboxMethods); exports.BboxConfiguration = Configuration_js_1.Configuration.create('bbox', { handler: { macro: ['bbox'] } }); -},{"../Configuration.js":230,"../SymbolMap.js":243,"../TexError.js":246}],261:[function(require,module,exports){ +},{"../Configuration.js":232,"../SymbolMap.js":245,"../TexError.js":248}],263:[function(require,module,exports){ "use strict"; var __values = (this && this.__values) || function(o) { var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; @@ -39627,7 +39720,7 @@ exports.BoldsymbolConfiguration = Configuration_js_1.Configuration.create('bolds postprocessors: [rewriteBoldTokens] }); -},{"../Configuration.js":230,"../NodeFactory.js":234,"../NodeUtil.js":235,"../SymbolMap.js":243,"../TexConstants.js":245}],262:[function(require,module,exports){ +},{"../Configuration.js":232,"../NodeFactory.js":236,"../NodeUtil.js":237,"../SymbolMap.js":245,"../TexConstants.js":247}],264:[function(require,module,exports){ "use strict"; var _a; Object.defineProperty(exports, "__esModule", { value: true }); @@ -39645,7 +39738,7 @@ exports.BraketConfiguration = Configuration_js_1.Configuration.create('braket', _a) }); -},{"../Configuration.js":230,"./BraketItems.js":263,"./BraketMappings.js":264}],263:[function(require,module,exports){ +},{"../Configuration.js":232,"./BraketItems.js":265,"./BraketMappings.js":266}],265:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -39720,7 +39813,7 @@ var BraketItem = (function (_super) { }(StackItem_js_1.BaseItem)); exports.BraketItem = BraketItem; -},{"../../../core/MmlTree/MmlNode.js":181,"../ParseUtil.js":238,"../StackItem.js":240}],264:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNode.js":183,"../ParseUtil.js":240,"../StackItem.js":242}],266:[function(require,module,exports){ "use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; @@ -39745,7 +39838,7 @@ new SymbolMap_js_1.MacroMap('Braket-characters', { '|': 'Bar' }, BraketMethods_js_1.default); -},{"../SymbolMap.js":243,"./BraketMethods.js":265}],265:[function(require,module,exports){ +},{"../SymbolMap.js":245,"./BraketMethods.js":267}],267:[function(require,module,exports){ "use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; @@ -39799,7 +39892,7 @@ BraketMethods.Bar = function (parser, name) { }; exports.default = BraketMethods; -},{"../../../core/MmlTree/MmlNode.js":181,"../TexError.js":246,"../base/BaseMethods.js":259}],266:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNode.js":183,"../TexError.js":248,"../base/BaseMethods.js":261}],268:[function(require,module,exports){ "use strict"; var _a; Object.defineProperty(exports, "__esModule", { value: true }); @@ -39826,7 +39919,7 @@ exports.BussproofsConfiguration = Configuration_js_1.Configuration.create('bussp ] }); -},{"../Configuration.js":230,"./BussproofsItems.js":267,"./BussproofsMappings.js":268,"./BussproofsUtil.js":270}],267:[function(require,module,exports){ +},{"../Configuration.js":232,"./BussproofsItems.js":269,"./BussproofsMappings.js":270,"./BussproofsUtil.js":272}],269:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -39917,7 +40010,7 @@ var ProofTreeItem = (function (_super) { }(StackItem_js_1.BaseItem)); exports.ProofTreeItem = ProofTreeItem; -},{"../Stack.js":239,"../StackItem.js":240,"../TexError.js":246,"./BussproofsUtil.js":270}],268:[function(require,module,exports){ +},{"../Stack.js":241,"../StackItem.js":242,"../TexError.js":248,"./BussproofsUtil.js":272}],270:[function(require,module,exports){ "use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; @@ -39965,7 +40058,7 @@ new SymbolMap_js_1.EnvironmentMap('Bussproofs-environments', ParseMethods_js_1.d prooftree: ['Prooftree', null, false] }, BussproofsMethods_js_1.default); -},{"../ParseMethods.js":236,"../SymbolMap.js":243,"./BussproofsMethods.js":269}],269:[function(require,module,exports){ +},{"../ParseMethods.js":238,"../SymbolMap.js":245,"./BussproofsMethods.js":271}],271:[function(require,module,exports){ "use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; @@ -40209,7 +40302,7 @@ BussproofsMethods.InferenceF = function (parser, name, n) { }; exports.default = BussproofsMethods; -},{"../ParseUtil.js":238,"../TexError.js":246,"../TexParser.js":247,"./BussproofsUtil.js":270}],270:[function(require,module,exports){ +},{"../ParseUtil.js":240,"../TexError.js":248,"../TexParser.js":249,"./BussproofsUtil.js":272}],272:[function(require,module,exports){ "use strict"; var __read = (this && this.__read) || function (o, n) { var m = typeof Symbol === "function" && o[Symbol.iterator]; @@ -40539,7 +40632,7 @@ var clearDocument = function (_arg) { }; exports.clearDocument = clearDocument; -},{"../NodeUtil.js":235,"../ParseUtil.js":238}],271:[function(require,module,exports){ +},{"../NodeUtil.js":237,"../ParseUtil.js":240}],273:[function(require,module,exports){ "use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; @@ -40579,7 +40672,7 @@ new SymbolMap_js_1.CommandMap('cancel', { }, exports.CancelMethods); exports.CancelConfiguration = Configuration_js_1.Configuration.create('cancel', { handler: { macro: ['cancel'] } }); -},{"../Configuration.js":230,"../ParseUtil.js":238,"../SymbolMap.js":243,"../TexConstants.js":245,"../enclose/EncloseConfiguration.js":283}],272:[function(require,module,exports){ +},{"../Configuration.js":232,"../ParseUtil.js":240,"../SymbolMap.js":245,"../TexConstants.js":247,"../enclose/EncloseConfiguration.js":285}],274:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -40752,7 +40845,7 @@ exports.CasesConfiguration = Configuration_js_1.Configuration.create('cases', { tags: { 'cases': CasesTags } }); -},{"../Configuration.js":230,"../ParseUtil.js":238,"../SymbolMap.js":243,"../TexError.js":246,"../ams/AmsConfiguration.js":249,"../base/BaseItems.js":257,"../base/BaseMethods.js":259,"../empheq/EmpheqUtil.js":282}],273:[function(require,module,exports){ +},{"../Configuration.js":232,"../ParseUtil.js":240,"../SymbolMap.js":245,"../TexError.js":248,"../ams/AmsConfiguration.js":251,"../base/BaseItems.js":259,"../base/BaseMethods.js":261,"../empheq/EmpheqUtil.js":284}],275:[function(require,module,exports){ "use strict"; var __values = (this && this.__values) || function(o) { var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; @@ -40821,7 +40914,7 @@ exports.CenternotConfiguration = Configuration_js_1.Configuration.create('center postprocessors: [filterCenterOver] }); -},{"../Configuration.js":230,"../NodeUtil.js":235,"../SymbolMap.js":243,"../TexParser.js":247,"../base/BaseMethods.js":259}],274:[function(require,module,exports){ +},{"../Configuration.js":232,"../NodeUtil.js":237,"../SymbolMap.js":245,"../TexParser.js":249,"../base/BaseMethods.js":261}],276:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ColorConfiguration = void 0; @@ -40852,7 +40945,7 @@ exports.ColorConfiguration = Configuration_js_1.Configuration.create('color', { config: config }); -},{"../Configuration.js":230,"../SymbolMap.js":243,"./ColorMethods.js":276,"./ColorUtil.js":277}],275:[function(require,module,exports){ +},{"../Configuration.js":232,"../SymbolMap.js":245,"./ColorMethods.js":278,"./ColorUtil.js":279}],277:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.COLORS = void 0; @@ -40927,7 +41020,7 @@ exports.COLORS = new Map([ ['YellowOrange', '#FAA21A'], ]); -},{}],276:[function(require,module,exports){ +},{}],278:[function(require,module,exports){ "use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; @@ -41006,7 +41099,7 @@ exports.ColorMethods.FColorBox = function (parser, name) { parser.Push(node); }; -},{"../NodeUtil.js":235,"../ParseUtil.js":238}],277:[function(require,module,exports){ +},{"../NodeUtil.js":237,"../ParseUtil.js":240}],279:[function(require,module,exports){ "use strict"; var __values = (this && this.__values) || function(o) { var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; @@ -41144,7 +41237,7 @@ ColorModelProcessors.set('gray', function (gray) { return "#".concat(pn).concat(pn).concat(pn); }); -},{"../TexError.js":246,"./ColorConstants.js":275}],278:[function(require,module,exports){ +},{"../TexError.js":248,"./ColorConstants.js":277}],280:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -41252,7 +41345,7 @@ exports.ColortblConfiguration = Configuration_js_1.Configuration.create('colortb config: [config, 10] }); -},{"../Configuration.js":230,"../SymbolMap.js":243,"../TexError.js":246,"../base/BaseItems.js":257}],279:[function(require,module,exports){ +},{"../Configuration.js":232,"../SymbolMap.js":245,"../TexError.js":248,"../base/BaseItems.js":259}],281:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ColorConfiguration = exports.ColorV2Methods = void 0; @@ -41277,7 +41370,7 @@ exports.ColorV2Methods = { new SymbolMap_js_1.CommandMap('colorv2', { color: 'Color' }, exports.ColorV2Methods); exports.ColorConfiguration = Configuration_js_1.Configuration.create('colorv2', { handler: { macro: ['colorv2'] } }); -},{"../Configuration.js":230,"../SymbolMap.js":243}],280:[function(require,module,exports){ +},{"../Configuration.js":232,"../SymbolMap.js":245}],282:[function(require,module,exports){ "use strict"; var __values = (this && this.__values) || function(o) { var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; @@ -41372,7 +41465,7 @@ exports.ConfigMacrosConfiguration = Configuration_js_1.Configuration.create('con } }); -},{"../../../util/Options.js":441,"../Configuration.js":230,"../ParseMethods.js":236,"../Symbol.js":242,"../SymbolMap.js":243,"../newcommand/NewcommandItems.js":296,"../newcommand/NewcommandMethods.js":298}],281:[function(require,module,exports){ +},{"../../../util/Options.js":443,"../Configuration.js":232,"../ParseMethods.js":238,"../Symbol.js":244,"../SymbolMap.js":245,"../newcommand/NewcommandItems.js":298,"../newcommand/NewcommandMethods.js":300}],283:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -41524,7 +41617,7 @@ exports.EmpheqConfiguration = Configuration_js_1.Configuration.create('empheq', _a) }); -},{"../Configuration.js":230,"../ParseUtil.js":238,"../SymbolMap.js":243,"../TexError.js":246,"../base/BaseItems.js":257,"./EmpheqUtil.js":282}],282:[function(require,module,exports){ +},{"../Configuration.js":232,"../ParseUtil.js":240,"../SymbolMap.js":245,"../TexError.js":248,"../base/BaseItems.js":259,"./EmpheqUtil.js":284}],284:[function(require,module,exports){ "use strict"; var __read = (this && this.__read) || function (o, n) { var m = typeof Symbol === "function" && o[Symbol.iterator]; @@ -41704,7 +41797,7 @@ exports.EmpheqUtil = { } }; -},{"../ParseUtil.js":238,"../TexParser.js":247}],283:[function(require,module,exports){ +},{"../ParseUtil.js":240,"../TexParser.js":249}],285:[function(require,module,exports){ "use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; @@ -41735,7 +41828,7 @@ exports.EncloseMethods.Enclose = function (parser, name) { new SymbolMap_js_1.CommandMap('enclose', { enclose: 'Enclose' }, exports.EncloseMethods); exports.EncloseConfiguration = Configuration_js_1.Configuration.create('enclose', { handler: { macro: ['enclose'] } }); -},{"../Configuration.js":230,"../ParseUtil.js":238,"../SymbolMap.js":243}],284:[function(require,module,exports){ +},{"../Configuration.js":232,"../ParseUtil.js":240,"../SymbolMap.js":245}],286:[function(require,module,exports){ "use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; @@ -41783,7 +41876,7 @@ exports.ExtpfeilConfiguration = Configuration_js_1.Configuration.create('extpfei init: init }); -},{"../Configuration.js":230,"../SymbolMap.js":243,"../TexError.js":246,"../ams/AmsMethods.js":252,"../newcommand/NewcommandConfiguration.js":295,"../newcommand/NewcommandUtil.js":299}],285:[function(require,module,exports){ +},{"../Configuration.js":232,"../SymbolMap.js":245,"../TexError.js":248,"../ams/AmsMethods.js":254,"../newcommand/NewcommandConfiguration.js":297,"../newcommand/NewcommandUtil.js":301}],287:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.GensymbConfiguration = void 0; @@ -41808,7 +41901,7 @@ exports.GensymbConfiguration = Configuration_js_1.Configuration.create('gensymb' handler: { macro: ['gensymb-symbols'] }, }); -},{"../Configuration.js":230,"../SymbolMap.js":243,"../TexConstants.js":245}],286:[function(require,module,exports){ +},{"../Configuration.js":232,"../SymbolMap.js":245,"../TexConstants.js":247}],288:[function(require,module,exports){ "use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; @@ -41826,7 +41919,7 @@ new SymbolMap_js_1.CommandMap('html_macros', { }, HtmlMethods_js_1.default); exports.HtmlConfiguration = Configuration_js_1.Configuration.create('html', { handler: { macro: ['html_macros'] } }); -},{"../Configuration.js":230,"../SymbolMap.js":243,"./HtmlMethods.js":287}],287:[function(require,module,exports){ +},{"../Configuration.js":232,"../SymbolMap.js":245,"./HtmlMethods.js":289}],289:[function(require,module,exports){ "use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; @@ -41885,7 +41978,7 @@ var GetArgumentMML = function (parser, name) { }; exports.default = HtmlMethods; -},{"../NodeUtil.js":235}],288:[function(require,module,exports){ +},{"../NodeUtil.js":237}],290:[function(require,module,exports){ "use strict"; var __values = (this && this.__values) || function(o) { var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; @@ -42028,7 +42121,7 @@ exports.MathtoolsConfiguration = Configuration_js_1.Configuration.create('mathto } }); -},{"../../../util/Options.js":441,"../Configuration.js":230,"../NodeUtil.js":235,"../SymbolMap.js":243,"./MathtoolsItems.js":289,"./MathtoolsMappings.js":290,"./MathtoolsTags.js":292,"./MathtoolsUtil.js":293}],289:[function(require,module,exports){ +},{"../../../util/Options.js":443,"../Configuration.js":232,"../NodeUtil.js":237,"../SymbolMap.js":245,"./MathtoolsItems.js":291,"./MathtoolsMappings.js":292,"./MathtoolsTags.js":294,"./MathtoolsUtil.js":295}],291:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -42093,7 +42186,7 @@ var MultlinedItem = (function (_super) { }(AmsItems_js_1.MultlineItem)); exports.MultlinedItem = MultlinedItem; -},{"../NodeUtil.js":235,"../TexConstants.js":245,"../ams/AmsItems.js":250}],290:[function(require,module,exports){ +},{"../NodeUtil.js":237,"../TexConstants.js":247,"../ams/AmsItems.js":252}],292:[function(require,module,exports){ "use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; @@ -42221,7 +42314,7 @@ new SymbolMap_js_1.CommandMap('mathtools-characters', { ':': ['CenterColon', true] }, MathtoolsMethods_js_1.MathtoolsMethods); -},{"../ParseMethods.js":236,"../SymbolMap.js":243,"../TexConstants.js":245,"./MathtoolsMethods.js":291}],291:[function(require,module,exports){ +},{"../ParseMethods.js":238,"../SymbolMap.js":245,"../TexConstants.js":247,"./MathtoolsMethods.js":293}],293:[function(require,module,exports){ "use strict"; var __assign = (this && this.__assign) || function () { __assign = Object.assign || function(t) { @@ -42710,7 +42803,7 @@ exports.MathtoolsMethods = { MacroWithTemplate: NewcommandMethods_js_1.default.MacroWithTemplate, }; -},{"../../../core/MmlTree/MmlNode.js":181,"../../../util/Options.js":441,"../../../util/lengths.js":446,"../NodeUtil.js":235,"../ParseUtil.js":238,"../TexError.js":246,"../TexParser.js":247,"../ams/AmsMethods.js":252,"../base/BaseMethods.js":259,"../newcommand/NewcommandMethods.js":298,"../newcommand/NewcommandUtil.js":299,"./MathtoolsUtil.js":293}],292:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNode.js":183,"../../../util/Options.js":443,"../../../util/lengths.js":448,"../NodeUtil.js":237,"../ParseUtil.js":240,"../TexError.js":248,"../TexParser.js":249,"../ams/AmsMethods.js":254,"../base/BaseMethods.js":261,"../newcommand/NewcommandMethods.js":300,"../newcommand/NewcommandUtil.js":301,"./MathtoolsUtil.js":295}],294:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -42810,7 +42903,7 @@ function MathtoolsTagFormat(config, jax) { } exports.MathtoolsTagFormat = MathtoolsTagFormat; -},{"../Tags.js":244,"../TexError.js":246}],293:[function(require,module,exports){ +},{"../Tags.js":246,"../TexError.js":248}],295:[function(require,module,exports){ "use strict"; var __read = (this && this.__read) || function (o, n) { var m = typeof Symbol === "function" && o[Symbol.iterator]; @@ -42901,7 +42994,7 @@ exports.MathtoolsUtil = { } }; -},{"../../../util/Options.js":441,"../ParseUtil.js":238,"../Symbol.js":242,"../TexError.js":246,"../TexParser.js":247,"../base/BaseItems.js":257,"./MathtoolsConfiguration.js":288,"./MathtoolsMethods.js":291}],294:[function(require,module,exports){ +},{"../../../util/Options.js":443,"../ParseUtil.js":240,"../Symbol.js":244,"../TexError.js":248,"../TexParser.js":249,"../base/BaseItems.js":259,"./MathtoolsConfiguration.js":290,"./MathtoolsMethods.js":293}],296:[function(require,module,exports){ "use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; @@ -42959,7 +43052,7 @@ new SymbolMap_js_1.CommandMap('mhchem', { }, MhchemMethods); exports.MhchemConfiguration = Configuration_js_1.Configuration.create('mhchem', { handler: { macro: ['mhchem'] } }); -},{"../Configuration.js":230,"../SymbolMap.js":243,"../TexError.js":246,"../ams/AmsMethods.js":252,"../base/BaseMethods.js":259,"mhchemparser/dist/mhchemParser.js":459}],295:[function(require,module,exports){ +},{"../Configuration.js":232,"../SymbolMap.js":245,"../TexError.js":248,"../ams/AmsMethods.js":254,"../base/BaseMethods.js":261,"mhchemparser/dist/mhchemParser.js":461}],297:[function(require,module,exports){ "use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; @@ -43019,7 +43112,7 @@ exports.NewcommandConfiguration = Configuration_js_1.Configuration.create('newco init: init }); -},{"../Configuration.js":230,"../ParseMethods.js":236,"../SymbolMap.js":243,"./NewcommandItems.js":296,"./NewcommandMappings.js":297,"./NewcommandUtil.js":299}],296:[function(require,module,exports){ +},{"../Configuration.js":232,"../ParseMethods.js":238,"../SymbolMap.js":245,"./NewcommandItems.js":298,"./NewcommandMappings.js":299,"./NewcommandUtil.js":301}],298:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -43078,7 +43171,7 @@ var BeginEnvItem = (function (_super) { }(StackItem_js_1.BaseItem)); exports.BeginEnvItem = BeginEnvItem; -},{"../StackItem.js":240,"../TexError.js":246}],297:[function(require,module,exports){ +},{"../StackItem.js":242,"../TexError.js":248}],299:[function(require,module,exports){ "use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; @@ -43095,7 +43188,7 @@ new SymbolMap_js_1.CommandMap('Newcommand-macros', { 'let': 'Let' }, NewcommandMethods_js_1.default); -},{"../SymbolMap.js":243,"./NewcommandMethods.js":298}],298:[function(require,module,exports){ +},{"../SymbolMap.js":245,"./NewcommandMethods.js":300}],300:[function(require,module,exports){ "use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; @@ -43249,7 +43342,7 @@ NewcommandMethods.BeginEnv = function (parser, begin, bdef, edef, n, def) { NewcommandMethods.Macro = BaseMethods_js_1.default.Macro; exports.default = NewcommandMethods; -},{"../ParseUtil.js":238,"../SymbolMap.js":243,"../TexError.js":246,"../base/BaseMethods.js":259,"./NewcommandUtil.js":299}],299:[function(require,module,exports){ +},{"../ParseUtil.js":240,"../SymbolMap.js":245,"../TexError.js":248,"../base/BaseMethods.js":261,"./NewcommandUtil.js":301}],301:[function(require,module,exports){ "use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; @@ -43427,7 +43520,7 @@ var NewcommandUtil; })(NewcommandUtil || (NewcommandUtil = {})); exports.default = NewcommandUtil; -},{"../ParseUtil.js":238,"../Symbol.js":242,"../TexError.js":246}],300:[function(require,module,exports){ +},{"../ParseUtil.js":240,"../Symbol.js":244,"../TexError.js":248}],302:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.NoErrorsConfiguration = void 0; @@ -43439,7 +43532,7 @@ function noErrors(factory, message, _id, expr) { } exports.NoErrorsConfiguration = Configuration_js_1.Configuration.create('noerrors', { nodes: { 'error': noErrors } }); -},{"../Configuration.js":230}],301:[function(require,module,exports){ +},{"../Configuration.js":232}],303:[function(require,module,exports){ "use strict"; var __values = (this && this.__values) || function(o) { var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; @@ -43489,7 +43582,7 @@ exports.NoUndefinedConfiguration = Configuration_js_1.Configuration.create('noun priority: 3 }); -},{"../Configuration.js":230}],302:[function(require,module,exports){ +},{"../Configuration.js":232}],304:[function(require,module,exports){ "use strict"; var _a; Object.defineProperty(exports, "__esModule", { value: true }); @@ -43524,7 +43617,7 @@ exports.PhysicsConfiguration = Configuration_js_1.Configuration.create('physics' } }); -},{"../Configuration.js":230,"./PhysicsItems.js":303,"./PhysicsMappings.js":304}],303:[function(require,module,exports){ +},{"../Configuration.js":232,"./PhysicsItems.js":305,"./PhysicsMappings.js":306}],305:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -43611,7 +43704,7 @@ var AutoOpen = (function (_super) { }(StackItem_js_1.BaseItem)); exports.AutoOpen = AutoOpen; -},{"../NodeUtil.js":235,"../ParseUtil.js":238,"../StackItem.js":240,"../TexParser.js":247}],304:[function(require,module,exports){ +},{"../NodeUtil.js":237,"../ParseUtil.js":240,"../StackItem.js":242,"../TexParser.js":249}],306:[function(require,module,exports){ "use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; @@ -43840,7 +43933,7 @@ new SymbolMap_js_1.MacroMap('Physics-characters', { ']': 'AutoClose' }, PhysicsMethods_js_1.default); -},{"../../../core/MmlTree/MmlNode.js":181,"../ParseMethods.js":236,"../SymbolMap.js":243,"../TexConstants.js":245,"./PhysicsMethods.js":305}],305:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNode.js":183,"../ParseMethods.js":238,"../SymbolMap.js":245,"../TexConstants.js":247,"./PhysicsMethods.js":307}],307:[function(require,module,exports){ "use strict"; var __read = (this && this.__read) || function (o, n) { var m = typeof Symbol === "function" && o[Symbol.iterator]; @@ -44478,7 +44571,7 @@ PhysicsMethods.NamedFn = BaseMethods_js_1.default.NamedFn; PhysicsMethods.Array = BaseMethods_js_1.default.Array; exports.default = PhysicsMethods; -},{"../../../core/MmlTree/MmlNode.js":181,"../NodeFactory.js":234,"../NodeUtil.js":235,"../ParseUtil.js":238,"../TexError.js":246,"../TexParser.js":247,"../base/BaseMethods.js":259}],306:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNode.js":183,"../NodeFactory.js":236,"../NodeUtil.js":237,"../ParseUtil.js":240,"../TexError.js":248,"../TexParser.js":249,"../base/BaseMethods.js":261}],308:[function(require,module,exports){ "use strict"; var __values = (this && this.__values) || function(o) { var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; @@ -44605,7 +44698,7 @@ exports.SetOptionsConfiguration = Configuration_js_1.Configuration.create('setop } }); -},{"../../../util/Options.js":441,"../Configuration.js":230,"../ParseUtil.js":238,"../Symbol.js":242,"../SymbolMap.js":243,"../TexError.js":246,"../base/BaseMethods.js":259}],307:[function(require,module,exports){ +},{"../../../util/Options.js":443,"../Configuration.js":232,"../ParseUtil.js":240,"../Symbol.js":244,"../SymbolMap.js":245,"../TexError.js":248,"../base/BaseMethods.js":261}],309:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -44670,7 +44763,7 @@ exports.TagFormatConfiguration = Configuration_js_1.Configuration.create('tagfor } }); -},{"../Configuration.js":230,"../Tags.js":244}],308:[function(require,module,exports){ +},{"../Configuration.js":232,"../Tags.js":246}],310:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.TextcompConfiguration = void 0; @@ -44680,7 +44773,7 @@ exports.TextcompConfiguration = Configuration_js_1.Configuration.create('textcom handler: { macro: ['textcomp-macros'] } }); -},{"../Configuration.js":230,"./TextcompMappings.js":309}],309:[function(require,module,exports){ +},{"../Configuration.js":232,"./TextcompMappings.js":311}],311:[function(require,module,exports){ "use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; @@ -44822,7 +44915,7 @@ new SymbolMap_js_1.CommandMap('textcomp-macros', { } }); -},{"../ParseUtil.js":238,"../SymbolMap.js":243,"../TexConstants.js":245,"../textmacros/TextMacrosMethods.js":312,"../textmacros/TextParser.js":313}],310:[function(require,module,exports){ +},{"../ParseUtil.js":240,"../SymbolMap.js":245,"../TexConstants.js":247,"../textmacros/TextMacrosMethods.js":314,"../textmacros/TextParser.js":315}],312:[function(require,module,exports){ "use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; @@ -44895,7 +44988,7 @@ exports.TextMacrosConfiguration = Configuration_js_1.Configuration.create('textm } }); -},{"../Configuration.js":230,"../ParseOptions.js":237,"../Tags.js":244,"../base/BaseItems.js":257,"./TextMacrosMappings.js":311,"./TextMacrosMethods.js":312,"./TextParser.js":313}],311:[function(require,module,exports){ +},{"../Configuration.js":232,"../ParseOptions.js":239,"../Tags.js":246,"../base/BaseItems.js":259,"./TextMacrosMappings.js":313,"./TextMacrosMethods.js":314,"./TextParser.js":315}],313:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var SymbolMap_js_1 = require("../SymbolMap.js"); @@ -45007,7 +45100,7 @@ new SymbolMap_js_1.CommandMap('text-macros', { eqref: ['HandleRef', true], }, TextMacrosMethods_js_1.TextMacrosMethods); -},{"../../../util/lengths.js":446,"../SymbolMap.js":243,"../TexConstants.js":245,"./TextMacrosMethods.js":312}],312:[function(require,module,exports){ +},{"../../../util/lengths.js":448,"../SymbolMap.js":245,"../TexConstants.js":247,"./TextMacrosMethods.js":314}],314:[function(require,module,exports){ "use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; @@ -45148,7 +45241,7 @@ exports.TextMacrosMethods = { HandleRef: BaseMethods_js_1.default.HandleRef }; -},{"../../../util/Retries.js":443,"../TexParser.js":247,"../base/BaseMethods.js":259}],313:[function(require,module,exports){ +},{"../../../util/Retries.js":445,"../TexParser.js":249,"../base/BaseMethods.js":261}],315:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -45337,7 +45430,7 @@ var TextParser = (function (_super) { }(TexParser_js_1.default)); exports.TextParser = TextParser; -},{"../../../core/MmlTree/MmlNode.js":181,"../NodeUtil.js":235,"../ParseUtil.js":238,"../TexError.js":246,"../TexParser.js":247,"../base/BaseItems.js":257}],314:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNode.js":183,"../NodeUtil.js":237,"../ParseUtil.js":240,"../TexError.js":248,"../TexParser.js":249,"../base/BaseItems.js":259}],316:[function(require,module,exports){ "use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; @@ -45404,7 +45497,7 @@ exports.UnicodeMethods.Unicode = function (parser, name) { new SymbolMap_js_1.CommandMap('unicode', { unicode: 'Unicode' }, exports.UnicodeMethods); exports.UnicodeConfiguration = Configuration_js_1.Configuration.create('unicode', { handler: { macro: ['unicode'] } }); -},{"../../../util/Entities.js":438,"../Configuration.js":230,"../NodeUtil.js":235,"../ParseUtil.js":238,"../SymbolMap.js":243,"../TexError.js":246}],315:[function(require,module,exports){ +},{"../../../util/Entities.js":440,"../Configuration.js":232,"../NodeUtil.js":237,"../ParseUtil.js":240,"../SymbolMap.js":245,"../TexError.js":248}],317:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.UpgreekConfiguration = void 0; @@ -45464,7 +45557,7 @@ exports.UpgreekConfiguration = Configuration_js_1.Configuration.create('upgreek' handler: { macro: ['upgreek'] }, }); -},{"../Configuration.js":230,"../SymbolMap.js":243,"../TexConstants.js":245}],316:[function(require,module,exports){ +},{"../Configuration.js":232,"../SymbolMap.js":245,"../TexConstants.js":247}],318:[function(require,module,exports){ "use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; @@ -45496,7 +45589,7 @@ exports.VerbMethods.Verb = function (parser, name) { new SymbolMap_js_1.CommandMap('verb', { verb: 'Verb' }, exports.VerbMethods); exports.VerbConfiguration = Configuration_js_1.Configuration.create('verb', { handler: { macro: ['verb'] } }); -},{"../Configuration.js":230,"../SymbolMap.js":243,"../TexConstants.js":245,"../TexError.js":246}],317:[function(require,module,exports){ +},{"../Configuration.js":232,"../SymbolMap.js":245,"../TexConstants.js":247,"../TexError.js":248}],319:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.mathjax = void 0; @@ -45514,7 +45607,7 @@ exports.mathjax = { asyncLoad: null, }; -},{"./components/version.js":169,"./core/HandlerList.js":173,"./util/Retries.js":443}],318:[function(require,module,exports){ +},{"./components/version.js":171,"./core/HandlerList.js":175,"./util/Retries.js":445}],320:[function(require,module,exports){ "use strict"; var __assign = (this && this.__assign) || function () { __assign = Object.assign || function(t) { @@ -45950,7 +46043,7 @@ var FontData = (function () { }()); exports.FontData = FontData; -},{"../../util/Options.js":441}],319:[function(require,module,exports){ +},{"../../util/Options.js":443}],321:[function(require,module,exports){ "use strict"; var __read = (this && this.__read) || function (o, n) { var m = typeof Symbol === "function" && o[Symbol.iterator]; @@ -46115,7 +46208,7 @@ var CommonArrow = function (render) { }; exports.CommonArrow = CommonArrow; -},{}],320:[function(require,module,exports){ +},{}],322:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -46547,7 +46640,7 @@ var CommonOutputJax = (function (_super) { }(OutputJax_js_1.AbstractOutputJax)); exports.CommonOutputJax = CommonOutputJax; -},{"../../core/MathItem.js":176,"../../core/OutputJax.js":215,"../../util/Options.js":441,"../../util/StyleList.js":444,"../../util/Styles.js":445,"../../util/lengths.js":446}],321:[function(require,module,exports){ +},{"../../core/MathItem.js":178,"../../core/OutputJax.js":217,"../../util/Options.js":443,"../../util/StyleList.js":446,"../../util/Styles.js":447,"../../util/lengths.js":448}],323:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -47136,7 +47229,7 @@ var CommonWrapper = (function (_super) { }(Wrapper_js_1.AbstractWrapper)); exports.CommonWrapper = CommonWrapper; -},{"../../core/MmlTree/MmlNode.js":181,"../../core/Tree/Wrapper.js":220,"../../util/BBox.js":436,"../../util/Styles.js":445,"../../util/lengths.js":446,"../../util/string.js":448,"./FontData.js":318}],322:[function(require,module,exports){ +},{"../../core/MmlTree/MmlNode.js":183,"../../core/Tree/Wrapper.js":222,"../../util/BBox.js":438,"../../util/Styles.js":447,"../../util/lengths.js":448,"../../util/string.js":450,"./FontData.js":320}],324:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -47175,7 +47268,7 @@ var CommonWrapperFactory = (function (_super) { }(WrapperFactory_js_1.AbstractWrapperFactory)); exports.CommonWrapperFactory = CommonWrapperFactory; -},{"../../core/Tree/WrapperFactory.js":221}],323:[function(require,module,exports){ +},{"../../core/Tree/WrapperFactory.js":223}],325:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -47220,7 +47313,7 @@ function CommonTeXAtomMixin(Base) { } exports.CommonTeXAtomMixin = CommonTeXAtomMixin; -},{"../../../core/MmlTree/MmlNode.js":181}],324:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNode.js":183}],326:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -47333,7 +47426,7 @@ function CommonTextNodeMixin(Base) { } exports.CommonTextNodeMixin = CommonTextNodeMixin; -},{}],325:[function(require,module,exports){ +},{}],327:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -47438,7 +47531,7 @@ function CommonMactionMixin(Base) { } exports.CommonMactionMixin = CommonMactionMixin; -},{"../../../util/string.js":448}],326:[function(require,module,exports){ +},{"../../../util/string.js":450}],328:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -47471,7 +47564,7 @@ function CommonMathMixin(Base) { } exports.CommonMathMixin = CommonMathMixin; -},{}],327:[function(require,module,exports){ +},{}],329:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -47770,7 +47863,7 @@ function CommonMencloseMixin(Base) { } exports.CommonMencloseMixin = CommonMencloseMixin; -},{"../../../util/string.js":448,"../Notation.js":319}],328:[function(require,module,exports){ +},{"../../../util/string.js":450,"../Notation.js":321}],330:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -47889,7 +47982,7 @@ function CommonMfencedMixin(Base) { } exports.CommonMfencedMixin = CommonMfencedMixin; -},{}],329:[function(require,module,exports){ +},{}],331:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -48057,7 +48150,7 @@ function CommonMfracMixin(Base) { } exports.CommonMfracMixin = CommonMfracMixin; -},{}],330:[function(require,module,exports){ +},{}],332:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -48143,7 +48236,7 @@ function CommonMglyphMixin(Base) { } exports.CommonMglyphMixin = CommonMglyphMixin; -},{}],331:[function(require,module,exports){ +},{}],333:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -48178,7 +48271,7 @@ function CommonMiMixin(Base) { } exports.CommonMiMixin = CommonMiMixin; -},{}],332:[function(require,module,exports){ +},{}],334:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -48373,7 +48466,7 @@ function CommonMmultiscriptsMixin(Base) { } exports.CommonMmultiscriptsMixin = CommonMmultiscriptsMixin; -},{"../../../util/BBox.js":436}],333:[function(require,module,exports){ +},{"../../../util/BBox.js":438}],335:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -48418,7 +48511,7 @@ function CommonMnMixin(Base) { } exports.CommonMnMixin = CommonMnMixin; -},{}],334:[function(require,module,exports){ +},{}],336:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -48702,7 +48795,7 @@ function CommonMoMixin(Base) { } exports.CommonMoMixin = CommonMoMixin; -},{"../../../util/BBox.js":436,"../../../util/string.js":448,"../FontData.js":318}],335:[function(require,module,exports){ +},{"../../../util/BBox.js":438,"../../../util/string.js":450,"../FontData.js":320}],337:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -48799,7 +48892,7 @@ function CommonMpaddedMixin(Base) { } exports.CommonMpaddedMixin = CommonMpaddedMixin; -},{}],336:[function(require,module,exports){ +},{}],338:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -48864,7 +48957,7 @@ function CommonMrootMixin(Base) { } exports.CommonMrootMixin = CommonMrootMixin; -},{}],337:[function(require,module,exports){ +},{}],339:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -49035,7 +49128,7 @@ function CommonInferredMrowMixin(Base) { } exports.CommonInferredMrowMixin = CommonInferredMrowMixin; -},{"../../../util/BBox.js":436}],338:[function(require,module,exports){ +},{"../../../util/BBox.js":438}],340:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -49110,7 +49203,7 @@ function CommonMsMixin(Base) { } exports.CommonMsMixin = CommonMsMixin; -},{}],339:[function(require,module,exports){ +},{}],341:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -49149,7 +49242,7 @@ function CommonMspaceMixin(Base) { } exports.CommonMspaceMixin = CommonMspaceMixin; -},{}],340:[function(require,module,exports){ +},{}],342:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -49271,7 +49364,7 @@ function CommonMsqrtMixin(Base) { } exports.CommonMsqrtMixin = CommonMsqrtMixin; -},{"../../../util/BBox.js":436}],341:[function(require,module,exports){ +},{"../../../util/BBox.js":438}],343:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -49421,7 +49514,7 @@ function CommonMsubsupMixin(Base) { } exports.CommonMsubsupMixin = CommonMsubsupMixin; -},{}],342:[function(require,module,exports){ +},{}],344:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -50026,7 +50119,7 @@ function CommonMtableMixin(Base) { } exports.CommonMtableMixin = CommonMtableMixin; -},{"../../../util/BBox.js":436,"../../../util/numeric.js":447,"../../../util/string.js":448}],343:[function(require,module,exports){ +},{"../../../util/BBox.js":438,"../../../util/numeric.js":449,"../../../util/string.js":450}],345:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -50075,7 +50168,7 @@ function CommonMtdMixin(Base) { } exports.CommonMtdMixin = CommonMtdMixin; -},{}],344:[function(require,module,exports){ +},{}],346:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -50127,7 +50220,7 @@ function CommonMtextMixin(Base) { } exports.CommonMtextMixin = CommonMtextMixin; -},{}],345:[function(require,module,exports){ +},{}],347:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -50306,7 +50399,7 @@ function CommonMlabeledtrMixin(Base) { } exports.CommonMlabeledtrMixin = CommonMlabeledtrMixin; -},{}],346:[function(require,module,exports){ +},{}],348:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -50502,7 +50595,7 @@ function CommonMunderoverMixin(Base) { } exports.CommonMunderoverMixin = CommonMunderoverMixin; -},{}],347:[function(require,module,exports){ +},{}],349:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -50881,7 +50974,7 @@ function CommonScriptbaseMixin(Base) { } exports.CommonScriptbaseMixin = CommonScriptbaseMixin; -},{"../../../core/MmlTree/MmlNode.js":181}],348:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNode.js":183}],350:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -50920,7 +51013,7 @@ function CommonSemanticsMixin(Base) { } exports.CommonSemanticsMixin = CommonSemanticsMixin; -},{}],349:[function(require,module,exports){ +},{}],351:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -51007,7 +51100,7 @@ function CommonTeXFontMixin(Base) { } exports.CommonTeXFontMixin = CommonTeXFontMixin; -},{}],350:[function(require,module,exports){ +},{}],352:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.boldItalic = void 0; @@ -51020,7 +51113,7 @@ exports.boldItalic = { 0x29F8: [.711, .21, .894], }; -},{}],351:[function(require,module,exports){ +},{}],353:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.bold = void 0; @@ -51282,7 +51375,7 @@ exports.bold = { 0x3009: [.75, .249, .447], }; -},{}],352:[function(require,module,exports){ +},{}],354:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.delimiters = exports.VSIZES = exports.HDW3 = exports.HDW2 = exports.HDW1 = void 0; @@ -51438,13 +51531,13 @@ exports.delimiters = { 0xFE38: DELIM23DF, }; -},{"../../FontData.js":318}],353:[function(require,module,exports){ +},{"../../FontData.js":320}],355:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.doubleStruck = void 0; exports.doubleStruck = {}; -},{}],354:[function(require,module,exports){ +},{}],356:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.frakturBold = void 0; @@ -51490,7 +51583,7 @@ exports.frakturBold = { 0xE309: [.717, .137, .727], }; -},{}],355:[function(require,module,exports){ +},{}],357:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.fraktur = void 0; @@ -51537,7 +51630,7 @@ exports.fraktur = { 0xE307: [.475, .022, .501, { ic: .013 }], }; -},{}],356:[function(require,module,exports){ +},{}],358:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.italic = void 0; @@ -51604,7 +51697,7 @@ exports.italic = { 0x29F8: [.716, .215, .778], }; -},{}],357:[function(require,module,exports){ +},{}],359:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.largeop = void 0; @@ -51661,7 +51754,7 @@ exports.largeop = { 0x3009: [1.15, .649, .611], }; -},{}],358:[function(require,module,exports){ +},{}],360:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.monospace = void 0; @@ -51746,7 +51839,7 @@ exports.monospace = { 0x2206: [.623, 0, .525], }; -},{}],359:[function(require,module,exports){ +},{}],361:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.normal = void 0; @@ -53051,7 +53144,7 @@ exports.normal = { 0x1D7FF: [.622, .011, .525], }; -},{}],360:[function(require,module,exports){ +},{}],362:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.sansSerifBoldItalic = void 0; @@ -53060,7 +53153,7 @@ exports.sansSerifBoldItalic = { 0x237: [.458, .205, .286], }; -},{}],361:[function(require,module,exports){ +},{}],363:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.sansSerifBold = void 0; @@ -53115,7 +53208,7 @@ exports.sansSerifBold = { 0x2206: [.694, 0, .917], }; -},{}],362:[function(require,module,exports){ +},{}],364:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.sansSerifItalic = void 0; @@ -53204,7 +53297,7 @@ exports.sansSerifItalic = { 0x2206: [.694, 0, .833], }; -},{}],363:[function(require,module,exports){ +},{}],365:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.sansSerif = void 0; @@ -53283,19 +53376,19 @@ exports.sansSerif = { 0x2206: [.694, 0, .833], }; -},{}],364:[function(require,module,exports){ +},{}],366:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.scriptBold = void 0; exports.scriptBold = {}; -},{}],365:[function(require,module,exports){ +},{}],367:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.script = void 0; exports.script = {}; -},{}],366:[function(require,module,exports){ +},{}],368:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.smallop = void 0; @@ -53352,7 +53445,7 @@ exports.smallop = { 0x3009: [.85, .35, .472], }; -},{}],367:[function(require,module,exports){ +},{}],369:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.texCalligraphicBold = void 0; @@ -53387,7 +53480,7 @@ exports.texCalligraphicBold = { 0x237: [.451, .201, .439, { sk: .0958 }], }; -},{}],368:[function(require,module,exports){ +},{}],370:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.texCalligraphic = void 0; @@ -53420,7 +53513,7 @@ exports.texCalligraphic = { 0x5A: [.683, 0, .725, { ic: .042, sk: .139 }], }; -},{}],369:[function(require,module,exports){ +},{}],371:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.texMathit = void 0; @@ -53479,7 +53572,7 @@ exports.texMathit = { 0x7A: [.442, .011, .409], }; -},{}],370:[function(require,module,exports){ +},{}],372:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.texOldstyleBold = void 0; @@ -53522,7 +53615,7 @@ exports.texOldstyleBold = { 0x5A: [.686, 0, .818, { ic: .035, sk: .16 }], }; -},{}],371:[function(require,module,exports){ +},{}],373:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.texOldstyle = void 0; @@ -53565,7 +53658,7 @@ exports.texOldstyle = { 0x5A: [.683, 0, .725, { ic: .042, sk: .139 }], }; -},{}],372:[function(require,module,exports){ +},{}],374:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.texSize3 = void 0; @@ -53596,7 +53689,7 @@ exports.texSize3 = { 0x3009: [1.45, .949, .75], }; -},{}],373:[function(require,module,exports){ +},{}],375:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.texSize4 = void 0; @@ -53656,7 +53749,7 @@ exports.texSize4 = { 0xE156: [.12, .213, .9, { ic: .01 }], }; -},{}],374:[function(require,module,exports){ +},{}],376:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.texVariant = void 0; @@ -53701,7 +53794,7 @@ exports.texVariant = { 0x2ACC: [.752, .333, .778], }; -},{}],375:[function(require,module,exports){ +},{}],377:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -53949,7 +54042,7 @@ var SVG = (function (_super) { }(OutputJax_js_1.CommonOutputJax)); exports.SVG = SVG; -},{"../util/lengths.js":446,"../util/string.js":448,"./common/OutputJax.js":320,"./svg/FontCache.js":376,"./svg/WrapperFactory.js":380,"./svg/fonts/tex.js":410}],376:[function(require,module,exports){ +},{"../util/lengths.js":448,"../util/string.js":450,"./common/OutputJax.js":322,"./svg/FontCache.js":378,"./svg/WrapperFactory.js":382,"./svg/fonts/tex.js":412}],378:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.FontCache = void 0; @@ -53987,7 +54080,7 @@ var FontCache = (function () { }()); exports.FontCache = FontCache; -},{}],377:[function(require,module,exports){ +},{}],379:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -54091,7 +54184,7 @@ function AddPaths(font, paths, content) { } exports.AddPaths = AddPaths; -},{"../common/FontData.js":318}],378:[function(require,module,exports){ +},{"../common/FontData.js":320}],380:[function(require,module,exports){ "use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; @@ -54197,7 +54290,7 @@ var Arrow = function (name) { }; exports.Arrow = Arrow; -},{"../common/Notation.js":319}],379:[function(require,module,exports){ +},{"../common/Notation.js":321}],381:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -54635,7 +54728,7 @@ var SVGWrapper = (function (_super) { }(Wrapper_js_1.CommonWrapper)); exports.SVGWrapper = SVGWrapper; -},{"../../util/BBox.js":436,"../common/Wrapper.js":321,"../svg.js":375}],380:[function(require,module,exports){ +},{"../../util/BBox.js":438,"../common/Wrapper.js":323,"../svg.js":377}],382:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -54668,7 +54761,7 @@ var SVGWrapperFactory = (function (_super) { }(WrapperFactory_js_1.CommonWrapperFactory)); exports.SVGWrapperFactory = SVGWrapperFactory; -},{"../common/WrapperFactory.js":322,"./Wrappers.js":381}],381:[function(require,module,exports){ +},{"../common/WrapperFactory.js":324,"./Wrappers.js":383}],383:[function(require,module,exports){ "use strict"; var _a; Object.defineProperty(exports, "__esModule", { value: true }); @@ -54741,7 +54834,7 @@ exports.SVGWrappers = (_a = {}, _a[Wrapper_js_1.SVGWrapper.kind] = Wrapper_js_1.SVGWrapper, _a); -},{"./Wrapper.js":379,"./Wrappers/TeXAtom.js":382,"./Wrappers/TextNode.js":383,"./Wrappers/maction.js":384,"./Wrappers/math.js":385,"./Wrappers/menclose.js":386,"./Wrappers/merror.js":387,"./Wrappers/mfenced.js":388,"./Wrappers/mfrac.js":389,"./Wrappers/mglyph.js":390,"./Wrappers/mi.js":391,"./Wrappers/mmultiscripts.js":392,"./Wrappers/mn.js":393,"./Wrappers/mo.js":394,"./Wrappers/mpadded.js":395,"./Wrappers/mphantom.js":396,"./Wrappers/mroot.js":397,"./Wrappers/mrow.js":398,"./Wrappers/ms.js":399,"./Wrappers/mspace.js":400,"./Wrappers/msqrt.js":401,"./Wrappers/msubsup.js":402,"./Wrappers/mtable.js":403,"./Wrappers/mtd.js":404,"./Wrappers/mtext.js":405,"./Wrappers/mtr.js":406,"./Wrappers/munderover.js":407,"./Wrappers/semantics.js":409}],382:[function(require,module,exports){ +},{"./Wrapper.js":381,"./Wrappers/TeXAtom.js":384,"./Wrappers/TextNode.js":385,"./Wrappers/maction.js":386,"./Wrappers/math.js":387,"./Wrappers/menclose.js":388,"./Wrappers/merror.js":389,"./Wrappers/mfenced.js":390,"./Wrappers/mfrac.js":391,"./Wrappers/mglyph.js":392,"./Wrappers/mi.js":393,"./Wrappers/mmultiscripts.js":394,"./Wrappers/mn.js":395,"./Wrappers/mo.js":396,"./Wrappers/mpadded.js":397,"./Wrappers/mphantom.js":398,"./Wrappers/mroot.js":399,"./Wrappers/mrow.js":400,"./Wrappers/ms.js":401,"./Wrappers/mspace.js":402,"./Wrappers/msqrt.js":403,"./Wrappers/msubsup.js":404,"./Wrappers/mtable.js":405,"./Wrappers/mtd.js":406,"./Wrappers/mtext.js":407,"./Wrappers/mtr.js":408,"./Wrappers/munderover.js":409,"./Wrappers/semantics.js":411}],384:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -54786,7 +54879,7 @@ var SVGTeXAtom = (function (_super) { }((0, TeXAtom_js_1.CommonTeXAtomMixin)(Wrapper_js_1.SVGWrapper))); exports.SVGTeXAtom = SVGTeXAtom; -},{"../../../core/MmlTree/MmlNode.js":181,"../../../core/MmlTree/MmlNodes/TeXAtom.js":182,"../../common/Wrappers/TeXAtom.js":323,"../Wrapper.js":379}],383:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNode.js":183,"../../../core/MmlTree/MmlNodes/TeXAtom.js":184,"../../common/Wrappers/TeXAtom.js":325,"../Wrapper.js":381}],385:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -54864,7 +54957,7 @@ var SVGTextNode = (function (_super) { }((0, TextNode_js_1.CommonTextNodeMixin)(Wrapper_js_1.SVGWrapper))); exports.SVGTextNode = SVGTextNode; -},{"../../../core/MmlTree/MmlNode.js":181,"../../common/Wrappers/TextNode.js":324,"../Wrapper.js":379}],384:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNode.js":183,"../../common/Wrappers/TextNode.js":326,"../Wrapper.js":381}],386:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -55033,7 +55126,7 @@ var SVGmaction = (function (_super) { }((0, maction_js_1.CommonMactionMixin)(Wrapper_js_1.SVGWrapper))); exports.SVGmaction = SVGmaction; -},{"../../../core/MmlTree/MmlNodes/maction.js":183,"../../common/Wrappers/maction.js":325,"../Wrapper.js":379}],385:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNodes/maction.js":185,"../../common/Wrappers/maction.js":327,"../Wrapper.js":381}],387:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -55180,7 +55273,7 @@ var SVGmath = (function (_super) { }((0, math_js_1.CommonMathMixin)(Wrapper_js_1.SVGWrapper))); exports.SVGmath = SVGmath; -},{"../../../core/MmlTree/MmlNodes/math.js":186,"../../../util/BBox.js":436,"../../common/Wrappers/math.js":326,"../Wrapper.js":379}],386:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNodes/math.js":188,"../../../util/BBox.js":438,"../../common/Wrappers/math.js":328,"../Wrapper.js":381}],388:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -55467,7 +55560,7 @@ var SVGmenclose = (function (_super) { }((0, menclose_js_1.CommonMencloseMixin)(Wrapper_js_1.SVGWrapper))); exports.SVGmenclose = SVGmenclose; -},{"../../../core/MmlTree/MmlNodes/menclose.js":188,"../../common/Wrappers/menclose.js":327,"../Notation.js":378,"../Wrapper.js":379}],387:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNodes/menclose.js":190,"../../common/Wrappers/menclose.js":329,"../Notation.js":380,"../Wrapper.js":381}],389:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -55521,7 +55614,7 @@ var SVGmerror = (function (_super) { }(Wrapper_js_1.SVGWrapper)); exports.SVGmerror = SVGmerror; -},{"../../../core/MmlTree/MmlNodes/merror.js":189,"../Wrapper.js":379}],388:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNodes/merror.js":191,"../Wrapper.js":381}],390:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -55586,7 +55679,7 @@ var SVGmfenced = (function (_super) { }((0, mfenced_js_1.CommonMfencedMixin)(Wrapper_js_1.SVGWrapper))); exports.SVGmfenced = SVGmfenced; -},{"../../../core/MmlTree/MmlNodes/mfenced.js":190,"../../common/Wrappers/mfenced.js":328,"../Wrapper.js":379}],389:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNodes/mfenced.js":192,"../../common/Wrappers/mfenced.js":330,"../Wrapper.js":381}],391:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -55703,7 +55796,7 @@ var SVGmfrac = (function (_super) { }((0, mfrac_js_1.CommonMfracMixin)(Wrapper_js_1.SVGWrapper))); exports.SVGmfrac = SVGmfrac; -},{"../../../core/MmlTree/MmlNodes/mfrac.js":191,"../../common/Wrappers/mfrac.js":329,"../Wrapper.js":379}],390:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNodes/mfrac.js":193,"../../common/Wrappers/mfrac.js":331,"../Wrapper.js":381}],392:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -55755,7 +55848,7 @@ var SVGmglyph = (function (_super) { }((0, mglyph_js_1.CommonMglyphMixin)(Wrapper_js_1.SVGWrapper))); exports.SVGmglyph = SVGmglyph; -},{"../../../core/MmlTree/MmlNodes/mglyph.js":192,"../../common/Wrappers/mglyph.js":330,"../Wrapper.js":379}],391:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNodes/mglyph.js":194,"../../common/Wrappers/mglyph.js":332,"../Wrapper.js":381}],393:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -55787,7 +55880,7 @@ var SVGmi = (function (_super) { }((0, mi_js_1.CommonMiMixin)(Wrapper_js_1.SVGWrapper))); exports.SVGmi = SVGmi; -},{"../../../core/MmlTree/MmlNodes/mi.js":193,"../../common/Wrappers/mi.js":331,"../Wrapper.js":379}],392:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNodes/mi.js":195,"../../common/Wrappers/mi.js":333,"../Wrapper.js":381}],394:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -55886,7 +55979,7 @@ var SVGmmultiscripts = (function (_super) { }((0, mmultiscripts_js_1.CommonMmultiscriptsMixin)(msubsup_js_1.SVGmsubsup))); exports.SVGmmultiscripts = SVGmmultiscripts; -},{"../../../core/MmlTree/MmlNodes/mmultiscripts.js":194,"../../../util/string.js":448,"../../common/Wrappers/mmultiscripts.js":332,"./msubsup.js":402}],393:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNodes/mmultiscripts.js":196,"../../../util/string.js":450,"../../common/Wrappers/mmultiscripts.js":334,"./msubsup.js":404}],395:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -55918,7 +56011,7 @@ var SVGmn = (function (_super) { }((0, mn_js_1.CommonMnMixin)(Wrapper_js_1.SVGWrapper))); exports.SVGmn = SVGmn; -},{"../../../core/MmlTree/MmlNodes/mn.js":195,"../../common/Wrappers/mn.js":333,"../Wrapper.js":379}],394:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNodes/mn.js":197,"../../common/Wrappers/mn.js":335,"../Wrapper.js":381}],396:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -56150,7 +56243,7 @@ var SVGmo = (function (_super) { }((0, mo_js_1.CommonMoMixin)(Wrapper_js_1.SVGWrapper))); exports.SVGmo = SVGmo; -},{"../../../core/MmlTree/MmlNodes/mo.js":196,"../../common/Wrappers/mo.js":334,"../Wrapper.js":379}],395:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNodes/mo.js":198,"../../common/Wrappers/mo.js":336,"../Wrapper.js":381}],397:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -56209,7 +56302,7 @@ var SVGmpadded = (function (_super) { }((0, mpadded_js_1.CommonMpaddedMixin)(Wrapper_js_1.SVGWrapper))); exports.SVGmpadded = SVGmpadded; -},{"../../../core/MmlTree/MmlNodes/mpadded.js":197,"../../common/Wrappers/mpadded.js":335,"../Wrapper.js":379}],396:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNodes/mpadded.js":199,"../../common/Wrappers/mpadded.js":337,"../Wrapper.js":381}],398:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -56243,7 +56336,7 @@ var SVGmphantom = (function (_super) { }(Wrapper_js_1.SVGWrapper)); exports.SVGmphantom = SVGmphantom; -},{"../../../core/MmlTree/MmlNodes/mphantom.js":198,"../Wrapper.js":379}],397:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNodes/mphantom.js":200,"../Wrapper.js":381}],399:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -56298,7 +56391,7 @@ var SVGmroot = (function (_super) { }((0, mroot_js_1.CommonMrootMixin)(msqrt_js_1.SVGmsqrt))); exports.SVGmroot = SVGmroot; -},{"../../../core/MmlTree/MmlNodes/mroot.js":199,"../../common/Wrappers/mroot.js":336,"./msqrt.js":401}],398:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNodes/mroot.js":201,"../../common/Wrappers/mroot.js":338,"./msqrt.js":403}],400:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -56344,7 +56437,7 @@ var SVGinferredMrow = (function (_super) { }((0, mrow_js_2.CommonInferredMrowMixin)(SVGmrow))); exports.SVGinferredMrow = SVGinferredMrow; -},{"../../../core/MmlTree/MmlNodes/mrow.js":200,"../../common/Wrappers/mrow.js":337,"../Wrapper.js":379}],399:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNodes/mrow.js":202,"../../common/Wrappers/mrow.js":339,"../Wrapper.js":381}],401:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -56376,7 +56469,7 @@ var SVGms = (function (_super) { }((0, ms_js_1.CommonMsMixin)(Wrapper_js_1.SVGWrapper))); exports.SVGms = SVGms; -},{"../../../core/MmlTree/MmlNodes/ms.js":201,"../../common/Wrappers/ms.js":338,"../Wrapper.js":379}],400:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNodes/ms.js":203,"../../common/Wrappers/ms.js":340,"../Wrapper.js":381}],402:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -56408,7 +56501,7 @@ var SVGmspace = (function (_super) { }((0, mspace_js_1.CommonMspaceMixin)(Wrapper_js_1.SVGWrapper))); exports.SVGmspace = SVGmspace; -},{"../../../core/MmlTree/MmlNodes/mspace.js":202,"../../common/Wrappers/mspace.js":339,"../Wrapper.js":379}],401:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNodes/mspace.js":204,"../../common/Wrappers/mspace.js":341,"../Wrapper.js":381}],403:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -56465,7 +56558,7 @@ var SVGmsqrt = (function (_super) { }((0, msqrt_js_1.CommonMsqrtMixin)(Wrapper_js_1.SVGWrapper))); exports.SVGmsqrt = SVGmsqrt; -},{"../../../core/MmlTree/MmlNodes/msqrt.js":203,"../../common/Wrappers/msqrt.js":340,"../Wrapper.js":379}],402:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNodes/msqrt.js":205,"../../common/Wrappers/msqrt.js":342,"../Wrapper.js":381}],404:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -56545,7 +56638,7 @@ var SVGmsubsup = (function (_super) { }((0, msubsup_js_3.CommonMsubsupMixin)(scriptbase_js_1.SVGscriptbase))); exports.SVGmsubsup = SVGmsubsup; -},{"../../../core/MmlTree/MmlNodes/msubsup.js":205,"../../common/Wrappers/msubsup.js":341,"./scriptbase.js":408}],403:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNodes/msubsup.js":207,"../../common/Wrappers/msubsup.js":343,"./scriptbase.js":410}],405:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -56835,7 +56928,7 @@ var SVGmtable = (function (_super) { }((0, mtable_js_1.CommonMtableMixin)(Wrapper_js_1.SVGWrapper))); exports.SVGmtable = SVGmtable; -},{"../../../core/MmlTree/MmlNodes/mtable.js":206,"../../common/Wrappers/mtable.js":342,"../Wrapper.js":379}],404:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNodes/mtable.js":208,"../../common/Wrappers/mtable.js":344,"../Wrapper.js":381}],406:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -56888,7 +56981,7 @@ var SVGmtd = (function (_super) { }((0, mtd_js_1.CommonMtdMixin)(Wrapper_js_1.SVGWrapper))); exports.SVGmtd = SVGmtd; -},{"../../../core/MmlTree/MmlNodes/mtd.js":207,"../../common/Wrappers/mtd.js":343,"../Wrapper.js":379}],405:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNodes/mtd.js":209,"../../common/Wrappers/mtd.js":345,"../Wrapper.js":381}],407:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -56920,7 +57013,7 @@ var SVGmtext = (function (_super) { }((0, mtext_js_1.CommonMtextMixin)(Wrapper_js_1.SVGWrapper))); exports.SVGmtext = SVGmtext; -},{"../../../core/MmlTree/MmlNodes/mtext.js":208,"../../common/Wrappers/mtext.js":344,"../Wrapper.js":379}],406:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNodes/mtext.js":210,"../../common/Wrappers/mtext.js":346,"../Wrapper.js":381}],408:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -57037,7 +57130,7 @@ var SVGmlabeledtr = (function (_super) { }((0, mtr_js_2.CommonMlabeledtrMixin)(SVGmtr))); exports.SVGmlabeledtr = SVGmlabeledtr; -},{"../../../core/MmlTree/MmlNodes/mtr.js":209,"../../common/Wrappers/mtr.js":345,"../Wrapper.js":379}],407:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNodes/mtr.js":211,"../../common/Wrappers/mtr.js":347,"../Wrapper.js":381}],409:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -57156,7 +57249,7 @@ var SVGmunderover = (function (_super) { }((0, munderover_js_3.CommonMunderoverMixin)(msubsup_js_1.SVGmsubsup))); exports.SVGmunderover = SVGmunderover; -},{"../../../core/MmlTree/MmlNodes/munderover.js":210,"../../common/Wrappers/munderover.js":346,"./msubsup.js":402}],408:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNodes/munderover.js":212,"../../common/Wrappers/munderover.js":348,"./msubsup.js":404}],410:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -57211,7 +57304,7 @@ var SVGscriptbase = (function (_super) { }((0, scriptbase_js_1.CommonScriptbaseMixin)(Wrapper_js_1.SVGWrapper))); exports.SVGscriptbase = SVGscriptbase; -},{"../../common/Wrappers/scriptbase.js":347,"../Wrapper.js":379}],409:[function(require,module,exports){ +},{"../../common/Wrappers/scriptbase.js":349,"../Wrapper.js":381}],411:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -57314,7 +57407,7 @@ var SVGxml = (function (_super) { }(Wrapper_js_1.SVGWrapper)); exports.SVGxml = SVGxml; -},{"../../../core/MmlTree/MmlNode.js":181,"../../../core/MmlTree/MmlNodes/semantics.js":211,"../../common/Wrappers/semantics.js":348,"../Wrapper.js":379}],410:[function(require,module,exports){ +},{"../../../core/MmlTree/MmlNode.js":183,"../../../core/MmlTree/MmlNodes/semantics.js":213,"../../common/Wrappers/semantics.js":350,"../Wrapper.js":381}],412:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -57450,7 +57543,7 @@ var TeXFont = (function (_super) { }((0, tex_js_1.CommonTeXFontMixin)(FontData_js_1.SVGFontData))); exports.TeXFont = TeXFont; -},{"../../common/fonts/tex.js":349,"../../common/fonts/tex/delimiters.js":352,"../FontData.js":377,"./tex/bold-italic.js":411,"./tex/bold.js":412,"./tex/double-struck.js":413,"./tex/fraktur-bold.js":414,"./tex/fraktur.js":415,"./tex/italic.js":416,"./tex/largeop.js":417,"./tex/monospace.js":418,"./tex/normal.js":419,"./tex/sans-serif-bold-italic.js":420,"./tex/sans-serif-bold.js":421,"./tex/sans-serif-italic.js":422,"./tex/sans-serif.js":423,"./tex/script-bold.js":424,"./tex/script.js":425,"./tex/smallop.js":426,"./tex/tex-calligraphic-bold.js":427,"./tex/tex-calligraphic.js":428,"./tex/tex-mathit.js":429,"./tex/tex-oldstyle-bold.js":430,"./tex/tex-oldstyle.js":431,"./tex/tex-size3.js":432,"./tex/tex-size4.js":433,"./tex/tex-variant.js":434}],411:[function(require,module,exports){ +},{"../../common/fonts/tex.js":351,"../../common/fonts/tex/delimiters.js":354,"../FontData.js":379,"./tex/bold-italic.js":413,"./tex/bold.js":414,"./tex/double-struck.js":415,"./tex/fraktur-bold.js":416,"./tex/fraktur.js":417,"./tex/italic.js":418,"./tex/largeop.js":419,"./tex/monospace.js":420,"./tex/normal.js":421,"./tex/sans-serif-bold-italic.js":422,"./tex/sans-serif-bold.js":423,"./tex/sans-serif-italic.js":424,"./tex/sans-serif.js":425,"./tex/script-bold.js":426,"./tex/script.js":427,"./tex/smallop.js":428,"./tex/tex-calligraphic-bold.js":429,"./tex/tex-calligraphic.js":430,"./tex/tex-mathit.js":431,"./tex/tex-oldstyle-bold.js":432,"./tex/tex-oldstyle.js":433,"./tex/tex-size3.js":434,"./tex/tex-size4.js":435,"./tex/tex-variant.js":436}],413:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.boldItalic = void 0; @@ -57465,7 +57558,7 @@ exports.boldItalic = (0, FontData_js_1.AddPaths)(bold_italic_js_1.boldItalic, { 0x29F8: '189 -210Q179 -210 170 -203T160 -179Q160 -171 162 -166Q164 -163 420 266T679 698Q686 711 704 711Q714 711 723 704T733 681Q733 672 730 667Q723 654 469 228T211 -201Q202 -210 189 -210', }, {}); -},{"../../../common/fonts/tex/bold-italic.js":350,"../../FontData.js":377}],412:[function(require,module,exports){ +},{"../../../common/fonts/tex/bold-italic.js":352,"../../FontData.js":379}],414:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.bold = void 0; @@ -57730,14 +57823,14 @@ exports.bold = (0, FontData_js_1.AddPaths)(bold_js_1.bold, { 0x22E3: "\u2292\u0338", }); -},{"../../../common/fonts/tex/bold.js":351,"../../FontData.js":377}],413:[function(require,module,exports){ +},{"../../../common/fonts/tex/bold.js":353,"../../FontData.js":379}],415:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.doubleStruck = void 0; var double_struck_js_1 = require("../../../common/fonts/tex/double-struck.js"); Object.defineProperty(exports, "doubleStruck", { enumerable: true, get: function () { return double_struck_js_1.doubleStruck; } }); -},{"../../../common/fonts/tex/double-struck.js":353}],414:[function(require,module,exports){ +},{"../../../common/fonts/tex/double-struck.js":355}],416:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.frakturBold = void 0; @@ -57785,7 +57878,7 @@ exports.frakturBold = (0, FontData_js_1.AddPaths)(fraktur_bold_js_1.frakturBold, 0xE309: '351 571Q317 571 247 563T171 555Q153 555 133 563T107 584Q94 605 98 609Q101 615 138 658T190 717H207Q204 710 204 699Q204 673 231 666Q235 665 264 665Q296 665 345 667T426 669Q474 669 501 660T545 626Q553 612 553 594Q553 531 498 474T379 384Q371 379 371 378Q371 376 390 376H411H434Q520 376 602 318Q621 303 627 288T633 234Q633 59 540 -34Q465 -109 348 -130Q308 -137 235 -137Q159 -136 143 -129Q132 -125 132 -118V-53Q118 -24 90 -24Q69 -24 37 -39L27 -44L25 -42Q23 -39 21 -35T17 -30Q17 -28 40 -14T103 19T177 44Q183 45 205 45Q219 45 227 44T245 37T259 20T264 -12Q264 -33 262 -48T259 -80Q259 -93 260 -95Q271 -110 305 -110Q343 -110 383 -86T443 -33Q491 34 491 154Q491 223 467 249Q428 288 334 288H322Q288 288 237 276L222 273L206 286L262 367Q279 369 303 377T358 403T410 452T431 524Q431 531 431 533T427 545T416 558T392 566T351 571', }, {}); -},{"../../../common/fonts/tex/fraktur-bold.js":354,"../../FontData.js":377}],415:[function(require,module,exports){ +},{"../../../common/fonts/tex/fraktur-bold.js":356,"../../FontData.js":379}],417:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.fraktur = void 0; @@ -57834,7 +57927,7 @@ exports.fraktur = (0, FontData_js_1.AddPaths)(fraktur_js_1.fraktur, { 0xE307: '337 91V78L324 71Q288 53 256 29T206 -8T180 -22Q174 -22 158 -9Q82 46 60 46H59L63 51Q67 56 73 68T85 96Q101 158 101 254Q101 300 95 330T83 370T66 394L53 388Q48 385 41 382T24 374Q22 376 20 378T16 381T13 383T10 385V386L119 475Q150 439 160 430L171 422V409Q173 377 173 300Q173 228 166 183T152 122T145 102Q207 81 242 58L337 104V111Q340 146 340 227Q340 320 339 351T338 408V423L422 469Q425 465 429 462L426 438Q413 354 413 251Q413 152 423 119Q426 110 435 96T452 82Q454 82 509 103Q514 98 514 89Q514 87 507 81T472 51T409 -7L395 -20Q393 -18 390 -17Q386 -14 382 -6Q380 -2 379 1Q369 24 361 40T348 62T341 73T338 84L337 91', }, {}); -},{"../../../common/fonts/tex/fraktur.js":355,"../../FontData.js":377}],416:[function(require,module,exports){ +},{"../../../common/fonts/tex/fraktur.js":357,"../../FontData.js":379}],418:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.italic = void 0; @@ -57903,7 +57996,7 @@ exports.italic = (0, FontData_js_1.AddPaths)(italic_js_1.italic, { 0x29F8: '166 -215T159 -215T147 -212T141 -204T139 -197Q139 -190 144 -183Q157 -157 378 274T602 707Q605 716 618 716Q625 716 630 712T636 703T638 696Q638 691 406 241T170 -212Q166 -215 159 -215', }, {}); -},{"../../../common/fonts/tex/italic.js":356,"../../FontData.js":377}],417:[function(require,module,exports){ +},{"../../../common/fonts/tex/italic.js":358,"../../FontData.js":379}],419:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.largeop = void 0; @@ -57963,7 +58056,7 @@ exports.largeop = (0, FontData_js_1.AddPaths)(largeop_js_1.largeop, { 0x2A0C: "\u222C\u222C", }); -},{"../../../common/fonts/tex/largeop.js":357,"../../FontData.js":377}],418:[function(require,module,exports){ +},{"../../../common/fonts/tex/largeop.js":359,"../../FontData.js":379}],420:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.monospace = void 0; @@ -58051,7 +58144,7 @@ exports.monospace = (0, FontData_js_1.AddPaths)(monospace_js_1.monospace, { 0x2057: "\u2032\u2032\u2032\u2032", }); -},{"../../../common/fonts/tex/monospace.js":358,"../../FontData.js":377}],419:[function(require,module,exports){ +},{"../../../common/fonts/tex/monospace.js":360,"../../FontData.js":379}],421:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.normal = void 0; @@ -59359,7 +59452,7 @@ exports.normal = (0, FontData_js_1.AddPaths)(normal_js_1.normal, { 0x2A0C: "\u222C\u222C", }); -},{"../../../common/fonts/tex/normal.js":359,"../../FontData.js":377}],420:[function(require,module,exports){ +},{"../../../common/fonts/tex/normal.js":361,"../../FontData.js":379}],422:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.sansSerifBoldItalic = void 0; @@ -59370,7 +59463,7 @@ exports.sansSerifBoldItalic = (0, FontData_js_1.AddPaths)(sans_serif_bold_italic 0x237: '-38 -84Q-36 -84 -14 -95T33 -106H38Q70 -103 78 -86Q83 -78 83 -49T84 180Q84 427 86 433Q93 458 136 458H158H180Q201 458 209 456T225 443Q230 436 231 418Q232 397 232 313V183V124V40Q232 -55 228 -87T203 -147Q166 -205 78 -205Q31 -205 -20 -189T-71 -159Q-71 -156 -59 -123Q-50 -96 -47 -91T-38 -84', }, {}); -},{"../../../common/fonts/tex/sans-serif-bold-italic.js":360,"../../FontData.js":377}],421:[function(require,module,exports){ +},{"../../../common/fonts/tex/sans-serif-bold-italic.js":362,"../../FontData.js":379}],423:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.sansSerifBold = void 0; @@ -59427,7 +59520,7 @@ exports.sansSerifBold = (0, FontData_js_1.AddPaths)(sans_serif_bold_js_1.sansSer 0x2206: '381 692Q386 694 458 694Q516 694 527 693T549 687Q564 680 575 663Q576 658 715 349T856 27Q856 6 838 1H826Q815 1 795 1T747 1T686 1T616 0T539 0T458 0T378 0T300 0T230 0T169 1T122 1T90 1H78Q60 6 60 27Q62 38 201 349T341 663Q356 687 381 692ZM627 148Q626 149 581 250T492 453L447 554Q447 553 446 552Q444 546 326 278L268 148Q268 147 448 147Q627 147 627 148', }, {}); -},{"../../../common/fonts/tex/sans-serif-bold.js":361,"../../FontData.js":377}],422:[function(require,module,exports){ +},{"../../../common/fonts/tex/sans-serif-bold.js":363,"../../FontData.js":379}],424:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.sansSerifItalic = void 0; @@ -59518,7 +59611,7 @@ exports.sansSerifItalic = (0, FontData_js_1.AddPaths)(sans_serif_italic_js_1.san 0x2206: '273 343L510 694H617Q790 2 790 0H416L42 1L273 343ZM539 576Q536 597 536 600Q536 602 535 605Q534 607 534 607Q527 580 222 130L201 98H651L648 110Q645 123 639 149T627 198Q554 489 539 576', }, {}); -},{"../../../common/fonts/tex/sans-serif-italic.js":362,"../../FontData.js":377}],423:[function(require,module,exports){ +},{"../../../common/fonts/tex/sans-serif-italic.js":364,"../../FontData.js":379}],425:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.sansSerif = void 0; @@ -59599,21 +59692,21 @@ exports.sansSerif = (0, FontData_js_1.AddPaths)(sans_serif_js_1.sansSerif, { 0x2206: '203 348L362 694H470L629 348Q789 2 790 1Q790 0 416 0T42 1Q43 2 203 348ZM630 98Q630 100 584 198T481 422T407 603L405 610L403 600Q388 544 191 122L180 99L405 98H630', }, {}); -},{"../../../common/fonts/tex/sans-serif.js":363,"../../FontData.js":377}],424:[function(require,module,exports){ +},{"../../../common/fonts/tex/sans-serif.js":365,"../../FontData.js":379}],426:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.scriptBold = void 0; var script_bold_js_1 = require("../../../common/fonts/tex/script-bold.js"); Object.defineProperty(exports, "scriptBold", { enumerable: true, get: function () { return script_bold_js_1.scriptBold; } }); -},{"../../../common/fonts/tex/script-bold.js":364}],425:[function(require,module,exports){ +},{"../../../common/fonts/tex/script-bold.js":366}],427:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.script = void 0; var script_js_1 = require("../../../common/fonts/tex/script.js"); Object.defineProperty(exports, "script", { enumerable: true, get: function () { return script_js_1.script; } }); -},{"../../../common/fonts/tex/script.js":365}],426:[function(require,module,exports){ +},{"../../../common/fonts/tex/script.js":367}],428:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.smallop = void 0; @@ -59673,7 +59766,7 @@ exports.smallop = (0, FontData_js_1.AddPaths)(smallop_js_1.smallop, { 0x2A0C: "\u222C\u222C", }); -},{"../../../common/fonts/tex/smallop.js":366,"../../FontData.js":377}],427:[function(require,module,exports){ +},{"../../../common/fonts/tex/smallop.js":368,"../../FontData.js":379}],429:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.texCalligraphicBold = void 0; @@ -59710,7 +59803,7 @@ exports.texCalligraphicBold = (0, FontData_js_1.AddPaths)(tex_calligraphic_bold_ 0x237: '297 360T297 373T294 392T288 400T278 401H276Q237 398 200 363Q181 343 170 325T156 299T149 287T129 282H123H116Q102 282 97 284T92 298Q93 303 98 315T118 349T151 390T201 427T267 451H279Q357 451 388 422T420 354V339L370 138Q321 -60 317 -69Q287 -157 163 -194Q133 -201 99 -201Q39 -201 14 -178T-12 -125Q-12 -94 11 -69T68 -43Q93 -43 108 -57T123 -95Q123 -121 100 -151H104Q131 -151 155 -125T193 -60Q195 -54 244 141T294 345Q297 360 297 373', }, {}); -},{"../../../common/fonts/tex/tex-calligraphic-bold.js":367,"../../FontData.js":377}],428:[function(require,module,exports){ +},{"../../../common/fonts/tex/tex-calligraphic-bold.js":369,"../../FontData.js":379}],430:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.texCalligraphic = void 0; @@ -59745,7 +59838,7 @@ exports.texCalligraphic = (0, FontData_js_1.AddPaths)(tex_calligraphic_js_1.texC 0x5A: '694 220Q708 220 708 210Q708 195 695 167T658 105T593 42T502 3Q492 1 458 1Q400 1 293 11T150 22Q116 22 92 11T51 0Q37 0 37 10Q37 21 63 44T179 146T367 319L391 343H343L296 344Q285 350 285 358Q285 365 289 372T300 383T313 392T324 398L329 400H450L561 518Q597 558 607 571L621 587H596Q553 589 484 599T383 609Q342 609 326 596T301 555Q294 533 263 514T208 492Q189 492 189 503Q189 510 197 528T215 559Q249 607 318 645T466 683Q504 683 573 673T669 662L690 661Q734 682 748 683Q767 683 767 673Q767 666 746 640Q655 531 555 428L529 400Q529 399 543 399Q604 397 604 366Q604 350 587 337T551 322Q541 322 539 323Q529 328 529 334Q529 339 487 342L470 343L446 320Q272 153 200 96L235 95Q297 95 392 86T533 74H554Q586 116 597 159Q604 179 635 199T694 220', }, {}); -},{"../../../common/fonts/tex/tex-calligraphic.js":368,"../../FontData.js":377}],429:[function(require,module,exports){ +},{"../../../common/fonts/tex/tex-calligraphic.js":370,"../../FontData.js":379}],431:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.texMathit = void 0; @@ -59806,7 +59899,7 @@ exports.texMathit = (0, FontData_js_1.AddPaths)(tex_mathit_js_1.texMathit, { 0x7A: '160 317Q158 317 155 317Q136 317 136 324Q136 351 171 396T260 442Q292 442 321 410T365 375H369Q384 375 404 408L425 441Q427 442 444 442H460Q466 436 466 434Q466 419 426 367Q387 314 294 222T178 105L170 95L181 94Q198 93 236 81T295 68Q328 68 356 89T395 141Q398 150 401 151T419 153Q441 153 441 144Q441 110 394 50T282 -11Q251 -11 221 23T171 57Q157 57 143 47T121 26T104 3T95 -10Q93 -11 76 -11H60Q54 -5 54 -2Q54 3 61 14Q103 88 233 215Q349 329 349 338L302 351Q269 362 247 362Q227 362 212 356T192 342T183 327T178 320Q175 317 160 317', }, {}); -},{"../../../common/fonts/tex/tex-mathit.js":369,"../../FontData.js":377}],430:[function(require,module,exports){ +},{"../../../common/fonts/tex/tex-mathit.js":371,"../../FontData.js":379}],432:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.texOldstyleBold = void 0; @@ -59851,7 +59944,7 @@ exports.texOldstyleBold = (0, FontData_js_1.AddPaths)(tex_oldstyle_bold_js_1.tex 0x5A: '622 574Q522 579 420 579H396Q373 579 364 574T351 550Q339 516 297 490T218 462Q195 462 195 479Q195 487 197 492Q218 565 313 625T509 685Q564 685 650 683T755 680Q787 680 807 683T831 686Q853 686 853 669Q853 657 826 626Q742 532 641 437L619 415L622 414Q626 414 631 414T642 414Q697 411 697 388Q697 367 670 345T607 323Q605 323 592 325T546 329H522L490 302Q457 274 400 226T289 136L260 113L318 112Q345 111 452 109T587 106H627Q650 143 656 170Q666 197 710 225T788 253Q811 253 811 237Q811 211 781 160T710 77Q619 0 515 0Q507 0 497 0T484 1Q434 1 319 3T177 6Q123 6 95 2Q83 2 71 0H68Q46 0 46 17Q46 28 58 44Q68 56 100 80T210 165T383 307L408 329H361L314 330Q297 338 297 350Q297 368 320 388T368 413Q375 415 441 415H506L647 555L664 574H622', }, {}); -},{"../../../common/fonts/tex/tex-oldstyle-bold.js":370,"../../FontData.js":377}],431:[function(require,module,exports){ +},{"../../../common/fonts/tex/tex-oldstyle-bold.js":372,"../../FontData.js":379}],433:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.texOldstyle = void 0; @@ -59896,7 +59989,7 @@ exports.texOldstyle = (0, FontData_js_1.AddPaths)(tex_oldstyle_js_1.texOldstyle, 0x5A: '694 220Q708 220 708 210Q708 195 695 167T658 105T593 42T502 3Q492 1 458 1Q400 1 293 11T150 22Q116 22 92 11T51 0Q37 0 37 10Q37 21 63 44T179 146T367 319L391 343H343L296 344Q285 350 285 358Q285 365 289 372T300 383T313 392T324 398L329 400H450L561 518Q597 558 607 571L621 587H596Q553 589 484 599T383 609Q342 609 326 596T301 555Q294 533 263 514T208 492Q189 492 189 503Q189 510 197 528T215 559Q249 607 318 645T466 683Q504 683 573 673T669 662L690 661Q734 682 748 683Q767 683 767 673Q767 666 746 640Q655 531 555 428L529 400Q529 399 543 399Q604 397 604 366Q604 350 587 337T551 322Q541 322 539 323Q529 328 529 334Q529 339 487 342L470 343L446 320Q272 153 200 96L235 95Q297 95 392 86T533 74H554Q586 116 597 159Q604 179 635 199T694 220', }, {}); -},{"../../../common/fonts/tex/tex-oldstyle.js":371,"../../FontData.js":377}],432:[function(require,module,exports){ +},{"../../../common/fonts/tex/tex-oldstyle.js":373,"../../FontData.js":379}],434:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.texSize3 = void 0; @@ -59929,7 +60022,7 @@ exports.texSize3 = (0, FontData_js_1.AddPaths)(tex_size3_js_1.texSize3, { 0x3009: '94 1424Q94 1426 97 1432T107 1444T124 1450Q141 1450 152 1435Q154 1431 388 845L623 259V242L388 -345Q153 -933 152 -934Q142 -949 127 -949H125Q95 -949 95 -919V-910L327 -331Q559 247 559 250T327 831Q94 1411 94 1424', }, {}); -},{"../../../common/fonts/tex/tex-size3.js":372,"../../FontData.js":377}],433:[function(require,module,exports){ +},{"../../../common/fonts/tex/tex-size3.js":374,"../../FontData.js":379}],435:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.texSize4 = void 0; @@ -59992,7 +60085,7 @@ exports.texSize4 = (0, FontData_js_1.AddPaths)(tex_size4_js_1.texSize4, { 0xE156: "\uE151\uE150", }); -},{"../../../common/fonts/tex/tex-size4.js":373,"../../FontData.js":377}],434:[function(require,module,exports){ +},{"../../../common/fonts/tex/tex-size4.js":375,"../../FontData.js":379}],436:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.texVariant = void 0; @@ -60039,7 +60132,7 @@ exports.texVariant = (0, FontData_js_1.AddPaths)(tex_variant_js_1.texVariant, { 0x2ACC: '82 732Q82 739 95 752H251Q415 752 426 750Q539 736 615 657Q667 599 689 517Q692 496 692 461T689 406Q668 325 615 266Q522 170 382 170H355L326 95Q319 80 311 59T298 28T293 17Q293 15 486 15H680Q693 0 693 -6T680 -25H275L213 -179L449 -181H682Q693 -192 693 -199T680 -221H198L178 -270Q153 -333 139 -333Q132 -333 126 -327T119 -314T135 -266T153 -223Q153 -221 124 -221H95Q82 -207 82 -201T95 -181H171L233 -25H162L93 -23L86 -19Q82 -14 82 -7T95 15H251L313 170H202L93 172L86 177Q82 182 82 190Q82 199 93 210H211L329 212L349 261Q366 301 372 311T386 321Q392 321 399 315T407 302Q407 295 390 254T373 210Q374 209 377 209Q412 209 444 217Q512 231 564 273T638 377Q651 414 651 461Q651 509 638 548Q613 613 555 656T422 710Q411 712 249 712H95Q82 727 82 732', }, {}); -},{"../../../common/fonts/tex/tex-variant.js":374,"../../FontData.js":377}],435:[function(require,module,exports){ +},{"../../../common/fonts/tex/tex-variant.js":376,"../../FontData.js":379}],437:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.asyncLoad = void 0; @@ -60060,7 +60153,7 @@ function asyncLoad(name) { } exports.asyncLoad = asyncLoad; -},{"../mathjax.js":317}],436:[function(require,module,exports){ +},{"../mathjax.js":319}],438:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.BBox = void 0; @@ -60146,7 +60239,7 @@ var BBox = (function () { }()); exports.BBox = BBox; -},{"./lengths.js":446}],437:[function(require,module,exports){ +},{"./lengths.js":448}],439:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -60277,7 +60370,7 @@ function BitFieldClass() { } exports.BitFieldClass = BitFieldClass; -},{}],438:[function(require,module,exports){ +},{}],440:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.numeric = exports.translate = exports.remove = exports.add = exports.entities = exports.options = void 0; @@ -60732,7 +60825,7 @@ function numeric(entity) { } exports.numeric = numeric; -},{"./AsyncLoad.js":435,"./Retries.js":443}],439:[function(require,module,exports){ +},{"./AsyncLoad.js":437,"./Retries.js":445}],441:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -60846,7 +60939,7 @@ var FunctionList = (function (_super) { }(PrioritizedList_js_1.PrioritizedList)); exports.FunctionList = FunctionList; -},{"./PrioritizedList.js":442}],440:[function(require,module,exports){ +},{"./PrioritizedList.js":444}],442:[function(require,module,exports){ "use strict"; var __generator = (this && this.__generator) || function (thisArg, body) { var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; @@ -61159,7 +61252,7 @@ var LinkedList = (function () { }()); exports.LinkedList = LinkedList; -},{}],441:[function(require,module,exports){ +},{}],443:[function(require,module,exports){ "use strict"; var __values = (this && this.__values) || function(o) { var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; @@ -61415,7 +61508,7 @@ function lookup(name, lookup, def) { } exports.lookup = lookup; -},{}],442:[function(require,module,exports){ +},{}],444:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PrioritizedList = void 0; @@ -61456,7 +61549,7 @@ var PrioritizedList = (function () { }()); exports.PrioritizedList = PrioritizedList; -},{}],443:[function(require,module,exports){ +},{}],445:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.retryAfter = exports.handleRetriesFor = void 0; @@ -61487,7 +61580,7 @@ function retryAfter(promise) { } exports.retryAfter = retryAfter; -},{}],444:[function(require,module,exports){ +},{}],446:[function(require,module,exports){ "use strict"; var __values = (this && this.__values) || function(o) { var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; @@ -61606,7 +61699,7 @@ var CssStyles = (function () { }()); exports.CssStyles = CssStyles; -},{}],445:[function(require,module,exports){ +},{}],447:[function(require,module,exports){ "use strict"; var __values = (this && this.__values) || function(o) { var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; @@ -62096,7 +62189,7 @@ var Styles = (function () { }()); exports.Styles = Styles; -},{}],446:[function(require,module,exports){ +},{}],448:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.px = exports.emRounded = exports.em = exports.percent = exports.length2em = exports.MATHSPACE = exports.RELUNITS = exports.UNITS = exports.BIGDIMEN = void 0; @@ -62197,7 +62290,7 @@ function px(m, M, em) { } exports.px = px; -},{}],447:[function(require,module,exports){ +},{}],449:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.max = exports.sum = void 0; @@ -62210,7 +62303,7 @@ function max(A) { } exports.max = max; -},{}],448:[function(require,module,exports){ +},{}],450:[function(require,module,exports){ "use strict"; var __read = (this && this.__read) || function (o, n) { var m = typeof Symbol === "function" && o[Symbol.iterator]; @@ -62264,7 +62357,7 @@ function split(x) { } exports.split = split; -},{}],449:[function(require,module,exports){ +},{}],451:[function(require,module,exports){ 'use strict'; @@ -62388,7 +62481,7 @@ decode.componentChars = ''; module.exports = decode; -},{}],450:[function(require,module,exports){ +},{}],452:[function(require,module,exports){ 'use strict'; @@ -62488,7 +62581,7 @@ encode.componentChars = "-_.!~*'()"; module.exports = encode; -},{}],451:[function(require,module,exports){ +},{}],453:[function(require,module,exports){ 'use strict'; @@ -62515,7 +62608,7 @@ module.exports = function format(url) { return result; }; -},{}],452:[function(require,module,exports){ +},{}],454:[function(require,module,exports){ 'use strict'; @@ -62524,7 +62617,7 @@ module.exports.decode = require('./decode'); module.exports.format = require('./format'); module.exports.parse = require('./parse'); -},{"./decode":449,"./encode":450,"./format":451,"./parse":453}],453:[function(require,module,exports){ +},{"./decode":451,"./encode":452,"./format":453,"./parse":455}],455:[function(require,module,exports){ // Copyright Joyent, Inc. and other Node contributors. // // Permission is hereby granted, free of charge, to any person obtaining a @@ -62838,14 +62931,14 @@ Url.prototype.parseHost = function(host) { module.exports = urlParse; -},{}],454:[function(require,module,exports){ +},{}],456:[function(require,module,exports){ module.exports = { lex : require('./lib/lexer'), parse: require('./lib/parser'), stringify: require('./lib/stringify') }; -},{"./lib/lexer":456,"./lib/parser":457,"./lib/stringify":458}],455:[function(require,module,exports){ +},{"./lib/lexer":458,"./lib/parser":459,"./lib/stringify":460}],457:[function(require,module,exports){ (function (process){(function (){ exports = module.exports = debug; @@ -62859,7 +62952,7 @@ function _debug(label) { process.stderr.write(args.join(' ') + '\n'); } }).call(this)}).call(this,require('_process')) -},{"_process":488}],456:[function(require,module,exports){ +},{"_process":490}],458:[function(require,module,exports){ var DEBUG = false; // `true` to print debugging info. var TIMER = false; // `true` to time calls to `lex()` and print the results. @@ -63553,7 +63646,7 @@ function lex(css) { return tokens; } -},{"./debug":455}],457:[function(require,module,exports){ +},{"./debug":457}],459:[function(require,module,exports){ var DEBUG = false; // `true` to print debugging info. var TIMER = false; // `true` to time calls to `parse()` and print the results. @@ -63846,7 +63939,7 @@ function parseRules() { return parseTokensWhile(function () { return _depth; }); } -},{"./debug":455,"./lexer":456}],458:[function(require,module,exports){ +},{"./debug":457,"./lexer":458}],460:[function(require,module,exports){ var DEBUG = false; // `true` to print debugging info. var TIMER = false; // `true` to time calls to `stringify()` and print the results. @@ -64106,7 +64199,7 @@ function stringifyProperty(node) { return indent() + name + node.value + ';'; } -},{"./debug":455}],459:[function(require,module,exports){ +},{"./debug":457}],461:[function(require,module,exports){ "use strict"; /*! ************************************************************************* @@ -65866,7 +65959,7 @@ var _mhchemTexify = { }; function assertNever(a) { } -},{}],460:[function(require,module,exports){ +},{}],462:[function(require,module,exports){ "use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; @@ -65988,7 +66081,7 @@ function generate(parsed) { } exports.generate = generate; -},{"boolbase":3}],461:[function(require,module,exports){ +},{"boolbase":3}],463:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.sequence = exports.generate = exports.compile = exports.parse = void 0; @@ -66059,7 +66152,7 @@ function sequence(formula) { } exports.sequence = sequence; -},{"./compile.js":460,"./parse.js":462}],462:[function(require,module,exports){ +},{"./compile.js":462,"./parse.js":464}],464:[function(require,module,exports){ "use strict"; // Following http://www.w3.org/TR/css3-selectors/#nth-child-pseudo Object.defineProperty(exports, "__esModule", { value: true }); @@ -66137,7 +66230,7 @@ function parse(formula) { } exports.parse = parse; -},{}],463:[function(require,module,exports){ +},{}],465:[function(require,module,exports){ 'use strict'; const doctype = require('parse5/lib/common/doctype'); @@ -66487,7 +66580,7 @@ exports.updateNodeSourceCodeLocation = function(node, endLocation) { node.sourceCodeLocation = Object.assign(node.sourceCodeLocation, endLocation); }; -},{"parse5/lib/common/doctype":464,"parse5/lib/common/html":467}],464:[function(require,module,exports){ +},{"parse5/lib/common/doctype":466,"parse5/lib/common/html":469}],466:[function(require,module,exports){ 'use strict'; const { DOCUMENT_MODE } = require('./html'); @@ -66651,7 +66744,7 @@ exports.serializeContent = function(name, publicId, systemId) { return str; }; -},{"./html":467}],465:[function(require,module,exports){ +},{"./html":469}],467:[function(require,module,exports){ 'use strict'; module.exports = { @@ -66718,7 +66811,7 @@ module.exports = { eofInElementThatCanContainOnlyText: 'eof-in-element-that-can-contain-only-text' }; -},{}],466:[function(require,module,exports){ +},{}],468:[function(require,module,exports){ 'use strict'; const Tokenizer = require('../tokenizer'); @@ -66985,7 +67078,7 @@ exports.isIntegrationPoint = function(tn, ns, attrs, foreignNS) { return false; }; -},{"../tokenizer":482,"./html":467}],467:[function(require,module,exports){ +},{"../tokenizer":484,"./html":469}],469:[function(require,module,exports){ 'use strict'; const NS = (exports.NAMESPACES = { @@ -67259,7 +67352,7 @@ exports.SPECIAL_ELEMENTS = { } }; -},{}],468:[function(require,module,exports){ +},{}],470:[function(require,module,exports){ 'use strict'; const UNDEFINED_CODE_POINTS = [ @@ -67370,7 +67463,7 @@ exports.isUndefinedCodePoint = function(cp) { return (cp >= 0xfdd0 && cp <= 0xfdef) || UNDEFINED_CODE_POINTS.indexOf(cp) > -1; }; -},{}],469:[function(require,module,exports){ +},{}],471:[function(require,module,exports){ 'use strict'; const Mixin = require('../../utils/mixin'); @@ -67415,7 +67508,7 @@ class ErrorReportingMixinBase extends Mixin { module.exports = ErrorReportingMixinBase; -},{"../../utils/mixin":487}],470:[function(require,module,exports){ +},{"../../utils/mixin":489}],472:[function(require,module,exports){ 'use strict'; const ErrorReportingMixinBase = require('./mixin-base'); @@ -67469,7 +67562,7 @@ class ErrorReportingParserMixin extends ErrorReportingMixinBase { module.exports = ErrorReportingParserMixin; -},{"../../utils/mixin":487,"../location-info/tokenizer-mixin":475,"./mixin-base":469,"./tokenizer-mixin":472}],471:[function(require,module,exports){ +},{"../../utils/mixin":489,"../location-info/tokenizer-mixin":477,"./mixin-base":471,"./tokenizer-mixin":474}],473:[function(require,module,exports){ 'use strict'; const ErrorReportingMixinBase = require('./mixin-base'); @@ -67495,7 +67588,7 @@ class ErrorReportingPreprocessorMixin extends ErrorReportingMixinBase { module.exports = ErrorReportingPreprocessorMixin; -},{"../../utils/mixin":487,"../position-tracking/preprocessor-mixin":476,"./mixin-base":469}],472:[function(require,module,exports){ +},{"../../utils/mixin":489,"../position-tracking/preprocessor-mixin":478,"./mixin-base":471}],474:[function(require,module,exports){ 'use strict'; const ErrorReportingMixinBase = require('./mixin-base'); @@ -67514,7 +67607,7 @@ class ErrorReportingTokenizerMixin extends ErrorReportingMixinBase { module.exports = ErrorReportingTokenizerMixin; -},{"../../utils/mixin":487,"./mixin-base":469,"./preprocessor-mixin":471}],473:[function(require,module,exports){ +},{"../../utils/mixin":489,"./mixin-base":471,"./preprocessor-mixin":473}],475:[function(require,module,exports){ 'use strict'; const Mixin = require('../../utils/mixin'); @@ -67551,7 +67644,7 @@ class LocationInfoOpenElementStackMixin extends Mixin { module.exports = LocationInfoOpenElementStackMixin; -},{"../../utils/mixin":487}],474:[function(require,module,exports){ +},{"../../utils/mixin":489}],476:[function(require,module,exports){ 'use strict'; const Mixin = require('../../utils/mixin'); @@ -67776,7 +67869,7 @@ class LocationInfoParserMixin extends Mixin { module.exports = LocationInfoParserMixin; -},{"../../common/html":467,"../../tokenizer":482,"../../utils/mixin":487,"./open-element-stack-mixin":473,"./tokenizer-mixin":475}],475:[function(require,module,exports){ +},{"../../common/html":469,"../../tokenizer":484,"../../utils/mixin":489,"./open-element-stack-mixin":475,"./tokenizer-mixin":477}],477:[function(require,module,exports){ 'use strict'; const Mixin = require('../../utils/mixin'); @@ -67924,7 +68017,7 @@ class LocationInfoTokenizerMixin extends Mixin { module.exports = LocationInfoTokenizerMixin; -},{"../../tokenizer":482,"../../utils/mixin":487,"../position-tracking/preprocessor-mixin":476}],476:[function(require,module,exports){ +},{"../../tokenizer":484,"../../utils/mixin":489,"../position-tracking/preprocessor-mixin":478}],478:[function(require,module,exports){ 'use strict'; const Mixin = require('../../utils/mixin'); @@ -67990,7 +68083,7 @@ class PositionTrackingPreprocessorMixin extends Mixin { module.exports = PositionTrackingPreprocessorMixin; -},{"../../utils/mixin":487}],477:[function(require,module,exports){ +},{"../../utils/mixin":489}],479:[function(require,module,exports){ 'use strict'; const Parser = require('./parser'); @@ -68021,7 +68114,7 @@ exports.serialize = function(node, options) { return serializer.serialize(); }; -},{"./parser":479,"./serializer":481}],478:[function(require,module,exports){ +},{"./parser":481,"./serializer":483}],480:[function(require,module,exports){ 'use strict'; //Const @@ -68204,7 +68297,7 @@ FormattingElementList.ELEMENT_ENTRY = 'ELEMENT_ENTRY'; module.exports = FormattingElementList; -},{}],479:[function(require,module,exports){ +},{}],481:[function(require,module,exports){ 'use strict'; const Tokenizer = require('../tokenizer'); @@ -71162,7 +71255,7 @@ function endTagInForeignContent(p, token) { } } -},{"../common/doctype":464,"../common/error-codes":465,"../common/foreign-content":466,"../common/html":467,"../common/unicode":468,"../extensions/error-reporting/parser-mixin":470,"../extensions/location-info/parser-mixin":474,"../tokenizer":482,"../tree-adapters/default":485,"../utils/merge-options":486,"../utils/mixin":487,"./formatting-element-list":478,"./open-element-stack":480}],480:[function(require,module,exports){ +},{"../common/doctype":466,"../common/error-codes":467,"../common/foreign-content":468,"../common/html":469,"../common/unicode":470,"../extensions/error-reporting/parser-mixin":472,"../extensions/location-info/parser-mixin":476,"../tokenizer":484,"../tree-adapters/default":487,"../utils/merge-options":488,"../utils/mixin":489,"./formatting-element-list":480,"./open-element-stack":482}],482:[function(require,module,exports){ 'use strict'; const HTML = require('../common/html'); @@ -71646,7 +71739,7 @@ class OpenElementStack { module.exports = OpenElementStack; -},{"../common/html":467}],481:[function(require,module,exports){ +},{"../common/html":469}],483:[function(require,module,exports){ 'use strict'; const defaultTreeAdapter = require('../tree-adapters/default'); @@ -71824,7 +71917,7 @@ Serializer.escapeString = function(str, attrMode) { module.exports = Serializer; -},{"../common/doctype":464,"../common/html":467,"../tree-adapters/default":485,"../utils/merge-options":486}],482:[function(require,module,exports){ +},{"../common/doctype":466,"../common/html":469,"../tree-adapters/default":487,"../utils/merge-options":488}],484:[function(require,module,exports){ 'use strict'; const Preprocessor = require('./preprocessor'); @@ -74022,13 +74115,13 @@ Tokenizer.getTokenAttr = function(token, attrName) { module.exports = Tokenizer; -},{"../common/error-codes":465,"../common/unicode":468,"./named-entity-data":483,"./preprocessor":484}],483:[function(require,module,exports){ +},{"../common/error-codes":467,"../common/unicode":470,"./named-entity-data":485,"./preprocessor":486}],485:[function(require,module,exports){ 'use strict'; //NOTE: this file contains auto-generated array mapped radix tree that is used for the named entity references consumption //(details: https://github.com/inikulin/parse5/tree/master/scripts/generate-named-entity-data/README.md) module.exports = new Uint16Array([4,52,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,106,303,412,810,1432,1701,1796,1987,2114,2360,2420,2484,3170,3251,4140,4393,4575,4610,5106,5512,5728,6117,6274,6315,6345,6427,6516,7002,7910,8733,9323,9870,10170,10631,10893,11318,11386,11467,12773,13092,14474,14922,15448,15542,16419,17666,18166,18611,19004,19095,19298,19397,4,16,69,77,97,98,99,102,103,108,109,110,111,112,114,115,116,117,140,150,158,169,176,194,199,210,216,222,226,242,256,266,283,294,108,105,103,5,198,1,59,148,1,198,80,5,38,1,59,156,1,38,99,117,116,101,5,193,1,59,167,1,193,114,101,118,101,59,1,258,4,2,105,121,182,191,114,99,5,194,1,59,189,1,194,59,1,1040,114,59,3,55349,56580,114,97,118,101,5,192,1,59,208,1,192,112,104,97,59,1,913,97,99,114,59,1,256,100,59,1,10835,4,2,103,112,232,237,111,110,59,1,260,102,59,3,55349,56632,112,108,121,70,117,110,99,116,105,111,110,59,1,8289,105,110,103,5,197,1,59,264,1,197,4,2,99,115,272,277,114,59,3,55349,56476,105,103,110,59,1,8788,105,108,100,101,5,195,1,59,292,1,195,109,108,5,196,1,59,301,1,196,4,8,97,99,101,102,111,114,115,117,321,350,354,383,388,394,400,405,4,2,99,114,327,336,107,115,108,97,115,104,59,1,8726,4,2,118,119,342,345,59,1,10983,101,100,59,1,8966,121,59,1,1041,4,3,99,114,116,362,369,379,97,117,115,101,59,1,8757,110,111,117,108,108,105,115,59,1,8492,97,59,1,914,114,59,3,55349,56581,112,102,59,3,55349,56633,101,118,101,59,1,728,99,114,59,1,8492,109,112,101,113,59,1,8782,4,14,72,79,97,99,100,101,102,104,105,108,111,114,115,117,442,447,456,504,542,547,569,573,577,616,678,784,790,796,99,121,59,1,1063,80,89,5,169,1,59,454,1,169,4,3,99,112,121,464,470,497,117,116,101,59,1,262,4,2,59,105,476,478,1,8914,116,97,108,68,105,102,102,101,114,101,110,116,105,97,108,68,59,1,8517,108,101,121,115,59,1,8493,4,4,97,101,105,111,514,520,530,535,114,111,110,59,1,268,100,105,108,5,199,1,59,528,1,199,114,99,59,1,264,110,105,110,116,59,1,8752,111,116,59,1,266,4,2,100,110,553,560,105,108,108,97,59,1,184,116,101,114,68,111,116,59,1,183,114,59,1,8493,105,59,1,935,114,99,108,101,4,4,68,77,80,84,591,596,603,609,111,116,59,1,8857,105,110,117,115,59,1,8854,108,117,115,59,1,8853,105,109,101,115,59,1,8855,111,4,2,99,115,623,646,107,119,105,115,101,67,111,110,116,111,117,114,73,110,116,101,103,114,97,108,59,1,8754,101,67,117,114,108,121,4,2,68,81,658,671,111,117,98,108,101,81,117,111,116,101,59,1,8221,117,111,116,101,59,1,8217,4,4,108,110,112,117,688,701,736,753,111,110,4,2,59,101,696,698,1,8759,59,1,10868,4,3,103,105,116,709,717,722,114,117,101,110,116,59,1,8801,110,116,59,1,8751,111,117,114,73,110,116,101,103,114,97,108,59,1,8750,4,2,102,114,742,745,59,1,8450,111,100,117,99,116,59,1,8720,110,116,101,114,67,108,111,99,107,119,105,115,101,67,111,110,116,111,117,114,73,110,116,101,103,114,97,108,59,1,8755,111,115,115,59,1,10799,99,114,59,3,55349,56478,112,4,2,59,67,803,805,1,8915,97,112,59,1,8781,4,11,68,74,83,90,97,99,101,102,105,111,115,834,850,855,860,865,888,903,916,921,1011,1415,4,2,59,111,840,842,1,8517,116,114,97,104,100,59,1,10513,99,121,59,1,1026,99,121,59,1,1029,99,121,59,1,1039,4,3,103,114,115,873,879,883,103,101,114,59,1,8225,114,59,1,8609,104,118,59,1,10980,4,2,97,121,894,900,114,111,110,59,1,270,59,1,1044,108,4,2,59,116,910,912,1,8711,97,59,1,916,114,59,3,55349,56583,4,2,97,102,927,998,4,2,99,109,933,992,114,105,116,105,99,97,108,4,4,65,68,71,84,950,957,978,985,99,117,116,101,59,1,180,111,4,2,116,117,964,967,59,1,729,98,108,101,65,99,117,116,101,59,1,733,114,97,118,101,59,1,96,105,108,100,101,59,1,732,111,110,100,59,1,8900,102,101,114,101,110,116,105,97,108,68,59,1,8518,4,4,112,116,117,119,1021,1026,1048,1249,102,59,3,55349,56635,4,3,59,68,69,1034,1036,1041,1,168,111,116,59,1,8412,113,117,97,108,59,1,8784,98,108,101,4,6,67,68,76,82,85,86,1065,1082,1101,1189,1211,1236,111,110,116,111,117,114,73,110,116,101,103,114,97,108,59,1,8751,111,4,2,116,119,1089,1092,59,1,168,110,65,114,114,111,119,59,1,8659,4,2,101,111,1107,1141,102,116,4,3,65,82,84,1117,1124,1136,114,114,111,119,59,1,8656,105,103,104,116,65,114,114,111,119,59,1,8660,101,101,59,1,10980,110,103,4,2,76,82,1149,1177,101,102,116,4,2,65,82,1158,1165,114,114,111,119,59,1,10232,105,103,104,116,65,114,114,111,119,59,1,10234,105,103,104,116,65,114,114,111,119,59,1,10233,105,103,104,116,4,2,65,84,1199,1206,114,114,111,119,59,1,8658,101,101,59,1,8872,112,4,2,65,68,1218,1225,114,114,111,119,59,1,8657,111,119,110,65,114,114,111,119,59,1,8661,101,114,116,105,99,97,108,66,97,114,59,1,8741,110,4,6,65,66,76,82,84,97,1264,1292,1299,1352,1391,1408,114,114,111,119,4,3,59,66,85,1276,1278,1283,1,8595,97,114,59,1,10515,112,65,114,114,111,119,59,1,8693,114,101,118,101,59,1,785,101,102,116,4,3,82,84,86,1310,1323,1334,105,103,104,116,86,101,99,116,111,114,59,1,10576,101,101,86,101,99,116,111,114,59,1,10590,101,99,116,111,114,4,2,59,66,1345,1347,1,8637,97,114,59,1,10582,105,103,104,116,4,2,84,86,1362,1373,101,101,86,101,99,116,111,114,59,1,10591,101,99,116,111,114,4,2,59,66,1384,1386,1,8641,97,114,59,1,10583,101,101,4,2,59,65,1399,1401,1,8868,114,114,111,119,59,1,8615,114,114,111,119,59,1,8659,4,2,99,116,1421,1426,114,59,3,55349,56479,114,111,107,59,1,272,4,16,78,84,97,99,100,102,103,108,109,111,112,113,115,116,117,120,1466,1470,1478,1489,1515,1520,1525,1536,1544,1593,1609,1617,1650,1664,1668,1677,71,59,1,330,72,5,208,1,59,1476,1,208,99,117,116,101,5,201,1,59,1487,1,201,4,3,97,105,121,1497,1503,1512,114,111,110,59,1,282,114,99,5,202,1,59,1510,1,202,59,1,1069,111,116,59,1,278,114,59,3,55349,56584,114,97,118,101,5,200,1,59,1534,1,200,101,109,101,110,116,59,1,8712,4,2,97,112,1550,1555,99,114,59,1,274,116,121,4,2,83,86,1563,1576,109,97,108,108,83,113,117,97,114,101,59,1,9723,101,114,121,83,109,97,108,108,83,113,117,97,114,101,59,1,9643,4,2,103,112,1599,1604,111,110,59,1,280,102,59,3,55349,56636,115,105,108,111,110,59,1,917,117,4,2,97,105,1624,1640,108,4,2,59,84,1631,1633,1,10869,105,108,100,101,59,1,8770,108,105,98,114,105,117,109,59,1,8652,4,2,99,105,1656,1660,114,59,1,8496,109,59,1,10867,97,59,1,919,109,108,5,203,1,59,1675,1,203,4,2,105,112,1683,1689,115,116,115,59,1,8707,111,110,101,110,116,105,97,108,69,59,1,8519,4,5,99,102,105,111,115,1713,1717,1722,1762,1791,121,59,1,1060,114,59,3,55349,56585,108,108,101,100,4,2,83,86,1732,1745,109,97,108,108,83,113,117,97,114,101,59,1,9724,101,114,121,83,109,97,108,108,83,113,117,97,114,101,59,1,9642,4,3,112,114,117,1770,1775,1781,102,59,3,55349,56637,65,108,108,59,1,8704,114,105,101,114,116,114,102,59,1,8497,99,114,59,1,8497,4,12,74,84,97,98,99,100,102,103,111,114,115,116,1822,1827,1834,1848,1855,1877,1882,1887,1890,1896,1978,1984,99,121,59,1,1027,5,62,1,59,1832,1,62,109,109,97,4,2,59,100,1843,1845,1,915,59,1,988,114,101,118,101,59,1,286,4,3,101,105,121,1863,1869,1874,100,105,108,59,1,290,114,99,59,1,284,59,1,1043,111,116,59,1,288,114,59,3,55349,56586,59,1,8921,112,102,59,3,55349,56638,101,97,116,101,114,4,6,69,70,71,76,83,84,1915,1933,1944,1953,1959,1971,113,117,97,108,4,2,59,76,1925,1927,1,8805,101,115,115,59,1,8923,117,108,108,69,113,117,97,108,59,1,8807,114,101,97,116,101,114,59,1,10914,101,115,115,59,1,8823,108,97,110,116,69,113,117,97,108,59,1,10878,105,108,100,101,59,1,8819,99,114,59,3,55349,56482,59,1,8811,4,8,65,97,99,102,105,111,115,117,2005,2012,2026,2032,2036,2049,2073,2089,82,68,99,121,59,1,1066,4,2,99,116,2018,2023,101,107,59,1,711,59,1,94,105,114,99,59,1,292,114,59,1,8460,108,98,101,114,116,83,112,97,99,101,59,1,8459,4,2,112,114,2055,2059,102,59,1,8461,105,122,111,110,116,97,108,76,105,110,101,59,1,9472,4,2,99,116,2079,2083,114,59,1,8459,114,111,107,59,1,294,109,112,4,2,68,69,2097,2107,111,119,110,72,117,109,112,59,1,8782,113,117,97,108,59,1,8783,4,14,69,74,79,97,99,100,102,103,109,110,111,115,116,117,2144,2149,2155,2160,2171,2189,2194,2198,2209,2245,2307,2329,2334,2341,99,121,59,1,1045,108,105,103,59,1,306,99,121,59,1,1025,99,117,116,101,5,205,1,59,2169,1,205,4,2,105,121,2177,2186,114,99,5,206,1,59,2184,1,206,59,1,1048,111,116,59,1,304,114,59,1,8465,114,97,118,101,5,204,1,59,2207,1,204,4,3,59,97,112,2217,2219,2238,1,8465,4,2,99,103,2225,2229,114,59,1,298,105,110,97,114,121,73,59,1,8520,108,105,101,115,59,1,8658,4,2,116,118,2251,2281,4,2,59,101,2257,2259,1,8748,4,2,103,114,2265,2271,114,97,108,59,1,8747,115,101,99,116,105,111,110,59,1,8898,105,115,105,98,108,101,4,2,67,84,2293,2300,111,109,109,97,59,1,8291,105,109,101,115,59,1,8290,4,3,103,112,116,2315,2320,2325,111,110,59,1,302,102,59,3,55349,56640,97,59,1,921,99,114,59,1,8464,105,108,100,101,59,1,296,4,2,107,109,2347,2352,99,121,59,1,1030,108,5,207,1,59,2358,1,207,4,5,99,102,111,115,117,2372,2386,2391,2397,2414,4,2,105,121,2378,2383,114,99,59,1,308,59,1,1049,114,59,3,55349,56589,112,102,59,3,55349,56641,4,2,99,101,2403,2408,114,59,3,55349,56485,114,99,121,59,1,1032,107,99,121,59,1,1028,4,7,72,74,97,99,102,111,115,2436,2441,2446,2452,2467,2472,2478,99,121,59,1,1061,99,121,59,1,1036,112,112,97,59,1,922,4,2,101,121,2458,2464,100,105,108,59,1,310,59,1,1050,114,59,3,55349,56590,112,102,59,3,55349,56642,99,114,59,3,55349,56486,4,11,74,84,97,99,101,102,108,109,111,115,116,2508,2513,2520,2562,2585,2981,2986,3004,3011,3146,3167,99,121,59,1,1033,5,60,1,59,2518,1,60,4,5,99,109,110,112,114,2532,2538,2544,2548,2558,117,116,101,59,1,313,98,100,97,59,1,923,103,59,1,10218,108,97,99,101,116,114,102,59,1,8466,114,59,1,8606,4,3,97,101,121,2570,2576,2582,114,111,110,59,1,317,100,105,108,59,1,315,59,1,1051,4,2,102,115,2591,2907,116,4,10,65,67,68,70,82,84,85,86,97,114,2614,2663,2672,2728,2735,2760,2820,2870,2888,2895,4,2,110,114,2620,2633,103,108,101,66,114,97,99,107,101,116,59,1,10216,114,111,119,4,3,59,66,82,2644,2646,2651,1,8592,97,114,59,1,8676,105,103,104,116,65,114,114,111,119,59,1,8646,101,105,108,105,110,103,59,1,8968,111,4,2,117,119,2679,2692,98,108,101,66,114,97,99,107,101,116,59,1,10214,110,4,2,84,86,2699,2710,101,101,86,101,99,116,111,114,59,1,10593,101,99,116,111,114,4,2,59,66,2721,2723,1,8643,97,114,59,1,10585,108,111,111,114,59,1,8970,105,103,104,116,4,2,65,86,2745,2752,114,114,111,119,59,1,8596,101,99,116,111,114,59,1,10574,4,2,101,114,2766,2792,101,4,3,59,65,86,2775,2777,2784,1,8867,114,114,111,119,59,1,8612,101,99,116,111,114,59,1,10586,105,97,110,103,108,101,4,3,59,66,69,2806,2808,2813,1,8882,97,114,59,1,10703,113,117,97,108,59,1,8884,112,4,3,68,84,86,2829,2841,2852,111,119,110,86,101,99,116,111,114,59,1,10577,101,101,86,101,99,116,111,114,59,1,10592,101,99,116,111,114,4,2,59,66,2863,2865,1,8639,97,114,59,1,10584,101,99,116,111,114,4,2,59,66,2881,2883,1,8636,97,114,59,1,10578,114,114,111,119,59,1,8656,105,103,104,116,97,114,114,111,119,59,1,8660,115,4,6,69,70,71,76,83,84,2922,2936,2947,2956,2962,2974,113,117,97,108,71,114,101,97,116,101,114,59,1,8922,117,108,108,69,113,117,97,108,59,1,8806,114,101,97,116,101,114,59,1,8822,101,115,115,59,1,10913,108,97,110,116,69,113,117,97,108,59,1,10877,105,108,100,101,59,1,8818,114,59,3,55349,56591,4,2,59,101,2992,2994,1,8920,102,116,97,114,114,111,119,59,1,8666,105,100,111,116,59,1,319,4,3,110,112,119,3019,3110,3115,103,4,4,76,82,108,114,3030,3058,3070,3098,101,102,116,4,2,65,82,3039,3046,114,114,111,119,59,1,10229,105,103,104,116,65,114,114,111,119,59,1,10231,105,103,104,116,65,114,114,111,119,59,1,10230,101,102,116,4,2,97,114,3079,3086,114,114,111,119,59,1,10232,105,103,104,116,97,114,114,111,119,59,1,10234,105,103,104,116,97,114,114,111,119,59,1,10233,102,59,3,55349,56643,101,114,4,2,76,82,3123,3134,101,102,116,65,114,114,111,119,59,1,8601,105,103,104,116,65,114,114,111,119,59,1,8600,4,3,99,104,116,3154,3158,3161,114,59,1,8466,59,1,8624,114,111,107,59,1,321,59,1,8810,4,8,97,99,101,102,105,111,115,117,3188,3192,3196,3222,3227,3237,3243,3248,112,59,1,10501,121,59,1,1052,4,2,100,108,3202,3213,105,117,109,83,112,97,99,101,59,1,8287,108,105,110,116,114,102,59,1,8499,114,59,3,55349,56592,110,117,115,80,108,117,115,59,1,8723,112,102,59,3,55349,56644,99,114,59,1,8499,59,1,924,4,9,74,97,99,101,102,111,115,116,117,3271,3276,3283,3306,3422,3427,4120,4126,4137,99,121,59,1,1034,99,117,116,101,59,1,323,4,3,97,101,121,3291,3297,3303,114,111,110,59,1,327,100,105,108,59,1,325,59,1,1053,4,3,103,115,119,3314,3380,3415,97,116,105,118,101,4,3,77,84,86,3327,3340,3365,101,100,105,117,109,83,112,97,99,101,59,1,8203,104,105,4,2,99,110,3348,3357,107,83,112,97,99,101,59,1,8203,83,112,97,99,101,59,1,8203,101,114,121,84,104,105,110,83,112,97,99,101,59,1,8203,116,101,100,4,2,71,76,3389,3405,114,101,97,116,101,114,71,114,101,97,116,101,114,59,1,8811,101,115,115,76,101,115,115,59,1,8810,76,105,110,101,59,1,10,114,59,3,55349,56593,4,4,66,110,112,116,3437,3444,3460,3464,114,101,97,107,59,1,8288,66,114,101,97,107,105,110,103,83,112,97,99,101,59,1,160,102,59,1,8469,4,13,59,67,68,69,71,72,76,78,80,82,83,84,86,3492,3494,3517,3536,3578,3657,3685,3784,3823,3860,3915,4066,4107,1,10988,4,2,111,117,3500,3510,110,103,114,117,101,110,116,59,1,8802,112,67,97,112,59,1,8813,111,117,98,108,101,86,101,114,116,105,99,97,108,66,97,114,59,1,8742,4,3,108,113,120,3544,3552,3571,101,109,101,110,116,59,1,8713,117,97,108,4,2,59,84,3561,3563,1,8800,105,108,100,101,59,3,8770,824,105,115,116,115,59,1,8708,114,101,97,116,101,114,4,7,59,69,70,71,76,83,84,3600,3602,3609,3621,3631,3637,3650,1,8815,113,117,97,108,59,1,8817,117,108,108,69,113,117,97,108,59,3,8807,824,114,101,97,116,101,114,59,3,8811,824,101,115,115,59,1,8825,108,97,110,116,69,113,117,97,108,59,3,10878,824,105,108,100,101,59,1,8821,117,109,112,4,2,68,69,3666,3677,111,119,110,72,117,109,112,59,3,8782,824,113,117,97,108,59,3,8783,824,101,4,2,102,115,3692,3724,116,84,114,105,97,110,103,108,101,4,3,59,66,69,3709,3711,3717,1,8938,97,114,59,3,10703,824,113,117,97,108,59,1,8940,115,4,6,59,69,71,76,83,84,3739,3741,3748,3757,3764,3777,1,8814,113,117,97,108,59,1,8816,114,101,97,116,101,114,59,1,8824,101,115,115,59,3,8810,824,108,97,110,116,69,113,117,97,108,59,3,10877,824,105,108,100,101,59,1,8820,101,115,116,101,100,4,2,71,76,3795,3812,114,101,97,116,101,114,71,114,101,97,116,101,114,59,3,10914,824,101,115,115,76,101,115,115,59,3,10913,824,114,101,99,101,100,101,115,4,3,59,69,83,3838,3840,3848,1,8832,113,117,97,108,59,3,10927,824,108,97,110,116,69,113,117,97,108,59,1,8928,4,2,101,105,3866,3881,118,101,114,115,101,69,108,101,109,101,110,116,59,1,8716,103,104,116,84,114,105,97,110,103,108,101,4,3,59,66,69,3900,3902,3908,1,8939,97,114,59,3,10704,824,113,117,97,108,59,1,8941,4,2,113,117,3921,3973,117,97,114,101,83,117,4,2,98,112,3933,3952,115,101,116,4,2,59,69,3942,3945,3,8847,824,113,117,97,108,59,1,8930,101,114,115,101,116,4,2,59,69,3963,3966,3,8848,824,113,117,97,108,59,1,8931,4,3,98,99,112,3981,4000,4045,115,101,116,4,2,59,69,3990,3993,3,8834,8402,113,117,97,108,59,1,8840,99,101,101,100,115,4,4,59,69,83,84,4015,4017,4025,4037,1,8833,113,117,97,108,59,3,10928,824,108,97,110,116,69,113,117,97,108,59,1,8929,105,108,100,101,59,3,8831,824,101,114,115,101,116,4,2,59,69,4056,4059,3,8835,8402,113,117,97,108,59,1,8841,105,108,100,101,4,4,59,69,70,84,4080,4082,4089,4100,1,8769,113,117,97,108,59,1,8772,117,108,108,69,113,117,97,108,59,1,8775,105,108,100,101,59,1,8777,101,114,116,105,99,97,108,66,97,114,59,1,8740,99,114,59,3,55349,56489,105,108,100,101,5,209,1,59,4135,1,209,59,1,925,4,14,69,97,99,100,102,103,109,111,112,114,115,116,117,118,4170,4176,4187,4205,4212,4217,4228,4253,4259,4292,4295,4316,4337,4346,108,105,103,59,1,338,99,117,116,101,5,211,1,59,4185,1,211,4,2,105,121,4193,4202,114,99,5,212,1,59,4200,1,212,59,1,1054,98,108,97,99,59,1,336,114,59,3,55349,56594,114,97,118,101,5,210,1,59,4226,1,210,4,3,97,101,105,4236,4241,4246,99,114,59,1,332,103,97,59,1,937,99,114,111,110,59,1,927,112,102,59,3,55349,56646,101,110,67,117,114,108,121,4,2,68,81,4272,4285,111,117,98,108,101,81,117,111,116,101,59,1,8220,117,111,116,101,59,1,8216,59,1,10836,4,2,99,108,4301,4306,114,59,3,55349,56490,97,115,104,5,216,1,59,4314,1,216,105,4,2,108,109,4323,4332,100,101,5,213,1,59,4330,1,213,101,115,59,1,10807,109,108,5,214,1,59,4344,1,214,101,114,4,2,66,80,4354,4380,4,2,97,114,4360,4364,114,59,1,8254,97,99,4,2,101,107,4372,4375,59,1,9182,101,116,59,1,9140,97,114,101,110,116,104,101,115,105,115,59,1,9180,4,9,97,99,102,104,105,108,111,114,115,4413,4422,4426,4431,4435,4438,4448,4471,4561,114,116,105,97,108,68,59,1,8706,121,59,1,1055,114,59,3,55349,56595,105,59,1,934,59,1,928,117,115,77,105,110,117,115,59,1,177,4,2,105,112,4454,4467,110,99,97,114,101,112,108,97,110,101,59,1,8460,102,59,1,8473,4,4,59,101,105,111,4481,4483,4526,4531,1,10939,99,101,100,101,115,4,4,59,69,83,84,4498,4500,4507,4519,1,8826,113,117,97,108,59,1,10927,108,97,110,116,69,113,117,97,108,59,1,8828,105,108,100,101,59,1,8830,109,101,59,1,8243,4,2,100,112,4537,4543,117,99,116,59,1,8719,111,114,116,105,111,110,4,2,59,97,4555,4557,1,8759,108,59,1,8733,4,2,99,105,4567,4572,114,59,3,55349,56491,59,1,936,4,4,85,102,111,115,4585,4594,4599,4604,79,84,5,34,1,59,4592,1,34,114,59,3,55349,56596,112,102,59,1,8474,99,114,59,3,55349,56492,4,12,66,69,97,99,101,102,104,105,111,114,115,117,4636,4642,4650,4681,4704,4763,4767,4771,5047,5069,5081,5094,97,114,114,59,1,10512,71,5,174,1,59,4648,1,174,4,3,99,110,114,4658,4664,4668,117,116,101,59,1,340,103,59,1,10219,114,4,2,59,116,4675,4677,1,8608,108,59,1,10518,4,3,97,101,121,4689,4695,4701,114,111,110,59,1,344,100,105,108,59,1,342,59,1,1056,4,2,59,118,4710,4712,1,8476,101,114,115,101,4,2,69,85,4722,4748,4,2,108,113,4728,4736,101,109,101,110,116,59,1,8715,117,105,108,105,98,114,105,117,109,59,1,8651,112,69,113,117,105,108,105,98,114,105,117,109,59,1,10607,114,59,1,8476,111,59,1,929,103,104,116,4,8,65,67,68,70,84,85,86,97,4792,4840,4849,4905,4912,4972,5022,5040,4,2,110,114,4798,4811,103,108,101,66,114,97,99,107,101,116,59,1,10217,114,111,119,4,3,59,66,76,4822,4824,4829,1,8594,97,114,59,1,8677,101,102,116,65,114,114,111,119,59,1,8644,101,105,108,105,110,103,59,1,8969,111,4,2,117,119,4856,4869,98,108,101,66,114,97,99,107,101,116,59,1,10215,110,4,2,84,86,4876,4887,101,101,86,101,99,116,111,114,59,1,10589,101,99,116,111,114,4,2,59,66,4898,4900,1,8642,97,114,59,1,10581,108,111,111,114,59,1,8971,4,2,101,114,4918,4944,101,4,3,59,65,86,4927,4929,4936,1,8866,114,114,111,119,59,1,8614,101,99,116,111,114,59,1,10587,105,97,110,103,108,101,4,3,59,66,69,4958,4960,4965,1,8883,97,114,59,1,10704,113,117,97,108,59,1,8885,112,4,3,68,84,86,4981,4993,5004,111,119,110,86,101,99,116,111,114,59,1,10575,101,101,86,101,99,116,111,114,59,1,10588,101,99,116,111,114,4,2,59,66,5015,5017,1,8638,97,114,59,1,10580,101,99,116,111,114,4,2,59,66,5033,5035,1,8640,97,114,59,1,10579,114,114,111,119,59,1,8658,4,2,112,117,5053,5057,102,59,1,8477,110,100,73,109,112,108,105,101,115,59,1,10608,105,103,104,116,97,114,114,111,119,59,1,8667,4,2,99,104,5087,5091,114,59,1,8475,59,1,8625,108,101,68,101,108,97,121,101,100,59,1,10740,4,13,72,79,97,99,102,104,105,109,111,113,115,116,117,5134,5150,5157,5164,5198,5203,5259,5265,5277,5283,5374,5380,5385,4,2,67,99,5140,5146,72,99,121,59,1,1065,121,59,1,1064,70,84,99,121,59,1,1068,99,117,116,101,59,1,346,4,5,59,97,101,105,121,5176,5178,5184,5190,5195,1,10940,114,111,110,59,1,352,100,105,108,59,1,350,114,99,59,1,348,59,1,1057,114,59,3,55349,56598,111,114,116,4,4,68,76,82,85,5216,5227,5238,5250,111,119,110,65,114,114,111,119,59,1,8595,101,102,116,65,114,114,111,119,59,1,8592,105,103,104,116,65,114,114,111,119,59,1,8594,112,65,114,114,111,119,59,1,8593,103,109,97,59,1,931,97,108,108,67,105,114,99,108,101,59,1,8728,112,102,59,3,55349,56650,4,2,114,117,5289,5293,116,59,1,8730,97,114,101,4,4,59,73,83,85,5306,5308,5322,5367,1,9633,110,116,101,114,115,101,99,116,105,111,110,59,1,8851,117,4,2,98,112,5329,5347,115,101,116,4,2,59,69,5338,5340,1,8847,113,117,97,108,59,1,8849,101,114,115,101,116,4,2,59,69,5358,5360,1,8848,113,117,97,108,59,1,8850,110,105,111,110,59,1,8852,99,114,59,3,55349,56494,97,114,59,1,8902,4,4,98,99,109,112,5395,5420,5475,5478,4,2,59,115,5401,5403,1,8912,101,116,4,2,59,69,5411,5413,1,8912,113,117,97,108,59,1,8838,4,2,99,104,5426,5468,101,101,100,115,4,4,59,69,83,84,5440,5442,5449,5461,1,8827,113,117,97,108,59,1,10928,108,97,110,116,69,113,117,97,108,59,1,8829,105,108,100,101,59,1,8831,84,104,97,116,59,1,8715,59,1,8721,4,3,59,101,115,5486,5488,5507,1,8913,114,115,101,116,4,2,59,69,5498,5500,1,8835,113,117,97,108,59,1,8839,101,116,59,1,8913,4,11,72,82,83,97,99,102,104,105,111,114,115,5536,5546,5552,5567,5579,5602,5607,5655,5695,5701,5711,79,82,78,5,222,1,59,5544,1,222,65,68,69,59,1,8482,4,2,72,99,5558,5563,99,121,59,1,1035,121,59,1,1062,4,2,98,117,5573,5576,59,1,9,59,1,932,4,3,97,101,121,5587,5593,5599,114,111,110,59,1,356,100,105,108,59,1,354,59,1,1058,114,59,3,55349,56599,4,2,101,105,5613,5631,4,2,114,116,5619,5627,101,102,111,114,101,59,1,8756,97,59,1,920,4,2,99,110,5637,5647,107,83,112,97,99,101,59,3,8287,8202,83,112,97,99,101,59,1,8201,108,100,101,4,4,59,69,70,84,5668,5670,5677,5688,1,8764,113,117,97,108,59,1,8771,117,108,108,69,113,117,97,108,59,1,8773,105,108,100,101,59,1,8776,112,102,59,3,55349,56651,105,112,108,101,68,111,116,59,1,8411,4,2,99,116,5717,5722,114,59,3,55349,56495,114,111,107,59,1,358,4,14,97,98,99,100,102,103,109,110,111,112,114,115,116,117,5758,5789,5805,5823,5830,5835,5846,5852,5921,5937,6089,6095,6101,6108,4,2,99,114,5764,5774,117,116,101,5,218,1,59,5772,1,218,114,4,2,59,111,5781,5783,1,8607,99,105,114,59,1,10569,114,4,2,99,101,5796,5800,121,59,1,1038,118,101,59,1,364,4,2,105,121,5811,5820,114,99,5,219,1,59,5818,1,219,59,1,1059,98,108,97,99,59,1,368,114,59,3,55349,56600,114,97,118,101,5,217,1,59,5844,1,217,97,99,114,59,1,362,4,2,100,105,5858,5905,101,114,4,2,66,80,5866,5892,4,2,97,114,5872,5876,114,59,1,95,97,99,4,2,101,107,5884,5887,59,1,9183,101,116,59,1,9141,97,114,101,110,116,104,101,115,105,115,59,1,9181,111,110,4,2,59,80,5913,5915,1,8899,108,117,115,59,1,8846,4,2,103,112,5927,5932,111,110,59,1,370,102,59,3,55349,56652,4,8,65,68,69,84,97,100,112,115,5955,5985,5996,6009,6026,6033,6044,6075,114,114,111,119,4,3,59,66,68,5967,5969,5974,1,8593,97,114,59,1,10514,111,119,110,65,114,114,111,119,59,1,8645,111,119,110,65,114,114,111,119,59,1,8597,113,117,105,108,105,98,114,105,117,109,59,1,10606,101,101,4,2,59,65,6017,6019,1,8869,114,114,111,119,59,1,8613,114,114,111,119,59,1,8657,111,119,110,97,114,114,111,119,59,1,8661,101,114,4,2,76,82,6052,6063,101,102,116,65,114,114,111,119,59,1,8598,105,103,104,116,65,114,114,111,119,59,1,8599,105,4,2,59,108,6082,6084,1,978,111,110,59,1,933,105,110,103,59,1,366,99,114,59,3,55349,56496,105,108,100,101,59,1,360,109,108,5,220,1,59,6115,1,220,4,9,68,98,99,100,101,102,111,115,118,6137,6143,6148,6152,6166,6250,6255,6261,6267,97,115,104,59,1,8875,97,114,59,1,10987,121,59,1,1042,97,115,104,4,2,59,108,6161,6163,1,8873,59,1,10982,4,2,101,114,6172,6175,59,1,8897,4,3,98,116,121,6183,6188,6238,97,114,59,1,8214,4,2,59,105,6194,6196,1,8214,99,97,108,4,4,66,76,83,84,6209,6214,6220,6231,97,114,59,1,8739,105,110,101,59,1,124,101,112,97,114,97,116,111,114,59,1,10072,105,108,100,101,59,1,8768,84,104,105,110,83,112,97,99,101,59,1,8202,114,59,3,55349,56601,112,102,59,3,55349,56653,99,114,59,3,55349,56497,100,97,115,104,59,1,8874,4,5,99,101,102,111,115,6286,6292,6298,6303,6309,105,114,99,59,1,372,100,103,101,59,1,8896,114,59,3,55349,56602,112,102,59,3,55349,56654,99,114,59,3,55349,56498,4,4,102,105,111,115,6325,6330,6333,6339,114,59,3,55349,56603,59,1,926,112,102,59,3,55349,56655,99,114,59,3,55349,56499,4,9,65,73,85,97,99,102,111,115,117,6365,6370,6375,6380,6391,6405,6410,6416,6422,99,121,59,1,1071,99,121,59,1,1031,99,121,59,1,1070,99,117,116,101,5,221,1,59,6389,1,221,4,2,105,121,6397,6402,114,99,59,1,374,59,1,1067,114,59,3,55349,56604,112,102,59,3,55349,56656,99,114,59,3,55349,56500,109,108,59,1,376,4,8,72,97,99,100,101,102,111,115,6445,6450,6457,6472,6477,6501,6505,6510,99,121,59,1,1046,99,117,116,101,59,1,377,4,2,97,121,6463,6469,114,111,110,59,1,381,59,1,1047,111,116,59,1,379,4,2,114,116,6483,6497,111,87,105,100,116,104,83,112,97,99,101,59,1,8203,97,59,1,918,114,59,1,8488,112,102,59,1,8484,99,114,59,3,55349,56501,4,16,97,98,99,101,102,103,108,109,110,111,112,114,115,116,117,119,6550,6561,6568,6612,6622,6634,6645,6672,6699,6854,6870,6923,6933,6963,6974,6983,99,117,116,101,5,225,1,59,6559,1,225,114,101,118,101,59,1,259,4,6,59,69,100,105,117,121,6582,6584,6588,6591,6600,6609,1,8766,59,3,8766,819,59,1,8767,114,99,5,226,1,59,6598,1,226,116,101,5,180,1,59,6607,1,180,59,1,1072,108,105,103,5,230,1,59,6620,1,230,4,2,59,114,6628,6630,1,8289,59,3,55349,56606,114,97,118,101,5,224,1,59,6643,1,224,4,2,101,112,6651,6667,4,2,102,112,6657,6663,115,121,109,59,1,8501,104,59,1,8501,104,97,59,1,945,4,2,97,112,6678,6692,4,2,99,108,6684,6688,114,59,1,257,103,59,1,10815,5,38,1,59,6697,1,38,4,2,100,103,6705,6737,4,5,59,97,100,115,118,6717,6719,6724,6727,6734,1,8743,110,100,59,1,10837,59,1,10844,108,111,112,101,59,1,10840,59,1,10842,4,7,59,101,108,109,114,115,122,6753,6755,6758,6762,6814,6835,6848,1,8736,59,1,10660,101,59,1,8736,115,100,4,2,59,97,6770,6772,1,8737,4,8,97,98,99,100,101,102,103,104,6790,6793,6796,6799,6802,6805,6808,6811,59,1,10664,59,1,10665,59,1,10666,59,1,10667,59,1,10668,59,1,10669,59,1,10670,59,1,10671,116,4,2,59,118,6821,6823,1,8735,98,4,2,59,100,6830,6832,1,8894,59,1,10653,4,2,112,116,6841,6845,104,59,1,8738,59,1,197,97,114,114,59,1,9084,4,2,103,112,6860,6865,111,110,59,1,261,102,59,3,55349,56658,4,7,59,69,97,101,105,111,112,6886,6888,6891,6897,6900,6904,6908,1,8776,59,1,10864,99,105,114,59,1,10863,59,1,8778,100,59,1,8779,115,59,1,39,114,111,120,4,2,59,101,6917,6919,1,8776,113,59,1,8778,105,110,103,5,229,1,59,6931,1,229,4,3,99,116,121,6941,6946,6949,114,59,3,55349,56502,59,1,42,109,112,4,2,59,101,6957,6959,1,8776,113,59,1,8781,105,108,100,101,5,227,1,59,6972,1,227,109,108,5,228,1,59,6981,1,228,4,2,99,105,6989,6997,111,110,105,110,116,59,1,8755,110,116,59,1,10769,4,16,78,97,98,99,100,101,102,105,107,108,110,111,112,114,115,117,7036,7041,7119,7135,7149,7155,7219,7224,7347,7354,7463,7489,7786,7793,7814,7866,111,116,59,1,10989,4,2,99,114,7047,7094,107,4,4,99,101,112,115,7058,7064,7073,7080,111,110,103,59,1,8780,112,115,105,108,111,110,59,1,1014,114,105,109,101,59,1,8245,105,109,4,2,59,101,7088,7090,1,8765,113,59,1,8909,4,2,118,119,7100,7105,101,101,59,1,8893,101,100,4,2,59,103,7113,7115,1,8965,101,59,1,8965,114,107,4,2,59,116,7127,7129,1,9141,98,114,107,59,1,9142,4,2,111,121,7141,7146,110,103,59,1,8780,59,1,1073,113,117,111,59,1,8222,4,5,99,109,112,114,116,7167,7181,7188,7193,7199,97,117,115,4,2,59,101,7176,7178,1,8757,59,1,8757,112,116,121,118,59,1,10672,115,105,59,1,1014,110,111,117,59,1,8492,4,3,97,104,119,7207,7210,7213,59,1,946,59,1,8502,101,101,110,59,1,8812,114,59,3,55349,56607,103,4,7,99,111,115,116,117,118,119,7241,7262,7288,7305,7328,7335,7340,4,3,97,105,117,7249,7253,7258,112,59,1,8898,114,99,59,1,9711,112,59,1,8899,4,3,100,112,116,7270,7275,7281,111,116,59,1,10752,108,117,115,59,1,10753,105,109,101,115,59,1,10754,4,2,113,116,7294,7300,99,117,112,59,1,10758,97,114,59,1,9733,114,105,97,110,103,108,101,4,2,100,117,7318,7324,111,119,110,59,1,9661,112,59,1,9651,112,108,117,115,59,1,10756,101,101,59,1,8897,101,100,103,101,59,1,8896,97,114,111,119,59,1,10509,4,3,97,107,111,7362,7436,7458,4,2,99,110,7368,7432,107,4,3,108,115,116,7377,7386,7394,111,122,101,110,103,101,59,1,10731,113,117,97,114,101,59,1,9642,114,105,97,110,103,108,101,4,4,59,100,108,114,7411,7413,7419,7425,1,9652,111,119,110,59,1,9662,101,102,116,59,1,9666,105,103,104,116,59,1,9656,107,59,1,9251,4,2,49,51,7442,7454,4,2,50,52,7448,7451,59,1,9618,59,1,9617,52,59,1,9619,99,107,59,1,9608,4,2,101,111,7469,7485,4,2,59,113,7475,7478,3,61,8421,117,105,118,59,3,8801,8421,116,59,1,8976,4,4,112,116,119,120,7499,7504,7517,7523,102,59,3,55349,56659,4,2,59,116,7510,7512,1,8869,111,109,59,1,8869,116,105,101,59,1,8904,4,12,68,72,85,86,98,100,104,109,112,116,117,118,7549,7571,7597,7619,7655,7660,7682,7708,7715,7721,7728,7750,4,4,76,82,108,114,7559,7562,7565,7568,59,1,9559,59,1,9556,59,1,9558,59,1,9555,4,5,59,68,85,100,117,7583,7585,7588,7591,7594,1,9552,59,1,9574,59,1,9577,59,1,9572,59,1,9575,4,4,76,82,108,114,7607,7610,7613,7616,59,1,9565,59,1,9562,59,1,9564,59,1,9561,4,7,59,72,76,82,104,108,114,7635,7637,7640,7643,7646,7649,7652,1,9553,59,1,9580,59,1,9571,59,1,9568,59,1,9579,59,1,9570,59,1,9567,111,120,59,1,10697,4,4,76,82,108,114,7670,7673,7676,7679,59,1,9557,59,1,9554,59,1,9488,59,1,9484,4,5,59,68,85,100,117,7694,7696,7699,7702,7705,1,9472,59,1,9573,59,1,9576,59,1,9516,59,1,9524,105,110,117,115,59,1,8863,108,117,115,59,1,8862,105,109,101,115,59,1,8864,4,4,76,82,108,114,7738,7741,7744,7747,59,1,9563,59,1,9560,59,1,9496,59,1,9492,4,7,59,72,76,82,104,108,114,7766,7768,7771,7774,7777,7780,7783,1,9474,59,1,9578,59,1,9569,59,1,9566,59,1,9532,59,1,9508,59,1,9500,114,105,109,101,59,1,8245,4,2,101,118,7799,7804,118,101,59,1,728,98,97,114,5,166,1,59,7812,1,166,4,4,99,101,105,111,7824,7829,7834,7846,114,59,3,55349,56503,109,105,59,1,8271,109,4,2,59,101,7841,7843,1,8765,59,1,8909,108,4,3,59,98,104,7855,7857,7860,1,92,59,1,10693,115,117,98,59,1,10184,4,2,108,109,7872,7885,108,4,2,59,101,7879,7881,1,8226,116,59,1,8226,112,4,3,59,69,101,7894,7896,7899,1,8782,59,1,10926,4,2,59,113,7905,7907,1,8783,59,1,8783,4,15,97,99,100,101,102,104,105,108,111,114,115,116,117,119,121,7942,8021,8075,8080,8121,8126,8157,8279,8295,8430,8446,8485,8491,8707,8726,4,3,99,112,114,7950,7956,8007,117,116,101,59,1,263,4,6,59,97,98,99,100,115,7970,7972,7977,7984,7998,8003,1,8745,110,100,59,1,10820,114,99,117,112,59,1,10825,4,2,97,117,7990,7994,112,59,1,10827,112,59,1,10823,111,116,59,1,10816,59,3,8745,65024,4,2,101,111,8013,8017,116,59,1,8257,110,59,1,711,4,4,97,101,105,117,8031,8046,8056,8061,4,2,112,114,8037,8041,115,59,1,10829,111,110,59,1,269,100,105,108,5,231,1,59,8054,1,231,114,99,59,1,265,112,115,4,2,59,115,8069,8071,1,10828,109,59,1,10832,111,116,59,1,267,4,3,100,109,110,8088,8097,8104,105,108,5,184,1,59,8095,1,184,112,116,121,118,59,1,10674,116,5,162,2,59,101,8112,8114,1,162,114,100,111,116,59,1,183,114,59,3,55349,56608,4,3,99,101,105,8134,8138,8154,121,59,1,1095,99,107,4,2,59,109,8146,8148,1,10003,97,114,107,59,1,10003,59,1,967,114,4,7,59,69,99,101,102,109,115,8174,8176,8179,8258,8261,8268,8273,1,9675,59,1,10691,4,3,59,101,108,8187,8189,8193,1,710,113,59,1,8791,101,4,2,97,100,8200,8223,114,114,111,119,4,2,108,114,8210,8216,101,102,116,59,1,8634,105,103,104,116,59,1,8635,4,5,82,83,97,99,100,8235,8238,8241,8246,8252,59,1,174,59,1,9416,115,116,59,1,8859,105,114,99,59,1,8858,97,115,104,59,1,8861,59,1,8791,110,105,110,116,59,1,10768,105,100,59,1,10991,99,105,114,59,1,10690,117,98,115,4,2,59,117,8288,8290,1,9827,105,116,59,1,9827,4,4,108,109,110,112,8305,8326,8376,8400,111,110,4,2,59,101,8313,8315,1,58,4,2,59,113,8321,8323,1,8788,59,1,8788,4,2,109,112,8332,8344,97,4,2,59,116,8339,8341,1,44,59,1,64,4,3,59,102,108,8352,8354,8358,1,8705,110,59,1,8728,101,4,2,109,120,8365,8371,101,110,116,59,1,8705,101,115,59,1,8450,4,2,103,105,8382,8395,4,2,59,100,8388,8390,1,8773,111,116,59,1,10861,110,116,59,1,8750,4,3,102,114,121,8408,8412,8417,59,3,55349,56660,111,100,59,1,8720,5,169,2,59,115,8424,8426,1,169,114,59,1,8471,4,2,97,111,8436,8441,114,114,59,1,8629,115,115,59,1,10007,4,2,99,117,8452,8457,114,59,3,55349,56504,4,2,98,112,8463,8474,4,2,59,101,8469,8471,1,10959,59,1,10961,4,2,59,101,8480,8482,1,10960,59,1,10962,100,111,116,59,1,8943,4,7,100,101,108,112,114,118,119,8507,8522,8536,8550,8600,8697,8702,97,114,114,4,2,108,114,8516,8519,59,1,10552,59,1,10549,4,2,112,115,8528,8532,114,59,1,8926,99,59,1,8927,97,114,114,4,2,59,112,8545,8547,1,8630,59,1,10557,4,6,59,98,99,100,111,115,8564,8566,8573,8587,8592,8596,1,8746,114,99,97,112,59,1,10824,4,2,97,117,8579,8583,112,59,1,10822,112,59,1,10826,111,116,59,1,8845,114,59,1,10821,59,3,8746,65024,4,4,97,108,114,118,8610,8623,8663,8672,114,114,4,2,59,109,8618,8620,1,8631,59,1,10556,121,4,3,101,118,119,8632,8651,8656,113,4,2,112,115,8639,8645,114,101,99,59,1,8926,117,99,99,59,1,8927,101,101,59,1,8910,101,100,103,101,59,1,8911,101,110,5,164,1,59,8670,1,164,101,97,114,114,111,119,4,2,108,114,8684,8690,101,102,116,59,1,8630,105,103,104,116,59,1,8631,101,101,59,1,8910,101,100,59,1,8911,4,2,99,105,8713,8721,111,110,105,110,116,59,1,8754,110,116,59,1,8753,108,99,116,121,59,1,9005,4,19,65,72,97,98,99,100,101,102,104,105,106,108,111,114,115,116,117,119,122,8773,8778,8783,8821,8839,8854,8887,8914,8930,8944,9036,9041,9058,9197,9227,9258,9281,9297,9305,114,114,59,1,8659,97,114,59,1,10597,4,4,103,108,114,115,8793,8799,8805,8809,103,101,114,59,1,8224,101,116,104,59,1,8504,114,59,1,8595,104,4,2,59,118,8816,8818,1,8208,59,1,8867,4,2,107,108,8827,8834,97,114,111,119,59,1,10511,97,99,59,1,733,4,2,97,121,8845,8851,114,111,110,59,1,271,59,1,1076,4,3,59,97,111,8862,8864,8880,1,8518,4,2,103,114,8870,8876,103,101,114,59,1,8225,114,59,1,8650,116,115,101,113,59,1,10871,4,3,103,108,109,8895,8902,8907,5,176,1,59,8900,1,176,116,97,59,1,948,112,116,121,118,59,1,10673,4,2,105,114,8920,8926,115,104,116,59,1,10623,59,3,55349,56609,97,114,4,2,108,114,8938,8941,59,1,8643,59,1,8642,4,5,97,101,103,115,118,8956,8986,8989,8996,9001,109,4,3,59,111,115,8965,8967,8983,1,8900,110,100,4,2,59,115,8975,8977,1,8900,117,105,116,59,1,9830,59,1,9830,59,1,168,97,109,109,97,59,1,989,105,110,59,1,8946,4,3,59,105,111,9009,9011,9031,1,247,100,101,5,247,2,59,111,9020,9022,1,247,110,116,105,109,101,115,59,1,8903,110,120,59,1,8903,99,121,59,1,1106,99,4,2,111,114,9048,9053,114,110,59,1,8990,111,112,59,1,8973,4,5,108,112,116,117,119,9070,9076,9081,9130,9144,108,97,114,59,1,36,102,59,3,55349,56661,4,5,59,101,109,112,115,9093,9095,9109,9116,9122,1,729,113,4,2,59,100,9102,9104,1,8784,111,116,59,1,8785,105,110,117,115,59,1,8760,108,117,115,59,1,8724,113,117,97,114,101,59,1,8865,98,108,101,98,97,114,119,101,100,103,101,59,1,8966,110,4,3,97,100,104,9153,9160,9172,114,114,111,119,59,1,8595,111,119,110,97,114,114,111,119,115,59,1,8650,97,114,112,111,111,110,4,2,108,114,9184,9190,101,102,116,59,1,8643,105,103,104,116,59,1,8642,4,2,98,99,9203,9211,107,97,114,111,119,59,1,10512,4,2,111,114,9217,9222,114,110,59,1,8991,111,112,59,1,8972,4,3,99,111,116,9235,9248,9252,4,2,114,121,9241,9245,59,3,55349,56505,59,1,1109,108,59,1,10742,114,111,107,59,1,273,4,2,100,114,9264,9269,111,116,59,1,8945,105,4,2,59,102,9276,9278,1,9663,59,1,9662,4,2,97,104,9287,9292,114,114,59,1,8693,97,114,59,1,10607,97,110,103,108,101,59,1,10662,4,2,99,105,9311,9315,121,59,1,1119,103,114,97,114,114,59,1,10239,4,18,68,97,99,100,101,102,103,108,109,110,111,112,113,114,115,116,117,120,9361,9376,9398,9439,9444,9447,9462,9495,9531,9585,9598,9614,9659,9755,9771,9792,9808,9826,4,2,68,111,9367,9372,111,116,59,1,10871,116,59,1,8785,4,2,99,115,9382,9392,117,116,101,5,233,1,59,9390,1,233,116,101,114,59,1,10862,4,4,97,105,111,121,9408,9414,9430,9436,114,111,110,59,1,283,114,4,2,59,99,9421,9423,1,8790,5,234,1,59,9428,1,234,108,111,110,59,1,8789,59,1,1101,111,116,59,1,279,59,1,8519,4,2,68,114,9453,9458,111,116,59,1,8786,59,3,55349,56610,4,3,59,114,115,9470,9472,9482,1,10906,97,118,101,5,232,1,59,9480,1,232,4,2,59,100,9488,9490,1,10902,111,116,59,1,10904,4,4,59,105,108,115,9505,9507,9515,9518,1,10905,110,116,101,114,115,59,1,9191,59,1,8467,4,2,59,100,9524,9526,1,10901,111,116,59,1,10903,4,3,97,112,115,9539,9544,9564,99,114,59,1,275,116,121,4,3,59,115,118,9554,9556,9561,1,8709,101,116,59,1,8709,59,1,8709,112,4,2,49,59,9571,9583,4,2,51,52,9577,9580,59,1,8196,59,1,8197,1,8195,4,2,103,115,9591,9594,59,1,331,112,59,1,8194,4,2,103,112,9604,9609,111,110,59,1,281,102,59,3,55349,56662,4,3,97,108,115,9622,9635,9640,114,4,2,59,115,9629,9631,1,8917,108,59,1,10723,117,115,59,1,10865,105,4,3,59,108,118,9649,9651,9656,1,949,111,110,59,1,949,59,1,1013,4,4,99,115,117,118,9669,9686,9716,9747,4,2,105,111,9675,9680,114,99,59,1,8790,108,111,110,59,1,8789,4,2,105,108,9692,9696,109,59,1,8770,97,110,116,4,2,103,108,9705,9710,116,114,59,1,10902,101,115,115,59,1,10901,4,3,97,101,105,9724,9729,9734,108,115,59,1,61,115,116,59,1,8799,118,4,2,59,68,9741,9743,1,8801,68,59,1,10872,112,97,114,115,108,59,1,10725,4,2,68,97,9761,9766,111,116,59,1,8787,114,114,59,1,10609,4,3,99,100,105,9779,9783,9788,114,59,1,8495,111,116,59,1,8784,109,59,1,8770,4,2,97,104,9798,9801,59,1,951,5,240,1,59,9806,1,240,4,2,109,114,9814,9822,108,5,235,1,59,9820,1,235,111,59,1,8364,4,3,99,105,112,9834,9838,9843,108,59,1,33,115,116,59,1,8707,4,2,101,111,9849,9859,99,116,97,116,105,111,110,59,1,8496,110,101,110,116,105,97,108,101,59,1,8519,4,12,97,99,101,102,105,106,108,110,111,112,114,115,9896,9910,9914,9921,9954,9960,9967,9989,9994,10027,10036,10164,108,108,105,110,103,100,111,116,115,101,113,59,1,8786,121,59,1,1092,109,97,108,101,59,1,9792,4,3,105,108,114,9929,9935,9950,108,105,103,59,1,64259,4,2,105,108,9941,9945,103,59,1,64256,105,103,59,1,64260,59,3,55349,56611,108,105,103,59,1,64257,108,105,103,59,3,102,106,4,3,97,108,116,9975,9979,9984,116,59,1,9837,105,103,59,1,64258,110,115,59,1,9649,111,102,59,1,402,4,2,112,114,10000,10005,102,59,3,55349,56663,4,2,97,107,10011,10016,108,108,59,1,8704,4,2,59,118,10022,10024,1,8916,59,1,10969,97,114,116,105,110,116,59,1,10765,4,2,97,111,10042,10159,4,2,99,115,10048,10155,4,6,49,50,51,52,53,55,10062,10102,10114,10135,10139,10151,4,6,50,51,52,53,54,56,10076,10083,10086,10093,10096,10099,5,189,1,59,10081,1,189,59,1,8531,5,188,1,59,10091,1,188,59,1,8533,59,1,8537,59,1,8539,4,2,51,53,10108,10111,59,1,8532,59,1,8534,4,3,52,53,56,10122,10129,10132,5,190,1,59,10127,1,190,59,1,8535,59,1,8540,53,59,1,8536,4,2,54,56,10145,10148,59,1,8538,59,1,8541,56,59,1,8542,108,59,1,8260,119,110,59,1,8994,99,114,59,3,55349,56507,4,17,69,97,98,99,100,101,102,103,105,106,108,110,111,114,115,116,118,10206,10217,10247,10254,10268,10273,10358,10363,10374,10380,10385,10406,10458,10464,10470,10497,10610,4,2,59,108,10212,10214,1,8807,59,1,10892,4,3,99,109,112,10225,10231,10244,117,116,101,59,1,501,109,97,4,2,59,100,10239,10241,1,947,59,1,989,59,1,10886,114,101,118,101,59,1,287,4,2,105,121,10260,10265,114,99,59,1,285,59,1,1075,111,116,59,1,289,4,4,59,108,113,115,10283,10285,10288,10308,1,8805,59,1,8923,4,3,59,113,115,10296,10298,10301,1,8805,59,1,8807,108,97,110,116,59,1,10878,4,4,59,99,100,108,10318,10320,10324,10345,1,10878,99,59,1,10921,111,116,4,2,59,111,10332,10334,1,10880,4,2,59,108,10340,10342,1,10882,59,1,10884,4,2,59,101,10351,10354,3,8923,65024,115,59,1,10900,114,59,3,55349,56612,4,2,59,103,10369,10371,1,8811,59,1,8921,109,101,108,59,1,8503,99,121,59,1,1107,4,4,59,69,97,106,10395,10397,10400,10403,1,8823,59,1,10898,59,1,10917,59,1,10916,4,4,69,97,101,115,10416,10419,10434,10453,59,1,8809,112,4,2,59,112,10426,10428,1,10890,114,111,120,59,1,10890,4,2,59,113,10440,10442,1,10888,4,2,59,113,10448,10450,1,10888,59,1,8809,105,109,59,1,8935,112,102,59,3,55349,56664,97,118,101,59,1,96,4,2,99,105,10476,10480,114,59,1,8458,109,4,3,59,101,108,10489,10491,10494,1,8819,59,1,10894,59,1,10896,5,62,6,59,99,100,108,113,114,10512,10514,10527,10532,10538,10545,1,62,4,2,99,105,10520,10523,59,1,10919,114,59,1,10874,111,116,59,1,8919,80,97,114,59,1,10645,117,101,115,116,59,1,10876,4,5,97,100,101,108,115,10557,10574,10579,10599,10605,4,2,112,114,10563,10570,112,114,111,120,59,1,10886,114,59,1,10616,111,116,59,1,8919,113,4,2,108,113,10586,10592,101,115,115,59,1,8923,108,101,115,115,59,1,10892,101,115,115,59,1,8823,105,109,59,1,8819,4,2,101,110,10616,10626,114,116,110,101,113,113,59,3,8809,65024,69,59,3,8809,65024,4,10,65,97,98,99,101,102,107,111,115,121,10653,10658,10713,10718,10724,10760,10765,10786,10850,10875,114,114,59,1,8660,4,4,105,108,109,114,10668,10674,10678,10684,114,115,112,59,1,8202,102,59,1,189,105,108,116,59,1,8459,4,2,100,114,10690,10695,99,121,59,1,1098,4,3,59,99,119,10703,10705,10710,1,8596,105,114,59,1,10568,59,1,8621,97,114,59,1,8463,105,114,99,59,1,293,4,3,97,108,114,10732,10748,10754,114,116,115,4,2,59,117,10741,10743,1,9829,105,116,59,1,9829,108,105,112,59,1,8230,99,111,110,59,1,8889,114,59,3,55349,56613,115,4,2,101,119,10772,10779,97,114,111,119,59,1,10533,97,114,111,119,59,1,10534,4,5,97,109,111,112,114,10798,10803,10809,10839,10844,114,114,59,1,8703,116,104,116,59,1,8763,107,4,2,108,114,10816,10827,101,102,116,97,114,114,111,119,59,1,8617,105,103,104,116,97,114,114,111,119,59,1,8618,102,59,3,55349,56665,98,97,114,59,1,8213,4,3,99,108,116,10858,10863,10869,114,59,3,55349,56509,97,115,104,59,1,8463,114,111,107,59,1,295,4,2,98,112,10881,10887,117,108,108,59,1,8259,104,101,110,59,1,8208,4,15,97,99,101,102,103,105,106,109,110,111,112,113,115,116,117,10925,10936,10958,10977,10990,11001,11039,11045,11101,11192,11220,11226,11237,11285,11299,99,117,116,101,5,237,1,59,10934,1,237,4,3,59,105,121,10944,10946,10955,1,8291,114,99,5,238,1,59,10953,1,238,59,1,1080,4,2,99,120,10964,10968,121,59,1,1077,99,108,5,161,1,59,10975,1,161,4,2,102,114,10983,10986,59,1,8660,59,3,55349,56614,114,97,118,101,5,236,1,59,10999,1,236,4,4,59,105,110,111,11011,11013,11028,11034,1,8520,4,2,105,110,11019,11024,110,116,59,1,10764,116,59,1,8749,102,105,110,59,1,10716,116,97,59,1,8489,108,105,103,59,1,307,4,3,97,111,112,11053,11092,11096,4,3,99,103,116,11061,11065,11088,114,59,1,299,4,3,101,108,112,11073,11076,11082,59,1,8465,105,110,101,59,1,8464,97,114,116,59,1,8465,104,59,1,305,102,59,1,8887,101,100,59,1,437,4,5,59,99,102,111,116,11113,11115,11121,11136,11142,1,8712,97,114,101,59,1,8453,105,110,4,2,59,116,11129,11131,1,8734,105,101,59,1,10717,100,111,116,59,1,305,4,5,59,99,101,108,112,11154,11156,11161,11179,11186,1,8747,97,108,59,1,8890,4,2,103,114,11167,11173,101,114,115,59,1,8484,99,97,108,59,1,8890,97,114,104,107,59,1,10775,114,111,100,59,1,10812,4,4,99,103,112,116,11202,11206,11211,11216,121,59,1,1105,111,110,59,1,303,102,59,3,55349,56666,97,59,1,953,114,111,100,59,1,10812,117,101,115,116,5,191,1,59,11235,1,191,4,2,99,105,11243,11248,114,59,3,55349,56510,110,4,5,59,69,100,115,118,11261,11263,11266,11271,11282,1,8712,59,1,8953,111,116,59,1,8949,4,2,59,118,11277,11279,1,8948,59,1,8947,59,1,8712,4,2,59,105,11291,11293,1,8290,108,100,101,59,1,297,4,2,107,109,11305,11310,99,121,59,1,1110,108,5,239,1,59,11316,1,239,4,6,99,102,109,111,115,117,11332,11346,11351,11357,11363,11380,4,2,105,121,11338,11343,114,99,59,1,309,59,1,1081,114,59,3,55349,56615,97,116,104,59,1,567,112,102,59,3,55349,56667,4,2,99,101,11369,11374,114,59,3,55349,56511,114,99,121,59,1,1112,107,99,121,59,1,1108,4,8,97,99,102,103,104,106,111,115,11404,11418,11433,11438,11445,11450,11455,11461,112,112,97,4,2,59,118,11413,11415,1,954,59,1,1008,4,2,101,121,11424,11430,100,105,108,59,1,311,59,1,1082,114,59,3,55349,56616,114,101,101,110,59,1,312,99,121,59,1,1093,99,121,59,1,1116,112,102,59,3,55349,56668,99,114,59,3,55349,56512,4,23,65,66,69,72,97,98,99,100,101,102,103,104,106,108,109,110,111,112,114,115,116,117,118,11515,11538,11544,11555,11560,11721,11780,11818,11868,12136,12160,12171,12203,12208,12246,12275,12327,12509,12523,12569,12641,12732,12752,4,3,97,114,116,11523,11528,11532,114,114,59,1,8666,114,59,1,8656,97,105,108,59,1,10523,97,114,114,59,1,10510,4,2,59,103,11550,11552,1,8806,59,1,10891,97,114,59,1,10594,4,9,99,101,103,109,110,112,113,114,116,11580,11586,11594,11600,11606,11624,11627,11636,11694,117,116,101,59,1,314,109,112,116,121,118,59,1,10676,114,97,110,59,1,8466,98,100,97,59,1,955,103,4,3,59,100,108,11615,11617,11620,1,10216,59,1,10641,101,59,1,10216,59,1,10885,117,111,5,171,1,59,11634,1,171,114,4,8,59,98,102,104,108,112,115,116,11655,11657,11669,11673,11677,11681,11685,11690,1,8592,4,2,59,102,11663,11665,1,8676,115,59,1,10527,115,59,1,10525,107,59,1,8617,112,59,1,8619,108,59,1,10553,105,109,59,1,10611,108,59,1,8610,4,3,59,97,101,11702,11704,11709,1,10923,105,108,59,1,10521,4,2,59,115,11715,11717,1,10925,59,3,10925,65024,4,3,97,98,114,11729,11734,11739,114,114,59,1,10508,114,107,59,1,10098,4,2,97,107,11745,11758,99,4,2,101,107,11752,11755,59,1,123,59,1,91,4,2,101,115,11764,11767,59,1,10635,108,4,2,100,117,11774,11777,59,1,10639,59,1,10637,4,4,97,101,117,121,11790,11796,11811,11815,114,111,110,59,1,318,4,2,100,105,11802,11807,105,108,59,1,316,108,59,1,8968,98,59,1,123,59,1,1083,4,4,99,113,114,115,11828,11832,11845,11864,97,59,1,10550,117,111,4,2,59,114,11840,11842,1,8220,59,1,8222,4,2,100,117,11851,11857,104,97,114,59,1,10599,115,104,97,114,59,1,10571,104,59,1,8626,4,5,59,102,103,113,115,11880,11882,12008,12011,12031,1,8804,116,4,5,97,104,108,114,116,11895,11913,11935,11947,11996,114,114,111,119,4,2,59,116,11905,11907,1,8592,97,105,108,59,1,8610,97,114,112,111,111,110,4,2,100,117,11925,11931,111,119,110,59,1,8637,112,59,1,8636,101,102,116,97,114,114,111,119,115,59,1,8647,105,103,104,116,4,3,97,104,115,11959,11974,11984,114,114,111,119,4,2,59,115,11969,11971,1,8596,59,1,8646,97,114,112,111,111,110,115,59,1,8651,113,117,105,103,97,114,114,111,119,59,1,8621,104,114,101,101,116,105,109,101,115,59,1,8907,59,1,8922,4,3,59,113,115,12019,12021,12024,1,8804,59,1,8806,108,97,110,116,59,1,10877,4,5,59,99,100,103,115,12043,12045,12049,12070,12083,1,10877,99,59,1,10920,111,116,4,2,59,111,12057,12059,1,10879,4,2,59,114,12065,12067,1,10881,59,1,10883,4,2,59,101,12076,12079,3,8922,65024,115,59,1,10899,4,5,97,100,101,103,115,12095,12103,12108,12126,12131,112,112,114,111,120,59,1,10885,111,116,59,1,8918,113,4,2,103,113,12115,12120,116,114,59,1,8922,103,116,114,59,1,10891,116,114,59,1,8822,105,109,59,1,8818,4,3,105,108,114,12144,12150,12156,115,104,116,59,1,10620,111,111,114,59,1,8970,59,3,55349,56617,4,2,59,69,12166,12168,1,8822,59,1,10897,4,2,97,98,12177,12198,114,4,2,100,117,12184,12187,59,1,8637,4,2,59,108,12193,12195,1,8636,59,1,10602,108,107,59,1,9604,99,121,59,1,1113,4,5,59,97,99,104,116,12220,12222,12227,12235,12241,1,8810,114,114,59,1,8647,111,114,110,101,114,59,1,8990,97,114,100,59,1,10603,114,105,59,1,9722,4,2,105,111,12252,12258,100,111,116,59,1,320,117,115,116,4,2,59,97,12267,12269,1,9136,99,104,101,59,1,9136,4,4,69,97,101,115,12285,12288,12303,12322,59,1,8808,112,4,2,59,112,12295,12297,1,10889,114,111,120,59,1,10889,4,2,59,113,12309,12311,1,10887,4,2,59,113,12317,12319,1,10887,59,1,8808,105,109,59,1,8934,4,8,97,98,110,111,112,116,119,122,12345,12359,12364,12421,12446,12467,12474,12490,4,2,110,114,12351,12355,103,59,1,10220,114,59,1,8701,114,107,59,1,10214,103,4,3,108,109,114,12373,12401,12409,101,102,116,4,2,97,114,12382,12389,114,114,111,119,59,1,10229,105,103,104,116,97,114,114,111,119,59,1,10231,97,112,115,116,111,59,1,10236,105,103,104,116,97,114,114,111,119,59,1,10230,112,97,114,114,111,119,4,2,108,114,12433,12439,101,102,116,59,1,8619,105,103,104,116,59,1,8620,4,3,97,102,108,12454,12458,12462,114,59,1,10629,59,3,55349,56669,117,115,59,1,10797,105,109,101,115,59,1,10804,4,2,97,98,12480,12485,115,116,59,1,8727,97,114,59,1,95,4,3,59,101,102,12498,12500,12506,1,9674,110,103,101,59,1,9674,59,1,10731,97,114,4,2,59,108,12517,12519,1,40,116,59,1,10643,4,5,97,99,104,109,116,12535,12540,12548,12561,12564,114,114,59,1,8646,111,114,110,101,114,59,1,8991,97,114,4,2,59,100,12556,12558,1,8651,59,1,10605,59,1,8206,114,105,59,1,8895,4,6,97,99,104,105,113,116,12583,12589,12594,12597,12614,12635,113,117,111,59,1,8249,114,59,3,55349,56513,59,1,8624,109,4,3,59,101,103,12606,12608,12611,1,8818,59,1,10893,59,1,10895,4,2,98,117,12620,12623,59,1,91,111,4,2,59,114,12630,12632,1,8216,59,1,8218,114,111,107,59,1,322,5,60,8,59,99,100,104,105,108,113,114,12660,12662,12675,12680,12686,12692,12698,12705,1,60,4,2,99,105,12668,12671,59,1,10918,114,59,1,10873,111,116,59,1,8918,114,101,101,59,1,8907,109,101,115,59,1,8905,97,114,114,59,1,10614,117,101,115,116,59,1,10875,4,2,80,105,12711,12716,97,114,59,1,10646,4,3,59,101,102,12724,12726,12729,1,9667,59,1,8884,59,1,9666,114,4,2,100,117,12739,12746,115,104,97,114,59,1,10570,104,97,114,59,1,10598,4,2,101,110,12758,12768,114,116,110,101,113,113,59,3,8808,65024,69,59,3,8808,65024,4,14,68,97,99,100,101,102,104,105,108,110,111,112,115,117,12803,12809,12893,12908,12914,12928,12933,12937,13011,13025,13032,13049,13052,13069,68,111,116,59,1,8762,4,4,99,108,112,114,12819,12827,12849,12887,114,5,175,1,59,12825,1,175,4,2,101,116,12833,12836,59,1,9794,4,2,59,101,12842,12844,1,10016,115,101,59,1,10016,4,2,59,115,12855,12857,1,8614,116,111,4,4,59,100,108,117,12869,12871,12877,12883,1,8614,111,119,110,59,1,8615,101,102,116,59,1,8612,112,59,1,8613,107,101,114,59,1,9646,4,2,111,121,12899,12905,109,109,97,59,1,10793,59,1,1084,97,115,104,59,1,8212,97,115,117,114,101,100,97,110,103,108,101,59,1,8737,114,59,3,55349,56618,111,59,1,8487,4,3,99,100,110,12945,12954,12985,114,111,5,181,1,59,12952,1,181,4,4,59,97,99,100,12964,12966,12971,12976,1,8739,115,116,59,1,42,105,114,59,1,10992,111,116,5,183,1,59,12983,1,183,117,115,4,3,59,98,100,12995,12997,13000,1,8722,59,1,8863,4,2,59,117,13006,13008,1,8760,59,1,10794,4,2,99,100,13017,13021,112,59,1,10971,114,59,1,8230,112,108,117,115,59,1,8723,4,2,100,112,13038,13044,101,108,115,59,1,8871,102,59,3,55349,56670,59,1,8723,4,2,99,116,13058,13063,114,59,3,55349,56514,112,111,115,59,1,8766,4,3,59,108,109,13077,13079,13087,1,956,116,105,109,97,112,59,1,8888,97,112,59,1,8888,4,24,71,76,82,86,97,98,99,100,101,102,103,104,105,106,108,109,111,112,114,115,116,117,118,119,13142,13165,13217,13229,13247,13330,13359,13414,13420,13508,13513,13579,13602,13626,13631,13762,13767,13855,13936,13995,14214,14285,14312,14432,4,2,103,116,13148,13152,59,3,8921,824,4,2,59,118,13158,13161,3,8811,8402,59,3,8811,824,4,3,101,108,116,13173,13200,13204,102,116,4,2,97,114,13181,13188,114,114,111,119,59,1,8653,105,103,104,116,97,114,114,111,119,59,1,8654,59,3,8920,824,4,2,59,118,13210,13213,3,8810,8402,59,3,8810,824,105,103,104,116,97,114,114,111,119,59,1,8655,4,2,68,100,13235,13241,97,115,104,59,1,8879,97,115,104,59,1,8878,4,5,98,99,110,112,116,13259,13264,13270,13275,13308,108,97,59,1,8711,117,116,101,59,1,324,103,59,3,8736,8402,4,5,59,69,105,111,112,13287,13289,13293,13298,13302,1,8777,59,3,10864,824,100,59,3,8779,824,115,59,1,329,114,111,120,59,1,8777,117,114,4,2,59,97,13316,13318,1,9838,108,4,2,59,115,13325,13327,1,9838,59,1,8469,4,2,115,117,13336,13344,112,5,160,1,59,13342,1,160,109,112,4,2,59,101,13352,13355,3,8782,824,59,3,8783,824,4,5,97,101,111,117,121,13371,13385,13391,13407,13411,4,2,112,114,13377,13380,59,1,10819,111,110,59,1,328,100,105,108,59,1,326,110,103,4,2,59,100,13399,13401,1,8775,111,116,59,3,10861,824,112,59,1,10818,59,1,1085,97,115,104,59,1,8211,4,7,59,65,97,100,113,115,120,13436,13438,13443,13466,13472,13478,13494,1,8800,114,114,59,1,8663,114,4,2,104,114,13450,13454,107,59,1,10532,4,2,59,111,13460,13462,1,8599,119,59,1,8599,111,116,59,3,8784,824,117,105,118,59,1,8802,4,2,101,105,13484,13489,97,114,59,1,10536,109,59,3,8770,824,105,115,116,4,2,59,115,13503,13505,1,8708,59,1,8708,114,59,3,55349,56619,4,4,69,101,115,116,13523,13527,13563,13568,59,3,8807,824,4,3,59,113,115,13535,13537,13559,1,8817,4,3,59,113,115,13545,13547,13551,1,8817,59,3,8807,824,108,97,110,116,59,3,10878,824,59,3,10878,824,105,109,59,1,8821,4,2,59,114,13574,13576,1,8815,59,1,8815,4,3,65,97,112,13587,13592,13597,114,114,59,1,8654,114,114,59,1,8622,97,114,59,1,10994,4,3,59,115,118,13610,13612,13623,1,8715,4,2,59,100,13618,13620,1,8956,59,1,8954,59,1,8715,99,121,59,1,1114,4,7,65,69,97,100,101,115,116,13647,13652,13656,13661,13665,13737,13742,114,114,59,1,8653,59,3,8806,824,114,114,59,1,8602,114,59,1,8229,4,4,59,102,113,115,13675,13677,13703,13725,1,8816,116,4,2,97,114,13684,13691,114,114,111,119,59,1,8602,105,103,104,116,97,114,114,111,119,59,1,8622,4,3,59,113,115,13711,13713,13717,1,8816,59,3,8806,824,108,97,110,116,59,3,10877,824,4,2,59,115,13731,13734,3,10877,824,59,1,8814,105,109,59,1,8820,4,2,59,114,13748,13750,1,8814,105,4,2,59,101,13757,13759,1,8938,59,1,8940,105,100,59,1,8740,4,2,112,116,13773,13778,102,59,3,55349,56671,5,172,3,59,105,110,13787,13789,13829,1,172,110,4,4,59,69,100,118,13800,13802,13806,13812,1,8713,59,3,8953,824,111,116,59,3,8949,824,4,3,97,98,99,13820,13823,13826,59,1,8713,59,1,8951,59,1,8950,105,4,2,59,118,13836,13838,1,8716,4,3,97,98,99,13846,13849,13852,59,1,8716,59,1,8958,59,1,8957,4,3,97,111,114,13863,13892,13899,114,4,4,59,97,115,116,13874,13876,13883,13888,1,8742,108,108,101,108,59,1,8742,108,59,3,11005,8421,59,3,8706,824,108,105,110,116,59,1,10772,4,3,59,99,101,13907,13909,13914,1,8832,117,101,59,1,8928,4,2,59,99,13920,13923,3,10927,824,4,2,59,101,13929,13931,1,8832,113,59,3,10927,824,4,4,65,97,105,116,13946,13951,13971,13982,114,114,59,1,8655,114,114,4,3,59,99,119,13961,13963,13967,1,8603,59,3,10547,824,59,3,8605,824,103,104,116,97,114,114,111,119,59,1,8603,114,105,4,2,59,101,13990,13992,1,8939,59,1,8941,4,7,99,104,105,109,112,113,117,14011,14036,14060,14080,14085,14090,14106,4,4,59,99,101,114,14021,14023,14028,14032,1,8833,117,101,59,1,8929,59,3,10928,824,59,3,55349,56515,111,114,116,4,2,109,112,14045,14050,105,100,59,1,8740,97,114,97,108,108,101,108,59,1,8742,109,4,2,59,101,14067,14069,1,8769,4,2,59,113,14075,14077,1,8772,59,1,8772,105,100,59,1,8740,97,114,59,1,8742,115,117,4,2,98,112,14098,14102,101,59,1,8930,101,59,1,8931,4,3,98,99,112,14114,14157,14171,4,4,59,69,101,115,14124,14126,14130,14133,1,8836,59,3,10949,824,59,1,8840,101,116,4,2,59,101,14141,14144,3,8834,8402,113,4,2,59,113,14151,14153,1,8840,59,3,10949,824,99,4,2,59,101,14164,14166,1,8833,113,59,3,10928,824,4,4,59,69,101,115,14181,14183,14187,14190,1,8837,59,3,10950,824,59,1,8841,101,116,4,2,59,101,14198,14201,3,8835,8402,113,4,2,59,113,14208,14210,1,8841,59,3,10950,824,4,4,103,105,108,114,14224,14228,14238,14242,108,59,1,8825,108,100,101,5,241,1,59,14236,1,241,103,59,1,8824,105,97,110,103,108,101,4,2,108,114,14254,14269,101,102,116,4,2,59,101,14263,14265,1,8938,113,59,1,8940,105,103,104,116,4,2,59,101,14279,14281,1,8939,113,59,1,8941,4,2,59,109,14291,14293,1,957,4,3,59,101,115,14301,14303,14308,1,35,114,111,59,1,8470,112,59,1,8199,4,9,68,72,97,100,103,105,108,114,115,14332,14338,14344,14349,14355,14369,14376,14408,14426,97,115,104,59,1,8877,97,114,114,59,1,10500,112,59,3,8781,8402,97,115,104,59,1,8876,4,2,101,116,14361,14365,59,3,8805,8402,59,3,62,8402,110,102,105,110,59,1,10718,4,3,65,101,116,14384,14389,14393,114,114,59,1,10498,59,3,8804,8402,4,2,59,114,14399,14402,3,60,8402,105,101,59,3,8884,8402,4,2,65,116,14414,14419,114,114,59,1,10499,114,105,101,59,3,8885,8402,105,109,59,3,8764,8402,4,3,65,97,110,14440,14445,14468,114,114,59,1,8662,114,4,2,104,114,14452,14456,107,59,1,10531,4,2,59,111,14462,14464,1,8598,119,59,1,8598,101,97,114,59,1,10535,4,18,83,97,99,100,101,102,103,104,105,108,109,111,112,114,115,116,117,118,14512,14515,14535,14560,14597,14603,14618,14643,14657,14662,14701,14741,14747,14769,14851,14877,14907,14916,59,1,9416,4,2,99,115,14521,14531,117,116,101,5,243,1,59,14529,1,243,116,59,1,8859,4,2,105,121,14541,14557,114,4,2,59,99,14548,14550,1,8858,5,244,1,59,14555,1,244,59,1,1086,4,5,97,98,105,111,115,14572,14577,14583,14587,14591,115,104,59,1,8861,108,97,99,59,1,337,118,59,1,10808,116,59,1,8857,111,108,100,59,1,10684,108,105,103,59,1,339,4,2,99,114,14609,14614,105,114,59,1,10687,59,3,55349,56620,4,3,111,114,116,14626,14630,14640,110,59,1,731,97,118,101,5,242,1,59,14638,1,242,59,1,10689,4,2,98,109,14649,14654,97,114,59,1,10677,59,1,937,110,116,59,1,8750,4,4,97,99,105,116,14672,14677,14693,14698,114,114,59,1,8634,4,2,105,114,14683,14687,114,59,1,10686,111,115,115,59,1,10683,110,101,59,1,8254,59,1,10688,4,3,97,101,105,14709,14714,14719,99,114,59,1,333,103,97,59,1,969,4,3,99,100,110,14727,14733,14736,114,111,110,59,1,959,59,1,10678,117,115,59,1,8854,112,102,59,3,55349,56672,4,3,97,101,108,14755,14759,14764,114,59,1,10679,114,112,59,1,10681,117,115,59,1,8853,4,7,59,97,100,105,111,115,118,14785,14787,14792,14831,14837,14841,14848,1,8744,114,114,59,1,8635,4,4,59,101,102,109,14802,14804,14817,14824,1,10845,114,4,2,59,111,14811,14813,1,8500,102,59,1,8500,5,170,1,59,14822,1,170,5,186,1,59,14829,1,186,103,111,102,59,1,8886,114,59,1,10838,108,111,112,101,59,1,10839,59,1,10843,4,3,99,108,111,14859,14863,14873,114,59,1,8500,97,115,104,5,248,1,59,14871,1,248,108,59,1,8856,105,4,2,108,109,14884,14893,100,101,5,245,1,59,14891,1,245,101,115,4,2,59,97,14901,14903,1,8855,115,59,1,10806,109,108,5,246,1,59,14914,1,246,98,97,114,59,1,9021,4,12,97,99,101,102,104,105,108,109,111,114,115,117,14948,14992,14996,15033,15038,15068,15090,15189,15192,15222,15427,15441,114,4,4,59,97,115,116,14959,14961,14976,14989,1,8741,5,182,2,59,108,14968,14970,1,182,108,101,108,59,1,8741,4,2,105,108,14982,14986,109,59,1,10995,59,1,11005,59,1,8706,121,59,1,1087,114,4,5,99,105,109,112,116,15009,15014,15019,15024,15027,110,116,59,1,37,111,100,59,1,46,105,108,59,1,8240,59,1,8869,101,110,107,59,1,8241,114,59,3,55349,56621,4,3,105,109,111,15046,15057,15063,4,2,59,118,15052,15054,1,966,59,1,981,109,97,116,59,1,8499,110,101,59,1,9742,4,3,59,116,118,15076,15078,15087,1,960,99,104,102,111,114,107,59,1,8916,59,1,982,4,2,97,117,15096,15119,110,4,2,99,107,15103,15115,107,4,2,59,104,15110,15112,1,8463,59,1,8462,118,59,1,8463,115,4,9,59,97,98,99,100,101,109,115,116,15140,15142,15148,15151,15156,15168,15171,15179,15184,1,43,99,105,114,59,1,10787,59,1,8862,105,114,59,1,10786,4,2,111,117,15162,15165,59,1,8724,59,1,10789,59,1,10866,110,5,177,1,59,15177,1,177,105,109,59,1,10790,119,111,59,1,10791,59,1,177,4,3,105,112,117,15200,15208,15213,110,116,105,110,116,59,1,10773,102,59,3,55349,56673,110,100,5,163,1,59,15220,1,163,4,10,59,69,97,99,101,105,110,111,115,117,15244,15246,15249,15253,15258,15334,15347,15367,15416,15421,1,8826,59,1,10931,112,59,1,10935,117,101,59,1,8828,4,2,59,99,15264,15266,1,10927,4,6,59,97,99,101,110,115,15280,15282,15290,15299,15303,15329,1,8826,112,112,114,111,120,59,1,10935,117,114,108,121,101,113,59,1,8828,113,59,1,10927,4,3,97,101,115,15311,15319,15324,112,112,114,111,120,59,1,10937,113,113,59,1,10933,105,109,59,1,8936,105,109,59,1,8830,109,101,4,2,59,115,15342,15344,1,8242,59,1,8473,4,3,69,97,115,15355,15358,15362,59,1,10933,112,59,1,10937,105,109,59,1,8936,4,3,100,102,112,15375,15378,15404,59,1,8719,4,3,97,108,115,15386,15392,15398,108,97,114,59,1,9006,105,110,101,59,1,8978,117,114,102,59,1,8979,4,2,59,116,15410,15412,1,8733,111,59,1,8733,105,109,59,1,8830,114,101,108,59,1,8880,4,2,99,105,15433,15438,114,59,3,55349,56517,59,1,968,110,99,115,112,59,1,8200,4,6,102,105,111,112,115,117,15462,15467,15472,15478,15485,15491,114,59,3,55349,56622,110,116,59,1,10764,112,102,59,3,55349,56674,114,105,109,101,59,1,8279,99,114,59,3,55349,56518,4,3,97,101,111,15499,15520,15534,116,4,2,101,105,15506,15515,114,110,105,111,110,115,59,1,8461,110,116,59,1,10774,115,116,4,2,59,101,15528,15530,1,63,113,59,1,8799,116,5,34,1,59,15540,1,34,4,21,65,66,72,97,98,99,100,101,102,104,105,108,109,110,111,112,114,115,116,117,120,15586,15609,15615,15620,15796,15855,15893,15931,15977,16001,16039,16183,16204,16222,16228,16285,16312,16318,16363,16408,16416,4,3,97,114,116,15594,15599,15603,114,114,59,1,8667,114,59,1,8658,97,105,108,59,1,10524,97,114,114,59,1,10511,97,114,59,1,10596,4,7,99,100,101,110,113,114,116,15636,15651,15656,15664,15687,15696,15770,4,2,101,117,15642,15646,59,3,8765,817,116,101,59,1,341,105,99,59,1,8730,109,112,116,121,118,59,1,10675,103,4,4,59,100,101,108,15675,15677,15680,15683,1,10217,59,1,10642,59,1,10661,101,59,1,10217,117,111,5,187,1,59,15694,1,187,114,4,11,59,97,98,99,102,104,108,112,115,116,119,15721,15723,15727,15739,15742,15746,15750,15754,15758,15763,15767,1,8594,112,59,1,10613,4,2,59,102,15733,15735,1,8677,115,59,1,10528,59,1,10547,115,59,1,10526,107,59,1,8618,112,59,1,8620,108,59,1,10565,105,109,59,1,10612,108,59,1,8611,59,1,8605,4,2,97,105,15776,15781,105,108,59,1,10522,111,4,2,59,110,15788,15790,1,8758,97,108,115,59,1,8474,4,3,97,98,114,15804,15809,15814,114,114,59,1,10509,114,107,59,1,10099,4,2,97,107,15820,15833,99,4,2,101,107,15827,15830,59,1,125,59,1,93,4,2,101,115,15839,15842,59,1,10636,108,4,2,100,117,15849,15852,59,1,10638,59,1,10640,4,4,97,101,117,121,15865,15871,15886,15890,114,111,110,59,1,345,4,2,100,105,15877,15882,105,108,59,1,343,108,59,1,8969,98,59,1,125,59,1,1088,4,4,99,108,113,115,15903,15907,15914,15927,97,59,1,10551,100,104,97,114,59,1,10601,117,111,4,2,59,114,15922,15924,1,8221,59,1,8221,104,59,1,8627,4,3,97,99,103,15939,15966,15970,108,4,4,59,105,112,115,15950,15952,15957,15963,1,8476,110,101,59,1,8475,97,114,116,59,1,8476,59,1,8477,116,59,1,9645,5,174,1,59,15975,1,174,4,3,105,108,114,15985,15991,15997,115,104,116,59,1,10621,111,111,114,59,1,8971,59,3,55349,56623,4,2,97,111,16007,16028,114,4,2,100,117,16014,16017,59,1,8641,4,2,59,108,16023,16025,1,8640,59,1,10604,4,2,59,118,16034,16036,1,961,59,1,1009,4,3,103,110,115,16047,16167,16171,104,116,4,6,97,104,108,114,115,116,16063,16081,16103,16130,16143,16155,114,114,111,119,4,2,59,116,16073,16075,1,8594,97,105,108,59,1,8611,97,114,112,111,111,110,4,2,100,117,16093,16099,111,119,110,59,1,8641,112,59,1,8640,101,102,116,4,2,97,104,16112,16120,114,114,111,119,115,59,1,8644,97,114,112,111,111,110,115,59,1,8652,105,103,104,116,97,114,114,111,119,115,59,1,8649,113,117,105,103,97,114,114,111,119,59,1,8605,104,114,101,101,116,105,109,101,115,59,1,8908,103,59,1,730,105,110,103,100,111,116,115,101,113,59,1,8787,4,3,97,104,109,16191,16196,16201,114,114,59,1,8644,97,114,59,1,8652,59,1,8207,111,117,115,116,4,2,59,97,16214,16216,1,9137,99,104,101,59,1,9137,109,105,100,59,1,10990,4,4,97,98,112,116,16238,16252,16257,16278,4,2,110,114,16244,16248,103,59,1,10221,114,59,1,8702,114,107,59,1,10215,4,3,97,102,108,16265,16269,16273,114,59,1,10630,59,3,55349,56675,117,115,59,1,10798,105,109,101,115,59,1,10805,4,2,97,112,16291,16304,114,4,2,59,103,16298,16300,1,41,116,59,1,10644,111,108,105,110,116,59,1,10770,97,114,114,59,1,8649,4,4,97,99,104,113,16328,16334,16339,16342,113,117,111,59,1,8250,114,59,3,55349,56519,59,1,8625,4,2,98,117,16348,16351,59,1,93,111,4,2,59,114,16358,16360,1,8217,59,1,8217,4,3,104,105,114,16371,16377,16383,114,101,101,59,1,8908,109,101,115,59,1,8906,105,4,4,59,101,102,108,16394,16396,16399,16402,1,9657,59,1,8885,59,1,9656,116,114,105,59,1,10702,108,117,104,97,114,59,1,10600,59,1,8478,4,19,97,98,99,100,101,102,104,105,108,109,111,112,113,114,115,116,117,119,122,16459,16466,16472,16572,16590,16672,16687,16746,16844,16850,16924,16963,16988,17115,17121,17154,17206,17614,17656,99,117,116,101,59,1,347,113,117,111,59,1,8218,4,10,59,69,97,99,101,105,110,112,115,121,16494,16496,16499,16513,16518,16531,16536,16556,16564,16569,1,8827,59,1,10932,4,2,112,114,16505,16508,59,1,10936,111,110,59,1,353,117,101,59,1,8829,4,2,59,100,16524,16526,1,10928,105,108,59,1,351,114,99,59,1,349,4,3,69,97,115,16544,16547,16551,59,1,10934,112,59,1,10938,105,109,59,1,8937,111,108,105,110,116,59,1,10771,105,109,59,1,8831,59,1,1089,111,116,4,3,59,98,101,16582,16584,16587,1,8901,59,1,8865,59,1,10854,4,7,65,97,99,109,115,116,120,16606,16611,16634,16642,16646,16652,16668,114,114,59,1,8664,114,4,2,104,114,16618,16622,107,59,1,10533,4,2,59,111,16628,16630,1,8600,119,59,1,8600,116,5,167,1,59,16640,1,167,105,59,1,59,119,97,114,59,1,10537,109,4,2,105,110,16659,16665,110,117,115,59,1,8726,59,1,8726,116,59,1,10038,114,4,2,59,111,16679,16682,3,55349,56624,119,110,59,1,8994,4,4,97,99,111,121,16697,16702,16716,16739,114,112,59,1,9839,4,2,104,121,16708,16713,99,121,59,1,1097,59,1,1096,114,116,4,2,109,112,16724,16729,105,100,59,1,8739,97,114,97,108,108,101,108,59,1,8741,5,173,1,59,16744,1,173,4,2,103,109,16752,16770,109,97,4,3,59,102,118,16762,16764,16767,1,963,59,1,962,59,1,962,4,8,59,100,101,103,108,110,112,114,16788,16790,16795,16806,16817,16828,16832,16838,1,8764,111,116,59,1,10858,4,2,59,113,16801,16803,1,8771,59,1,8771,4,2,59,69,16812,16814,1,10910,59,1,10912,4,2,59,69,16823,16825,1,10909,59,1,10911,101,59,1,8774,108,117,115,59,1,10788,97,114,114,59,1,10610,97,114,114,59,1,8592,4,4,97,101,105,116,16860,16883,16891,16904,4,2,108,115,16866,16878,108,115,101,116,109,105,110,117,115,59,1,8726,104,112,59,1,10803,112,97,114,115,108,59,1,10724,4,2,100,108,16897,16900,59,1,8739,101,59,1,8995,4,2,59,101,16910,16912,1,10922,4,2,59,115,16918,16920,1,10924,59,3,10924,65024,4,3,102,108,112,16932,16938,16958,116,99,121,59,1,1100,4,2,59,98,16944,16946,1,47,4,2,59,97,16952,16954,1,10692,114,59,1,9023,102,59,3,55349,56676,97,4,2,100,114,16970,16985,101,115,4,2,59,117,16978,16980,1,9824,105,116,59,1,9824,59,1,8741,4,3,99,115,117,16996,17028,17089,4,2,97,117,17002,17015,112,4,2,59,115,17009,17011,1,8851,59,3,8851,65024,112,4,2,59,115,17022,17024,1,8852,59,3,8852,65024,117,4,2,98,112,17035,17062,4,3,59,101,115,17043,17045,17048,1,8847,59,1,8849,101,116,4,2,59,101,17056,17058,1,8847,113,59,1,8849,4,3,59,101,115,17070,17072,17075,1,8848,59,1,8850,101,116,4,2,59,101,17083,17085,1,8848,113,59,1,8850,4,3,59,97,102,17097,17099,17112,1,9633,114,4,2,101,102,17106,17109,59,1,9633,59,1,9642,59,1,9642,97,114,114,59,1,8594,4,4,99,101,109,116,17131,17136,17142,17148,114,59,3,55349,56520,116,109,110,59,1,8726,105,108,101,59,1,8995,97,114,102,59,1,8902,4,2,97,114,17160,17172,114,4,2,59,102,17167,17169,1,9734,59,1,9733,4,2,97,110,17178,17202,105,103,104,116,4,2,101,112,17188,17197,112,115,105,108,111,110,59,1,1013,104,105,59,1,981,115,59,1,175,4,5,98,99,109,110,112,17218,17351,17420,17423,17427,4,9,59,69,100,101,109,110,112,114,115,17238,17240,17243,17248,17261,17267,17279,17285,17291,1,8834,59,1,10949,111,116,59,1,10941,4,2,59,100,17254,17256,1,8838,111,116,59,1,10947,117,108,116,59,1,10945,4,2,69,101,17273,17276,59,1,10955,59,1,8842,108,117,115,59,1,10943,97,114,114,59,1,10617,4,3,101,105,117,17299,17335,17339,116,4,3,59,101,110,17308,17310,17322,1,8834,113,4,2,59,113,17317,17319,1,8838,59,1,10949,101,113,4,2,59,113,17330,17332,1,8842,59,1,10955,109,59,1,10951,4,2,98,112,17345,17348,59,1,10965,59,1,10963,99,4,6,59,97,99,101,110,115,17366,17368,17376,17385,17389,17415,1,8827,112,112,114,111,120,59,1,10936,117,114,108,121,101,113,59,1,8829,113,59,1,10928,4,3,97,101,115,17397,17405,17410,112,112,114,111,120,59,1,10938,113,113,59,1,10934,105,109,59,1,8937,105,109,59,1,8831,59,1,8721,103,59,1,9834,4,13,49,50,51,59,69,100,101,104,108,109,110,112,115,17455,17462,17469,17476,17478,17481,17496,17509,17524,17530,17536,17548,17554,5,185,1,59,17460,1,185,5,178,1,59,17467,1,178,5,179,1,59,17474,1,179,1,8835,59,1,10950,4,2,111,115,17487,17491,116,59,1,10942,117,98,59,1,10968,4,2,59,100,17502,17504,1,8839,111,116,59,1,10948,115,4,2,111,117,17516,17520,108,59,1,10185,98,59,1,10967,97,114,114,59,1,10619,117,108,116,59,1,10946,4,2,69,101,17542,17545,59,1,10956,59,1,8843,108,117,115,59,1,10944,4,3,101,105,117,17562,17598,17602,116,4,3,59,101,110,17571,17573,17585,1,8835,113,4,2,59,113,17580,17582,1,8839,59,1,10950,101,113,4,2,59,113,17593,17595,1,8843,59,1,10956,109,59,1,10952,4,2,98,112,17608,17611,59,1,10964,59,1,10966,4,3,65,97,110,17622,17627,17650,114,114,59,1,8665,114,4,2,104,114,17634,17638,107,59,1,10534,4,2,59,111,17644,17646,1,8601,119,59,1,8601,119,97,114,59,1,10538,108,105,103,5,223,1,59,17664,1,223,4,13,97,98,99,100,101,102,104,105,111,112,114,115,119,17694,17709,17714,17737,17742,17749,17754,17860,17905,17957,17964,18090,18122,4,2,114,117,17700,17706,103,101,116,59,1,8982,59,1,964,114,107,59,1,9140,4,3,97,101,121,17722,17728,17734,114,111,110,59,1,357,100,105,108,59,1,355,59,1,1090,111,116,59,1,8411,108,114,101,99,59,1,8981,114,59,3,55349,56625,4,4,101,105,107,111,17764,17805,17836,17851,4,2,114,116,17770,17786,101,4,2,52,102,17777,17780,59,1,8756,111,114,101,59,1,8756,97,4,3,59,115,118,17795,17797,17802,1,952,121,109,59,1,977,59,1,977,4,2,99,110,17811,17831,107,4,2,97,115,17818,17826,112,112,114,111,120,59,1,8776,105,109,59,1,8764,115,112,59,1,8201,4,2,97,115,17842,17846,112,59,1,8776,105,109,59,1,8764,114,110,5,254,1,59,17858,1,254,4,3,108,109,110,17868,17873,17901,100,101,59,1,732,101,115,5,215,3,59,98,100,17884,17886,17898,1,215,4,2,59,97,17892,17894,1,8864,114,59,1,10801,59,1,10800,116,59,1,8749,4,3,101,112,115,17913,17917,17953,97,59,1,10536,4,4,59,98,99,102,17927,17929,17934,17939,1,8868,111,116,59,1,9014,105,114,59,1,10993,4,2,59,111,17945,17948,3,55349,56677,114,107,59,1,10970,97,59,1,10537,114,105,109,101,59,1,8244,4,3,97,105,112,17972,17977,18082,100,101,59,1,8482,4,7,97,100,101,109,112,115,116,17993,18051,18056,18059,18066,18072,18076,110,103,108,101,4,5,59,100,108,113,114,18009,18011,18017,18032,18035,1,9653,111,119,110,59,1,9663,101,102,116,4,2,59,101,18026,18028,1,9667,113,59,1,8884,59,1,8796,105,103,104,116,4,2,59,101,18045,18047,1,9657,113,59,1,8885,111,116,59,1,9708,59,1,8796,105,110,117,115,59,1,10810,108,117,115,59,1,10809,98,59,1,10701,105,109,101,59,1,10811,101,122,105,117,109,59,1,9186,4,3,99,104,116,18098,18111,18116,4,2,114,121,18104,18108,59,3,55349,56521,59,1,1094,99,121,59,1,1115,114,111,107,59,1,359,4,2,105,111,18128,18133,120,116,59,1,8812,104,101,97,100,4,2,108,114,18143,18154,101,102,116,97,114,114,111,119,59,1,8606,105,103,104,116,97,114,114,111,119,59,1,8608,4,18,65,72,97,98,99,100,102,103,104,108,109,111,112,114,115,116,117,119,18204,18209,18214,18234,18250,18268,18292,18308,18319,18343,18379,18397,18413,18504,18547,18553,18584,18603,114,114,59,1,8657,97,114,59,1,10595,4,2,99,114,18220,18230,117,116,101,5,250,1,59,18228,1,250,114,59,1,8593,114,4,2,99,101,18241,18245,121,59,1,1118,118,101,59,1,365,4,2,105,121,18256,18265,114,99,5,251,1,59,18263,1,251,59,1,1091,4,3,97,98,104,18276,18281,18287,114,114,59,1,8645,108,97,99,59,1,369,97,114,59,1,10606,4,2,105,114,18298,18304,115,104,116,59,1,10622,59,3,55349,56626,114,97,118,101,5,249,1,59,18317,1,249,4,2,97,98,18325,18338,114,4,2,108,114,18332,18335,59,1,8639,59,1,8638,108,107,59,1,9600,4,2,99,116,18349,18374,4,2,111,114,18355,18369,114,110,4,2,59,101,18363,18365,1,8988,114,59,1,8988,111,112,59,1,8975,114,105,59,1,9720,4,2,97,108,18385,18390,99,114,59,1,363,5,168,1,59,18395,1,168,4,2,103,112,18403,18408,111,110,59,1,371,102,59,3,55349,56678,4,6,97,100,104,108,115,117,18427,18434,18445,18470,18475,18494,114,114,111,119,59,1,8593,111,119,110,97,114,114,111,119,59,1,8597,97,114,112,111,111,110,4,2,108,114,18457,18463,101,102,116,59,1,8639,105,103,104,116,59,1,8638,117,115,59,1,8846,105,4,3,59,104,108,18484,18486,18489,1,965,59,1,978,111,110,59,1,965,112,97,114,114,111,119,115,59,1,8648,4,3,99,105,116,18512,18537,18542,4,2,111,114,18518,18532,114,110,4,2,59,101,18526,18528,1,8989,114,59,1,8989,111,112,59,1,8974,110,103,59,1,367,114,105,59,1,9721,99,114,59,3,55349,56522,4,3,100,105,114,18561,18566,18572,111,116,59,1,8944,108,100,101,59,1,361,105,4,2,59,102,18579,18581,1,9653,59,1,9652,4,2,97,109,18590,18595,114,114,59,1,8648,108,5,252,1,59,18601,1,252,97,110,103,108,101,59,1,10663,4,15,65,66,68,97,99,100,101,102,108,110,111,112,114,115,122,18643,18648,18661,18667,18847,18851,18857,18904,18909,18915,18931,18937,18943,18949,18996,114,114,59,1,8661,97,114,4,2,59,118,18656,18658,1,10984,59,1,10985,97,115,104,59,1,8872,4,2,110,114,18673,18679,103,114,116,59,1,10652,4,7,101,107,110,112,114,115,116,18695,18704,18711,18720,18742,18754,18810,112,115,105,108,111,110,59,1,1013,97,112,112,97,59,1,1008,111,116,104,105,110,103,59,1,8709,4,3,104,105,114,18728,18732,18735,105,59,1,981,59,1,982,111,112,116,111,59,1,8733,4,2,59,104,18748,18750,1,8597,111,59,1,1009,4,2,105,117,18760,18766,103,109,97,59,1,962,4,2,98,112,18772,18791,115,101,116,110,101,113,4,2,59,113,18784,18787,3,8842,65024,59,3,10955,65024,115,101,116,110,101,113,4,2,59,113,18803,18806,3,8843,65024,59,3,10956,65024,4,2,104,114,18816,18822,101,116,97,59,1,977,105,97,110,103,108,101,4,2,108,114,18834,18840,101,102,116,59,1,8882,105,103,104,116,59,1,8883,121,59,1,1074,97,115,104,59,1,8866,4,3,101,108,114,18865,18884,18890,4,3,59,98,101,18873,18875,18880,1,8744,97,114,59,1,8891,113,59,1,8794,108,105,112,59,1,8942,4,2,98,116,18896,18901,97,114,59,1,124,59,1,124,114,59,3,55349,56627,116,114,105,59,1,8882,115,117,4,2,98,112,18923,18927,59,3,8834,8402,59,3,8835,8402,112,102,59,3,55349,56679,114,111,112,59,1,8733,116,114,105,59,1,8883,4,2,99,117,18955,18960,114,59,3,55349,56523,4,2,98,112,18966,18981,110,4,2,69,101,18973,18977,59,3,10955,65024,59,3,8842,65024,110,4,2,69,101,18988,18992,59,3,10956,65024,59,3,8843,65024,105,103,122,97,103,59,1,10650,4,7,99,101,102,111,112,114,115,19020,19026,19061,19066,19072,19075,19089,105,114,99,59,1,373,4,2,100,105,19032,19055,4,2,98,103,19038,19043,97,114,59,1,10847,101,4,2,59,113,19050,19052,1,8743,59,1,8793,101,114,112,59,1,8472,114,59,3,55349,56628,112,102,59,3,55349,56680,59,1,8472,4,2,59,101,19081,19083,1,8768,97,116,104,59,1,8768,99,114,59,3,55349,56524,4,14,99,100,102,104,105,108,109,110,111,114,115,117,118,119,19125,19146,19152,19157,19173,19176,19192,19197,19202,19236,19252,19269,19286,19291,4,3,97,105,117,19133,19137,19142,112,59,1,8898,114,99,59,1,9711,112,59,1,8899,116,114,105,59,1,9661,114,59,3,55349,56629,4,2,65,97,19163,19168,114,114,59,1,10234,114,114,59,1,10231,59,1,958,4,2,65,97,19182,19187,114,114,59,1,10232,114,114,59,1,10229,97,112,59,1,10236,105,115,59,1,8955,4,3,100,112,116,19210,19215,19230,111,116,59,1,10752,4,2,102,108,19221,19225,59,3,55349,56681,117,115,59,1,10753,105,109,101,59,1,10754,4,2,65,97,19242,19247,114,114,59,1,10233,114,114,59,1,10230,4,2,99,113,19258,19263,114,59,3,55349,56525,99,117,112,59,1,10758,4,2,112,116,19275,19281,108,117,115,59,1,10756,114,105,59,1,9651,101,101,59,1,8897,101,100,103,101,59,1,8896,4,8,97,99,101,102,105,111,115,117,19316,19335,19349,19357,19362,19367,19373,19379,99,4,2,117,121,19323,19332,116,101,5,253,1,59,19330,1,253,59,1,1103,4,2,105,121,19341,19346,114,99,59,1,375,59,1,1099,110,5,165,1,59,19355,1,165,114,59,3,55349,56630,99,121,59,1,1111,112,102,59,3,55349,56682,99,114,59,3,55349,56526,4,2,99,109,19385,19389,121,59,1,1102,108,5,255,1,59,19395,1,255,4,10,97,99,100,101,102,104,105,111,115,119,19419,19426,19441,19446,19462,19467,19472,19480,19486,19492,99,117,116,101,59,1,378,4,2,97,121,19432,19438,114,111,110,59,1,382,59,1,1079,111,116,59,1,380,4,2,101,116,19452,19458,116,114,102,59,1,8488,97,59,1,950,114,59,3,55349,56631,99,121,59,1,1078,103,114,97,114,114,59,1,8669,112,102,59,3,55349,56683,99,114,59,3,55349,56527,4,2,106,110,19498,19501,59,1,8205,106,59,1,8204]); -},{}],484:[function(require,module,exports){ +},{}],486:[function(require,module,exports){ 'use strict'; const unicode = require('../common/unicode'); @@ -74189,7 +74282,7 @@ class Preprocessor { module.exports = Preprocessor; -},{"../common/error-codes":465,"../common/unicode":468}],485:[function(require,module,exports){ +},{"../common/error-codes":467,"../common/unicode":470}],487:[function(require,module,exports){ 'use strict'; const { DOCUMENT_MODE } = require('../common/html'); @@ -74412,7 +74505,7 @@ exports.updateNodeSourceCodeLocation = function(node, endLocation) { node.sourceCodeLocation = Object.assign(node.sourceCodeLocation, endLocation); }; -},{"../common/html":467}],486:[function(require,module,exports){ +},{"../common/html":469}],488:[function(require,module,exports){ 'use strict'; module.exports = function mergeOptions(defaults, options) { @@ -74427,7 +74520,7 @@ module.exports = function mergeOptions(defaults, options) { }, Object.create(null)); }; -},{}],487:[function(require,module,exports){ +},{}],489:[function(require,module,exports){ 'use strict'; class Mixin { @@ -74468,7 +74561,7 @@ Mixin.install = function(host, Ctor, opts) { module.exports = Mixin; -},{}],488:[function(require,module,exports){ +},{}],490:[function(require,module,exports){ // shim for using process in browser var process = module.exports = {}; @@ -74654,7 +74747,7 @@ process.chdir = function (dir) { }; process.umask = function() { return 0; }; -},{}],489:[function(require,module,exports){ +},{}],491:[function(require,module,exports){ (function (global){(function (){ /*! https://mths.be/punycode v1.4.1 by @mathias */ ;(function(root) { @@ -75191,7 +75284,50 @@ process.umask = function() { return 0; }; }(this)); }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{}],490:[function(require,module,exports){ +},{}],492:[function(require,module,exports){ +'use strict'; + +var GetIntrinsic = require('get-intrinsic'); +var define = require('define-data-property'); +var hasDescriptors = require('has-property-descriptors')(); +var gOPD = require('gopd'); + +var $TypeError = GetIntrinsic('%TypeError%'); +var $floor = GetIntrinsic('%Math.floor%'); + +module.exports = function setFunctionLength(fn, length) { + if (typeof fn !== 'function') { + throw new $TypeError('`fn` is not a function'); + } + if (typeof length !== 'number' || length < 0 || length > 0xFFFFFFFF || $floor(length) !== length) { + throw new $TypeError('`length` must be a positive 32-bit integer'); + } + + var loose = arguments.length > 2 && !!arguments[2]; + + var functionLengthIsConfigurable = true; + var functionLengthIsWritable = true; + if ('length' in fn && gOPD) { + var desc = gOPD(fn, 'length'); + if (desc && !desc.configurable) { + functionLengthIsConfigurable = false; + } + if (desc && !desc.writable) { + functionLengthIsWritable = false; + } + } + + if (functionLengthIsConfigurable || functionLengthIsWritable || !loose) { + if (hasDescriptors) { + define(fn, 'length', length, true, true); + } else { + define(fn, 'length', length); + } + } + return fn; +}; + +},{"define-data-property":40,"get-intrinsic":66,"gopd":67,"has-property-descriptors":68}],493:[function(require,module,exports){ /* Slick Parser - originally created by the almighty Thomas Aylott <@subtlegradient> (http://subtlegradient.com) @@ -75443,7 +75579,7 @@ var parse = function(expression){ module.exports = parse -},{}],491:[function(require,module,exports){ +},{}],494:[function(require,module,exports){ (function (global){(function (){ /****************************************************************************** Copyright (c) Microsoft Corporation. @@ -75868,15 +76004,15 @@ var __disposeResources; }); }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{}],492:[function(require,module,exports){ +},{}],495:[function(require,module,exports){ module.exports=/[\0-\x1F\x7F-\x9F]/ -},{}],493:[function(require,module,exports){ +},{}],496:[function(require,module,exports){ module.exports=/[\xAD\u0600-\u0605\u061C\u06DD\u070F\u08E2\u180E\u200B-\u200F\u202A-\u202E\u2060-\u2064\u2066-\u206F\uFEFF\uFFF9-\uFFFB]|\uD804[\uDCBD\uDCCD]|\uD82F[\uDCA0-\uDCA3]|\uD834[\uDD73-\uDD7A]|\uDB40[\uDC01\uDC20-\uDC7F]/ -},{}],494:[function(require,module,exports){ +},{}],497:[function(require,module,exports){ module.exports=/[!-#%-\*,-\/:;\?@\[-\]_\{\}\xA1\xA7\xAB\xB6\xB7\xBB\xBF\u037E\u0387\u055A-\u055F\u0589\u058A\u05BE\u05C0\u05C3\u05C6\u05F3\u05F4\u0609\u060A\u060C\u060D\u061B\u061E\u061F\u066A-\u066D\u06D4\u0700-\u070D\u07F7-\u07F9\u0830-\u083E\u085E\u0964\u0965\u0970\u09FD\u0A76\u0AF0\u0C84\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F14\u0F3A-\u0F3D\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1360-\u1368\u1400\u166D\u166E\u169B\u169C\u16EB-\u16ED\u1735\u1736\u17D4-\u17D6\u17D8-\u17DA\u1800-\u180A\u1944\u1945\u1A1E\u1A1F\u1AA0-\u1AA6\u1AA8-\u1AAD\u1B5A-\u1B60\u1BFC-\u1BFF\u1C3B-\u1C3F\u1C7E\u1C7F\u1CC0-\u1CC7\u1CD3\u2010-\u2027\u2030-\u2043\u2045-\u2051\u2053-\u205E\u207D\u207E\u208D\u208E\u2308-\u230B\u2329\u232A\u2768-\u2775\u27C5\u27C6\u27E6-\u27EF\u2983-\u2998\u29D8-\u29DB\u29FC\u29FD\u2CF9-\u2CFC\u2CFE\u2CFF\u2D70\u2E00-\u2E2E\u2E30-\u2E4E\u3001-\u3003\u3008-\u3011\u3014-\u301F\u3030\u303D\u30A0\u30FB\uA4FE\uA4FF\uA60D-\uA60F\uA673\uA67E\uA6F2-\uA6F7\uA874-\uA877\uA8CE\uA8CF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA95F\uA9C1-\uA9CD\uA9DE\uA9DF\uAA5C-\uAA5F\uAADE\uAADF\uAAF0\uAAF1\uABEB\uFD3E\uFD3F\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE61\uFE63\uFE68\uFE6A\uFE6B\uFF01-\uFF03\uFF05-\uFF0A\uFF0C-\uFF0F\uFF1A\uFF1B\uFF1F\uFF20\uFF3B-\uFF3D\uFF3F\uFF5B\uFF5D\uFF5F-\uFF65]|\uD800[\uDD00-\uDD02\uDF9F\uDFD0]|\uD801\uDD6F|\uD802[\uDC57\uDD1F\uDD3F\uDE50-\uDE58\uDE7F\uDEF0-\uDEF6\uDF39-\uDF3F\uDF99-\uDF9C]|\uD803[\uDF55-\uDF59]|\uD804[\uDC47-\uDC4D\uDCBB\uDCBC\uDCBE-\uDCC1\uDD40-\uDD43\uDD74\uDD75\uDDC5-\uDDC8\uDDCD\uDDDB\uDDDD-\uDDDF\uDE38-\uDE3D\uDEA9]|\uD805[\uDC4B-\uDC4F\uDC5B\uDC5D\uDCC6\uDDC1-\uDDD7\uDE41-\uDE43\uDE60-\uDE6C\uDF3C-\uDF3E]|\uD806[\uDC3B\uDE3F-\uDE46\uDE9A-\uDE9C\uDE9E-\uDEA2]|\uD807[\uDC41-\uDC45\uDC70\uDC71\uDEF7\uDEF8]|\uD809[\uDC70-\uDC74]|\uD81A[\uDE6E\uDE6F\uDEF5\uDF37-\uDF3B\uDF44]|\uD81B[\uDE97-\uDE9A]|\uD82F\uDC9F|\uD836[\uDE87-\uDE8B]|\uD83A[\uDD5E\uDD5F]/ -},{}],495:[function(require,module,exports){ +},{}],498:[function(require,module,exports){ module.exports=/[ \xA0\u1680\u2000-\u200A\u2028\u2029\u202F\u205F\u3000]/ -},{}],496:[function(require,module,exports){ +},{}],499:[function(require,module,exports){ 'use strict'; exports.Any = require('./properties/Any/regex'); @@ -75885,16 +76021,16 @@ exports.Cf = require('./categories/Cf/regex'); exports.P = require('./categories/P/regex'); exports.Z = require('./categories/Z/regex'); -},{"./categories/Cc/regex":492,"./categories/Cf/regex":493,"./categories/P/regex":494,"./categories/Z/regex":495,"./properties/Any/regex":497}],497:[function(require,module,exports){ +},{"./categories/Cc/regex":495,"./categories/Cf/regex":496,"./categories/P/regex":497,"./categories/Z/regex":498,"./properties/Any/regex":500}],500:[function(require,module,exports){ module.exports=/[\0-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/ -},{}],498:[function(require,module,exports){ +},{}],501:[function(require,module,exports){ module.exports = function isBuffer(arg) { return arg && typeof arg === 'object' && typeof arg.copy === 'function' && typeof arg.fill === 'function' && typeof arg.readUInt8 === 'function'; } -},{}],499:[function(require,module,exports){ +},{}],502:[function(require,module,exports){ // Currently in sync with Node.js lib/internal/util/types.js // https://github.com/nodejs/node/commit/112cc7c27551254aa2b17098fb774867f05ed0d9 @@ -76230,7 +76366,7 @@ exports.isAnyArrayBuffer = isAnyArrayBuffer; }); }); -},{"is-arguments":83,"is-generator-function":85,"is-typed-array":86,"which-typed-array":501}],500:[function(require,module,exports){ +},{"is-arguments":85,"is-generator-function":87,"is-typed-array":88,"which-typed-array":504}],503:[function(require,module,exports){ (function (process){(function (){ // Copyright Joyent, Inc. and other Node contributors. // @@ -76949,7 +77085,7 @@ function callbackify(original) { exports.callbackify = callbackify; }).call(this)}).call(this,require('_process')) -},{"./support/isBuffer":498,"./support/types":499,"_process":488,"inherits":82}],501:[function(require,module,exports){ +},{"./support/isBuffer":501,"./support/types":502,"_process":490,"inherits":84}],504:[function(require,module,exports){ (function (global){(function (){ 'use strict'; @@ -76993,7 +77129,10 @@ if (hasToStringTag && gOPD && getPrototypeOf) { } else { forEach(typedArrays, function (typedArray) { var arr = new g[typedArray](); - cache['$' + typedArray] = callBind(arr.slice); + var fn = arr.slice || arr.set; + if (fn) { + cache['$' + typedArray] = callBind(fn); + } }); } @@ -77042,7 +77181,7 @@ module.exports = function whichTypedArray(value) { }; }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"available-typed-arrays":1,"call-bind":6,"call-bind/callBound":5,"for-each":62,"gopd":66,"has-tostringtag/shams":70}],502:[function(require,module,exports){ +},{"available-typed-arrays":1,"call-bind":6,"call-bind/callBound":5,"for-each":63,"gopd":67,"has-tostringtag/shams":72}],505:[function(require,module,exports){ module.exports={ "name": "pokeclicker", "version": "0.10.17", @@ -77150,7 +77289,7 @@ module.exports={ } } -},{}],503:[function(require,module,exports){ +},{}],506:[function(require,module,exports){ var templateFromUrlLoader = { loadTemplate: function(name, templateConfig, callback) { $.get(`/templates/${templateConfig.fromUrl}`, function(markupString) { @@ -77169,7 +77308,7 @@ ko.components.register('pokemon-summary', { template: { fromUrl: 'pokemon-summary' }, }); -},{}],504:[function(require,module,exports){ +},{}],507:[function(require,module,exports){ // Applying datatables to all tables on the page (with some exceptions) const applyDatatables = () => { // Any table with headers @@ -77273,7 +77412,7 @@ module.exports = { applyDatatables, } -},{}],505:[function(require,module,exports){ +},{}],508:[function(require,module,exports){ const discordLoginJSON = 'https://discord.pokeclicker.com/json'; const discord = { @@ -77297,7 +77436,7 @@ fetch(discordLoginJSON, { module.exports = { discord, } -},{}],506:[function(require,module,exports){ +},{}],509:[function(require,module,exports){ /* Initializing anything we need from the game files */ @@ -77313,6 +77452,9 @@ themes.options.sort((a, b) => (a.text).localeCompare(b.text)); // Suppress game notifications Notifier.notify = () => {}; +// Ensure weather never satisfies requirements so they are always shown +Weather.currentWeather = () => -1; + // Custom binds as these aren't loaded player = new Player(); player.highestRegion(1); @@ -77356,6 +77498,7 @@ App.game.specialEvents.initialize(); QuestLineHelper.loadQuestLines(); BattleFrontierRunner.stage(100); BattleFrontierBattle.generateNewEnemy(); +AchievementHandler.initialize(multiplier, new Challenges()); const now = new Date(); DailyDeal.generateDeals(5, now); @@ -77408,7 +77551,7 @@ Settings.getSetting('theme').observableValue.subscribe(theme => { document.body.className = `no-select ${theme}`; }); -},{}],507:[function(require,module,exports){ +},{}],510:[function(require,module,exports){ const requirementHints = (requirement, includeMarkdown = true) => { if (!requirement) { return []; @@ -77431,12 +77574,20 @@ const requirementHints = (requirement, includeMarkdown = true) => { break; case ClearDungeonRequirement: const dungeonName = GameConstants.RegionDungeons.flat()[req.dungeonIndex]; - hint = `Clear the ${includeMarkdown ? `[[Dungeons/${dungeonName}]]` : dungeonName} dungeon ${req.requiredValue} or more time(s).`; + hint = req.option == GameConstants.AchievementOption.more + ? `Clear the ${includeMarkdown ? `[[Dungeons/${dungeonName}]]` : dungeonName} dungeon ${req.requiredValue} or more time(s).` + : `No longer appears after clearing the ${includeMarkdown ? `[[Dungeons/${dungeonName}]]` : dungeonName} dungeon ${req.requiredValue} time(s).`; break; case QuestLineStepCompletedRequirement: - hint = req.option == GameConstants.AchievementOption.equal - ? `Complete step ${req.questIndex + 1} in the ${includeMarkdown ? `[[Quest Lines/${req.questLineName}]]` : req.questLineName} quest line.` - : `Have not completed step ${req.questIndex + 1} in the ${includeMarkdown ? `[[Quest Lines/${req.questLineName}]]` : req.questLineName} quest line.`; + if (typeof req.questIndex === 'function') { + hint = req.option == GameConstants.AchievementOption.equal + ? `Progress in the ${includeMarkdown ? `[[Quest Lines/${req.questLineName}]]` : req.questLineName} quest line.` + : `Have not progessed to a certain step in the ${includeMarkdown ? `[[Quest Lines/${req.questLineName}]]` : req.questLineName} quest line.`; + } else { + hint = req.option == GameConstants.AchievementOption.equal + ? `Complete step ${req.questIndex + 1} in the ${includeMarkdown ? `[[Quest Lines/${req.questLineName}]]` : req.questLineName} quest line.` + : `Have not completed step ${req.questIndex + 1} in the ${includeMarkdown ? `[[Quest Lines/${req.questLineName}]]` : req.questLineName} quest line.`; + } break; case QuestLineCompletedRequirement: hint = `Complete the ${includeMarkdown ? `[[Quest Lines/${req.questLineName}]]` : req.questLineName} quest line.`; @@ -77690,7 +77841,7 @@ module.exports = { overlaySVG, } -},{}],508:[function(require,module,exports){ +},{}],511:[function(require,module,exports){ // import our version etc const package = require('../pokeclicker/package.json'); @@ -77719,7 +77870,7 @@ window.Wiki = { ...require('./navigation'), } -},{"../pokeclicker/package.json":502,"./components":503,"./datatables":504,"./discord":505,"./game":506,"./gameHelper":507,"./markdown-renderer":514,"./navigation":515,"./notifications":516,"./pages/dealChains":517,"./pages/dreamOrbs":518,"./pages/dungeonTokens":519,"./pages/dungeons":520,"./pages/farm":521,"./pages/farmSimulator":522,"./pages/items":523,"./pages/oakItems":524,"./pages/pokemon":525,"./pages/shopMon":526,"./typeahead":528}],509:[function(require,module,exports){ +},{"../pokeclicker/package.json":505,"./components":506,"./datatables":507,"./discord":508,"./game":509,"./gameHelper":510,"./markdown-renderer":517,"./navigation":518,"./notifications":519,"./pages/dealChains":520,"./pages/dreamOrbs":521,"./pages/dungeonTokens":522,"./pages/dungeons":523,"./pages/farm":524,"./pages/farmSimulator":525,"./pages/items":526,"./pages/oakItems":527,"./pages/pokemon":528,"./pages/shopMon":529,"./typeahead":531}],512:[function(require,module,exports){ const { md } = require('./markdown-renderer'); const getContent = (editor) => editor.value().split('\n').map(l => l.trimEnd()).join('\n'); @@ -77847,7 +77998,7 @@ module.exports = { createMarkDownEditor, } -},{"./markdown-renderer":514}],510:[function(require,module,exports){ +},{"./markdown-renderer":517}],513:[function(require,module,exports){ var md = require('markdown-it'); var Plugin = require('markdown-it-regexp'); @@ -77863,7 +78014,7 @@ var plugin = Plugin( module.exports = plugin; -},{"markdown-it":106,"markdown-it-regexp":103}],511:[function(require,module,exports){ +},{"markdown-it":108,"markdown-it-regexp":105}],514:[function(require,module,exports){ var md = require('markdown-it'); var Plugin = require('markdown-it-regexp'); @@ -77881,7 +78032,7 @@ var plugin = Plugin( module.exports = plugin; -},{"markdown-it":106,"markdown-it-regexp":103}],512:[function(require,module,exports){ +},{"markdown-it":108,"markdown-it-regexp":105}],515:[function(require,module,exports){ var md = require('markdown-it'); var Plugin = require('markdown-it-regexp'); @@ -77897,7 +78048,7 @@ var plugin = Plugin( module.exports = plugin; -},{"markdown-it":106,"markdown-it-regexp":103}],513:[function(require,module,exports){ +},{"markdown-it":108,"markdown-it-regexp":105}],516:[function(require,module,exports){ var md = require('markdown-it'); var Plugin = require('markdown-it-regexp'); @@ -77913,7 +78064,7 @@ var plugin = Plugin( module.exports = plugin; -},{"markdown-it":106,"markdown-it-regexp":103}],514:[function(require,module,exports){ +},{"markdown-it":108,"markdown-it-regexp":105}],517:[function(require,module,exports){ const markdownit = require('markdown-it'); // Setup our markdown editor @@ -77987,7 +78138,7 @@ module.exports = { md, } -},{"./markdown-plugins/hidden-comments.js":510,"./markdown-plugins/image-size.js":511,"./markdown-plugins/wiki-links-badge.js":512,"./markdown-plugins/wiki-links.js":513,"markdown-it":106,"markdown-it-attrs":96,"markdown-it-container":99,"markdown-it-mathjax3":100,"markdown-it-multimd-table":101}],515:[function(require,module,exports){ +},{"./markdown-plugins/hidden-comments.js":513,"./markdown-plugins/image-size.js":514,"./markdown-plugins/wiki-links-badge.js":515,"./markdown-plugins/wiki-links.js":516,"markdown-it":108,"markdown-it-attrs":98,"markdown-it-container":101,"markdown-it-mathjax3":102,"markdown-it-multimd-table":103}],518:[function(require,module,exports){ const { md } = require('./markdown-renderer'); const { applyDatatables } = require('./datatables'); const { createMarkDownEditor } = require('./markdown-editor'); @@ -78169,7 +78320,7 @@ module.exports = { gotoPage, }; -},{"./datatables":504,"./markdown-editor":509,"./markdown-renderer":514,"./redirections":527}],516:[function(require,module,exports){ +},{"./datatables":507,"./markdown-editor":512,"./markdown-renderer":517,"./redirections":530}],519:[function(require,module,exports){ const alert = (message, type = 'primary', timeout = 5e3) => { const wrapper = document.createElement('div'); wrapper.classList.add('alert', `alert-${type}`, 'alert-dismissible', 'fade', 'show'); @@ -78205,7 +78356,7 @@ module.exports = { alert, }; -},{}],517:[function(require,module,exports){ +},{}],520:[function(require,module,exports){ class DealProfit { constructor(type, amount) { @@ -78369,7 +78520,7 @@ function getDealChains( module.exports = { getDealChains, } -},{}],518:[function(require,module,exports){ +},{}],521:[function(require,module,exports){ const getOrbLoot = (orb) => { const weightSum = orb.items.reduce((acc, item) => acc + item.weight, 0); return orb.items.map(item => { @@ -78387,7 +78538,7 @@ module.exports = { getOrbLoot }; -},{}],519:[function(require,module,exports){ +},{}],522:[function(require,module,exports){ const checkExist = setInterval(function() { if ($('.tablinks').length) { $('.tablinks')[0].click(); @@ -78505,7 +78656,7 @@ module.exports = { setWeather, getShopMons }; -},{}],520:[function(require,module,exports){ +},{}],523:[function(require,module,exports){ const getTableClearCounts = (dungeon) => { if (getTableClearCounts.cache.has(dungeon)) { return getTableClearCounts.cache.get(dungeon); @@ -78875,7 +79026,7 @@ module.exports = { getDungeonShadowPokemon, }; -},{}],521:[function(require,module,exports){ +},{}],524:[function(require,module,exports){ /** * Returns the primary mutation for a berry. * Filters out enigma mutations, as they cannot be used to obtain a berry for the first time. @@ -78895,7 +79046,7 @@ module.exports = { getPrimaryMutation, }; -},{}],522:[function(require,module,exports){ +},{}],525:[function(require,module,exports){ const selectedPlot = ko.observable(undefined); const selectedPlotIndex = ko.observable(undefined); const plotLabelsEnabled = ko.observable(false); @@ -79215,7 +79366,7 @@ module.exports = { showPlotContextMenu, } -},{}],523:[function(require,module,exports){ +},{}],526:[function(require,module,exports){ const getItemName = (itemType, itemId) => { switch (itemType) { case ItemType.item: @@ -79307,7 +79458,7 @@ module.exports = { getItemCategoryAndPageFromObject, }; -},{}],524:[function(require,module,exports){ +},{}],527:[function(require,module,exports){ const getOakItemBonus = (oakItem, level) => { const bonus = oakItem.bonusList[level]; switch (oakItem.name) { @@ -79381,7 +79532,7 @@ module.exports = { getOakItemBonus, getOakItemUpgradeReq, }; -},{}],525:[function(require,module,exports){ +},{}],528:[function(require,module,exports){ const getBreedingAttackBonus = (vitaminsUsed, baseAttack) => { const attackBonusPercent = (GameConstants.BREEDING_ATTACK_BONUS + vitaminsUsed[GameConstants.VitaminType.Calcium]) / 100; @@ -79448,7 +79599,7 @@ module.exports = { getAllAvailableShadowPokemon, } -},{}],526:[function(require,module,exports){ +},{}],529:[function(require,module,exports){ function getShopMons(currency) { var towns = Object.values(TownList).filter(t => t.region < GameConstants.Region.final); var filteredTowns = []; @@ -79477,7 +79628,7 @@ function getShopMons(currency) { module.exports = { getShopMons }; -},{}],527:[function(require,module,exports){ +},{}],530:[function(require,module,exports){ const redirections = [ ({type, name}) => { if (type === 'Pokemon') { @@ -79529,7 +79680,7 @@ module.exports = { redirections }; -},{}],528:[function(require,module,exports){ +},{}],531:[function(require,module,exports){ const { gotoPage } = require('./navigation'); const searchOptions = [ @@ -79890,6 +80041,12 @@ const searchOptions = [ type: 'Flutes', page: '', }, + // Achievements + { + display: 'Achievements', + type: 'Achievements', + page: '', + }, ]; // Differentiate our different links with the same name searchOptions.forEach(a => { @@ -79954,4 +80111,4 @@ module.exports = { searchOptions, }; -},{"./navigation":515}]},{},[508]); +},{"./navigation":518}]},{},[511]); diff --git a/data/Achievements/overview_description.md b/data/Achievements/overview_description.md new file mode 100644 index 000000000..c2a90a7d1 --- /dev/null +++ b/data/Achievements/overview_description.md @@ -0,0 +1 @@ +As the player earns achievements they will receive bonuses to [[Pokémon Dollars]], [[Dungeon Tokens]], and Experience from all sources. Click Attack and [[Flutes]] are also boosted by achievement bonus. The **Achievement Tracker** is unlocked after catching 110 unique Pokémon. diff --git a/data/Dungeons/overview_description.md b/data/Dungeons/overview_description.md index 2d18b13a4..2d6c301f6 100644 --- a/data/Dungeons/overview_description.md +++ b/data/Dungeons/overview_description.md @@ -95,13 +95,14 @@ The chances to encounter loot from **Rare tier** and rarer **increases with ever *Note: Dungeons that lack any items in a particular loot tier have the remaining odds from the non-present tier(s) distributed proportionally among the present tiers* #### Tier info -Tier | Base Loot Chance (sum of all items of the tier) {.no-data-tables} -:--- | ---: -[[File:chest-common.png\|40px]] Common | 75% -[[File:chest-rare.png\|40px]] Rare | 20% -[[File:chest-epic.png\|40px]] Epic | 4% -[[File:chest-legendary.png\|40px]] Legendary | 0.99% -[[File:chest-mythic.png\|40px]] Mythic | 0.01% +The chances for each tier are the sum of the chances of all items within said tier. +Tier | 0 clears | 100 clears | 250 clears | 500 clears | Debuffed {.no-data-tables} +:--- | ---: | ---: | ---: | ---: | ---: +[[File:chest-common.png\|40px]] Common | 75% | 72% | 67.5% | 60% | 75% +[[File:chest-rare.png\|40px]] Rare | 20% | 20.99% | 22.475% | 24.95% | 24% +[[File:chest-epic.png\|40px]] Epic | 4% | 5.2% | 7% | 10% | 0.9% +[[File:chest-legendary.png\|40px]] Legendary | 0.99% | 1.59% | 2.49% | 3.99% | 0.099% +[[File:chest-mythic.png\|40px]] Mythic | 0.01% | 0.22% | 0.535% | 1.06% | 0.001% **Example 1:** Mt. Moon has XClick and Greatball as 2 of its 5 lootable items from Dungeon chests. The XClick is in the **Common** Tier while the Greatball has the **Mythic** Tier. This means that the XClick is much more likely to drop from a chest than a Greatball. diff --git a/data/Events/Easter.md b/data/Events/Easter.md index 97ffd3270..4711a210e 100644 --- a/data/Events/Easter.md +++ b/data/Events/Easter.md @@ -1,3 +1,8 @@ ## List of Pokémon +After completing the [[Quest Line/Egg Hunt]] Quest Line, 3 Pokémon will get added to random dungeons in Kanto, Johto, and Hoenn. After encountering the Pokémon in the right dungeon, they have a chance to then jump to another one in the same region. Note that it may take one encounter or multiple ones for the Pokémon to jump to another dungeon! -[[Pokémon/Surprise Togepi]] will be awarded after completing the [[Quest Lines/Togepi Egg Hunt]] Quest Line. Note that this Quest Line won't go away until the player completes it, even if the Event time ends. \ No newline at end of file +| Pokémon | Region | Dungeons | +|:---:|:---:|:---:| +| [[File:pokemon/25.22.png\|25px]] [[Pokémon/Pikachu (Easter)]] | Kanto | [[Dungeons/Viridian Forest]], [[Dungeons/Diglett's Cave]], [[Dungeons/Pokémon Tower]], [[Dungeons/Power Plant]], [[Dungeons/Seafoam Islands]], and [[Dungeons/Victory Road]] | +| [[File:pokemon/175.02.png\|25px]] [[Pokémon/Togepi (Flowering Crown)]] | Johto | [[Dungeons/Ruins of Alph]], [[Dungeons/Slowpoke Well]], [[Dungeons/Ilex Forest]], [[Dungeons/Tin Tower]], [[Dungeons/Whirl Islands]], and [[Dungeons/Ice Path]] | +| [[File:pokemon/255.01.png\|25px]] [[Pokémon/Torchic (Egg)]] | Hoenn | [[Dungeons/Petalburg Woods]], [[Dungeons/Rusturf Tunnel]], [[Dungeons/Meteor Falls]], [[Dungeons/New Mauville]], [[Dungeons/Sky Pillar]], and [[Dungeons/Sealed Chamber]] | \ No newline at end of file diff --git a/data/Events/Lunar New Year.md b/data/Events/Lunar New Year.md index 3efd2482b..afe82535c 100644 --- a/data/Events/Lunar New Year.md +++ b/data/Events/Lunar New Year.md @@ -21,4 +21,6 @@ Pokémon | Location | Encounter Type [[Pokémon/Vivillon (Tundra)]] | [[Dungeons/Poké Ball Factory]] | Dungeon Boss [[Pokémon/Vivillon (Elegant)]] | [[Dungeons/Lost Hotel]] | Dungeon Boss [[Pokémon/Vivillon (Icy Snow)]] | [[Dungeons/Frost Cavern]] | Dungeon Boss -[[Pokémon/Vivillon (Poké Ball)]] | [[Dungeons/Thrifty Megamart]] | Dungeon Boss \ No newline at end of file +[[Pokémon/Vivillon (Poké Ball)]] | [[Dungeons/Thrifty Megamart]] | Dungeon Boss + +**Note:** Except Fancy and Meadow, the Vivillon will only appear in their respective locations if the player has captured them already as part of [[Quest Lines/The Great Vivillon Hunt!]] Quest Line. \ No newline at end of file diff --git a/data/Events/Merry Christmas!.md b/data/Events/Merry Christmas!.md index 74629f06e..4e29ead7c 100644 --- a/data/Events/Merry Christmas!.md +++ b/data/Events/Merry Christmas!.md @@ -1,8 +1,12 @@ ## List of Pokémon -Pokémon | Location | Encounter Type -:--- | :---: | :--- -[[Pokémon/Santa Snorlax]] | All Regions | Roamer -[[Pokémon/Grinch Celebi]] | [[Dungeons/Ilex Forest]] | Dungeon Boss +| Pokémon | Location | Encounter Type | +| :--- | :---: | :--- | +| [[File:pokemon/143.02.png\|25px]] [[Pokémon/Santa Snorlax]] | All Regions | Roamer | +| [[File:pokemon/143.03.png\|25px]] [[Pokémon/Snorlax (Snowman)]] | [[Dungeons/Seafoam Islands]] | Mimic (Dungeon Chest) | +| [[File:pokemon/124.01.png\|25px]] [[Pokémon/Santa Jynx]]\* | Kanto | Routes | +| [[File:pokemon/234.01.png\|25px]] [[Pokémon/Reindeer Stantler]] | Johto | Roamer | +| [[File:pokemon/251.02.png\|25px]] [[Pokémon/Grinch Celebi]] | [[Dungeons/Ilex Forest]] | Dungeon Boss | +| [[File:pokemon/446.01.png\|25px]] [[Pokémon/Elf Munchlax]] | [[Towns/Sandgem Town]] in Sinnoh | Shop Trade | -**Note:** Breeding [[Pokémon/Santa Snorlax]] will give the player an [[Pokémon/Elf Munchlax]] if their highest Region is Sinnoh or higher. This baby Pokémon can be obtained even after the event is over. \ No newline at end of file +**Note:** Santa Jynx will appear in Kanto Routes after completing a Temporary Battle in [[Towns/Bill's House]]. The Pokémon then will disappear after the player gathers a certain number of gifts. This process repeats daily. For more information, check [[Pokémon/Santa Jynx]]'s page. Also, Elf Munchlax will only become available for purchase if the player has captured Santa Snorlax. \ No newline at end of file diff --git a/data/Items/Auspicious Armor.md b/data/Items/Auspicious Armor.md new file mode 100644 index 000000000..dc364a90d --- /dev/null +++ b/data/Items/Auspicious Armor.md @@ -0,0 +1,4 @@ +## Use +Base Pokémon |Evolves into |Available in +:---|:---|:--- +[[File:pokemon/935.png\|25px]] [[Pokemon/Charcadet]] | [[File:pokemon/936.png\|25px]] [[Pokemon/Armarouge]] |All regions \ No newline at end of file diff --git a/data/Items/Christmas Present.md b/data/Items/Christmas Present.md new file mode 100644 index 000000000..18c97fd79 --- /dev/null +++ b/data/Items/Christmas Present.md @@ -0,0 +1 @@ +Base chance of dropping: 1 in 10 \ No newline at end of file diff --git a/data/Items/Deep Sea Tooth.md b/data/Items/Deep Sea Tooth.md index 5c1e4d6b4..ade036016 100644 --- a/data/Items/Deep Sea Tooth.md +++ b/data/Items/Deep Sea Tooth.md @@ -3,4 +3,4 @@ Base chance of dropping: 1 in 128 (Dungeon) ## Use Base Pokémon |Evolves into |Available in :---|:---|:--- -[[File:pokemon/366.png\|25px]] [[Pokemon/Clamperl]] | [[File:pokemon/367.png\|25px]] [[Pokemon/Huntail]] |Hoenn forward +[[File:pokemon/366.png\|25px]] [[Pokemon/Clamperl]] | [[File:pokemon/367.png\|25px]] [[Pokemon/Huntail]] |Hoenn onward diff --git a/data/Items/Grass Egg.md b/data/Items/Grass Egg.md index 43d3334fa..815e9c181 100644 --- a/data/Items/Grass Egg.md +++ b/data/Items/Grass Egg.md @@ -5,7 +5,7 @@ Region | Pokemon Kanto | **[[Pokemon/Bulbasaur]]**, [[Pokemon/Oddish]], [[Pokemon/Tangela]], [[Pokemon/Paras]] Johto | **[[Pokemon/Chikorita]]**, [[Pokemon/Hoppip]], _**[[Pokemon/Sunkern]]**_ Hoenn | **[[Pokemon/Treecko]]**, [[Pokemon/Tropius]], _**[[Pokemon/Roselia]]**_ -Sinnoh | **[[Pokemon/Turtwig]]**, _**[[Pokemon/Carnivine]]**_, [[Pokemon/Budew]] +Sinnoh | **[[Pokemon/Turtwig]]**, [[Pokemon/Snover]], [[Pokemon/Budew]] Unova | **[[Pokemon/Snivy]]**, _**[[Pokemon/Pansage]]**_, [[Pokemon/Maractus]] Kalos | **[[Pokemon/Chespin]]**, [[Pokemon/Skiddo]], [[Pokemon/Phantump]] Alola | **[[Pokemon/Rowlet]]**, _**[[Pokemon/Morelull]]**_, [[Pokemon/Fomantis]] diff --git a/data/Items/Leader's Crest.md b/data/Items/Leader's Crest.md new file mode 100644 index 000000000..8c34fcbf3 --- /dev/null +++ b/data/Items/Leader's Crest.md @@ -0,0 +1,4 @@ +## Use +Base Pokémon |Evolves into |Available in +:---|:---|:--- +[[File:pokemon/625.png\|25px]] [[Pokemon/Bisharp]] | [[File:pokemon/983.png\|25px]] [[Pokemon/Kingambit]] |Paldea onward \ No newline at end of file diff --git a/data/Items/Linking Cord.md b/data/Items/Linking Cord.md index 8735ec38d..7fa315623 100644 --- a/data/Items/Linking Cord.md +++ b/data/Items/Linking Cord.md @@ -1,5 +1,5 @@ ## Use -Base Pokémon |Evolves into |Avalible in +Base Pokémon |Evolves into |Available in :---|:---|:-- [[File:pokemon/64.png\|25px]] [[Pokemon/Kadabra]] | [[File:pokemon/65.png\|25px]] [[Pokemon/Alakazam]] | All regions [[File:pokemon/67.png\|25px]] [[Pokemon/Machoke]] | [[File:pokemon/68.png\|25px]] [[Pokemon/Machamp]] |All regions diff --git a/data/Items/Lunar Light.md b/data/Items/Lunar Light.md index 4c0be960c..e656a6140 100644 --- a/data/Items/Lunar Light.md +++ b/data/Items/Lunar Light.md @@ -1 +1,7 @@ -Base chance of dropping: 1 in 12.5 (Dungeon Boss) \ No newline at end of file +Base chance of dropping: 1 in 12.5 (Dungeon Boss) + +## Use +Base Pokémon |Evolves into |Available in +:---|:---|:--- +[[File:pokemon/792.png\|25px]] [[Pokemon/Lunala]] | [[File:pokemon/792.01.png\|25px]] [[Pokemon/Lunala_(Full_Moon)]] |Alola onward +[[File:pokemon/800.png\|25px]] [[Pokemon/Necrozma]] | [[File:pokemon/800.02.png\|25px]] [[Pokemon/Necrozma_(Dawn_Wings)]] |Alola onward \ No newline at end of file diff --git a/data/Items/Magmarizer.md b/data/Items/Magmarizer.md index 5d74c0b25..037c0f02a 100644 --- a/data/Items/Magmarizer.md +++ b/data/Items/Magmarizer.md @@ -1,3 +1,8 @@ Base chance of dropping: 1 in 512 (Routes) Base chance of dropping: 1 in 128 (Dungeon) -Base chance of dropping: 1 in 85.3 (Dungeon Boss) \ No newline at end of file +Base chance of dropping: 1 in 85.3 (Dungeon Boss) + +## Use +Base Pokémon |Evolves into |Available in +:---|:---|:--- +[[File:pokemon/126.png\|25px]] [[Pokemon/Magmar]] | [[File:pokemon/467.png\|25px]] [[Pokemon/Magmortar]] |Sinnoh onward \ No newline at end of file diff --git a/data/Items/Malicious Armor.md b/data/Items/Malicious Armor.md new file mode 100644 index 000000000..7d210f14e --- /dev/null +++ b/data/Items/Malicious Armor.md @@ -0,0 +1,4 @@ +## Use +Base Pokémon |Evolves into |Available in +:---|:---|:--- +[[File:pokemon/935.png\|25px]] [[Pokemon/Charcadet]] | [[File:pokemon/937.png\|25px]] [[Pokemon/Ceruledge]] |Paldea onward \ No newline at end of file diff --git a/data/Items/Metal Coat.md b/data/Items/Metal Coat.md index 5d74c0b25..4d757bd38 100644 --- a/data/Items/Metal Coat.md +++ b/data/Items/Metal Coat.md @@ -1,3 +1,9 @@ Base chance of dropping: 1 in 512 (Routes) Base chance of dropping: 1 in 128 (Dungeon) -Base chance of dropping: 1 in 85.3 (Dungeon Boss) \ No newline at end of file +Base chance of dropping: 1 in 85.3 (Dungeon Boss) + +## Use +Base Pokémon |Evolves into |Available in +:---|:---|:--- +[[File:pokemon/95.png\|25px]] [[Pokemon/Onix]] | [[File:pokemon/208.png\|25px]] [[Pokemon/Steelix]] | Johto onward +[[File:pokemon/123.png\|25px]] [[Pokemon/Scyther]] | [[File:pokemon/212.png\|25px]] [[Pokemon/Scizor]] | Johto onward \ No newline at end of file diff --git a/data/Items/Peat Block.md b/data/Items/Peat Block.md new file mode 100644 index 000000000..a6366088d --- /dev/null +++ b/data/Items/Peat Block.md @@ -0,0 +1,4 @@ +## Use +Base Pokémon |Evolves into |Available in +:---|:---|:--- +[[File:pokemon/217.png\|25px]] [[Pokemon/Ursaring]] | [[File:pokemon/901.png\|25px]] [[Pokemon/Ursaluna]] |Hisui onward at night \ No newline at end of file diff --git a/data/Items/Prism Scale.md b/data/Items/Prism Scale.md new file mode 100644 index 000000000..7b6a51a39 --- /dev/null +++ b/data/Items/Prism Scale.md @@ -0,0 +1,4 @@ +## Use +Base Pokémon |Evolves into |Available in +:---|:---|:--- +[[File:pokemon/349.png\|25px]] [[Pokemon/Feebas]] | [[File:pokemon/350.png\|25px]] [[Pokemon/Milotic]] | Hoenn onward \ No newline at end of file diff --git a/data/Items/Protector.md b/data/Items/Protector.md new file mode 100644 index 000000000..a7a7b26d8 --- /dev/null +++ b/data/Items/Protector.md @@ -0,0 +1,4 @@ +## Use +Base Pokémon |Evolves into |Available in +:---|:---|:--- +[[File:pokemon/112.png\|25px]] [[Pokemon/Rhydon]] | [[File:pokemon/464.png\|25px]] [[Pokemon/Rhyperior]] |Sinnoh onward \ No newline at end of file diff --git a/data/Items/Pure Light.md b/data/Items/Pure Light.md index 4c0be960c..7aa590a89 100644 --- a/data/Items/Pure Light.md +++ b/data/Items/Pure Light.md @@ -1 +1,7 @@ -Base chance of dropping: 1 in 12.5 (Dungeon Boss) \ No newline at end of file +Base chance of dropping: 1 in 12.5 (Dungeon Boss) + +## Use +Base Pokémon |Evolves into |Available in +:---|:---|:--- +[[File:pokemon/800.01.png\|25px]] [[Pokemon/Necrozma_(Dusk_Mane)]] | [[File:pokemon/800.03.png\|25px]] [[Pokemon/Ultra_Necrozma]] |Alola onward +[[File:pokemon/800.02.png\|25px]] [[Pokemon/Necrozma_(Dawn_Wings)]] | [[File:pokemon/800.03.png\|25px]] [[Pokemon/Ultra_Necrozma]] |Alola onward \ No newline at end of file diff --git a/data/Items/Razor Claw.md b/data/Items/Razor Claw.md index 5d74c0b25..b4a789b90 100644 --- a/data/Items/Razor Claw.md +++ b/data/Items/Razor Claw.md @@ -1,3 +1,8 @@ Base chance of dropping: 1 in 512 (Routes) Base chance of dropping: 1 in 128 (Dungeon) -Base chance of dropping: 1 in 85.3 (Dungeon Boss) \ No newline at end of file +Base chance of dropping: 1 in 85.3 (Dungeon Boss) + +## Use +Base Pokémon |Evolves into |Available in +:---|:---|:--- +[[File:pokemon/215.png\|25px]] [[Pokemon/Sneasel]] | [[File:pokemon/461.png\|25px]] [[Pokemon/Weavile]] |Sinnoh onward during the night \ No newline at end of file diff --git a/data/Items/Razor Fang.md b/data/Items/Razor Fang.md index b1d9f6655..aa1c65da9 100644 --- a/data/Items/Razor Fang.md +++ b/data/Items/Razor Fang.md @@ -1 +1,6 @@ -Base chance of dropping: 1 in 512 (Routes) \ No newline at end of file +Base chance of dropping: 1 in 512 (Routes) + +## Use +Base Pokémon |Evolves into |Available in +:---|:---|:--- +[[File:pokemon/207.png\|25px]] [[Pokemon/Gligar]] | [[File:pokemon/472.png\|25px]] [[Pokemon/Gliscor]] |Sinnoh onward during the night \ No newline at end of file diff --git a/data/Items/Reaper Cloth.md b/data/Items/Reaper Cloth.md new file mode 100644 index 000000000..000e233ea --- /dev/null +++ b/data/Items/Reaper Cloth.md @@ -0,0 +1,4 @@ +## Use +Base Pokémon |Evolves into |Available in +:---|:---|:--- +[[File:pokemon/356.png\|25px]] [[Pokemon/Dusclops]] | [[File:pokemon/477.png\|25px]] [[Pokemon/Dusknoir]] |Sinnoh onward \ No newline at end of file diff --git a/data/Items/Sachet.md b/data/Items/Sachet.md new file mode 100644 index 000000000..580d691f9 --- /dev/null +++ b/data/Items/Sachet.md @@ -0,0 +1,4 @@ +## Use +Base Pokémon |Evolves into |Available in +:---|:---|:--- +[[File:pokemon/682.png\|25px]] [[Pokemon/Spritzee]] | [[File:pokemon/683.png\|25px]] [[Pokemon/Aromatisse]] |Kalos onward \ No newline at end of file diff --git a/data/Items/Shiny Stone.md b/data/Items/Shiny Stone.md new file mode 100644 index 000000000..370c68aa6 --- /dev/null +++ b/data/Items/Shiny Stone.md @@ -0,0 +1,11 @@ +## Use +Base Pokémon |Evolves into |Available in +:---|:---|:--- +[[File:pokemon/176.png\|25px]] [[Pokemon/Togetic]] | [[File:pokemon/468.png\|25px]] [[Pokemon/Togekiss]] | Sinnoh onward +[[File:pokemon/315.png\|25px]] [[Pokemon/Roselia]] | [[File:pokemon/407.png\|25px]] [[Pokemon/Roserade]] | Sinnoh onward +[[File:pokemon/572.png\|25px]] [[Pokemon/Minccino]] | [[File:pokemon/573.png\|25px]] [[Pokemon/Cinccino]] | Unova onward +[[File:pokemon/670.png\|25px]] [[Pokemon/Floette_(Red)]] | [[File:pokemon/671.png\|25px]] [[Pokemon/Florges_(Red)]] | Kalos onward +[[File:pokemon/670.02.png\|25px]] [[Pokemon/Floette_(Orange)]] | [[File:pokemon/671.02.png\|25px]] [[Pokemon/Florges_(Orange)]] | Kalos onward +[[File:pokemon/670.01.png\|25px]] [[Pokemon/Floette_(Yellow)]] | [[File:pokemon/671.01.png\|25px]] [[Pokemon/Florges_(Yellow)]] | Kalos onward +[[File:pokemon/670.03.png\|25px]] [[Pokemon/Floette_(Blue)]] | [[File:pokemon/671.03.png\|25px]] [[Pokemon/Florges_(Blue)]] | Kalos onward +[[File:pokemon/670.04.png\|25px]] [[Pokemon/Floette_(White)]] | [[File:pokemon/671.04.png\|25px]] [[Pokemon/Florges_(White)]] | Kalos onward \ No newline at end of file diff --git a/data/Items/Solar Light.md b/data/Items/Solar Light.md index 4c0be960c..1b4937dec 100644 --- a/data/Items/Solar Light.md +++ b/data/Items/Solar Light.md @@ -1 +1,7 @@ -Base chance of dropping: 1 in 12.5 (Dungeon Boss) \ No newline at end of file +Base chance of dropping: 1 in 12.5 (Dungeon Boss) + +## Use +Base Pokémon |Evolves into |Available in +:---|:---|:--- +[[File:pokemon/791.png\|25px]] [[Pokemon/Solgaleo]] | [[File:pokemon/791.01.png\|25px]] [[Pokemon/Solgaleo_(Radiant_Sun)]] |Alola onward +[[File:pokemon/800.png\|25px]] [[Pokemon/Necrozma]] | [[File:pokemon/800.01.png\|25px]] [[Pokemon/Necrozma_(Dusk_Mane)]] |Alola onward \ No newline at end of file diff --git a/data/Items/Soothe Bell.md b/data/Items/Soothe Bell.md index 31de8edb1..952285987 100644 --- a/data/Items/Soothe Bell.md +++ b/data/Items/Soothe Bell.md @@ -1,23 +1,23 @@ ## Use Base Pokémon |Evolves into |Available in :---|:---|:-- -[[Pokemon/Golbat]] |[[Pokemon/Crobat]] |Johto onward -[[Pokemon/Chansey]] |[[Pokemon/Blissey]] |Johto onward -[[Pokemon/Charity Chansey]] |[[Pokemon/Blessing Blissey]] |Johto onward -[[Pokemon/Eevee]] |[[Pokemon/Umbreon]] |Johto onward during the night -[[Pokemon/Eevee]] |[[Pokemon/Espeon]] |Johto onward during the day -[[Pokemon/Pichu]] |[[Pokemon/Pikachu]] |Johto onward -[[Pokemon/Cleffa]] |[[Pokemon/Clefairy]] |Johto onward -[[Pokemon/Igglybuff]] |[[Pokemon/Jigglypuff]] |Johto onward -[[Pokemon/Togepi]] |[[Pokemon/Togetic]]| Johto onward -[[Pokemon/Azurill]] |[[Pokemon/Marill]] |Johto onward -[[Pokemon/Budew]] |[[Pokemon/Roselia]] |Sinnoh onward during the day -[[Pokemon/Buneary]] |[[Pokemon/Lopunny]] |Sinnoh onward -[[Pokemon/Chingling]] |[[Pokemon/Chimecho]] |Sinnoh onward during the night -[[Pokemon/Munchlax]] |[[Pokemon/Snorlax]] |Sinnoh onward -[[Pokemon/Riolu]] |[[Pokemon/Lucario]] |Sinnoh onward during the day -[[Pokemon/Woobat]] |[[Pokemon/Swoobat]] |Unova onward -[[Pokemon/Swadloon]] |[[Pokemon/Leavanny]] |Unova onward -[[Pokemon/Alolan Meowth]] |[[Pokemon/Alolan Persian]] |Alola onward -[[Pokemon/Type: Null]] |[[Pokemon/Silvally (Normal)]] |Alola onward -[[Pokemon/Snom]] |[[Pokemon/Frosmoth]] |Galar onward during the night \ No newline at end of file +[[File:pokemon/42.png\|25px]] [[Pokemon/Golbat]] | [[File:pokemon/169.png\|25px]] [[Pokemon/Crobat]] | Johto onward +[[File:pokemon/113.png\|25px]] [[Pokemon/Chansey]] | [[File:pokemon/242.png\|25px]] [[Pokemon/Blissey]] | Johto onward +[[File:pokemon/113.01.png\|25px]] [[Pokemon/Charity Chansey]] | [[File:pokemon/242.01.png\|25px]] [[Pokemon/Blessing Blissey]] | Johto onward +[[File:pokemon/133.png\|25px]] [[Pokemon/Eevee]] | [[File:pokemon/197.png\|25px]] [[Pokemon/Umbreon]] | Johto onward during the night +[[File:pokemon/133.png\|25px]] [[Pokemon/Eevee]] | [[File:pokemon/196.png\|25px]] [[Pokemon/Espeon]] | Johto onward during the day +[[File:pokemon/172.png\|25px]] [[Pokemon/Pichu]] | [[File:pokemon/25.png\|25px]] [[Pokemon/Pikachu]] | Johto onward +[[File:pokemon/173.png\|25px]] [[Pokemon/Cleffa]] | [[File:pokemon/35.png\|25px]] [[Pokemon/Clefairy]] | Johto onward +[[File:pokemon/174.png\|25px]] [[Pokemon/Igglybuff]] | [[File:pokemon/39.png\|25px]] [[Pokemon/Jigglypuff]] | Johto onward +[[File:pokemon/175.png\|25px]] [[Pokemon/Togepi]] | [[File:pokemon/176.png\|25px]] [[Pokemon/Togetic]]| Johto onward +[[File:pokemon/298.png\|25px]] [[Pokemon/Azurill]] | [[File:pokemon/183.png\|25px]] [[Pokemon/Marill]] | Hoenn onward +[[File:pokemon/406.png\|25px]] [[Pokemon/Budew]] | [[File:pokemon/315.png\|25px]] [[Pokemon/Roselia]] | Sinnoh onward during the day +[[File:pokemon/427.png\|25px]] [[Pokemon/Buneary]] | [[File:pokemon/428.png\|25px]] [[Pokemon/Lopunny]] | Sinnoh onward +[[File:pokemon/433.png\|25px]] [[Pokemon/Chingling]] | [[File:pokemon/358.png\|25px]] [[Pokemon/Chimecho]] | Sinnoh onward during the night +[[File:pokemon/446.png\|25px]] [[Pokemon/Munchlax]] | [[File:pokemon/143.png\|25px]] [[Pokemon/Snorlax]] | Sinnoh onward +[[File:pokemon/447.png\|25px]] [[Pokemon/Riolu]] | [[File:pokemon/448.png\|25px]] [[Pokemon/Lucario]] | Sinnoh onward during the day +[[File:pokemon/527.png\|25px]] [[Pokemon/Woobat]] | [[File:pokemon/528.png\|25px]] [[Pokemon/Swoobat]] | Unova onward +[[File:pokemon/541.png\|25px]] [[Pokemon/Swadloon]] | [[File:pokemon/542.png\|25px]] [[Pokemon/Leavanny]] | Unova onward +[[File:pokemon/52.02.png\|25px]] [[Pokemon/Alolan Meowth]] | [[File:pokemon/53.01.png\|25px]] [[Pokemon/Alolan Persian]] | Alola onward +[[File:pokemon/772.png\|25px]] [[Pokemon/Type: Null]] | [[File:pokemon/773.png\|25px]] [[Pokemon/Silvally (Normal)]] | Alola onward +[[File:pokemon/872.png\|25px]] [[Pokemon/Snom]] | [[File:pokemon/873.png\|25px]] [[Pokemon/Frosmoth]] | Galar onward during the night \ No newline at end of file diff --git a/data/Items/Sun Stone.md b/data/Items/Sun Stone.md index 514b2c871..e1308d2cc 100644 --- a/data/Items/Sun Stone.md +++ b/data/Items/Sun Stone.md @@ -5,8 +5,8 @@ Base chance of dropping: 1 in 341.3 (Dungeon Boss ## Use Base Pokémon |Evolves into |Available in :---|:---|:--- -[[Pokemon/Gloom]] |[[Pokemon/Bellossom]] |Johto onward -[[Pokemon/Sunkern]] |[[Pokemon/Sunflora]] |Johto onward -[[Pokemon/Cottonee]] |[[Pokemon/Whimsicott]] |Johto onward -[[Pokemon/Petilil]] |[[Pokemon/Lilligant]] |Unova onward -[[Pokemon/Helioptile]] |[[Pokemon/Heliolisk]] |Kalos onward \ No newline at end of file +[[File:pokemon/44.png\|25px]] [[Pokemon/Gloom]] | [[File:pokemon/182.png\|25px]] [[Pokemon/Bellossom]] | Johto onward +[[File:pokemon/191.png\|25px]] [[Pokemon/Sunkern]] | [[File:pokemon/192.png\|25px]] [[Pokemon/Sunflora]] | Johto onward +[[File:pokemon/546.png\|25px]] [[Pokemon/Cottonee]] | [[File:pokemon/547.png\|25px]] [[Pokemon/Whimsicott]] | Unova onward +[[File:pokemon/548.png\|25px]] [[Pokemon/Petilil]] | [[File:pokemon/549.png\|25px]] [[Pokemon/Lilligant]] | Unova onward +[[File:pokemon/694.png\|25px]] [[Pokemon/Helioptile]] | [[File:pokemon/695.png\|25px]] [[Pokemon/Heliolisk]] | Kalos onward \ No newline at end of file diff --git a/data/Items/Sweet Apple.md b/data/Items/Sweet Apple.md new file mode 100644 index 000000000..4e457ec93 --- /dev/null +++ b/data/Items/Sweet Apple.md @@ -0,0 +1,4 @@ +## Use +Base Pokémon |Evolves into |Available in +:---|:---|:--- +[[File:pokemon/840.png\|25px]] [[Pokemon/Applin]] | [[File:pokemon/842.png\|25px]] [[Pokemon/Appletun]] |Galar onward \ No newline at end of file diff --git a/data/Items/Syrupy Apple.md b/data/Items/Syrupy Apple.md new file mode 100644 index 000000000..dff5c9f15 --- /dev/null +++ b/data/Items/Syrupy Apple.md @@ -0,0 +1,4 @@ +## Use +Base Pokémon |Evolves into |Available in +:---|:---|:--- +[[File:pokemon/840.png\|25px]] [[Pokemon/Applin]] | [[File:pokemon/1011.png\|25px]] [[Pokemon/Dipplin]] |Paldea onward \ No newline at end of file diff --git a/data/Items/Tart Apple.md b/data/Items/Tart Apple.md new file mode 100644 index 000000000..8d6c101d8 --- /dev/null +++ b/data/Items/Tart Apple.md @@ -0,0 +1,4 @@ +## Use +Base Pokémon |Evolves into |Available in +:---|:---|:--- +[[File:pokemon/840.png\|25px]] [[Pokemon/Applin]] | [[File:pokemon/841.png\|25px]] [[Pokemon/Flapple]] |Galar onward \ No newline at end of file diff --git a/data/Items/Upgrade.md b/data/Items/Upgrade.md index e985aaf20..cf6e0bd52 100644 --- a/data/Items/Upgrade.md +++ b/data/Items/Upgrade.md @@ -1 +1,6 @@ -Although this item appears as a rare Hold item it can't drop as Porygon2 isn't wild. \ No newline at end of file +Although this item appears as a rare Hold item it can't drop as Porygon2 isn't wild. + +## Use +Base Pokémon |Evolves into |Available in +:---|:---|:--- +[[File:pokemon/137.png\|25px]] [[Pokemon/Porygon]] | [[File:pokemon/233.png\|25px]] [[Pokemon/Porygon2]] | Johto onward \ No newline at end of file diff --git a/data/Items/Whipped Dream.md b/data/Items/Whipped Dream.md new file mode 100644 index 000000000..7946267a0 --- /dev/null +++ b/data/Items/Whipped Dream.md @@ -0,0 +1,4 @@ +## Use +Base Pokémon |Evolves into |Available in +:---|:---|:--- +[[File:pokemon/684.png\|25px]] [[Pokemon/Swirlix]] | [[File:pokemon/685.png\|25px]] [[Pokemon/Slurpuff]] |Kalos onward \ No newline at end of file diff --git a/data/Items/White DNA.md b/data/Items/White DNA.md index 3113967f6..079b213e0 100644 --- a/data/Items/White DNA.md +++ b/data/Items/White DNA.md @@ -1 +1,5 @@ -Base chance of dropping: 1 in 7.5 (Dungeon Boss) \ No newline at end of file +Base chance of dropping: 1 in 7.5 (Dungeon Boss) +## Use +Base Pokémon |Evolves into |Available in +:---|:---|:--- +[[File:pokemon/646.png\|25px]] [[Pokemon/Kyurem]] | [[File:pokemon/646.01.png\|25px]] [[Pokemon/Kyurem (White)]] |Unova onward \ No newline at end of file diff --git a/data/Items/White Mane Hair.md b/data/Items/White Mane Hair.md index 18c97fd79..9a7bfbfed 100644 --- a/data/Items/White Mane Hair.md +++ b/data/Items/White Mane Hair.md @@ -1 +1,5 @@ -Base chance of dropping: 1 in 10 \ No newline at end of file +Base chance of dropping: 1 in 10 +## Use +Base Pokémon |Evolves into |Available in +:---|:---|:--- +[[File:pokemon/898.png\|25px]] [[Pokemon/Calyrex]] | [[File:pokemon/898.01.png\|25px]] [[Pokemon/Ice_Rider_Calyrex]] |Galar onwards \ No newline at end of file diff --git a/data/Rare Hold Items/overview_description.md b/data/Rare Hold Items/overview_description.md index 56a50d177..2d325faab 100644 --- a/data/Rare Hold Items/overview_description.md +++ b/data/Rare Hold Items/overview_description.md @@ -16,4 +16,5 @@ Griseous Orb | 1/50 Black and White DNA | 1/45 Pure, Solar and Lunar Light | 1/75 Rust Shield and Sword | 1/90 -White and Black Mane | 1/10 \ No newline at end of file +White and Black Mane | 1/10 +Christmas Present | 1/10 \ No newline at end of file diff --git a/data/Regions/Kanto.md b/data/Regions/Kanto.md index 1186733e9..a76070c9e 100644 --- a/data/Regions/Kanto.md +++ b/data/Regions/Kanto.md @@ -64,4 +64,4 @@ All starters can also be obtained as Wanderers using [[Berries/Occa]], [[Berries [[Pokémon/Scyther]] is also often obtained as a [[Wandering Pokémon]] in the [[Farm]]. [[Pokémon/Pinsir]] can also be obtained as a Wanderer using [[Berries/Tanga]] berries. -[[Pokémon/Chansey]] can also be obtained as a client-exclusive Pokemon at [[Towns/Client_Island]] in the Sevii Islands 123. +[[Pokémon/Charity Chansey]] can also be obtained as a client-exclusive Pokemon at [[Towns/Client_Island]] in the Sevii Islands 123. Obtaining this Pokémon instead of regular Chansey still counts for Pokédex completion. diff --git a/data/Regions/Sinnoh.md b/data/Regions/Sinnoh.md index 29c224789..6c952df7d 100644 --- a/data/Regions/Sinnoh.md +++ b/data/Regions/Sinnoh.md @@ -33,13 +33,12 @@ For the evolution to happen, you must equip the Held Item to the corresponding P ### Shopmons |Location|Pokémon|Cost| |---|---|---| -|[[Towns/Pastoria City]] | [[File:pokemon/451.png\|25px]] [[Pokémon/Skorupi]]|[[File:questPoint.svg\|20px]] 6,750| |[[Towns/Solaceon Town]] | [[File:pokemon/442.png\|25px]] [[Pokémon/Spiritomb]]|[[File:questPoint.svg\|20px]] 6,750| |[[Towns/Pal Park]] | [[File:pokemon/415.png\|25px]] [[Pokémon/Combee]]|[[File:questPoint.svg\|20px]] 6,750| |[[Towns/Pal Park]] | [[File:pokemon/412.png\|25px]] [[Pokémon/Burmy (Plant)]]|[[File:questPoint.svg\|20px]] 6,750| |[[Towns/Pal Park]] | [[File:pokemon/420.png\|25px]] [[Pokémon/Cherubi]]|[[File:questPoint.svg\|20px]] 6,750| -Skorupi can be obtained as a Wanderer using [[Berries/Kebia]] berries. Combee, Burmy (Plant), and Cherubi can also all commonly be obtained as [[Wandering Pokémon]] in the Farm. +Combee, Burmy (Plant), and Cherubi can all commonly be obtained as [[Wandering Pokémon]] in the Farm. Also, there may or may not be a Secret Berry Shop somewhere to be found. ### Eggs @@ -47,7 +46,7 @@ All starters can also be obtained as Wanderers using [[Berries/Occa]], [[Berries |Egg|Pokémon| |---|---| |[[File:Fire_egg.png\|25px]] [[Items/Fire Egg]] | [[File:pokemon/390.png\|25px]] [[Pokémon/Chimchar]] | -|[[File:Grass_egg.png\|25px]] [[Items/Grass Egg]] | [[File:pokemon/387.png\|25px]] [[Pokémon/Turtwig]], [[File:pokemon/455.png\|25px]] [[Pokémon/Carnivine]] | +|[[File:Grass_egg.png\|25px]] [[Items/Grass Egg]] | [[File:pokemon/387.png\|25px]] [[Pokémon/Turtwig]] | |[[File:Water_egg.png\|25px]] [[Items/Water Egg]] | [[File:pokemon/393.png\|25px]] [[Pokémon/Piplup]] | |[[File:Electric_egg.png\|25px]] [[Items/Electric Egg]] | [[File:pokemon/417.png\|25px]] [[Pokémon/Pachirisu]] | |[[File:Fighting_egg.png\|25px]] [[Items/Fighting Egg]] | [[File:pokemon/447.png\|25px]] [[Pokémon/Riolu]] | @@ -102,4 +101,11 @@ Munchlax can also be obtained as a Wanderer by using [[Berries/Chilan]] berries. | [[File:pokemon/481.png\|25px]] [[Pokémon/Mesprit]]|Unlocks after clearing [[Dungeons/Distortion World]]| | [[File:pokemon/488.png\|25px]] [[Pokémon/Cresselia]]|Unlocks after clearing [[Dungeons/Fullmoon Island]]| -**Note:** Manaphy will be awarded to the player after completing [[Quest Lines/Recover the Previous Egg]] Quest Line. It can also be obtained as a Wanderer by using [[Berries/Liechi]] berries. \ No newline at end of file +**Note:** Manaphy will be awarded to the player after completing [[Quest Lines/Recover the Previous Egg]] Quest Line. It can also be obtained as a Wanderer by using [[Berries/Liechi]] berries. + +### Safari ([[Towns/Great Marsh]]) + +* [[File:pokemon/451.png\|25px]] [[Pokémon/Skorupi]] +* [[File:pokemon/455.png\|25px]] [[Pokémon/Carnivine]] + +Skorupi can be obtained as a Wanderer using [[Berries/Kebia]] berries. \ No newline at end of file diff --git a/data/Safari/overview_description.md b/data/Safari/overview_description.md index 2bdbf6733..9ee01676c 100644 --- a/data/Safari/overview_description.md +++ b/data/Safari/overview_description.md @@ -1,12 +1,4 @@ -Safari are areas available in a few regions where the player may spend Quest Points to try and catch unique Pokémon. To unlock this area the player must first have the Safari Ticket unlocked after beating [[Gyms/Fuchsia City]]'s Gym. The Pokémon can randomly spawn both on water and grass tiles, and also as sprites that can show up in both these environments. - -Currently there are 4 Safari Zones: -- [[Towns/Safari Zone]] in Kanto. -- [[Towns/National Park]] in Johto. -- [[Towns/Great Marsh]] in Sinnoh. -- [[Towns/Friend Safari]] in Kalos. - -Also, National Park in Johto is unique in the sense that each successful capture in this location will award the player with **Contest Tokens**. +Safari is an area available in Kanto ([[Towns/Safari Zone]]), Johto ([[Towns/National Park]]), Sinnoh ([[Towns/Great_Marsh]]) and Kalos ([[Towns/Friend Safari]]); where the player may spend Quest Points to try and catch unique Pokémon. To unlock this area the player must first have the Safari Ticket which is acquired after beating [[Gyms/Fuchsia City]]'s Gym. The Pokémon can randomly spawn both on water and grass tiles, and also as sprites that can show up in both these environments. ## Actions Upon entering the Safari, the player receives 30 Safari Balls. The player may exit and reenter the Safari without paying the Quest Point fee again provided they still have Safari balls. As long as the game isn't closed, they only need to pay the fee if they run out of Safari balls and need to reenter to get more. @@ -134,4 +126,4 @@ After successfully capturing a Pokémon, there is a chance for an item to spawn. $ItemChance = 39\% + (1\% * Safari Level)$ -The items that can be obtained are different between the Safari locations. Check each individual Safari page for more information. \ No newline at end of file +The items that can be obtained are different between the Safari locations. \ No newline at end of file diff --git "a/data/Shadow Pok\303\251mon/overview_description.md" "b/data/Shadow Pok\303\251mon/overview_description.md" index 44d60d88e..23f33f7d3 100644 --- "a/data/Shadow Pok\303\251mon/overview_description.md" +++ "b/data/Shadow Pok\303\251mon/overview_description.md" @@ -4,7 +4,7 @@ These Pokémon have a **0.8x** multiplier to its attack. However, they can be pu To purify a Shadow Pokémon, the player needs to gain Flow. **1 Flow** is gained every **1,000 experience points** the Shadow and Purified Pokémon gain. Once enough Flow is acquired, purification can be done in [[Towns/Relic Stone]] in Orre. The Flow that is needed to purify a Shadow Pokémon increases with each purification and it follows this formula: -$Flow = [10 * Purified^2 + 10 * Purified + 1000 * e^{(0.1 * Purified)}]$ +$Flow = [15 * Purified^2 + 15 * Purified + 1500 * e^{(0.1 * Purified)}]$ Shadow Pokémon can also equip special Held Items that boost experience gain called Scents. Currently, there are three Scents in the game: [[Items/Joy Scent]], [[Items/Vivid Scent]], and [[Items/Excite Scent]]. diff --git a/pages/Achievements/overview.html b/pages/Achievements/overview.html new file mode 100644 index 000000000..5b2e7ba5c --- /dev/null +++ b/pages/Achievements/overview.html @@ -0,0 +1,57 @@ +

Categories

+ + + + + + + + + + + + + + + + + + + + + + + + +
CategoryMax BonusNumber of Achievements
Total
+ +

Achievement List

+ + + + + + + + + + + + + + + + + + + + + +
#NameDescriptionTypeCategoryBonus
diff --git a/pages/Berries/main.html b/pages/Berries/main.html index 3dd6c8f5d..ef26fd30f 100644 --- a/pages/Berries/main.html +++ b/pages/Berries/main.html @@ -25,6 +25,10 @@

Berry not found...

Growth Time + + Wither Time + + Exp diff --git a/pages/Dungeons/main.html b/pages/Dungeons/main.html index 8ee49a3ec..5a56fa8c5 100644 --- a/pages/Dungeons/main.html +++ b/pages/Dungeons/main.html @@ -86,7 +86,7 @@

diff --git a/pages/Events/overview.html b/pages/Events/overview.html index 4c80872a0..9e4944b51 100644 --- a/pages/Events/overview.html +++ b/pages/Events/overview.html @@ -4,15 +4,33 @@

List of Events

- + + + + - + + + + + + + + + + +
Event DescriptionStart DateEnd DateCost to Activate
+ + + + Currently Active +
diff --git a/pages/home.html b/pages/home.html index 5641a0398..6d281333e 100644 --- a/pages/home.html +++ b/pages/home.html @@ -44,7 +44,7 @@ Hatchery Helpers Weather Events - + Achievements

Guides, Calculators, Statistics, and Miscellaneous Information

diff --git a/scripts/game.js b/scripts/game.js index d4e3d868b..b770ecbda 100644 --- a/scripts/game.js +++ b/scripts/game.js @@ -13,6 +13,9 @@ themes.options.sort((a, b) => (a.text).localeCompare(b.text)); // Suppress game notifications Notifier.notify = () => {}; +// Ensure weather never satisfies requirements so they are always shown +Weather.currentWeather = () => -1; + // Custom binds as these aren't loaded player = new Player(); player.highestRegion(1); @@ -56,6 +59,7 @@ App.game.specialEvents.initialize(); QuestLineHelper.loadQuestLines(); BattleFrontierRunner.stage(100); BattleFrontierBattle.generateNewEnemy(); +AchievementHandler.initialize(multiplier, new Challenges()); const now = new Date(); DailyDeal.generateDeals(5, now); diff --git a/scripts/gameHelper.js b/scripts/gameHelper.js index 97eb0e737..444d21a8f 100644 --- a/scripts/gameHelper.js +++ b/scripts/gameHelper.js @@ -20,12 +20,20 @@ const requirementHints = (requirement, includeMarkdown = true) => { break; case ClearDungeonRequirement: const dungeonName = GameConstants.RegionDungeons.flat()[req.dungeonIndex]; - hint = `Clear the ${includeMarkdown ? `[[Dungeons/${dungeonName}]]` : dungeonName} dungeon ${req.requiredValue} or more time(s).`; + hint = req.option == GameConstants.AchievementOption.more + ? `Clear the ${includeMarkdown ? `[[Dungeons/${dungeonName}]]` : dungeonName} dungeon ${req.requiredValue} or more time(s).` + : `No longer appears after clearing the ${includeMarkdown ? `[[Dungeons/${dungeonName}]]` : dungeonName} dungeon ${req.requiredValue} time(s).`; break; case QuestLineStepCompletedRequirement: - hint = req.option == GameConstants.AchievementOption.equal - ? `Complete step ${req.questIndex + 1} in the ${includeMarkdown ? `[[Quest Lines/${req.questLineName}]]` : req.questLineName} quest line.` - : `Have not completed step ${req.questIndex + 1} in the ${includeMarkdown ? `[[Quest Lines/${req.questLineName}]]` : req.questLineName} quest line.`; + if (typeof req.questIndex === 'function') { + hint = req.option == GameConstants.AchievementOption.equal + ? `Progress in the ${includeMarkdown ? `[[Quest Lines/${req.questLineName}]]` : req.questLineName} quest line.` + : `Have not progessed to a certain step in the ${includeMarkdown ? `[[Quest Lines/${req.questLineName}]]` : req.questLineName} quest line.`; + } else { + hint = req.option == GameConstants.AchievementOption.equal + ? `Complete step ${req.questIndex + 1} in the ${includeMarkdown ? `[[Quest Lines/${req.questLineName}]]` : req.questLineName} quest line.` + : `Have not completed step ${req.questIndex + 1} in the ${includeMarkdown ? `[[Quest Lines/${req.questLineName}]]` : req.questLineName} quest line.`; + } break; case QuestLineCompletedRequirement: hint = `Complete the ${includeMarkdown ? `[[Quest Lines/${req.questLineName}]]` : req.questLineName} quest line.`; diff --git a/scripts/typeahead.js b/scripts/typeahead.js index 1da229fce..6ad2ca65d 100644 --- a/scripts/typeahead.js +++ b/scripts/typeahead.js @@ -358,6 +358,12 @@ const searchOptions = [ type: 'Flutes', page: '', }, + // Achievements + { + display: 'Achievements', + type: 'Achievements', + page: '', + }, ]; // Differentiate our different links with the same name searchOptions.forEach(a => {