mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 15:41:01 +00:00
1 line
57 KiB
Plaintext
1 line
57 KiB
Plaintext
{"dependencies":[{"name":"../tokenizer","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":1,"column":16,"index":16},"end":{"line":1,"column":39,"index":39}}],"key":"CeLPNCNjt8y0xnwsIyTQzXoUUj0=","exportNames":["*"],"imports":1}},{"name":"./generic-an-plus-b","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":8,"column":14,"index":283},"end":{"line":8,"column":44,"index":313}}],"key":"K5hdYEPur0ApTgd250CgagK+ze4=","exportNames":["*"],"imports":1}},{"name":"./generic-urange","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":9,"column":13,"index":328},"end":{"line":9,"column":40,"index":355}}],"key":"Fq7odR/f9C0xMKbpnUiNyUapARw=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n var tokenizer = require(_dependencyMap[0], \"../tokenizer\");\n var isIdentifierStart = tokenizer.isIdentifierStart;\n var isHexDigit = tokenizer.isHexDigit;\n var isDigit = tokenizer.isDigit;\n var cmpStr = tokenizer.cmpStr;\n var consumeNumber = tokenizer.consumeNumber;\n var TYPE = tokenizer.TYPE;\n var anPlusB = require(_dependencyMap[1], \"./generic-an-plus-b\");\n var urange = require(_dependencyMap[2], \"./generic-urange\");\n var cssWideKeywords = ['unset', 'initial', 'inherit'];\n var calcFunctionNames = ['calc(', '-moz-calc(', '-webkit-calc('];\n\n // https://www.w3.org/TR/css-values-3/#lengths\n var LENGTH = {\n // absolute length units\n 'px': true,\n 'mm': true,\n 'cm': true,\n 'in': true,\n 'pt': true,\n 'pc': true,\n 'q': true,\n // relative length units\n 'em': true,\n 'ex': true,\n 'ch': true,\n 'rem': true,\n // viewport-percentage lengths\n 'vh': true,\n 'vw': true,\n 'vmin': true,\n 'vmax': true,\n 'vm': true\n };\n var ANGLE = {\n 'deg': true,\n 'grad': true,\n 'rad': true,\n 'turn': true\n };\n var TIME = {\n 's': true,\n 'ms': true\n };\n var FREQUENCY = {\n 'hz': true,\n 'khz': true\n };\n\n // https://www.w3.org/TR/css-values-3/#resolution (https://drafts.csswg.org/css-values/#resolution)\n var RESOLUTION = {\n 'dpi': true,\n 'dpcm': true,\n 'dppx': true,\n 'x': true // https://github.com/w3c/csswg-drafts/issues/461\n };\n\n // https://drafts.csswg.org/css-grid/#fr-unit\n var FLEX = {\n 'fr': true\n };\n\n // https://www.w3.org/TR/css3-speech/#mixing-props-voice-volume\n var DECIBEL = {\n 'db': true\n };\n\n // https://www.w3.org/TR/css3-speech/#voice-props-voice-pitch\n var SEMITONES = {\n 'st': true\n };\n\n // safe char code getter\n function charCode(str, index) {\n return index < str.length ? str.charCodeAt(index) : 0;\n }\n function eqStr(actual, expected) {\n return cmpStr(actual, 0, actual.length, expected);\n }\n function eqStrAny(actual, expected) {\n for (var i = 0; i < expected.length; i++) {\n if (eqStr(actual, expected[i])) {\n return true;\n }\n }\n return false;\n }\n\n // IE postfix hack, i.e. 123\\0 or 123px\\9\n function isPostfixIeHack(str, offset) {\n if (offset !== str.length - 2) {\n return false;\n }\n return str.charCodeAt(offset) === 0x005C &&\n // U+005C REVERSE SOLIDUS (\\)\n isDigit(str.charCodeAt(offset + 1));\n }\n function outOfRange(opts, value, numEnd) {\n if (opts && opts.type === 'Range') {\n var num = Number(numEnd !== undefined && numEnd !== value.length ? value.substr(0, numEnd) : value);\n if (isNaN(num)) {\n return true;\n }\n if (opts.min !== null && num < opts.min) {\n return true;\n }\n if (opts.max !== null && num > opts.max) {\n return true;\n }\n }\n return false;\n }\n function consumeFunction(token, getNextToken) {\n var startIdx = token.index;\n var length = 0;\n\n // balanced token consuming\n do {\n length++;\n if (token.balance <= startIdx) {\n break;\n }\n } while (token = getNextToken(length));\n return length;\n }\n\n // TODO: implement\n // can be used wherever <length>, <frequency>, <angle>, <time>, <percentage>, <number>, or <integer> values are allowed\n // https://drafts.csswg.org/css-values/#calc-notation\n function calc(next) {\n return function (token, getNextToken, opts) {\n if (token === null) {\n return 0;\n }\n if (token.type === TYPE.Function && eqStrAny(token.value, calcFunctionNames)) {\n return consumeFunction(token, getNextToken);\n }\n return next(token, getNextToken, opts);\n };\n }\n function tokenType(expectedTokenType) {\n return function (token) {\n if (token === null || token.type !== expectedTokenType) {\n return 0;\n }\n return 1;\n };\n }\n function func(name) {\n name = name + '(';\n return function (token, getNextToken) {\n if (token !== null && eqStr(token.value, name)) {\n return consumeFunction(token, getNextToken);\n }\n return 0;\n };\n }\n\n // =========================\n // Complex types\n //\n\n // https://drafts.csswg.org/css-values-4/#custom-idents\n // 4.2. Author-defined Identifiers: the <custom-ident> type\n // Some properties accept arbitrary author-defined identifiers as a component value.\n // This generic data type is denoted by <custom-ident>, and represents any valid CSS identifier\n // that would not be misinterpreted as a pre-defined keyword in that property’s value definition.\n //\n // See also: https://developer.mozilla.org/en-US/docs/Web/CSS/custom-ident\n function customIdent(token) {\n if (token === null || token.type !== TYPE.Ident) {\n return 0;\n }\n var name = token.value.toLowerCase();\n\n // The CSS-wide keywords are not valid <custom-ident>s\n if (eqStrAny(name, cssWideKeywords)) {\n return 0;\n }\n\n // The default keyword is reserved and is also not a valid <custom-ident>\n if (eqStr(name, 'default')) {\n return 0;\n }\n\n // TODO: ignore property specific keywords (as described https://developer.mozilla.org/en-US/docs/Web/CSS/custom-ident)\n // Specifications using <custom-ident> must specify clearly what other keywords\n // are excluded from <custom-ident>, if any—for example by saying that any pre-defined keywords\n // in that property’s value definition are excluded. Excluded keywords are excluded\n // in all ASCII case permutations.\n\n return 1;\n }\n\n // https://drafts.csswg.org/css-variables/#typedef-custom-property-name\n // A custom property is any property whose name starts with two dashes (U+002D HYPHEN-MINUS), like --foo.\n // The <custom-property-name> production corresponds to this: it’s defined as any valid identifier\n // that starts with two dashes, except -- itself, which is reserved for future use by CSS.\n // NOTE: Current implementation treat `--` as a valid name since most (all?) major browsers treat it as valid.\n function customPropertyName(token) {\n // ... defined as any valid identifier\n if (token === null || token.type !== TYPE.Ident) {\n return 0;\n }\n\n // ... that starts with two dashes (U+002D HYPHEN-MINUS)\n if (charCode(token.value, 0) !== 0x002D || charCode(token.value, 1) !== 0x002D) {\n return 0;\n }\n return 1;\n }\n\n // https://drafts.csswg.org/css-color-4/#hex-notation\n // The syntax of a <hex-color> is a <hash-token> token whose value consists of 3, 4, 6, or 8 hexadecimal digits.\n // In other words, a hex color is written as a hash character, \"#\", followed by some number of digits 0-9 or\n // letters a-f (the case of the letters doesn’t matter - #00ff00 is identical to #00FF00).\n function hexColor(token) {\n if (token === null || token.type !== TYPE.Hash) {\n return 0;\n }\n var length = token.value.length;\n\n // valid values (length): #rgb (4), #rgba (5), #rrggbb (7), #rrggbbaa (9)\n if (length !== 4 && length !== 5 && length !== 7 && length !== 9) {\n return 0;\n }\n for (var i = 1; i < length; i++) {\n if (!isHexDigit(token.value.charCodeAt(i))) {\n return 0;\n }\n }\n return 1;\n }\n function idSelector(token) {\n if (token === null || token.type !== TYPE.Hash) {\n return 0;\n }\n if (!isIdentifierStart(charCode(token.value, 1), charCode(token.value, 2), charCode(token.value, 3))) {\n return 0;\n }\n return 1;\n }\n\n // https://drafts.csswg.org/css-syntax/#any-value\n // It represents the entirety of what a valid declaration can have as its value.\n function declarationValue(token, getNextToken) {\n if (!token) {\n return 0;\n }\n var length = 0;\n var level = 0;\n var startIdx = token.index;\n\n // The <declaration-value> production matches any sequence of one or more tokens,\n // so long as the sequence ...\n scan: do {\n switch (token.type) {\n // ... does not contain <bad-string-token>, <bad-url-token>,\n case TYPE.BadString:\n case TYPE.BadUrl:\n break scan;\n\n // ... unmatched <)-token>, <]-token>, or <}-token>,\n case TYPE.RightCurlyBracket:\n case TYPE.RightParenthesis:\n case TYPE.RightSquareBracket:\n if (token.balance > token.index || token.balance < startIdx) {\n break scan;\n }\n level--;\n break;\n\n // ... or top-level <semicolon-token> tokens\n case TYPE.Semicolon:\n if (level === 0) {\n break scan;\n }\n break;\n\n // ... or <delim-token> tokens with a value of \"!\"\n case TYPE.Delim:\n if (token.value === '!' && level === 0) {\n break scan;\n }\n break;\n case TYPE.Function:\n case TYPE.LeftParenthesis:\n case TYPE.LeftSquareBracket:\n case TYPE.LeftCurlyBracket:\n level++;\n break;\n }\n length++;\n\n // until balance closing\n if (token.balance <= startIdx) {\n break;\n }\n } while (token = getNextToken(length));\n return length;\n }\n\n // https://drafts.csswg.org/css-syntax/#any-value\n // The <any-value> production is identical to <declaration-value>, but also\n // allows top-level <semicolon-token> tokens and <delim-token> tokens\n // with a value of \"!\". It represents the entirety of what valid CSS can be in any context.\n function anyValue(token, getNextToken) {\n if (!token) {\n return 0;\n }\n var startIdx = token.index;\n var length = 0;\n\n // The <any-value> production matches any sequence of one or more tokens,\n // so long as the sequence ...\n scan: do {\n switch (token.type) {\n // ... does not contain <bad-string-token>, <bad-url-token>,\n case TYPE.BadString:\n case TYPE.BadUrl:\n break scan;\n\n // ... unmatched <)-token>, <]-token>, or <}-token>,\n case TYPE.RightCurlyBracket:\n case TYPE.RightParenthesis:\n case TYPE.RightSquareBracket:\n if (token.balance > token.index || token.balance < startIdx) {\n break scan;\n }\n break;\n }\n length++;\n\n // until balance closing\n if (token.balance <= startIdx) {\n break;\n }\n } while (token = getNextToken(length));\n return length;\n }\n\n // =========================\n // Dimensions\n //\n\n function dimension(type) {\n return function (token, getNextToken, opts) {\n if (token === null || token.type !== TYPE.Dimension) {\n return 0;\n }\n var numberEnd = consumeNumber(token.value, 0);\n\n // check unit\n if (type !== null) {\n // check for IE postfix hack, i.e. 123px\\0 or 123px\\9\n var reverseSolidusOffset = token.value.indexOf('\\\\', numberEnd);\n var unit = reverseSolidusOffset === -1 || !isPostfixIeHack(token.value, reverseSolidusOffset) ? token.value.substr(numberEnd) : token.value.substring(numberEnd, reverseSolidusOffset);\n if (type.hasOwnProperty(unit.toLowerCase()) === false) {\n return 0;\n }\n }\n\n // check range if specified\n if (outOfRange(opts, token.value, numberEnd)) {\n return 0;\n }\n return 1;\n };\n }\n\n // =========================\n // Percentage\n //\n\n // §5.5. Percentages: the <percentage> type\n // https://drafts.csswg.org/css-values-4/#percentages\n function percentage(token, getNextToken, opts) {\n // ... corresponds to the <percentage-token> production\n if (token === null || token.type !== TYPE.Percentage) {\n return 0;\n }\n\n // check range if specified\n if (outOfRange(opts, token.value, token.value.length - 1)) {\n return 0;\n }\n return 1;\n }\n\n // =========================\n // Numeric\n //\n\n // https://drafts.csswg.org/css-values-4/#numbers\n // The value <zero> represents a literal number with the value 0. Expressions that merely\n // evaluate to a <number> with the value 0 (for example, calc(0)) do not match <zero>;\n // only literal <number-token>s do.\n function zero(next) {\n if (typeof next !== 'function') {\n next = function () {\n return 0;\n };\n }\n return function (token, getNextToken, opts) {\n if (token !== null && token.type === TYPE.Number) {\n if (Number(token.value) === 0) {\n return 1;\n }\n }\n return next(token, getNextToken, opts);\n };\n }\n\n // § 5.3. Real Numbers: the <number> type\n // https://drafts.csswg.org/css-values-4/#numbers\n // Number values are denoted by <number>, and represent real numbers, possibly with a fractional component.\n // ... It corresponds to the <number-token> production\n function number(token, getNextToken, opts) {\n if (token === null) {\n return 0;\n }\n var numberEnd = consumeNumber(token.value, 0);\n var isNumber = numberEnd === token.value.length;\n if (!isNumber && !isPostfixIeHack(token.value, numberEnd)) {\n return 0;\n }\n\n // check range if specified\n if (outOfRange(opts, token.value, numberEnd)) {\n return 0;\n }\n return 1;\n }\n\n // §5.2. Integers: the <integer> type\n // https://drafts.csswg.org/css-values-4/#integers\n function integer(token, getNextToken, opts) {\n // ... corresponds to a subset of the <number-token> production\n if (token === null || token.type !== TYPE.Number) {\n return 0;\n }\n\n // The first digit of an integer may be immediately preceded by `-` or `+` to indicate the integer’s sign.\n var i = token.value.charCodeAt(0) === 0x002B ||\n // U+002B PLUS SIGN (+)\n token.value.charCodeAt(0) === 0x002D ? 1 : 0; // U+002D HYPHEN-MINUS (-)\n\n // When written literally, an integer is one or more decimal digits 0 through 9 ...\n for (; i < token.value.length; i++) {\n if (!isDigit(token.value.charCodeAt(i))) {\n return 0;\n }\n }\n\n // check range if specified\n if (outOfRange(opts, token.value, i)) {\n return 0;\n }\n return 1;\n }\n module.exports = {\n // token types\n 'ident-token': tokenType(TYPE.Ident),\n 'function-token': tokenType(TYPE.Function),\n 'at-keyword-token': tokenType(TYPE.AtKeyword),\n 'hash-token': tokenType(TYPE.Hash),\n 'string-token': tokenType(TYPE.String),\n 'bad-string-token': tokenType(TYPE.BadString),\n 'url-token': tokenType(TYPE.Url),\n 'bad-url-token': tokenType(TYPE.BadUrl),\n 'delim-token': tokenType(TYPE.Delim),\n 'number-token': tokenType(TYPE.Number),\n 'percentage-token': tokenType(TYPE.Percentage),\n 'dimension-token': tokenType(TYPE.Dimension),\n 'whitespace-token': tokenType(TYPE.WhiteSpace),\n 'CDO-token': tokenType(TYPE.CDO),\n 'CDC-token': tokenType(TYPE.CDC),\n 'colon-token': tokenType(TYPE.Colon),\n 'semicolon-token': tokenType(TYPE.Semicolon),\n 'comma-token': tokenType(TYPE.Comma),\n '[-token': tokenType(TYPE.LeftSquareBracket),\n ']-token': tokenType(TYPE.RightSquareBracket),\n '(-token': tokenType(TYPE.LeftParenthesis),\n ')-token': tokenType(TYPE.RightParenthesis),\n '{-token': tokenType(TYPE.LeftCurlyBracket),\n '}-token': tokenType(TYPE.RightCurlyBracket),\n // token type aliases\n 'string': tokenType(TYPE.String),\n 'ident': tokenType(TYPE.Ident),\n // complex types\n 'custom-ident': customIdent,\n 'custom-property-name': customPropertyName,\n 'hex-color': hexColor,\n 'id-selector': idSelector,\n // element( <id-selector> )\n 'an-plus-b': anPlusB,\n 'urange': urange,\n 'declaration-value': declarationValue,\n 'any-value': anyValue,\n // dimensions\n 'dimension': calc(dimension(null)),\n 'angle': calc(dimension(ANGLE)),\n 'decibel': calc(dimension(DECIBEL)),\n 'frequency': calc(dimension(FREQUENCY)),\n 'flex': calc(dimension(FLEX)),\n 'length': calc(zero(dimension(LENGTH))),\n 'resolution': calc(dimension(RESOLUTION)),\n 'semitones': calc(dimension(SEMITONES)),\n 'time': calc(dimension(TIME)),\n // percentage\n 'percentage': calc(percentage),\n // numeric\n 'zero': zero(),\n 'number': calc(number),\n 'integer': calc(integer),\n // old IE stuff\n '-ms-legacy-expression': func('expression')\n };\n});","lineCount":520,"map":[[2,2,1,0],[2,6,1,4,"tokenizer"],[2,15,1,13],[2,18,1,16,"require"],[2,25,1,23],[2,26,1,23,"_dependencyMap"],[2,40,1,23],[2,59,1,38],[2,60,1,39],[3,2,2,0],[3,6,2,4,"isIdentifierStart"],[3,23,2,21],[3,26,2,24,"tokenizer"],[3,35,2,33],[3,36,2,34,"isIdentifierStart"],[3,53,2,51],[4,2,3,0],[4,6,3,4,"isHexDigit"],[4,16,3,14],[4,19,3,17,"tokenizer"],[4,28,3,26],[4,29,3,27,"isHexDigit"],[4,39,3,37],[5,2,4,0],[5,6,4,4,"isDigit"],[5,13,4,11],[5,16,4,14,"tokenizer"],[5,25,4,23],[5,26,4,24,"isDigit"],[5,33,4,31],[6,2,5,0],[6,6,5,4,"cmpStr"],[6,12,5,10],[6,15,5,13,"tokenizer"],[6,24,5,22],[6,25,5,23,"cmpStr"],[6,31,5,29],[7,2,6,0],[7,6,6,4,"consumeNumber"],[7,19,6,17],[7,22,6,20,"tokenizer"],[7,31,6,29],[7,32,6,30,"consumeNumber"],[7,45,6,43],[8,2,7,0],[8,6,7,4,"TYPE"],[8,10,7,8],[8,13,7,11,"tokenizer"],[8,22,7,20],[8,23,7,21,"TYPE"],[8,27,7,25],[9,2,8,0],[9,6,8,4,"anPlusB"],[9,13,8,11],[9,16,8,14,"require"],[9,23,8,21],[9,24,8,21,"_dependencyMap"],[9,38,8,21],[9,64,8,43],[9,65,8,44],[10,2,9,0],[10,6,9,4,"urange"],[10,12,9,10],[10,15,9,13,"require"],[10,22,9,20],[10,23,9,20,"_dependencyMap"],[10,37,9,20],[10,60,9,39],[10,61,9,40],[11,2,11,0],[11,6,11,4,"cssWideKeywords"],[11,21,11,19],[11,24,11,22],[11,25,11,23],[11,32,11,30],[11,34,11,32],[11,43,11,41],[11,45,11,43],[11,54,11,52],[11,55,11,53],[12,2,12,0],[12,6,12,4,"calcFunctionNames"],[12,23,12,21],[12,26,12,24],[12,27,12,25],[12,34,12,32],[12,36,12,34],[12,48,12,46],[12,50,12,48],[12,65,12,63],[12,66,12,64],[14,2,14,0],[15,2,15,0],[15,6,15,4,"LENGTH"],[15,12,15,10],[15,15,15,13],[16,4,16,4],[17,4,17,4],[17,8,17,8],[17,10,17,10],[17,14,17,14],[18,4,18,4],[18,8,18,8],[18,10,18,10],[18,14,18,14],[19,4,19,4],[19,8,19,8],[19,10,19,10],[19,14,19,14],[20,4,20,4],[20,8,20,8],[20,10,20,10],[20,14,20,14],[21,4,21,4],[21,8,21,8],[21,10,21,10],[21,14,21,14],[22,4,22,4],[22,8,22,8],[22,10,22,10],[22,14,22,14],[23,4,23,4],[23,7,23,7],[23,9,23,9],[23,13,23,13],[24,4,25,4],[25,4,26,4],[25,8,26,8],[25,10,26,10],[25,14,26,14],[26,4,27,4],[26,8,27,8],[26,10,27,10],[26,14,27,14],[27,4,28,4],[27,8,28,8],[27,10,28,10],[27,14,28,14],[28,4,29,4],[28,9,29,9],[28,11,29,11],[28,15,29,15],[29,4,31,4],[30,4,32,4],[30,8,32,8],[30,10,32,10],[30,14,32,14],[31,4,33,4],[31,8,33,8],[31,10,33,10],[31,14,33,14],[32,4,34,4],[32,10,34,10],[32,12,34,12],[32,16,34,16],[33,4,35,4],[33,10,35,10],[33,12,35,12],[33,16,35,16],[34,4,36,4],[34,8,36,8],[34,10,36,10],[35,2,37,0],[35,3,37,1],[36,2,39,0],[36,6,39,4,"ANGLE"],[36,11,39,9],[36,14,39,12],[37,4,40,4],[37,9,40,9],[37,11,40,11],[37,15,40,15],[38,4,41,4],[38,10,41,10],[38,12,41,12],[38,16,41,16],[39,4,42,4],[39,9,42,9],[39,11,42,11],[39,15,42,15],[40,4,43,4],[40,10,43,10],[40,12,43,12],[41,2,44,0],[41,3,44,1],[42,2,46,0],[42,6,46,4,"TIME"],[42,10,46,8],[42,13,46,11],[43,4,47,4],[43,7,47,7],[43,9,47,9],[43,13,47,13],[44,4,48,4],[44,8,48,8],[44,10,48,10],[45,2,49,0],[45,3,49,1],[46,2,51,0],[46,6,51,4,"FREQUENCY"],[46,15,51,13],[46,18,51,16],[47,4,52,4],[47,8,52,8],[47,10,52,10],[47,14,52,14],[48,4,53,4],[48,9,53,9],[48,11,53,11],[49,2,54,0],[49,3,54,1],[51,2,56,0],[52,2,57,0],[52,6,57,4,"RESOLUTION"],[52,16,57,14],[52,19,57,17],[53,4,58,4],[53,9,58,9],[53,11,58,11],[53,15,58,15],[54,4,59,4],[54,10,59,10],[54,12,59,12],[54,16,59,16],[55,4,60,4],[55,10,60,10],[55,12,60,12],[55,16,60,16],[56,4,61,4],[56,7,61,7],[56,9,61,9],[56,13,61,13],[56,14,61,19],[57,2,62,0],[57,3,62,1],[59,2,64,0],[60,2,65,0],[60,6,65,4,"FLEX"],[60,10,65,8],[60,13,65,11],[61,4,66,4],[61,8,66,8],[61,10,66,10],[62,2,67,0],[62,3,67,1],[64,2,69,0],[65,2,70,0],[65,6,70,4,"DECIBEL"],[65,13,70,11],[65,16,70,14],[66,4,71,4],[66,8,71,8],[66,10,71,10],[67,2,72,0],[67,3,72,1],[69,2,74,0],[70,2,75,0],[70,6,75,4,"SEMITONES"],[70,15,75,13],[70,18,75,16],[71,4,76,4],[71,8,76,8],[71,10,76,10],[72,2,77,0],[72,3,77,1],[74,2,79,0],[75,2,80,0],[75,11,80,9,"charCode"],[75,19,80,17,"charCode"],[75,20,80,18,"str"],[75,23,80,21],[75,25,80,23,"index"],[75,30,80,28],[75,32,80,30],[76,4,81,4],[76,11,81,11,"index"],[76,16,81,16],[76,19,81,19,"str"],[76,22,81,22],[76,23,81,23,"length"],[76,29,81,29],[76,32,81,32,"str"],[76,35,81,35],[76,36,81,36,"charCodeAt"],[76,46,81,46],[76,47,81,47,"index"],[76,52,81,52],[76,53,81,53],[76,56,81,56],[76,57,81,57],[77,2,82,0],[78,2,84,0],[78,11,84,9,"eqStr"],[78,16,84,14,"eqStr"],[78,17,84,15,"actual"],[78,23,84,21],[78,25,84,23,"expected"],[78,33,84,31],[78,35,84,33],[79,4,85,4],[79,11,85,11,"cmpStr"],[79,17,85,17],[79,18,85,18,"actual"],[79,24,85,24],[79,26,85,26],[79,27,85,27],[79,29,85,29,"actual"],[79,35,85,35],[79,36,85,36,"length"],[79,42,85,42],[79,44,85,44,"expected"],[79,52,85,52],[79,53,85,53],[80,2,86,0],[81,2,88,0],[81,11,88,9,"eqStrAny"],[81,19,88,17,"eqStrAny"],[81,20,88,18,"actual"],[81,26,88,24],[81,28,88,26,"expected"],[81,36,88,34],[81,38,88,36],[82,4,89,4],[82,9,89,9],[82,13,89,13,"i"],[82,14,89,14],[82,17,89,17],[82,18,89,18],[82,20,89,20,"i"],[82,21,89,21],[82,24,89,24,"expected"],[82,32,89,32],[82,33,89,33,"length"],[82,39,89,39],[82,41,89,41,"i"],[82,42,89,42],[82,44,89,44],[82,46,89,46],[83,6,90,8],[83,10,90,12,"eqStr"],[83,15,90,17],[83,16,90,18,"actual"],[83,22,90,24],[83,24,90,26,"expected"],[83,32,90,34],[83,33,90,35,"i"],[83,34,90,36],[83,35,90,37],[83,36,90,38],[83,38,90,40],[84,8,91,12],[84,15,91,19],[84,19,91,23],[85,6,92,8],[86,4,93,4],[87,4,95,4],[87,11,95,11],[87,16,95,16],[88,2,96,0],[90,2,98,0],[91,2,99,0],[91,11,99,9,"isPostfixIeHack"],[91,26,99,24,"isPostfixIeHack"],[91,27,99,25,"str"],[91,30,99,28],[91,32,99,30,"offset"],[91,38,99,36],[91,40,99,38],[92,4,100,4],[92,8,100,8,"offset"],[92,14,100,14],[92,19,100,19,"str"],[92,22,100,22],[92,23,100,23,"length"],[92,29,100,29],[92,32,100,32],[92,33,100,33],[92,35,100,35],[93,6,101,8],[93,13,101,15],[93,18,101,20],[94,4,102,4],[95,4,104,4],[95,11,105,8,"str"],[95,14,105,11],[95,15,105,12,"charCodeAt"],[95,25,105,22],[95,26,105,23,"offset"],[95,32,105,29],[95,33,105,30],[95,38,105,35],[95,44,105,41],[96,4,105,46],[97,4,106,8,"isDigit"],[97,11,106,15],[97,12,106,16,"str"],[97,15,106,19],[97,16,106,20,"charCodeAt"],[97,26,106,30],[97,27,106,31,"offset"],[97,33,106,37],[97,36,106,40],[97,37,106,41],[97,38,106,42],[97,39,106,43],[98,2,108,0],[99,2,110,0],[99,11,110,9,"outOfRange"],[99,21,110,19,"outOfRange"],[99,22,110,20,"opts"],[99,26,110,24],[99,28,110,26,"value"],[99,33,110,31],[99,35,110,33,"numEnd"],[99,41,110,39],[99,43,110,41],[100,4,111,4],[100,8,111,8,"opts"],[100,12,111,12],[100,16,111,16,"opts"],[100,20,111,20],[100,21,111,21,"type"],[100,25,111,25],[100,30,111,30],[100,37,111,37],[100,39,111,39],[101,6,112,8],[101,10,112,12,"num"],[101,13,112,15],[101,16,112,18,"Number"],[101,22,112,24],[101,23,113,12,"numEnd"],[101,29,113,18],[101,34,113,23,"undefined"],[101,43,113,32],[101,47,113,36,"numEnd"],[101,53,113,42],[101,58,113,47,"value"],[101,63,113,52],[101,64,113,53,"length"],[101,70,113,59],[101,73,114,18,"value"],[101,78,114,23],[101,79,114,24,"substr"],[101,85,114,30],[101,86,114,31],[101,87,114,32],[101,89,114,34,"numEnd"],[101,95,114,40],[101,96,114,41],[101,99,115,18,"value"],[101,104,116,8],[101,105,116,9],[102,6,118,8],[102,10,118,12,"isNaN"],[102,15,118,17],[102,16,118,18,"num"],[102,19,118,21],[102,20,118,22],[102,22,118,24],[103,8,119,12],[103,15,119,19],[103,19,119,23],[104,6,120,8],[105,6,122,8],[105,10,122,12,"opts"],[105,14,122,16],[105,15,122,17,"min"],[105,18,122,20],[105,23,122,25],[105,27,122,29],[105,31,122,33,"num"],[105,34,122,36],[105,37,122,39,"opts"],[105,41,122,43],[105,42,122,44,"min"],[105,45,122,47],[105,47,122,49],[106,8,123,12],[106,15,123,19],[106,19,123,23],[107,6,124,8],[108,6,126,8],[108,10,126,12,"opts"],[108,14,126,16],[108,15,126,17,"max"],[108,18,126,20],[108,23,126,25],[108,27,126,29],[108,31,126,33,"num"],[108,34,126,36],[108,37,126,39,"opts"],[108,41,126,43],[108,42,126,44,"max"],[108,45,126,47],[108,47,126,49],[109,8,127,12],[109,15,127,19],[109,19,127,23],[110,6,128,8],[111,4,129,4],[112,4,131,4],[112,11,131,11],[112,16,131,16],[113,2,132,0],[114,2,134,0],[114,11,134,9,"consumeFunction"],[114,26,134,24,"consumeFunction"],[114,27,134,25,"token"],[114,32,134,30],[114,34,134,32,"getNextToken"],[114,46,134,44],[114,48,134,46],[115,4,135,4],[115,8,135,8,"startIdx"],[115,16,135,16],[115,19,135,19,"token"],[115,24,135,24],[115,25,135,25,"index"],[115,30,135,30],[116,4,136,4],[116,8,136,8,"length"],[116,14,136,14],[116,17,136,17],[116,18,136,18],[118,4,138,4],[119,4,139,4],[119,7,139,7],[120,6,140,8,"length"],[120,12,140,14],[120,14,140,16],[121,6,142,8],[121,10,142,12,"token"],[121,15,142,17],[121,16,142,18,"balance"],[121,23,142,25],[121,27,142,29,"startIdx"],[121,35,142,37],[121,37,142,39],[122,8,143,12],[123,6,144,8],[124,4,145,4],[124,5,145,5],[124,13,145,13,"token"],[124,18,145,18],[124,21,145,21,"getNextToken"],[124,33,145,33],[124,34,145,34,"length"],[124,40,145,40],[124,41,145,41],[125,4,147,4],[125,11,147,11,"length"],[125,17,147,17],[126,2,148,0],[128,2,150,0],[129,2,151,0],[130,2,152,0],[131,2,153,0],[131,11,153,9,"calc"],[131,15,153,13,"calc"],[131,16,153,14,"next"],[131,20,153,18],[131,22,153,20],[132,4,154,4],[132,11,154,11],[132,21,154,20,"token"],[132,26,154,25],[132,28,154,27,"getNextToken"],[132,40,154,39],[132,42,154,41,"opts"],[132,46,154,45],[132,48,154,47],[133,6,155,8],[133,10,155,12,"token"],[133,15,155,17],[133,20,155,22],[133,24,155,26],[133,26,155,28],[134,8,156,12],[134,15,156,19],[134,16,156,20],[135,6,157,8],[136,6,159,8],[136,10,159,12,"token"],[136,15,159,17],[136,16,159,18,"type"],[136,20,159,22],[136,25,159,27,"TYPE"],[136,29,159,31],[136,30,159,32,"Function"],[136,38,159,40],[136,42,159,44,"eqStrAny"],[136,50,159,52],[136,51,159,53,"token"],[136,56,159,58],[136,57,159,59,"value"],[136,62,159,64],[136,64,159,66,"calcFunctionNames"],[136,81,159,83],[136,82,159,84],[136,84,159,86],[137,8,160,12],[137,15,160,19,"consumeFunction"],[137,30,160,34],[137,31,160,35,"token"],[137,36,160,40],[137,38,160,42,"getNextToken"],[137,50,160,54],[137,51,160,55],[138,6,161,8],[139,6,163,8],[139,13,163,15,"next"],[139,17,163,19],[139,18,163,20,"token"],[139,23,163,25],[139,25,163,27,"getNextToken"],[139,37,163,39],[139,39,163,41,"opts"],[139,43,163,45],[139,44,163,46],[140,4,164,4],[140,5,164,5],[141,2,165,0],[142,2,167,0],[142,11,167,9,"tokenType"],[142,20,167,18,"tokenType"],[142,21,167,19,"expectedTokenType"],[142,38,167,36],[142,40,167,38],[143,4,168,4],[143,11,168,11],[143,21,168,20,"token"],[143,26,168,25],[143,28,168,27],[144,6,169,8],[144,10,169,12,"token"],[144,15,169,17],[144,20,169,22],[144,24,169,26],[144,28,169,30,"token"],[144,33,169,35],[144,34,169,36,"type"],[144,38,169,40],[144,43,169,45,"expectedTokenType"],[144,60,169,62],[144,62,169,64],[145,8,170,12],[145,15,170,19],[145,16,170,20],[146,6,171,8],[147,6,173,8],[147,13,173,15],[147,14,173,16],[148,4,174,4],[148,5,174,5],[149,2,175,0],[150,2,177,0],[150,11,177,9,"func"],[150,15,177,13,"func"],[150,16,177,14,"name"],[150,20,177,18],[150,22,177,20],[151,4,178,4,"name"],[151,8,178,8],[151,11,178,11,"name"],[151,15,178,15],[151,18,178,18],[151,21,178,21],[152,4,180,4],[152,11,180,11],[152,21,180,20,"token"],[152,26,180,25],[152,28,180,27,"getNextToken"],[152,40,180,39],[152,42,180,41],[153,6,181,8],[153,10,181,12,"token"],[153,15,181,17],[153,20,181,22],[153,24,181,26],[153,28,181,30,"eqStr"],[153,33,181,35],[153,34,181,36,"token"],[153,39,181,41],[153,40,181,42,"value"],[153,45,181,47],[153,47,181,49,"name"],[153,51,181,53],[153,52,181,54],[153,54,181,56],[154,8,182,12],[154,15,182,19,"consumeFunction"],[154,30,182,34],[154,31,182,35,"token"],[154,36,182,40],[154,38,182,42,"getNextToken"],[154,50,182,54],[154,51,182,55],[155,6,183,8],[156,6,185,8],[156,13,185,15],[156,14,185,16],[157,4,186,4],[157,5,186,5],[158,2,187,0],[160,2,189,0],[161,2,190,0],[162,2,191,0],[164,2,193,0],[165,2,194,0],[166,2,195,0],[167,2,196,0],[168,2,197,0],[169,2,198,0],[170,2,199,0],[171,2,200,0],[171,11,200,9,"customIdent"],[171,22,200,20,"customIdent"],[171,23,200,21,"token"],[171,28,200,26],[171,30,200,28],[172,4,201,4],[172,8,201,8,"token"],[172,13,201,13],[172,18,201,18],[172,22,201,22],[172,26,201,26,"token"],[172,31,201,31],[172,32,201,32,"type"],[172,36,201,36],[172,41,201,41,"TYPE"],[172,45,201,45],[172,46,201,46,"Ident"],[172,51,201,51],[172,53,201,53],[173,6,202,8],[173,13,202,15],[173,14,202,16],[174,4,203,4],[175,4,205,4],[175,8,205,8,"name"],[175,12,205,12],[175,15,205,15,"token"],[175,20,205,20],[175,21,205,21,"value"],[175,26,205,26],[175,27,205,27,"toLowerCase"],[175,38,205,38],[175,39,205,39],[175,40,205,40],[177,4,207,4],[178,4,208,4],[178,8,208,8,"eqStrAny"],[178,16,208,16],[178,17,208,17,"name"],[178,21,208,21],[178,23,208,23,"cssWideKeywords"],[178,38,208,38],[178,39,208,39],[178,41,208,41],[179,6,209,8],[179,13,209,15],[179,14,209,16],[180,4,210,4],[182,4,212,4],[183,4,213,4],[183,8,213,8,"eqStr"],[183,13,213,13],[183,14,213,14,"name"],[183,18,213,18],[183,20,213,20],[183,29,213,29],[183,30,213,30],[183,32,213,32],[184,6,214,8],[184,13,214,15],[184,14,214,16],[185,4,215,4],[187,4,217,4],[188,4,218,4],[189,4,219,4],[190,4,220,4],[191,4,221,4],[193,4,223,4],[193,11,223,11],[193,12,223,12],[194,2,224,0],[196,2,226,0],[197,2,227,0],[198,2,228,0],[199,2,229,0],[200,2,230,0],[201,2,231,0],[201,11,231,9,"customPropertyName"],[201,29,231,27,"customPropertyName"],[201,30,231,28,"token"],[201,35,231,33],[201,37,231,35],[202,4,232,4],[203,4,233,4],[203,8,233,8,"token"],[203,13,233,13],[203,18,233,18],[203,22,233,22],[203,26,233,26,"token"],[203,31,233,31],[203,32,233,32,"type"],[203,36,233,36],[203,41,233,41,"TYPE"],[203,45,233,45],[203,46,233,46,"Ident"],[203,51,233,51],[203,53,233,53],[204,6,234,8],[204,13,234,15],[204,14,234,16],[205,4,235,4],[207,4,237,4],[208,4,238,4],[208,8,238,8,"charCode"],[208,16,238,16],[208,17,238,17,"token"],[208,22,238,22],[208,23,238,23,"value"],[208,28,238,28],[208,30,238,30],[208,31,238,31],[208,32,238,32],[208,37,238,37],[208,43,238,43],[208,47,238,47,"charCode"],[208,55,238,55],[208,56,238,56,"token"],[208,61,238,61],[208,62,238,62,"value"],[208,67,238,67],[208,69,238,69],[208,70,238,70],[208,71,238,71],[208,76,238,76],[208,82,238,82],[208,84,238,84],[209,6,239,8],[209,13,239,15],[209,14,239,16],[210,4,240,4],[211,4,242,4],[211,11,242,11],[211,12,242,12],[212,2,243,0],[214,2,245,0],[215,2,246,0],[216,2,247,0],[217,2,248,0],[218,2,249,0],[218,11,249,9,"hexColor"],[218,19,249,17,"hexColor"],[218,20,249,18,"token"],[218,25,249,23],[218,27,249,25],[219,4,250,4],[219,8,250,8,"token"],[219,13,250,13],[219,18,250,18],[219,22,250,22],[219,26,250,26,"token"],[219,31,250,31],[219,32,250,32,"type"],[219,36,250,36],[219,41,250,41,"TYPE"],[219,45,250,45],[219,46,250,46,"Hash"],[219,50,250,50],[219,52,250,52],[220,6,251,8],[220,13,251,15],[220,14,251,16],[221,4,252,4],[222,4,254,4],[222,8,254,8,"length"],[222,14,254,14],[222,17,254,17,"token"],[222,22,254,22],[222,23,254,23,"value"],[222,28,254,28],[222,29,254,29,"length"],[222,35,254,35],[224,4,256,4],[225,4,257,4],[225,8,257,8,"length"],[225,14,257,14],[225,19,257,19],[225,20,257,20],[225,24,257,24,"length"],[225,30,257,30],[225,35,257,35],[225,36,257,36],[225,40,257,40,"length"],[225,46,257,46],[225,51,257,51],[225,52,257,52],[225,56,257,56,"length"],[225,62,257,62],[225,67,257,67],[225,68,257,68],[225,70,257,70],[226,6,258,8],[226,13,258,15],[226,14,258,16],[227,4,259,4],[228,4,261,4],[228,9,261,9],[228,13,261,13,"i"],[228,14,261,14],[228,17,261,17],[228,18,261,18],[228,20,261,20,"i"],[228,21,261,21],[228,24,261,24,"length"],[228,30,261,30],[228,32,261,32,"i"],[228,33,261,33],[228,35,261,35],[228,37,261,37],[229,6,262,8],[229,10,262,12],[229,11,262,13,"isHexDigit"],[229,21,262,23],[229,22,262,24,"token"],[229,27,262,29],[229,28,262,30,"value"],[229,33,262,35],[229,34,262,36,"charCodeAt"],[229,44,262,46],[229,45,262,47,"i"],[229,46,262,48],[229,47,262,49],[229,48,262,50],[229,50,262,52],[230,8,263,12],[230,15,263,19],[230,16,263,20],[231,6,264,8],[232,4,265,4],[233,4,267,4],[233,11,267,11],[233,12,267,12],[234,2,268,0],[235,2,270,0],[235,11,270,9,"idSelector"],[235,21,270,19,"idSelector"],[235,22,270,20,"token"],[235,27,270,25],[235,29,270,27],[236,4,271,4],[236,8,271,8,"token"],[236,13,271,13],[236,18,271,18],[236,22,271,22],[236,26,271,26,"token"],[236,31,271,31],[236,32,271,32,"type"],[236,36,271,36],[236,41,271,41,"TYPE"],[236,45,271,45],[236,46,271,46,"Hash"],[236,50,271,50],[236,52,271,52],[237,6,272,8],[237,13,272,15],[237,14,272,16],[238,4,273,4],[239,4,275,4],[239,8,275,8],[239,9,275,9,"isIdentifierStart"],[239,26,275,26],[239,27,275,27,"charCode"],[239,35,275,35],[239,36,275,36,"token"],[239,41,275,41],[239,42,275,42,"value"],[239,47,275,47],[239,49,275,49],[239,50,275,50],[239,51,275,51],[239,53,275,53,"charCode"],[239,61,275,61],[239,62,275,62,"token"],[239,67,275,67],[239,68,275,68,"value"],[239,73,275,73],[239,75,275,75],[239,76,275,76],[239,77,275,77],[239,79,275,79,"charCode"],[239,87,275,87],[239,88,275,88,"token"],[239,93,275,93],[239,94,275,94,"value"],[239,99,275,99],[239,101,275,101],[239,102,275,102],[239,103,275,103],[239,104,275,104],[239,106,275,106],[240,6,276,8],[240,13,276,15],[240,14,276,16],[241,4,277,4],[242,4,279,4],[242,11,279,11],[242,12,279,12],[243,2,280,0],[245,2,282,0],[246,2,283,0],[247,2,284,0],[247,11,284,9,"declarationValue"],[247,27,284,25,"declarationValue"],[247,28,284,26,"token"],[247,33,284,31],[247,35,284,33,"getNextToken"],[247,47,284,45],[247,49,284,47],[248,4,285,4],[248,8,285,8],[248,9,285,9,"token"],[248,14,285,14],[248,16,285,16],[249,6,286,8],[249,13,286,15],[249,14,286,16],[250,4,287,4],[251,4,289,4],[251,8,289,8,"length"],[251,14,289,14],[251,17,289,17],[251,18,289,18],[252,4,290,4],[252,8,290,8,"level"],[252,13,290,13],[252,16,290,16],[252,17,290,17],[253,4,291,4],[253,8,291,8,"startIdx"],[253,16,291,16],[253,19,291,19,"token"],[253,24,291,24],[253,25,291,25,"index"],[253,30,291,30],[255,4,293,4],[256,4,294,4],[257,4,295,4,"scan"],[257,8,295,8],[257,10,296,4],[257,13,296,7],[258,6,297,8],[258,14,297,16,"token"],[258,19,297,21],[258,20,297,22,"type"],[258,24,297,26],[259,8,298,12],[260,8,299,12],[260,13,299,17,"TYPE"],[260,17,299,21],[260,18,299,22,"BadString"],[260,27,299,31],[261,8,300,12],[261,13,300,17,"TYPE"],[261,17,300,21],[261,18,300,22,"BadUrl"],[261,24,300,28],[262,10,301,16],[262,16,301,22,"scan"],[262,20,301,26],[264,8,303,12],[265,8,304,12],[265,13,304,17,"TYPE"],[265,17,304,21],[265,18,304,22,"RightCurlyBracket"],[265,35,304,39],[266,8,305,12],[266,13,305,17,"TYPE"],[266,17,305,21],[266,18,305,22,"RightParenthesis"],[266,34,305,38],[267,8,306,12],[267,13,306,17,"TYPE"],[267,17,306,21],[267,18,306,22,"RightSquareBracket"],[267,36,306,40],[268,10,307,16],[268,14,307,20,"token"],[268,19,307,25],[268,20,307,26,"balance"],[268,27,307,33],[268,30,307,36,"token"],[268,35,307,41],[268,36,307,42,"index"],[268,41,307,47],[268,45,307,51,"token"],[268,50,307,56],[268,51,307,57,"balance"],[268,58,307,64],[268,61,307,67,"startIdx"],[268,69,307,75],[268,71,307,77],[269,12,308,20],[269,18,308,26,"scan"],[269,22,308,30],[270,10,309,16],[271,10,311,16,"level"],[271,15,311,21],[271,17,311,23],[272,10,312,16],[274,8,314,12],[275,8,315,12],[275,13,315,17,"TYPE"],[275,17,315,21],[275,18,315,22,"Semicolon"],[275,27,315,31],[276,10,316,16],[276,14,316,20,"level"],[276,19,316,25],[276,24,316,30],[276,25,316,31],[276,27,316,33],[277,12,317,20],[277,18,317,26,"scan"],[277,22,317,30],[278,10,318,16],[279,10,320,16],[281,8,322,12],[282,8,323,12],[282,13,323,17,"TYPE"],[282,17,323,21],[282,18,323,22,"Delim"],[282,23,323,27],[283,10,324,16],[283,14,324,20,"token"],[283,19,324,25],[283,20,324,26,"value"],[283,25,324,31],[283,30,324,36],[283,33,324,39],[283,37,324,43,"level"],[283,42,324,48],[283,47,324,53],[283,48,324,54],[283,50,324,56],[284,12,325,20],[284,18,325,26,"scan"],[284,22,325,30],[285,10,326,16],[286,10,328,16],[287,8,330,12],[287,13,330,17,"TYPE"],[287,17,330,21],[287,18,330,22,"Function"],[287,26,330,30],[288,8,331,12],[288,13,331,17,"TYPE"],[288,17,331,21],[288,18,331,22,"LeftParenthesis"],[288,33,331,37],[289,8,332,12],[289,13,332,17,"TYPE"],[289,17,332,21],[289,18,332,22,"LeftSquareBracket"],[289,35,332,39],[290,8,333,12],[290,13,333,17,"TYPE"],[290,17,333,21],[290,18,333,22,"LeftCurlyBracket"],[290,34,333,38],[291,10,334,16,"level"],[291,15,334,21],[291,17,334,23],[292,10,335,16],[293,6,336,8],[294,6,338,8,"length"],[294,12,338,14],[294,14,338,16],[296,6,340,8],[297,6,341,8],[297,10,341,12,"token"],[297,15,341,17],[297,16,341,18,"balance"],[297,23,341,25],[297,27,341,29,"startIdx"],[297,35,341,37],[297,37,341,39],[298,8,342,12],[299,6,343,8],[300,4,344,4],[300,5,344,5],[300,13,344,13,"token"],[300,18,344,18],[300,21,344,21,"getNextToken"],[300,33,344,33],[300,34,344,34,"length"],[300,40,344,40],[300,41,344,41],[301,4,346,4],[301,11,346,11,"length"],[301,17,346,17],[302,2,347,0],[304,2,349,0],[305,2,350,0],[306,2,351,0],[307,2,352,0],[308,2,353,0],[308,11,353,9,"anyValue"],[308,19,353,17,"anyValue"],[308,20,353,18,"token"],[308,25,353,23],[308,27,353,25,"getNextToken"],[308,39,353,37],[308,41,353,39],[309,4,354,4],[309,8,354,8],[309,9,354,9,"token"],[309,14,354,14],[309,16,354,16],[310,6,355,8],[310,13,355,15],[310,14,355,16],[311,4,356,4],[312,4,358,4],[312,8,358,8,"startIdx"],[312,16,358,16],[312,19,358,19,"token"],[312,24,358,24],[312,25,358,25,"index"],[312,30,358,30],[313,4,359,4],[313,8,359,8,"length"],[313,14,359,14],[313,17,359,17],[313,18,359,18],[315,4,361,4],[316,4,362,4],[317,4,363,4,"scan"],[317,8,363,8],[317,10,364,4],[317,13,364,7],[318,6,365,8],[318,14,365,16,"token"],[318,19,365,21],[318,20,365,22,"type"],[318,24,365,26],[319,8,366,12],[320,8,367,12],[320,13,367,17,"TYPE"],[320,17,367,21],[320,18,367,22,"BadString"],[320,27,367,31],[321,8,368,12],[321,13,368,17,"TYPE"],[321,17,368,21],[321,18,368,22,"BadUrl"],[321,24,368,28],[322,10,369,16],[322,16,369,22,"scan"],[322,20,369,26],[324,8,371,12],[325,8,372,12],[325,13,372,17,"TYPE"],[325,17,372,21],[325,18,372,22,"RightCurlyBracket"],[325,35,372,39],[326,8,373,12],[326,13,373,17,"TYPE"],[326,17,373,21],[326,18,373,22,"RightParenthesis"],[326,34,373,38],[327,8,374,12],[327,13,374,17,"TYPE"],[327,17,374,21],[327,18,374,22,"RightSquareBracket"],[327,36,374,40],[328,10,375,16],[328,14,375,20,"token"],[328,19,375,25],[328,20,375,26,"balance"],[328,27,375,33],[328,30,375,36,"token"],[328,35,375,41],[328,36,375,42,"index"],[328,41,375,47],[328,45,375,51,"token"],[328,50,375,56],[328,51,375,57,"balance"],[328,58,375,64],[328,61,375,67,"startIdx"],[328,69,375,75],[328,71,375,77],[329,12,376,20],[329,18,376,26,"scan"],[329,22,376,30],[330,10,377,16],[331,10,379,16],[332,6,380,8],[333,6,382,8,"length"],[333,12,382,14],[333,14,382,16],[335,6,384,8],[336,6,385,8],[336,10,385,12,"token"],[336,15,385,17],[336,16,385,18,"balance"],[336,23,385,25],[336,27,385,29,"startIdx"],[336,35,385,37],[336,37,385,39],[337,8,386,12],[338,6,387,8],[339,4,388,4],[339,5,388,5],[339,13,388,13,"token"],[339,18,388,18],[339,21,388,21,"getNextToken"],[339,33,388,33],[339,34,388,34,"length"],[339,40,388,40],[339,41,388,41],[340,4,390,4],[340,11,390,11,"length"],[340,17,390,17],[341,2,391,0],[343,2,393,0],[344,2,394,0],[345,2,395,0],[347,2,397,0],[347,11,397,9,"dimension"],[347,20,397,18,"dimension"],[347,21,397,19,"type"],[347,25,397,23],[347,27,397,25],[348,4,398,4],[348,11,398,11],[348,21,398,20,"token"],[348,26,398,25],[348,28,398,27,"getNextToken"],[348,40,398,39],[348,42,398,41,"opts"],[348,46,398,45],[348,48,398,47],[349,6,399,8],[349,10,399,12,"token"],[349,15,399,17],[349,20,399,22],[349,24,399,26],[349,28,399,30,"token"],[349,33,399,35],[349,34,399,36,"type"],[349,38,399,40],[349,43,399,45,"TYPE"],[349,47,399,49],[349,48,399,50,"Dimension"],[349,57,399,59],[349,59,399,61],[350,8,400,12],[350,15,400,19],[350,16,400,20],[351,6,401,8],[352,6,403,8],[352,10,403,12,"numberEnd"],[352,19,403,21],[352,22,403,24,"consumeNumber"],[352,35,403,37],[352,36,403,38,"token"],[352,41,403,43],[352,42,403,44,"value"],[352,47,403,49],[352,49,403,51],[352,50,403,52],[352,51,403,53],[354,6,405,8],[355,6,406,8],[355,10,406,12,"type"],[355,14,406,16],[355,19,406,21],[355,23,406,25],[355,25,406,27],[356,8,407,12],[357,8,408,12],[357,12,408,16,"reverseSolidusOffset"],[357,32,408,36],[357,35,408,39,"token"],[357,40,408,44],[357,41,408,45,"value"],[357,46,408,50],[357,47,408,51,"indexOf"],[357,54,408,58],[357,55,408,59],[357,59,408,63],[357,61,408,65,"numberEnd"],[357,70,408,74],[357,71,408,75],[358,8,409,12],[358,12,409,16,"unit"],[358,16,409,20],[358,19,409,23,"reverseSolidusOffset"],[358,39,409,43],[358,44,409,48],[358,45,409,49],[358,46,409,50],[358,50,409,54],[358,51,409,55,"isPostfixIeHack"],[358,66,409,70],[358,67,409,71,"token"],[358,72,409,76],[358,73,409,77,"value"],[358,78,409,82],[358,80,409,84,"reverseSolidusOffset"],[358,100,409,104],[358,101,409,105],[358,104,410,18,"token"],[358,109,410,23],[358,110,410,24,"value"],[358,115,410,29],[358,116,410,30,"substr"],[358,122,410,36],[358,123,410,37,"numberEnd"],[358,132,410,46],[358,133,410,47],[358,136,411,18,"token"],[358,141,411,23],[358,142,411,24,"value"],[358,147,411,29],[358,148,411,30,"substring"],[358,157,411,39],[358,158,411,40,"numberEnd"],[358,167,411,49],[358,169,411,51,"reverseSolidusOffset"],[358,189,411,71],[358,190,411,72],[359,8,413,12],[359,12,413,16,"type"],[359,16,413,20],[359,17,413,21,"hasOwnProperty"],[359,31,413,35],[359,32,413,36,"unit"],[359,36,413,40],[359,37,413,41,"toLowerCase"],[359,48,413,52],[359,49,413,53],[359,50,413,54],[359,51,413,55],[359,56,413,60],[359,61,413,65],[359,63,413,67],[360,10,414,16],[360,17,414,23],[360,18,414,24],[361,8,415,12],[362,6,416,8],[364,6,418,8],[365,6,419,8],[365,10,419,12,"outOfRange"],[365,20,419,22],[365,21,419,23,"opts"],[365,25,419,27],[365,27,419,29,"token"],[365,32,419,34],[365,33,419,35,"value"],[365,38,419,40],[365,40,419,42,"numberEnd"],[365,49,419,51],[365,50,419,52],[365,52,419,54],[366,8,420,12],[366,15,420,19],[366,16,420,20],[367,6,421,8],[368,6,423,8],[368,13,423,15],[368,14,423,16],[369,4,424,4],[369,5,424,5],[370,2,425,0],[372,2,427,0],[373,2,428,0],[374,2,429,0],[376,2,431,0],[377,2,432,0],[378,2,433,0],[378,11,433,9,"percentage"],[378,21,433,19,"percentage"],[378,22,433,20,"token"],[378,27,433,25],[378,29,433,27,"getNextToken"],[378,41,433,39],[378,43,433,41,"opts"],[378,47,433,45],[378,49,433,47],[379,4,434,4],[380,4,435,4],[380,8,435,8,"token"],[380,13,435,13],[380,18,435,18],[380,22,435,22],[380,26,435,26,"token"],[380,31,435,31],[380,32,435,32,"type"],[380,36,435,36],[380,41,435,41,"TYPE"],[380,45,435,45],[380,46,435,46,"Percentage"],[380,56,435,56],[380,58,435,58],[381,6,436,8],[381,13,436,15],[381,14,436,16],[382,4,437,4],[384,4,439,4],[385,4,440,4],[385,8,440,8,"outOfRange"],[385,18,440,18],[385,19,440,19,"opts"],[385,23,440,23],[385,25,440,25,"token"],[385,30,440,30],[385,31,440,31,"value"],[385,36,440,36],[385,38,440,38,"token"],[385,43,440,43],[385,44,440,44,"value"],[385,49,440,49],[385,50,440,50,"length"],[385,56,440,56],[385,59,440,59],[385,60,440,60],[385,61,440,61],[385,63,440,63],[386,6,441,8],[386,13,441,15],[386,14,441,16],[387,4,442,4],[388,4,444,4],[388,11,444,11],[388,12,444,12],[389,2,445,0],[391,2,447,0],[392,2,448,0],[393,2,449,0],[395,2,451,0],[396,2,452,0],[397,2,453,0],[398,2,454,0],[399,2,455,0],[399,11,455,9,"zero"],[399,15,455,13,"zero"],[399,16,455,14,"next"],[399,20,455,18],[399,22,455,20],[400,4,456,4],[400,8,456,8],[400,15,456,15,"next"],[400,19,456,19],[400,24,456,24],[400,34,456,34],[400,36,456,36],[401,6,457,8,"next"],[401,10,457,12],[401,13,457,15],[401,22,457,15,"next"],[401,23,457,15],[401,25,457,26],[402,8,458,12],[402,15,458,19],[402,16,458,20],[403,6,459,8],[403,7,459,9],[404,4,460,4],[405,4,462,4],[405,11,462,11],[405,21,462,20,"token"],[405,26,462,25],[405,28,462,27,"getNextToken"],[405,40,462,39],[405,42,462,41,"opts"],[405,46,462,45],[405,48,462,47],[406,6,463,8],[406,10,463,12,"token"],[406,15,463,17],[406,20,463,22],[406,24,463,26],[406,28,463,30,"token"],[406,33,463,35],[406,34,463,36,"type"],[406,38,463,40],[406,43,463,45,"TYPE"],[406,47,463,49],[406,48,463,50,"Number"],[406,54,463,56],[406,56,463,58],[407,8,464,12],[407,12,464,16,"Number"],[407,18,464,22],[407,19,464,23,"token"],[407,24,464,28],[407,25,464,29,"value"],[407,30,464,34],[407,31,464,35],[407,36,464,40],[407,37,464,41],[407,39,464,43],[408,10,465,16],[408,17,465,23],[408,18,465,24],[409,8,466,12],[410,6,467,8],[411,6,469,8],[411,13,469,15,"next"],[411,17,469,19],[411,18,469,20,"token"],[411,23,469,25],[411,25,469,27,"getNextToken"],[411,37,469,39],[411,39,469,41,"opts"],[411,43,469,45],[411,44,469,46],[412,4,470,4],[412,5,470,5],[413,2,471,0],[415,2,473,0],[416,2,474,0],[417,2,475,0],[418,2,476,0],[419,2,477,0],[419,11,477,9,"number"],[419,17,477,15,"number"],[419,18,477,16,"token"],[419,23,477,21],[419,25,477,23,"getNextToken"],[419,37,477,35],[419,39,477,37,"opts"],[419,43,477,41],[419,45,477,43],[420,4,478,4],[420,8,478,8,"token"],[420,13,478,13],[420,18,478,18],[420,22,478,22],[420,24,478,24],[421,6,479,8],[421,13,479,15],[421,14,479,16],[422,4,480,4],[423,4,482,4],[423,8,482,8,"numberEnd"],[423,17,482,17],[423,20,482,20,"consumeNumber"],[423,33,482,33],[423,34,482,34,"token"],[423,39,482,39],[423,40,482,40,"value"],[423,45,482,45],[423,47,482,47],[423,48,482,48],[423,49,482,49],[424,4,483,4],[424,8,483,8,"isNumber"],[424,16,483,16],[424,19,483,19,"numberEnd"],[424,28,483,28],[424,33,483,33,"token"],[424,38,483,38],[424,39,483,39,"value"],[424,44,483,44],[424,45,483,45,"length"],[424,51,483,51],[425,4,484,4],[425,8,484,8],[425,9,484,9,"isNumber"],[425,17,484,17],[425,21,484,21],[425,22,484,22,"isPostfixIeHack"],[425,37,484,37],[425,38,484,38,"token"],[425,43,484,43],[425,44,484,44,"value"],[425,49,484,49],[425,51,484,51,"numberEnd"],[425,60,484,60],[425,61,484,61],[425,63,484,63],[426,6,485,8],[426,13,485,15],[426,14,485,16],[427,4,486,4],[429,4,488,4],[430,4,489,4],[430,8,489,8,"outOfRange"],[430,18,489,18],[430,19,489,19,"opts"],[430,23,489,23],[430,25,489,25,"token"],[430,30,489,30],[430,31,489,31,"value"],[430,36,489,36],[430,38,489,38,"numberEnd"],[430,47,489,47],[430,48,489,48],[430,50,489,50],[431,6,490,8],[431,13,490,15],[431,14,490,16],[432,4,491,4],[433,4,493,4],[433,11,493,11],[433,12,493,12],[434,2,494,0],[436,2,496,0],[437,2,497,0],[438,2,498,0],[438,11,498,9,"integer"],[438,18,498,16,"integer"],[438,19,498,17,"token"],[438,24,498,22],[438,26,498,24,"getNextToken"],[438,38,498,36],[438,40,498,38,"opts"],[438,44,498,42],[438,46,498,44],[439,4,499,4],[440,4,500,4],[440,8,500,8,"token"],[440,13,500,13],[440,18,500,18],[440,22,500,22],[440,26,500,26,"token"],[440,31,500,31],[440,32,500,32,"type"],[440,36,500,36],[440,41,500,41,"TYPE"],[440,45,500,45],[440,46,500,46,"Number"],[440,52,500,52],[440,54,500,54],[441,6,501,8],[441,13,501,15],[441,14,501,16],[442,4,502,4],[444,4,504,4],[445,4,505,4],[445,8,505,8,"i"],[445,9,505,9],[445,12,505,12,"token"],[445,17,505,17],[445,18,505,18,"value"],[445,23,505,23],[445,24,505,24,"charCodeAt"],[445,34,505,34],[445,35,505,35],[445,36,505,36],[445,37,505,37],[445,42,505,42],[445,48,505,48],[446,4,505,58],[447,4,506,12,"token"],[447,9,506,17],[447,10,506,18,"value"],[447,15,506,23],[447,16,506,24,"charCodeAt"],[447,26,506,34],[447,27,506,35],[447,28,506,36],[447,29,506,37],[447,34,506,42],[447,40,506,48],[447,43,506,51],[447,44,506,52],[447,47,506,55],[447,48,506,56],[447,49,506,57],[447,50,506,58],[449,4,508,4],[450,4,509,4],[450,11,509,11,"i"],[450,12,509,12],[450,15,509,15,"token"],[450,20,509,20],[450,21,509,21,"value"],[450,26,509,26],[450,27,509,27,"length"],[450,33,509,33],[450,35,509,35,"i"],[450,36,509,36],[450,38,509,38],[450,40,509,40],[451,6,510,8],[451,10,510,12],[451,11,510,13,"isDigit"],[451,18,510,20],[451,19,510,21,"token"],[451,24,510,26],[451,25,510,27,"value"],[451,30,510,32],[451,31,510,33,"charCodeAt"],[451,41,510,43],[451,42,510,44,"i"],[451,43,510,45],[451,44,510,46],[451,45,510,47],[451,47,510,49],[452,8,511,12],[452,15,511,19],[452,16,511,20],[453,6,512,8],[454,4,513,4],[456,4,515,4],[457,4,516,4],[457,8,516,8,"outOfRange"],[457,18,516,18],[457,19,516,19,"opts"],[457,23,516,23],[457,25,516,25,"token"],[457,30,516,30],[457,31,516,31,"value"],[457,36,516,36],[457,38,516,38,"i"],[457,39,516,39],[457,40,516,40],[457,42,516,42],[458,6,517,8],[458,13,517,15],[458,14,517,16],[459,4,518,4],[460,4,520,4],[460,11,520,11],[460,12,520,12],[461,2,521,0],[462,2,523,0,"module"],[462,8,523,6],[462,9,523,7,"exports"],[462,16,523,14],[462,19,523,17],[463,4,524,4],[464,4,525,4],[464,17,525,17],[464,19,525,19,"tokenType"],[464,28,525,28],[464,29,525,29,"TYPE"],[464,33,525,33],[464,34,525,34,"Ident"],[464,39,525,39],[464,40,525,40],[465,4,526,4],[465,20,526,20],[465,22,526,22,"tokenType"],[465,31,526,31],[465,32,526,32,"TYPE"],[465,36,526,36],[465,37,526,37,"Function"],[465,45,526,45],[465,46,526,46],[466,4,527,4],[466,22,527,22],[466,24,527,24,"tokenType"],[466,33,527,33],[466,34,527,34,"TYPE"],[466,38,527,38],[466,39,527,39,"AtKeyword"],[466,48,527,48],[466,49,527,49],[467,4,528,4],[467,16,528,16],[467,18,528,18,"tokenType"],[467,27,528,27],[467,28,528,28,"TYPE"],[467,32,528,32],[467,33,528,33,"Hash"],[467,37,528,37],[467,38,528,38],[468,4,529,4],[468,18,529,18],[468,20,529,20,"tokenType"],[468,29,529,29],[468,30,529,30,"TYPE"],[468,34,529,34],[468,35,529,35,"String"],[468,41,529,41],[468,42,529,42],[469,4,530,4],[469,22,530,22],[469,24,530,24,"tokenType"],[469,33,530,33],[469,34,530,34,"TYPE"],[469,38,530,38],[469,39,530,39,"BadString"],[469,48,530,48],[469,49,530,49],[470,4,531,4],[470,15,531,15],[470,17,531,17,"tokenType"],[470,26,531,26],[470,27,531,27,"TYPE"],[470,31,531,31],[470,32,531,32,"Url"],[470,35,531,35],[470,36,531,36],[471,4,532,4],[471,19,532,19],[471,21,532,21,"tokenType"],[471,30,532,30],[471,31,532,31,"TYPE"],[471,35,532,35],[471,36,532,36,"BadUrl"],[471,42,532,42],[471,43,532,43],[472,4,533,4],[472,17,533,17],[472,19,533,19,"tokenType"],[472,28,533,28],[472,29,533,29,"TYPE"],[472,33,533,33],[472,34,533,34,"Delim"],[472,39,533,39],[472,40,533,40],[473,4,534,4],[473,18,534,18],[473,20,534,20,"tokenType"],[473,29,534,29],[473,30,534,30,"TYPE"],[473,34,534,34],[473,35,534,35,"Number"],[473,41,534,41],[473,42,534,42],[474,4,535,4],[474,22,535,22],[474,24,535,24,"tokenType"],[474,33,535,33],[474,34,535,34,"TYPE"],[474,38,535,38],[474,39,535,39,"Percentage"],[474,49,535,49],[474,50,535,50],[475,4,536,4],[475,21,536,21],[475,23,536,23,"tokenType"],[475,32,536,32],[475,33,536,33,"TYPE"],[475,37,536,37],[475,38,536,38,"Dimension"],[475,47,536,47],[475,48,536,48],[476,4,537,4],[476,22,537,22],[476,24,537,24,"tokenType"],[476,33,537,33],[476,34,537,34,"TYPE"],[476,38,537,38],[476,39,537,39,"WhiteSpace"],[476,49,537,49],[476,50,537,50],[477,4,538,4],[477,15,538,15],[477,17,538,17,"tokenType"],[477,26,538,26],[477,27,538,27,"TYPE"],[477,31,538,31],[477,32,538,32,"CDO"],[477,35,538,35],[477,36,538,36],[478,4,539,4],[478,15,539,15],[478,17,539,17,"tokenType"],[478,26,539,26],[478,27,539,27,"TYPE"],[478,31,539,31],[478,32,539,32,"CDC"],[478,35,539,35],[478,36,539,36],[479,4,540,4],[479,17,540,17],[479,19,540,19,"tokenType"],[479,28,540,28],[479,29,540,29,"TYPE"],[479,33,540,33],[479,34,540,34,"Colon"],[479,39,540,39],[479,40,540,40],[480,4,541,4],[480,21,541,21],[480,23,541,23,"tokenType"],[480,32,541,32],[480,33,541,33,"TYPE"],[480,37,541,37],[480,38,541,38,"Semicolon"],[480,47,541,47],[480,48,541,48],[481,4,542,4],[481,17,542,17],[481,19,542,19,"tokenType"],[481,28,542,28],[481,29,542,29,"TYPE"],[481,33,542,33],[481,34,542,34,"Comma"],[481,39,542,39],[481,40,542,40],[482,4,543,4],[482,13,543,13],[482,15,543,15,"tokenType"],[482,24,543,24],[482,25,543,25,"TYPE"],[482,29,543,29],[482,30,543,30,"LeftSquareBracket"],[482,47,543,47],[482,48,543,48],[483,4,544,4],[483,13,544,13],[483,15,544,15,"tokenType"],[483,24,544,24],[483,25,544,25,"TYPE"],[483,29,544,29],[483,30,544,30,"RightSquareBracket"],[483,48,544,48],[483,49,544,49],[484,4,545,4],[484,13,545,13],[484,15,545,15,"tokenType"],[484,24,545,24],[484,25,545,25,"TYPE"],[484,29,545,29],[484,30,545,30,"LeftParenthesis"],[484,45,545,45],[484,46,545,46],[485,4,546,4],[485,13,546,13],[485,15,546,15,"tokenType"],[485,24,546,24],[485,25,546,25,"TYPE"],[485,29,546,29],[485,30,546,30,"RightParenthesis"],[485,46,546,46],[485,47,546,47],[486,4,547,4],[486,13,547,13],[486,15,547,15,"tokenType"],[486,24,547,24],[486,25,547,25,"TYPE"],[486,29,547,29],[486,30,547,30,"LeftCurlyBracket"],[486,46,547,46],[486,47,547,47],[487,4,548,4],[487,13,548,13],[487,15,548,15,"tokenType"],[487,24,548,24],[487,25,548,25,"TYPE"],[487,29,548,29],[487,30,548,30,"RightCurlyBracket"],[487,47,548,47],[487,48,548,48],[488,4,550,4],[489,4,551,4],[489,12,551,12],[489,14,551,14,"tokenType"],[489,23,551,23],[489,24,551,24,"TYPE"],[489,28,551,28],[489,29,551,29,"String"],[489,35,551,35],[489,36,551,36],[490,4,552,4],[490,11,552,11],[490,13,552,13,"tokenType"],[490,22,552,22],[490,23,552,23,"TYPE"],[490,27,552,27],[490,28,552,28,"Ident"],[490,33,552,33],[490,34,552,34],[491,4,554,4],[492,4,555,4],[492,18,555,18],[492,20,555,20,"customIdent"],[492,31,555,31],[493,4,556,4],[493,26,556,26],[493,28,556,28,"customPropertyName"],[493,46,556,46],[494,4,557,4],[494,15,557,15],[494,17,557,17,"hexColor"],[494,25,557,25],[495,4,558,4],[495,17,558,17],[495,19,558,19,"idSelector"],[495,29,558,29],[496,4,558,31],[497,4,559,4],[497,15,559,15],[497,17,559,17,"anPlusB"],[497,24,559,24],[498,4,560,4],[498,12,560,12],[498,14,560,14,"urange"],[498,20,560,20],[499,4,561,4],[499,23,561,23],[499,25,561,25,"declarationValue"],[499,41,561,41],[500,4,562,4],[500,15,562,15],[500,17,562,17,"anyValue"],[500,25,562,25],[501,4,564,4],[502,4,565,4],[502,15,565,15],[502,17,565,17,"calc"],[502,21,565,21],[502,22,565,22,"dimension"],[502,31,565,31],[502,32,565,32],[502,36,565,36],[502,37,565,37],[502,38,565,38],[503,4,566,4],[503,11,566,11],[503,13,566,13,"calc"],[503,17,566,17],[503,18,566,18,"dimension"],[503,27,566,27],[503,28,566,28,"ANGLE"],[503,33,566,33],[503,34,566,34],[503,35,566,35],[504,4,567,4],[504,13,567,13],[504,15,567,15,"calc"],[504,19,567,19],[504,20,567,20,"dimension"],[504,29,567,29],[504,30,567,30,"DECIBEL"],[504,37,567,37],[504,38,567,38],[504,39,567,39],[505,4,568,4],[505,15,568,15],[505,17,568,17,"calc"],[505,21,568,21],[505,22,568,22,"dimension"],[505,31,568,31],[505,32,568,32,"FREQUENCY"],[505,41,568,41],[505,42,568,42],[505,43,568,43],[506,4,569,4],[506,10,569,10],[506,12,569,12,"calc"],[506,16,569,16],[506,17,569,17,"dimension"],[506,26,569,26],[506,27,569,27,"FLEX"],[506,31,569,31],[506,32,569,32],[506,33,569,33],[507,4,570,4],[507,12,570,12],[507,14,570,14,"calc"],[507,18,570,18],[507,19,570,19,"zero"],[507,23,570,23],[507,24,570,24,"dimension"],[507,33,570,33],[507,34,570,34,"LENGTH"],[507,40,570,40],[507,41,570,41],[507,42,570,42],[507,43,570,43],[508,4,571,4],[508,16,571,16],[508,18,571,18,"calc"],[508,22,571,22],[508,23,571,23,"dimension"],[508,32,571,32],[508,33,571,33,"RESOLUTION"],[508,43,571,43],[508,44,571,44],[508,45,571,45],[509,4,572,4],[509,15,572,15],[509,17,572,17,"calc"],[509,21,572,21],[509,22,572,22,"dimension"],[509,31,572,31],[509,32,572,32,"SEMITONES"],[509,41,572,41],[509,42,572,42],[509,43,572,43],[510,4,573,4],[510,10,573,10],[510,12,573,12,"calc"],[510,16,573,16],[510,17,573,17,"dimension"],[510,26,573,26],[510,27,573,27,"TIME"],[510,31,573,31],[510,32,573,32],[510,33,573,33],[511,4,575,4],[512,4,576,4],[512,16,576,16],[512,18,576,18,"calc"],[512,22,576,22],[512,23,576,23,"percentage"],[512,33,576,33],[512,34,576,34],[513,4,578,4],[514,4,579,4],[514,10,579,10],[514,12,579,12,"zero"],[514,16,579,16],[514,17,579,17],[514,18,579,18],[515,4,580,4],[515,12,580,12],[515,14,580,14,"calc"],[515,18,580,18],[515,19,580,19,"number"],[515,25,580,25],[515,26,580,26],[516,4,581,4],[516,13,581,13],[516,15,581,15,"calc"],[516,19,581,19],[516,20,581,20,"integer"],[516,27,581,27],[516,28,581,28],[517,4,583,4],[518,4,584,4],[518,27,584,27],[518,29,584,29,"func"],[518,33,584,33],[518,34,584,34],[518,46,584,46],[519,2,585,0],[519,3,585,1],[520,0,585,2],[520,3]],"functionMap":{"names":["<global>","charCode","eqStr","eqStrAny","isPostfixIeHack","outOfRange","consumeFunction","calc","<anonymous>","tokenType","func","customIdent","customPropertyName","hexColor","idSelector","declarationValue","anyValue","dimension","percentage","zero","next","number","integer"],"mappings":"AAA;AC+E;CDE;AEE;CFE;AGE;CHQ;AIG;CJS;AKE;CLsB;AME;CNc;AOK;WCC;KDU;CPC;ASE;WDC;KCM;CTC;AUE;WFG;KEM;CVC;AWa;CXwB;AYO;CZY;AaM;CbmB;AcE;CdU;AeI;Cf+D;AgBM;ChBsC;AiBM;WTC;KS0B;CjBC;AkBQ;ClBY;AmBU;eCE;SDE;WXG;KWQ;CnBC;AqBM;CrBiB;AsBI;CtBuB"},"hasCjsExports":true},"type":"js/module"}]} |